// inflections_reverse_lookup.js
(function () {
/* global AdventureJS A */
var p = AdventureJS.Dictionary.prototype;
/**
* @var {Object} AdventureJS.Dictionary#inflections_reverse_lookup
*/
p.inflections_reverse_lookup = {
"he'd": "we'd",
"he'll": "we'll",
"he's": "we're", // he is
// "he's": "we've", // he has
"i'd": "we'd",
"i'll": "we'll",
"i'm": "we're",
"i've": "we've",
"it'd": "we'd",
"it'll": "we'll",
"it's": "we're", // it is
// "it's": "we've", // it has
"she'd": "we'd",
"she'll": "we'll",
"she's": "we're", // she is
// "she's": "we've", // she has
"they'd": "we'd",
"they'll": "we'll",
"they're": "we're",
"they've": "we've",
"you'd": "we'd",
"you'll": "we'll",
"you're": "we're",
"you've": "we've",
he: "we",
her: "our", // possessive determiner
// her: "us", // object pronoun
hers: "ours",
herself: "ourself", // reflexive pronoun
// herself: "ourselves", // plural reflexive pronoun
him: "us",
himself: "ourself", // reflexive pronoun
// himself: "ourselves", // plural reflexive pronoun
his: "our", // possessive determiner
// his: "ours", // object pronoun
i: "we",
// it: "us", // object pronoun
it: "we", // subject pronoun
its: "our", // possessive determiner
// its: "ours", // possessive pronoun
itself: "ourself", // reflexive pronoun
// itself: "ourselves", // plural reflexive pronoun
me: "us",
mine: "ours",
my: "our",
myself: "ourself", // reflexive pronoun
// myself: "ourselves", // plural reflexive pronoun
she: "we",
their: "our",
theirs: "ours",
them: "us",
themself: "ourself",
themselves: "ourselves",
they: "we",
// you: "us", // object pronoun
you: "we", // subject pronoun
your: "our",
yours: "ours",
yourself: "ourself", // reflexive pronoun
// yourself: "ourselves", // plural reflexive pronoun
};
})();