This project aims to predict the likelihood that a person would vote in favour of Basic Income using data like Age, Country, Gender, Rural/Urban, Employment Status, Education Level, Having kids, and other responses to a survey for European Countries. Using a simple XGBoost model on this data allowed us to get 73% accuracy on the testing data. This can be further improved by tuning the XGBoost parameters.
The original data can be found here: https://www.kaggle.com/datasets/daliaresearch/basic-income-survey-european-dataset
install.packages("tidyverse", repos = "http://cran.us.r-project.org")
## Installing package into 'C:/Users/Steve/AppData/Local/R/win-library/4.2'
## (as 'lib' is unspecified)
## package 'tidyverse' successfully unpacked and MD5 sums checked
##
## The downloaded binary packages are in
## C:\Users\Steve\AppData\Local\Temp\RtmpaEWJlh\downloaded_packages
install.packages("fastDummies", repos = "http://cran.us.r-project.org")
## Installing package into 'C:/Users/Steve/AppData/Local/R/win-library/4.2'
## (as 'lib' is unspecified)
## package 'fastDummies' successfully unpacked and MD5 sums checked
##
## The downloaded binary packages are in
## C:\Users\Steve\AppData\Local\Temp\RtmpaEWJlh\downloaded_packages
install.packages("xgboost", repos = "http://cran.us.r-project.org")
## Installing package into 'C:/Users/Steve/AppData/Local/R/win-library/4.2'
## (as 'lib' is unspecified)
## package 'xgboost' successfully unpacked and MD5 sums checked
##
## The downloaded binary packages are in
## C:\Users\Steve\AppData\Local\Temp\RtmpaEWJlh\downloaded_packages
install.packages("caret", repos = "http://cran.us.r-project.org")
## Installing package into 'C:/Users/Steve/AppData/Local/R/win-library/4.2'
## (as 'lib' is unspecified)
## package 'caret' successfully unpacked and MD5 sums checked
##
## The downloaded binary packages are in
## C:\Users\Steve\AppData\Local\Temp\RtmpaEWJlh\downloaded_packages
install.packages("DiagrammeR", repos = "http://cran.us.r-project.org")
## Installing package into 'C:/Users/Steve/AppData/Local/R/win-library/4.2'
## (as 'lib' is unspecified)
## package 'DiagrammeR' successfully unpacked and MD5 sums checked
##
## The downloaded binary packages are in
## C:\Users\Steve\AppData\Local\Temp\RtmpaEWJlh\downloaded_packages
library(tidyverse)
## Warning: package 'tidyverse' was built under R version 4.2.2
## ── Attaching packages
## ───────────────────────────────────────
## tidyverse 1.3.2 ──
## ✔ ggplot2 3.3.6 ✔ purrr 0.3.5
## ✔ tibble 3.1.8 ✔ dplyr 1.0.10
## ✔ tidyr 1.2.1 ✔ stringr 1.4.1
## ✔ readr 2.1.3 ✔ forcats 0.5.2
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag() masks stats::lag()
library(fastDummies)
## Warning: package 'fastDummies' was built under R version 4.2.2
library(xgboost)
## Warning: package 'xgboost' was built under R version 4.2.2
##
## Attaching package: 'xgboost'
##
## The following object is masked from 'package:dplyr':
##
## slice
library(caret)
## Warning: package 'caret' was built under R version 4.2.2
## Loading required package: lattice
##
## Attaching package: 'caret'
##
## The following object is masked from 'package:purrr':
##
## lift
library(DiagrammeR)
## Warning: package 'DiagrammeR' was built under R version 4.2.2
basic_income_data <- read.csv("basic_income_dataset_dalia.csv")
basic_income_data1 <- basic_income_data %>% select(-2,-15)
summary(basic_income_data1)
## country_code age gender rural
## Length:9649 Min. :14.00 Length:9649 Length:9649
## Class :character 1st Qu.:28.00 Class :character Class :character
## Mode :character Median :40.00 Mode :character Mode :character
## Mean :37.71
## 3rd Qu.:46.00
## Max. :65.00
## dem_education_level dem_full_time_job dem_has_children
## Length:9649 Length:9649 Length:9649
## Class :character Class :character Class :character
## Mode :character Mode :character Mode :character
##
##
##
## question_bbi_2016wave4_basicincome_awareness
## Length:9649
## Class :character
## Mode :character
##
##
##
## question_bbi_2016wave4_basicincome_vote
## Length:9649
## Class :character
## Mode :character
##
##
##
## question_bbi_2016wave4_basicincome_effect
## Length:9649
## Class :character
## Mode :character
##
##
##
## question_bbi_2016wave4_basicincome_argumentsfor
## Length:9649
## Class :character
## Mode :character
##
##
##
## question_bbi_2016wave4_basicincome_argumentsagainst age_group
## Length:9649 Length:9649
## Class :character Class :character
## Mode :character Mode :character
##
##
##
str(basic_income_data1)
## 'data.frame': 9649 obs. of 13 variables:
## $ country_code : chr "AT" "AT" "AT" "AT" ...
## $ age : int 61 57 32 45 41 26 26 47 34 22 ...
## $ gender : chr "male" "male" "male" "male" ...
## $ rural : chr "rural" "urban" "urban" "rural" ...
## $ dem_education_level : chr "no" "high" NA "high" ...
## $ dem_full_time_job : chr "no" "yes" "no" "yes" ...
## $ dem_has_children : chr "no" "yes" "no" "yes" ...
## $ question_bbi_2016wave4_basicincome_awareness : chr "I know something about it" "I understand it fully" "I have heard just a little about it" "I have heard just a little about it" ...
## $ question_bbi_2016wave4_basicincome_vote : chr "I would not vote" "I would probably vote for it" "I would not vote" "I would probably vote for it" ...
## $ question_bbi_2016wave4_basicincome_effect : chr "None of the above" "A basic income would not affect my work choices" "‰Û_ gain additional skills" "‰Û_ work less" ...
## $ question_bbi_2016wave4_basicincome_argumentsfor : chr "None of the above" "It increases appreciation for household work and volunteering | It encourages financial independence and self-r"| __truncated__ "It creates more equality of opportunity" "It reduces anxiety about financing basic needs" ...
## $ question_bbi_2016wave4_basicincome_argumentsagainst: chr "None of the above" "It might encourage people to stop working" "Foreigners might come to my country and take advantage of the benefit" "None of the above" ...
## $ age_group : chr "40_65" "40_65" "26_39" "40_65" ...
colnames(basic_income_data1)
## [1] "country_code"
## [2] "age"
## [3] "gender"
## [4] "rural"
## [5] "dem_education_level"
## [6] "dem_full_time_job"
## [7] "dem_has_children"
## [8] "question_bbi_2016wave4_basicincome_awareness"
## [9] "question_bbi_2016wave4_basicincome_vote"
## [10] "question_bbi_2016wave4_basicincome_effect"
## [11] "question_bbi_2016wave4_basicincome_argumentsfor"
## [12] "question_bbi_2016wave4_basicincome_argumentsagainst"
## [13] "age_group"
basic_income_data2 <- dummy_cols(basic_income_data1, remove_first_dummy = TRUE)
basic_income_data3 <- basic_income_data2 %>% select(-1,-3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13)
colnames(basic_income_data3)
## [1] "age"
## [2] "country_code_BE"
## [3] "country_code_BG"
## [4] "country_code_CY"
## [5] "country_code_CZ"
## [6] "country_code_DE"
## [7] "country_code_DK"
## [8] "country_code_EE"
## [9] "country_code_ES"
## [10] "country_code_FI"
## [11] "country_code_FR"
## [12] "country_code_GB"
## [13] "country_code_GR"
## [14] "country_code_HR"
## [15] "country_code_HU"
## [16] "country_code_IE"
## [17] "country_code_IT"
## [18] "country_code_LT"
## [19] "country_code_LU"
## [20] "country_code_LV"
## [21] "country_code_MT"
## [22] "country_code_NL"
## [23] "country_code_PL"
## [24] "country_code_PT"
## [25] "country_code_RO"
## [26] "country_code_SE"
## [27] "country_code_SI"
## [28] "country_code_SK"
## [29] "gender_male"
## [30] "rural_urban"
## [31] "dem_education_level_low"
## [32] "dem_education_level_medium"
## [33] "dem_education_level_no"
## [34] "dem_education_level_NA"
## [35] "dem_full_time_job_yes"
## [36] "dem_has_children_yes"
## [37] "question_bbi_2016wave4_basicincome_awareness_I have never heard of it"
## [38] "question_bbi_2016wave4_basicincome_awareness_I know something about it"
## [39] "question_bbi_2016wave4_basicincome_awareness_I understand it fully"
## [40] "question_bbi_2016wave4_basicincome_vote_I would probably vote against it"
## [41] "question_bbi_2016wave4_basicincome_vote_I would probably vote for it"
## [42] "question_bbi_2016wave4_basicincome_vote_I would vote against it"
## [43] "question_bbi_2016wave4_basicincome_vote_I would vote for it"
## [44] "question_bbi_2016wave4_basicincome_effect_‰Û_ gain additional skills"
## [45] "question_bbi_2016wave4_basicincome_effect_‰Û_ look for a different job"
## [46] "question_bbi_2016wave4_basicincome_effect_‰Û_ spend more time with my family"
## [47] "question_bbi_2016wave4_basicincome_effect_‰Û_ stop working"
## [48] "question_bbi_2016wave4_basicincome_effect_‰Û_ work as a freelancer"
## [49] "question_bbi_2016wave4_basicincome_effect_‰Û_ work less"
## [50] "question_bbi_2016wave4_basicincome_effect_A basic income would not affect my work choices"
## [51] "question_bbi_2016wave4_basicincome_effect_None of the above"
## [52] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility"
## [53] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering"
## [54] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone"
## [55] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs"
## [56] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs"
## [57] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone"
## [58] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone"
## [59] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses"
## [60] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone"
## [61] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [62] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs"
## [63] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering"
## [64] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [65] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses"
## [66] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [67] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering"
## [68] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs"
## [69] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering"
## [70] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone"
## [71] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses"
## [72] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone"
## [73] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [74] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses"
## [75] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses"
## [76] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [77] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses"
## [78] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone"
## [79] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [80] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses"
## [81] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [82] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone"
## [83] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [84] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs"
## [85] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering"
## [86] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [87] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases appreciation for household work and volunteering"
## [88] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility"
## [89] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs"
## [90] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone"
## [91] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone"
## [92] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone"
## [93] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs"
## [94] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses"
## [95] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs"
## [96] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility"
## [97] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses"
## [98] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone"
## [99] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses"
## [100] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases solidarity, because it is funded by everyone"
## [101] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility"
## [102] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering"
## [103] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses"
## [104] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs"
## [105] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering"
## [106] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [107] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [108] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility"
## [109] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs"
## [110] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses"
## [111] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs"
## [112] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility"
## [113] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering"
## [114] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses"
## [115] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses"
## [116] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering"
## [117] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses"
## [118] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering"
## [119] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses"
## [120] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs"
## [121] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs"
## [122] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering"
## [123] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [124] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering"
## [125] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs"
## [126] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility"
## [127] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering"
## [128] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone"
## [129] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses"
## [130] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone"
## [131] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone"
## [132] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [133] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses"
## [134] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses"
## [135] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [136] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses"
## [137] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [138] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone"
## [139] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [140] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering"
## [141] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility"
## [142] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone"
## [143] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone"
## [144] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility"
## [145] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses"
## [146] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses"
## [147] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility"
## [148] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses"
## [149] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone"
## [150] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone"
## [151] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility"
## [152] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering"
## [153] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses"
## [154] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [155] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [156] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility"
## [157] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses"
## [158] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses"
## [159] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering"
## [160] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [161] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses"
## [162] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility"
## [163] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [164] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone"
## [165] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility"
## [166] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [167] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility"
## [168] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces bureaucracy and administrative expenses"
## [169] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility"
## [170] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs"
## [171] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs"
## [172] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [173] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility"
## [174] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility"
## [175] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone"
## [176] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering"
## [177] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [178] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility"
## [179] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs"
## [180] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility"
## [181] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone"
## [182] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering"
## [183] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone"
## [184] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering"
## [185] "question_bbi_2016wave4_basicincome_argumentsfor_It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [186] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility"
## [187] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It creates more equality of opportunity"
## [188] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It creates more equality of opportunity | It increases appreciation for household work and volunteering"
## [189] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs"
## [190] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone"
## [191] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses"
## [192] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone"
## [193] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs"
## [194] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone"
## [195] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [196] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs"
## [197] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses"
## [198] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [199] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs"
## [200] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces anxiety about financing basic needs"
## [201] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering"
## [202] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone"
## [203] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses"
## [204] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone"
## [205] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [206] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses"
## [207] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses"
## [208] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone"
## [209] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [210] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses"
## [211] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [212] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs"
## [213] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs"
## [214] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone"
## [215] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering"
## [216] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It creates more equality of opportunity"
## [217] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It reduces anxiety about financing basic needs"
## [218] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses"
## [219] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs"
## [220] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone"
## [221] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It creates more equality of opportunity"
## [222] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs"
## [223] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It creates more equality of opportunity"
## [224] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone"
## [225] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses"
## [226] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses"
## [227] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity"
## [228] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone"
## [229] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone"
## [230] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity"
## [231] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It increases appreciation for household work and volunteering"
## [232] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs"
## [233] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It reduces anxiety about financing basic needs"
## [234] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering"
## [235] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses"
## [236] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [237] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [238] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses"
## [239] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs"
## [240] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs"
## [241] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It creates more equality of opportunity"
## [242] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases appreciation for household work and volunteering"
## [243] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses"
## [244] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [245] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering"
## [246] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses"
## [247] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity"
## [248] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [249] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs"
## [250] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It creates more equality of opportunity"
## [251] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases appreciation for household work and volunteering"
## [252] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone"
## [253] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses"
## [254] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone"
## [255] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [256] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses"
## [257] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses"
## [258] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [259] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses"
## [260] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [261] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone"
## [262] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [263] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering"
## [264] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone"
## [265] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone"
## [266] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone"
## [267] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity"
## [268] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone"
## [269] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone"
## [270] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity"
## [271] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It increases appreciation for household work and volunteering"
## [272] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [273] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [274] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It creates more equality of opportunity"
## [275] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity"
## [276] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [277] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses"
## [278] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity"
## [279] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone"
## [280] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [281] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [282] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It creates more equality of opportunity"
## [283] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone"
## [284] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It increases appreciation for household work and volunteering"
## [285] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [286] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses"
## [287] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity"
## [288] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It increases appreciation for household work and volunteering"
## [289] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [290] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone"
## [291] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone"
## [292] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs"
## [293] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone"
## [294] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It creates more equality of opportunity"
## [295] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs"
## [296] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [297] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering"
## [298] "question_bbi_2016wave4_basicincome_argumentsfor_It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It increases appreciation for household work and volunteering"
## [299] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering"
## [300] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It creates more equality of opportunity"
## [301] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It creates more equality of opportunity | It encourages financial independence and self-responsibility"
## [302] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs"
## [303] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs"
## [304] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone"
## [305] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs"
## [306] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses"
## [307] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It creates more equality of opportunity | It reduces anxiety about financing basic needs"
## [308] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility"
## [309] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses"
## [310] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone"
## [311] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility"
## [312] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses"
## [313] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility"
## [314] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone"
## [315] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility"
## [316] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It creates more equality of opportunity"
## [317] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses"
## [318] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone"
## [319] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone"
## [320] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity"
## [321] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It reduces anxiety about financing basic needs"
## [322] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs"
## [323] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It creates more equality of opportunity"
## [324] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone"
## [325] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses"
## [326] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs"
## [327] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone"
## [328] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone"
## [329] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity"
## [330] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It reduces anxiety about financing basic needs"
## [331] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces anxiety about financing basic needs"
## [332] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs"
## [333] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs"
## [334] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It creates more equality of opportunity"
## [335] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility"
## [336] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It creates more equality of opportunity"
## [337] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses"
## [338] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It encourages financial independence and self-responsibility"
## [339] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It creates more equality of opportunity"
## [340] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs"
## [341] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It creates more equality of opportunity"
## [342] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It encourages financial independence and self-responsibility"
## [343] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses"
## [344] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone"
## [345] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility"
## [346] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses"
## [347] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses"
## [348] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility"
## [349] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It creates more equality of opportunity"
## [350] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity"
## [351] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses"
## [352] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone"
## [353] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity"
## [354] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses"
## [355] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses"
## [356] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity"
## [357] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone"
## [358] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone"
## [359] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It encourages financial independence and self-responsibility"
## [360] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses"
## [361] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity"
## [362] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone"
## [363] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone"
## [364] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility"
## [365] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It creates more equality of opportunity"
## [366] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It reduces anxiety about financing basic needs"
## [367] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs"
## [368] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity"
## [369] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces anxiety about financing basic needs"
## [370] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs"
## [371] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs"
## [372] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It creates more equality of opportunity"
## [373] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone"
## [374] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity"
## [375] "question_bbi_2016wave4_basicincome_argumentsfor_It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It encourages financial independence and self-responsibility"
## [376] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone"
## [377] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It creates more equality of opportunity"
## [378] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It encourages financial independence and self-responsibility"
## [379] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering"
## [380] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses"
## [381] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs"
## [382] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses"
## [383] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses"
## [384] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering"
## [385] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It increases appreciation for household work and volunteering"
## [386] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility"
## [387] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility"
## [388] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses"
## [389] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It reduces anxiety about financing basic needs"
## [390] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility"
## [391] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering"
## [392] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [393] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses"
## [394] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [395] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility"
## [396] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses"
## [397] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering"
## [398] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering"
## [399] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility"
## [400] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility"
## [401] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It creates more equality of opportunity"
## [402] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It increases appreciation for household work and volunteering"
## [403] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs"
## [404] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces anxiety about financing basic needs"
## [405] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [406] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs"
## [407] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It reduces anxiety about financing basic needs"
## [408] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs"
## [409] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses"
## [410] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs"
## [411] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It creates more equality of opportunity"
## [412] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering"
## [413] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity"
## [414] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It increases appreciation for household work and volunteering"
## [415] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses"
## [416] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [417] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs"
## [418] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [419] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It creates more equality of opportunity"
## [420] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It encourages financial independence and self-responsibility"
## [421] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It reduces anxiety about financing basic needs"
## [422] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility"
## [423] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses"
## [424] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility"
## [425] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility"
## [426] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It creates more equality of opportunity"
## [427] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces anxiety about financing basic needs"
## [428] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses"
## [429] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs"
## [430] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It creates more equality of opportunity"
## [431] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It creates more equality of opportunity"
## [432] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs"
## [433] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses"
## [434] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It reduces anxiety about financing basic needs"
## [435] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs"
## [436] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs"
## [437] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It creates more equality of opportunity"
## [438] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It encourages financial independence and self-responsibility"
## [439] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering"
## [440] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses"
## [441] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [442] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases appreciation for household work and volunteering"
## [443] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility"
## [444] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [445] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility"
## [446] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It creates more equality of opportunity"
## [447] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses"
## [448] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering"
## [449] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses"
## [450] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [451] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering"
## [452] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It creates more equality of opportunity"
## [453] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility"
## [454] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses"
## [455] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses"
## [456] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It creates more equality of opportunity"
## [457] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It creates more equality of opportunity"
## [458] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses"
## [459] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity"
## [460] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It encourages financial independence and self-responsibility"
## [461] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs"
## [462] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It reduces anxiety about financing basic needs"
## [463] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility"
## [464] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It creates more equality of opportunity"
## [465] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [466] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It creates more equality of opportunity"
## [467] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs"
## [468] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs"
## [469] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It creates more equality of opportunity"
## [470] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering"
## [471] "question_bbi_2016wave4_basicincome_argumentsfor_It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering"
## [472] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs"
## [473] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity"
## [474] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It encourages financial independence and self-responsibility"
## [475] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering"
## [476] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone"
## [477] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [478] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses"
## [479] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses"
## [480] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [481] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses"
## [482] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone"
## [483] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [484] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases appreciation for household work and volunteering"
## [485] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility"
## [486] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone"
## [487] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses"
## [488] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone"
## [489] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility"
## [490] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses"
## [491] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses"
## [492] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility"
## [493] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses"
## [494] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility"
## [495] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone"
## [496] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility"
## [497] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering"
## [498] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses"
## [499] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [500] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [501] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility"
## [502] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses"
## [503] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses"
## [504] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility"
## [505] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses"
## [506] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering"
## [507] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [508] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility"
## [509] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses"
## [510] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility"
## [511] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering"
## [512] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone"
## [513] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [514] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility"
## [515] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone"
## [516] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering"
## [517] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility"
## [518] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It creates more equality of opportunity"
## [519] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It increases appreciation for household work and volunteering"
## [520] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone"
## [521] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses"
## [522] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone"
## [523] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone"
## [524] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [525] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses"
## [526] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [527] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses"
## [528] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [529] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone"
## [530] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [531] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering"
## [532] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It creates more equality of opportunity"
## [533] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone"
## [534] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses"
## [535] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone"
## [536] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone"
## [537] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses"
## [538] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses"
## [539] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity"
## [540] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone"
## [541] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity"
## [542] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses"
## [543] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [544] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [545] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It creates more equality of opportunity"
## [546] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses"
## [547] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity"
## [548] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It creates more equality of opportunity"
## [549] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses"
## [550] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity"
## [551] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It increases appreciation for household work and volunteering"
## [552] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [553] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone"
## [554] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It creates more equality of opportunity"
## [555] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering"
## [556] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It creates more equality of opportunity"
## [557] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses"
## [558] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses"
## [559] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility"
## [560] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility"
## [561] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It creates more equality of opportunity"
## [562] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses"
## [563] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone"
## [564] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity"
## [565] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity"
## [566] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone"
## [567] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity"
## [568] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses"
## [569] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility"
## [570] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It creates more equality of opportunity"
## [571] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It encourages financial independence and self-responsibility"
## [572] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses"
## [573] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone"
## [574] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility"
## [575] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It creates more equality of opportunity"
## [576] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone"
## [577] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity"
## [578] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It encourages financial independence and self-responsibility"
## [579] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering"
## [580] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It increases appreciation for household work and volunteering"
## [581] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses"
## [582] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility"
## [583] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [584] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility"
## [585] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It creates more equality of opportunity"
## [586] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering"
## [587] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses"
## [588] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [589] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It creates more equality of opportunity"
## [590] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [591] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It creates more equality of opportunity"
## [592] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It encourages financial independence and self-responsibility"
## [593] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces bureaucracy and administrative expenses"
## [594] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility"
## [595] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility"
## [596] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It reduces bureaucracy and administrative expenses"
## [597] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses"
## [598] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It increases appreciation for household work and volunteering"
## [599] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [600] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses"
## [601] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity"
## [602] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It encourages financial independence and self-responsibility"
## [603] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone"
## [604] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone"
## [605] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone"
## [606] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone"
## [607] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility"
## [608] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering"
## [609] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility"
## [610] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It creates more equality of opportunity"
## [611] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering"
## [612] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone"
## [613] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [614] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It encourages financial independence and self-responsibility"
## [615] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility"
## [616] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility"
## [617] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone"
## [618] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone"
## [619] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility"
## [620] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone"
## [621] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity"
## [622] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It encourages financial independence and self-responsibility"
## [623] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility"
## [624] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It increases appreciation for household work and volunteering"
## [625] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces anxiety about financing basic needs | It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [626] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses"
## [627] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It creates more equality of opportunity"
## [628] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It encourages financial independence and self-responsibility"
## [629] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering"
## [630] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone"
## [631] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It increases appreciation for household work and volunteering"
## [632] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs"
## [633] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone"
## [634] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone"
## [635] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility"
## [636] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs"
## [637] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering"
## [638] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It reduces anxiety about financing basic needs"
## [639] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility"
## [640] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [641] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering"
## [642] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility"
## [643] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone"
## [644] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone"
## [645] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [646] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility"
## [647] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone"
## [648] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs"
## [649] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone"
## [650] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone"
## [651] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering"
## [652] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It creates more equality of opportunity"
## [653] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone"
## [654] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone"
## [655] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity"
## [656] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [657] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs"
## [658] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering"
## [659] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs"
## [660] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases appreciation for household work and volunteering"
## [661] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering"
## [662] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone"
## [663] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering"
## [664] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It creates more equality of opportunity"
## [665] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs"
## [666] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It reduces anxiety about financing basic needs"
## [667] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility"
## [668] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility"
## [669] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs"
## [670] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It creates more equality of opportunity"
## [671] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It creates more equality of opportunity"
## [672] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone"
## [673] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs"
## [674] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs"
## [675] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It creates more equality of opportunity"
## [676] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It encourages financial independence and self-responsibility"
## [677] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone"
## [678] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity"
## [679] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It encourages financial independence and self-responsibility"
## [680] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone"
## [681] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity"
## [682] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It encourages financial independence and self-responsibility"
## [683] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility"
## [684] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It creates more equality of opportunity"
## [685] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces anxiety about financing basic needs"
## [686] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It creates more equality of opportunity"
## [687] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [688] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs"
## [689] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It reduces anxiety about financing basic needs"
## [690] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility"
## [691] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It reduces anxiety about financing basic needs"
## [692] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It reduces anxiety about financing basic needs | It creates more equality of opportunity"
## [693] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs"
## [694] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It creates more equality of opportunity"
## [695] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs"
## [696] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering"
## [697] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It increases solidarity, because it is funded by everyone | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It encourages financial independence and self-responsibility"
## [698] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs"
## [699] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It creates more equality of opportunity"
## [700] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It encourages financial independence and self-responsibility"
## [701] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering"
## [702] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [703] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases appreciation for household work and volunteering"
## [704] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility"
## [705] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility"
## [706] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility"
## [707] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It creates more equality of opportunity"
## [708] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone"
## [709] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [710] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering"
## [711] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering"
## [712] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It creates more equality of opportunity"
## [713] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases solidarity, because it is funded by everyone"
## [714] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility"
## [715] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility"
## [716] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It increases appreciation for household work and volunteering | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility | It creates more equality of opportunity"
## [717] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone"
## [718] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity"
## [719] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It creates more equality of opportunity | It encourages financial independence and self-responsibility | It increases appreciation for household work and volunteering"
## [720] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It encourages financial independence and self-responsibility"
## [721] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering"
## [722] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It creates more equality of opportunity | It encourages financial independence and self-responsibility"
## [723] "question_bbi_2016wave4_basicincome_argumentsfor_It reduces bureaucracy and administrative expenses | It reduces anxiety about financing basic needs | It increases solidarity, because it is funded by everyone | It increases appreciation for household work and volunteering | It encourages financial independence and self-responsibility | It creates more equality of opportunity"
## [724] "question_bbi_2016wave4_basicincome_argumentsfor_None of the above"
## [725] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state"
## [726] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It is against the principle of linking merit and reward"
## [727] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It is against the principle of linking merit and reward | It is impossible to finance"
## [728] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It is against the principle of linking merit and reward | It might encourage people to stop working | Only the people who need it most should get something from the state"
## [729] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [730] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It might encourage people to stop working"
## [731] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It might encourage people to stop working | It is impossible to finance"
## [732] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It is impossible to finance"
## [733] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It is impossible to finance | It is against the principle of linking merit and reward | It might encourage people to stop working"
## [734] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It is impossible to finance | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It might encourage people to stop working"
## [735] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It is impossible to finance | It might encourage people to stop working"
## [736] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It might encourage people to stop working"
## [737] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It might encourage people to stop working | It is against the principle of linking merit and reward"
## [738] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It might encourage people to stop working | It is impossible to finance"
## [739] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It might encourage people to stop working | It is impossible to finance | It is against the principle of linking merit and reward"
## [740] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It might encourage people to stop working | It is impossible to finance | Only the people who need it most should get something from the state"
## [741] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It might encourage people to stop working | It is impossible to finance | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward"
## [742] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It might encourage people to stop working | Only the people who need it most should get something from the state"
## [743] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | Only the people who need it most should get something from the state"
## [744] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It is impossible to finance"
## [745] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It might encourage people to stop working | It is impossible to finance"
## [746] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | Only the people who need it most should get something from the state | It might encourage people to stop working"
## [747] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | Only the people who need it most should get something from the state | It might encourage people to stop working | It is against the principle of linking merit and reward"
## [748] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | Only the people who need it most should get something from the state | It might encourage people to stop working | It is impossible to finance"
## [749] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward"
## [750] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It increases dependence on the state"
## [751] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It increases dependence on the state | It is impossible to finance | It might encourage people to stop working"
## [752] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It increases dependence on the state | It is impossible to finance | Only the people who need it most should get something from the state | It might encourage people to stop working"
## [753] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It increases dependence on the state | It might encourage people to stop working"
## [754] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It increases dependence on the state | Only the people who need it most should get something from the state"
## [755] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It increases dependence on the state | Only the people who need it most should get something from the state | It might encourage people to stop working | It is impossible to finance"
## [756] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It is impossible to finance"
## [757] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It is impossible to finance | It increases dependence on the state"
## [758] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It is impossible to finance | It increases dependence on the state | It might encourage people to stop working"
## [759] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It is impossible to finance | It might encourage people to stop working"
## [760] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It is impossible to finance | It might encourage people to stop working | It increases dependence on the state"
## [761] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It is impossible to finance | Only the people who need it most should get something from the state"
## [762] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It might encourage people to stop working"
## [763] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It might encourage people to stop working | It increases dependence on the state"
## [764] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It might encourage people to stop working | It increases dependence on the state | It is impossible to finance | Only the people who need it most should get something from the state"
## [765] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It might encourage people to stop working | It increases dependence on the state | Only the people who need it most should get something from the state | It is impossible to finance"
## [766] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It might encourage people to stop working | It is impossible to finance"
## [767] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It might encourage people to stop working | It is impossible to finance | It increases dependence on the state"
## [768] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It might encourage people to stop working | It is impossible to finance | Only the people who need it most should get something from the state"
## [769] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It might encourage people to stop working | It is impossible to finance | Only the people who need it most should get something from the state | It increases dependence on the state"
## [770] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It might encourage people to stop working | Only the people who need it most should get something from the state"
## [771] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It might encourage people to stop working | Only the people who need it most should get something from the state | It is impossible to finance | It increases dependence on the state"
## [772] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [773] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It increases dependence on the state"
## [774] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It might encourage people to stop working | It increases dependence on the state"
## [775] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance"
## [776] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It increases dependence on the state"
## [777] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It increases dependence on the state | It is against the principle of linking merit and reward | It might encourage people to stop working"
## [778] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It increases dependence on the state | It might encourage people to stop working"
## [779] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It increases dependence on the state | It might encourage people to stop working | Only the people who need it most should get something from the state"
## [780] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It increases dependence on the state | It might encourage people to stop working | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward"
## [781] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It increases dependence on the state | Only the people who need it most should get something from the state | It might encourage people to stop working"
## [782] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It increases dependence on the state | Only the people who need it most should get something from the state | It might encourage people to stop working | It is against the principle of linking merit and reward"
## [783] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It is against the principle of linking merit and reward"
## [784] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It is against the principle of linking merit and reward | It increases dependence on the state | Only the people who need it most should get something from the state | It might encourage people to stop working"
## [785] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It is against the principle of linking merit and reward | It might encourage people to stop working"
## [786] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It is against the principle of linking merit and reward | It might encourage people to stop working | It increases dependence on the state | Only the people who need it most should get something from the state"
## [787] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It is against the principle of linking merit and reward | It might encourage people to stop working | Only the people who need it most should get something from the state | It increases dependence on the state"
## [788] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It might encourage people to stop working | It increases dependence on the state"
## [789] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It might encourage people to stop working"
## [790] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It might encourage people to stop working | It increases dependence on the state"
## [791] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It might encourage people to stop working | It increases dependence on the state | It is against the principle of linking merit and reward"
## [792] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It might encourage people to stop working | It increases dependence on the state | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [793] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It might encourage people to stop working | It increases dependence on the state | Only the people who need it most should get something from the state"
## [794] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It might encourage people to stop working | It increases dependence on the state | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward"
## [795] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It might encourage people to stop working | It is against the principle of linking merit and reward"
## [796] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It might encourage people to stop working | It is against the principle of linking merit and reward | It increases dependence on the state"
## [797] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It might encourage people to stop working | It is against the principle of linking merit and reward | It increases dependence on the state | Only the people who need it most should get something from the state"
## [798] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It might encourage people to stop working | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [799] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It might encourage people to stop working | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It increases dependence on the state"
## [800] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It might encourage people to stop working | Only the people who need it most should get something from the state"
## [801] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It might encourage people to stop working | Only the people who need it most should get something from the state | It increases dependence on the state"
## [802] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It might encourage people to stop working | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward"
## [803] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It might encourage people to stop working | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It increases dependence on the state"
## [804] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | Only the people who need it most should get something from the state"
## [805] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | Only the people who need it most should get something from the state | It increases dependence on the state"
## [806] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It increases dependence on the state"
## [807] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | Only the people who need it most should get something from the state | It might encourage people to stop working"
## [808] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | Only the people who need it most should get something from the state | It might encourage people to stop working | It increases dependence on the state"
## [809] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | Only the people who need it most should get something from the state | It might encourage people to stop working | It is against the principle of linking merit and reward | It increases dependence on the state"
## [810] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working"
## [811] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It increases dependence on the state"
## [812] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It increases dependence on the state | It is against the principle of linking merit and reward"
## [813] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It increases dependence on the state | It is against the principle of linking merit and reward | It is impossible to finance"
## [814] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It increases dependence on the state | It is against the principle of linking merit and reward | It is impossible to finance | Only the people who need it most should get something from the state"
## [815] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It increases dependence on the state | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [816] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It increases dependence on the state | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It is impossible to finance"
## [817] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It increases dependence on the state | It is impossible to finance"
## [818] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It increases dependence on the state | It is impossible to finance | It is against the principle of linking merit and reward"
## [819] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It increases dependence on the state | Only the people who need it most should get something from the state"
## [820] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It increases dependence on the state | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward"
## [821] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is against the principle of linking merit and reward"
## [822] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is against the principle of linking merit and reward | It increases dependence on the state"
## [823] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is against the principle of linking merit and reward | It increases dependence on the state | It is impossible to finance"
## [824] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is against the principle of linking merit and reward | It increases dependence on the state | It is impossible to finance | Only the people who need it most should get something from the state"
## [825] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is against the principle of linking merit and reward | It increases dependence on the state | Only the people who need it most should get something from the state"
## [826] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is against the principle of linking merit and reward | It is impossible to finance"
## [827] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is against the principle of linking merit and reward | It is impossible to finance | Only the people who need it most should get something from the state | It increases dependence on the state"
## [828] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [829] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It increases dependence on the state"
## [830] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It increases dependence on the state | It is impossible to finance"
## [831] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It is impossible to finance"
## [832] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It is impossible to finance | It increases dependence on the state"
## [833] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is impossible to finance"
## [834] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is impossible to finance | It increases dependence on the state"
## [835] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is impossible to finance | It increases dependence on the state | It is against the principle of linking merit and reward"
## [836] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is impossible to finance | It increases dependence on the state | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [837] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is impossible to finance | It increases dependence on the state | Only the people who need it most should get something from the state"
## [838] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is impossible to finance | It is against the principle of linking merit and reward"
## [839] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is impossible to finance | It is against the principle of linking merit and reward | It increases dependence on the state"
## [840] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is impossible to finance | It is against the principle of linking merit and reward | It increases dependence on the state | Only the people who need it most should get something from the state"
## [841] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is impossible to finance | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [842] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is impossible to finance | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It increases dependence on the state"
## [843] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is impossible to finance | Only the people who need it most should get something from the state"
## [844] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is impossible to finance | Only the people who need it most should get something from the state | It increases dependence on the state"
## [845] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is impossible to finance | Only the people who need it most should get something from the state | It increases dependence on the state | It is against the principle of linking merit and reward"
## [846] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is impossible to finance | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward"
## [847] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | Only the people who need it most should get something from the state"
## [848] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | Only the people who need it most should get something from the state | It increases dependence on the state"
## [849] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | Only the people who need it most should get something from the state | It increases dependence on the state | It is impossible to finance"
## [850] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | Only the people who need it most should get something from the state | It increases dependence on the state | It is impossible to finance | It is against the principle of linking merit and reward"
## [851] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward"
## [852] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It increases dependence on the state"
## [853] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It is impossible to finance"
## [854] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | Only the people who need it most should get something from the state | It is impossible to finance"
## [855] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | Only the people who need it most should get something from the state | It is impossible to finance | It is against the principle of linking merit and reward"
## [856] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | Only the people who need it most should get something from the state | It is impossible to finance | It is against the principle of linking merit and reward | It increases dependence on the state"
## [857] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state"
## [858] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It increases dependence on the state"
## [859] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It increases dependence on the state | It is against the principle of linking merit and reward | It might encourage people to stop working"
## [860] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It increases dependence on the state | It is impossible to finance"
## [861] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It increases dependence on the state | It might encourage people to stop working"
## [862] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It increases dependence on the state | It might encourage people to stop working | It is against the principle of linking merit and reward"
## [863] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward"
## [864] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It increases dependence on the state"
## [865] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It increases dependence on the state | It is impossible to finance | It might encourage people to stop working"
## [866] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It increases dependence on the state | It might encourage people to stop working | It is impossible to finance"
## [867] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It is impossible to finance | It might encourage people to stop working"
## [868] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It might encourage people to stop working"
## [869] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It might encourage people to stop working | It increases dependence on the state | It is impossible to finance"
## [870] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It might encourage people to stop working | It is impossible to finance"
## [871] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is impossible to finance"
## [872] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is impossible to finance | It might encourage people to stop working"
## [873] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is impossible to finance | It might encourage people to stop working | It increases dependence on the state | It is against the principle of linking merit and reward"
## [874] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It might encourage people to stop working"
## [875] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It might encourage people to stop working | It increases dependence on the state"
## [876] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It might encourage people to stop working | It increases dependence on the state | It is against the principle of linking merit and reward"
## [877] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It might encourage people to stop working | It increases dependence on the state | It is against the principle of linking merit and reward | It is impossible to finance"
## [878] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It might encourage people to stop working | It increases dependence on the state | It is impossible to finance | It is against the principle of linking merit and reward"
## [879] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It might encourage people to stop working | It is against the principle of linking merit and reward"
## [880] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It might encourage people to stop working | It is against the principle of linking merit and reward | It increases dependence on the state"
## [881] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It might encourage people to stop working | It is impossible to finance"
## [882] "question_bbi_2016wave4_basicincome_argumentsagainst_Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It might encourage people to stop working | It is impossible to finance | It increases dependence on the state"
## [883] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state"
## [884] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit"
## [885] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward"
## [886] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It is impossible to finance | It might encourage people to stop working"
## [887] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It might encourage people to stop working | It is impossible to finance"
## [888] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It is impossible to finance | It might encourage people to stop working"
## [889] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It might encourage people to stop working"
## [890] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance"
## [891] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It is against the principle of linking merit and reward | It might encourage people to stop working | Only the people who need it most should get something from the state"
## [892] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [893] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It might encourage people to stop working"
## [894] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | Only the people who need it most should get something from the state | It might encourage people to stop working | It is against the principle of linking merit and reward"
## [895] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working"
## [896] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is against the principle of linking merit and reward | It is impossible to finance"
## [897] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is against the principle of linking merit and reward | It is impossible to finance | Only the people who need it most should get something from the state"
## [898] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It is impossible to finance"
## [899] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is impossible to finance"
## [900] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | Only the people who need it most should get something from the state"
## [901] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state"
## [902] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward"
## [903] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It is impossible to finance | It might encourage people to stop working"
## [904] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It might encourage people to stop working"
## [905] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is impossible to finance | It might encourage people to stop working | It is against the principle of linking merit and reward"
## [906] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It might encourage people to stop working"
## [907] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is against the principle of linking merit and reward"
## [908] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit"
## [909] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance"
## [910] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working"
## [911] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is impossible to finance | It might encourage people to stop working"
## [912] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is against the principle of linking merit and reward | It is impossible to finance"
## [913] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is against the principle of linking merit and reward | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit"
## [914] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is against the principle of linking merit and reward | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working"
## [915] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is against the principle of linking merit and reward | It is impossible to finance | Only the people who need it most should get something from the state | It might encourage people to stop working"
## [916] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is against the principle of linking merit and reward | It is impossible to finance | Only the people who need it most should get something from the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit"
## [917] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is against the principle of linking merit and reward | It might encourage people to stop working"
## [918] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is against the principle of linking merit and reward | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit"
## [919] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is against the principle of linking merit and reward | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance"
## [920] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is against the principle of linking merit and reward | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state"
## [921] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is against the principle of linking merit and reward | It might encourage people to stop working | It is impossible to finance"
## [922] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is against the principle of linking merit and reward | It might encourage people to stop working | It is impossible to finance | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit"
## [923] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is against the principle of linking merit and reward | It might encourage people to stop working | Only the people who need it most should get something from the state"
## [924] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [925] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It is impossible to finance | It might encourage people to stop working"
## [926] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is impossible to finance"
## [927] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit"
## [928] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working"
## [929] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | Only the people who need it most should get something from the state"
## [930] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is impossible to finance | It is against the principle of linking merit and reward"
## [931] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is impossible to finance | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit"
## [932] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is impossible to finance | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | Only the people who need it most should get something from the state"
## [933] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is impossible to finance | It is against the principle of linking merit and reward | It might encourage people to stop working"
## [934] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is impossible to finance | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit"
## [935] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is impossible to finance | It might encourage people to stop working"
## [936] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is impossible to finance | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward"
## [937] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is impossible to finance | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [938] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is impossible to finance | It might encourage people to stop working | It is against the principle of linking merit and reward"
## [939] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is impossible to finance | It might encourage people to stop working | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit"
## [940] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is impossible to finance | It might encourage people to stop working | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state"
## [941] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is impossible to finance | It might encourage people to stop working | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [942] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is impossible to finance | It might encourage people to stop working | Only the people who need it most should get something from the state"
## [943] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is impossible to finance | Only the people who need it most should get something from the state"
## [944] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is impossible to finance | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working"
## [945] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It is impossible to finance | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It might encourage people to stop working"
## [946] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It might encourage people to stop working"
## [947] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit"
## [948] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward"
## [949] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It is impossible to finance"
## [950] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance"
## [951] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It is against the principle of linking merit and reward"
## [952] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state"
## [953] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is impossible to finance | It is against the principle of linking merit and reward"
## [954] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It might encourage people to stop working | It is against the principle of linking merit and reward"
## [955] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It might encourage people to stop working | It is against the principle of linking merit and reward | It is impossible to finance"
## [956] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It might encourage people to stop working | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [957] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It might encourage people to stop working | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit"
## [958] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It might encourage people to stop working | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance"
## [959] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It might encourage people to stop working | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It is impossible to finance"
## [960] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It might encourage people to stop working | It is impossible to finance"
## [961] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It might encourage people to stop working | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit"
## [962] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It might encourage people to stop working | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward"
## [963] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It might encourage people to stop working | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [964] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It might encourage people to stop working | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward"
## [965] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It might encourage people to stop working | It is impossible to finance | It is against the principle of linking merit and reward"
## [966] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It might encourage people to stop working | It is impossible to finance | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit"
## [967] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It might encourage people to stop working | It is impossible to finance | Only the people who need it most should get something from the state"
## [968] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It might encourage people to stop working | It is impossible to finance | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit"
## [969] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It might encourage people to stop working | It is impossible to finance | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward"
## [970] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It might encourage people to stop working | Only the people who need it most should get something from the state"
## [971] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It might encourage people to stop working | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit"
## [972] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It might encourage people to stop working | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit"
## [973] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It might encourage people to stop working | Only the people who need it most should get something from the state | It is impossible to finance"
## [974] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It might encourage people to stop working | Only the people who need it most should get something from the state | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit"
## [975] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | It might encourage people to stop working | Only the people who need it most should get something from the state | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward"
## [976] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Only the people who need it most should get something from the state"
## [977] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit"
## [978] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It is impossible to finance"
## [979] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It is impossible to finance | It might encourage people to stop working"
## [980] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It might encourage people to stop working | It is against the principle of linking merit and reward"
## [981] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working"
## [982] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is impossible to finance"
## [983] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward"
## [984] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit"
## [985] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance"
## [986] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It is impossible to finance"
## [987] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It is impossible to finance | It might encourage people to stop working"
## [988] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It is impossible to finance | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit"
## [989] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It might encourage people to stop working"
## [990] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It might encourage people to stop working | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit"
## [991] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Only the people who need it most should get something from the state | It is impossible to finance"
## [992] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Only the people who need it most should get something from the state | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward"
## [993] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Only the people who need it most should get something from the state | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is against the principle of linking merit and reward"
## [994] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Only the people who need it most should get something from the state | It is impossible to finance | It might encourage people to stop working"
## [995] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Only the people who need it most should get something from the state | It is impossible to finance | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit"
## [996] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Only the people who need it most should get something from the state | It is impossible to finance | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward"
## [997] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Only the people who need it most should get something from the state | It is impossible to finance | It might encourage people to stop working | It is against the principle of linking merit and reward"
## [998] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Only the people who need it most should get something from the state | It might encourage people to stop working"
## [999] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Only the people who need it most should get something from the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit"
## [1000] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Only the people who need it most should get something from the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward"
## [1001] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Only the people who need it most should get something from the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It is impossible to finance"
## [1002] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Only the people who need it most should get something from the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance"
## [1003] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Only the people who need it most should get something from the state | It might encourage people to stop working | It is against the principle of linking merit and reward"
## [1004] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Only the people who need it most should get something from the state | It might encourage people to stop working | It is against the principle of linking merit and reward | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit"
## [1005] "question_bbi_2016wave4_basicincome_argumentsagainst_It increases dependence on the state | Only the people who need it most should get something from the state | It might encourage people to stop working | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward"
## [1006] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward"
## [1007] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit"
## [1008] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state"
## [1009] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It is impossible to finance | It might encourage people to stop working"
## [1010] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It is impossible to finance | Only the people who need it most should get something from the state | It might encourage people to stop working"
## [1011] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It might encourage people to stop working | It is impossible to finance"
## [1012] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1013] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It increases dependence on the state | Only the people who need it most should get something from the state | It might encourage people to stop working"
## [1014] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It might encourage people to stop working"
## [1015] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It might encourage people to stop working | It increases dependence on the state"
## [1016] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It might encourage people to stop working | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1017] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It might encourage people to stop working | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1018] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | Only the people who need it most should get something from the state"
## [1019] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | Only the people who need it most should get something from the state | It might encourage people to stop working"
## [1020] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working"
## [1021] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It increases dependence on the state"
## [1022] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is impossible to finance"
## [1023] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is impossible to finance | It increases dependence on the state"
## [1024] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is impossible to finance | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1025] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | Only the people who need it most should get something from the state | It is impossible to finance"
## [1026] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | Only the people who need it most should get something from the state | It is impossible to finance | It increases dependence on the state"
## [1027] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state"
## [1028] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1029] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It might encourage people to stop working"
## [1030] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It might encourage people to stop working | It increases dependence on the state | It is impossible to finance"
## [1031] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It might encourage people to stop working | It is impossible to finance"
## [1032] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It increases dependence on the state"
## [1033] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit"
## [1034] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | Only the people who need it most should get something from the state | It might encourage people to stop working"
## [1035] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working"
## [1036] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It might encourage people to stop working | It is impossible to finance"
## [1037] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It increases dependence on the state | It is impossible to finance"
## [1038] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It increases dependence on the state | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit"
## [1039] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It increases dependence on the state | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working"
## [1040] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It increases dependence on the state | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | Only the people who need it most should get something from the state"
## [1041] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It increases dependence on the state | It is impossible to finance | It might encourage people to stop working | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit"
## [1042] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It increases dependence on the state | It is impossible to finance | Only the people who need it most should get something from the state"
## [1043] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It increases dependence on the state | It is impossible to finance | Only the people who need it most should get something from the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit"
## [1044] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It increases dependence on the state | It might encourage people to stop working"
## [1045] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It increases dependence on the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit"
## [1046] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It increases dependence on the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance"
## [1047] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It increases dependence on the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is impossible to finance"
## [1048] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It increases dependence on the state | It might encourage people to stop working | It is impossible to finance"
## [1049] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It increases dependence on the state | It might encourage people to stop working | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit"
## [1050] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It increases dependence on the state | It might encourage people to stop working | It is impossible to finance | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit"
## [1051] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It increases dependence on the state | It might encourage people to stop working | Only the people who need it most should get something from the state | It is impossible to finance"
## [1052] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It increases dependence on the state | It might encourage people to stop working | Only the people who need it most should get something from the state | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit"
## [1053] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1054] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It increases dependence on the state | Only the people who need it most should get something from the state | It is impossible to finance | It might encourage people to stop working"
## [1055] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It increases dependence on the state | Only the people who need it most should get something from the state | It is impossible to finance | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit"
## [1056] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It increases dependence on the state | Only the people who need it most should get something from the state | It might encourage people to stop working"
## [1057] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It increases dependence on the state | Only the people who need it most should get something from the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit"
## [1058] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It increases dependence on the state | Only the people who need it most should get something from the state | It might encourage people to stop working | It is impossible to finance"
## [1059] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It is impossible to finance"
## [1060] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit"
## [1061] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It might encourage people to stop working"
## [1062] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working"
## [1063] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | Only the people who need it most should get something from the state"
## [1064] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1065] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It is impossible to finance | It increases dependence on the state"
## [1066] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It is impossible to finance | It increases dependence on the state | It might encourage people to stop working"
## [1067] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It is impossible to finance | It increases dependence on the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit"
## [1068] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It is impossible to finance | It increases dependence on the state | Only the people who need it most should get something from the state | It might encourage people to stop working"
## [1069] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It is impossible to finance | It might encourage people to stop working"
## [1070] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It is impossible to finance | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit"
## [1071] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It is impossible to finance | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state"
## [1072] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It is impossible to finance | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1073] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It is impossible to finance | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1074] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It is impossible to finance | It might encourage people to stop working | It increases dependence on the state"
## [1075] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It is impossible to finance | It might encourage people to stop working | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1076] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It is impossible to finance | It might encourage people to stop working | Only the people who need it most should get something from the state"
## [1077] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It is impossible to finance | It might encourage people to stop working | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit"
## [1078] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It is impossible to finance | It might encourage people to stop working | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state"
## [1079] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It is impossible to finance | It might encourage people to stop working | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1080] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It is impossible to finance | Only the people who need it most should get something from the state"
## [1081] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It is impossible to finance | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working"
## [1082] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It is impossible to finance | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1083] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It is impossible to finance | Only the people who need it most should get something from the state | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working"
## [1084] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It is impossible to finance | Only the people who need it most should get something from the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit"
## [1085] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working"
## [1086] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit"
## [1087] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state"
## [1088] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It is impossible to finance"
## [1089] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It is impossible to finance | Only the people who need it most should get something from the state"
## [1090] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1091] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance"
## [1092] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | Only the people who need it most should get something from the state"
## [1093] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state"
## [1094] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1095] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is impossible to finance"
## [1096] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working | It increases dependence on the state"
## [1097] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit"
## [1098] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state"
## [1099] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is impossible to finance"
## [1100] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working | It increases dependence on the state | It is impossible to finance"
## [1101] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working | It increases dependence on the state | It is impossible to finance | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit"
## [1102] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working | It increases dependence on the state | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit"
## [1103] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working | It is impossible to finance"
## [1104] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit"
## [1105] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state"
## [1106] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state"
## [1107] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working | It is impossible to finance | It increases dependence on the state"
## [1108] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working | It is impossible to finance | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit"
## [1109] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working | It is impossible to finance | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1110] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working | It is impossible to finance | Only the people who need it most should get something from the state"
## [1111] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working | Only the people who need it most should get something from the state"
## [1112] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit"
## [1113] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state"
## [1114] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It increases dependence on the state"
## [1115] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1116] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working | Only the people who need it most should get something from the state | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance"
## [1117] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working | Only the people who need it most should get something from the state | It is impossible to finance | It increases dependence on the state"
## [1118] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | It might encourage people to stop working | Only the people who need it most should get something from the state | It is impossible to finance | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit"
## [1119] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [1120] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit"
## [1121] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It increases dependence on the state | It might encourage people to stop working"
## [1122] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working"
## [1123] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It increases dependence on the state"
## [1124] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is impossible to finance"
## [1125] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1126] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is impossible to finance"
## [1127] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It increases dependence on the state | It is impossible to finance | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit"
## [1128] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It increases dependence on the state | It might encourage people to stop working"
## [1129] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It increases dependence on the state | It might encourage people to stop working | It is impossible to finance"
## [1130] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It increases dependence on the state | It might encourage people to stop working | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit"
## [1131] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It is impossible to finance"
## [1132] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working"
## [1133] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It is impossible to finance | It increases dependence on the state"
## [1134] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It is impossible to finance | It increases dependence on the state | It might encourage people to stop working"
## [1135] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It is impossible to finance | It might encourage people to stop working"
## [1136] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It is impossible to finance | It might encourage people to stop working | It increases dependence on the state"
## [1137] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It might encourage people to stop working"
## [1138] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit"
## [1139] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance"
## [1140] "question_bbi_2016wave4_basicincome_argumentsagainst_It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It might encourage people to stop working | It is impossible to finance"
## [1141] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance"
## [1142] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit"
## [1143] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state"
## [1144] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It is against the principle of linking merit and reward"
## [1145] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [1146] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It might encourage people to stop working"
## [1147] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It might encourage people to stop working | It is against the principle of linking merit and reward"
## [1148] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1149] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward"
## [1150] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It increases dependence on the state"
## [1151] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It increases dependence on the state | Only the people who need it most should get something from the state | It might encourage people to stop working"
## [1152] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It might encourage people to stop working"
## [1153] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It might encourage people to stop working | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1154] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It might encourage people to stop working | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1155] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [1156] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1157] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It might encourage people to stop working | It increases dependence on the state"
## [1158] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working"
## [1159] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It increases dependence on the state"
## [1160] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It increases dependence on the state | It is against the principle of linking merit and reward"
## [1161] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It increases dependence on the state | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [1162] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1163] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It increases dependence on the state | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward"
## [1164] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is against the principle of linking merit and reward"
## [1165] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is against the principle of linking merit and reward | It increases dependence on the state"
## [1166] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is against the principle of linking merit and reward | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1167] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [1168] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1169] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | Only the people who need it most should get something from the state"
## [1170] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1171] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | Only the people who need it most should get something from the state | It increases dependence on the state | It is against the principle of linking merit and reward"
## [1172] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward"
## [1173] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It increases dependence on the state"
## [1174] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state"
## [1175] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1176] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It increases dependence on the state | It might encourage people to stop working"
## [1177] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward"
## [1178] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It might encourage people to stop working"
## [1179] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It might encourage people to stop working | It increases dependence on the state | It is against the principle of linking merit and reward"
## [1180] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It might encourage people to stop working | It is against the principle of linking merit and reward | It increases dependence on the state"
## [1181] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It increases dependence on the state"
## [1182] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit"
## [1183] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working"
## [1184] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | Only the people who need it most should get something from the state"
## [1185] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state"
## [1186] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It increases dependence on the state | It is against the principle of linking merit and reward"
## [1187] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It increases dependence on the state | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working"
## [1188] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It increases dependence on the state | It is against the principle of linking merit and reward | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state"
## [1189] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It increases dependence on the state | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [1190] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It increases dependence on the state | It might encourage people to stop working"
## [1191] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It increases dependence on the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit"
## [1192] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It increases dependence on the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward"
## [1193] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It increases dependence on the state | It might encourage people to stop working | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit"
## [1194] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It increases dependence on the state | It might encourage people to stop working | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [1195] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It increases dependence on the state | It might encourage people to stop working | Only the people who need it most should get something from the state"
## [1196] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1197] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It increases dependence on the state | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit"
## [1198] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It increases dependence on the state | Only the people who need it most should get something from the state | It might encourage people to stop working"
## [1199] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It increases dependence on the state | Only the people who need it most should get something from the state | It might encourage people to stop working | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit"
## [1200] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It is against the principle of linking merit and reward"
## [1201] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It might encourage people to stop working | Only the people who need it most should get something from the state"
## [1202] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working"
## [1203] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1204] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | Only the people who need it most should get something from the state"
## [1205] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1206] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state"
## [1207] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1208] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It might encourage people to stop working"
## [1209] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It is against the principle of linking merit and reward | It increases dependence on the state"
## [1210] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It is against the principle of linking merit and reward | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit"
## [1211] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It is against the principle of linking merit and reward | It increases dependence on the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state"
## [1212] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It is against the principle of linking merit and reward | It might encourage people to stop working"
## [1213] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It is against the principle of linking merit and reward | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit"
## [1214] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It is against the principle of linking merit and reward | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state"
## [1215] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It is against the principle of linking merit and reward | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1216] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It is against the principle of linking merit and reward | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state"
## [1217] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It is against the principle of linking merit and reward | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1218] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It is against the principle of linking merit and reward | It might encourage people to stop working | It increases dependence on the state"
## [1219] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It is against the principle of linking merit and reward | It might encourage people to stop working | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit"
## [1220] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It is against the principle of linking merit and reward | It might encourage people to stop working | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1221] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It is against the principle of linking merit and reward | It might encourage people to stop working | Only the people who need it most should get something from the state"
## [1222] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It is against the principle of linking merit and reward | It might encourage people to stop working | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state"
## [1223] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It is against the principle of linking merit and reward | It might encourage people to stop working | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1224] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It is against the principle of linking merit and reward | It might encourage people to stop working | Only the people who need it most should get something from the state | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit"
## [1225] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [1226] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit"
## [1227] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It might encourage people to stop working"
## [1228] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1229] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit"
## [1230] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working"
## [1231] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It might encourage people to stop working | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit"
## [1232] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working"
## [1233] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit"
## [1234] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state"
## [1235] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It is against the principle of linking merit and reward"
## [1236] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [1237] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1238] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward"
## [1239] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward"
## [1240] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It increases dependence on the state"
## [1241] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1242] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [1243] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1244] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state"
## [1245] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1246] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It increases dependence on the state | It is against the principle of linking merit and reward"
## [1247] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward"
## [1248] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It increases dependence on the state"
## [1249] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | It increases dependence on the state"
## [1250] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit"
## [1251] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward"
## [1252] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [1253] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state"
## [1254] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | It increases dependence on the state | It is against the principle of linking merit and reward"
## [1255] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | It increases dependence on the state | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit"
## [1256] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | It increases dependence on the state | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state"
## [1257] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | It increases dependence on the state | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [1258] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1259] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | It is against the principle of linking merit and reward"
## [1260] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit"
## [1261] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state"
## [1262] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state"
## [1263] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1264] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | It is against the principle of linking merit and reward | It increases dependence on the state"
## [1265] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | It is against the principle of linking merit and reward | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit"
## [1266] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | It is against the principle of linking merit and reward | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1267] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [1268] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1269] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit"
## [1270] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | Only the people who need it most should get something from the state"
## [1271] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit"
## [1272] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state"
## [1273] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward"
## [1274] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It increases dependence on the state"
## [1275] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1276] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | Only the people who need it most should get something from the state | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit"
## [1277] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | Only the people who need it most should get something from the state | It increases dependence on the state | It is against the principle of linking merit and reward"
## [1278] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | Only the people who need it most should get something from the state | It increases dependence on the state | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit"
## [1279] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward"
## [1280] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | It might encourage people to stop working | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It increases dependence on the state"
## [1281] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Only the people who need it most should get something from the state"
## [1282] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit"
## [1283] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It is against the principle of linking merit and reward | It might encourage people to stop working"
## [1284] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It increases dependence on the state"
## [1285] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working"
## [1286] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is against the principle of linking merit and reward"
## [1287] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1288] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Only the people who need it most should get something from the state | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit"
## [1289] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Only the people who need it most should get something from the state | It increases dependence on the state | It is against the principle of linking merit and reward"
## [1290] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Only the people who need it most should get something from the state | It increases dependence on the state | It might encourage people to stop working | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit"
## [1291] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward"
## [1292] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It increases dependence on the state"
## [1293] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Only the people who need it most should get something from the state | It might encourage people to stop working"
## [1294] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Only the people who need it most should get something from the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit"
## [1295] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Only the people who need it most should get something from the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state"
## [1296] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Only the people who need it most should get something from the state | It might encourage people to stop working | It increases dependence on the state"
## [1297] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Only the people who need it most should get something from the state | It might encourage people to stop working | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit"
## [1298] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Only the people who need it most should get something from the state | It might encourage people to stop working | It is against the principle of linking merit and reward"
## [1299] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Only the people who need it most should get something from the state | It might encourage people to stop working | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit"
## [1300] "question_bbi_2016wave4_basicincome_argumentsagainst_It is impossible to finance | Only the people who need it most should get something from the state | It might encourage people to stop working | It is against the principle of linking merit and reward | It increases dependence on the state"
## [1301] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working"
## [1302] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit"
## [1303] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state"
## [1304] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It is against the principle of linking merit and reward"
## [1305] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It is against the principle of linking merit and reward | It is impossible to finance"
## [1306] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [1307] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It is impossible to finance"
## [1308] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It is impossible to finance | It is against the principle of linking merit and reward"
## [1309] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1310] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward"
## [1311] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | Only the people who need it most should get something from the state | It is impossible to finance | It is against the principle of linking merit and reward"
## [1312] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward"
## [1313] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It increases dependence on the state"
## [1314] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1315] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It increases dependence on the state | Only the people who need it most should get something from the state | It is impossible to finance"
## [1316] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It is impossible to finance"
## [1317] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It is impossible to finance | It increases dependence on the state"
## [1318] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [1319] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1320] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It increases dependence on the state | It is impossible to finance"
## [1321] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It is impossible to finance"
## [1322] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance"
## [1323] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It increases dependence on the state"
## [1324] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It increases dependence on the state | It is against the principle of linking merit and reward"
## [1325] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1326] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It increases dependence on the state | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward"
## [1327] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It is against the principle of linking merit and reward"
## [1328] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It is against the principle of linking merit and reward | It increases dependence on the state"
## [1329] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It is against the principle of linking merit and reward | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1330] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [1331] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1332] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | Only the people who need it most should get something from the state"
## [1333] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | Only the people who need it most should get something from the state | It increases dependence on the state | It is against the principle of linking merit and reward"
## [1334] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward"
## [1335] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It increases dependence on the state"
## [1336] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state"
## [1337] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1338] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It increases dependence on the state | It is against the principle of linking merit and reward"
## [1339] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It increases dependence on the state | It is impossible to finance | It is against the principle of linking merit and reward"
## [1340] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward"
## [1341] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It increases dependence on the state"
## [1342] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It is impossible to finance"
## [1343] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It is impossible to finance | It increases dependence on the state"
## [1344] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is impossible to finance"
## [1345] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is impossible to finance | It increases dependence on the state"
## [1346] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is impossible to finance | It increases dependence on the state | It is against the principle of linking merit and reward"
## [1347] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is impossible to finance | It is against the principle of linking merit and reward"
## [1348] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is impossible to finance | It is against the principle of linking merit and reward | It increases dependence on the state"
## [1349] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It increases dependence on the state"
## [1350] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit"
## [1351] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward"
## [1352] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It is impossible to finance"
## [1353] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance"
## [1354] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | Only the people who need it most should get something from the state"
## [1355] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state"
## [1356] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It increases dependence on the state | It is against the principle of linking merit and reward"
## [1357] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It increases dependence on the state | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit"
## [1358] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It increases dependence on the state | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance"
## [1359] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It increases dependence on the state | It is against the principle of linking merit and reward | It is impossible to finance"
## [1360] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It increases dependence on the state | It is against the principle of linking merit and reward | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state"
## [1361] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It increases dependence on the state | It is impossible to finance"
## [1362] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It increases dependence on the state | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit"
## [1363] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It increases dependence on the state | It is impossible to finance | Only the people who need it most should get something from the state"
## [1364] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It increases dependence on the state | It is impossible to finance | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit"
## [1365] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1366] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It increases dependence on the state | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit"
## [1367] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It increases dependence on the state | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward"
## [1368] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It increases dependence on the state | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance"
## [1369] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It increases dependence on the state | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward"
## [1370] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It increases dependence on the state | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit"
## [1371] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It increases dependence on the state | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance"
## [1372] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It increases dependence on the state | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It is impossible to finance"
## [1373] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It increases dependence on the state | Only the people who need it most should get something from the state | It is impossible to finance"
## [1374] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward"
## [1375] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit"
## [1376] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state"
## [1377] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1378] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance"
## [1379] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1380] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | Only the people who need it most should get something from the state"
## [1381] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state"
## [1382] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1383] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It increases dependence on the state | It is impossible to finance"
## [1384] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is impossible to finance | It increases dependence on the state"
## [1385] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | It increases dependence on the state"
## [1386] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit"
## [1387] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state"
## [1388] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | It increases dependence on the state | It is impossible to finance"
## [1389] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | It increases dependence on the state | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit"
## [1390] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | It increases dependence on the state | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state"
## [1391] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1392] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | It increases dependence on the state | Only the people who need it most should get something from the state | It is impossible to finance"
## [1393] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | It is impossible to finance"
## [1394] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit"
## [1395] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state"
## [1396] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1397] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state"
## [1398] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1399] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | It is impossible to finance | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit"
## [1400] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | It is impossible to finance | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1401] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | It is impossible to finance | Only the people who need it most should get something from the state"
## [1402] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | It is impossible to finance | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state"
## [1403] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [1404] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit"
## [1405] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state"
## [1406] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It increases dependence on the state"
## [1407] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1408] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It increases dependence on the state | It is impossible to finance"
## [1409] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It is impossible to finance"
## [1410] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It is impossible to finance | It increases dependence on the state"
## [1411] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance"
## [1412] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit"
## [1413] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state"
## [1414] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It is against the principle of linking merit and reward"
## [1415] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [1416] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1417] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward"
## [1418] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It increases dependence on the state"
## [1419] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1420] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [1421] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1422] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state"
## [1423] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1424] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It increases dependence on the state | It is against the principle of linking merit and reward"
## [1425] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward"
## [1426] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It increases dependence on the state"
## [1427] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | It increases dependence on the state"
## [1428] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit"
## [1429] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward"
## [1430] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [1431] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | Only the people who need it most should get something from the state"
## [1432] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | It increases dependence on the state | It is against the principle of linking merit and reward"
## [1433] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | It increases dependence on the state | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit"
## [1434] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | It increases dependence on the state | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [1435] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1436] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | It increases dependence on the state | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit"
## [1437] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | It is against the principle of linking merit and reward"
## [1438] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit"
## [1439] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state"
## [1440] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1441] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | It is against the principle of linking merit and reward | It increases dependence on the state"
## [1442] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | It is against the principle of linking merit and reward | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit"
## [1443] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | It is against the principle of linking merit and reward | It increases dependence on the state | Only the people who need it most should get something from the state"
## [1444] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | It is against the principle of linking merit and reward | It increases dependence on the state | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit"
## [1445] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state"
## [1446] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit"
## [1447] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state"
## [1448] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | It is against the principle of linking merit and reward | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1449] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | Only the people who need it most should get something from the state"
## [1450] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit"
## [1451] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state"
## [1452] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It increases dependence on the state"
## [1453] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1454] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | Only the people who need it most should get something from the state | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward"
## [1455] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | Only the people who need it most should get something from the state | It increases dependence on the state | It is against the principle of linking merit and reward"
## [1456] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward"
## [1457] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit"
## [1458] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | It is impossible to finance | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It increases dependence on the state"
## [1459] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Only the people who need it most should get something from the state"
## [1460] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit"
## [1461] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state"
## [1462] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward"
## [1463] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It is impossible to finance"
## [1464] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance"
## [1465] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Only the people who need it most should get something from the state | It increases dependence on the state"
## [1466] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Only the people who need it most should get something from the state | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit"
## [1467] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Only the people who need it most should get something from the state | It increases dependence on the state | It is against the principle of linking merit and reward"
## [1468] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Only the people who need it most should get something from the state | It increases dependence on the state | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit"
## [1469] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Only the people who need it most should get something from the state | It increases dependence on the state | It is against the principle of linking merit and reward | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit"
## [1470] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Only the people who need it most should get something from the state | It increases dependence on the state | It is impossible to finance"
## [1471] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward"
## [1472] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It increases dependence on the state"
## [1473] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit"
## [1474] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It is impossible to finance | It increases dependence on the state"
## [1475] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It is impossible to finance | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit"
## [1476] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Only the people who need it most should get something from the state | It is impossible to finance"
## [1477] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Only the people who need it most should get something from the state | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit"
## [1478] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Only the people who need it most should get something from the state | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state"
## [1479] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Only the people who need it most should get something from the state | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It is against the principle of linking merit and reward"
## [1480] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Only the people who need it most should get something from the state | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It increases dependence on the state"
## [1481] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Only the people who need it most should get something from the state | It is impossible to finance | It increases dependence on the state"
## [1482] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Only the people who need it most should get something from the state | It is impossible to finance | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit"
## [1483] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Only the people who need it most should get something from the state | It is impossible to finance | It is against the principle of linking merit and reward"
## [1484] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Only the people who need it most should get something from the state | It is impossible to finance | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit"
## [1485] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Only the people who need it most should get something from the state | It is impossible to finance | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state"
## [1486] "question_bbi_2016wave4_basicincome_argumentsagainst_It might encourage people to stop working | Only the people who need it most should get something from the state | It is impossible to finance | It is against the principle of linking merit and reward | It increases dependence on the state"
## [1487] "question_bbi_2016wave4_basicincome_argumentsagainst_None of the above"
## [1488] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state"
## [1489] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit"
## [1490] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state"
## [1491] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It is against the principle of linking merit and reward | It is impossible to finance | It might encourage people to stop working"
## [1492] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward"
## [1493] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It increases dependence on the state | It might encourage people to stop working | It is impossible to finance"
## [1494] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It is impossible to finance | It might encourage people to stop working"
## [1495] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It might encourage people to stop working"
## [1496] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It might encourage people to stop working | It is impossible to finance"
## [1497] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It might encourage people to stop working | It is impossible to finance | It increases dependence on the state"
## [1498] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance"
## [1499] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It increases dependence on the state | It might encourage people to stop working"
## [1500] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It is against the principle of linking merit and reward | It might encourage people to stop working | It increases dependence on the state"
## [1501] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It might encourage people to stop working"
## [1502] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It might encourage people to stop working | It is against the principle of linking merit and reward"
## [1503] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working"
## [1504] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It increases dependence on the state"
## [1505] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It increases dependence on the state | It is impossible to finance"
## [1506] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is against the principle of linking merit and reward"
## [1507] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is against the principle of linking merit and reward | It is impossible to finance"
## [1508] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is impossible to finance"
## [1509] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is impossible to finance | It is against the principle of linking merit and reward"
## [1510] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It increases dependence on the state"
## [1511] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit"
## [1512] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It might encourage people to stop working"
## [1513] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working"
## [1514] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It increases dependence on the state | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit"
## [1515] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It increases dependence on the state | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance"
## [1516] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It increases dependence on the state | It is against the principle of linking merit and reward | It is impossible to finance | It might encourage people to stop working"
## [1517] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It increases dependence on the state | It is against the principle of linking merit and reward | It might encourage people to stop working"
## [1518] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It increases dependence on the state | It is impossible to finance"
## [1519] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It increases dependence on the state | It is impossible to finance | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working"
## [1520] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It increases dependence on the state | It is impossible to finance | It might encourage people to stop working"
## [1521] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It increases dependence on the state | It is impossible to finance | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit"
## [1522] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It increases dependence on the state | It is impossible to finance | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward"
## [1523] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It increases dependence on the state | It is impossible to finance | It might encourage people to stop working | It is against the principle of linking merit and reward"
## [1524] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It increases dependence on the state | It might encourage people to stop working"
## [1525] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It increases dependence on the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward"
## [1526] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It increases dependence on the state | It might encourage people to stop working | It is against the principle of linking merit and reward"
## [1527] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It increases dependence on the state | It might encourage people to stop working | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit"
## [1528] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It increases dependence on the state | It might encourage people to stop working | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit"
## [1529] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is against the principle of linking merit and reward"
## [1530] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit"
## [1531] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state"
## [1532] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working"
## [1533] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is impossible to finance"
## [1534] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It increases dependence on the state"
## [1535] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is impossible to finance"
## [1536] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It increases dependence on the state | It is impossible to finance"
## [1537] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It increases dependence on the state | It is impossible to finance | It might encourage people to stop working"
## [1538] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It increases dependence on the state | It might encourage people to stop working"
## [1539] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It is impossible to finance"
## [1540] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working"
## [1541] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It is impossible to finance | It increases dependence on the state"
## [1542] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It is impossible to finance | It might encourage people to stop working"
## [1543] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It might encourage people to stop working"
## [1544] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It might encourage people to stop working | It increases dependence on the state | It is impossible to finance"
## [1545] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is against the principle of linking merit and reward | It might encourage people to stop working | It is impossible to finance"
## [1546] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is impossible to finance"
## [1547] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit"
## [1548] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working"
## [1549] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It increases dependence on the state"
## [1550] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is impossible to finance | It increases dependence on the state"
## [1551] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is impossible to finance | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward"
## [1552] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is impossible to finance | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working | It is against the principle of linking merit and reward"
## [1553] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is impossible to finance | It increases dependence on the state | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit"
## [1554] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is impossible to finance | It increases dependence on the state | It might encourage people to stop working"
## [1555] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is impossible to finance | It increases dependence on the state | It might encourage people to stop working | It is against the principle of linking merit and reward"
## [1556] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is impossible to finance | It increases dependence on the state | It might encourage people to stop working | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit"
## [1557] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is impossible to finance | It is against the principle of linking merit and reward"
## [1558] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is impossible to finance | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It might encourage people to stop working"
## [1559] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is impossible to finance | It is against the principle of linking merit and reward | It increases dependence on the state"
## [1560] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is impossible to finance | It is against the principle of linking merit and reward | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit"
## [1561] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is impossible to finance | It is against the principle of linking merit and reward | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit"
## [1562] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is impossible to finance | It is against the principle of linking merit and reward | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state"
## [1563] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is impossible to finance | It might encourage people to stop working"
## [1564] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is impossible to finance | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit"
## [1565] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is impossible to finance | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward"
## [1566] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is impossible to finance | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It increases dependence on the state"
## [1567] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is impossible to finance | It might encourage people to stop working | It increases dependence on the state"
## [1568] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is impossible to finance | It might encourage people to stop working | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit"
## [1569] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is impossible to finance | It might encourage people to stop working | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward"
## [1570] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is impossible to finance | It might encourage people to stop working | It increases dependence on the state | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit"
## [1571] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is impossible to finance | It might encourage people to stop working | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit"
## [1572] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It is impossible to finance | It might encourage people to stop working | It is against the principle of linking merit and reward | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit"
## [1573] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It might encourage people to stop working"
## [1574] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit"
## [1575] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state"
## [1576] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state | It is against the principle of linking merit and reward"
## [1577] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward"
## [1578] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It increases dependence on the state"
## [1579] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward | It is impossible to finance | It increases dependence on the state"
## [1580] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance"
## [1581] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It might encourage people to stop working | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It is against the principle of linking merit and reward"
## [1582] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It might encourage people to stop working | It increases dependence on the state"
## [1583] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It might encourage people to stop working | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit"
## [1584] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It might encourage people to stop working | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward"
## [1585] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It might encourage people to stop working | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit | It is impossible to finance | It is against the principle of linking merit and reward"
## [1586] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It might encourage people to stop working | It increases dependence on the state | It is against the principle of linking merit and reward | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit"
## [1587] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It might encourage people to stop working | It increases dependence on the state | It is impossible to finance"
## [1588] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It might encourage people to stop working | It increases dependence on the state | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward"
## [1589] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It might encourage people to stop working | It is against the principle of linking merit and reward"
## [1590] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It might encourage people to stop working | It is against the principle of linking merit and reward | It increases dependence on the state"
## [1591] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It might encourage people to stop working | It is against the principle of linking merit and reward | It increases dependence on the state | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit"
## [1592] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It might encourage people to stop working | It is against the principle of linking merit and reward | It is impossible to finance"
## [1593] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It might encourage people to stop working | It is against the principle of linking merit and reward | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit"
## [1594] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It might encourage people to stop working | It is against the principle of linking merit and reward | It is impossible to finance | It increases dependence on the state"
## [1595] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It might encourage people to stop working | It is impossible to finance"
## [1596] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It might encourage people to stop working | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit"
## [1597] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It might encourage people to stop working | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state"
## [1598] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It might encourage people to stop working | It is impossible to finance | Foreigners might come to my country and take advantage of the benefit | It is against the principle of linking merit and reward"
## [1599] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It might encourage people to stop working | It is impossible to finance | It increases dependence on the state"
## [1600] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It might encourage people to stop working | It is impossible to finance | It increases dependence on the state | Foreigners might come to my country and take advantage of the benefit"
## [1601] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It might encourage people to stop working | It is impossible to finance | It is against the principle of linking merit and reward"
## [1602] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It might encourage people to stop working | It is impossible to finance | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit"
## [1603] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It might encourage people to stop working | It is impossible to finance | It is against the principle of linking merit and reward | Foreigners might come to my country and take advantage of the benefit | It increases dependence on the state"
## [1604] "question_bbi_2016wave4_basicincome_argumentsagainst_Only the people who need it most should get something from the state | It might encourage people to stop working | It is impossible to finance | It is against the principle of linking merit and reward | It increases dependence on the state"
## [1605] "age_group_26_39"
## [1606] "age_group_40_65"
set.seed(1500)
index <- sample(2,nrow(basic_income_data3), replace = TRUE, prob = c(0.8,0.2))
Training <- basic_income_data3[index==1,]
Training_X <- Training %>% select(-40,-41,-42,-43)
Training_Y <- Training %>% select("question_bbi_2016wave4_basicincome_vote_I would vote for it")
Testing <- basic_income_data3[index==2,]
Testing_X <- Testing %>% select(-40,-41,-42,-43)
Testing_Y <- Testing %>% select("question_bbi_2016wave4_basicincome_vote_I would vote for it")
param1 <- list(set.seed = 1500, eval_metric = "auc", objective = "binary:logistic")
model_1 <- xgboost(data = as.matrix(Training_X), label = as.matrix(Training_Y), params = param1, nrounds = 100, verbose = 1)
## [10:33:22] WARNING: amalgamation/../src/learner.cc:627:
## Parameters: { "set_seed" } might not be used.
##
## This could be a false alarm, with some parameters getting used by language bindings but
## then being mistakenly passed down to XGBoost core, or some parameter actually being used
## but getting flagged wrongly here. Please open an issue if you find any such cases.
##
##
## [1] train-auc:0.735420
## [2] train-auc:0.745003
## [3] train-auc:0.761482
## [4] train-auc:0.771452
## [5] train-auc:0.775636
## [6] train-auc:0.779755
## [7] train-auc:0.785473
## [8] train-auc:0.790332
## [9] train-auc:0.795504
## [10] train-auc:0.802006
## [11] train-auc:0.805745
## [12] train-auc:0.810100
## [13] train-auc:0.812895
## [14] train-auc:0.816806
## [15] train-auc:0.818646
## [16] train-auc:0.823935
## [17] train-auc:0.825522
## [18] train-auc:0.829285
## [19] train-auc:0.831719
## [20] train-auc:0.832944
## [21] train-auc:0.835667
## [22] train-auc:0.836549
## [23] train-auc:0.837200
## [24] train-auc:0.840623
## [25] train-auc:0.841492
## [26] train-auc:0.842881
## [27] train-auc:0.843416
## [28] train-auc:0.844831
## [29] train-auc:0.846035
## [30] train-auc:0.848665
## [31] train-auc:0.849450
## [32] train-auc:0.849890
## [33] train-auc:0.850183
## [34] train-auc:0.852547
## [35] train-auc:0.855915
## [36] train-auc:0.858046
## [37] train-auc:0.858558
## [38] train-auc:0.858956
## [39] train-auc:0.859569
## [40] train-auc:0.860610
## [41] train-auc:0.861085
## [42] train-auc:0.861434
## [43] train-auc:0.862076
## [44] train-auc:0.862417
## [45] train-auc:0.863668
## [46] train-auc:0.865057
## [47] train-auc:0.865690
## [48] train-auc:0.866058
## [49] train-auc:0.866633
## [50] train-auc:0.868575
## [51] train-auc:0.868790
## [52] train-auc:0.869016
## [53] train-auc:0.869737
## [54] train-auc:0.872266
## [55] train-auc:0.875901
## [56] train-auc:0.876275
## [57] train-auc:0.876389
## [58] train-auc:0.876923
## [59] train-auc:0.877831
## [60] train-auc:0.879158
## [61] train-auc:0.879716
## [62] train-auc:0.880497
## [63] train-auc:0.881095
## [64] train-auc:0.881897
## [65] train-auc:0.882669
## [66] train-auc:0.882849
## [67] train-auc:0.884806
## [68] train-auc:0.885075
## [69] train-auc:0.885328
## [70] train-auc:0.885738
## [71] train-auc:0.886320
## [72] train-auc:0.887410
## [73] train-auc:0.887793
## [74] train-auc:0.887992
## [75] train-auc:0.888295
## [76] train-auc:0.889932
## [77] train-auc:0.890176
## [78] train-auc:0.890280
## [79] train-auc:0.891120
## [80] train-auc:0.891493
## [81] train-auc:0.892757
## [82] train-auc:0.892905
## [83] train-auc:0.893115
## [84] train-auc:0.893312
## [85] train-auc:0.893588
## [86] train-auc:0.894626
## [87] train-auc:0.895742
## [88] train-auc:0.896267
## [89] train-auc:0.896549
## [90] train-auc:0.896977
## [91] train-auc:0.897381
## [92] train-auc:0.898004
## [93] train-auc:0.898082
## [94] train-auc:0.898550
## [95] train-auc:0.899139
## [96] train-auc:0.899508
## [97] train-auc:0.899816
## [98] train-auc:0.899983
## [99] train-auc:0.901155
## [100] train-auc:0.901602
Prediction_Y <- predict(model_1, as.matrix(Testing_X))
Prediction_Y1 <- as.data.frame(Prediction_Y)
Compare_Y <- mutate(Testing_Y,Prediction_Y1)
Compare_Y1 <- mutate(Compare_Y, Y_pred = ifelse(Prediction_Y<0.5,0,1))
Compare_Y2 <- Compare_Y1 %>% select(-2)
CFM = confusionMatrix(data = as.factor(Compare_Y2$`question_bbi_2016wave4_basicincome_vote_I would vote for it`), reference = as.factor(Compare_Y2$Y_pred))
CFM
## Confusion Matrix and Statistics
##
## Reference
## Prediction 0 1
## 0 1221 175
## 1 351 200
##
## Accuracy : 0.7298
## 95% CI : (0.7095, 0.7495)
## No Information Rate : 0.8074
## P-Value [Acc > NIR] : 1
##
## Kappa : 0.263
##
## Mcnemar's Test P-Value : 2.341e-14
##
## Sensitivity : 0.7767
## Specificity : 0.5333
## Pos Pred Value : 0.8746
## Neg Pred Value : 0.3630
## Prevalence : 0.8074
## Detection Rate : 0.6271
## Detection Prevalence : 0.7170
## Balanced Accuracy : 0.6550
##
## 'Positive' Class : 0
##
xgb.plot.tree(model = model_1, trees = 1)