vohzd.com
SCP-9864

The Permanent Member

Series
10
Size
20.3 KB
Views
0

I veto your veto.


- Hide component code

:root {
--sidebar-width-on-desktop: calc(var(--base-font-size) * (266 / 15));
--body-width-on-desktop: 45.75rem;
}
@media only screen and (min-width: 56.25rem) {
#content-wrap {
display: flex;
position: initial;
flex-direction: row;
flex-grow: 2;
width: calc(100vw - (100vw - 100%));
max-width: inherit;
height: auto;
min-height: calc(100vh - var(--final-header-height-on-desktop, 10.125rem));
margin: 0 var(--sidebar-width-on-desktop, 13.6rem) 0 calc(var(--sidebar-width-on-desktop, 13.6rem) * -1 / 2);
}

    \#main-content {
        position: initial;
        width: var(--body-width-on-desktop, 45.75rem);
        max-width: var(--body-width-on-desktop, 45.75rem);
        max-height: 100%;
        margin: 0 auto;
        padding: 2rem 1rem;
    }

    \#page-content {
        max-width: min(90vw, var(--body-width-on-desktop, 45.75rem));
    }

    \#side-bar {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        left: 0;
        grid-area: side-bar;
        width: var(--sidebar-width-on-desktop, 13.6rem) !important;
        min-width: var(--sidebar-width-on-desktop, 13.6rem) !important;
        max-height: 100vh;
        padding-right: 2.5rem;
        padding-left: 0.5rem;
        overflow-y: scroll;
        transition:
            translate 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
            background-color 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
            padding 300ms linear,
            margin 300ms linear;
        border: none;
        border-color: rgba(var(--swatch-tertiary-color, 170, 170, 170), 0.4);
        background-color: rgba(var(--sidebar-bg-color, 255, 255, 255), 0);
        translate: calc(var(--sidebar-width-on-desktop, 13.5rem) * -1 \- 1rem);
        direction: rtl;
        scrollbar-width: thin;
        -ms-scroll-chaining: none;
            overscroll-behavior: contain;
        scrollbar-color:
            rgba(var(--swatch-primary-darker), 0.1) /* Thumb */
            rgba(var(--swatch-tertiary-color), 0.05); /* Track */
    }

    \#side-bar::-webkit-scrollbar-track {
        background-color: rgba(var(--swatch-secondary-color, 244, 244, 244), 0.8);
    }

    \#side-bar::-webkit-scrollbar,
    \#side-bar::-webkit-scrollbar-thumb,
    \#side-bar::-webkit-scrollbar-corner {
        width: 0.5rem;
        border-right-width: calc(100vw + 100vh);
        border-right-style: inset;
        border-color: inherit;
        background-color: rgba(var(--sidebar-bg-color, 255, 255, 255), 0);
    }

    \#side-bar:is(:hover, :active, :focus-within) {
        margin-right: 2.25rem;
        padding-right: 0.25rem;
        overflow-x: hidden;
        overflow-y: auto;
        border-color: rgba(var(--swatch-primary-darker), 1);
        background-color: rgba(var(--sidebar-bg-color, 255, 255, 255), 1);
        translate: calc(var(--sidebar-width-on-desktop, 1rem) - var(--sidebar-width-on-desktop, 0));
        scrollbar-color:
            rgba(170, 170, 170, 1)  /* Thumb */
            rgba(252, 252, 252, 1); /* Track */
        scrollbar-color:
            rgb(var(--swatch-primary-darker, 170, 170, 170), 1) /* Thumb */
            rgb(var(--swatch-menubg-color, 252, 252, 252), 1);  /* Track */
    }

    \#main-content::after {
        content: " ";
        display: flex;
        position: fixed;
        top: 0;
        left: 1rem;
        align-items: center;
        justify-content: center;
        width: 1rem;
        height: 100%;
        max-height: 100%;
        transition:
            left 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
            background-position 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
            opacity 300ms cubic-bezier(0.4, 0.0, 0.2, 1);
        background: url("https://scp-wiki.wdfiles.com/local--files/component%3Acollapsible-sidebar/sidebar-tab.svg");
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-position: center left 1rem;
        background-size: 1rem 12.875rem;
        pointer-events: none;
    }

    \#side-bar:is(:hover, :active, :focus-within) + \#main-content::after {
        left: calc(var(--sidebar-width-on-desktop, 14.5rem) * -1);
        width: 0rem;
        transition:
            left 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
            background-position 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
            opacity 300ms cubic-bezier(0.4, 0.0, 0.2, 1);
        opacity: 0;
        background-position: center left calc(var(--sidebar-width-on-desktop, 14.5rem) * -1);
        font-size: 0em;
    }

    \#main-content::before {
        content: " ";
        position: absolute;
        z-index: 9;
        top: var(--final-header-height-on-desktop, 0);
        left: 0;
        width: var(--sidebar-width-on-desktop, 14.5rem);
        height: calc(100% \- var(--final-header-height-on-desktop, 0.688rem) - 2.313rem);
        margin-bottom: calc(var(--final-header-height-on-desktop, -2.313rem) * -1 \- 2.313rem);
        transition:
            translate 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
            opacity 300ms cubic-bezier(0.4, 0.0, 0.2, 1);
        opacity: 0.5;
        background-color: rgb(var(--swatch-alternate-color, 0, 0, 0));
        pointer-events: none;
        translate: calc(var(--sidebar-width-on-desktop, 14.5rem) * -1 \+ 1rem);
    }

    \#side-bar:is(:hover, :active, :focus-within) + \#main-content::before {
        translate: 0;
        opacity: 0;
    }

    \#side-bar .side-block {
        margin-top: 1em;
        padding-left: 0.25em;
        border-right-width: 0rem;
        border-left-width: 0rem;
        border-radius: 0;
        background-color: rgb(0, 0, 0, 0);
        direction: ltr;
    }

    \#side-bar .scpnet-interwiki-wrapper {
        direction: ltr;
    }

    /* Print Friendly Formatting by Estrella */
    body.print-body {
        --sidebar-width-on-desktop: 0;
    }
    body.print-body \#main-content::before,
    body.print-body \#main-content::after {
        display: none;
    }
}

2/9864 LEVEL 2/9864

CLASSIFIED

Item #: SCP-9864

Euclid

Special Containment Procedures: Instances of SCP-9864-A are of no recognised legal or diplomatic significance and are to be removed from the voting chamber as soon as possible after discovery. All instances are to be scanned and transferred to the Site-90 archives. The investigation into the origins of SCP-9864 continues to monitor the internet and diplomatic communications for mentions of the 'Republic of Couto Misto' or word strings matching comments written on SCP-9864-A instances.

Description: SCP-9864 is a phenomenon that occurs during the voting process of the United Nations Security Council (UNSC). After the President of the UNSC calls for the members to raise their hands, an index card printed with a vote on the resolution and a comment, which is invariably a single sentence written in English, will manifest on the person of the President or one of the voting members. These cards are designated SCP-9864-A. A table of selected responses follows:

Resolution

Date

Item

Outcome

SCP-9864 Vote

SCP-9864 Comment

S/3710

30 Oct 1956

Suez Canal (Ending hostilities in Egypt)

FAILED (Veto: France, UK)

IN FAVOUR

Let us stop playing these games of empire.

S/3730/Rev.1

04 Nov 1956

Situation in Hungary (Condemnation of Soviet invasion)

FAILED (Veto: USSR)

IN FAVOUR

The treads of your tanks run red over your promises of freedom.

S/10771

25 Aug 1972

Admission of Bangladesh to the UN

FAILED (Veto: China)

IN FAVOUR

How can a nation's right to a voice be conditional?

S/12310/Rev.1

31 Oct 1977

Sanctions against South Africa (Apartheid)

FAILED (Veto: France, UK, USA)

COUNTER-VETO

No point of money or regional stability can stand above their human rights.

S/21048

23 Dec 1989

Condemnation of the US Invasion of Panama

FAILED (Veto: France, UK, USA)

COUNTER-VETO

Strength does not grant you immunity from the law.

S/1994/1358

02 Dec 1994

Bosnia-Herzegovina (Detention Camp Access)

FAILED (Veto: Russia)

COUNTER-VETO

When your friend raises a knife to strike the innocent, do not turn away, but seize his wrist and stop him!

S/1997/199

07 Mar 1997

Israeli Settlement Construction (Har Homa)

FAILED (Veto: USA)

COUNTER-VETO

Justice is dying in the dirt, and you are laying bricks on top of her.

S/RES/1973

17 Mar 2011

No-Fly Zone in Libya

ADOPTED (10–0–5)

ABSTAIN

Protect them, for I fear what will happen if you do, and if you do not.

S/2011/612

04 Oct 2011

Condemnation of Syrian Government Violence

FAILED (Veto: China, Russia)

COUNTER-VETO

A government must answer to its people, not slaughter them.

S/2014/189

15 Mar 2014

Resolution invalidating Crimean Referendum

FAILED (Veto: Russia)

COUNTER-VETO

Do not turn back to what there was before.

S/2018/516

01 June 2018

Protection of Palestinian Civilians (Gaza)

FAILED (Veto: USA)

COUNTER-VETO

A civilian is a civilian, no matter which side of a line they are born.

S/2022/155

25 Feb 2022

Situation in Ukraine (Russian Invasion)

FAILED (Veto: Russia)

COUNTER-VETO

This was supposed to be unthinkable.

S/RES/2728

25 Mar 2024

Ceasefire of the Gaza War

ADOPTED (14–0–1)

IN FAVOUR

I hoped and dreamt of this.

S/2024/826

18 Nov 2024

Reports on Sudan and South Sudan

FAILED (Veto: Russia)

COUNTER-VETO

Starvation and murder save no one's sovereignty.

S/2025/583

18 Sept 2025

Middle East Situation (Gaza ceasefire)

FAILED (Veto: USA)

COUNTER-VETO

Your hands are as stained as the river and the soil.

Instances of SCP-9864-A are watermarked with the text 'Republic of Couto Misto', which is believed to refer to the Iberian microstate of Couto Misto which existed until 1868, when it was partitioned between Spain and Portugal as per the Treaty of Lisbon (1864). This text is accompanied by a coat of arms featuring a flag consisting of two vertical white and blue bands.

In 1956/11/19, the UN Secretary-General requested Foundation assistance in locating the source of SCP-9864-A. At the time, operatives were unable to identify a place of origin based on the paper or ink of SCP-9864-A instances, and exploration of the former territory of Couto Misto uncovered no anomalous phenomena. All discovered specimens were collected and stored at Site-90, and the investigation as to the source remained open.

On 2026/01/10, Foundation web-crawlers flagged an online estate auction listing by one Elena Salgado (b. 1999/3/23) of Santiago de Querétaro, Mexico, following the death of her grandfather, Mateo Duarte (1931/4/17-2026/1/6). Doctor Martín Chaurand contacted and interviewed Miss Salgado under the guise of being a collector of artifacts related to Mexican and Iberian history.

Interview Log 9864-1

Date: 2026/01/11

Time: 14:32 p.m.

Interviewer: Doctor Martín Chaurand

Interviewed: Elena Salgado

[Miss Salgado and Dr. Chaurand are sat together in her house, formerly owned by Mr. Duarte. Packing boxes are stacked against one wall. The window looks out onto a quiet street in the centre of the city.]

Dr. Chaurand: Thank you for being so willing to talk to me, Miss Salgado, and for letting me record this interview. I'm curious not just about your grandfather's collection, but about the man who Mr. Mateo Duarte was as well. He had some very unique items in his possession.

Miss Salgado: Please, call me Elena. And it's no problem! I've been talking to lawyers and banks all week, so it feels refreshing to just talk about him, my grandfather, and not his bills or his debts. You're more interested in his stuff than its price tag. It's sad you only learned of him because of his death. You have a passion in history, just like he did.

Dr. Chaurand: That's true; I felt a little pang of grief when I saw what he valued, and I knew that we would never meet to share a drink and talk about the past. Can you tell me about him? What was he like?

Miss Salgado: Oh, where to start? He was a very strange, very passionate man. Strong-minded, like all our family. He loved reading, and long hikes through the mountains, and he always had to be up to date with current affairs. When we were young, he would play a game with us where he could predict what would be on tomorrow's news a day in advance.

Dr. Chaurand: And what about his interest in Couto Misto? He even owned its flag.

Miss Salgado: Oh, yes. I think the neighbours thought it was for a football team. It was a big part of his identity, actually: 'President of the government-in-exile'. [She laughs.] Sorry, I can't stop myself from smiling as I say it. He would say it with a completely straight face. One day, I found out that it had been abolished more than a hundred years before I was born, and so I asked him why he still held on to it. He looked at me sternly, and he told me that no nation in the world should ever be voiceless. He spoke for the country of his grandmothers and his grandfathers because if he didn't, who would?

Dr. Chaurand: One of the items found in his possession was a chest with three locks. What do you know about that?

Miss Salgado: Ah, yes. When we were children, my brother and I assumed there was money inside. One day, we tried to open it. My grandfather found us trying to jiggle the locks open with a hairpin. He didn't shout at us, but he shook his head and sighed, and I think that was even worse. He knelt down on the floor and said that the Republic was here, inside this chest, and it would only come out when three people of the same mind came together to open it. He made us promise not to try again until we were older. We kept that promise.

Dr. Chaurand: So you never saw the inside of the chest?

Miss Salgado: No, never.

Dr. Chaurand: I see. And he was interested in the United Nations, wasn't he? On television?

Miss Salgado: Oh, yes. He had a ritual. Every time there was a vote in the news, he'd turn on his big old TV, make himself a coffee, and sit down to watch all the diplomats and politicans fussing around. And he was always writing, writing, writing. There was a particular fury that gripped him at those times. If we spoke to him, he would not listen to us. He would mutter to himself as he wrote, both in Spanish and in English. Before he passed, he found it harder to organise it all, so he asked me to find out when each upcoming vote would be and mark it in red on his calendar. It was the least I could do for him.

Dr. Chaurand: Thank you. Did you ask him what he was writing?

Miss Salgado: I remember joining him sometimes, though I was usually just listening. But I recall that during the whole thing with Libya, when I was about twelve, we were watching the countries voting and I asked if the Libyans would get to speak. He looked at me that time. He said no, but he said that the United Nations had been founded because people used to ask questions just like mine, and that it was supposed to give a voice to smaller countries so they could hold the stronger ones to account for their behaviour. He said that he was writing on behalf of the world's innocents, and it would not stop him if the politicians did not read his letters, because his conscience demanded that he speak up in any way he could.

Dr. Chaurand: So, did he post these letters to the United Nations?

Miss Salgado: Not that I remember. I don't know if you can. If they saw a letter arrive from Mexico, would they even read it?

Dr. Chaurand: And… did he ever talk about something called a counter-veto?

Miss Salgado: Yes, sometimes, while he watched TV. Veto, veto, contra-veto! I thought he was playing a silly grandpa's game. Does it mean something?

Dr. Chaurand: I don't think so. Now, this might sound a bit peculiar, but did you ever see anything strange happen while he was writing? Like, say, paper disappearing in front of him?

Miss Salgado: Disappearing? No. He threw most of what he wrote away. Honestly, I think he was just a weary man with too big a heart, looking for a purpose. He wrote angry letters to the world without caring that no-one would ever read them. Have you ever heard that phrase, "silence is consent"? Something inside him wouldn't let him sit still while the people of the world were suffering. That was his nature.

Foundation operatives were able to purchase the entire lot of Mr. Duarte's possessions from Miss Salgado and delete all records from the auction site. The items were brought to Site-90 and included:

  • A Sony Trinitron television with a dysfunctional power cord and antenna.
  • A stack of 356 blank index cards identical in appearance to SCP-9864-A, with no discovered anomalous properties.
  • A large wooden chest constructed in the early 17th century, believed to be the chest in which the three villages of Couto Misto stored all treaties, privileges, and archival documents. There are three locks due to the intention of the designers that the chest should only be opened when all of the three villages consented to do so. This was opened by the Foundation and found to contain 4,213 pages of documents dating from 1545-1868; the majority are land deeds, tax records, and minutes from village councils during Couto Misto's period as a neutral and self-governing territory.

Document 9864-B is a letter written in Spanish (followed by a Portuguese summary) from the Joint Spanish-Portuguese Commission for the Demarcation of Frontiers, dated September 29, 1864 and addressed to the inhabitants of Couto Misto.

To the Inhabitants of the Territories known as the Couto Misto,

By authority of Her Catholic Majesty Doña Isabel II, Queen of Spain, and His Most Faithful Majesty Dom Luís I, King of Portugal, by the Grace of God, and in execution of the Treaty of Lisbon concluded between the Two Crowns on the 29th of May, 1864:

The anomalous condition of the so-called Couto Misto, a condition of independence without recognition, of privilege without charter, sustained only by local custom and the forbearance of Their Majesties, is hereby declared to be at an end, correcting an administrative irregularity incompatible with the modern age and establishing the full and orderly governance of the Peninsula.

Following the exchange of ratifications of the Treaty of Lisbon, the lands you currently inhabit will upon June 23rd, 1868, be partitioned along the line of the River Salas. Those dwelling north of this line will be incorporated into the Kingdom of Spain; those to the south, into the Kingdom of Portugal. Your rights as subjects, and the disposition of your properties, will be adjudicated under the respective laws of your new sovereigns.

You are afforded this period prior to ratification to set the affairs of your communities in order and make the necessary personal declarations of allegiance. No separate or collective representation for the Couto Misto will be recognised or acknowledged at the proceedings of this Commission, nor at the courts of Madrid or Lisbon.

By order of the Joint Boundary Commission,

Don Álvaro de la Riva y Figueroa, Commissioner for Her Catholic Majesty, Spain
Dom João de Melo e Castro, Commissioner for His Most Faithful Majesty, Portugal
Given at Calvos de Randín, this 15th day of October, 1864


On 2026/01/14, a new instance of SCP-9864-A appeared in the UNSC voting chamber. Instead of the Republic of Couto Misto, this instance was imprinted with the watermark of the Republic of Artsakh.

Resolution

Date

Item

Outcome

SCP-9864 Vote

SCP-9864 Comment

S/RES/2812

14 Jan 2026

Condemnation of attacks on Red Sea shipping

ADOPTED (13–0–2)

ABSTAIN

So cargo matters more than kids. Cool system.

An investigation into potential authors of these new SCP-9864-A instances commenced on 2026/01/15.