diff --git a/.config.json b/.config.json new file mode 100644 index 0000000..d29c781 --- /dev/null +++ b/.config.json @@ -0,0 +1,110 @@ +{ + "server": { + "url": "https://misskey-microblogger.sites.vlw.se" + }, + "global": { + "activity": 10 + }, + "active_users": [ + "goofyMallard4", + "aloofEagle7", + "chicPear7", + "trustingHawk4", + "cautiousMeerkat9", + "needfulJerky6", + "madRat9", + "holisticBuzzard4", + "decimalCurlew4", + "somberCurlew4", + "grumpyCheese0", + "cynicalLapwing9", + "pitifulBustard4", + "blissfulMandrill7", + "curiousWasp1", + "outlyingHare6", + "joyfulGatorade6", + "zestyMagpie9", + "amazedBurritos9", + "forsakenBobolink4", + "finickyLollies2", + "mereWigeon0", + "outlyingRelish0", + "annoyedBaboon6", + "needyCamel7", + "holisticWasp1", + "offendedOil9", + "truthfulGatorade7", + "enviousFish3", + "madGnu1", + "needyMallard0", + "innocentRuffs2", + "alertBagels5", + "lazyPolenta3", + "ferventMandrill3", + "mellowLion4", + "ardentMandrill7", + "mercifulBasmati0", + "soreCrackers8", + "mercifulMeerkat8", + "mellowCheetah7", + "lovesickCordial7", + "lovesickBoa8", + "dreadfulCamel4", + "exactingDoughnut4", + "selfishBoa1", + "fondPretzels6", + "brainyAbalone0", + "amazedGarlic3", + "boastfulDove5", + "mereGatorade1", + "shySeagull7", + "shamefulTomatoe2", + "artisticCow4", + "empathicCrackers4", + "kindDove2", + "mellowWhiting1", + "dreadfulCaribou1", + "mercifulBurritos9", + "ecstaticTruffle0", + "peacefulCake8", + "drearyPoultry5", + "amazedLemur3", + "fondIguana8", + "truthfulPiglet9", + "curiousOatmeal8", + "ashamedCaribou4", + "unhappyPonie4", + "awedMoth6", + "empathicRaisins2", + "adoringApricots5", + "cruelGatorade5", + "tautSalami4", + "kindFalcon5", + "wornoutDinosaur6", + "pleasedToucan4", + "amusedCaviar8", + "grudgingBittern7", + "dreadfulLapwing5", + "kindChough0", + "sheepishMallard3", + "bubblyHare7", + "jubilantPear6", + "awedEagle3", + "shamefulBobolink5", + "innocentCordial0", + "peacefulDunbird0", + "forsakenLeopard8", + "outlyingBuzzard2", + "artisticCockatoo8", + "affectedThrushe1", + "amazedFish7", + "empathicFerret9", + "insecureMagpie4", + "wornoutDunbird2", + "thriftyLion4", + "jumpyGarlic3", + "ecstaticZebra7", + "relievedLizard3", + "gloomyPie8" + ] +} diff --git a/.gitignore b/.gitignore index 2d8254b..e9629e6 100755 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,6 @@ # Config -data/users -.config.json +#data/users +#.config.json # Bootstrapping -__pycache__ \ No newline at end of file +__pycache__ diff --git a/.remove_api_keys.py b/.remove_api_keys.py new file mode 100644 index 0000000..3da2c14 --- /dev/null +++ b/.remove_api_keys.py @@ -0,0 +1,18 @@ +import typing + +from src.Config import Config +from src.User.User import User + +REMOVED_MESSAGE = "" + +# Hide API keys from user configs +# Run this before pushing updates to https://git.vlw.se/config/misskey-microblogger-demo +def main(): + for username in Config().get_active_users(): + user = User(username) + user.config["key"] = REMOVED_MESSAGE + + user.save_config() + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/data/users/adoringApricots5.json b/data/users/adoringApricots5.json new file mode 100644 index 0000000..7fa4564 --- /dev/null +++ b/data/users/adoringApricots5.json @@ -0,0 +1,110 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 13.54, + "to": 14.6 + }, + "end": { + "from": 17.24, + "to": 18.35 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 36, + "cooldown": 131643 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 97, + "friends": 33, + "neutral": 70, + "enemies": 5 + } + }, + "specified": { + "percent": { + "partner": 80, + "friends": 35, + "neutral": 60, + "enemies": 55 + } + } + }, + "reacts": { + "percent": { + "partner": 74, + "friends": 74, + "neutral": 0, + "enemies": 66 + }, + "prefrerred_reaction": { + "partner": "❤", + "friends": "😆", + "neutral": "😆", + "enemies": "😆" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 13, + "formal": 48 + } + }, + "mood": { + "probability": { + "funny": 47, + "decent": 2, + "annoyed": 0 + } + }, + "type": { + "probability": { + "question": 12, + "exaggerated": 72, + "statement": 85 + } + } + }, + "note": { + "text_length": { + "flux": 5, + "average": 16 + } + }, + "relationships": { + "friends": [ + "ferventMandrill3", + "finickyLollies2", + "unhappyPonie4", + "empathicRaisins2", + "pleasedToucan4" + ], + "enemies": [ + "curiousWasp1", + "amazedGarlic3", + "ecstaticTruffle0", + "needyCamel7" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/affectedThrushe1.json b/data/users/affectedThrushe1.json new file mode 100644 index 0000000..446649f --- /dev/null +++ b/data/users/affectedThrushe1.json @@ -0,0 +1,110 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 17.8, + "to": 18.6 + }, + "end": { + "from": 19.23, + "to": 20.23 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 10, + "cooldown": 6628 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 2, + "friends": 71, + "neutral": 86, + "enemies": 88 + } + }, + "specified": { + "percent": { + "partner": 27, + "friends": 39, + "neutral": 5, + "enemies": 59 + } + } + }, + "reacts": { + "percent": { + "partner": 97, + "friends": 51, + "neutral": 34, + "enemies": 94 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "👍", + "neutral": "😆", + "enemies": "❤" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 38, + "formal": 45 + } + }, + "mood": { + "probability": { + "funny": 66, + "decent": 43, + "annoyed": 7 + } + }, + "type": { + "probability": { + "question": 86, + "exaggerated": 100, + "statement": 14 + } + } + }, + "note": { + "text_length": { + "flux": 2, + "average": 17 + } + }, + "relationships": { + "friends": [ + "lovesickBoa8", + "amazedLemur3", + "bubblyHare7", + "lazyPolenta3", + "truthfulGatorade7", + "jumpyGarlic3" + ], + "enemies": [ + "enviousFish3", + "chicPear7", + "dreadfulCaribou1" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/alertBagels5.json b/data/users/alertBagels5.json new file mode 100644 index 0000000..bd6c810 --- /dev/null +++ b/data/users/alertBagels5.json @@ -0,0 +1,111 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 6.14, + "to": 7.27 + }, + "end": { + "from": 10.34, + "to": 11.42 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 62, + "cooldown": 92111 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 46, + "friends": 87, + "neutral": 31, + "enemies": 81 + } + }, + "specified": { + "percent": { + "partner": 55, + "friends": 27, + "neutral": 88, + "enemies": 79 + } + } + }, + "reacts": { + "percent": { + "partner": 59, + "friends": 14, + "neutral": 17, + "enemies": 82 + }, + "prefrerred_reaction": { + "partner": "❤", + "friends": "❤", + "neutral": "😆", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 8, + "formal": 76 + } + }, + "mood": { + "probability": { + "funny": 65, + "decent": 6, + "annoyed": 40 + } + }, + "type": { + "probability": { + "question": 81, + "exaggerated": 98, + "statement": 18 + } + } + }, + "note": { + "text_length": { + "flux": 6, + "average": 30 + } + }, + "relationships": { + "friends": [ + "decimalCurlew4", + "somberCurlew4", + "jubilantPear6", + "forsakenLeopard8", + "gloomyPie8" + ], + "enemies": [ + "outlyingHare6", + "fondPretzels6", + "shySeagull7", + "mercifulBasmati0", + "awedMoth6" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/aloofEagle7.json b/data/users/aloofEagle7.json new file mode 100644 index 0000000..33c986c --- /dev/null +++ b/data/users/aloofEagle7.json @@ -0,0 +1,107 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 2.5, + "to": 3.45 + }, + "end": { + "from": 7.37, + "to": 8.12 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 20, + "cooldown": 212636 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 5, + "friends": 53, + "neutral": 57, + "enemies": 66 + } + }, + "specified": { + "percent": { + "partner": 68, + "friends": 70, + "neutral": 39, + "enemies": 87 + } + } + }, + "reacts": { + "percent": { + "partner": 45, + "friends": 92, + "neutral": 29, + "enemies": 96 + }, + "prefrerred_reaction": { + "partner": "👍", + "friends": "😆", + "neutral": "❤", + "enemies": "❤" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 8, + "formal": 99 + } + }, + "mood": { + "probability": { + "funny": 88, + "decent": 15, + "annoyed": 89 + } + }, + "type": { + "probability": { + "question": 25, + "exaggerated": 14, + "statement": 36 + } + } + }, + "note": { + "text_length": { + "flux": 6, + "average": 20 + } + }, + "relationships": { + "friends": [ + "artisticCow4", + "empathicRaisins2", + "lovesickBoa8", + "artisticCockatoo8" + ], + "enemies": [ + "insecureMagpie4", + "forsakenLeopard8" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/amazedBurritos9.json b/data/users/amazedBurritos9.json new file mode 100644 index 0000000..5927146 --- /dev/null +++ b/data/users/amazedBurritos9.json @@ -0,0 +1,110 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 3.23, + "to": 4.57 + }, + "end": { + "from": 5.16, + "to": 6.33 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 48, + "cooldown": 21294 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 30, + "friends": 57, + "neutral": 99, + "enemies": 26 + } + }, + "specified": { + "percent": { + "partner": 46, + "friends": 26, + "neutral": 52, + "enemies": 24 + } + } + }, + "reacts": { + "percent": { + "partner": 79, + "friends": 19, + "neutral": 30, + "enemies": 1 + }, + "prefrerred_reaction": { + "partner": "👍", + "friends": "😆", + "neutral": "❤", + "enemies": "❤" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 21, + "formal": 39 + } + }, + "mood": { + "probability": { + "funny": 55, + "decent": 0, + "annoyed": 92 + } + }, + "type": { + "probability": { + "question": 62, + "exaggerated": 26, + "statement": 0 + } + } + }, + "note": { + "text_length": { + "flux": 5, + "average": 22 + } + }, + "relationships": { + "friends": [ + "fondIguana8", + "somberCurlew4", + "madRat9", + "mellowLion4", + "kindFalcon5", + "jumpyGarlic3" + ], + "enemies": [ + "grumpyCheese0", + "amusedCaviar8", + "shamefulTomatoe2" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/amazedFish7.json b/data/users/amazedFish7.json new file mode 100644 index 0000000..24c14f7 --- /dev/null +++ b/data/users/amazedFish7.json @@ -0,0 +1,107 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 4.27, + "to": 5.19 + }, + "end": { + "from": 13.17, + "to": 14.27 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 15, + "cooldown": 158344 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 28, + "friends": 91, + "neutral": 42, + "enemies": 36 + } + }, + "specified": { + "percent": { + "partner": 0, + "friends": 40, + "neutral": 26, + "enemies": 30 + } + } + }, + "reacts": { + "percent": { + "partner": 99, + "friends": 48, + "neutral": 76, + "enemies": 34 + }, + "prefrerred_reaction": { + "partner": "👍", + "friends": "👍", + "neutral": "❤", + "enemies": "😆" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 23, + "formal": 73 + } + }, + "mood": { + "probability": { + "funny": 60, + "decent": 65, + "annoyed": 49 + } + }, + "type": { + "probability": { + "question": 45, + "exaggerated": 98, + "statement": 49 + } + } + }, + "note": { + "text_length": { + "flux": 8, + "average": 17 + } + }, + "relationships": { + "friends": [ + "awedEagle3", + "wornoutDinosaur6", + "gloomyPie8", + "blissfulMandrill7" + ], + "enemies": [ + "holisticBuzzard4", + "ferventMandrill3" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/amazedGarlic3.json b/data/users/amazedGarlic3.json new file mode 100644 index 0000000..9532f00 --- /dev/null +++ b/data/users/amazedGarlic3.json @@ -0,0 +1,107 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 1.16, + "to": 2.8 + }, + "end": { + "from": 3.4, + "to": 4.21 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 41, + "cooldown": 230429 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 75, + "friends": 20, + "neutral": 65, + "enemies": 54 + } + }, + "specified": { + "percent": { + "partner": 67, + "friends": 9, + "neutral": 39, + "enemies": 60 + } + } + }, + "reacts": { + "percent": { + "partner": 74, + "friends": 64, + "neutral": 44, + "enemies": 81 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "😆", + "neutral": "👍", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 95, + "formal": 88 + } + }, + "mood": { + "probability": { + "funny": 54, + "decent": 47, + "annoyed": 45 + } + }, + "type": { + "probability": { + "question": 24, + "exaggerated": 9, + "statement": 1 + } + } + }, + "note": { + "text_length": { + "flux": 3, + "average": 17 + } + }, + "relationships": { + "friends": [ + "soreCrackers8", + "holisticBuzzard4", + "needyMallard0" + ], + "enemies": [ + "mellowCheetah7", + "finickyLollies2", + "adoringApricots5" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/amazedLemur3.json b/data/users/amazedLemur3.json new file mode 100644 index 0000000..884a920 --- /dev/null +++ b/data/users/amazedLemur3.json @@ -0,0 +1,106 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 13.35, + "to": 14.17 + }, + "end": { + "from": 17.47, + "to": 18.18 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 16, + "cooldown": 84751 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 14, + "friends": 83, + "neutral": 0, + "enemies": 88 + } + }, + "specified": { + "percent": { + "partner": 66, + "friends": 36, + "neutral": 9, + "enemies": 11 + } + } + }, + "reacts": { + "percent": { + "partner": 78, + "friends": 85, + "neutral": 76, + "enemies": 77 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "😆", + "neutral": "👍", + "enemies": "😆" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 3, + "formal": 78 + } + }, + "mood": { + "probability": { + "funny": 14, + "decent": 100, + "annoyed": 93 + } + }, + "type": { + "probability": { + "question": 18, + "exaggerated": 45, + "statement": 86 + } + } + }, + "note": { + "text_length": { + "flux": 6, + "average": 30 + } + }, + "relationships": { + "friends": [ + "soreCrackers8", + "affectedThrushe1", + "needyCamel7", + "dreadfulLapwing5" + ], + "enemies": [ + "cautiousMeerkat9" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/amusedCaviar8.json b/data/users/amusedCaviar8.json new file mode 100644 index 0000000..efc51a3 --- /dev/null +++ b/data/users/amusedCaviar8.json @@ -0,0 +1,112 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 8.33, + "to": 9.59 + }, + "end": { + "from": 14.25, + "to": 15.34 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 74, + "cooldown": 174875 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 82, + "friends": 56, + "neutral": 92, + "enemies": 72 + } + }, + "specified": { + "percent": { + "partner": 36, + "friends": 63, + "neutral": 54, + "enemies": 63 + } + } + }, + "reacts": { + "percent": { + "partner": 41, + "friends": 50, + "neutral": 26, + "enemies": 56 + }, + "prefrerred_reaction": { + "partner": "❤", + "friends": "❤", + "neutral": "😆", + "enemies": "😆" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 55, + "formal": 71 + } + }, + "mood": { + "probability": { + "funny": 98, + "decent": 48, + "annoyed": 3 + } + }, + "type": { + "probability": { + "question": 91, + "exaggerated": 65, + "statement": 16 + } + } + }, + "note": { + "text_length": { + "flux": 5, + "average": 14 + } + }, + "relationships": { + "friends": [ + "mereWigeon0", + "ashamedCaribou4", + "dreadfulCaribou1", + "outlyingBuzzard2", + "insecureMagpie4" + ], + "enemies": [ + "amazedBurritos9", + "lovesickBoa8", + "exactingDoughnut4", + "sheepishMallard3", + "thriftyLion4", + "jumpyGarlic3" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/annoyedBaboon6.json b/data/users/annoyedBaboon6.json new file mode 100644 index 0000000..4dec17e --- /dev/null +++ b/data/users/annoyedBaboon6.json @@ -0,0 +1,112 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 2.25, + "to": 3.26 + }, + "end": { + "from": 13.52, + "to": 14.33 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 49, + "cooldown": 4338 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 66, + "friends": 86, + "neutral": 86, + "enemies": 62 + } + }, + "specified": { + "percent": { + "partner": 82, + "friends": 100, + "neutral": 75, + "enemies": 95 + } + } + }, + "reacts": { + "percent": { + "partner": 3, + "friends": 100, + "neutral": 80, + "enemies": 87 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "👍", + "neutral": "👍", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 92, + "formal": 31 + } + }, + "mood": { + "probability": { + "funny": 90, + "decent": 44, + "annoyed": 33 + } + }, + "type": { + "probability": { + "question": 86, + "exaggerated": 42, + "statement": 82 + } + } + }, + "note": { + "text_length": { + "flux": 4, + "average": 17 + } + }, + "relationships": { + "friends": [ + "holisticBuzzard4", + "wornoutDunbird2", + "mercifulMeerkat8", + "joyfulGatorade6", + "decimalCurlew4", + "jumpyGarlic3", + "lazyPolenta3", + "boastfulDove5", + "cruelGatorade5" + ], + "enemies": [ + "finickyLollies2", + "trustingHawk4" + ], + "partner": "shySeagull7" + } +} \ No newline at end of file diff --git a/data/users/ardentMandrill7.json b/data/users/ardentMandrill7.json new file mode 100644 index 0000000..4f33932 --- /dev/null +++ b/data/users/ardentMandrill7.json @@ -0,0 +1,107 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 21.59, + "to": 22.26 + }, + "end": { + "from": 22.46, + "to": 23.42 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 38, + "cooldown": 53403 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 72, + "friends": 57, + "neutral": 69, + "enemies": 83 + } + }, + "specified": { + "percent": { + "partner": 71, + "friends": 14, + "neutral": 33, + "enemies": 82 + } + } + }, + "reacts": { + "percent": { + "partner": 83, + "friends": 25, + "neutral": 27, + "enemies": 20 + }, + "prefrerred_reaction": { + "partner": "❤", + "friends": "😆", + "neutral": "👍", + "enemies": "😆" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 46, + "formal": 31 + } + }, + "mood": { + "probability": { + "funny": 39, + "decent": 78, + "annoyed": 12 + } + }, + "type": { + "probability": { + "question": 30, + "exaggerated": 55, + "statement": 26 + } + } + }, + "note": { + "text_length": { + "flux": 0, + "average": 17 + } + }, + "relationships": { + "friends": [ + "fondIguana8", + "curiousOatmeal8", + "somberCurlew4", + "lovesickCordial7" + ], + "enemies": [ + "forsakenBobolink4", + "artisticCow4" + ], + "partner": "ecstaticZebra7" + } +} \ No newline at end of file diff --git a/data/users/artisticCockatoo8.json b/data/users/artisticCockatoo8.json new file mode 100644 index 0000000..2d7e80f --- /dev/null +++ b/data/users/artisticCockatoo8.json @@ -0,0 +1,107 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 2.26, + "to": 3.29 + }, + "end": { + "from": 19.28, + "to": 20.1 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 94, + "cooldown": 91823 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 33, + "friends": 94, + "neutral": 71, + "enemies": 29 + } + }, + "specified": { + "percent": { + "partner": 95, + "friends": 52, + "neutral": 71, + "enemies": 59 + } + } + }, + "reacts": { + "percent": { + "partner": 23, + "friends": 27, + "neutral": 46, + "enemies": 95 + }, + "prefrerred_reaction": { + "partner": "👍", + "friends": "👍", + "neutral": "❤", + "enemies": "😆" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 72, + "formal": 39 + } + }, + "mood": { + "probability": { + "funny": 78, + "decent": 4, + "annoyed": 62 + } + }, + "type": { + "probability": { + "question": 52, + "exaggerated": 59, + "statement": 30 + } + } + }, + "note": { + "text_length": { + "flux": 8, + "average": 27 + } + }, + "relationships": { + "friends": [ + "aloofEagle7", + "mereGatorade1", + "cynicalLapwing9" + ], + "enemies": [ + "exactingDoughnut4", + "jumpyGarlic3", + "outlyingHare6" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/artisticCow4.json b/data/users/artisticCow4.json new file mode 100644 index 0000000..a933a96 --- /dev/null +++ b/data/users/artisticCow4.json @@ -0,0 +1,112 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 6.55, + "to": 7.6 + }, + "end": { + "from": 12.26, + "to": 13.21 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 57, + "cooldown": 11107 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 36, + "friends": 45, + "neutral": 25, + "enemies": 55 + } + }, + "specified": { + "percent": { + "partner": 51, + "friends": 55, + "neutral": 9, + "enemies": 47 + } + } + }, + "reacts": { + "percent": { + "partner": 16, + "friends": 68, + "neutral": 61, + "enemies": 60 + }, + "prefrerred_reaction": { + "partner": "❤", + "friends": "❤", + "neutral": "😆", + "enemies": "❤" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 38, + "formal": 87 + } + }, + "mood": { + "probability": { + "funny": 78, + "decent": 42, + "annoyed": 3 + } + }, + "type": { + "probability": { + "question": 23, + "exaggerated": 22, + "statement": 11 + } + } + }, + "note": { + "text_length": { + "flux": 0, + "average": 12 + } + }, + "relationships": { + "friends": [ + "aloofEagle7", + "boastfulDove5", + "exactingDoughnut4", + "finickyLollies2", + "enviousFish3", + "blissfulMandrill7", + "fondIguana8", + "curiousOatmeal8", + "ecstaticZebra7" + ], + "enemies": [ + "lazyPolenta3", + "ardentMandrill7" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/ashamedCaribou4.json b/data/users/ashamedCaribou4.json new file mode 100644 index 0000000..f7450d6 --- /dev/null +++ b/data/users/ashamedCaribou4.json @@ -0,0 +1,114 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 14.2, + "to": 15.13 + }, + "end": { + "from": 18.36, + "to": 19.59 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 100, + "cooldown": 129764 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 89, + "friends": 5, + "neutral": 26, + "enemies": 76 + } + }, + "specified": { + "percent": { + "partner": 93, + "friends": 27, + "neutral": 77, + "enemies": 3 + } + } + }, + "reacts": { + "percent": { + "partner": 97, + "friends": 17, + "neutral": 49, + "enemies": 78 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "❤", + "neutral": "👍", + "enemies": "❤" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 3, + "formal": 75 + } + }, + "mood": { + "probability": { + "funny": 75, + "decent": 46, + "annoyed": 94 + } + }, + "type": { + "probability": { + "question": 71, + "exaggerated": 66, + "statement": 49 + } + } + }, + "note": { + "text_length": { + "flux": 6, + "average": 24 + } + }, + "relationships": { + "friends": [ + "brainyAbalone0", + "shySeagull7", + "outlyingHare6", + "mellowCheetah7", + "lovesickCordial7", + "fondPretzels6", + "mercifulBasmati0", + "empathicRaisins2", + "tautSalami4", + "amusedCaviar8" + ], + "enemies": [ + "holisticBuzzard4", + "empathicFerret9", + "trustingHawk4" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/awedEagle3.json b/data/users/awedEagle3.json new file mode 100644 index 0000000..8776ff9 --- /dev/null +++ b/data/users/awedEagle3.json @@ -0,0 +1,113 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 9.18, + "to": 10.4 + }, + "end": { + "from": 11.53, + "to": 12.47 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 66, + "cooldown": 31325 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 97, + "friends": 91, + "neutral": 84, + "enemies": 22 + } + }, + "specified": { + "percent": { + "partner": 44, + "friends": 90, + "neutral": 50, + "enemies": 49 + } + } + }, + "reacts": { + "percent": { + "partner": 65, + "friends": 100, + "neutral": 95, + "enemies": 65 + }, + "prefrerred_reaction": { + "partner": "👍", + "friends": "👍", + "neutral": "😆", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 12, + "formal": 45 + } + }, + "mood": { + "probability": { + "funny": 48, + "decent": 80, + "annoyed": 77 + } + }, + "type": { + "probability": { + "question": 84, + "exaggerated": 86, + "statement": 47 + } + } + }, + "note": { + "text_length": { + "flux": 10, + "average": 16 + } + }, + "relationships": { + "friends": [ + "needyMallard0", + "truthfulPiglet9", + "pleasedToucan4", + "ecstaticZebra7", + "outlyingBuzzard2", + "amazedFish7", + "cautiousMeerkat9", + "thriftyLion4" + ], + "enemies": [ + "needfulJerky6", + "mereGatorade1", + "dreadfulLapwing5", + "shySeagull7" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/awedMoth6.json b/data/users/awedMoth6.json new file mode 100644 index 0000000..2be9a01 --- /dev/null +++ b/data/users/awedMoth6.json @@ -0,0 +1,115 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 21.31, + "to": 22.45 + }, + "end": { + "from": 22.1, + "to": 23.58 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 0, + "cooldown": 76074 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 7, + "friends": 42, + "neutral": 11, + "enemies": 52 + } + }, + "specified": { + "percent": { + "partner": 94, + "friends": 72, + "neutral": 49, + "enemies": 54 + } + } + }, + "reacts": { + "percent": { + "partner": 4, + "friends": 70, + "neutral": 8, + "enemies": 50 + }, + "prefrerred_reaction": { + "partner": "❤", + "friends": "❤", + "neutral": "👍", + "enemies": "❤" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 38, + "formal": 23 + } + }, + "mood": { + "probability": { + "funny": 63, + "decent": 76, + "annoyed": 90 + } + }, + "type": { + "probability": { + "question": 91, + "exaggerated": 2, + "statement": 95 + } + } + }, + "note": { + "text_length": { + "flux": 9, + "average": 21 + } + }, + "relationships": { + "friends": [ + "trustingHawk4", + "mellowLion4", + "mellowWhiting1", + "outlyingBuzzard2", + "kindFalcon5", + "holisticBuzzard4", + "curiousWasp1", + "grudgingBittern7" + ], + "enemies": [ + "cautiousMeerkat9", + "madRat9", + "forsakenBobolink4", + "mellowCheetah7", + "alertBagels5", + "holisticWasp1" + ], + "partner": "mercifulMeerkat8" + } +} \ No newline at end of file diff --git a/data/users/blissfulMandrill7.json b/data/users/blissfulMandrill7.json new file mode 100644 index 0000000..3900062 --- /dev/null +++ b/data/users/blissfulMandrill7.json @@ -0,0 +1,114 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 21.33, + "to": 22.56 + }, + "end": { + "from": 23.27, + "to": 23.15 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 39, + "cooldown": 137031 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 63, + "friends": 75, + "neutral": 72, + "enemies": 100 + } + }, + "specified": { + "percent": { + "partner": 86, + "friends": 13, + "neutral": 37, + "enemies": 36 + } + } + }, + "reacts": { + "percent": { + "partner": 2, + "friends": 95, + "neutral": 61, + "enemies": 84 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "👍", + "neutral": "👍", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 34, + "formal": 98 + } + }, + "mood": { + "probability": { + "funny": 12, + "decent": 96, + "annoyed": 7 + } + }, + "type": { + "probability": { + "question": 1, + "exaggerated": 99, + "statement": 12 + } + } + }, + "note": { + "text_length": { + "flux": 4, + "average": 18 + } + }, + "relationships": { + "friends": [ + "mercifulMeerkat8", + "outlyingRelish0", + "chicPear7", + "forsakenBobolink4", + "ferventMandrill3", + "artisticCow4", + "dreadfulCaribou1", + "curiousOatmeal8", + "amazedFish7", + "insecureMagpie4" + ], + "enemies": [ + "jubilantPear6", + "holisticWasp1", + "pleasedToucan4" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/boastfulDove5.json b/data/users/boastfulDove5.json new file mode 100644 index 0000000..8d6aefc --- /dev/null +++ b/data/users/boastfulDove5.json @@ -0,0 +1,109 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 6.58, + "to": 7.12 + }, + "end": { + "from": 9.0, + "to": 10.49 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 25, + "cooldown": 47556 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 98, + "friends": 30, + "neutral": 46, + "enemies": 78 + } + }, + "specified": { + "percent": { + "partner": 84, + "friends": 38, + "neutral": 89, + "enemies": 85 + } + } + }, + "reacts": { + "percent": { + "partner": 71, + "friends": 98, + "neutral": 5, + "enemies": 78 + }, + "prefrerred_reaction": { + "partner": "❤", + "friends": "👍", + "neutral": "❤", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 18, + "formal": 12 + } + }, + "mood": { + "probability": { + "funny": 82, + "decent": 9, + "annoyed": 47 + } + }, + "type": { + "probability": { + "question": 88, + "exaggerated": 18, + "statement": 62 + } + } + }, + "note": { + "text_length": { + "flux": 10, + "average": 13 + } + }, + "relationships": { + "friends": [ + "holisticWasp1", + "truthfulGatorade7", + "grumpyCheese0", + "annoyedBaboon6", + "artisticCow4", + "forsakenBobolink4", + "lovesickCordial7" + ], + "enemies": [ + "innocentCordial0" + ], + "partner": "empathicRaisins2" + } +} \ No newline at end of file diff --git a/data/users/brainyAbalone0.json b/data/users/brainyAbalone0.json new file mode 100644 index 0000000..e65ed22 --- /dev/null +++ b/data/users/brainyAbalone0.json @@ -0,0 +1,109 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 9.27, + "to": 10.33 + }, + "end": { + "from": 19.19, + "to": 20.2 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 31, + "cooldown": 407 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 39, + "friends": 17, + "neutral": 14, + "enemies": 36 + } + }, + "specified": { + "percent": { + "partner": 45, + "friends": 34, + "neutral": 32, + "enemies": 47 + } + } + }, + "reacts": { + "percent": { + "partner": 0, + "friends": 89, + "neutral": 21, + "enemies": 49 + }, + "prefrerred_reaction": { + "partner": "👍", + "friends": "❤", + "neutral": "👍", + "enemies": "😆" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 33, + "formal": 17 + } + }, + "mood": { + "probability": { + "funny": 49, + "decent": 15, + "annoyed": 84 + } + }, + "type": { + "probability": { + "question": 49, + "exaggerated": 82, + "statement": 47 + } + } + }, + "note": { + "text_length": { + "flux": 4, + "average": 8 + } + }, + "relationships": { + "friends": [ + "lazyPolenta3", + "ashamedCaribou4", + "decimalCurlew4", + "madRat9", + "mercifulBurritos9", + "jumpyGarlic3", + "ecstaticZebra7" + ], + "enemies": [ + "selfishBoa1" + ], + "partner": "goofyMallard4" + } +} \ No newline at end of file diff --git a/data/users/bubblyHare7.json b/data/users/bubblyHare7.json new file mode 100644 index 0000000..6f8df6f --- /dev/null +++ b/data/users/bubblyHare7.json @@ -0,0 +1,108 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 19.54, + "to": 20.5 + }, + "end": { + "from": 23.12, + "to": 23.17 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 20, + "cooldown": 119787 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 50, + "friends": 0, + "neutral": 67, + "enemies": 95 + } + }, + "specified": { + "percent": { + "partner": 72, + "friends": 82, + "neutral": 32, + "enemies": 63 + } + } + }, + "reacts": { + "percent": { + "partner": 18, + "friends": 6, + "neutral": 34, + "enemies": 44 + }, + "prefrerred_reaction": { + "partner": "👍", + "friends": "❤", + "neutral": "👍", + "enemies": "😆" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 70, + "formal": 47 + } + }, + "mood": { + "probability": { + "funny": 78, + "decent": 70, + "annoyed": 13 + } + }, + "type": { + "probability": { + "question": 65, + "exaggerated": 39, + "statement": 9 + } + } + }, + "note": { + "text_length": { + "flux": 4, + "average": 15 + } + }, + "relationships": { + "friends": [ + "madRat9", + "empathicCrackers4", + "affectedThrushe1", + "peacefulDunbird0", + "pleasedToucan4", + "unhappyPonie4" + ], + "enemies": [ + "mereGatorade1" + ], + "partner": "curiousWasp1" + } +} \ No newline at end of file diff --git a/data/users/cautiousMeerkat9.json b/data/users/cautiousMeerkat9.json new file mode 100644 index 0000000..0812930 --- /dev/null +++ b/data/users/cautiousMeerkat9.json @@ -0,0 +1,115 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 7.58, + "to": 8.56 + }, + "end": { + "from": 14.0, + "to": 15.39 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 23, + "cooldown": 190467 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 34, + "friends": 16, + "neutral": 66, + "enemies": 32 + } + }, + "specified": { + "percent": { + "partner": 33, + "friends": 55, + "neutral": 15, + "enemies": 5 + } + } + }, + "reacts": { + "percent": { + "partner": 85, + "friends": 97, + "neutral": 18, + "enemies": 78 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "❤", + "neutral": "👍", + "enemies": "❤" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 31, + "formal": 70 + } + }, + "mood": { + "probability": { + "funny": 26, + "decent": 46, + "annoyed": 63 + } + }, + "type": { + "probability": { + "question": 28, + "exaggerated": 23, + "statement": 72 + } + } + }, + "note": { + "text_length": { + "flux": 1, + "average": 20 + } + }, + "relationships": { + "friends": [ + "empathicCrackers4", + "outlyingHare6", + "lovesickBoa8", + "curiousWasp1", + "cruelGatorade5", + "somberCurlew4", + "holisticWasp1", + "enviousFish3", + "awedEagle3", + "insecureMagpie4" + ], + "enemies": [ + "awedMoth6", + "mercifulMeerkat8", + "fondPretzels6", + "amazedLemur3" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/chicPear7.json b/data/users/chicPear7.json new file mode 100644 index 0000000..66b9244 --- /dev/null +++ b/data/users/chicPear7.json @@ -0,0 +1,112 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 18.5, + "to": 19.41 + }, + "end": { + "from": 23.53, + "to": 23.13 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 76, + "cooldown": 129059 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 64, + "friends": 82, + "neutral": 88, + "enemies": 56 + } + }, + "specified": { + "percent": { + "partner": 74, + "friends": 92, + "neutral": 41, + "enemies": 32 + } + } + }, + "reacts": { + "percent": { + "partner": 64, + "friends": 45, + "neutral": 58, + "enemies": 82 + }, + "prefrerred_reaction": { + "partner": "👍", + "friends": "👍", + "neutral": "😆", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 79, + "formal": 100 + } + }, + "mood": { + "probability": { + "funny": 93, + "decent": 61, + "annoyed": 70 + } + }, + "type": { + "probability": { + "question": 64, + "exaggerated": 30, + "statement": 42 + } + } + }, + "note": { + "text_length": { + "flux": 8, + "average": 29 + } + }, + "relationships": { + "friends": [ + "lovesickCordial7", + "needyCamel7", + "grumpyCheese0", + "blissfulMandrill7", + "exactingDoughnut4" + ], + "enemies": [ + "jubilantPear6", + "unhappyPonie4", + "trustingHawk4", + "enviousFish3", + "grudgingBittern7", + "affectedThrushe1" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/cruelGatorade5.json b/data/users/cruelGatorade5.json new file mode 100644 index 0000000..17d0bf4 --- /dev/null +++ b/data/users/cruelGatorade5.json @@ -0,0 +1,111 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 22.54, + "to": 23.54 + }, + "end": { + "from": 23.54, + "to": 23.11 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 95, + "cooldown": 39263 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 85, + "friends": 98, + "neutral": 48, + "enemies": 85 + } + }, + "specified": { + "percent": { + "partner": 88, + "friends": 41, + "neutral": 6, + "enemies": 65 + } + } + }, + "reacts": { + "percent": { + "partner": 84, + "friends": 69, + "neutral": 66, + "enemies": 30 + }, + "prefrerred_reaction": { + "partner": "👍", + "friends": "👍", + "neutral": "❤", + "enemies": "❤" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 58, + "formal": 27 + } + }, + "mood": { + "probability": { + "funny": 9, + "decent": 29, + "annoyed": 69 + } + }, + "type": { + "probability": { + "question": 58, + "exaggerated": 0, + "statement": 55 + } + } + }, + "note": { + "text_length": { + "flux": 3, + "average": 17 + } + }, + "relationships": { + "friends": [ + "cautiousMeerkat9", + "pitifulBustard4", + "lovesickCordial7", + "mercifulBurritos9", + "kindDove2", + "annoyedBaboon6", + "relievedLizard3" + ], + "enemies": [ + "decimalCurlew4", + "mellowLion4", + "selfishBoa1" + ], + "partner": "tautSalami4" + } +} \ No newline at end of file diff --git a/data/users/curiousOatmeal8.json b/data/users/curiousOatmeal8.json new file mode 100644 index 0000000..25694ae --- /dev/null +++ b/data/users/curiousOatmeal8.json @@ -0,0 +1,115 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 19.6, + "to": 20.22 + }, + "end": { + "from": 23.5, + "to": 23.2 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 59, + "cooldown": 72330 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 11, + "friends": 9, + "neutral": 26, + "enemies": 34 + } + }, + "specified": { + "percent": { + "partner": 100, + "friends": 55, + "neutral": 37, + "enemies": 21 + } + } + }, + "reacts": { + "percent": { + "partner": 39, + "friends": 64, + "neutral": 19, + "enemies": 13 + }, + "prefrerred_reaction": { + "partner": "👍", + "friends": "❤", + "neutral": "👍", + "enemies": "😆" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 57, + "formal": 55 + } + }, + "mood": { + "probability": { + "funny": 45, + "decent": 57, + "annoyed": 100 + } + }, + "type": { + "probability": { + "question": 86, + "exaggerated": 74, + "statement": 8 + } + } + }, + "note": { + "text_length": { + "flux": 1, + "average": 15 + } + }, + "relationships": { + "friends": [ + "needyCamel7", + "ardentMandrill7", + "truthfulPiglet9", + "blissfulMandrill7", + "finickyLollies2", + "ferventMandrill3", + "fondIguana8", + "artisticCow4", + "insecureMagpie4", + "forsakenLeopard8" + ], + "enemies": [ + "holisticBuzzard4", + "grumpyCheese0", + "needyMallard0", + "fondPretzels6" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/curiousWasp1.json b/data/users/curiousWasp1.json new file mode 100644 index 0000000..4d6ba7c --- /dev/null +++ b/data/users/curiousWasp1.json @@ -0,0 +1,113 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 16.28, + "to": 17.13 + }, + "end": { + "from": 21.27, + "to": 22.41 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 33, + "cooldown": 205504 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 42, + "friends": 11, + "neutral": 72, + "enemies": 82 + } + }, + "specified": { + "percent": { + "partner": 72, + "friends": 13, + "neutral": 22, + "enemies": 65 + } + } + }, + "reacts": { + "percent": { + "partner": 61, + "friends": 73, + "neutral": 42, + "enemies": 89 + }, + "prefrerred_reaction": { + "partner": "❤", + "friends": "👍", + "neutral": "❤", + "enemies": "❤" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 50, + "formal": 64 + } + }, + "mood": { + "probability": { + "funny": 53, + "decent": 27, + "annoyed": 98 + } + }, + "type": { + "probability": { + "question": 53, + "exaggerated": 23, + "statement": 43 + } + } + }, + "note": { + "text_length": { + "flux": 10, + "average": 12 + } + }, + "relationships": { + "friends": [ + "cautiousMeerkat9", + "needyMallard0", + "lovesickBoa8", + "empathicFerret9", + "mellowWhiting1", + "madRat9", + "dreadfulCamel4", + "awedMoth6", + "kindFalcon5" + ], + "enemies": [ + "finickyLollies2", + "adoringApricots5", + "shamefulTomatoe2" + ], + "partner": "bubblyHare7" + } +} \ No newline at end of file diff --git a/data/users/cynicalLapwing9.json b/data/users/cynicalLapwing9.json new file mode 100644 index 0000000..3578c12 --- /dev/null +++ b/data/users/cynicalLapwing9.json @@ -0,0 +1,110 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 5.8, + "to": 6.7 + }, + "end": { + "from": 15.49, + "to": 16.22 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 13, + "cooldown": 125856 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 6, + "friends": 8, + "neutral": 63, + "enemies": 91 + } + }, + "specified": { + "percent": { + "partner": 87, + "friends": 77, + "neutral": 47, + "enemies": 67 + } + } + }, + "reacts": { + "percent": { + "partner": 61, + "friends": 47, + "neutral": 16, + "enemies": 58 + }, + "prefrerred_reaction": { + "partner": "👍", + "friends": "❤", + "neutral": "👍", + "enemies": "😆" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 35, + "formal": 17 + } + }, + "mood": { + "probability": { + "funny": 52, + "decent": 42, + "annoyed": 89 + } + }, + "type": { + "probability": { + "question": 74, + "exaggerated": 28, + "statement": 99 + } + } + }, + "note": { + "text_length": { + "flux": 5, + "average": 22 + } + }, + "relationships": { + "friends": [ + "unhappyPonie4", + "outlyingBuzzard2", + "empathicCrackers4", + "mercifulMeerkat8", + "artisticCockatoo8" + ], + "enemies": [ + "lazyPolenta3", + "jumpyGarlic3", + "truthfulGatorade7", + "mereWigeon0" + ], + "partner": "ecstaticTruffle0" + } +} \ No newline at end of file diff --git a/data/users/decimalCurlew4.json b/data/users/decimalCurlew4.json new file mode 100644 index 0000000..be3b362 --- /dev/null +++ b/data/users/decimalCurlew4.json @@ -0,0 +1,113 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 5.17, + "to": 6.51 + }, + "end": { + "from": 17.38, + "to": 18.25 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 0, + "cooldown": 187347 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 54, + "friends": 67, + "neutral": 42, + "enemies": 43 + } + }, + "specified": { + "percent": { + "partner": 17, + "friends": 26, + "neutral": 68, + "enemies": 79 + } + } + }, + "reacts": { + "percent": { + "partner": 47, + "friends": 74, + "neutral": 12, + "enemies": 21 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "❤", + "neutral": "👍", + "enemies": "😆" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 82, + "formal": 78 + } + }, + "mood": { + "probability": { + "funny": 78, + "decent": 84, + "annoyed": 61 + } + }, + "type": { + "probability": { + "question": 68, + "exaggerated": 56, + "statement": 94 + } + } + }, + "note": { + "text_length": { + "flux": 7, + "average": 28 + } + }, + "relationships": { + "friends": [ + "alertBagels5", + "relievedLizard3", + "mellowCheetah7", + "lovesickCordial7", + "annoyedBaboon6", + "offendedOil9", + "brainyAbalone0", + "drearyPoultry5", + "peacefulDunbird0" + ], + "enemies": [ + "jubilantPear6", + "cruelGatorade5", + "exactingDoughnut4" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/dreadfulCamel4.json b/data/users/dreadfulCamel4.json new file mode 100644 index 0000000..c763bf6 --- /dev/null +++ b/data/users/dreadfulCamel4.json @@ -0,0 +1,113 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 21.31, + "to": 22.6 + }, + "end": { + "from": 22.8, + "to": 23.17 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 27, + "cooldown": 170366 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 33, + "friends": 4, + "neutral": 41, + "enemies": 30 + } + }, + "specified": { + "percent": { + "partner": 43, + "friends": 48, + "neutral": 26, + "enemies": 47 + } + } + }, + "reacts": { + "percent": { + "partner": 86, + "friends": 33, + "neutral": 63, + "enemies": 48 + }, + "prefrerred_reaction": { + "partner": "❤", + "friends": "👍", + "neutral": "👍", + "enemies": "❤" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 59, + "formal": 12 + } + }, + "mood": { + "probability": { + "funny": 41, + "decent": 75, + "annoyed": 5 + } + }, + "type": { + "probability": { + "question": 54, + "exaggerated": 93, + "statement": 8 + } + } + }, + "note": { + "text_length": { + "flux": 7, + "average": 17 + } + }, + "relationships": { + "friends": [ + "needfulJerky6", + "ferventMandrill3", + "mercifulMeerkat8", + "wornoutDinosaur6", + "thriftyLion4", + "jumpyGarlic3", + "curiousWasp1", + "drearyPoultry5" + ], + "enemies": [ + "lovesickCordial7", + "selfishBoa1", + "sheepishMallard3", + "pitifulBustard4" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/dreadfulCaribou1.json b/data/users/dreadfulCaribou1.json new file mode 100644 index 0000000..37ce22b --- /dev/null +++ b/data/users/dreadfulCaribou1.json @@ -0,0 +1,113 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 1.54, + "to": 2.46 + }, + "end": { + "from": 20.28, + "to": 21.1 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 86, + "cooldown": 126393 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 48, + "friends": 72, + "neutral": 45, + "enemies": 52 + } + }, + "specified": { + "percent": { + "partner": 14, + "friends": 5, + "neutral": 12, + "enemies": 21 + } + } + }, + "reacts": { + "percent": { + "partner": 91, + "friends": 18, + "neutral": 94, + "enemies": 54 + }, + "prefrerred_reaction": { + "partner": "❤", + "friends": "👍", + "neutral": "❤", + "enemies": "❤" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 66, + "formal": 76 + } + }, + "mood": { + "probability": { + "funny": 35, + "decent": 37, + "annoyed": 89 + } + }, + "type": { + "probability": { + "question": 97, + "exaggerated": 65, + "statement": 81 + } + } + }, + "note": { + "text_length": { + "flux": 7, + "average": 27 + } + }, + "relationships": { + "friends": [ + "mellowCheetah7", + "empathicFerret9", + "truthfulGatorade7", + "tautSalami4", + "ferventMandrill3", + "blissfulMandrill7", + "shamefulTomatoe2", + "wornoutDinosaur6", + "amusedCaviar8" + ], + "enemies": [ + "holisticBuzzard4", + "goofyMallard4", + "affectedThrushe1" + ], + "partner": "enviousFish3" + } +} \ No newline at end of file diff --git a/data/users/dreadfulLapwing5.json b/data/users/dreadfulLapwing5.json new file mode 100644 index 0000000..942ea68 --- /dev/null +++ b/data/users/dreadfulLapwing5.json @@ -0,0 +1,108 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 15.6, + "to": 16.17 + }, + "end": { + "from": 23.51, + "to": 23.1 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 5, + "cooldown": 73383 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 44, + "friends": 49, + "neutral": 51, + "enemies": 74 + } + }, + "specified": { + "percent": { + "partner": 14, + "friends": 9, + "neutral": 73, + "enemies": 19 + } + } + }, + "reacts": { + "percent": { + "partner": 5, + "friends": 82, + "neutral": 56, + "enemies": 32 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "❤", + "neutral": "❤", + "enemies": "❤" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 38, + "formal": 37 + } + }, + "mood": { + "probability": { + "funny": 96, + "decent": 61, + "annoyed": 42 + } + }, + "type": { + "probability": { + "question": 76, + "exaggerated": 75, + "statement": 69 + } + } + }, + "note": { + "text_length": { + "flux": 10, + "average": 7 + } + }, + "relationships": { + "friends": [ + "finickyLollies2", + "grudgingBittern7", + "outlyingRelish0", + "amazedLemur3", + "jubilantPear6" + ], + "enemies": [ + "goofyMallard4", + "awedEagle3" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/drearyPoultry5.json b/data/users/drearyPoultry5.json new file mode 100644 index 0000000..a9caf3c --- /dev/null +++ b/data/users/drearyPoultry5.json @@ -0,0 +1,111 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 0.55, + "to": 1.36 + }, + "end": { + "from": 4.3, + "to": 5.25 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 42, + "cooldown": 136389 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 64, + "friends": 59, + "neutral": 33, + "enemies": 96 + } + }, + "specified": { + "percent": { + "partner": 48, + "friends": 66, + "neutral": 68, + "enemies": 78 + } + } + }, + "reacts": { + "percent": { + "partner": 84, + "friends": 37, + "neutral": 61, + "enemies": 84 + }, + "prefrerred_reaction": { + "partner": "👍", + "friends": "😆", + "neutral": "😆", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 11, + "formal": 76 + } + }, + "mood": { + "probability": { + "funny": 57, + "decent": 66, + "annoyed": 67 + } + }, + "type": { + "probability": { + "question": 61, + "exaggerated": 76, + "statement": 100 + } + } + }, + "note": { + "text_length": { + "flux": 0, + "average": 13 + } + }, + "relationships": { + "friends": [ + "needyCamel7", + "decimalCurlew4", + "pitifulBustard4", + "dreadfulCamel4", + "shySeagull7", + "unhappyPonie4" + ], + "enemies": [ + "exactingDoughnut4", + "selfishBoa1", + "jumpyGarlic3", + "fondIguana8" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/ecstaticTruffle0.json b/data/users/ecstaticTruffle0.json new file mode 100644 index 0000000..42b2ecc --- /dev/null +++ b/data/users/ecstaticTruffle0.json @@ -0,0 +1,111 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 6.5, + "to": 7.2 + }, + "end": { + "from": 22.8, + "to": 23.58 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 41, + "cooldown": 138075 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 40, + "friends": 63, + "neutral": 97, + "enemies": 45 + } + }, + "specified": { + "percent": { + "partner": 77, + "friends": 29, + "neutral": 74, + "enemies": 38 + } + } + }, + "reacts": { + "percent": { + "partner": 3, + "friends": 43, + "neutral": 34, + "enemies": 6 + }, + "prefrerred_reaction": { + "partner": "👍", + "friends": "❤", + "neutral": "❤", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 35, + "formal": 55 + } + }, + "mood": { + "probability": { + "funny": 58, + "decent": 5, + "annoyed": 59 + } + }, + "type": { + "probability": { + "question": 87, + "exaggerated": 45, + "statement": 83 + } + } + }, + "note": { + "text_length": { + "flux": 7, + "average": 24 + } + }, + "relationships": { + "friends": [ + "zestyMagpie9", + "soreCrackers8", + "innocentCordial0", + "finickyLollies2", + "mercifulBasmati0", + "lovesickBoa8", + "shySeagull7", + "kindChough0" + ], + "enemies": [ + "adoringApricots5", + "jubilantPear6" + ], + "partner": "cynicalLapwing9" + } +} \ No newline at end of file diff --git a/data/users/ecstaticZebra7.json b/data/users/ecstaticZebra7.json new file mode 100644 index 0000000..9626a87 --- /dev/null +++ b/data/users/ecstaticZebra7.json @@ -0,0 +1,111 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 5.57, + "to": 6.23 + }, + "end": { + "from": 20.41, + "to": 21.51 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 2, + "cooldown": 251461 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 53, + "friends": 27, + "neutral": 83, + "enemies": 66 + } + }, + "specified": { + "percent": { + "partner": 1, + "friends": 16, + "neutral": 44, + "enemies": 46 + } + } + }, + "reacts": { + "percent": { + "partner": 27, + "friends": 67, + "neutral": 18, + "enemies": 40 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "❤", + "neutral": "😆", + "enemies": "❤" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 86, + "formal": 27 + } + }, + "mood": { + "probability": { + "funny": 28, + "decent": 24, + "annoyed": 69 + } + }, + "type": { + "probability": { + "question": 91, + "exaggerated": 76, + "statement": 5 + } + } + }, + "note": { + "text_length": { + "flux": 5, + "average": 16 + } + }, + "relationships": { + "friends": [ + "mercifulBasmati0", + "awedEagle3", + "brainyAbalone0", + "artisticCow4", + "kindChough0", + "jumpyGarlic3", + "kindFalcon5", + "finickyLollies2" + ], + "enemies": [ + "trustingHawk4", + "joyfulGatorade6" + ], + "partner": "ardentMandrill7" + } +} \ No newline at end of file diff --git a/data/users/empathicCrackers4.json b/data/users/empathicCrackers4.json new file mode 100644 index 0000000..25199aa --- /dev/null +++ b/data/users/empathicCrackers4.json @@ -0,0 +1,111 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 0.53, + "to": 1.17 + }, + "end": { + "from": 10.6, + "to": 11.4 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 63, + "cooldown": 126349 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 93, + "friends": 7, + "neutral": 24, + "enemies": 3 + } + }, + "specified": { + "percent": { + "partner": 22, + "friends": 63, + "neutral": 75, + "enemies": 52 + } + } + }, + "reacts": { + "percent": { + "partner": 36, + "friends": 100, + "neutral": 56, + "enemies": 4 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "❤", + "neutral": "❤", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 19, + "formal": 85 + } + }, + "mood": { + "probability": { + "funny": 16, + "decent": 73, + "annoyed": 76 + } + }, + "type": { + "probability": { + "question": 74, + "exaggerated": 91, + "statement": 75 + } + } + }, + "note": { + "text_length": { + "flux": 2, + "average": 7 + } + }, + "relationships": { + "friends": [ + "cautiousMeerkat9", + "cynicalLapwing9", + "pitifulBustard4", + "grumpyCheese0", + "bubblyHare7", + "outlyingBuzzard2" + ], + "enemies": [ + "enviousFish3", + "shamefulTomatoe2", + "mercifulBasmati0", + "lovesickBoa8" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/empathicFerret9.json b/data/users/empathicFerret9.json new file mode 100644 index 0000000..885e9c2 --- /dev/null +++ b/data/users/empathicFerret9.json @@ -0,0 +1,114 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 1.8, + "to": 2.11 + }, + "end": { + "from": 9.38, + "to": 10.42 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 11, + "cooldown": 112888 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 43, + "friends": 87, + "neutral": 80, + "enemies": 52 + } + }, + "specified": { + "percent": { + "partner": 20, + "friends": 9, + "neutral": 21, + "enemies": 51 + } + } + }, + "reacts": { + "percent": { + "partner": 67, + "friends": 83, + "neutral": 82, + "enemies": 58 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "😆", + "neutral": "😆", + "enemies": "❤" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 1, + "formal": 47 + } + }, + "mood": { + "probability": { + "funny": 17, + "decent": 90, + "annoyed": 54 + } + }, + "type": { + "probability": { + "question": 88, + "exaggerated": 41, + "statement": 0 + } + } + }, + "note": { + "text_length": { + "flux": 1, + "average": 14 + } + }, + "relationships": { + "friends": [ + "curiousWasp1", + "soreCrackers8", + "exactingDoughnut4", + "dreadfulCaribou1", + "goofyMallard4", + "mellowCheetah7", + "shamefulBobolink5" + ], + "enemies": [ + "outlyingRelish0", + "fondPretzels6", + "shamefulTomatoe2", + "ashamedCaribou4", + "jubilantPear6", + "tautSalami4" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/empathicRaisins2.json b/data/users/empathicRaisins2.json new file mode 100644 index 0000000..07910db --- /dev/null +++ b/data/users/empathicRaisins2.json @@ -0,0 +1,112 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 1.34, + "to": 2.15 + }, + "end": { + "from": 4.17, + "to": 5.26 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 32, + "cooldown": 10809 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 63, + "friends": 11, + "neutral": 5, + "enemies": 29 + } + }, + "specified": { + "percent": { + "partner": 29, + "friends": 80, + "neutral": 84, + "enemies": 56 + } + } + }, + "reacts": { + "percent": { + "partner": 88, + "friends": 75, + "neutral": 83, + "enemies": 53 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "❤", + "neutral": "❤", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 32, + "formal": 25 + } + }, + "mood": { + "probability": { + "funny": 48, + "decent": 67, + "annoyed": 7 + } + }, + "type": { + "probability": { + "question": 96, + "exaggerated": 0, + "statement": 74 + } + } + }, + "note": { + "text_length": { + "flux": 3, + "average": 9 + } + }, + "relationships": { + "friends": [ + "aloofEagle7", + "madRat9", + "fondPretzels6", + "pitifulBustard4", + "ashamedCaribou4", + "adoringApricots5", + "peacefulDunbird0", + "thriftyLion4" + ], + "enemies": [ + "needyCamel7", + "relievedLizard3", + "insecureMagpie4" + ], + "partner": "boastfulDove5" + } +} \ No newline at end of file diff --git a/data/users/enviousFish3.json b/data/users/enviousFish3.json new file mode 100644 index 0000000..d9f897c --- /dev/null +++ b/data/users/enviousFish3.json @@ -0,0 +1,114 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 22.25, + "to": 23.21 + }, + "end": { + "from": 23.43, + "to": 23.45 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 77, + "cooldown": 129808 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 28, + "friends": 6, + "neutral": 2, + "enemies": 67 + } + }, + "specified": { + "percent": { + "partner": 14, + "friends": 75, + "neutral": 26, + "enemies": 25 + } + } + }, + "reacts": { + "percent": { + "partner": 15, + "friends": 3, + "neutral": 66, + "enemies": 6 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "❤", + "neutral": "❤", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 55, + "formal": 13 + } + }, + "mood": { + "probability": { + "funny": 52, + "decent": 62, + "annoyed": 84 + } + }, + "type": { + "probability": { + "question": 18, + "exaggerated": 39, + "statement": 7 + } + } + }, + "note": { + "text_length": { + "flux": 7, + "average": 22 + } + }, + "relationships": { + "friends": [ + "outlyingHare6", + "forsakenBobolink4", + "holisticWasp1", + "cautiousMeerkat9", + "gloomyPie8", + "innocentCordial0", + "wornoutDunbird2", + "mercifulMeerkat8", + "artisticCow4" + ], + "enemies": [ + "chicPear7", + "empathicCrackers4", + "fondIguana8", + "affectedThrushe1" + ], + "partner": "dreadfulCaribou1" + } +} \ No newline at end of file diff --git a/data/users/exactingDoughnut4.json b/data/users/exactingDoughnut4.json new file mode 100644 index 0000000..06fef0b --- /dev/null +++ b/data/users/exactingDoughnut4.json @@ -0,0 +1,114 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 18.13, + "to": 19.46 + }, + "end": { + "from": 22.15, + "to": 23.5 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 21, + "cooldown": 257271 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 14, + "friends": 100, + "neutral": 58, + "enemies": 51 + } + }, + "specified": { + "percent": { + "partner": 37, + "friends": 80, + "neutral": 40, + "enemies": 32 + } + } + }, + "reacts": { + "percent": { + "partner": 38, + "friends": 92, + "neutral": 52, + "enemies": 79 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "❤", + "neutral": "❤", + "enemies": "❤" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 27, + "formal": 41 + } + }, + "mood": { + "probability": { + "funny": 80, + "decent": 36, + "annoyed": 26 + } + }, + "type": { + "probability": { + "question": 43, + "exaggerated": 18, + "statement": 69 + } + } + }, + "note": { + "text_length": { + "flux": 6, + "average": 19 + } + }, + "relationships": { + "friends": [ + "pitifulBustard4", + "offendedOil9", + "kindChough0", + "chicPear7", + "empathicFerret9", + "shySeagull7", + "artisticCow4" + ], + "enemies": [ + "decimalCurlew4", + "mercifulBasmati0", + "drearyPoultry5", + "amusedCaviar8", + "artisticCockatoo8", + "jumpyGarlic3" + ], + "partner": "wornoutDunbird2" + } +} \ No newline at end of file diff --git a/data/users/ferventMandrill3.json b/data/users/ferventMandrill3.json new file mode 100644 index 0000000..bdf6cbe --- /dev/null +++ b/data/users/ferventMandrill3.json @@ -0,0 +1,113 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 3.8, + "to": 4.36 + }, + "end": { + "from": 21.4, + "to": 22.4 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 32, + "cooldown": 245434 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 20, + "friends": 64, + "neutral": 48, + "enemies": 57 + } + }, + "specified": { + "percent": { + "partner": 47, + "friends": 31, + "neutral": 26, + "enemies": 57 + } + } + }, + "reacts": { + "percent": { + "partner": 38, + "friends": 53, + "neutral": 13, + "enemies": 97 + }, + "prefrerred_reaction": { + "partner": "👍", + "friends": "👍", + "neutral": "👍", + "enemies": "❤" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 28, + "formal": 60 + } + }, + "mood": { + "probability": { + "funny": 13, + "decent": 97, + "annoyed": 52 + } + }, + "type": { + "probability": { + "question": 71, + "exaggerated": 7, + "statement": 79 + } + } + }, + "note": { + "text_length": { + "flux": 2, + "average": 9 + } + }, + "relationships": { + "friends": [ + "adoringApricots5", + "mereGatorade1", + "wornoutDunbird2", + "blissfulMandrill7", + "dreadfulCamel4", + "holisticBuzzard4", + "dreadfulCaribou1", + "curiousOatmeal8", + "jubilantPear6" + ], + "enemies": [ + "mercifulMeerkat8", + "wornoutDinosaur6", + "amazedFish7" + ], + "partner": "outlyingBuzzard2" + } +} \ No newline at end of file diff --git a/data/users/finickyLollies2.json b/data/users/finickyLollies2.json new file mode 100644 index 0000000..7912876 --- /dev/null +++ b/data/users/finickyLollies2.json @@ -0,0 +1,120 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 9.22, + "to": 10.48 + }, + "end": { + "from": 11.1, + "to": 12.5 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 49, + "cooldown": 158896 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 27, + "friends": 0, + "neutral": 98, + "enemies": 97 + } + }, + "specified": { + "percent": { + "partner": 46, + "friends": 70, + "neutral": 28, + "enemies": 52 + } + } + }, + "reacts": { + "percent": { + "partner": 5, + "friends": 50, + "neutral": 17, + "enemies": 81 + }, + "prefrerred_reaction": { + "partner": "❤", + "friends": "😆", + "neutral": "😆", + "enemies": "😆" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 99, + "formal": 57 + } + }, + "mood": { + "probability": { + "funny": 88, + "decent": 66, + "annoyed": 85 + } + }, + "type": { + "probability": { + "question": 64, + "exaggerated": 6, + "statement": 83 + } + } + }, + "note": { + "text_length": { + "flux": 6, + "average": 21 + } + }, + "relationships": { + "friends": [ + "lovesickCordial7", + "dreadfulLapwing5", + "kindChough0", + "grumpyCheese0", + "fondPretzels6", + "artisticCow4", + "ecstaticTruffle0", + "curiousOatmeal8", + "adoringApricots5", + "grudgingBittern7", + "ecstaticZebra7", + "gloomyPie8" + ], + "enemies": [ + "curiousWasp1", + "annoyedBaboon6", + "fondIguana8", + "holisticWasp1", + "amazedGarlic3", + "shySeagull7", + "peacefulCake8" + ], + "partner": "soreCrackers8" + } +} \ No newline at end of file diff --git a/data/users/fondIguana8.json b/data/users/fondIguana8.json new file mode 100644 index 0000000..7ba5962 --- /dev/null +++ b/data/users/fondIguana8.json @@ -0,0 +1,114 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 17.22, + "to": 18.59 + }, + "end": { + "from": 21.4, + "to": 22.49 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 73, + "cooldown": 53348 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 1, + "friends": 39, + "neutral": 20, + "enemies": 76 + } + }, + "specified": { + "percent": { + "partner": 52, + "friends": 96, + "neutral": 29, + "enemies": 88 + } + } + }, + "reacts": { + "percent": { + "partner": 55, + "friends": 35, + "neutral": 33, + "enemies": 98 + }, + "prefrerred_reaction": { + "partner": "👍", + "friends": "❤", + "neutral": "❤", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 7, + "formal": 4 + } + }, + "mood": { + "probability": { + "funny": 87, + "decent": 98, + "annoyed": 23 + } + }, + "type": { + "probability": { + "question": 65, + "exaggerated": 80, + "statement": 82 + } + } + }, + "note": { + "text_length": { + "flux": 8, + "average": 13 + } + }, + "relationships": { + "friends": [ + "amazedBurritos9", + "mereWigeon0", + "ardentMandrill7", + "kindDove2", + "peacefulCake8", + "artisticCow4", + "curiousOatmeal8", + "unhappyPonie4" + ], + "enemies": [ + "joyfulGatorade6", + "finickyLollies2", + "enviousFish3", + "drearyPoultry5", + "outlyingBuzzard2" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/fondPretzels6.json b/data/users/fondPretzels6.json new file mode 100644 index 0000000..ca7fe35 --- /dev/null +++ b/data/users/fondPretzels6.json @@ -0,0 +1,111 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 19.54, + "to": 20.43 + }, + "end": { + "from": 22.6, + "to": 23.37 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 42, + "cooldown": 243111 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 35, + "friends": 82, + "neutral": 49, + "enemies": 79 + } + }, + "specified": { + "percent": { + "partner": 71, + "friends": 100, + "neutral": 64, + "enemies": 54 + } + } + }, + "reacts": { + "percent": { + "partner": 97, + "friends": 78, + "neutral": 74, + "enemies": 31 + }, + "prefrerred_reaction": { + "partner": "👍", + "friends": "👍", + "neutral": "👍", + "enemies": "😆" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 71, + "formal": 24 + } + }, + "mood": { + "probability": { + "funny": 24, + "decent": 22, + "annoyed": 28 + } + }, + "type": { + "probability": { + "question": 9, + "exaggerated": 95, + "statement": 65 + } + } + }, + "note": { + "text_length": { + "flux": 0, + "average": 13 + } + }, + "relationships": { + "friends": [ + "finickyLollies2", + "zestyMagpie9", + "ashamedCaribou4", + "empathicRaisins2", + "wornoutDinosaur6" + ], + "enemies": [ + "alertBagels5", + "empathicFerret9", + "cautiousMeerkat9", + "pitifulBustard4", + "curiousOatmeal8" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/forsakenBobolink4.json b/data/users/forsakenBobolink4.json new file mode 100644 index 0000000..a0a053d --- /dev/null +++ b/data/users/forsakenBobolink4.json @@ -0,0 +1,114 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 14.12, + "to": 15.5 + }, + "end": { + "from": 22.57, + "to": 23.34 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 2, + "cooldown": 181018 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 75, + "friends": 7, + "neutral": 22, + "enemies": 7 + } + }, + "specified": { + "percent": { + "partner": 20, + "friends": 38, + "neutral": 0, + "enemies": 38 + } + } + }, + "reacts": { + "percent": { + "partner": 87, + "friends": 9, + "neutral": 85, + "enemies": 81 + }, + "prefrerred_reaction": { + "partner": "👍", + "friends": "❤", + "neutral": "❤", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 80, + "formal": 15 + } + }, + "mood": { + "probability": { + "funny": 3, + "decent": 78, + "annoyed": 99 + } + }, + "type": { + "probability": { + "question": 18, + "exaggerated": 23, + "statement": 94 + } + } + }, + "note": { + "text_length": { + "flux": 2, + "average": 29 + } + }, + "relationships": { + "friends": [ + "zestyMagpie9", + "blissfulMandrill7", + "enviousFish3", + "soreCrackers8", + "outlyingBuzzard2", + "goofyMallard4", + "boastfulDove5", + "shamefulBobolink5" + ], + "enemies": [ + "awedMoth6", + "outlyingHare6", + "innocentRuffs2", + "ardentMandrill7", + "mellowWhiting1" + ], + "partner": "peacefulDunbird0" + } +} \ No newline at end of file diff --git a/data/users/forsakenLeopard8.json b/data/users/forsakenLeopard8.json new file mode 100644 index 0000000..5076065 --- /dev/null +++ b/data/users/forsakenLeopard8.json @@ -0,0 +1,109 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 12.23, + "to": 13.7 + }, + "end": { + "from": 18.53, + "to": 19.18 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 8, + "cooldown": 123882 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 74, + "friends": 71, + "neutral": 76, + "enemies": 97 + } + }, + "specified": { + "percent": { + "partner": 91, + "friends": 52, + "neutral": 81, + "enemies": 61 + } + } + }, + "reacts": { + "percent": { + "partner": 78, + "friends": 40, + "neutral": 66, + "enemies": 58 + }, + "prefrerred_reaction": { + "partner": "👍", + "friends": "❤", + "neutral": "😆", + "enemies": "😆" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 63, + "formal": 74 + } + }, + "mood": { + "probability": { + "funny": 14, + "decent": 72, + "annoyed": 7 + } + }, + "type": { + "probability": { + "question": 89, + "exaggerated": 57, + "statement": 82 + } + } + }, + "note": { + "text_length": { + "flux": 1, + "average": 18 + } + }, + "relationships": { + "friends": [ + "innocentCordial0", + "shamefulBobolink5", + "curiousOatmeal8", + "alertBagels5" + ], + "enemies": [ + "aloofEagle7", + "unhappyPonie4", + "grudgingBittern7", + "gloomyPie8" + ], + "partner": "relievedLizard3" + } +} \ No newline at end of file diff --git a/data/users/gloomyPie8.json b/data/users/gloomyPie8.json new file mode 100644 index 0000000..ee86be8 --- /dev/null +++ b/data/users/gloomyPie8.json @@ -0,0 +1,108 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 14.53, + "to": 15.1 + }, + "end": { + "from": 20.4, + "to": 21.23 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 0, + "cooldown": 95666 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 72, + "friends": 82, + "neutral": 76, + "enemies": 59 + } + }, + "specified": { + "percent": { + "partner": 97, + "friends": 73, + "neutral": 70, + "enemies": 72 + } + } + }, + "reacts": { + "percent": { + "partner": 4, + "friends": 53, + "neutral": 17, + "enemies": 87 + }, + "prefrerred_reaction": { + "partner": "❤", + "friends": "❤", + "neutral": "❤", + "enemies": "😆" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 32, + "formal": 36 + } + }, + "mood": { + "probability": { + "funny": 46, + "decent": 84, + "annoyed": 97 + } + }, + "type": { + "probability": { + "question": 87, + "exaggerated": 51, + "statement": 92 + } + } + }, + "note": { + "text_length": { + "flux": 7, + "average": 11 + } + }, + "relationships": { + "friends": [ + "enviousFish3", + "amazedFish7", + "kindChough0", + "lovesickBoa8", + "alertBagels5", + "finickyLollies2" + ], + "enemies": [ + "forsakenLeopard8" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/goofyMallard4.json b/data/users/goofyMallard4.json new file mode 100644 index 0000000..a74165b --- /dev/null +++ b/data/users/goofyMallard4.json @@ -0,0 +1,110 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 14.1, + "to": 15.42 + }, + "end": { + "from": 19.32, + "to": 20.43 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 16, + "cooldown": 214764 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 50, + "friends": 32, + "neutral": 26, + "enemies": 100 + } + }, + "specified": { + "percent": { + "partner": 8, + "friends": 66, + "neutral": 3, + "enemies": 0 + } + } + }, + "reacts": { + "percent": { + "partner": 17, + "friends": 76, + "neutral": 92, + "enemies": 34 + }, + "prefrerred_reaction": { + "partner": "👍", + "friends": "❤", + "neutral": "😆", + "enemies": "❤" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 29, + "formal": 98 + } + }, + "mood": { + "probability": { + "funny": 21, + "decent": 35, + "annoyed": 18 + } + }, + "type": { + "probability": { + "question": 79, + "exaggerated": 23, + "statement": 2 + } + } + }, + "note": { + "text_length": { + "flux": 6, + "average": 30 + } + }, + "relationships": { + "friends": [ + "lazyPolenta3", + "peacefulCake8", + "grumpyCheese0", + "forsakenBobolink4", + "madGnu1", + "empathicFerret9" + ], + "enemies": [ + "wornoutDunbird2", + "dreadfulCaribou1", + "dreadfulLapwing5" + ], + "partner": "brainyAbalone0" + } +} \ No newline at end of file diff --git a/data/users/grudgingBittern7.json b/data/users/grudgingBittern7.json new file mode 100644 index 0000000..01134a9 --- /dev/null +++ b/data/users/grudgingBittern7.json @@ -0,0 +1,109 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 14.11, + "to": 15.14 + }, + "end": { + "from": 19.48, + "to": 20.26 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 30, + "cooldown": 144176 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 52, + "friends": 6, + "neutral": 51, + "enemies": 60 + } + }, + "specified": { + "percent": { + "partner": 50, + "friends": 80, + "neutral": 3, + "enemies": 16 + } + } + }, + "reacts": { + "percent": { + "partner": 28, + "friends": 54, + "neutral": 8, + "enemies": 78 + }, + "prefrerred_reaction": { + "partner": "❤", + "friends": "❤", + "neutral": "❤", + "enemies": "😆" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 62, + "formal": 86 + } + }, + "mood": { + "probability": { + "funny": 22, + "decent": 68, + "annoyed": 2 + } + }, + "type": { + "probability": { + "question": 33, + "exaggerated": 66, + "statement": 42 + } + } + }, + "note": { + "text_length": { + "flux": 8, + "average": 7 + } + }, + "relationships": { + "friends": [ + "dreadfulLapwing5", + "pitifulBustard4", + "holisticBuzzard4", + "finickyLollies2", + "awedMoth6" + ], + "enemies": [ + "chicPear7", + "forsakenLeopard8", + "relievedLizard3" + ], + "partner": "mereWigeon0" + } +} \ No newline at end of file diff --git a/data/users/grumpyCheese0.json b/data/users/grumpyCheese0.json new file mode 100644 index 0000000..ecb68d5 --- /dev/null +++ b/data/users/grumpyCheese0.json @@ -0,0 +1,111 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 10.12, + "to": 11.45 + }, + "end": { + "from": 12.7, + "to": 13.51 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 85, + "cooldown": 157721 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 30, + "friends": 68, + "neutral": 45, + "enemies": 45 + } + }, + "specified": { + "percent": { + "partner": 30, + "friends": 74, + "neutral": 1, + "enemies": 14 + } + } + }, + "reacts": { + "percent": { + "partner": 93, + "friends": 15, + "neutral": 12, + "enemies": 10 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "❤", + "neutral": "😆", + "enemies": "😆" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 51, + "formal": 42 + } + }, + "mood": { + "probability": { + "funny": 67, + "decent": 6, + "annoyed": 85 + } + }, + "type": { + "probability": { + "question": 56, + "exaggerated": 58, + "statement": 13 + } + } + }, + "note": { + "text_length": { + "flux": 6, + "average": 24 + } + }, + "relationships": { + "friends": [ + "goofyMallard4", + "chicPear7", + "truthfulPiglet9", + "finickyLollies2", + "mercifulBasmati0", + "lovesickCordial7", + "boastfulDove5", + "empathicCrackers4" + ], + "enemies": [ + "curiousOatmeal8", + "amazedBurritos9" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/holisticBuzzard4.json b/data/users/holisticBuzzard4.json new file mode 100644 index 0000000..65ce3ff --- /dev/null +++ b/data/users/holisticBuzzard4.json @@ -0,0 +1,114 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 0.7, + "to": 1.55 + }, + "end": { + "from": 9.14, + "to": 10.6 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 95, + "cooldown": 195789 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 37, + "friends": 86, + "neutral": 45, + "enemies": 42 + } + }, + "specified": { + "percent": { + "partner": 64, + "friends": 3, + "neutral": 46, + "enemies": 93 + } + } + }, + "reacts": { + "percent": { + "partner": 72, + "friends": 96, + "neutral": 32, + "enemies": 81 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "👍", + "neutral": "❤", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 81, + "formal": 75 + } + }, + "mood": { + "probability": { + "funny": 24, + "decent": 66, + "annoyed": 12 + } + }, + "type": { + "probability": { + "question": 22, + "exaggerated": 67, + "statement": 50 + } + } + }, + "note": { + "text_length": { + "flux": 0, + "average": 8 + } + }, + "relationships": { + "friends": [ + "mercifulMeerkat8", + "annoyedBaboon6", + "pitifulBustard4", + "ferventMandrill3", + "amazedGarlic3", + "awedMoth6", + "tautSalami4", + "grudgingBittern7" + ], + "enemies": [ + "amazedFish7", + "curiousOatmeal8", + "dreadfulCaribou1", + "ashamedCaribou4", + "mercifulBurritos9" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/holisticWasp1.json b/data/users/holisticWasp1.json new file mode 100644 index 0000000..741cc44 --- /dev/null +++ b/data/users/holisticWasp1.json @@ -0,0 +1,112 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 22.37, + "to": 23.41 + }, + "end": { + "from": 23.47, + "to": 23.5 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 10, + "cooldown": 130799 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 7, + "friends": 73, + "neutral": 39, + "enemies": 25 + } + }, + "specified": { + "percent": { + "partner": 31, + "friends": 40, + "neutral": 85, + "enemies": 6 + } + } + }, + "reacts": { + "percent": { + "partner": 77, + "friends": 37, + "neutral": 22, + "enemies": 37 + }, + "prefrerred_reaction": { + "partner": "❤", + "friends": "😆", + "neutral": "😆", + "enemies": "❤" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 66, + "formal": 27 + } + }, + "mood": { + "probability": { + "funny": 32, + "decent": 69, + "annoyed": 89 + } + }, + "type": { + "probability": { + "question": 57, + "exaggerated": 75, + "statement": 43 + } + } + }, + "note": { + "text_length": { + "flux": 4, + "average": 15 + } + }, + "relationships": { + "friends": [ + "mercifulBurritos9", + "cautiousMeerkat9", + "enviousFish3", + "boastfulDove5", + "lovesickBoa8", + "mellowWhiting1", + "outlyingBuzzard2" + ], + "enemies": [ + "blissfulMandrill7", + "finickyLollies2", + "mereGatorade1", + "awedMoth6" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/innocentCordial0.json b/data/users/innocentCordial0.json new file mode 100644 index 0000000..249fc72 --- /dev/null +++ b/data/users/innocentCordial0.json @@ -0,0 +1,112 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 21.49, + "to": 22.41 + }, + "end": { + "from": 23.1, + "to": 23.7 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 67, + "cooldown": 20713 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 6, + "friends": 49, + "neutral": 73, + "enemies": 45 + } + }, + "specified": { + "percent": { + "partner": 60, + "friends": 52, + "neutral": 43, + "enemies": 29 + } + } + }, + "reacts": { + "percent": { + "partner": 44, + "friends": 21, + "neutral": 29, + "enemies": 24 + }, + "prefrerred_reaction": { + "partner": "👍", + "friends": "😆", + "neutral": "😆", + "enemies": "❤" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 47, + "formal": 74 + } + }, + "mood": { + "probability": { + "funny": 58, + "decent": 7, + "annoyed": 83 + } + }, + "type": { + "probability": { + "question": 81, + "exaggerated": 62, + "statement": 23 + } + } + }, + "note": { + "text_length": { + "flux": 5, + "average": 26 + } + }, + "relationships": { + "friends": [ + "somberCurlew4", + "outlyingRelish0", + "enviousFish3", + "ecstaticTruffle0", + "zestyMagpie9", + "lazyPolenta3", + "forsakenLeopard8" + ], + "enemies": [ + "innocentRuffs2", + "mellowCheetah7", + "boastfulDove5", + "trustingHawk4" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/innocentRuffs2.json b/data/users/innocentRuffs2.json new file mode 100644 index 0000000..542ddde --- /dev/null +++ b/data/users/innocentRuffs2.json @@ -0,0 +1,106 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 11.38, + "to": 12.44 + }, + "end": { + "from": 19.28, + "to": 20.56 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 41, + "cooldown": 114313 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 73, + "friends": 54, + "neutral": 37, + "enemies": 79 + } + }, + "specified": { + "percent": { + "partner": 19, + "friends": 47, + "neutral": 81, + "enemies": 73 + } + } + }, + "reacts": { + "percent": { + "partner": 2, + "friends": 2, + "neutral": 57, + "enemies": 75 + }, + "prefrerred_reaction": { + "partner": "👍", + "friends": "😆", + "neutral": "👍", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 75, + "formal": 39 + } + }, + "mood": { + "probability": { + "funny": 46, + "decent": 50, + "annoyed": 99 + } + }, + "type": { + "probability": { + "question": 70, + "exaggerated": 85, + "statement": 65 + } + } + }, + "note": { + "text_length": { + "flux": 8, + "average": 10 + } + }, + "relationships": { + "friends": [ + "peacefulCake8", + "mercifulMeerkat8", + "jumpyGarlic3" + ], + "enemies": [ + "forsakenBobolink4", + "innocentCordial0" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/insecureMagpie4.json b/data/users/insecureMagpie4.json new file mode 100644 index 0000000..aa8208b --- /dev/null +++ b/data/users/insecureMagpie4.json @@ -0,0 +1,110 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 8.4, + "to": 9.52 + }, + "end": { + "from": 14.42, + "to": 15.6 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 99, + "cooldown": 162234 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 24, + "friends": 60, + "neutral": 42, + "enemies": 65 + } + }, + "specified": { + "percent": { + "partner": 76, + "friends": 64, + "neutral": 36, + "enemies": 65 + } + } + }, + "reacts": { + "percent": { + "partner": 42, + "friends": 35, + "neutral": 77, + "enemies": 43 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "😆", + "neutral": "❤", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 28, + "formal": 0 + } + }, + "mood": { + "probability": { + "funny": 28, + "decent": 89, + "annoyed": 49 + } + }, + "type": { + "probability": { + "question": 76, + "exaggerated": 29, + "statement": 61 + } + } + }, + "note": { + "text_length": { + "flux": 1, + "average": 11 + } + }, + "relationships": { + "friends": [ + "joyfulGatorade6", + "curiousOatmeal8", + "blissfulMandrill7", + "mellowWhiting1", + "cautiousMeerkat9", + "amusedCaviar8" + ], + "enemies": [ + "aloofEagle7", + "mercifulMeerkat8", + "empathicRaisins2" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/joyfulGatorade6.json b/data/users/joyfulGatorade6.json new file mode 100644 index 0000000..56c7f6e --- /dev/null +++ b/data/users/joyfulGatorade6.json @@ -0,0 +1,107 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 12.41, + "to": 13.57 + }, + "end": { + "from": 22.28, + "to": 23.33 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 3, + "cooldown": 72576 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 60, + "friends": 44, + "neutral": 71, + "enemies": 43 + } + }, + "specified": { + "percent": { + "partner": 22, + "friends": 65, + "neutral": 42, + "enemies": 13 + } + } + }, + "reacts": { + "percent": { + "partner": 42, + "friends": 30, + "neutral": 24, + "enemies": 7 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "😆", + "neutral": "😆", + "enemies": "❤" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 33, + "formal": 22 + } + }, + "mood": { + "probability": { + "funny": 2, + "decent": 25, + "annoyed": 66 + } + }, + "type": { + "probability": { + "question": 6, + "exaggerated": 46, + "statement": 66 + } + } + }, + "note": { + "text_length": { + "flux": 0, + "average": 22 + } + }, + "relationships": { + "friends": [ + "somberCurlew4", + "shamefulBobolink5", + "insecureMagpie4", + "annoyedBaboon6" + ], + "enemies": [ + "fondIguana8", + "ecstaticZebra7" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/jubilantPear6.json b/data/users/jubilantPear6.json new file mode 100644 index 0000000..eecf2e9 --- /dev/null +++ b/data/users/jubilantPear6.json @@ -0,0 +1,116 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 7.13, + "to": 8.14 + }, + "end": { + "from": 22.8, + "to": 23.1 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 80, + "cooldown": 198260 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 99, + "friends": 78, + "neutral": 31, + "enemies": 17 + } + }, + "specified": { + "percent": { + "partner": 67, + "friends": 66, + "neutral": 12, + "enemies": 77 + } + } + }, + "reacts": { + "percent": { + "partner": 88, + "friends": 82, + "neutral": 47, + "enemies": 52 + }, + "prefrerred_reaction": { + "partner": "❤", + "friends": "👍", + "neutral": "👍", + "enemies": "❤" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 88, + "formal": 7 + } + }, + "mood": { + "probability": { + "funny": 53, + "decent": 84, + "annoyed": 71 + } + }, + "type": { + "probability": { + "question": 84, + "exaggerated": 12, + "statement": 67 + } + } + }, + "note": { + "text_length": { + "flux": 4, + "average": 18 + } + }, + "relationships": { + "friends": [ + "somberCurlew4", + "pitifulBustard4", + "alertBagels5", + "shySeagull7", + "peacefulCake8", + "kindFalcon5", + "outlyingHare6", + "ferventMandrill3", + "dreadfulLapwing5", + "madRat9" + ], + "enemies": [ + "chicPear7", + "decimalCurlew4", + "blissfulMandrill7", + "ecstaticTruffle0", + "empathicFerret9" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/jumpyGarlic3.json b/data/users/jumpyGarlic3.json new file mode 100644 index 0000000..0255db2 --- /dev/null +++ b/data/users/jumpyGarlic3.json @@ -0,0 +1,117 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 10.4, + "to": 11.12 + }, + "end": { + "from": 23.45, + "to": 23.6 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 60, + "cooldown": 205054 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 80, + "friends": 100, + "neutral": 51, + "enemies": 4 + } + }, + "specified": { + "percent": { + "partner": 3, + "friends": 27, + "neutral": 96, + "enemies": 52 + } + } + }, + "reacts": { + "percent": { + "partner": 57, + "friends": 99, + "neutral": 65, + "enemies": 100 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "👍", + "neutral": "👍", + "enemies": "❤" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 81, + "formal": 18 + } + }, + "mood": { + "probability": { + "funny": 11, + "decent": 95, + "annoyed": 87 + } + }, + "type": { + "probability": { + "question": 7, + "exaggerated": 28, + "statement": 46 + } + } + }, + "note": { + "text_length": { + "flux": 4, + "average": 11 + } + }, + "relationships": { + "friends": [ + "annoyedBaboon6", + "lovesickBoa8", + "dreadfulCamel4", + "brainyAbalone0", + "mereGatorade1", + "amazedBurritos9", + "affectedThrushe1", + "innocentRuffs2", + "ecstaticZebra7" + ], + "enemies": [ + "cynicalLapwing9", + "drearyPoultry5", + "peacefulDunbird0", + "artisticCockatoo8", + "amusedCaviar8", + "exactingDoughnut4", + "mereWigeon0" + ], + "partner": "mellowWhiting1" + } +} \ No newline at end of file diff --git a/data/users/kindChough0.json b/data/users/kindChough0.json new file mode 100644 index 0000000..e068531 --- /dev/null +++ b/data/users/kindChough0.json @@ -0,0 +1,109 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 6.33, + "to": 7.33 + }, + "end": { + "from": 19.6, + "to": 20.27 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 45, + "cooldown": 211648 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 29, + "friends": 78, + "neutral": 96, + "enemies": 35 + } + }, + "specified": { + "percent": { + "partner": 67, + "friends": 45, + "neutral": 34, + "enemies": 44 + } + } + }, + "reacts": { + "percent": { + "partner": 92, + "friends": 5, + "neutral": 98, + "enemies": 63 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "👍", + "neutral": "😆", + "enemies": "😆" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 55, + "formal": 9 + } + }, + "mood": { + "probability": { + "funny": 56, + "decent": 28, + "annoyed": 43 + } + }, + "type": { + "probability": { + "question": 24, + "exaggerated": 78, + "statement": 16 + } + } + }, + "note": { + "text_length": { + "flux": 4, + "average": 30 + } + }, + "relationships": { + "friends": [ + "needfulJerky6", + "finickyLollies2", + "mellowCheetah7", + "exactingDoughnut4", + "tautSalami4", + "shamefulTomatoe2", + "ecstaticTruffle0", + "ecstaticZebra7", + "gloomyPie8" + ], + "enemies": [], + "partner": "somberCurlew4" + } +} \ No newline at end of file diff --git a/data/users/kindDove2.json b/data/users/kindDove2.json new file mode 100644 index 0000000..9eaab5b --- /dev/null +++ b/data/users/kindDove2.json @@ -0,0 +1,110 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 10.23, + "to": 11.29 + }, + "end": { + "from": 22.0, + "to": 23.8 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 90, + "cooldown": 77206 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 52, + "friends": 69, + "neutral": 4, + "enemies": 40 + } + }, + "specified": { + "percent": { + "partner": 84, + "friends": 90, + "neutral": 39, + "enemies": 30 + } + } + }, + "reacts": { + "percent": { + "partner": 49, + "friends": 1, + "neutral": 12, + "enemies": 98 + }, + "prefrerred_reaction": { + "partner": "❤", + "friends": "👍", + "neutral": "❤", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 25, + "formal": 73 + } + }, + "mood": { + "probability": { + "funny": 96, + "decent": 54, + "annoyed": 0 + } + }, + "type": { + "probability": { + "question": 91, + "exaggerated": 44, + "statement": 1 + } + } + }, + "note": { + "text_length": { + "flux": 3, + "average": 11 + } + }, + "relationships": { + "friends": [ + "needfulJerky6", + "outlyingHare6", + "needyCamel7", + "fondIguana8", + "lovesickCordial7", + "mellowCheetah7", + "cruelGatorade5", + "relievedLizard3" + ], + "enemies": [ + "offendedOil9" + ], + "partner": "wornoutDinosaur6" + } +} \ No newline at end of file diff --git a/data/users/kindFalcon5.json b/data/users/kindFalcon5.json new file mode 100644 index 0000000..a2e3539 --- /dev/null +++ b/data/users/kindFalcon5.json @@ -0,0 +1,115 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 0.48, + "to": 1.26 + }, + "end": { + "from": 20.2, + "to": 21.39 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 83, + "cooldown": 246317 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 24, + "friends": 37, + "neutral": 51, + "enemies": 83 + } + }, + "specified": { + "percent": { + "partner": 90, + "friends": 99, + "neutral": 95, + "enemies": 51 + } + } + }, + "reacts": { + "percent": { + "partner": 35, + "friends": 22, + "neutral": 79, + "enemies": 58 + }, + "prefrerred_reaction": { + "partner": "👍", + "friends": "❤", + "neutral": "👍", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 29, + "formal": 80 + } + }, + "mood": { + "probability": { + "funny": 9, + "decent": 46, + "annoyed": 65 + } + }, + "type": { + "probability": { + "question": 61, + "exaggerated": 46, + "statement": 27 + } + } + }, + "note": { + "text_length": { + "flux": 6, + "average": 12 + } + }, + "relationships": { + "friends": [ + "madRat9", + "needyCamel7", + "mellowWhiting1", + "awedMoth6", + "madGnu1", + "soreCrackers8", + "jubilantPear6", + "curiousWasp1", + "offendedOil9", + "amazedBurritos9", + "ecstaticZebra7" + ], + "enemies": [ + "trustingHawk4", + "shamefulBobolink5", + "sheepishMallard3" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/lazyPolenta3.json b/data/users/lazyPolenta3.json new file mode 100644 index 0000000..ebb6f8c --- /dev/null +++ b/data/users/lazyPolenta3.json @@ -0,0 +1,115 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 3.16, + "to": 4.54 + }, + "end": { + "from": 5.22, + "to": 6.47 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 93, + "cooldown": 243057 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 25, + "friends": 0, + "neutral": 24, + "enemies": 26 + } + }, + "specified": { + "percent": { + "partner": 90, + "friends": 3, + "neutral": 12, + "enemies": 38 + } + } + }, + "reacts": { + "percent": { + "partner": 13, + "friends": 15, + "neutral": 39, + "enemies": 80 + }, + "prefrerred_reaction": { + "partner": "❤", + "friends": "😆", + "neutral": "😆", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 72, + "formal": 17 + } + }, + "mood": { + "probability": { + "funny": 16, + "decent": 83, + "annoyed": 36 + } + }, + "type": { + "probability": { + "question": 43, + "exaggerated": 16, + "statement": 15 + } + } + }, + "note": { + "text_length": { + "flux": 0, + "average": 28 + } + }, + "relationships": { + "friends": [ + "goofyMallard4", + "annoyedBaboon6", + "zestyMagpie9", + "pitifulBustard4", + "brainyAbalone0", + "shamefulBobolink5", + "mellowLion4", + "mercifulMeerkat8", + "pleasedToucan4", + "innocentCordial0", + "peacefulDunbird0", + "affectedThrushe1" + ], + "enemies": [ + "cynicalLapwing9", + "artisticCow4" + ], + "partner": "outlyingRelish0" + } +} \ No newline at end of file diff --git a/data/users/lovesickBoa8.json b/data/users/lovesickBoa8.json new file mode 100644 index 0000000..09e3d1b --- /dev/null +++ b/data/users/lovesickBoa8.json @@ -0,0 +1,114 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 18.53, + "to": 19.56 + }, + "end": { + "from": 20.37, + "to": 21.12 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 13, + "cooldown": 236474 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 41, + "friends": 57, + "neutral": 31, + "enemies": 13 + } + }, + "specified": { + "percent": { + "partner": 3, + "friends": 87, + "neutral": 69, + "enemies": 16 + } + } + }, + "reacts": { + "percent": { + "partner": 44, + "friends": 36, + "neutral": 77, + "enemies": 56 + }, + "prefrerred_reaction": { + "partner": "👍", + "friends": "👍", + "neutral": "❤", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 42, + "formal": 71 + } + }, + "mood": { + "probability": { + "funny": 34, + "decent": 72, + "annoyed": 40 + } + }, + "type": { + "probability": { + "question": 45, + "exaggerated": 96, + "statement": 17 + } + } + }, + "note": { + "text_length": { + "flux": 2, + "average": 13 + } + }, + "relationships": { + "friends": [ + "cautiousMeerkat9", + "curiousWasp1", + "jumpyGarlic3", + "holisticWasp1", + "affectedThrushe1", + "aloofEagle7", + "ecstaticTruffle0", + "truthfulPiglet9", + "gloomyPie8" + ], + "enemies": [ + "outlyingRelish0", + "amusedCaviar8", + "mereWigeon0", + "empathicCrackers4" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/lovesickCordial7.json b/data/users/lovesickCordial7.json new file mode 100644 index 0000000..e7488c0 --- /dev/null +++ b/data/users/lovesickCordial7.json @@ -0,0 +1,113 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 4.32, + "to": 5.41 + }, + "end": { + "from": 15.23, + "to": 16.3 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 71, + "cooldown": 149349 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 95, + "friends": 66, + "neutral": 0, + "enemies": 12 + } + }, + "specified": { + "percent": { + "partner": 35, + "friends": 95, + "neutral": 68, + "enemies": 86 + } + } + }, + "reacts": { + "percent": { + "partner": 40, + "friends": 57, + "neutral": 11, + "enemies": 78 + }, + "prefrerred_reaction": { + "partner": "❤", + "friends": "👍", + "neutral": "👍", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 14, + "formal": 100 + } + }, + "mood": { + "probability": { + "funny": 32, + "decent": 29, + "annoyed": 50 + } + }, + "type": { + "probability": { + "question": 89, + "exaggerated": 10, + "statement": 76 + } + } + }, + "note": { + "text_length": { + "flux": 2, + "average": 7 + } + }, + "relationships": { + "friends": [ + "chicPear7", + "decimalCurlew4", + "finickyLollies2", + "grumpyCheese0", + "ardentMandrill7", + "cruelGatorade5", + "wornoutDinosaur6", + "boastfulDove5", + "kindDove2", + "ashamedCaribou4" + ], + "enemies": [ + "dreadfulCamel4", + "peacefulCake8" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/madGnu1.json b/data/users/madGnu1.json new file mode 100644 index 0000000..b7c4353 --- /dev/null +++ b/data/users/madGnu1.json @@ -0,0 +1,107 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 4.55, + "to": 5.39 + }, + "end": { + "from": 10.21, + "to": 11.12 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 30, + "cooldown": 156494 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 21, + "friends": 82, + "neutral": 95, + "enemies": 13 + } + }, + "specified": { + "percent": { + "partner": 97, + "friends": 76, + "neutral": 50, + "enemies": 79 + } + } + }, + "reacts": { + "percent": { + "partner": 27, + "friends": 59, + "neutral": 100, + "enemies": 4 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "👍", + "neutral": "❤", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 41, + "formal": 56 + } + }, + "mood": { + "probability": { + "funny": 32, + "decent": 1, + "annoyed": 2 + } + }, + "type": { + "probability": { + "question": 87, + "exaggerated": 6, + "statement": 16 + } + } + }, + "note": { + "text_length": { + "flux": 2, + "average": 26 + } + }, + "relationships": { + "friends": [ + "goofyMallard4", + "mercifulBasmati0", + "peacefulCake8", + "soreCrackers8", + "shySeagull7", + "truthfulGatorade7", + "kindFalcon5" + ], + "enemies": [], + "partner": "outlyingHare6" + } +} \ No newline at end of file diff --git a/data/users/madRat9.json b/data/users/madRat9.json new file mode 100644 index 0000000..3630824 --- /dev/null +++ b/data/users/madRat9.json @@ -0,0 +1,115 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 1.26, + "to": 2.16 + }, + "end": { + "from": 9.23, + "to": 10.2 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 63, + "cooldown": 219932 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 59, + "friends": 1, + "neutral": 26, + "enemies": 21 + } + }, + "specified": { + "percent": { + "partner": 6, + "friends": 67, + "neutral": 85, + "enemies": 65 + } + } + }, + "reacts": { + "percent": { + "partner": 10, + "friends": 23, + "neutral": 84, + "enemies": 46 + }, + "prefrerred_reaction": { + "partner": "❤", + "friends": "👍", + "neutral": "❤", + "enemies": "❤" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 15, + "formal": 3 + } + }, + "mood": { + "probability": { + "funny": 46, + "decent": 28, + "annoyed": 75 + } + }, + "type": { + "probability": { + "question": 64, + "exaggerated": 41, + "statement": 65 + } + } + }, + "note": { + "text_length": { + "flux": 8, + "average": 30 + } + }, + "relationships": { + "friends": [ + "empathicRaisins2", + "unhappyPonie4", + "kindFalcon5", + "bubblyHare7", + "curiousWasp1", + "amazedBurritos9", + "mereWigeon0", + "offendedOil9", + "truthfulGatorade7", + "mellowLion4", + "brainyAbalone0", + "jubilantPear6" + ], + "enemies": [ + "awedMoth6", + "selfishBoa1" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/mellowCheetah7.json b/data/users/mellowCheetah7.json new file mode 100644 index 0000000..2aed600 --- /dev/null +++ b/data/users/mellowCheetah7.json @@ -0,0 +1,113 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 17.0, + "to": 18.26 + }, + "end": { + "from": 20.1, + "to": 21.4 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 42, + "cooldown": 36111 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 100, + "friends": 17, + "neutral": 6, + "enemies": 94 + } + }, + "specified": { + "percent": { + "partner": 78, + "friends": 81, + "neutral": 21, + "enemies": 68 + } + } + }, + "reacts": { + "percent": { + "partner": 100, + "friends": 68, + "neutral": 3, + "enemies": 0 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "😆", + "neutral": "👍", + "enemies": "❤" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 77, + "formal": 80 + } + }, + "mood": { + "probability": { + "funny": 88, + "decent": 18, + "annoyed": 8 + } + }, + "type": { + "probability": { + "question": 15, + "exaggerated": 7, + "statement": 21 + } + } + }, + "note": { + "text_length": { + "flux": 3, + "average": 23 + } + }, + "relationships": { + "friends": [ + "decimalCurlew4", + "kindChough0", + "dreadfulCaribou1", + "kindDove2", + "ashamedCaribou4", + "tautSalami4", + "empathicFerret9" + ], + "enemies": [ + "awedMoth6", + "innocentCordial0", + "amazedGarlic3", + "sheepishMallard3", + "pleasedToucan4" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/mellowLion4.json b/data/users/mellowLion4.json new file mode 100644 index 0000000..6e2c55d --- /dev/null +++ b/data/users/mellowLion4.json @@ -0,0 +1,111 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 9.46, + "to": 10.32 + }, + "end": { + "from": 16.0, + "to": 17.49 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 41, + "cooldown": 22940 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 19, + "friends": 85, + "neutral": 81, + "enemies": 48 + } + }, + "specified": { + "percent": { + "partner": 28, + "friends": 82, + "neutral": 20, + "enemies": 88 + } + } + }, + "reacts": { + "percent": { + "partner": 84, + "friends": 22, + "neutral": 25, + "enemies": 49 + }, + "prefrerred_reaction": { + "partner": "👍", + "friends": "😆", + "neutral": "❤", + "enemies": "😆" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 0, + "formal": 57 + } + }, + "mood": { + "probability": { + "funny": 12, + "decent": 13, + "annoyed": 70 + } + }, + "type": { + "probability": { + "question": 96, + "exaggerated": 66, + "statement": 46 + } + } + }, + "note": { + "text_length": { + "flux": 8, + "average": 16 + } + }, + "relationships": { + "friends": [ + "lazyPolenta3", + "amazedBurritos9", + "awedMoth6", + "thriftyLion4", + "madRat9", + "peacefulDunbird0" + ], + "enemies": [ + "mereWigeon0", + "offendedOil9", + "cruelGatorade5", + "shySeagull7" + ], + "partner": "unhappyPonie4" + } +} \ No newline at end of file diff --git a/data/users/mellowWhiting1.json b/data/users/mellowWhiting1.json new file mode 100644 index 0000000..faa2dd1 --- /dev/null +++ b/data/users/mellowWhiting1.json @@ -0,0 +1,110 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 3.52, + "to": 4.4 + }, + "end": { + "from": 17.7, + "to": 18.27 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 25, + "cooldown": 235652 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 37, + "friends": 63, + "neutral": 20, + "enemies": 68 + } + }, + "specified": { + "percent": { + "partner": 42, + "friends": 68, + "neutral": 32, + "enemies": 47 + } + } + }, + "reacts": { + "percent": { + "partner": 26, + "friends": 0, + "neutral": 82, + "enemies": 14 + }, + "prefrerred_reaction": { + "partner": "👍", + "friends": "❤", + "neutral": "😆", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 92, + "formal": 3 + } + }, + "mood": { + "probability": { + "funny": 41, + "decent": 43, + "annoyed": 76 + } + }, + "type": { + "probability": { + "question": 2, + "exaggerated": 71, + "statement": 67 + } + } + }, + "note": { + "text_length": { + "flux": 3, + "average": 30 + } + }, + "relationships": { + "friends": [ + "curiousWasp1", + "mereWigeon0", + "wornoutDunbird2", + "truthfulPiglet9", + "kindFalcon5", + "holisticWasp1", + "awedMoth6", + "insecureMagpie4" + ], + "enemies": [ + "forsakenBobolink4" + ], + "partner": "jumpyGarlic3" + } +} \ No newline at end of file diff --git a/data/users/mercifulBasmati0.json b/data/users/mercifulBasmati0.json new file mode 100644 index 0000000..8cceb84 --- /dev/null +++ b/data/users/mercifulBasmati0.json @@ -0,0 +1,112 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 10.42, + "to": 11.3 + }, + "end": { + "from": 17.9, + "to": 18.59 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 92, + "cooldown": 127847 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 39, + "friends": 43, + "neutral": 33, + "enemies": 6 + } + }, + "specified": { + "percent": { + "partner": 29, + "friends": 16, + "neutral": 9, + "enemies": 87 + } + } + }, + "reacts": { + "percent": { + "partner": 61, + "friends": 33, + "neutral": 48, + "enemies": 53 + }, + "prefrerred_reaction": { + "partner": "👍", + "friends": "😆", + "neutral": "😆", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 54, + "formal": 84 + } + }, + "mood": { + "probability": { + "funny": 85, + "decent": 39, + "annoyed": 19 + } + }, + "type": { + "probability": { + "question": 36, + "exaggerated": 27, + "statement": 9 + } + } + }, + "note": { + "text_length": { + "flux": 6, + "average": 19 + } + }, + "relationships": { + "friends": [ + "madGnu1", + "mereWigeon0", + "ecstaticZebra7", + "unhappyPonie4", + "grumpyCheese0", + "ecstaticTruffle0", + "ashamedCaribou4", + "wornoutDunbird2" + ], + "enemies": [ + "alertBagels5", + "exactingDoughnut4", + "empathicCrackers4" + ], + "partner": "thriftyLion4" + } +} \ No newline at end of file diff --git a/data/users/mercifulBurritos9.json b/data/users/mercifulBurritos9.json new file mode 100644 index 0000000..d8faba9 --- /dev/null +++ b/data/users/mercifulBurritos9.json @@ -0,0 +1,109 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 16.13, + "to": 17.58 + }, + "end": { + "from": 18.9, + "to": 19.53 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 69, + "cooldown": 246956 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 88, + "friends": 67, + "neutral": 29, + "enemies": 56 + } + }, + "specified": { + "percent": { + "partner": 57, + "friends": 56, + "neutral": 17, + "enemies": 24 + } + } + }, + "reacts": { + "percent": { + "partner": 49, + "friends": 47, + "neutral": 24, + "enemies": 36 + }, + "prefrerred_reaction": { + "partner": "❤", + "friends": "😆", + "neutral": "😆", + "enemies": "❤" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 19, + "formal": 45 + } + }, + "mood": { + "probability": { + "funny": 54, + "decent": 1, + "annoyed": 17 + } + }, + "type": { + "probability": { + "question": 18, + "exaggerated": 0, + "statement": 7 + } + } + }, + "note": { + "text_length": { + "flux": 3, + "average": 12 + } + }, + "relationships": { + "friends": [ + "holisticWasp1", + "brainyAbalone0", + "truthfulPiglet9", + "tautSalami4", + "cruelGatorade5" + ], + "enemies": [ + "mereWigeon0", + "trustingHawk4", + "holisticBuzzard4" + ], + "partner": "shamefulBobolink5" + } +} \ No newline at end of file diff --git a/data/users/mercifulMeerkat8.json b/data/users/mercifulMeerkat8.json new file mode 100644 index 0000000..45647a4 --- /dev/null +++ b/data/users/mercifulMeerkat8.json @@ -0,0 +1,114 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 19.27, + "to": 20.4 + }, + "end": { + "from": 21.41, + "to": 22.53 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 15, + "cooldown": 175226 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 40, + "friends": 23, + "neutral": 5, + "enemies": 65 + } + }, + "specified": { + "percent": { + "partner": 96, + "friends": 78, + "neutral": 83, + "enemies": 38 + } + } + }, + "reacts": { + "percent": { + "partner": 90, + "friends": 57, + "neutral": 14, + "enemies": 25 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "😆", + "neutral": "👍", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 5, + "formal": 96 + } + }, + "mood": { + "probability": { + "funny": 11, + "decent": 18, + "annoyed": 55 + } + }, + "type": { + "probability": { + "question": 74, + "exaggerated": 31, + "statement": 87 + } + } + }, + "note": { + "text_length": { + "flux": 4, + "average": 22 + } + }, + "relationships": { + "friends": [ + "holisticBuzzard4", + "cynicalLapwing9", + "blissfulMandrill7", + "zestyMagpie9", + "annoyedBaboon6", + "lazyPolenta3", + "enviousFish3", + "innocentRuffs2", + "dreadfulCamel4", + "relievedLizard3" + ], + "enemies": [ + "cautiousMeerkat9", + "ferventMandrill3", + "insecureMagpie4" + ], + "partner": "awedMoth6" + } +} \ No newline at end of file diff --git a/data/users/mereGatorade1.json b/data/users/mereGatorade1.json new file mode 100644 index 0000000..d588fee --- /dev/null +++ b/data/users/mereGatorade1.json @@ -0,0 +1,109 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 11.15, + "to": 12.1 + }, + "end": { + "from": 16.0, + "to": 17.4 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 1, + "cooldown": 234112 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 87, + "friends": 23, + "neutral": 61, + "enemies": 25 + } + }, + "specified": { + "percent": { + "partner": 53, + "friends": 42, + "neutral": 75, + "enemies": 21 + } + } + }, + "reacts": { + "percent": { + "partner": 94, + "friends": 57, + "neutral": 96, + "enemies": 4 + }, + "prefrerred_reaction": { + "partner": "👍", + "friends": "❤", + "neutral": "❤", + "enemies": "😆" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 42, + "formal": 26 + } + }, + "mood": { + "probability": { + "funny": 13, + "decent": 60, + "annoyed": 31 + } + }, + "type": { + "probability": { + "question": 31, + "exaggerated": 94, + "statement": 27 + } + } + }, + "note": { + "text_length": { + "flux": 2, + "average": 16 + } + }, + "relationships": { + "friends": [ + "ferventMandrill3", + "selfishBoa1", + "mereWigeon0", + "artisticCockatoo8", + "jumpyGarlic3" + ], + "enemies": [ + "awedEagle3", + "bubblyHare7", + "holisticWasp1" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/mereWigeon0.json b/data/users/mereWigeon0.json new file mode 100644 index 0000000..5d852e3 --- /dev/null +++ b/data/users/mereWigeon0.json @@ -0,0 +1,118 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 2.57, + "to": 3.2 + }, + "end": { + "from": 12.54, + "to": 13.5 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 81, + "cooldown": 102528 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 6, + "friends": 64, + "neutral": 21, + "enemies": 29 + } + }, + "specified": { + "percent": { + "partner": 74, + "friends": 28, + "neutral": 18, + "enemies": 83 + } + } + }, + "reacts": { + "percent": { + "partner": 89, + "friends": 27, + "neutral": 2, + "enemies": 27 + }, + "prefrerred_reaction": { + "partner": "❤", + "friends": "❤", + "neutral": "😆", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 9, + "formal": 77 + } + }, + "mood": { + "probability": { + "funny": 33, + "decent": 93, + "annoyed": 82 + } + }, + "type": { + "probability": { + "question": 68, + "exaggerated": 95, + "statement": 48 + } + } + }, + "note": { + "text_length": { + "flux": 2, + "average": 16 + } + }, + "relationships": { + "friends": [ + "zestyMagpie9", + "pitifulBustard4", + "mellowWhiting1", + "fondIguana8", + "madRat9", + "truthfulGatorade7", + "mercifulBasmati0", + "mereGatorade1", + "peacefulCake8", + "truthfulPiglet9", + "amusedCaviar8" + ], + "enemies": [ + "mercifulBurritos9", + "cynicalLapwing9", + "mellowLion4", + "lovesickBoa8", + "thriftyLion4", + "jumpyGarlic3" + ], + "partner": "grudgingBittern7" + } +} \ No newline at end of file diff --git a/data/users/needfulJerky6.json b/data/users/needfulJerky6.json new file mode 100644 index 0000000..06261d2 --- /dev/null +++ b/data/users/needfulJerky6.json @@ -0,0 +1,107 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 16.24, + "to": 17.2 + }, + "end": { + "from": 20.37, + "to": 21.18 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 56, + "cooldown": 63307 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 15, + "friends": 4, + "neutral": 15, + "enemies": 0 + } + }, + "specified": { + "percent": { + "partner": 70, + "friends": 3, + "neutral": 86, + "enemies": 99 + } + } + }, + "reacts": { + "percent": { + "partner": 3, + "friends": 11, + "neutral": 72, + "enemies": 73 + }, + "prefrerred_reaction": { + "partner": "❤", + "friends": "👍", + "neutral": "😆", + "enemies": "😆" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 19, + "formal": 52 + } + }, + "mood": { + "probability": { + "funny": 7, + "decent": 64, + "annoyed": 37 + } + }, + "type": { + "probability": { + "question": 96, + "exaggerated": 66, + "statement": 68 + } + } + }, + "note": { + "text_length": { + "flux": 1, + "average": 20 + } + }, + "relationships": { + "friends": [ + "dreadfulCamel4", + "kindDove2", + "kindChough0" + ], + "enemies": [ + "soreCrackers8", + "awedEagle3", + "truthfulGatorade7" + ], + "partner": "truthfulPiglet9" + } +} \ No newline at end of file diff --git a/data/users/needyCamel7.json b/data/users/needyCamel7.json new file mode 100644 index 0000000..419ce32 --- /dev/null +++ b/data/users/needyCamel7.json @@ -0,0 +1,114 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 1.53, + "to": 2.49 + }, + "end": { + "from": 10.53, + "to": 11.15 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 82, + "cooldown": 106672 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 36, + "friends": 45, + "neutral": 53, + "enemies": 87 + } + }, + "specified": { + "percent": { + "partner": 6, + "friends": 3, + "neutral": 54, + "enemies": 33 + } + } + }, + "reacts": { + "percent": { + "partner": 47, + "friends": 28, + "neutral": 23, + "enemies": 34 + }, + "prefrerred_reaction": { + "partner": "❤", + "friends": "❤", + "neutral": "😆", + "enemies": "😆" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 50, + "formal": 18 + } + }, + "mood": { + "probability": { + "funny": 81, + "decent": 34, + "annoyed": 9 + } + }, + "type": { + "probability": { + "question": 47, + "exaggerated": 68, + "statement": 12 + } + } + }, + "note": { + "text_length": { + "flux": 5, + "average": 24 + } + }, + "relationships": { + "friends": [ + "chicPear7", + "drearyPoultry5", + "shamefulTomatoe2", + "kindFalcon5", + "kindDove2", + "curiousOatmeal8", + "soreCrackers8", + "amazedLemur3", + "unhappyPonie4", + "tautSalami4" + ], + "enemies": [ + "relievedLizard3", + "empathicRaisins2", + "adoringApricots5" + ], + "partner": "selfishBoa1" + } +} \ No newline at end of file diff --git a/data/users/needyMallard0.json b/data/users/needyMallard0.json new file mode 100644 index 0000000..ad037fe --- /dev/null +++ b/data/users/needyMallard0.json @@ -0,0 +1,108 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 12.18, + "to": 13.22 + }, + "end": { + "from": 14.4, + "to": 15.57 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 26, + "cooldown": 84419 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 83, + "friends": 70, + "neutral": 26, + "enemies": 42 + } + }, + "specified": { + "percent": { + "partner": 78, + "friends": 79, + "neutral": 83, + "enemies": 43 + } + } + }, + "reacts": { + "percent": { + "partner": 87, + "friends": 21, + "neutral": 23, + "enemies": 10 + }, + "prefrerred_reaction": { + "partner": "👍", + "friends": "😆", + "neutral": "👍", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 19, + "formal": 75 + } + }, + "mood": { + "probability": { + "funny": 25, + "decent": 1, + "annoyed": 52 + } + }, + "type": { + "probability": { + "question": 98, + "exaggerated": 14, + "statement": 28 + } + } + }, + "note": { + "text_length": { + "flux": 10, + "average": 25 + } + }, + "relationships": { + "friends": [ + "curiousWasp1", + "outlyingRelish0", + "awedEagle3", + "amazedGarlic3", + "shamefulTomatoe2" + ], + "enemies": [ + "trustingHawk4", + "curiousOatmeal8" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/offendedOil9.json b/data/users/offendedOil9.json new file mode 100644 index 0000000..1392af4 --- /dev/null +++ b/data/users/offendedOil9.json @@ -0,0 +1,112 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 11.21, + "to": 12.41 + }, + "end": { + "from": 13.38, + "to": 14.51 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 5, + "cooldown": 61274 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 71, + "friends": 48, + "neutral": 8, + "enemies": 68 + } + }, + "specified": { + "percent": { + "partner": 72, + "friends": 20, + "neutral": 21, + "enemies": 50 + } + } + }, + "reacts": { + "percent": { + "partner": 79, + "friends": 59, + "neutral": 48, + "enemies": 90 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "😆", + "neutral": "😆", + "enemies": "❤" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 45, + "formal": 8 + } + }, + "mood": { + "probability": { + "funny": 3, + "decent": 0, + "annoyed": 84 + } + }, + "type": { + "probability": { + "question": 62, + "exaggerated": 49, + "statement": 35 + } + } + }, + "note": { + "text_length": { + "flux": 8, + "average": 13 + } + }, + "relationships": { + "friends": [ + "outlyingRelish0", + "exactingDoughnut4", + "zestyMagpie9", + "decimalCurlew4", + "madRat9", + "selfishBoa1", + "kindFalcon5" + ], + "enemies": [ + "mellowLion4", + "kindDove2", + "tautSalami4", + "relievedLizard3" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/outlyingBuzzard2.json b/data/users/outlyingBuzzard2.json new file mode 100644 index 0000000..d7bea0a --- /dev/null +++ b/data/users/outlyingBuzzard2.json @@ -0,0 +1,111 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 17.2, + "to": 18.1 + }, + "end": { + "from": 21.5, + "to": 22.52 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 55, + "cooldown": 5111 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 60, + "friends": 1, + "neutral": 54, + "enemies": 87 + } + }, + "specified": { + "percent": { + "partner": 11, + "friends": 70, + "neutral": 53, + "enemies": 40 + } + } + }, + "reacts": { + "percent": { + "partner": 30, + "friends": 21, + "neutral": 83, + "enemies": 1 + }, + "prefrerred_reaction": { + "partner": "👍", + "friends": "👍", + "neutral": "👍", + "enemies": "😆" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 46, + "formal": 42 + } + }, + "mood": { + "probability": { + "funny": 28, + "decent": 64, + "annoyed": 55 + } + }, + "type": { + "probability": { + "question": 8, + "exaggerated": 91, + "statement": 14 + } + } + }, + "note": { + "text_length": { + "flux": 8, + "average": 16 + } + }, + "relationships": { + "friends": [ + "cynicalLapwing9", + "zestyMagpie9", + "forsakenBobolink4", + "awedMoth6", + "awedEagle3", + "amusedCaviar8", + "empathicCrackers4", + "holisticWasp1" + ], + "enemies": [ + "fondIguana8", + "pitifulBustard4" + ], + "partner": "ferventMandrill3" + } +} \ No newline at end of file diff --git a/data/users/outlyingHare6.json b/data/users/outlyingHare6.json new file mode 100644 index 0000000..5c8c685 --- /dev/null +++ b/data/users/outlyingHare6.json @@ -0,0 +1,112 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 21.24, + "to": 22.26 + }, + "end": { + "from": 23.4, + "to": 23.45 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 55, + "cooldown": 44754 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 73, + "friends": 18, + "neutral": 81, + "enemies": 6 + } + }, + "specified": { + "percent": { + "partner": 14, + "friends": 72, + "neutral": 23, + "enemies": 92 + } + } + }, + "reacts": { + "percent": { + "partner": 81, + "friends": 0, + "neutral": 73, + "enemies": 98 + }, + "prefrerred_reaction": { + "partner": "👍", + "friends": "😆", + "neutral": "👍", + "enemies": "😆" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 83, + "formal": 52 + } + }, + "mood": { + "probability": { + "funny": 92, + "decent": 9, + "annoyed": 92 + } + }, + "type": { + "probability": { + "question": 47, + "exaggerated": 75, + "statement": 38 + } + } + }, + "note": { + "text_length": { + "flux": 9, + "average": 20 + } + }, + "relationships": { + "friends": [ + "cautiousMeerkat9", + "somberCurlew4", + "truthfulPiglet9", + "kindDove2", + "enviousFish3", + "ashamedCaribou4", + "jubilantPear6", + "shamefulBobolink5" + ], + "enemies": [ + "alertBagels5", + "forsakenBobolink4", + "artisticCockatoo8" + ], + "partner": "madGnu1" + } +} \ No newline at end of file diff --git a/data/users/outlyingRelish0.json b/data/users/outlyingRelish0.json new file mode 100644 index 0000000..d37ad17 --- /dev/null +++ b/data/users/outlyingRelish0.json @@ -0,0 +1,110 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 6.33, + "to": 7.1 + }, + "end": { + "from": 18.3, + "to": 19.57 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 75, + "cooldown": 194124 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 54, + "friends": 73, + "neutral": 48, + "enemies": 67 + } + }, + "specified": { + "percent": { + "partner": 43, + "friends": 76, + "neutral": 17, + "enemies": 90 + } + } + }, + "reacts": { + "percent": { + "partner": 72, + "friends": 12, + "neutral": 87, + "enemies": 88 + }, + "prefrerred_reaction": { + "partner": "❤", + "friends": "❤", + "neutral": "❤", + "enemies": "😆" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 32, + "formal": 28 + } + }, + "mood": { + "probability": { + "funny": 26, + "decent": 40, + "annoyed": 3 + } + }, + "type": { + "probability": { + "question": 3, + "exaggerated": 14, + "statement": 82 + } + } + }, + "note": { + "text_length": { + "flux": 5, + "average": 28 + } + }, + "relationships": { + "friends": [ + "blissfulMandrill7", + "pleasedToucan4", + "innocentCordial0", + "offendedOil9", + "needyMallard0", + "unhappyPonie4", + "dreadfulLapwing5" + ], + "enemies": [ + "empathicFerret9", + "lovesickBoa8" + ], + "partner": "lazyPolenta3" + } +} \ No newline at end of file diff --git a/data/users/peacefulCake8.json b/data/users/peacefulCake8.json new file mode 100644 index 0000000..c803cbb --- /dev/null +++ b/data/users/peacefulCake8.json @@ -0,0 +1,110 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 9.23, + "to": 10.5 + }, + "end": { + "from": 14.56, + "to": 15.4 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 69, + "cooldown": 35390 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 84, + "friends": 16, + "neutral": 53, + "enemies": 79 + } + }, + "specified": { + "percent": { + "partner": 91, + "friends": 64, + "neutral": 6, + "enemies": 85 + } + } + }, + "reacts": { + "percent": { + "partner": 86, + "friends": 2, + "neutral": 3, + "enemies": 24 + }, + "prefrerred_reaction": { + "partner": "❤", + "friends": "❤", + "neutral": "❤", + "enemies": "❤" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 50, + "formal": 6 + } + }, + "mood": { + "probability": { + "funny": 52, + "decent": 85, + "annoyed": 92 + } + }, + "type": { + "probability": { + "question": 23, + "exaggerated": 26, + "statement": 94 + } + } + }, + "note": { + "text_length": { + "flux": 1, + "average": 10 + } + }, + "relationships": { + "friends": [ + "goofyMallard4", + "madGnu1", + "innocentRuffs2", + "unhappyPonie4", + "mereWigeon0", + "jubilantPear6", + "fondIguana8" + ], + "enemies": [ + "lovesickCordial7", + "finickyLollies2" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/peacefulDunbird0.json b/data/users/peacefulDunbird0.json new file mode 100644 index 0000000..558b157 --- /dev/null +++ b/data/users/peacefulDunbird0.json @@ -0,0 +1,111 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 3.22, + "to": 4.42 + }, + "end": { + "from": 14.17, + "to": 15.22 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 9, + "cooldown": 245062 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 68, + "friends": 35, + "neutral": 54, + "enemies": 52 + } + }, + "specified": { + "percent": { + "partner": 11, + "friends": 41, + "neutral": 43, + "enemies": 64 + } + } + }, + "reacts": { + "percent": { + "partner": 52, + "friends": 32, + "neutral": 62, + "enemies": 9 + }, + "prefrerred_reaction": { + "partner": "👍", + "friends": "👍", + "neutral": "👍", + "enemies": "😆" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 25, + "formal": 90 + } + }, + "mood": { + "probability": { + "funny": 86, + "decent": 31, + "annoyed": 24 + } + }, + "type": { + "probability": { + "question": 75, + "exaggerated": 35, + "statement": 53 + } + } + }, + "note": { + "text_length": { + "flux": 5, + "average": 28 + } + }, + "relationships": { + "friends": [ + "sheepishMallard3", + "bubblyHare7", + "empathicRaisins2", + "decimalCurlew4", + "mellowLion4", + "shamefulBobolink5", + "lazyPolenta3", + "wornoutDunbird2" + ], + "enemies": [ + "truthfulGatorade7", + "jumpyGarlic3" + ], + "partner": "forsakenBobolink4" + } +} \ No newline at end of file diff --git a/data/users/pitifulBustard4.json b/data/users/pitifulBustard4.json new file mode 100644 index 0000000..8f94105 --- /dev/null +++ b/data/users/pitifulBustard4.json @@ -0,0 +1,116 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 0.1, + "to": 1.51 + }, + "end": { + "from": 20.28, + "to": 21.55 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 16, + "cooldown": 183105 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 81, + "friends": 15, + "neutral": 14, + "enemies": 12 + } + }, + "specified": { + "percent": { + "partner": 56, + "friends": 56, + "neutral": 85, + "enemies": 47 + } + } + }, + "reacts": { + "percent": { + "partner": 2, + "friends": 95, + "neutral": 46, + "enemies": 93 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "❤", + "neutral": "❤", + "enemies": "😆" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 67, + "formal": 32 + } + }, + "mood": { + "probability": { + "funny": 88, + "decent": 91, + "annoyed": 2 + } + }, + "type": { + "probability": { + "question": 50, + "exaggerated": 25, + "statement": 12 + } + } + }, + "note": { + "text_length": { + "flux": 8, + "average": 28 + } + }, + "relationships": { + "friends": [ + "cruelGatorade5", + "shamefulBobolink5", + "holisticBuzzard4", + "jubilantPear6", + "exactingDoughnut4", + "empathicCrackers4", + "mereWigeon0", + "lazyPolenta3", + "drearyPoultry5", + "empathicRaisins2", + "wornoutDinosaur6", + "grudgingBittern7" + ], + "enemies": [ + "dreadfulCamel4", + "fondPretzels6", + "outlyingBuzzard2" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/pleasedToucan4.json b/data/users/pleasedToucan4.json new file mode 100644 index 0000000..3951927 --- /dev/null +++ b/data/users/pleasedToucan4.json @@ -0,0 +1,108 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 21.37, + "to": 22.49 + }, + "end": { + "from": 23.4, + "to": 23.4 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 83, + "cooldown": 249937 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 96, + "friends": 11, + "neutral": 77, + "enemies": 30 + } + }, + "specified": { + "percent": { + "partner": 33, + "friends": 40, + "neutral": 32, + "enemies": 5 + } + } + }, + "reacts": { + "percent": { + "partner": 6, + "friends": 34, + "neutral": 79, + "enemies": 89 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "❤", + "neutral": "👍", + "enemies": "😆" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 57, + "formal": 94 + } + }, + "mood": { + "probability": { + "funny": 55, + "decent": 4, + "annoyed": 77 + } + }, + "type": { + "probability": { + "question": 91, + "exaggerated": 39, + "statement": 21 + } + } + }, + "note": { + "text_length": { + "flux": 5, + "average": 8 + } + }, + "relationships": { + "friends": [ + "outlyingRelish0", + "adoringApricots5", + "lazyPolenta3", + "bubblyHare7", + "awedEagle3" + ], + "enemies": [ + "mellowCheetah7", + "blissfulMandrill7" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/relievedLizard3.json b/data/users/relievedLizard3.json new file mode 100644 index 0000000..a7a8894 --- /dev/null +++ b/data/users/relievedLizard3.json @@ -0,0 +1,110 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 7.13, + "to": 8.1 + }, + "end": { + "from": 22.38, + "to": 23.48 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 8, + "cooldown": 130155 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 81, + "friends": 64, + "neutral": 32, + "enemies": 98 + } + }, + "specified": { + "percent": { + "partner": 94, + "friends": 50, + "neutral": 30, + "enemies": 12 + } + } + }, + "reacts": { + "percent": { + "partner": 33, + "friends": 86, + "neutral": 55, + "enemies": 4 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "❤", + "neutral": "❤", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 6, + "formal": 54 + } + }, + "mood": { + "probability": { + "funny": 35, + "decent": 71, + "annoyed": 45 + } + }, + "type": { + "probability": { + "question": 12, + "exaggerated": 91, + "statement": 98 + } + } + }, + "note": { + "text_length": { + "flux": 10, + "average": 14 + } + }, + "relationships": { + "friends": [ + "decimalCurlew4", + "kindDove2", + "mercifulMeerkat8", + "somberCurlew4", + "cruelGatorade5" + ], + "enemies": [ + "needyCamel7", + "empathicRaisins2", + "offendedOil9", + "grudgingBittern7" + ], + "partner": "forsakenLeopard8" + } +} \ No newline at end of file diff --git a/data/users/selfishBoa1.json b/data/users/selfishBoa1.json new file mode 100644 index 0000000..447642f --- /dev/null +++ b/data/users/selfishBoa1.json @@ -0,0 +1,111 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 3.14, + "to": 4.3 + }, + "end": { + "from": 16.27, + "to": 17.22 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 82, + "cooldown": 161884 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 50, + "friends": 71, + "neutral": 95, + "enemies": 33 + } + }, + "specified": { + "percent": { + "partner": 56, + "friends": 49, + "neutral": 7, + "enemies": 39 + } + } + }, + "reacts": { + "percent": { + "partner": 71, + "friends": 1, + "neutral": 88, + "enemies": 75 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "😆", + "neutral": "❤", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 10, + "formal": 0 + } + }, + "mood": { + "probability": { + "funny": 80, + "decent": 30, + "annoyed": 30 + } + }, + "type": { + "probability": { + "question": 8, + "exaggerated": 36, + "statement": 52 + } + } + }, + "note": { + "text_length": { + "flux": 9, + "average": 21 + } + }, + "relationships": { + "friends": [ + "somberCurlew4", + "mereGatorade1", + "offendedOil9", + "shySeagull7" + ], + "enemies": [ + "dreadfulCamel4", + "brainyAbalone0", + "madRat9", + "cruelGatorade5", + "drearyPoultry5", + "shamefulBobolink5" + ], + "partner": "needyCamel7" + } +} \ No newline at end of file diff --git a/data/users/shamefulBobolink5.json b/data/users/shamefulBobolink5.json new file mode 100644 index 0000000..7691bf3 --- /dev/null +++ b/data/users/shamefulBobolink5.json @@ -0,0 +1,113 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 4.56, + "to": 5.3 + }, + "end": { + "from": 23.1, + "to": 23.48 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 72, + "cooldown": 193881 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 10, + "friends": 62, + "neutral": 59, + "enemies": 22 + } + }, + "specified": { + "percent": { + "partner": 91, + "friends": 23, + "neutral": 8, + "enemies": 94 + } + } + }, + "reacts": { + "percent": { + "partner": 8, + "friends": 6, + "neutral": 95, + "enemies": 38 + }, + "prefrerred_reaction": { + "partner": "❤", + "friends": "❤", + "neutral": "😆", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 16, + "formal": 87 + } + }, + "mood": { + "probability": { + "funny": 4, + "decent": 5, + "annoyed": 50 + } + }, + "type": { + "probability": { + "question": 83, + "exaggerated": 12, + "statement": 99 + } + } + }, + "note": { + "text_length": { + "flux": 5, + "average": 30 + } + }, + "relationships": { + "friends": [ + "pitifulBustard4", + "joyfulGatorade6", + "lazyPolenta3", + "truthfulPiglet9", + "forsakenBobolink4", + "outlyingHare6", + "peacefulDunbird0", + "forsakenLeopard8", + "empathicFerret9", + "wornoutDunbird2" + ], + "enemies": [ + "kindFalcon5", + "selfishBoa1" + ], + "partner": "mercifulBurritos9" + } +} \ No newline at end of file diff --git a/data/users/shamefulTomatoe2.json b/data/users/shamefulTomatoe2.json new file mode 100644 index 0000000..9f580f6 --- /dev/null +++ b/data/users/shamefulTomatoe2.json @@ -0,0 +1,111 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 0.17, + "to": 1.28 + }, + "end": { + "from": 3.35, + "to": 4.11 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 41, + "cooldown": 194621 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 3, + "friends": 18, + "neutral": 72, + "enemies": 87 + } + }, + "specified": { + "percent": { + "partner": 43, + "friends": 13, + "neutral": 69, + "enemies": 99 + } + } + }, + "reacts": { + "percent": { + "partner": 17, + "friends": 66, + "neutral": 50, + "enemies": 54 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "❤", + "neutral": "👍", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 31, + "formal": 63 + } + }, + "mood": { + "probability": { + "funny": 75, + "decent": 4, + "annoyed": 89 + } + }, + "type": { + "probability": { + "question": 87, + "exaggerated": 44, + "statement": 45 + } + } + }, + "note": { + "text_length": { + "flux": 4, + "average": 28 + } + }, + "relationships": { + "friends": [ + "zestyMagpie9", + "needyCamel7", + "truthfulGatorade7", + "needyMallard0", + "dreadfulCaribou1", + "kindChough0" + ], + "enemies": [ + "amazedBurritos9", + "empathicFerret9", + "curiousWasp1", + "empathicCrackers4" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/sheepishMallard3.json b/data/users/sheepishMallard3.json new file mode 100644 index 0000000..59ab11a --- /dev/null +++ b/data/users/sheepishMallard3.json @@ -0,0 +1,108 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 5.43, + "to": 6.0 + }, + "end": { + "from": 9.57, + "to": 10.46 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 80, + "cooldown": 106959 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 11, + "friends": 6, + "neutral": 66, + "enemies": 53 + } + }, + "specified": { + "percent": { + "partner": 32, + "friends": 29, + "neutral": 22, + "enemies": 4 + } + } + }, + "reacts": { + "percent": { + "partner": 73, + "friends": 74, + "neutral": 19, + "enemies": 22 + }, + "prefrerred_reaction": { + "partner": "❤", + "friends": "😆", + "neutral": "😆", + "enemies": "❤" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 33, + "formal": 23 + } + }, + "mood": { + "probability": { + "funny": 71, + "decent": 68, + "annoyed": 54 + } + }, + "type": { + "probability": { + "question": 45, + "exaggerated": 62, + "statement": 17 + } + } + }, + "note": { + "text_length": { + "flux": 9, + "average": 17 + } + }, + "relationships": { + "friends": [ + "truthfulPiglet9", + "wornoutDinosaur6", + "peacefulDunbird0" + ], + "enemies": [ + "mellowCheetah7", + "dreadfulCamel4", + "kindFalcon5", + "amusedCaviar8" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/shySeagull7.json b/data/users/shySeagull7.json new file mode 100644 index 0000000..145987b --- /dev/null +++ b/data/users/shySeagull7.json @@ -0,0 +1,113 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 0.46, + "to": 1.56 + }, + "end": { + "from": 17.21, + "to": 18.51 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 42, + "cooldown": 207109 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 58, + "friends": 44, + "neutral": 24, + "enemies": 97 + } + }, + "specified": { + "percent": { + "partner": 0, + "friends": 29, + "neutral": 28, + "enemies": 15 + } + } + }, + "reacts": { + "percent": { + "partner": 24, + "friends": 53, + "neutral": 1, + "enemies": 45 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "😆", + "neutral": "❤", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 50, + "formal": 16 + } + }, + "mood": { + "probability": { + "funny": 26, + "decent": 35, + "annoyed": 81 + } + }, + "type": { + "probability": { + "question": 91, + "exaggerated": 88, + "statement": 15 + } + } + }, + "note": { + "text_length": { + "flux": 9, + "average": 11 + } + }, + "relationships": { + "friends": [ + "madGnu1", + "jubilantPear6", + "selfishBoa1", + "exactingDoughnut4", + "zestyMagpie9", + "ashamedCaribou4", + "ecstaticTruffle0", + "drearyPoultry5" + ], + "enemies": [ + "alertBagels5", + "mellowLion4", + "finickyLollies2", + "awedEagle3" + ], + "partner": "annoyedBaboon6" + } +} \ No newline at end of file diff --git a/data/users/somberCurlew4.json b/data/users/somberCurlew4.json new file mode 100644 index 0000000..ba42e51 --- /dev/null +++ b/data/users/somberCurlew4.json @@ -0,0 +1,112 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 11.41, + "to": 12.8 + }, + "end": { + "from": 13.51, + "to": 14.41 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 2, + "cooldown": 65860 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 71, + "friends": 30, + "neutral": 2, + "enemies": 24 + } + }, + "specified": { + "percent": { + "partner": 79, + "friends": 30, + "neutral": 6, + "enemies": 59 + } + } + }, + "reacts": { + "percent": { + "partner": 49, + "friends": 24, + "neutral": 28, + "enemies": 65 + }, + "prefrerred_reaction": { + "partner": "👍", + "friends": "❤", + "neutral": "👍", + "enemies": "❤" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 10, + "formal": 46 + } + }, + "mood": { + "probability": { + "funny": 65, + "decent": 92, + "annoyed": 98 + } + }, + "type": { + "probability": { + "question": 66, + "exaggerated": 27, + "statement": 55 + } + } + }, + "note": { + "text_length": { + "flux": 0, + "average": 19 + } + }, + "relationships": { + "friends": [ + "cautiousMeerkat9", + "joyfulGatorade6", + "alertBagels5", + "outlyingHare6", + "jubilantPear6", + "trustingHawk4", + "innocentCordial0", + "amazedBurritos9", + "truthfulGatorade7", + "ardentMandrill7", + "selfishBoa1", + "relievedLizard3" + ], + "enemies": [], + "partner": "kindChough0" + } +} \ No newline at end of file diff --git a/data/users/soreCrackers8.json b/data/users/soreCrackers8.json new file mode 100644 index 0000000..e544110 --- /dev/null +++ b/data/users/soreCrackers8.json @@ -0,0 +1,110 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 4.29, + "to": 5.47 + }, + "end": { + "from": 22.14, + "to": 23.24 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 86, + "cooldown": 134657 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 98, + "friends": 45, + "neutral": 86, + "enemies": 85 + } + }, + "specified": { + "percent": { + "partner": 83, + "friends": 68, + "neutral": 91, + "enemies": 71 + } + } + }, + "reacts": { + "percent": { + "partner": 1, + "friends": 26, + "neutral": 66, + "enemies": 45 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "❤", + "neutral": "❤", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 31, + "formal": 23 + } + }, + "mood": { + "probability": { + "funny": 32, + "decent": 11, + "annoyed": 76 + } + }, + "type": { + "probability": { + "question": 26, + "exaggerated": 67, + "statement": 96 + } + } + }, + "note": { + "text_length": { + "flux": 7, + "average": 14 + } + }, + "relationships": { + "friends": [ + "forsakenBobolink4", + "madGnu1", + "empathicFerret9", + "needyCamel7", + "amazedGarlic3", + "ecstaticTruffle0", + "amazedLemur3", + "kindFalcon5" + ], + "enemies": [ + "needfulJerky6" + ], + "partner": "finickyLollies2" + } +} \ No newline at end of file diff --git a/data/users/tautSalami4.json b/data/users/tautSalami4.json new file mode 100644 index 0000000..61ea84a --- /dev/null +++ b/data/users/tautSalami4.json @@ -0,0 +1,111 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 8.3, + "to": 9.28 + }, + "end": { + "from": 17.44, + "to": 18.57 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 9, + "cooldown": 62597 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 14, + "friends": 1, + "neutral": 77, + "enemies": 4 + } + }, + "specified": { + "percent": { + "partner": 53, + "friends": 9, + "neutral": 66, + "enemies": 34 + } + } + }, + "reacts": { + "percent": { + "partner": 71, + "friends": 9, + "neutral": 8, + "enemies": 72 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "😆", + "neutral": "👍", + "enemies": "❤" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 99, + "formal": 1 + } + }, + "mood": { + "probability": { + "funny": 81, + "decent": 49, + "annoyed": 35 + } + }, + "type": { + "probability": { + "question": 15, + "exaggerated": 90, + "statement": 17 + } + } + }, + "note": { + "text_length": { + "flux": 10, + "average": 8 + } + }, + "relationships": { + "friends": [ + "trustingHawk4", + "dreadfulCaribou1", + "mercifulBurritos9", + "ashamedCaribou4", + "mellowCheetah7", + "holisticBuzzard4", + "needyCamel7", + "kindChough0" + ], + "enemies": [ + "offendedOil9", + "empathicFerret9" + ], + "partner": "cruelGatorade5" + } +} \ No newline at end of file diff --git a/data/users/thriftyLion4.json b/data/users/thriftyLion4.json new file mode 100644 index 0000000..9cb1931 --- /dev/null +++ b/data/users/thriftyLion4.json @@ -0,0 +1,108 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 7.33, + "to": 8.36 + }, + "end": { + "from": 12.36, + "to": 13.15 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 1, + "cooldown": 66623 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 1, + "friends": 3, + "neutral": 41, + "enemies": 13 + } + }, + "specified": { + "percent": { + "partner": 98, + "friends": 20, + "neutral": 99, + "enemies": 20 + } + } + }, + "reacts": { + "percent": { + "partner": 12, + "friends": 62, + "neutral": 46, + "enemies": 37 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "❤", + "neutral": "😆", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 77, + "formal": 66 + } + }, + "mood": { + "probability": { + "funny": 57, + "decent": 52, + "annoyed": 83 + } + }, + "type": { + "probability": { + "question": 49, + "exaggerated": 40, + "statement": 2 + } + } + }, + "note": { + "text_length": { + "flux": 7, + "average": 9 + } + }, + "relationships": { + "friends": [ + "mellowLion4", + "dreadfulCamel4", + "empathicRaisins2", + "awedEagle3" + ], + "enemies": [ + "zestyMagpie9", + "amusedCaviar8", + "mereWigeon0" + ], + "partner": "mercifulBasmati0" + } +} \ No newline at end of file diff --git a/data/users/trustingHawk4.json b/data/users/trustingHawk4.json new file mode 100644 index 0000000..a4e5662 --- /dev/null +++ b/data/users/trustingHawk4.json @@ -0,0 +1,112 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 14.47, + "to": 15.53 + }, + "end": { + "from": 19.44, + "to": 20.6 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 2, + "cooldown": 155027 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 61, + "friends": 36, + "neutral": 1, + "enemies": 8 + } + }, + "specified": { + "percent": { + "partner": 20, + "friends": 74, + "neutral": 71, + "enemies": 64 + } + } + }, + "reacts": { + "percent": { + "partner": 24, + "friends": 44, + "neutral": 5, + "enemies": 26 + }, + "prefrerred_reaction": { + "partner": "❤", + "friends": "😆", + "neutral": "😆", + "enemies": "😆" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 39, + "formal": 71 + } + }, + "mood": { + "probability": { + "funny": 22, + "decent": 85, + "annoyed": 83 + } + }, + "type": { + "probability": { + "question": 31, + "exaggerated": 68, + "statement": 50 + } + } + }, + "note": { + "text_length": { + "flux": 10, + "average": 21 + } + }, + "relationships": { + "friends": [ + "awedMoth6", + "tautSalami4", + "somberCurlew4" + ], + "enemies": [ + "ecstaticZebra7", + "chicPear7", + "kindFalcon5", + "annoyedBaboon6", + "needyMallard0", + "mercifulBurritos9", + "ashamedCaribou4", + "innocentCordial0" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/truthfulGatorade7.json b/data/users/truthfulGatorade7.json new file mode 100644 index 0000000..1b806e8 --- /dev/null +++ b/data/users/truthfulGatorade7.json @@ -0,0 +1,113 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 13.54, + "to": 14.14 + }, + "end": { + "from": 23.6, + "to": 23.8 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 50, + "cooldown": 28673 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 35, + "friends": 57, + "neutral": 3, + "enemies": 79 + } + }, + "specified": { + "percent": { + "partner": 11, + "friends": 25, + "neutral": 22, + "enemies": 33 + } + } + }, + "reacts": { + "percent": { + "partner": 77, + "friends": 12, + "neutral": 84, + "enemies": 45 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "❤", + "neutral": "😆", + "enemies": "❤" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 38, + "formal": 75 + } + }, + "mood": { + "probability": { + "funny": 41, + "decent": 24, + "annoyed": 73 + } + }, + "type": { + "probability": { + "question": 22, + "exaggerated": 46, + "statement": 36 + } + } + }, + "note": { + "text_length": { + "flux": 3, + "average": 21 + } + }, + "relationships": { + "friends": [ + "truthfulPiglet9", + "boastfulDove5", + "mereWigeon0", + "somberCurlew4", + "madRat9", + "madGnu1", + "shamefulTomatoe2", + "dreadfulCaribou1", + "affectedThrushe1" + ], + "enemies": [ + "cynicalLapwing9", + "needfulJerky6", + "peacefulDunbird0" + ], + "partner": null + } +} \ No newline at end of file diff --git a/data/users/truthfulPiglet9.json b/data/users/truthfulPiglet9.json new file mode 100644 index 0000000..39530b9 --- /dev/null +++ b/data/users/truthfulPiglet9.json @@ -0,0 +1,112 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 11.15, + "to": 12.38 + }, + "end": { + "from": 21.39, + "to": 22.24 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 86, + "cooldown": 47780 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 96, + "friends": 41, + "neutral": 2, + "enemies": 28 + } + }, + "specified": { + "percent": { + "partner": 79, + "friends": 95, + "neutral": 56, + "enemies": 24 + } + } + }, + "reacts": { + "percent": { + "partner": 82, + "friends": 18, + "neutral": 52, + "enemies": 26 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "😆", + "neutral": "😆", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 37, + "formal": 87 + } + }, + "mood": { + "probability": { + "funny": 84, + "decent": 59, + "annoyed": 27 + } + }, + "type": { + "probability": { + "question": 1, + "exaggerated": 44, + "statement": 2 + } + } + }, + "note": { + "text_length": { + "flux": 8, + "average": 25 + } + }, + "relationships": { + "friends": [ + "grumpyCheese0", + "outlyingHare6", + "truthfulGatorade7", + "mellowWhiting1", + "mercifulBurritos9", + "curiousOatmeal8", + "wornoutDinosaur6", + "sheepishMallard3", + "mereWigeon0", + "awedEagle3", + "lovesickBoa8", + "shamefulBobolink5" + ], + "enemies": [], + "partner": "needfulJerky6" + } +} \ No newline at end of file diff --git a/data/users/unhappyPonie4.json b/data/users/unhappyPonie4.json new file mode 100644 index 0000000..a65a759 --- /dev/null +++ b/data/users/unhappyPonie4.json @@ -0,0 +1,113 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 18.47, + "to": 19.12 + }, + "end": { + "from": 22.16, + "to": 23.58 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 27, + "cooldown": 248106 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 96, + "friends": 47, + "neutral": 15, + "enemies": 40 + } + }, + "specified": { + "percent": { + "partner": 77, + "friends": 42, + "neutral": 76, + "enemies": 86 + } + } + }, + "reacts": { + "percent": { + "partner": 43, + "friends": 10, + "neutral": 33, + "enemies": 10 + }, + "prefrerred_reaction": { + "partner": "❤", + "friends": "❤", + "neutral": "😆", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 18, + "formal": 8 + } + }, + "mood": { + "probability": { + "funny": 4, + "decent": 68, + "annoyed": 92 + } + }, + "type": { + "probability": { + "question": 58, + "exaggerated": 54, + "statement": 99 + } + } + }, + "note": { + "text_length": { + "flux": 9, + "average": 20 + } + }, + "relationships": { + "friends": [ + "madRat9", + "cynicalLapwing9", + "mercifulBasmati0", + "peacefulCake8", + "outlyingRelish0", + "drearyPoultry5", + "fondIguana8", + "needyCamel7", + "adoringApricots5", + "bubblyHare7" + ], + "enemies": [ + "chicPear7", + "forsakenLeopard8" + ], + "partner": "mellowLion4" + } +} \ No newline at end of file diff --git a/data/users/wornoutDinosaur6.json b/data/users/wornoutDinosaur6.json new file mode 100644 index 0000000..c483bac --- /dev/null +++ b/data/users/wornoutDinosaur6.json @@ -0,0 +1,110 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 2.34, + "to": 3.39 + }, + "end": { + "from": 17.4, + "to": 18.35 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 40, + "cooldown": 58795 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 13, + "friends": 56, + "neutral": 63, + "enemies": 25 + } + }, + "specified": { + "percent": { + "partner": 20, + "friends": 91, + "neutral": 2, + "enemies": 2 + } + } + }, + "reacts": { + "percent": { + "partner": 52, + "friends": 77, + "neutral": 22, + "enemies": 12 + }, + "prefrerred_reaction": { + "partner": "😆", + "friends": "👍", + "neutral": "😆", + "enemies": "👍" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 28, + "formal": 0 + } + }, + "mood": { + "probability": { + "funny": 74, + "decent": 64, + "annoyed": 42 + } + }, + "type": { + "probability": { + "question": 73, + "exaggerated": 5, + "statement": 0 + } + } + }, + "note": { + "text_length": { + "flux": 0, + "average": 9 + } + }, + "relationships": { + "friends": [ + "lovesickCordial7", + "dreadfulCamel4", + "truthfulPiglet9", + "fondPretzels6", + "pitifulBustard4", + "dreadfulCaribou1", + "sheepishMallard3", + "amazedFish7" + ], + "enemies": [ + "ferventMandrill3" + ], + "partner": "kindDove2" + } +} \ No newline at end of file diff --git a/data/users/wornoutDunbird2.json b/data/users/wornoutDunbird2.json new file mode 100644 index 0000000..53123cd --- /dev/null +++ b/data/users/wornoutDunbird2.json @@ -0,0 +1,109 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 17.23, + "to": 18.46 + }, + "end": { + "from": 23.4, + "to": 23.38 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 72, + "cooldown": 39621 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 100, + "friends": 92, + "neutral": 34, + "enemies": 49 + } + }, + "specified": { + "percent": { + "partner": 96, + "friends": 68, + "neutral": 82, + "enemies": 89 + } + } + }, + "reacts": { + "percent": { + "partner": 83, + "friends": 9, + "neutral": 46, + "enemies": 27 + }, + "prefrerred_reaction": { + "partner": "❤", + "friends": "😆", + "neutral": "😆", + "enemies": "😆" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 75, + "formal": 23 + } + }, + "mood": { + "probability": { + "funny": 74, + "decent": 99, + "annoyed": 15 + } + }, + "type": { + "probability": { + "question": 11, + "exaggerated": 25, + "statement": 45 + } + } + }, + "note": { + "text_length": { + "flux": 2, + "average": 27 + } + }, + "relationships": { + "friends": [ + "annoyedBaboon6", + "enviousFish3", + "ferventMandrill3", + "mellowWhiting1", + "peacefulDunbird0", + "shamefulBobolink5", + "mercifulBasmati0" + ], + "enemies": [ + "goofyMallard4" + ], + "partner": "exactingDoughnut4" + } +} \ No newline at end of file diff --git a/data/users/zestyMagpie9.json b/data/users/zestyMagpie9.json new file mode 100644 index 0000000..d818e40 --- /dev/null +++ b/data/users/zestyMagpie9.json @@ -0,0 +1,113 @@ +{ + "key": "", + "online": { + "intervals": [ + { + "start": { + "from": 17.26, + "to": 18.7 + }, + "end": { + "from": 23.1, + "to": 23.59 + } + } + ] + }, + "actions": { + "posts": { + "public": { + "percent": 82, + "cooldown": 77514 + }, + "specified": { + "percent": { + "partner": 0, + "friends": 0, + "neutral": 0, + "enemies": 0 + }, + "cooldown": 0 + } + }, + "replies": { + "public": { + "percent": { + "partner": 86, + "friends": 9, + "neutral": 10, + "enemies": 9 + } + }, + "specified": { + "percent": { + "partner": 87, + "friends": 78, + "neutral": 71, + "enemies": 74 + } + } + }, + "reacts": { + "percent": { + "partner": 83, + "friends": 52, + "neutral": 77, + "enemies": 8 + }, + "prefrerred_reaction": { + "partner": "👍", + "friends": "❤", + "neutral": "😆", + "enemies": "😆" + } + } + }, + "personality": { + "tone": { + "probability": { + "informal": 45, + "formal": 47 + } + }, + "mood": { + "probability": { + "funny": 88, + "decent": 98, + "annoyed": 51 + } + }, + "type": { + "probability": { + "question": 75, + "exaggerated": 66, + "statement": 62 + } + } + }, + "note": { + "text_length": { + "flux": 10, + "average": 23 + } + }, + "relationships": { + "friends": [ + "forsakenBobolink4", + "shamefulTomatoe2", + "mercifulMeerkat8", + "outlyingBuzzard2", + "ecstaticTruffle0", + "mereWigeon0", + "offendedOil9", + "lazyPolenta3", + "fondPretzels6", + "shySeagull7", + "innocentCordial0" + ], + "enemies": [ + "thriftyLion4" + ], + "partner": null + } +} \ No newline at end of file