File size: 41,141 Bytes
ef14680 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 | [
{
"start_time": "54.64",
"stop_time": "57.96",
"speaker": "Ellie",
"value": "hi i'm ellie thanks for coming in today"
},
{
"start_time": "58.405",
"stop_time": "62.025",
"speaker": "Ellie",
"value": "i was created to talk to people in a safe and secure environment"
},
{
"start_time": "62.72",
"stop_time": "69.15",
"speaker": "Ellie",
"value": "i'm not a therapist but i'm here to learn about people and would love to learn about you i'll ask a few questions to get us started"
},
{
"start_time": "69.74",
"stop_time": "74.46",
"speaker": "Ellie",
"value": "and please feel free to tell me anything you answers are totally confidential"
},
{
"start_time": "75.115",
"stop_time": "76.335",
"speaker": "Ellie",
"value": "are you okay with this"
},
{
"start_time": "76.7",
"stop_time": "77",
"speaker": "Participant",
"value": "yeah"
},
{
"start_time": "77.69",
"stop_time": "78.23",
"speaker": "Ellie",
"value": "okay"
},
{
"start_time": "77.71",
"stop_time": "78.05",
"speaker": "Participant",
"value": "yes"
},
{
"start_time": "79.295",
"stop_time": "81.375",
"speaker": "Ellie",
"value": "so how are you doing today"
},
{
"start_time": "81.865",
"stop_time": "82.885",
"speaker": "Participant",
"value": "fine how are you"
},
{
"start_time": "83.73",
"stop_time": "85.35",
"speaker": "Ellie",
"value": "i'm great thanks"
},
{
"start_time": "85.945",
"stop_time": "87.375",
"speaker": "Ellie",
"value": "where are you from originally"
},
{
"start_time": "87.725",
"stop_time": "89.985",
"speaker": "Participant",
"value": "uh born and raise right here on the west side"
},
{
"start_time": "90.36",
"stop_time": "90.87",
"speaker": "Ellie",
"value": "really"
},
{
"start_time": "90.87",
"stop_time": "91.83",
"speaker": "Participant",
"value": "venice beach"
},
{
"start_time": "93.285",
"stop_time": "93.965",
"speaker": "Ellie",
"value": "awesome"
},
{
"start_time": "94.5",
"stop_time": "95.01",
"speaker": "Participant",
"value": "[laughter]"
},
{
"start_time": "94.98",
"stop_time": "96.71",
"speaker": "Ellie",
"value": "what are some things you really like about l_a"
},
{
"start_time": "97.34",
"stop_time": "98.04",
"speaker": "Participant",
"value": "everything"
},
{
"start_time": "99.565",
"stop_time": "100.755",
"speaker": "Participant",
"value": "the beach the weather"
},
{
"start_time": "99.855",
"stop_time": "101.295",
"speaker": "Ellie",
"value": "can you give me an example of that"
},
{
"start_time": "101.69",
"stop_time": "103.79",
"speaker": "Participant",
"value": "uh the beach the weather um"
},
{
"start_time": "105.405",
"stop_time": "106.275",
"speaker": "Participant",
"value": "everything"
},
{
"start_time": "106.785",
"stop_time": "107.315",
"speaker": "Ellie",
"value": "okay"
},
{
"start_time": "107.525",
"stop_time": "108.225",
"speaker": "Participant",
"value": "the girls"
},
{
"start_time": "107.86",
"stop_time": "109.94",
"speaker": "Ellie",
"value": "what are some things you don't really like about l_a"
},
{
"start_time": "110.405",
"stop_time": "110.965",
"speaker": "Participant",
"value": "uh"
},
{
"start_time": "111.54",
"stop_time": "111.9",
"speaker": "Participant",
"value": "nothing"
},
{
"start_time": "112.445",
"stop_time": "113.105",
"speaker": "Participant",
"value": "nothing"
},
{
"start_time": "115.15",
"stop_time": "115.6",
"speaker": "Ellie",
"value": "okay"
},
{
"start_time": "116.29",
"stop_time": "117.36",
"speaker": "Participant",
"value": "traffic maybe"
},
{
"start_time": "119.13",
"stop_time": "119.73",
"speaker": "Ellie",
"value": "[laughter]"
},
{
"start_time": "119.775",
"stop_time": "121.055",
"speaker": "Ellie",
"value": "i see what you mean"
},
{
"start_time": "122.17",
"stop_time": "124.6",
"speaker": "Ellie",
"value": "who's someone that's been a positive influence in your life"
},
{
"start_time": "125.18",
"stop_time": "126.51",
"speaker": "Participant",
"value": "uh my family"
},
{
"start_time": "128.93",
"stop_time": "130.65",
"speaker": "Ellie",
"value": "i'd love to hear all about it"
},
{
"start_time": "132.495",
"stop_time": "134.135",
"speaker": "Participant",
"value": "uh my mother"
},
{
"start_time": "135.64",
"stop_time": "136.95",
"speaker": "Participant",
"value": "she's uh very"
},
{
"start_time": "137.42",
"stop_time": "138.68",
"speaker": "Participant",
"value": "good hearted person"
},
{
"start_time": "139.065",
"stop_time": "140.285",
"speaker": "Participant",
"value": "gives me good advice"
},
{
"start_time": "141.97",
"stop_time": "142.72",
"speaker": "Ellie",
"value": "that's good"
},
{
"start_time": "143.47",
"stop_time": "145.2",
"speaker": "Ellie",
"value": "how close are you to your family"
},
{
"start_time": "145.71",
"stop_time": "147.67",
"speaker": "Participant",
"value": "oh pretty close yeah"
},
{
"start_time": "148.195",
"stop_time": "150.225",
"speaker": "Participant",
"value": "family comes first family is number one"
},
{
"start_time": "151.575",
"stop_time": "152.195",
"speaker": "Ellie",
"value": "yeah"
},
{
"start_time": "153.19",
"stop_time": "155.02",
"speaker": "Ellie",
"value": "what are some things you like to do for fun"
},
{
"start_time": "155.55",
"stop_time": "156.35",
"speaker": "Participant",
"value": "uh"
},
{
"start_time": "156.645",
"stop_time": "160.095",
"speaker": "Participant",
"value": "go to the gym you know exercise go to the beach"
},
{
"start_time": "161.505",
"stop_time": "164.605",
"speaker": "Participant",
"value": "party every once in a while wathc basketball football"
},
{
"start_time": "161.86",
"stop_time": "162.29",
"speaker": "Ellie",
"value": "cool"
},
{
"start_time": "165.98",
"stop_time": "166.5",
"speaker": "Ellie",
"value": "okay"
},
{
"start_time": "166.525",
"stop_time": "167.285",
"speaker": "Participant",
"value": "take trips"
},
{
"start_time": "167.38",
"stop_time": "168.33",
"speaker": "Participant",
"value": "go to vegas"
},
{
"start_time": "170.58",
"stop_time": "172.13",
"speaker": "Ellie",
"value": "when was the last time that happened"
},
{
"start_time": "172.43",
"stop_time": "173.23",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "173.855",
"stop_time": "175.835",
"speaker": "Participant",
"value": "which one went to the gym last night"
},
{
"start_time": "176.41",
"stop_time": "179.34",
"speaker": "Participant",
"value": "i have friends that live in vegas so i go there often"
},
{
"start_time": "180.4",
"stop_time": "180.9",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "180.735",
"stop_time": "182.195",
"speaker": "Ellie",
"value": "what do you enjoy about traveling"
},
{
"start_time": "183.4",
"stop_time": "185.38",
"speaker": "Participant",
"value": "probably just take a trip get out"
},
{
"start_time": "186.395",
"stop_time": "187.805",
"speaker": "Participant",
"value": "get away from the city for a minute"
},
{
"start_time": "188.755",
"stop_time": "192.565",
"speaker": "Participant",
"value": "but i'm a city boy so i can't be away too long you know i love the city"
},
{
"start_time": "194.075",
"stop_time": "195.245",
"speaker": "Ellie",
"value": "i see what you mean"
},
{
"start_time": "196.145",
"stop_time": "197.465",
"speaker": "Ellie",
"value": "what do you do to relax"
},
{
"start_time": "198.23",
"stop_time": "199.23",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "201.715",
"stop_time": "202.995",
"speaker": "Participant",
"value": "go to the beach"
},
{
"start_time": "205.78",
"stop_time": "207.77",
"speaker": "Ellie",
"value": "how are you at controlling your temper"
},
{
"start_time": "207.9",
"stop_time": "210.45",
"speaker": "Participant",
"value": "oh that's that's been a problem over the years"
},
{
"start_time": "212.37",
"stop_time": "213.36",
"speaker": "Ellie",
"value": "tell me more about that"
},
{
"start_time": "214.25",
"stop_time": "216.37",
"speaker": "Participant",
"value": "um i don't know just have a"
},
{
"start_time": "216.875",
"stop_time": "218.235",
"speaker": "Participant",
"value": "little anger i guess"
},
{
"start_time": "218.39",
"stop_time": "221.395",
"speaker": "Participant",
"value": "anger anger management problem [laughter] "
},
{
"start_time": "222.025",
"stop_time": "225.215",
"speaker": "Ellie",
"value": "when was the last time you argued with someone and what was it about"
},
{
"start_time": "225.475",
"stop_time": "227.11",
"speaker": "Participant",
"value": "um [exhales]"
},
{
"start_time": "228.4",
"stop_time": "230.36",
"speaker": "Participant",
"value": "probably um yesterday"
},
{
"start_time": "231.515",
"stop_time": "232.775",
"speaker": "Participant",
"value": "i forget what it was about"
},
{
"start_time": "235.39",
"stop_time": "237.05",
"speaker": "Ellie",
"value": "what do you do when you're annoyed"
},
{
"start_time": "238.695",
"stop_time": "240.715",
"speaker": "Participant",
"value": "uh i'll go to the gym"
},
{
"start_time": "243.26",
"stop_time": "245.31",
"speaker": "Ellie",
"value": "what are some things that make you really mad"
},
{
"start_time": "247.05",
"stop_time": "247.77",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "250.565",
"stop_time": "251.315",
"speaker": "Participant",
"value": "people"
},
{
"start_time": "253.455",
"stop_time": "254.565",
"speaker": "Ellie",
"value": "tell me more about that"
},
{
"start_time": "255.795",
"stop_time": "256.555",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "256.69",
"stop_time": "258.44",
"speaker": "Participant",
"value": "i don't know just people and uh"
},
{
"start_time": "260.52",
"stop_time": "262.4",
"speaker": "Participant",
"value": "just the way they are i guess"
},
{
"start_time": "263.685",
"stop_time": "266.595",
"speaker": "Participant",
"value": "they get on my nerves sometimes [laughter]"
},
{
"start_time": "267.425",
"stop_time": "268.205",
"speaker": "Ellie",
"value": "okay"
},
{
"start_time": "269.31",
"stop_time": "270.62",
"speaker": "Ellie",
"value": "what's your dream job"
},
{
"start_time": "271.66",
"stop_time": "272.72",
"speaker": "Participant",
"value": "dream job"
},
{
"start_time": "272.825",
"stop_time": "274.585",
"speaker": "Participant",
"value": "well i was working at l_a_x"
},
{
"start_time": "274.99",
"stop_time": "278.79",
"speaker": "Participant",
"value": "i built this city right here playa vista where we're at pretty much built"
},
{
"start_time": "279.37",
"stop_time": "281.97",
"speaker": "Participant",
"value": "all of it that's been built so far in the past ten years"
},
{
"start_time": "282.215",
"stop_time": "288.725",
"speaker": "Participant",
"value": "and i always wanted to work at the airport l_a_x and i finally accomplished that goal after getting my g_e_d two years ago"
},
{
"start_time": "289.175",
"stop_time": "289.685",
"speaker": "Ellie",
"value": "wow"
},
{
"start_time": "289.285",
"stop_time": "290.395",
"speaker": "Participant",
"value": "i'm at l_a_x"
},
{
"start_time": "290.065",
"stop_time": "291.065",
"speaker": "Ellie",
"value": "that's great"
},
{
"start_time": "292.23",
"stop_time": "294.24",
"speaker": "Participant",
"value": "yeah so i'm working at l_a_x right now"
},
{
"start_time": "294.92",
"stop_time": "295.7",
"speaker": "Participant",
"value": "l_a airport"
},
{
"start_time": "296.235",
"stop_time": "296.785",
"speaker": "Ellie",
"value": "nice"
},
{
"start_time": "297.195",
"stop_time": "297.795",
"speaker": "Participant",
"value": "yeah"
},
{
"start_time": "298.27",
"stop_time": "300.65",
"speaker": "Ellie",
"value": "what's one of your most memorable experiences"
},
{
"start_time": "301.445",
"stop_time": "302.875",
"speaker": "Participant",
"value": "of what working at the airport"
},
{
"start_time": "304.09",
"stop_time": "304.58",
"speaker": "Ellie",
"value": "mhm"
},
{
"start_time": "305.83",
"stop_time": "306.45",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "306.955",
"stop_time": "309.345",
"speaker": "Participant",
"value": "i guess during the holidays there was some girl that"
},
{
"start_time": "309.535",
"stop_time": "312.845",
"speaker": "Participant",
"value": "worked there and i had a crush on her but she turned out to be a lesbian"
},
{
"start_time": "313.475",
"stop_time": "314.435",
"speaker": "Participant",
"value": "she's beautiful"
},
{
"start_time": "315.43",
"stop_time": "316.15",
"speaker": "Participant",
"value": "haha"
},
{
"start_time": "316.175",
"stop_time": "317.015",
"speaker": "Ellie",
"value": "that sucks"
},
{
"start_time": "317.28",
"stop_time": "320.005",
"speaker": "Participant",
"value": "yeah [laughter] yeah"
},
{
"start_time": "321.455",
"stop_time": "323.085",
"speaker": "Ellie",
"value": "have you ever served in the military"
},
{
"start_time": "323.135",
"stop_time": "323.555",
"speaker": "Participant",
"value": "no"
},
{
"start_time": "324.44",
"stop_time": "326.52",
"speaker": "Ellie",
"value": "have you ever been diagnosed with p_t_s_d"
},
{
"start_time": "327.065",
"stop_time": "327.535",
"speaker": "Participant",
"value": "no"
},
{
"start_time": "328.425",
"stop_time": "330.195",
"speaker": "Ellie",
"value": "have you been diagnosed with depression"
},
{
"start_time": "330.795",
"stop_time": "333.915",
"speaker": "Participant",
"value": "i think when i was a youngster like a teenager"
},
{
"start_time": "337.685",
"stop_time": "339.295",
"speaker": "Ellie",
"value": "do you still go to therapy now"
},
{
"start_time": "337.7",
"stop_time": "339.14",
"speaker": "Participant",
"value": "fourteen fifteen"
},
{
"start_time": "339.395",
"stop_time": "339.705",
"speaker": "Participant",
"value": "no"
},
{
"start_time": "341.085",
"stop_time": "342.095",
"speaker": "Ellie",
"value": "why did you stop"
},
{
"start_time": "342.655",
"stop_time": "345.875",
"speaker": "Participant",
"value": "oh i just oh i just stopped"
},
{
"start_time": "346.66",
"stop_time": "353.2",
"speaker": "Participant",
"value": "uh i went like for to like a rehab for replacement and when i was fifteen sixteen after i did a little bit of time and then"
},
{
"start_time": "353.6",
"stop_time": "357.72",
"speaker": "Participant",
"value": "i ewoled from there i like escaped and then i went back to jail so that's when it stopped"
},
{
"start_time": "359.19",
"stop_time": "360.58",
"speaker": "Ellie",
"value": "i'm sorry to hear that"
},
{
"start_time": "360.64",
"stop_time": "362.49",
"speaker": "Participant",
"value": "uh no problem it's not your fault"
},
{
"start_time": "363.25",
"stop_time": "364.8",
"speaker": "Ellie",
"value": "do you feel like therapy is useful"
},
{
"start_time": "365.5",
"stop_time": "366.47",
"speaker": "Participant",
"value": "excuse me"
},
{
"start_time": "367.2",
"stop_time": "369.04",
"speaker": "Ellie",
"value": "is going to a therapist helping you"
},
{
"start_time": "370.225",
"stop_time": "370.875",
"speaker": "Participant",
"value": "it wasn't"
},
{
"start_time": "371.735",
"stop_time": "373.905",
"speaker": "Participant",
"value": "when i was a when i was teenager"
},
{
"start_time": "375.935",
"stop_time": "377.205",
"speaker": "Ellie",
"value": "tell me more about that"
},
{
"start_time": "378.455",
"stop_time": "379.885",
"speaker": "Participant",
"value": "what when i was a teenager"
},
{
"start_time": "380.515",
"stop_time": "381.035",
"speaker": "Ellie",
"value": "yes"
},
{
"start_time": "381.87",
"stop_time": "383.79",
"speaker": "Participant",
"value": "when i was a teenager i just uh"
},
{
"start_time": "384.185",
"stop_time": "385.075",
"speaker": "Participant",
"value": "i was very"
},
{
"start_time": "385.585",
"stop_time": "388.075",
"speaker": "Participant",
"value": "restless i was very destructive you know"
},
{
"start_time": "390.405",
"stop_time": "391.945",
"speaker": "Ellie",
"value": "how have you been feeling lately"
},
{
"start_time": "392.83",
"stop_time": "393.61",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "394.915",
"stop_time": "395.905",
"speaker": "Participant",
"value": "like i'm"
},
{
"start_time": "396.065",
"stop_time": "399.245",
"speaker": "Participant",
"value": "i'm not going forward as as fast as i want to"
},
{
"start_time": "402.11",
"stop_time": "403.55",
"speaker": "Ellie",
"value": "that sounds really hard"
},
{
"start_time": "405.085",
"stop_time": "407.665",
"speaker": "Participant",
"value": "yeah it's it's kinda hard but uh"
},
{
"start_time": "407.87",
"stop_time": "408.53",
"speaker": "Participant",
"value": "you know"
},
{
"start_time": "409.085",
"stop_time": "410.485",
"speaker": "Participant",
"value": "it is what it is you know"
},
{
"start_time": "411.5",
"stop_time": "413.4",
"speaker": "Ellie",
"value": "could you have done anything to avoid it"
},
{
"start_time": "414.785",
"stop_time": "415.895",
"speaker": "Participant",
"value": "to avoid what"
},
{
"start_time": "416.885",
"stop_time": "417.745",
"speaker": "Participant",
"value": "going forward"
},
{
"start_time": "418.58",
"stop_time": "419.11",
"speaker": "Ellie",
"value": "yes"
},
{
"start_time": "420.68",
"stop_time": "423.07",
"speaker": "Participant",
"value": "i guess i could try to move faster but"
},
{
"start_time": "423.54",
"stop_time": "424.03",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "424.4",
"stop_time": "427.49",
"speaker": "Participant",
"value": "i've accomplished my goals in life so far i just"
},
{
"start_time": "427.94",
"stop_time": "429.7",
"speaker": "Participant",
"value": "wanna accomplish more but it's taking"
},
{
"start_time": "430.195",
"stop_time": "432.015",
"speaker": "Participant",
"value": "longer than i thought it would you know"
},
{
"start_time": "433.545",
"stop_time": "434.185",
"speaker": "Ellie",
"value": "mm"
},
{
"start_time": "435.18",
"stop_time": "437.38",
"speaker": "Ellie",
"value": "there are always trade offs in life aren't there"
},
{
"start_time": "437.435",
"stop_time": "438.795",
"speaker": "Participant",
"value": "there it would excuse me"
},
{
"start_time": "440.07",
"stop_time": "442.24",
"speaker": "Ellie",
"value": "there are always trade offs in life aren't there"
},
{
"start_time": "442.61",
"stop_time": "443.94",
"speaker": "Participant",
"value": "yeah i guess"
},
{
"start_time": "445.28",
"stop_time": "446.08",
"speaker": "Participant",
"value": "are there"
},
{
"start_time": "445.505",
"stop_time": "448.635",
"speaker": "Ellie",
"value": "have you noticed any changes in your behavior or thoughts lately"
},
{
"start_time": "450.365",
"stop_time": "452.255",
"speaker": "Participant",
"value": "yeah just like mood swings i guess"
},
{
"start_time": "454.745",
"stop_time": "455.295",
"speaker": "Ellie",
"value": "okay"
},
{
"start_time": "454.755",
"stop_time": "456.065",
"speaker": "Participant",
"value": "mood swings yeah"
},
{
"start_time": "456.575",
"stop_time": "457.995",
"speaker": "Ellie",
"value": "are they triggered by something"
},
{
"start_time": "459.71",
"stop_time": "462.3",
"speaker": "Participant",
"value": "uh it could be just something small and"
},
{
"start_time": "462.83",
"stop_time": "464.33",
"speaker": "Participant",
"value": "i'll just snap you know"
},
{
"start_time": "465.345",
"stop_time": "466.915",
"speaker": "Ellie",
"value": "when was the last time that happened"
},
{
"start_time": "467.555",
"stop_time": "468.595",
"speaker": "Participant",
"value": "oh all the time"
},
{
"start_time": "469.11",
"stop_time": "470.98",
"speaker": "Participant",
"value": "yesterday maybe today"
},
{
"start_time": "471.34",
"stop_time": "471.88",
"speaker": "Ellie",
"value": "really"
},
{
"start_time": "471.985",
"stop_time": "472.535",
"speaker": "Participant",
"value": "yeah"
},
{
"start_time": "473.635",
"stop_time": "475.265",
"speaker": "Ellie",
"value": "how did you feel in that moment"
},
{
"start_time": "476.345",
"stop_time": "477.135",
"speaker": "Participant",
"value": "angry"
},
{
"start_time": "480.015",
"stop_time": "481.025",
"speaker": "Ellie",
"value": "how hard is that"
},
{
"start_time": "482.595",
"stop_time": "483.295",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "485.13",
"stop_time": "487.93",
"speaker": "Participant",
"value": "the anger [ang] i guess it's kinda hard to control the anger you know"
},
{
"start_time": "488.315",
"stop_time": "490.675",
"speaker": "Participant",
"value": "when you're going through a couple of of a few things in your life"
},
{
"start_time": "491.44",
"stop_time": "493.17",
"speaker": "Participant",
"value": "that aren't very pleasant you know"
},
{
"start_time": "494.24",
"stop_time": "495.01",
"speaker": "Ellie",
"value": "yeah"
},
{
"start_time": "495.81",
"stop_time": "496.275",
"speaker": "Participant",
"value": "<yawn>"
},
{
"start_time": "496.275",
"stop_time": "498.595",
"speaker": "Ellie",
"value": "is it uncomfortable for you to talk about this"
},
{
"start_time": "498.58",
"stop_time": "499.12",
"speaker": "Participant",
"value": "no"
},
{
"start_time": "500.335",
"stop_time": "500.905",
"speaker": "Ellie",
"value": "okay"
},
{
"start_time": "502.655",
"stop_time": "504.315",
"speaker": "Ellie",
"value": "how would your best friend describe you"
},
{
"start_time": "505.82",
"stop_time": "507.42",
"speaker": "Participant",
"value": "um my best friend"
},
{
"start_time": "510.165",
"stop_time": "511.285",
"speaker": "Participant",
"value": "my best friends"
},
{
"start_time": "511.54",
"stop_time": "513.29",
"speaker": "Participant",
"value": "excuse me yeah bop bop "
},
{
"start_time": "513.9",
"stop_time": "518.675",
"speaker": "Participant",
"value": "uh they'd they'd they'd describe me just i guess as a character just very outgoing"
},
{
"start_time": "518.98",
"stop_time": "521.01",
"speaker": "Participant",
"value": "you know good sense of humor"
},
{
"start_time": "521.29",
"stop_time": "522.51",
"speaker": "Participant",
"value": "um but you know"
},
{
"start_time": "523.225",
"stop_time": "526.175",
"speaker": "Participant",
"value": "we all have our issues you know they they understand when i"
},
{
"start_time": "526.475",
"stop_time": "528.275",
"speaker": "Participant",
"value": "i'm going through something or i just"
},
{
"start_time": "528.53",
"stop_time": "531.88",
"speaker": "Participant",
"value": "you know get mad about something easily or i could just laugh too"
},
{
"start_time": "532.38",
"stop_time": "533.47",
"speaker": "Participant",
"value": "right after that you know"
},
{
"start_time": "534.65",
"stop_time": "535.17",
"speaker": "Ellie",
"value": "uh huh"
},
{
"start_time": "535.175",
"stop_time": "537.595",
"speaker": "Participant",
"value": "very outgoing smart intelligent strong"
},
{
"start_time": "539.27",
"stop_time": "540",
"speaker": "Ellie",
"value": "okay"
},
{
"start_time": "541.48",
"stop_time": "543.02",
"speaker": "Ellie",
"value": "what are you most proud of in your life"
},
{
"start_time": "543.585",
"stop_time": "545.165",
"speaker": "Participant",
"value": "the goals that i've accomplished"
},
{
"start_time": "545.83",
"stop_time": "547.645",
"speaker": "Participant",
"value": "past few years especially"
},
{
"start_time": "548.46",
"stop_time": "549.77",
"speaker": "Ellie",
"value": "can you give me an example of that"
},
{
"start_time": "550.65",
"stop_time": "551.29",
"speaker": "Participant",
"value": "uh"
},
{
"start_time": "551.61",
"stop_time": "552.45",
"speaker": "Participant",
"value": "just the jobs"
},
{
"start_time": "552.965",
"stop_time": "556.69",
"speaker": "Participant",
"value": "scrubbed_entry"
},
{
"start_time": "557.27",
"stop_time": "558.48",
"speaker": "Participant",
"value": "getting the g_e_d"
},
{
"start_time": "558.7",
"stop_time": "561.02",
"speaker": "Participant",
"value": "getting the job at l_a_x i always wanted"
},
{
"start_time": "562.805",
"stop_time": "563.725",
"speaker": "Ellie",
"value": "that's great"
},
{
"start_time": "563.88",
"stop_time": "564.68",
"speaker": "Participant",
"value": "thank you"
},
{
"start_time": "566.075",
"stop_time": "567.345",
"speaker": "Ellie",
"value": "is there anything you regret"
},
{
"start_time": "568.355",
"stop_time": "569.015",
"speaker": "Participant",
"value": "yeah"
},
{
"start_time": "570.55",
"stop_time": "571.24",
"speaker": "Participant",
"value": "yes"
},
{
"start_time": "571.95",
"stop_time": "573.34",
"speaker": "Ellie",
"value": "can you give me an example of that"
},
{
"start_time": "573.64",
"stop_time": "576.19",
"speaker": "Participant",
"value": "um just decisions i made i guess when i was"
},
{
"start_time": "576.48",
"stop_time": "579.49",
"speaker": "Participant",
"value": "uh younger in life even up to the"
},
{
"start_time": "579.96",
"stop_time": "581.58",
"speaker": "Participant",
"value": "you know even up to the past"
},
{
"start_time": "582.665",
"stop_time": "584.585",
"speaker": "Participant",
"value": "few years but nothing major in the past few years"
},
{
"start_time": "585.27",
"stop_time": "589.095",
"speaker": "Participant",
"value": "it's pretty much the decisions i made when i was young you know younger in life"
},
{
"start_time": "590.995",
"stop_time": "591.695",
"speaker": "Ellie",
"value": "okay"
},
{
"start_time": "592.16",
"stop_time": "595.18",
"speaker": "Ellie",
"value": "what advice would you give yourself ten or twenty years ago"
},
{
"start_time": "596.095",
"stop_time": "597.985",
"speaker": "Participant",
"value": "uh to stay in school and"
},
{
"start_time": "598.715",
"stop_time": "599.715",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "600.49",
"stop_time": "602.54",
"speaker": "Participant",
"value": "i don't know to not join a gang"
},
{
"start_time": "604.2",
"stop_time": "606.12",
"speaker": "Participant",
"value": "just to stay in school pretty much"
},
{
"start_time": "606.655",
"stop_time": "607.725",
"speaker": "Participant",
"value": "and to uh"
},
{
"start_time": "608.735",
"stop_time": "611.025",
"speaker": "Participant",
"value": "control the anger issues i had back then"
},
{
"start_time": "612.545",
"stop_time": "614.015",
"speaker": "Ellie",
"value": "what made you decide to do that"
},
{
"start_time": "614.985",
"stop_time": "615.885",
"speaker": "Participant",
"value": "to do what"
},
{
"start_time": "619.14",
"stop_time": "619.91",
"speaker": "Participant",
"value": "to do what"
},
{
"start_time": "620.93",
"stop_time": "622.65",
"speaker": "Ellie",
"value": "let's come back to that later"
},
{
"start_time": "622.645",
"stop_time": "623.475",
"speaker": "Participant",
"value": "[laughter]"
},
{
"start_time": "625.245",
"stop_time": "627.775",
"speaker": "Ellie",
"value": "when was the last time you felt really happy"
},
{
"start_time": "628.485",
"stop_time": "630.415",
"speaker": "Participant",
"value": "i don't know today"
},
{
"start_time": "631.375",
"stop_time": "632.575",
"speaker": "Participant",
"value": "i'm happy to be here"
},
{
"start_time": "634.05",
"stop_time": "634.92",
"speaker": "Ellie",
"value": "that's great"
},
{
"start_time": "637.14",
"stop_time": "640.04",
"speaker": "Ellie",
"value": "what are some things that usually put you in a good mood"
},
{
"start_time": "641.545",
"stop_time": "642.485",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "643.66",
"stop_time": "646.81",
"speaker": "Participant",
"value": "going exercising going to the gym and working out"
},
{
"start_time": "648.53",
"stop_time": "650.82",
"speaker": "Participant",
"value": "going to the beach hanging out with uh"
},
{
"start_time": "651.85",
"stop_time": "653.54",
"speaker": "Participant",
"value": "family members of mine you know"
},
{
"start_time": "655.01",
"stop_time": "655.53",
"speaker": "Ellie",
"value": "nice"
},
{
"start_time": "655.545",
"stop_time": "656.615",
"speaker": "Participant",
"value": "friends yeah"
},
{
"start_time": "658.555",
"stop_time": "660.825",
"speaker": "Ellie",
"value": "what would you say are some of your best qualities"
},
{
"start_time": "662.015",
"stop_time": "664.485",
"speaker": "Participant",
"value": "my best qualities just that uh"
},
{
"start_time": "665.205",
"stop_time": "667.475",
"speaker": "Participant",
"value": "qualities just that i'm a neat person"
},
{
"start_time": "668.235",
"stop_time": "670.735",
"speaker": "Participant",
"value": "i'm outgoing you know i don't know qualities"
},
{
"start_time": "671.12",
"stop_time": "672.67",
"speaker": "Participant",
"value": "qualities meaning what"
},
{
"start_time": "676.5",
"stop_time": "677.62",
"speaker": "Ellie",
"value": "whatever comes to your mind"
},
{
"start_time": "678.255",
"stop_time": "680.725",
"speaker": "Participant",
"value": "what do you mean by qualities what comes to your mind"
},
{
"start_time": "681.925",
"stop_time": "683.635",
"speaker": "Participant",
"value": "give me the definition of qualities"
},
{
"start_time": "687.16",
"stop_time": "689.36",
"speaker": "Ellie",
"value": "okay i think i've asked everything i need to"
},
{
"start_time": "689.18",
"stop_time": "690.12",
"speaker": "Participant",
"value": "<laughter>"
},
{
"start_time": "690.865",
"stop_time": "692.295",
"speaker": "Ellie",
"value": "thanks for sharing your thoughts with me"
},
{
"start_time": "692.39",
"stop_time": "692.78",
"speaker": "Participant",
"value": "yeah"
},
{
"start_time": "693.23",
"stop_time": "694.04",
"speaker": "Participant",
"value": "have a nice day"
},
{
"start_time": "694.98",
"stop_time": "695.47",
"speaker": "Ellie",
"value": "goodbye "
},
{
"start_time": "696.19",
"stop_time": "696.77",
"speaker": "Participant",
"value": "okay bye"
}
] |