File size: 38,508 Bytes
6740f7b | 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 | {
"schema_name": "DoclingDocument",
"version": "1.3.0",
"name": "11227",
"origin": {
"mimetype": "application/pdf",
"binary_hash": 1787228128475531104,
"filename": "11227.pdf"
},
"furniture": {
"self_ref": "#/furniture",
"children": [],
"content_layer": "furniture",
"name": "_root_",
"label": "unspecified"
},
"body": {
"self_ref": "#/body",
"children": [
{
"$ref": "#/pictures/0"
},
{
"$ref": "#/texts/0"
},
{
"$ref": "#/pictures/1"
},
{
"$ref": "#/texts/4"
},
{
"$ref": "#/texts/5"
},
{
"$ref": "#/texts/6"
},
{
"$ref": "#/texts/7"
},
{
"$ref": "#/texts/8"
},
{
"$ref": "#/texts/9"
},
{
"$ref": "#/texts/10"
},
{
"$ref": "#/texts/11"
},
{
"$ref": "#/texts/12"
},
{
"$ref": "#/texts/13"
},
{
"$ref": "#/texts/14"
},
{
"$ref": "#/texts/15"
},
{
"$ref": "#/texts/16"
},
{
"$ref": "#/texts/17"
},
{
"$ref": "#/pictures/2"
},
{
"$ref": "#/texts/18"
},
{
"$ref": "#/pictures/3"
},
{
"$ref": "#/texts/22"
},
{
"$ref": "#/texts/23"
},
{
"$ref": "#/texts/24"
},
{
"$ref": "#/texts/25"
},
{
"$ref": "#/texts/26"
},
{
"$ref": "#/texts/27"
},
{
"$ref": "#/texts/28"
},
{
"$ref": "#/texts/29"
},
{
"$ref": "#/texts/30"
},
{
"$ref": "#/texts/31"
}
],
"content_layer": "body",
"name": "_root_",
"label": "unspecified"
},
"groups": [],
"texts": [
{
"self_ref": "#/texts/0",
"parent": {
"$ref": "#/body"
},
"children": [],
"content_layer": "body",
"label": "section_header",
"prov": [
{
"page_no": 1,
"bbox": {
"l": 155.0,
"t": 749.7066446940104,
"r": 161.66666666666666,
"b": 742.3733113606771,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
1
]
}
],
"orig": "W",
"text": "W",
"level": 1
},
{
"self_ref": "#/texts/1",
"parent": {
"$ref": "#/pictures/1"
},
"children": [],
"content_layer": "body",
"label": "text",
"prov": [
{
"page_no": 1,
"bbox": {
"l": 361.3333333333333,
"t": 760.0399780273438,
"r": 470.6666666666667,
"b": 750.0399780273438,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
22
]
}
],
"orig": "A RESEARCH PROJECT BY:",
"text": "A RESEARCH PROJECT BY:"
},
{
"self_ref": "#/texts/2",
"parent": {
"$ref": "#/pictures/1"
},
"children": [],
"content_layer": "body",
"label": "text",
"prov": [
{
"page_no": 1,
"bbox": {
"l": 506.3333333333333,
"t": 771.0399780273438,
"r": 556.3333333333334,
"b": 751.0399780273438,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
4
]
}
],
"orig": "TGEU",
"text": "TGEU"
},
{
"self_ref": "#/texts/3",
"parent": {
"$ref": "#/pictures/1"
},
"children": [],
"content_layer": "body",
"label": "text",
"prov": [
{
"page_no": 1,
"bbox": {
"l": 508.3333333333333,
"t": 753.0399780273438,
"r": 576.0,
"b": 743.0399780273438,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
18
]
}
],
"orig": "Transgender Europe",
"text": "Transgender Europe"
},
{
"self_ref": "#/texts/4",
"parent": {
"$ref": "#/body"
},
"children": [],
"content_layer": "body",
"label": "text",
"prov": [
{
"page_no": 1,
"bbox": {
"l": 137.18,
"t": 710.977,
"r": 460.66,
"b": 695.901,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
54
]
}
],
"orig": "Transgender Europe: Press Release: November 16 th 2011",
"text": "Transgender Europe: Press Release: November 16 th 2011"
},
{
"self_ref": "#/texts/5",
"parent": {
"$ref": "#/body"
},
"children": [],
"content_layer": "body",
"label": "text",
"prov": [
{
"page_no": 1,
"bbox": {
"l": 60.504,
"t": 680.824,
"r": 537.25,
"b": 656.931,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
111
]
}
],
"orig": "Transgender Europe's Trans Murder Monitoring project reveals 221 killings of trans people in the last 12 months",
"text": "Transgender Europe's Trans Murder Monitoring project reveals 221 killings of trans people in the last 12 months"
},
{
"self_ref": "#/texts/6",
"parent": {
"$ref": "#/body"
},
"children": [],
"content_layer": "body",
"label": "text",
"prov": [
{
"page_no": 1,
"bbox": {
"l": 71.424,
"t": 653.164,
"r": 526.93,
"b": 641.058,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
79
]
}
],
"orig": "In total, since January 2008 the murders of 755 trans people have been reported",
"text": "In total, since January 2008 the murders of 755 trans people have been reported"
},
{
"self_ref": "#/texts/7",
"parent": {
"$ref": "#/body"
},
"children": [],
"content_layer": "body",
"label": "text",
"prov": [
{
"page_no": 1,
"bbox": {
"l": 56.64,
"t": 626.052,
"r": 541.065,
"b": 538.455,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
657
]
}
],
"orig": "The 13 th International Transgender Day of Remembrance is being held on November 20 th 2011: Since 1999, the Transgender Day of Remembrance (TDOR), on which those trans people who have been victims of homicide are remembered, takes place every November. The TDOR raises public awareness of hate crimes against trans people, provides a space for public mourning and honours the lives of those trans people who might otherwise be forgotten. Started in the USA, the TDOR is now held in many parts of the world. In the past, the TDOR took place in more than 180 cities in more than 20 countries in North America, Europe, Asia, Africa, and Oceania.",
"text": "The 13 th International Transgender Day of Remembrance is being held on November 20 th 2011: Since 1999, the Transgender Day of Remembrance (TDOR), on which those trans people who have been victims of homicide are remembered, takes place every November. The TDOR raises public awareness of hate crimes against trans people, provides a space for public mourning and honours the lives of those trans people who might otherwise be forgotten. Started in the USA, the TDOR is now held in many parts of the world. In the past, the TDOR took place in more than 180 cities in more than 20 countries in North America, Europe, Asia, Africa, and Oceania."
},
{
"self_ref": "#/texts/8",
"parent": {
"$ref": "#/body"
},
"children": [],
"content_layer": "body",
"label": "text",
"prov": [
{
"page_no": 1,
"bbox": {
"l": 56.64,
"t": 529.361,
"r": 540.82,
"b": 507.255,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
212
]
}
],
"orig": "Sadly, this year there are 221 trans persons to be added to the list to be remembered, mourned and honoured as an update of the preliminary results of Transgender Europe's Trans Murder Monitoring project reveals.",
"text": "Sadly, this year there are 221 trans persons to be added to the list to be remembered, mourned and honoured as an update of the preliminary results of Transgender Europe's Trans Murder Monitoring project reveals."
},
{
"self_ref": "#/texts/9",
"parent": {
"$ref": "#/body"
},
"children": [],
"content_layer": "body",
"label": "text",
"prov": [
{
"page_no": 1,
"bbox": {
"l": 56.64,
"t": 498.041,
"r": 540.926,
"b": 450.595,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
443
]
}
],
"orig": "The Trans Murder Monitoring (TMM) project started in April 2009 and systematically monitors, collects and analyses reports of homicides of trans people worldwide. Updates of the preliminary results, which have been presented in July 2009 for the first time, are published on the website of the 'Transrespect versus Transphobia Worldwide' project three to four times a year in form of tables, name lists, and maps:",
"text": "The Trans Murder Monitoring (TMM) project started in April 2009 and systematically monitors, collects and analyses reports of homicides of trans people worldwide. Updates of the preliminary results, which have been presented in July 2009 for the first time, are published on the website of the 'Transrespect versus Transphobia Worldwide' project three to four times a year in form of tables, name lists, and maps:"
},
{
"self_ref": "#/texts/10",
"parent": {
"$ref": "#/body"
},
"children": [],
"content_layer": "body",
"label": "text",
"prov": [
{
"page_no": 1,
"bbox": {
"l": 129.86,
"t": 441.381,
"r": 467.86,
"b": 431.875,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
73
]
}
],
"orig": "http://www.transrespect-transphobia.org/en_US/tvt-project/tmm-results.htm",
"text": "http://www.transrespect-transphobia.org/en_US/tvt-project/tmm-results.htm"
},
{
"self_ref": "#/texts/11",
"parent": {
"$ref": "#/body"
},
"children": [],
"content_layer": "body",
"label": "text",
"prov": [
{
"page_no": 1,
"bbox": {
"l": 56.64,
"t": 422.781,
"r": 540.589,
"b": 387.955,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
269
]
}
],
"orig": "Every year in November, Transgender Europe provides a special update of the TMM results for the International Transgender Day of Remembrance so as to assist activists worldwide in raising public awareness of hate crimes against trans people.",
"text": "Every year in November, Transgender Europe provides a special update of the TMM results for the International Transgender Day of Remembrance so as to assist activists worldwide in raising public awareness of hate crimes against trans people."
},
{
"self_ref": "#/texts/12",
"parent": {
"$ref": "#/body"
},
"children": [],
"content_layer": "body",
"label": "text",
"prov": [
{
"page_no": 1,
"bbox": {
"l": 56.64,
"t": 378.861,
"r": 540.85,
"b": 356.635,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
150
]
}
],
"orig": "The TDOR 2011 update has revealed a shocking total of 221 cases of reported killings of trans people from November 20 2010 to November 14 th th 2011:",
"text": "The TDOR 2011 update has revealed a shocking total of 221 cases of reported killings of trans people from November 20 2010 to November 14 th th 2011:"
},
{
"self_ref": "#/texts/13",
"parent": {
"$ref": "#/body"
},
"children": [],
"content_layer": "body",
"label": "text",
"prov": [
{
"page_no": 1,
"bbox": {
"l": 108.38,
"t": 347.541,
"r": 489.22,
"b": 338.035,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
82
]
}
],
"orig": "http://www.transrespect-transphobia.org/en_US/tvt-project/tmm-results/tdor2011.htm",
"text": "http://www.transrespect-transphobia.org/en_US/tvt-project/tmm-results/tdor2011.htm"
},
{
"self_ref": "#/texts/14",
"parent": {
"$ref": "#/body"
},
"children": [],
"content_layer": "body",
"label": "text",
"prov": [
{
"page_no": 1,
"bbox": {
"l": 56.64,
"t": 328.94100000000003,
"r": 540.951,
"b": 256.16499999999996,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
591
]
}
],
"orig": "In comparison to the TDOR updates of the last years (162 reports 2009, 179 reports in 2010), we are witnessing a significant increase, which points to the extreme level of violence many trans people continue to be exposed to. However, this increase may also reflect the TvT project's intensified cooperation and data exchange with trans and LGBT organizations, which document murders of LGBT or trans people in local and national contexts such as Grupo Gay da Bahia (Brazil), Observatorio Ciudadano Trans (Cali, Colombia), Pembe Hayat (Turkey), or TVMEX - Travestis M\u00e9xico.",
"text": "In comparison to the TDOR updates of the last years (162 reports 2009, 179 reports in 2010), we are witnessing a significant increase, which points to the extreme level of violence many trans people continue to be exposed to. However, this increase may also reflect the TvT project's intensified cooperation and data exchange with trans and LGBT organizations, which document murders of LGBT or trans people in local and national contexts such as Grupo Gay da Bahia (Brazil), Observatorio Ciudadano Trans (Cali, Colombia), Pembe Hayat (Turkey), or TVMEX - Travestis M\u00e9xico."
},
{
"self_ref": "#/texts/15",
"parent": {
"$ref": "#/body"
},
"children": [],
"content_layer": "body",
"label": "text",
"prov": [
{
"page_no": 1,
"bbox": {
"l": 56.64,
"t": 246.95100000000002,
"r": 543.572,
"b": 193.885,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
386
]
}
],
"orig": "The update shows reports of murdered or killed trans people in 26 countries in the last 12 months, with the majority from Brazil (97), Mexico (23), Colombia (19), and Venezuela (14) followed by Argentina (9), Honduras (9), and the USA (9). In Asia most reported cases have been found in Pakistan (6), and the Philippines (5), and in Europe in Turkey (5).",
"text": "The update shows reports of murdered or killed trans people in 26 countries in the last 12 months, with the majority from Brazil (97), Mexico (23), Colombia (19), and Venezuela (14) followed by Argentina (9), Honduras (9), and the USA (9). In Asia most reported cases have been found in Pakistan (6), and the Philippines (5), and in Europe in Turkey (5)."
},
{
"self_ref": "#/texts/16",
"parent": {
"$ref": "#/body"
},
"children": [],
"content_layer": "body",
"label": "text",
"prov": [
{
"page_no": 1,
"bbox": {
"l": 56.64,
"t": 178.79099999999994,
"r": 541.034,
"b": 67.38499999999999,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
828
]
}
],
"orig": "As in the previous years, most reported cases were from Central and South America, which account for 80 % of the globally reported homicides of trans people since January 2008. In Central and South America, in 2008, 96 killings were reported in 13 countries, in 2009, 165 killings in 16 countries, in 2010, 174 killings in 13 countries. In 2011, so far 188 killings were reported in 15 Central and South American countries. The starkest increase in reports is also to be found in Central and South America, e.g. in Brazil (2008: 57, 2009: 69, 2010: 101, January-November 2011: 97) and Mexico (2008: 4, 2009: 10, 2010: 12, January-November 2011: 23). The data also show an alarming increase in reported murders in Turkey in the previous years (2008: 2, 2009: 5, 2010: 6, January-November 2011: 5).",
"text": "As in the previous years, most reported cases were from Central and South America, which account for 80 % of the globally reported homicides of trans people since January 2008. In Central and South America, in 2008, 96 killings were reported in 13 countries, in 2009, 165 killings in 16 countries, in 2010, 174 killings in 13 countries. In 2011, so far 188 killings were reported in 15 Central and South American countries. The starkest increase in reports is also to be found in Central and South America, e.g. in Brazil (2008: 57, 2009: 69, 2010: 101, January-November 2011: 97) and Mexico (2008: 4, 2009: 10, 2010: 12, January-November 2011: 23). The data also show an alarming increase in reported murders in Turkey in the previous years (2008: 2, 2009: 5, 2010: 6, January-November 2011: 5)."
},
{
"self_ref": "#/texts/17",
"parent": {
"$ref": "#/body"
},
"children": [],
"content_layer": "furniture",
"label": "page_footer",
"prov": [
{
"page_no": 1,
"bbox": {
"l": 533.38,
"t": 44.702,
"r": 540.93,
"b": 36.12699999999995,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
1
]
}
],
"orig": "1",
"text": "1"
},
{
"self_ref": "#/texts/18",
"parent": {
"$ref": "#/body"
},
"children": [],
"content_layer": "body",
"label": "section_header",
"prov": [
{
"page_no": 2,
"bbox": {
"l": 155.0,
"t": 749.7066446940104,
"r": 161.66666666666666,
"b": 742.3733113606771,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
1
]
}
],
"orig": "W",
"text": "W",
"level": 1
},
{
"self_ref": "#/texts/19",
"parent": {
"$ref": "#/pictures/3"
},
"children": [],
"content_layer": "body",
"label": "text",
"prov": [
{
"page_no": 2,
"bbox": {
"l": 361.3333333333333,
"t": 760.0399780273438,
"r": 470.6666666666667,
"b": 750.0399780273438,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
22
]
}
],
"orig": "A RESEARCH PROJECT BY:",
"text": "A RESEARCH PROJECT BY:"
},
{
"self_ref": "#/texts/20",
"parent": {
"$ref": "#/pictures/3"
},
"children": [],
"content_layer": "body",
"label": "text",
"prov": [
{
"page_no": 2,
"bbox": {
"l": 506.3333333333333,
"t": 771.0399780273438,
"r": 556.3333333333334,
"b": 751.0399780273438,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
4
]
}
],
"orig": "TGEU",
"text": "TGEU"
},
{
"self_ref": "#/texts/21",
"parent": {
"$ref": "#/pictures/3"
},
"children": [],
"content_layer": "body",
"label": "text",
"prov": [
{
"page_no": 2,
"bbox": {
"l": 508.3333333333333,
"t": 753.0399780273438,
"r": 576.0,
"b": 743.0399780273438,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
18
]
}
],
"orig": "Transgender Europe",
"text": "Transgender Europe"
},
{
"self_ref": "#/texts/22",
"parent": {
"$ref": "#/body"
},
"children": [],
"content_layer": "body",
"label": "section_header",
"prov": [
{
"page_no": 2,
"bbox": {
"l": 56.64,
"t": 682.694,
"r": 540.989,
"b": 658.888,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
126
]
}
],
"orig": "In total, the preliminary results show 755 reports of murdered trans people in 51 countries since January 2008.",
"text": "In total, the preliminary results show 755 reports of murdered trans people in 51 countries since January 2008.",
"level": 1
},
{
"self_ref": "#/texts/23",
"parent": {
"$ref": "#/body"
},
"children": [],
"content_layer": "body",
"label": "text",
"prov": [
{
"page_no": 2,
"bbox": {
"l": 56.64,
"t": 643.991,
"r": 541.052,
"b": 583.815,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
424
]
}
],
"orig": "The new result update reveals that in the last 47 months, 57 homicides of trans people were reported in Asia (2008: 11, 2009: 14, 2010: 17, January-November 2011: 15), 48 in North America (2008: Canada: 1, USA: 17, 2009: USA: 13, 2010: USA: 8, January-November 2011: USA: 9), 45 in Europe (2008: 11, 2009: 17, 2010: 9, January-November 2011: 8), and 4 in Oceania (2008: 3, 2009: 1) as well as 2 in Africa (2008: 1, 2009: 1).",
"text": "The new result update reveals that in the last 47 months, 57 homicides of trans people were reported in Asia (2008: 11, 2009: 14, 2010: 17, January-November 2011: 15), 48 in North America (2008: Canada: 1, USA: 17, 2009: USA: 13, 2010: USA: 8, January-November 2011: USA: 9), 45 in Europe (2008: 11, 2009: 17, 2010: 9, January-November 2011: 8), and 4 in Oceania (2008: 3, 2009: 1) as well as 2 in Africa (2008: 1, 2009: 1)."
},
{
"self_ref": "#/texts/24",
"parent": {
"$ref": "#/body"
},
"children": [],
"content_layer": "body",
"label": "text",
"prov": [
{
"page_no": 2,
"bbox": {
"l": 56.64,
"t": 574.721,
"r": 541.068,
"b": 489.255,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
705
]
}
],
"orig": "The TDOR update of the preliminary results also reveals that since January 2008 45 killings of trans people have been reported in 10 European countries (Albania: 1, Germany: 2, Italy: 14, Poland: 1, Portugal: 1, Russia: 1, Serbia: 1, Spain: 3, Turkey: 18 and, UK: 3). In Asia, since January 2008 57 killings of trans people have been reported in 12 countries (Azerbaijan: 2, China: 6, India: 8, Indonesia: 4, Iran 1, Iraq: 3, Malaysia: 6, Pakistan: 12, Philippines: 11, Republic of Korea: 1, Singapore: 1, and Thailand: 2). In Oceania, 4 killings have been reported since 2008 (Australia: 1, Fiji: 1, New Caledonia: 1, and New Zealand: 1) and in Africa 2 (South Africa: 1, and Algeria: 1).",
"text": "The TDOR update of the preliminary results also reveals that since January 2008 45 killings of trans people have been reported in 10 European countries (Albania: 1, Germany: 2, Italy: 14, Poland: 1, Portugal: 1, Russia: 1, Serbia: 1, Spain: 3, Turkey: 18 and, UK: 3). In Asia, since January 2008 57 killings of trans people have been reported in 12 countries (Azerbaijan: 2, China: 6, India: 8, Indonesia: 4, Iran 1, Iraq: 3, Malaysia: 6, Pakistan: 12, Philippines: 11, Republic of Korea: 1, Singapore: 1, and Thailand: 2). In Oceania, 4 killings have been reported since 2008 (Australia: 1, Fiji: 1, New Caledonia: 1, and New Zealand: 1) and in Africa 2 (South Africa: 1, and Algeria: 1)."
},
{
"self_ref": "#/texts/25",
"parent": {
"$ref": "#/body"
},
"children": [],
"content_layer": "body",
"label": "section_header",
"prov": [
{
"page_no": 2,
"bbox": {
"l": 56.64,
"t": 480.344,
"r": 536.571,
"b": 471.058,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
103
]
}
],
"orig": "Yet, we know, even these high numbers are only a fraction of the real figures; the truth is much worse.",
"text": "Yet, we know, even these high numbers are only a fraction of the real figures; the truth is much worse.",
"level": 1
},
{
"self_ref": "#/texts/26",
"parent": {
"$ref": "#/body"
},
"children": [],
"content_layer": "body",
"label": "text",
"prov": [
{
"page_no": 2,
"bbox": {
"l": 56.64,
"t": 462.501,
"r": 540.907,
"b": 392.995,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
589
]
}
],
"orig": "These are only the reported cases, which could be found through internet research. In most countries, data on murdered trans people are not systematically produced and it is impossible to estimate the numbers of unreported cases. Another finding of these updates is that while Brazil has received special attention due to the elevated number of killings, the number of killings in other South and Central American countries like Venezuela, Honduras and in particular Guatemala is equally or even more worrying in view of the much smaller population sizes of these countries.",
"text": "These are only the reported cases, which could be found through internet research. In most countries, data on murdered trans people are not systematically produced and it is impossible to estimate the numbers of unreported cases. Another finding of these updates is that while Brazil has received special attention due to the elevated number of killings, the number of killings in other South and Central American countries like Venezuela, Honduras and in particular Guatemala is equally or even more worrying in view of the much smaller population sizes of these countries."
},
{
"self_ref": "#/texts/27",
"parent": {
"$ref": "#/body"
},
"children": [],
"content_layer": "body",
"label": "text",
"prov": [
{
"page_no": 2,
"bbox": {
"l": 56.64,
"t": 384.141,
"r": 541.032,
"b": 172.28499999999997,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
1754
]
}
],
"orig": "While the documentation of homicides against trans people is indispensable for demonstrating the shocking extent of human rights violations committed against trans people on a global scale, there is also a need for indepth research of various other aspects related to the human rights situation of trans people. Therefore, Transgender Europe developed the Trans Murder Monitoring project into the 'Transrespect versus Transphobia Worldwide' (TvT) research project. TvT is a comparative, ongoing qualitative-quantitative research project, which provides an overview of the human rights situation of trans persons in different parts of the world and develops useful data and advocacy tools for international institutions, human rights organizations, the trans movement and the general public. A research team from Transgender Europe is coordinating the project, which is funded by the Open Society Foundations, the ARCUS Foundation, and partly by the Heinrich Boell Foundation. The TvT research team is assisted by an Advisory Board, composed of 20 international LGBT, trans and human rights activists and academics from Africa, Asia, Central and South America, Europe, North America, and Oceania. It furthermore cooperates with 15 partner organizations in these six world regions. After having completed a survey on the social and legal situation of trans people in more than 50 countries in all six world regions, in November 2011, the TvT project research team together with 7 partner organizations from Africa, Asia, Eastern Europe, Oceania, and South America start a new survey in form of a peer research on trans people's experiences with Transrespect and Transphobia.",
"text": "While the documentation of homicides against trans people is indispensable for demonstrating the shocking extent of human rights violations committed against trans people on a global scale, there is also a need for indepth research of various other aspects related to the human rights situation of trans people. Therefore, Transgender Europe developed the Trans Murder Monitoring project into the 'Transrespect versus Transphobia Worldwide' (TvT) research project. TvT is a comparative, ongoing qualitative-quantitative research project, which provides an overview of the human rights situation of trans persons in different parts of the world and develops useful data and advocacy tools for international institutions, human rights organizations, the trans movement and the general public. A research team from Transgender Europe is coordinating the project, which is funded by the Open Society Foundations, the ARCUS Foundation, and partly by the Heinrich Boell Foundation. The TvT research team is assisted by an Advisory Board, composed of 20 international LGBT, trans and human rights activists and academics from Africa, Asia, Central and South America, Europe, North America, and Oceania. It furthermore cooperates with 15 partner organizations in these six world regions. After having completed a survey on the social and legal situation of trans people in more than 50 countries in all six world regions, in November 2011, the TvT project research team together with 7 partner organizations from Africa, Asia, Eastern Europe, Oceania, and South America start a new survey in form of a peer research on trans people's experiences with Transrespect and Transphobia."
},
{
"self_ref": "#/texts/28",
"parent": {
"$ref": "#/body"
},
"children": [],
"content_layer": "body",
"label": "text",
"prov": [
{
"page_no": 2,
"bbox": {
"l": 131.18,
"t": 163.082,
"r": 466.42,
"b": 140.94299999999998,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
115
]
}
],
"orig": "If you have further questions or if you want to support the research project, please contact the TvT research team:",
"text": "If you have further questions or if you want to support the research project, please contact the TvT research team:"
},
{
"self_ref": "#/texts/29",
"parent": {
"$ref": "#/body"
},
"children": [],
"content_layer": "body",
"label": "text",
"prov": [
{
"page_no": 2,
"bbox": {
"l": 203.21,
"t": 125.13099999999997,
"r": 397.15,
"b": 115.625,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
40
]
},
{
"page_no": 2,
"bbox": {
"l": 203.21,
"t": 125.13099999999997,
"r": 397.15,
"b": 115.625,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
41,
81
]
}
],
"orig": "Dr Carsten Balzer and Dr Jan Simon Hutta research[at]transrespect-transphobia.org",
"text": "Dr Carsten Balzer and Dr Jan Simon Hutta research[at]transrespect-transphobia.org"
},
{
"self_ref": "#/texts/30",
"parent": {
"$ref": "#/body"
},
"children": [],
"content_layer": "body",
"label": "text",
"prov": [
{
"page_no": 2,
"bbox": {
"l": 215.57,
"t": 74.07399999999996,
"r": 382.03,
"b": 64.78800000000001,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
32
]
}
],
"orig": "www.transrespect-transphobia.org",
"text": "www.transrespect-transphobia.org"
},
{
"self_ref": "#/texts/31",
"parent": {
"$ref": "#/body"
},
"children": [],
"content_layer": "furniture",
"label": "page_footer",
"prov": [
{
"page_no": 2,
"bbox": {
"l": 533.38,
"t": 44.702,
"r": 540.93,
"b": 36.12699999999995,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
1
]
}
],
"orig": "2",
"text": "2"
}
],
"pictures": [
{
"self_ref": "#/pictures/0",
"parent": {
"$ref": "#/body"
},
"children": [],
"content_layer": "body",
"label": "picture",
"prov": [
{
"page_no": 1,
"bbox": {
"l": 80.4075927734375,
"t": 825.4704093933105,
"r": 192.76153564453125,
"b": 771.3953247070312,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
0
]
}
],
"captions": [],
"references": [],
"footnotes": [],
"annotations": []
},
{
"self_ref": "#/pictures/1",
"parent": {
"$ref": "#/body"
},
"children": [
{
"$ref": "#/texts/1"
},
{
"$ref": "#/texts/2"
},
{
"$ref": "#/texts/3"
}
],
"content_layer": "body",
"label": "picture",
"prov": [
{
"page_no": 1,
"bbox": {
"l": 360.90997314453125,
"t": 802.0741806030273,
"r": 576.8975219726562,
"b": 744.1148529052734,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
0
]
}
],
"captions": [],
"references": [],
"footnotes": [],
"annotations": []
},
{
"self_ref": "#/pictures/2",
"parent": {
"$ref": "#/body"
},
"children": [],
"content_layer": "body",
"label": "picture",
"prov": [
{
"page_no": 2,
"bbox": {
"l": 80.4485855102539,
"t": 825.5360069274902,
"r": 192.521728515625,
"b": 771.0934982299805,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
0
]
}
],
"captions": [],
"references": [],
"footnotes": [],
"annotations": []
},
{
"self_ref": "#/pictures/3",
"parent": {
"$ref": "#/body"
},
"children": [
{
"$ref": "#/texts/19"
},
{
"$ref": "#/texts/20"
},
{
"$ref": "#/texts/21"
}
],
"content_layer": "body",
"label": "picture",
"prov": [
{
"page_no": 2,
"bbox": {
"l": 360.8463134765625,
"t": 802.2049102783203,
"r": 576.748779296875,
"b": 744.1175079345703,
"coord_origin": "BOTTOMLEFT"
},
"charspan": [
0,
0
]
}
],
"captions": [],
"references": [],
"footnotes": [],
"annotations": []
}
],
"tables": [],
"key_value_items": [],
"form_items": [],
"pages": {
"1": {
"size": {
"width": 594.9600219726562,
"height": 842.0399780273438
},
"page_no": 1
},
"2": {
"size": {
"width": 594.9600219726562,
"height": 842.0399780273438
},
"page_no": 2
}
}
} |