File size: 40,228 Bytes
ca18b9c |
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 |
{
"title": "Green_Party_of_California",
"url": "https://en.wikipedia.org/wiki/Green_Party_of_California",
"summary": "The Green Party of California (GPCA) is a California political party. The party is led by a coordinating committee, and decisions are ultimately made by general assemblies. The GPCA is affiliated with the Green Party of the United States (GPUS).\nAs of February 10, 2023, there are 97,253 people registered to vote with Green party-preference, 0.44%, the sixth-largest. As of January 2022, there are twenty-nine California Green elected officials, including two elected-mayors and three in municipal councils.",
"content": [
{
"section_title": "History",
"section_content": [
{
"sentence": "On February 4, 1990 Greens gathered at California State University, Sacramento, authored bylaws, founded the GPCA, and started a voter registration drive",
"refs": []
},
{
"sentence": "The GPCA adopted the leaf-G logo which cartoonist Harry Driggs designed for the Green Party of San Francisco in the 1980s and which represents the letter G of the party name as a leaf",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "[a]",
"refs": [
"[ERROR retrieving ref link]"
]
}
],
"subsections": [
{
"section_title": "Qualifying for elections",
"section_content": [
{
"sentence": "On January 2, 1990, a month before foundation, Kent Smith sent notice to the secretary of state that the GPCA intends to qualify for the June 2, 1992 primary elections",
"refs": []
},
{
"sentence": "At that time, there were 420 people registered to vote with Green preference and, to obtain this qualification, the party needed to have registrations of at least one percent of the vote in the previous gubernatorial general election, [b] on December 31, 1991, the 154th day before the election",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "[c] Following the 1990 election, this amounted to 78,992 people",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "For the voter registration drive, the GPCA had two full-time fundraisers and hired Joe Louis Hoffman as full-time organizer",
"refs": []
},
{
"sentence": "By November 11, 1991, the party had 50,000 people registered with GPCA preference",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "Late that November, the party received financial support and was able to pay people for obtaining registrations on a per-registration basis",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "By 1992, the party registered over 100,000 people with GPCA preference and thereby qualified, which it since has done continuously",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "GPCA members used the election qualification to run for offices, each facing the none of the above vote option, and all but one advanced to the general",
"refs": []
},
{
"sentence": "Roger Donaldson ran for state assembly district 53, later decided against it, and sent out a letter urging voters to vote for none of the above instead of him",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "The party did not have candidates for the presidential, nor the senatorial races",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "Party registrations were down to 91,342 people on October 4, 1993",
"refs": []
},
{
"sentence": "They must have still been at least 78,992 people on January 4, 1994, for the party was qualified for the June 7, 1994 primary elections.",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "The 1994 gubernatorial general election was the party\u2019s first opportunity to earn qualification through electoral result",
"refs": []
},
{
"sentence": "If the party had a candidate running for a statewide-elected office that received at least two percent of the vote, the party would maintain qualification until the next gubernatorial primary, that is if registrations stayed at least one fifteenth of one percent (0.067%) of the statewide total",
"refs": []
},
{
"sentence": "[c] The GPCA did indeed have a party member, Margaret Garcia, who received 3.8% of the vote in the secretary of state election, 315,079 votes, well over the two percent threshold",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "8,900,593 people voted in the 1994 general election, raising the amount of registrations that could qualify a party to 89,006 people",
"refs": []
},
{
"sentence": "The GPCA did not have this amount on October 24, 1995, to qualify for the March 26, 1996 primary election in this way",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "Had Garcia not received the total that she did, the GPCA would have lost its qualification.",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "In 1995, GPCA leaders, including Mike Feinstein, offered Ralph Nader the party\u2019s qualification, which Nader accepted, to become the first person to use the GPCA\u2019s qualification in a presidential election",
"refs": []
},
{
"sentence": "Margaret Garcia criticized this, saying \u201cHow ironic that a party espousing \u2018future focus\u2019 and long term planning is using Nader as a quick fix for our dwindling numbers.\u201d",
"refs": [
"[ERROR retrieving ref link]",
"[ERROR retrieving ref link]"
]
},
{
"sentence": "The GPCA finally met the registrations requirement in September 1996, and had 95,080 people registered with Green preference on October 7",
"refs": []
},
{
"sentence": "The party has met the registration requirements since",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "The party has also had further electoral results that could maintain the party\u2019s qualification, in every election since first qualifying.",
"refs": []
}
],
"subsections": []
},
{
"section_title": "Electoral milestones",
"section_content": [],
"subsections": []
},
{
"section_title": "Top-two primaries",
"section_content": [
{
"sentence": "The GPCA opposed the June 8, 2010 primary election\u2019s Proposition 14, which would remove access to the general elections from political parties, limiting access to the two candidates that received the most votes in a nonpartisan blanket primary, for California offices, i.e",
"refs": []
},
{
"sentence": "not for the presidential race, nor local races",
"refs": []
},
{
"sentence": "The proposition passed, faced court challenges, and survived those.",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "After Proposition 14\u2019s implementation, three election cycles concluded without any Green candidates advancing from \u201ctop-two\u201d primaries",
"refs": []
},
{
"sentence": "Then, the 2018 US House elections saw three Green Party candidates advance to the general elections",
"refs": []
},
{
"sentence": "Laura Wells ran in the House district CA-13 election, advanced from a six-candidate primary, and received 34,257 votes in the general election, 11.6%",
"refs": []
},
{
"sentence": "Kenneth Mejia ran in the House district CA-34 election, advanced from a three-candidate primary, and received 41,711 votes in the general election, 27.5%",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "And Rodolfo Cortes-Barragan ran in the House district CA-40 election, advanced from the primary, and received 27,511 votes in the general election, 22.7%",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "Each faced off against California Democratic Party (CDP) incumbent opponents in the general elections.",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "In 2020, Margaret Villa became the fourth Green candidate to advance from a top-two primary when she ran in the California State Assembly District 58 election, and she then received 41,100 votes in the general election, 25.1%",
"refs": []
},
{
"sentence": "In 2022, Michael Kerr became the fifth when he ran in the US House of Representatives District CA-10 election, and he then received 52,965 votes in the general election, 21.1%",
"refs": []
}
],
"subsections": []
}
]
},
{
"section_title": "Platform",
"section_content": [
{
"sentence": "The GPCA espouses green politics and the Ten Key Values of ecological wisdom, grassroots democracy, social justice, nonviolence, decentralization, community-based economics, feminism, respect for diversity, personal and global responsibility, and sustainability",
"refs": []
}
],
"subsections": []
},
{
"section_title": "Organization",
"section_content": [
{
"sentence": "The key values of social justice, grassroots democracy, decentralization, respect for diversity, feminism, and personal and global responsibility influence the GPCA\u2019s structure of party membership being inclusive of California residents who are disenfranchised by the state in California or the US, [d] party decisions being determined by general assemblies, limiting the role of its coordinating committees, entrusting its power to autonomous Green parties, composing coordinating committees through yearly, staggered-term elections of six women and six of any gender, and affiliating with the GPUS",
"refs": []
},
{
"sentence": "The GPCA elects delegates to the Green National Convention (GNC) proportionally, rejecting the feature of artificial disproportionality resulting from, in examples, the general ticket or district elections",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "[e]",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "The party\u2019s most recent general assembly was held by video teleconference on November 12, 2022",
"refs": []
},
{
"sentence": "As of January 13, 2023, Laura Wells and David Cobb are the party\u2019s official spokespeople; the party\u2019s treasurer is Justin Richardson; and Jared Laiti is the GPCA liaison to the secretary of state",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "The GPCA has a reference page of local-Green parties at www.cagreens.org/county-parties.",
"refs": [
"[ERROR retrieving ref link]"
]
}
],
"subsections": [
{
"section_title": "Membership",
"section_content": [
{
"sentence": "As of February 10, 2023, there are 97,253 people registered to vote with GPCA preference, 0.44%, the sixth-largest",
"refs": []
},
{
"sentence": "The three counties in which the party has the most people registered are Los Angeles (24,829), San Diego (7,911), and Alameda counties (5,611)",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "The counties in which the party has the highest percentages of the county\u2019s registrations are Humboldt (1.68%), Mendocino (1.51%), and Trinity counties (1.03%)",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "During the 2016 presidential election, GPCA registrations dropped 30%, from nearly 110,000 to 77,868",
"refs": []
},
{
"sentence": "Party spokesperson Mike Feinstein attributed the drop to outreach from the Sanders campaign, citing mailers sent to Greens",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "Thousands of California Greens decided to support Sanders\u2019 endeavor for the presidential nomination of the Democratic Party of the United States of America (DPUSA) through voting, which, as there was a semi-closed election, necessitated reregistration either with CDP preference, or with no party preference (NPP), and then, requesting a crossover ballot",
"refs": [
"https://www.sos.ca.gov/elections/report-registration"
]
},
{
"sentence": "Gayle McLaughlin, who had won mayoral election as a Green, reregistered with NPP to vote for Sanders",
"refs": []
},
{
"sentence": "The Peace and Freedom Party (PFP) saw a similar registration drop-off",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "The lowest point for the GPCA was around California\u2019s primary elections in June, and by the end of the general election, the GPCA\u2019s registrations rose back to 94,647 people, and the PFP rose back to original levels, also",
"refs": [
"https://www.sos.ca.gov/elections/report-registration"
]
},
{
"sentence": "Jill Stein 2016 campaign staffer Bruce Dixon hypothesized that Sanders \u201caims to tie up activist energies and resources till the summer of 2016 when the only remaining choice will be the usual lesser of two evils.\u201d Dixon determined that Sanders was acting as a sheepdog candidate in favor of party politics within certain parties, the DPUSA in this case, despite the parties being opposed to the candidate\u2019s cause, and that dissuades people from politics outside of those parties",
"refs": [
"[ERROR retrieving ref link]",
"[ERROR retrieving ref link]",
"[ERROR retrieving ref link]"
]
},
{
"sentence": "These directives result in a lack of parties and electoral wins of candidates that would advance the sheepdog\u2019s stated politics",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "They also result in captive constituencies that feel compelled to support candidates that they deem the lessers of two evils",
"refs": [
"[ERROR retrieving ref link]",
"[ERROR retrieving ref link]"
]
},
{
"sentence": "Sheepdogs may advocate their strategy before exiting the electoral contest, which could occur because of disqualification, including unsuccessful primary elections, or retraction of candidacy, as was advocated by Sanders before his 2016 disqualification",
"refs": [
"[ERROR retrieving ref link]"
]
}
],
"subsections": []
}
]
},
{
"section_title": "Current elected officials",
"section_content": [
{
"sentence": "As of January 2022, there are twenty-nine California Green elected officials, including two elected-mayors and three in municipal councils",
"refs": []
}
],
"subsections": [
{
"section_title": "Mayoral offices",
"section_content": [
{
"sentence": "As of January 2023, two municipalities have Green elected-mayors:",
"refs": []
}
],
"subsections": []
},
{
"section_title": "Municipal councils",
"section_content": [
{
"sentence": "As of January 16, 2023, three Greens serve on municipal councils:",
"refs": []
}
],
"subsections": []
}
]
},
{
"section_title": "Election results",
"section_content": [],
"subsections": [
{
"section_title": "Presidential",
"section_content": [
{
"sentence": "In the GPCA primary of the 1996 presidential election, Ralph Nader went unopposed",
"refs": []
},
{
"sentence": "Nader did not receive the Greens/Green Party USA nomination, though, at Green Gathering \u201996, delegates from many states stated support for Nader",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "In the California general election, Nader received 237,016 votes",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "In the GPCA primary of the 2000 presidential election, results were affected by California\u2019s blanket primary which the US Supreme Court shortly after ruled unconstitutional in California Democratic Party v",
"refs": []
},
{
"sentence": "Jones",
"refs": []
},
{
"sentence": "Ralph Nader received a winning 94.4%, and Joel Kovel, the runner-up, received 5.6%",
"refs": []
},
{
"sentence": "At the GNC, in the presidential nomination election, Nader received a winning 92.5% of the potential votes, and Jello Biafra and Stephen Gaskin, the runners up, received 3.1% each",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "In the California general election, Nader received 418,707 votes",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "In the GPCA primary of the 2004 presidential election, Peter Camejo received a winning 75.7%, and David Cobb, the runner-up, received 11.5%",
"refs": []
},
{
"sentence": "At the GNC, in the presidential nomination election, none of the options received majority support in the first round and, then, Camejo was eliminated because he didn\u2019t give written indication that he would accept the nomination",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "In the second round, Cobb received a winning 53% of the potential votes, and No Nominee, the runner up option, received 40%",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "[l] In that vote, the GPCA delegation gave to No Nominee 68.2% of its votes and to Cobb 26.5%",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "In the California general election, Cobb received 40,771 votes, and Ralph Nader, the party-independent write-in candidate that Camejo was running mate to, received 20,714 votes",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "In the GPCA primary of the 2008 presidential election, Ralph Nader received a winning 60.7%, and Cynthia McKinney, the runner-up, received 26.6%",
"refs": []
},
{
"sentence": "At the GNC, Nader did not seek the GPUS presidential nomination and, in the presidential nomination election, McKinney received a winning 59.59% of the potential votes, and Nader, as runner up, received 14.48%",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "[m] In the California general election, McKinney received 38,774 votes, and Nader, on the Peace and Freedom Party (PFP) ballot line, received 108,381 votes",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "In the GPCA primary of the 2012 presidential election, Jill Stein received a winning 49.4%, and Roseanne Barr, the runner-up, received 39.8%",
"refs": []
},
{
"sentence": "At the GNC, in the presidential nomination election, Stein received a winning 66.96% of the potential votes, and Barr, as runner up, received 24.91%",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "In the California general election, Stein received 85,638 votes, and Barr, on the PFP ballot line, received 53,824 votes",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "In the GPCA primary of the 2016 presidential election, Jill Stein received a winning 76.2%, and Darryl Cherney, the runner-up, received 10%",
"refs": []
},
{
"sentence": "At the GNC, in the presidential nomination election, Stein received a winning 82% of the potential votes, and William Kreml, the runner up, received 6%",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "[n] In the California general election, Stein received 278,657 votes, more than tripling her 2012 vote",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "Stein did the same nationwide, receiving 1,457,218 votes.",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "In the GPCA primary of the 2020 presidential election, Howie Hawkins received a winning 36.2%, and the runner-up received 22.0%",
"refs": []
},
{
"sentence": "At the GNC, in the presidential nomination election, Hawkins received a winning 58.82% of the potential votes, and the runner up received 28.57%",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "[o] In the California general election, Hawkins received 81,029 votes",
"refs": [
"[ERROR retrieving ref link]"
]
}
],
"subsections": []
},
{
"section_title": "Gubernatorial",
"section_content": [],
"subsections": []
},
{
"section_title": "Election qualifying",
"section_content": [
{
"sentence": "In 2014, to reform the election code due to the consequences of Proposition 14, the California State Legislature changed the criteria by which a party could qualify for elections",
"refs": []
},
{
"sentence": "The threshold to qualify based on electoral results is now based on the sum of the votes cast for all of a party\u2019s candidates for a statewide-elected office in the preceding gubernatorial primary election",
"refs": []
},
{
"sentence": "For 2022 elections of statewide executive offices, the GPCA, together with the PFP, undertook a cooperative ballot-access strategy in continuation of the Howie Hawkins 2020 presidential campaign\u2019s attempt for \u201cleft unity\u201d, consisting of endorsing an inter-party slate",
"refs": []
},
{
"sentence": "A success, Greens met the threshold in the four races that the slate endorsed Greens",
"refs": [
"[ERROR retrieving ref link]"
]
},
{
"sentence": "Luis J",
"refs": []
},
{
"sentence": "Rodriguez was the slate\u2019s gubernatorial candidate, and Heather Collins, another Green, deviated from the slate and also ran in that race, and only together did they receive votes to meet the threshold",
"refs": []
},
{
"sentence": "Other Greens that deviated from the slate did not meet the threshold",
"refs": []
},
{
"sentence": "Veronika Fimbres in the insurance commissioner election did not meet the threshold",
"refs": []
},
{
"sentence": "James \u201cHenk\u201d Conn and Pamela Elizondo in the US senatorial election did not meet the threshold",
"refs": [
"[ERROR retrieving ref link]"
]
}
],
"subsections": []
}
]
},
{
"section_title": "Notable members",
"section_content": [],
"subsections": []
},
{
"section_title": "See also",
"section_content": [],
"subsections": []
},
{
"section_title": "Notes",
"section_content": [],
"subsections": []
},
{
"section_title": "Citations",
"section_content": [],
"subsections": []
},
{
"section_title": "References",
"section_content": [],
"subsections": []
},
{
"section_title": "External links",
"section_content": [],
"subsections": []
},
{
"section_title": "Further reading",
"section_content": [],
"subsections": []
}
],
"references": {
"4": "[ERROR retrieving ref link]",
"7": "[ERROR retrieving ref link]",
"8": "[ERROR retrieving ref link]",
"34": "[ERROR retrieving ref link]",
"35": "[ERROR retrieving ref link]",
"39": "[ERROR retrieving ref link]",
"42": "https://www.sos.ca.gov/elections/report-registration",
"46": "[ERROR retrieving ref link]",
"47": "[ERROR retrieving ref link]",
"48": "[ERROR retrieving ref link]",
"49": "[ERROR retrieving ref link]",
"77": "[ERROR retrieving ref link]",
"80": "[ERROR retrieving ref link]",
"87": "[ERROR retrieving ref link]",
"91": "[ERROR retrieving ref link]",
"1": "[ERROR retrieving ref link]",
"2": "[ERROR retrieving ref link]",
"3": "[ERROR retrieving ref link]",
"5": "[ERROR retrieving ref link]",
"6": "[ERROR retrieving ref link]",
"9": "[ERROR retrieving ref link]",
"10": "[ERROR retrieving ref link]",
"11": "[ERROR retrieving ref link]",
"12": "[ERROR retrieving ref link]",
"13": "[ERROR retrieving ref link]",
"14": "[ERROR retrieving ref link]",
"15": "[ERROR retrieving ref link]",
"16": "[ERROR retrieving ref link]",
"17": "[ERROR retrieving ref link]",
"18": "[ERROR retrieving ref link]",
"19": "[ERROR retrieving ref link]",
"20": "[ERROR retrieving ref link]",
"21": "[ERROR retrieving ref link]",
"22": "[ERROR retrieving ref link]",
"23": "[ERROR retrieving ref link]",
"24": "[ERROR retrieving ref link]",
"25": "[ERROR retrieving ref link]",
"26": "[ERROR retrieving ref link]",
"27": "[ERROR retrieving ref link]",
"28": "[ERROR retrieving ref link]",
"29": "[ERROR retrieving ref link]",
"30": "[ERROR retrieving ref link]",
"31": "[ERROR retrieving ref link]",
"32": "[ERROR retrieving ref link]",
"33": "[ERROR retrieving ref link]",
"36": "[ERROR retrieving ref link]",
"37": "[ERROR retrieving ref link]",
"38": "[ERROR retrieving ref link]",
"40": "[ERROR retrieving ref link]",
"41": "[ERROR retrieving ref link]",
"43": "[ERROR retrieving ref link]",
"44": "[ERROR retrieving ref link]",
"45": "[ERROR retrieving ref link]",
"50": "[ERROR retrieving ref link]",
"51": "[ERROR retrieving ref link]",
"52": "[ERROR retrieving ref link]",
"53": "[ERROR retrieving ref link]",
"54": "[ERROR retrieving ref link]",
"55": "[ERROR retrieving ref link]",
"56": "[ERROR retrieving ref link]",
"57": "[ERROR retrieving ref link]",
"58": "[ERROR retrieving ref link]",
"59": "[ERROR retrieving ref link]",
"60": "[ERROR retrieving ref link]",
"61": "[ERROR retrieving ref link]",
"62": "[ERROR retrieving ref link]",
"63": "[ERROR retrieving ref link]",
"64": "[ERROR retrieving ref link]",
"65": "[ERROR retrieving ref link]",
"66": "[ERROR retrieving ref link]",
"67": "[ERROR retrieving ref link]",
"68": "[ERROR retrieving ref link]",
"69": "[ERROR retrieving ref link]",
"70": "[ERROR retrieving ref link]",
"71": "[ERROR retrieving ref link]",
"72": "[ERROR retrieving ref link]",
"73": "[ERROR retrieving ref link]",
"74": "[ERROR retrieving ref link]",
"75": "[ERROR retrieving ref link]",
"76": "[ERROR retrieving ref link]",
"78": "[ERROR retrieving ref link]",
"79": "[ERROR retrieving ref link]",
"81": "[ERROR retrieving ref link]",
"82": "[ERROR retrieving ref link]",
"83": "[ERROR retrieving ref link]",
"84": "[ERROR retrieving ref link]",
"85": "[ERROR retrieving ref link]",
"86": "[ERROR retrieving ref link]",
"88": "[ERROR retrieving ref link]",
"89": "[ERROR retrieving ref link]",
"90": "[ERROR retrieving ref link]",
"92": "[ERROR retrieving ref link]",
"93": "[ERROR retrieving ref link]",
"94": "[ERROR retrieving ref link]",
"95": "[ERROR retrieving ref link]",
"96": "[ERROR retrieving ref link]",
"97": "[ERROR retrieving ref link]",
"98": "[ERROR retrieving ref link]",
"99": "[ERROR retrieving ref link]",
"100": "[ERROR retrieving ref link]",
"101": "[ERROR retrieving ref link]",
"102": "[ERROR retrieving ref link]",
"103": "[ERROR retrieving ref link]",
"104": "[ERROR retrieving ref link]"
},
"spicy_entities": {
"green_party_of_california": "GPE",
"the green party": "ORG",
"california": "GPE",
"gpca": "ORG",
"the united states": "GPE",
"february 10, 2023": "DATE",
"97,253": "CARDINAL",
"green party": "ORG",
"0.44%": "PERCENT",
"sixth": "ORDINAL",
"january 2022": "DATE",
"twenty-nine": "CARDINAL",
"california green": "ORG",
"two": "CARDINAL",
"three": "CARDINAL",
"february 4, 1990": "DATE",
"greens": "NORP",
"california state university": "ORG",
"sacramento": "GPE",
"harry driggs": "PERSON",
"san francisco": "GPE",
"the 1980s": "DATE",
"january 2, 1990": "DATE",
"a month": "DATE",
"kent smith": "PERSON",
"the june 2, 1992": "DATE",
"420": "CARDINAL",
"green": "PRODUCT",
"at least one percent": "PERCENT",
"december 31, 1991": "DATE",
"154th": "ORDINAL",
"1990": "DATE",
"78,992": "CARDINAL",
"joe louis hoffman": "PERSON",
"november 11, 1991": "DATE",
"50,000": "CARDINAL",
"november": "DATE",
"1992": "DATE",
"100,000": "CARDINAL",
"one": "CARDINAL",
"roger donaldson": "PERSON",
"53": "DATE",
"91,342": "CARDINAL",
"october 4, 1993": "DATE",
"at least 78,992": "CARDINAL",
"january 4, 1994": "DATE",
"the june 7, 1994": "DATE",
"1994": "DATE",
"first": "ORDINAL",
"at least two percent": "PERCENT",
"at least one fifteenth": "DATE",
"one percent": "PERCENT",
"0.067%": "PERCENT",
"margaret garcia": "PERSON",
"3.8%": "PERCENT",
"315,079": "CARDINAL",
"two percent": "PERCENT",
"8,900,593": "CARDINAL",
"89,006": "CARDINAL",
"october 24, 1995": "DATE",
"march 26, 1996": "DATE",
"garcia": "PERSON",
"1995": "DATE",
"mike feinstein": "PERSON",
"ralph nader": "PERSON",
"nader": "PERSON",
"september 1996": "DATE",
"95,080": "CARDINAL",
"october 7": "DATE",
"the june 8, 2010": "DATE",
"proposition 14": "LAW",
"proposition 14\u2019s": "LAW",
"2018": "DATE",
"us": "GPE",
"house": "ORG",
"laura wells": "PERSON",
"six": "CARDINAL",
"34,257": "CARDINAL",
"11.6%": "PERCENT",
"kenneth mejia": "PERSON",
"ca-34": "PRODUCT",
"41,711": "CARDINAL",
"27.5%": "PERCENT",
"rodolfo cortes-barragan": "ORG",
"27,511": "CARDINAL",
"22.7%": "PERCENT",
"california democratic party": "ORG",
"cdp": "ORG",
"2020": "DATE",
"margaret villa": "PERSON",
"fourth": "ORDINAL",
"the california state assembly": "ORG",
"58": "CARDINAL",
"41,100": "CARDINAL",
"25.1%": "PERCENT",
"2022": "DATE",
"michael kerr": "PERSON",
"fifth": "ORDINAL",
"the us house of representatives district": "ORG",
"52,965": "CARDINAL",
"21.1%": "PERCENT",
"ten": "CARDINAL",
"yearly": "DATE",
"gpus": "ORG",
"the green national convention": "ORG",
"gnc": "ORG",
"november 12, 2022": "DATE",
"january 13, 2023": "DATE",
"david cobb": "PERSON",
"justin richardson": "PERSON",
"jared laiti": "PERSON",
"los angeles": "GPE",
"24,829": "CARDINAL",
"san diego": "GPE",
"7,911": "CARDINAL",
"alameda": "GPE",
"5,611": "CARDINAL",
"humboldt": "NORP",
"1.68%": "PERCENT",
"mendocino": "PERSON",
"1.51%": "PERCENT",
"trinity": "ORG",
"1.03%": "PERCENT",
"2016": "DATE",
"30%": "PERCENT",
"nearly 110,000 to 77,868": "CARDINAL",
"sanders": "ORG",
"thousands": "CARDINAL",
"the democratic party of the united states of america": "ORG",
"npp": "ORG",
"gayle mclaughlin": "PERSON",
"the peace and freedom party": "ORG",
"pfp": "ORG",
"june": "DATE",
"94,647": "CARDINAL",
"jill stein 2016": "PERSON",
"bruce dixon": "PERSON",
"the summer of 2016": "DATE",
"dixon": "PERSON",
"dpusa": "ORG",
"january 2023": "DATE",
"january 16, 2023": "DATE",
"1996": "DATE",
"the greens/green party usa": "ORG",
"green gathering": "ORG",
"\u201996": "DATE",
"237,016": "CARDINAL",
"2000": "CARDINAL",
"the us supreme court": "ORG",
"94.4%": "PERCENT",
"joel kovel": "PERSON",
"5.6%": "PERCENT",
"92.5%": "PERCENT",
"jello biafra": "PERSON",
"stephen gaskin": "PERSON",
"3.1%": "PERCENT",
"418,707": "CARDINAL",
"2004": "DATE",
"peter camejo": "PERSON",
"75.7%": "PERCENT",
"11.5%": "PERCENT",
"camejo": "ORG",
"second": "ORDINAL",
"cobb": "ORG",
"53%": "PERCENT",
"40%": "PERCENT",
"68.2%": "PERCENT",
"26.5%": "PERCENT",
"40,771": "CARDINAL",
"20,714": "CARDINAL",
"2008": "DATE",
"60.7%": "PERCENT",
"cynthia mckinney": "PERSON",
"26.6%": "PERCENT",
"mckinney": "PERSON",
"59.59%": "PERCENT",
"14.48%": "PERCENT",
"38,774": "CARDINAL",
"108,381": "CARDINAL",
"2012": "DATE",
"jill stein": "PERSON",
"49.4%": "PERCENT",
"roseanne barr": "PERSON",
"39.8%": "PERCENT",
"stein": "PERSON",
"66.96%": "PERCENT",
"barr": "PERSON",
"24.91%": "PERCENT",
"85,638": "CARDINAL",
"53,824": "CARDINAL",
"76.2%": "PERCENT",
"darryl cherney": "PERSON",
"10%": "PERCENT",
"82%": "PERCENT",
"william kreml": "PERSON",
"6%": "PERCENT",
"278,657": "CARDINAL",
"1,457,218": "CARDINAL",
"howie hawkins": "PERSON",
"36.2%": "PERCENT",
"22.0%": "PERCENT",
"hawkins": "PERSON",
"58.82%": "PERCENT",
"28.57%": "PERCENT",
"81,029": "CARDINAL",
"2014": "DATE",
"the california state legislature": "ORG",
"the howie hawkins": "LOC",
"four": "CARDINAL",
"luis j. rodriguez": "PERSON",
"heather collins": "PERSON",
"veronika fimbres": "PERSON",
"james \u201chenk\u201d": "PERSON",
"conn": "GPE",
"pamela elizondo": "PERSON"
},
"flair_entities": [
"rodriguez",
"roger donaldson",
"stein",
"sacramento",
"california",
"green",
"barr",
"alameda",
"sanders",
"trinity",
"joe louis hoffman",
"california democratic party",
"house",
"pfp",
"joel kovel",
"democratic party",
"william kreml",
"california state university",
"gnc",
"mendocino",
"united states",
"mckinney",
"kenneth mejia",
"los angeles",
"bruce dixon",
"darryl cherney",
"green party of california",
"howie hawkins 2020",
"us house of representatives",
"san francisco",
"kent smith",
"camejo",
"luis j",
"stephen gaskin",
"sanders\u2019",
"green gathering \u201996",
"jones",
"greens",
"ca-13",
"green party",
"nader",
"united states of america",
"jill stein",
"ralph nader",
"us supreme court",
"margaret villa",
"local-green",
"henk",
"heather collins",
"veronika fimbres",
"mike feinstein",
"ca-34",
"david cobb",
"james",
"california greens",
"gpca",
"cobb",
"california state legislature",
"cynthia mckinney",
"cdp",
"peace and freedom party",
"dixon",
"conn",
"harry driggs",
"npp",
"rodolfo cortes-barragan",
"jared laiti",
"california state assembly district",
"laura wells",
"nominee",
"justin richardson",
"roseanne barr",
"peter camejo",
"jello biafra",
"gayle mclaughlin",
"hawkins",
"michael kerr",
"humboldt",
"garcia",
"pamela elizondo",
"green national convention",
"greens/green party usa",
"gpus",
"proposition 14",
"us",
"howie hawkins",
"dpusa",
"margaret garcia",
"san diego"
]
} |