diff --git a/.gitattributes b/.gitattributes
index 6f9fd663e04e981c2a06cc0a7502ac2d818a93eb..0ca73b5096b2af444130555316d903aa82cc8d4a 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -35,3 +35,7 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
*tfevents* filter=lfs diff=lfs merge=lfs -text
chroma_db/chroma.sqlite3 filter=lfs diff=lfs merge=lfs -text
milvus_llamaindex.db filter=lfs diff=lfs merge=lfs -text
+data/csv/t_sur_media_sync_es.csv filter=lfs diff=lfs merge=lfs -text
+data/csv/t_sur_models_info.csv filter=lfs diff=lfs merge=lfs -text
+data/pdf/alice.pdf filter=lfs diff=lfs merge=lfs -text
+tests/chroma_db/chroma.sqlite3 filter=lfs diff=lfs merge=lfs -text
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000000000000000000000000000000000000..70e0e55b5e73946d9889990a10f9c6e910f2b8aa
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+**/__pycache__
+.env
\ No newline at end of file
diff --git a/None/testing_chat_store.json b/None/testing_chat_store.json
new file mode 100644
index 0000000000000000000000000000000000000000..fe051dc55822885ea2fd6690d0819a959dfd69da
--- /dev/null
+++ b/None/testing_chat_store.json
@@ -0,0 +1 @@
+{"store": {}, "class_name": "SimpleChatStore"}
\ No newline at end of file
diff --git a/README.md b/README.md
index 31bca70e33fd4e7e5d2e7b8ba5f08fc951743b74..c04018eaa8563d95005f3ac1829c9f246039f5d1 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
---
title: SexBot
-app_file: roleplay_gradio.py
+app_file: ./tests/roleplay_gradio.py
sdk: gradio
sdk_version: 5.10.0
---
diff --git a/api.py b/api.py
new file mode 100644
index 0000000000000000000000000000000000000000..63d0c575a6287153a811a8b81fed82fc6e3acc09
--- /dev/null
+++ b/api.py
@@ -0,0 +1,27 @@
+from fastapi import FastAPI
+from routers.sql_chat import sql_chat_router, chat_store_manager, roleplay_router
+from dotenv import load_dotenv
+import uvicorn, os
+
+BASE=os.path.dirname(os.path.abspath(__file__))
+load_dotenv()
+
+app = FastAPI(
+ title="chat",
+ description="chatbot",
+)
+
+app.include_router(sql_chat_router)
+app.include_router(chat_store_manager)
+app.include_router(roleplay_router)
+
+if __name__ == "__main__":
+ uvicorn.run(
+ "api:app",
+ host="0.0.0.0",
+ port=8000,
+ loop="asyncio",
+ workers=8,
+ timeout_keep_alive=60,
+ access_log=True
+ )
diff --git a/data/config.yaml b/data/config.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..6f5078ee0492e88da34ec20ef4012a28a1794fb7
--- /dev/null
+++ b/data/config.yaml
@@ -0,0 +1,26 @@
+PDF_FILES:
+- /data1/home/purui/projects/chatbot/data/pdf/alice.pdf
+PDF_PATH: /data1/home/purui/projects/chatbot/data/pdf
+ROOT: /data1/home/purui/projects/chatbot/data
+TXT_FILES:
+- /data1/home/purui/projects/chatbot/data/txt/Female orgasms_ Different types &
+ how to climax.txt
+- /data1/home/purui/projects/chatbot/data/txt/Orgasm & Female Orgasm_ How many types
+ of orgasm are there_.txt
+- /data1/home/purui/projects/chatbot/data/txt/Blowjobs_ What Are They and How to Give
+ One.txt
+- /data1/home/purui/projects/chatbot/data/txt/Female Orgasm_ Types, Feeling, and How
+ to Have One.txt
+- /data1/home/purui/projects/chatbot/data/txt/Oral Sex_ 36 Tips, Techniques, Positions
+ for the Vagina, Penis, Anus.txt
+- /data1/home/purui/projects/chatbot/data/txt/11 Steps To Make A Woman Orgasm (The
+ Basics & Beyond).txt
+- /data1/home/purui/projects/chatbot/data/txt/Female orgasm_ Everything you need to
+ know.txt
+- /data1/home/purui/projects/chatbot/data/txt/27 Orgasmic Blow Job Tips To Make Your
+ Man Explode!.txt
+- "/data1/home/purui/projects/chatbot/data/txt/How to Give a Blow Job \u2014 42 Blow\
+ \ Job Tips From Experts.txt"
+- /data1/home/purui/projects/chatbot/data/txt/How to Make a Woman Orgasm, According
+ to Research.txt
+TXT_PATH: /data1/home/purui/projects/chatbot/data/txt
diff --git a/data/csv/t_sur_media_sync_es.csv b/data/csv/t_sur_media_sync_es.csv
new file mode 100644
index 0000000000000000000000000000000000000000..eae84c8eb009b72492944d7671b98d9b0e94959e
--- /dev/null
+++ b/data/csv/t_sur_media_sync_es.csv
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ec17a0270fe2f06ec0b6d3d77a86dbf9db17347f0c1e0a7ede373893736feec4
+size 228215687
diff --git a/data/csv/t_sur_models_info.csv b/data/csv/t_sur_models_info.csv
new file mode 100644
index 0000000000000000000000000000000000000000..0f3f2c4428842b596cfb44a18c8a8103931d148f
--- /dev/null
+++ b/data/csv/t_sur_models_info.csv
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0402bb15d536fa47a4630c504082f068a86b83e81ccba799de76e98a48595c37
+size 100011589
diff --git a/data/pdf/alice.pdf b/data/pdf/alice.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..50805fdd3d83be49bd6201374aabda66f180f2dd
--- /dev/null
+++ b/data/pdf/alice.pdf
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:31ffbb580c5c2d8ad6137f69346038e3a9e410961872390d7e50ac58ec120bb0
+size 175735
diff --git a/data/txt/blog/11 Steps To Make A Woman Orgasm (The Basics & Beyond).txt b/data/txt/blog/11 Steps To Make A Woman Orgasm (The Basics & Beyond).txt
new file mode 100644
index 0000000000000000000000000000000000000000..03c0703a6efa7e64119063764b024924411b42a5
--- /dev/null
+++ b/data/txt/blog/11 Steps To Make A Woman Orgasm (The Basics & Beyond).txt
@@ -0,0 +1,4 @@
+11 Steps To Make A Woman Orgasm (The Basics & Beyond)
+Https, Www.Facebook.Com Morganmandriotawriter
+None
+Hartzell likes to refer to sex toys as the "hearing aid for the clitoris" because vibrators can help speed the process along and provide more intense orgasms that manual or oral stimulation may not offer. Experiment with different types of pleasure products and sensations before, during, or after penetrative sex to stimulate the clitoris and inspire maximum pleasure (and perhaps even multiple orgasms).
\ No newline at end of file
diff --git a/data/txt/blog/Blowjobs_ What Are They and How to Give One.txt b/data/txt/blog/Blowjobs_ What Are They and How to Give One.txt
new file mode 100644
index 0000000000000000000000000000000000000000..89b14dea7a2a69f56f7909a1ce5691d2a51bacd6
--- /dev/null
+++ b/data/txt/blog/Blowjobs_ What Are They and How to Give One.txt
@@ -0,0 +1,20 @@
+Blowjobs: What Are They and How to Give One
+
+None
+What Is a Blowjob?
+
+Oral sex is the act of stimulating a partner’s genitals or anus with your mouth and tongue. A blowjob, sometimes called fellatio, is a type of oral sex in which a person stimulates their partner’s penis with their mouth and tongue. It can include licking, sucking, kissing, or any other activity that involves the mouth.
+
+A blowjob, also known as fellatio, is when someone uses their mouth to stimulate their partner's penis. (Illustration: WebMD)
+
+Blowjobs, along with other types of oral sex, are often part of foreplay before vaginal or anal penetration. But you can give or receive a blowjob on its own, or during or after intercourse.
+
+Research suggests that most people have oral sex before their first experience with vaginal or anal penetration.
+
+Who can give and receive blowjobs?
+
+Any consenting adult can give a blowjob, whatever their gender or sexual orientation. Any consenting adult with a penis can receive a blowjob.
+
+What is it like to give or receive a blowjob?
+
+Sensations could range from discomfort to extreme pleasure, so focus on what feels good for both partners while you’re discovering oral sex. Keep in mind that each person's anatomy, smell, and taste are different, and so is what they find pleasurable. If you feel uncomfortable at any point, don’t be afraid to stop or change what you're doing, or to ask your partner to do so.
\ No newline at end of file
diff --git a/data/txt/blog/Female Orgasm_ Types, Feeling, and How to Have One.txt b/data/txt/blog/Female Orgasm_ Types, Feeling, and How to Have One.txt
new file mode 100644
index 0000000000000000000000000000000000000000..ff13b6d89346696d40373f2ff338ea23a221eb42
--- /dev/null
+++ b/data/txt/blog/Female Orgasm_ Types, Feeling, and How to Have One.txt
@@ -0,0 +1,40 @@
+Female Orgasm: Types, Feeling, and How to Have One
+Adrienne Santos-Longhurst, How We Reviewed This Article
+None
+You can orgasm from stimulation to the clitoris, vagina, or cervix — or some combination of the three. You may also be able to orgasm from stimulating other areas of the body as well. “Female orgasm” is an all-encompassing term for any type of orgasm related to vulva and vagina. It could be clitoral, vaginal, even cervical — or a mix of all three. That said, your genitalia isn’t your only option when it comes to reaching the big O. Read on for tips on where to touch, how to move, why it works, and more.
+
+Clitoral orgasm Direct or indirect stimulation of the clitoris can lead to a clitoral orgasm. When you get your rub on just right, you’ll feel the sensation build in your pleasure bud and peak. Try this Your fingers, palm, or a small vibrator can all help you have a clitoral orgasm. Make sure your clitoris is wet and begin gently rubbing in an up-and-down, circular, or side-to-side motion. As it begins to feel good, apply faster and harder pressure in a repetitive motion. When you feel your pleasure intensify, apply even more pressure to the motion to take yourself over the edge.
+
+Vaginal orgasm Although few people can climax with vaginal stimulation alone, it sure can be fun trying! If you’re able to make it happen, prepare for an intense climax that can be felt deep inside your body. The front vaginal wall is also home to the anterior fornix or A-spot. Older research suggests that stimulating the A-spot can result in intense lubrication and even orgasm. Try this Fingers or a sex toy should do the trick. Since the pleasure comes from the vaginal walls, you’ll want to experiment with width. Do this by inserting an extra finger or two into the vagina, or try a dildo with some extra girth. To stimulate the A-spot, focus the pressure on the front wall of the vagina while sliding your fingers or toy in and out. Stick with the pressure and motion that feels the best, and let the pleasure mount.
+
+Cervical orgasm Cervical stimulation has the potential to lead to a full-body orgasm that can send waves of tingly pleasure from your head to your toes. And this is an orgasm that can keep on giving, lasting quite a while for some. Try this Being relaxed and aroused is key to cervical orgasm. Use your imagination, rub your clitoris, or let a partner work some manual magic. Your cervix is the lower end of your uterus, so reaching it means going in deep. The doggy-style position allows for deep penetration, so try being on all fours with a penetrative toy or partner. Start off slow, gradually working your way deeper until you find a depth that feels good, and keep at it so the pleasure can build.
+
+Combination or combined orgasm A combo orgasm may happen if you pleasure your vagina and clitoris simultaneously. The result: a powerful climax that you can feel inside and out. Try this Use both your hands to double your pleasure, or combine fingers and sex toys. Rabbit vibrators, for example, can stimulate the clitoris and vagina at the same time and are perfect for mastering the combo orgasm. Use parallel rhythms while playing with your clitoris and vagina, or switch it up with fast clitoral action and slow vaginal penetration.
+
+You can orgasm from other stimulation, too The genitals are awesome, but they’re not your only option. Your body is full of erogenous zones with orgasmic potential. Nipple According to a 2011 study, when stimulated, your nipples set your genital sensory cortex ablaze. This is the same area of the brain that lights up during vaginal or clitoral stimulation. Nipple orgasms are said to sneak up on you and then explode in waves of full-body pleasure. Yes, please! Try this: Use your hands to caress and squeeze your breasts and other parts of your body, avoiding the nipples at first. Move on to teasing your areola by tracing it with your fingertips until you’re turned on, then show your nipples some love by rubbing and pinching them until you reach maximum pleasure. Anal You don’t need to have a prostate to have an anal orgasm. Anal play can be pleasurable for anyone if you have enough lube and take your time. You can indirectly stimulate erogenous zones within the vagina using a finger or sex toy. Try this: Apply ample lube with your fingers and massage it around the outside and inside of the anus. Slowly and gently insert your sex toy or finger into your anus. Start with a gentle in-and-out motion, then move in a circular motion. Alternate between the two and pick up the pace as your pleasure builds. Erogenous zones Your body is truly a wonderland. The neck, ears, and lower back, for example, are rich in erotically charged nerve endings begging to be touched. We can’t say exactly which parts of your body will drive you to the brink, but we can tell you that everyone has erogenous zones, and finding them is worth the effort. Try this: Take a feather or silky scarf and use it to find your body’s most sensitive areas. Get naked and relax so you can focus on every tingle. Take note of these spots, and try experimenting with different sensations, like squeezing or pinching. Practice makes perfect, so take pleasure in these areas and keep at it to see how far you can go.
+
+Where does the G-spot come in? The G-spot is an area along the front wall of your vagina. For some people, it can produce a very intense and very wet orgasm when stimulated. Your fingers or a curved G-spot vibrator are the best way to hit the spot. Squatting will give you the best angle. Try this: Squat with the back of your thighs close to or touching your heels, and insert your fingers or toy into your vagina. Curl your fingers toward your belly button and move them in a “come here” motion. If you happen to find an area that feels especially good, keep going — even if you feel like you have to pee — and enjoy the full-body release.
+
+What happens in the body when you orgasm? Everyone’s body is different, and so are orgasms. Some are more intense than others. Some last longer than others. Some are wetter than others. What physically happens during orgasm is: Your vagina and uterus contract rapidly.
+
+You experience involuntary muscle contractions in other parts, like your abdomen and feet.
+
+Your heart rate and breathing quicken.
+
+Your blood pressure increases. You may feel a sudden relief of tension or even ejaculate.
+
+What makes a female orgasm different from a male orgasm? It may be surprising, but they’re not all that different. Both involve increased blood flow to the genitals, faster breathing and heart rate, and muscle contractions. Where they typically differ is in duration and recovery — also known as afterglow. Female orgasm may also last longer, ranging from 13 to 51 seconds on average, while male orgasm often ranges from 10 to 30 seconds. People with a penis typically have a refractory phase. Orgasms aren’t possible during this period, lasting from minutes to days. People with a clitoris may also go through a similar phase. A 2009 study involving 174 university students found that 96% of female participants experienced hypersensitivity in the clitoris following orgasm. Remember, the range of the refractory phase varies from person to person. Your own experience is unique to you. Then there’s ejaculation. For a person with a penis, contractions force semen into the urethra and out of the penis. And speaking of ejaculation …
+
+Is female ejaculation a thing? Yes! And it’s a fairly common thing. A 2013 research review of female ejaculation found that 10% to 54% of participants experienced ejaculation during orgasm. Ejaculation occurs when fluid is expelled from your urethral opening during orgasm or sexual arousal. The ejaculate is a thick, whitish fluid that resembles watered-down milk. It contains some of the same components as semen.
+
+What’s the orgasm gap? The orgasm gap refers to the gap between the number of male and female orgasms in heterosexual sex, where those with female genitalia are getting the shorter end of the stick. A 2018 study on orgasms in heterosexual newlywed couples found that 87% of husbands and only 49% of wives reported consistently experiencing orgasms during sexual activity. Why the gap? Researchers don’t know for certain. Some argue it could be biological, while others blame cultural and societal perspectives and a lack of education when it comes to pleasure.
+
+What can you try if you’ve never had an orgasm before? If you have a vulva and vagina, you know that real-life orgasms can be pretty different from what they show on TV. The first thing you should do is take the pressure off so you can enjoy yourself. Instead, take the time to get to know your body and concentrate on how it feels. You may find it helpful to: Get comfy somewhere you won’t be interrupted or distracted, like in bed or the bath.
+
+Try reading an erotic story or using your imagination to get yourself in the mood.
+
+Massage the fleshy area above your clitoris and the outer and inner lips of your vulva until you begin to get wet. You can also apply lube.
+
+Start rubbing your clitoris over the hood and find a rhythm that feels good.
+
+Rub faster and harder, increasing the speed and pressure to intensify the feeling until it releases. If you don’t orgasm, you can always try again. Trying new things is the best way to figure out what turns you on and how to orgasm.
\ No newline at end of file
diff --git a/data/txt/blog/Female orgasm_ Everything you need to know.txt b/data/txt/blog/Female orgasm_ Everything you need to know.txt
new file mode 100644
index 0000000000000000000000000000000000000000..1a3686a69e68bf0cca18df62e26ad152058f56ff
--- /dev/null
+++ b/data/txt/blog/Female orgasm_ Everything you need to know.txt
@@ -0,0 +1,74 @@
+Female orgasm: Everything you need to know
+Zawn Villines, How We Reviewed This Article
+None
+A female orgasm can be a highly pleasurable experience during masturbation or sexual activity. While orgasms may not provide a direct reproductive benefit, the pleasure may help improve mood and relieve stress. In this article, we look at why female orgasms occur and what happens during an orgasm. We also debunk some common misconceptions.
+
+Causes Share on Pinterest honey and milk/Getty Images Orgasms are a response to sexual stimulation. The female orgasm can result from many types of stimulation, including vaginal, clitoral, and nipple contact. While vaginal orgasms are less common than those from clitoral stimulation, some women have them — with or without other stimulation. Not everyone orgasms from the same type of stimulation.
+
+What happens during an orgasm? During arousal, blood flow to the genitals increases, causing them to become more sensitive. As arousal increases, a person’s heart rate, blood pressure, and breathing rate may also increase. As orgasm approaches, the muscles may twitch or spasm. Many women experience rhythmic muscle spasms in the vagina during an orgasm. Orgasms may follow the following stages: excitement, during which arousal builds
+
+plateau, during which arousal increases and levels off
+
+orgasm, which causes intense feelings of pleasure
+
+resolution, during which arousal diminishes Many females can have another orgasm after resolution, whereas males usually require a period of rest before having another orgasm. A note about sex and gender Sex and gender exist on spectrums. This article will use the terms “male,” “female,” or both to refer to sex assigned at birth. Click here to learn more.
+
+What does it feel like? Orgamsms can feel different for all people, and they may report their experiences in different language. However, people typically experience intense feelings of pleasure in the genitals and throughout the body. The release of endorphins following an orgasm may cause people to feel happy and relaxed. The skin may also flush. Women may also experience vaginal contractions during and after an orgasm, and ejaculation is also possible.
+
+Why do females orgasm? The purpose of the female orgasm is less clear than that of the male orgasm. Researchers have suggested numerous potential benefits, but few have been rigorously tested, and no theory has conclusive scientific support. A 2016 study argues that the female orgasm may have no obvious evolutionary benefit and that it may be a relic of a time when the hormones associated with orgasm were necessary for a woman to ovulate. Since there was no evolutionary need to eliminate the female orgasm, it persisted even when it was no longer necessary for fertility. Orgasm may serve important purposes, however. The pleasure it can cause can encourage females to have sex. This may also promote bonding with a sexual partner, which does have significant evolutionary benefits.
+
+Health benefits While the internet is filled with articles promising that orgasms improve skin, hair, and overall health, there is little scientific evidence that orgasms offer any specific health benefits. Scientists have not identified any evolutionary benefits of female orgasms or found that orgasms improve health. But orgasms are pleasurable, and pleasure can be its own benefit. Pleasurable sex may improve a person’s mood, relieve stress, boost immunity, and foster better relationships.
+
+Common misconceptions People hold many misconceptions about female orgasms. Some myths include: Women who cannot orgasm have psychological problems. While trauma, relationship issues, and poor mental health can make it more difficult to orgasm, many people with healthy sexual attitudes and good relationships still have difficulties. An orgasm is both a physical and psychological response, and numerous health problems can make it more difficult to enjoy sex in this way. For example, some women experience vulvodynia, which refers to unexplained pain in the vagina or around the vulva. Treating this and other medical conditions may improve sexual pleasure. Orgasms from penetrative sex are common or the healthiest form of sexual expression. Self-appointed experts, mostly men, have long told women that they must orgasm from heterosexual intercourse. However, many women can only orgasm from clitoral stimulation. Women need to be in love to orgasm. Orgasm is a complex psychological and biological experience — reaching and experiencing orgasm is not the same for every woman. Some women may need to feel love to orgasm, while others may not. Studies found people were more likely to orgasm frequently if they: received more oral sex
+
+had longer-lasting sex
+
+reported higher relationship satisfaction
+
+asked for what they wanted in bed
+
+engaged in sexual emails or calls
+
+expressed love during sex
+
+acted out sexual fantasies
+
+tried new sexual positions A person’s relationship with their partner may or may not influence their ability to orgasm during sex. Sexual health resources Visit our dedicated hub for more research-backed information and in-depth resources on sexual health. A partner can tell if a woman has had an orgasm. There is no way to tell if a woman has had an orgasm without asking. Some people make noises during an orgasm, while others are silent. Some flush or sweat after an orgasm, but others do not. A person who wants to know if their partner has had an orgasm can ask without being confrontational. If the answer is no, avoid judgment, anger, or feelings of inadequacy — these can put pressure on the person to orgasm, which can lead to anxiety and make it more difficult. Instead, discuss whether they would prefer a different approach to sex.
+
+What if you can’t orgasm? Being unable to orgasm is a common issue, and it can occur for a variety of reasons. Some people may not receive the right kind of stimulation during sex, while others may have experienced trauma linked to sex. Others may simply be uninterested. Risk factors A 2018 analysis identified several factors that increase the risk of sexual dysfunction, including: relationship problems
+
+stress
+
+mental health issues
+
+poor physical health
+
+genitourinary issues, such as pelvic pain
+
+a history of abortion
+
+a history of female genital mutilation
+
+sexual abuse
+
+being religious, perhaps due to sexual shame and stigma The same study identified several modifiable risk factors that improve sexual experience, including: exercise
+
+daily affection from a partner
+
+a positive body image
+
+sex education
+
+intimate communication with a partner Increasing the likelihood The aforementioned study that compared orgasm frequency among people of various sexual orientations in the United States found that the following behaviors during sex increase the likelihood of women having an orgasm: deep kissing
+
+genital stimulation during vaginal intercourse
+
+oral sex Seeking help If self-help strategies do not work, a doctor who specializes in sexual dysfunction may be able to identify a problem, if there is one. Many medical issues can make having an orgasm difficult, including: a lack of lubrication
+
+hormonal imbalances
+
+pelvic pain
+
+muscle dysfunction
+
+a history of trauma When trauma or relationship problems make having an orgasm difficult, or when a person feels ashamed of sex or their desires, individual or couples counseling can help.
\ No newline at end of file
diff --git a/data/txt/blog/Female orgasms_ Different types & how to climax.txt b/data/txt/blog/Female orgasms_ Different types & how to climax.txt
new file mode 100644
index 0000000000000000000000000000000000000000..b972d6417b6d190b13b5a763a73740b470f4e21a
--- /dev/null
+++ b/data/txt/blog/Female orgasms_ Different types & how to climax.txt
@@ -0,0 +1,54 @@
+Female orgasms: Different types & how to climax
+Medically Reviewed
+None
+What is a female orgasm?
+
+First things first, you might be curious about what an orgasm actually is . And there’s a fairly simple top-line answer: It’s one of your body’s responses to reaching the height of sexual arousal (or being turned on).
+
+“During orgasm, the uterus and muscles of the pelvic floor contract in a rhythmic fashion that is pleasurable for most women,” explains Dr. Brandye Wilson-Manigat , obstetrician and gynecologist (OB-GYN), California, US. This can feel like throbbing, twitching, tensing, or spasms in your vagina and anus. “Some women report a sensation of their whole body being involved in the contractions.”
+
+Orgasms don’t just happen out of the blue. They can feel like a buildup of pleasure and sexual tension. And that’s because orgasm is just one part of your body’s sexual response cycle . Prepare for some sexy science now; there are different phases when you’re feeling frisky.
+
+Desire: Having the urge to be intimate with a partner or alone. Your heart rate might quicken, and the blood flow to your vagina will increase. This pushes fluid to the surface of your vaginal walls, giving you the sensation of being wet.
+
+Excitement or feeling turned on: Your heart rate, breathing, and blood pressure will continue to increase, and you might notice that your clitoris and labia (the inner and outer lips of your vulva) start to feel more sensitive.
+
+Orgasm: This is the big O. The muscles in your vagina, uterus, and anus will contract (it might feel like a squeezing sensation), and you might feel a quick release of sexual tension.
+
+Resolution: This is when your heart rate, blood pressure, and breathing return to normal, and you might notice a warm feeling of well-being or satisfaction.
+
+Did you know that no two orgasms are the same? They can vary in length and intensity (but more on that below).
+
+What happens during female orgasms, and what does it feel like?
+
+Trying to explain what an orgasm feels like to other people can be really tough. We rarely have anything that we can compare our own orgasms to, and like falling in love, people often say you “just know” when you’ve had one. You might even notice that climaxing feels different to you each time. This is totally typical and healthy.
+
+"Orgasms can feel different, even if you are stimulating the same spot in the same way,” says Dr. Wilson-Manigat. “Some are more like a ‘fireworks on the Fourth of July’ sensation. Your whole body feels like it’s at a celebration. Others may feel like a slow burn, giving you a warm, satisfying sensation.”
+
+While it might feel like all the action of your orgasm is taking place in your genitals, there’s a lot going on in your brain, too. When you orgasm, your brain releases a surge in dopamine , the feel-good hormone. This helps you to recognize what you enjoy and gives you that sense of pleasure. Your brain also releases oxytocin . This is sometimes called the bonding hormone because it triggers a sense of love and attachment.
+
+Sounds pretty amazing, right? This surge in happy hormones is just one reason why reaching the big O is good for you. Keep reading to find out why.
+
+What are the different types of female orgasms?
+
+You might have heard your friends talk about an amazing nipple orgasm or an intense anal orgasm and wondered whether these are different types of orgasms. Here’s your answer: This is actually a little bit of a myth. “When people say there are different types of female orgasms, they usually mean which erogenous zone was stimulated for orgasm,” explains Dr. Sara Twogood , obstetrician and gynecologist, California, US. “It’s not that the orgasm itself is different; it’s the way the orgasm is achieved is different.”
+
+So let’s break that down. If you stimulate different parts of your body, you might reach orgasm. Areas that can help you to orgasm are:
+
+Clitoris: According to a survey published in the Journal of Sex & Marital Therapy , around 36% of the 1,000 women they spoke to said they needed some form of clitoral stimulation in order to orgasm. You can see part of your clitoris just above the opening of your vagina. It pays to know where your clitoris is, so you can learn more about yours here.
+
+Vagina: This is when you climax during vaginal penetration. A study found that only 18% of female orgasms come from vaginal stimulation.
+
+Anus: You might experience an anal orgasm while having the outside of your anus touched.
+
+Erogenous zones: You have erogenous zones all over your body. These are places where it feels really good to be touched. Some erogenous zones include your breasts, lips, neck, and thighs.
+
+No matter where you’re being touched, if you reach orgasm, your body responds in the same way. But it’s so important to remember that there’s no “right” type of orgasm — we all experience sexual pleasure in different ways. It’s very healthy to explore what you like either on your own or with a partner you trust.
+
+Where does the G-spot come in?
+
+In your conversations about orgasms, you might have heard about the elusive G-spot, or the Grafenberg spot to give it its full name. Did you know that you might be able to feel your own G-spot? It’s thought to be inside your vagina on the upper wall . It swells when you’re feeling aroused and can feel bumpy, a little bit like a walnut.
+
+Some people believe that you can reach orgasm by stroking and pressing on the G-spot. However, that’s still not certain where scientific evidence is concerned. In fact, some research has suggested that the G-spot doesn’t even exist and that it’s just part of the structure of the clitoris that’s inside your body. To learn more about your anatomy and the way your body works, you can download an app like Flo.
+
+There’s no denying that the G-spot is a hotly debated topic. But when it comes to getting intimate with a partner or having fun alone, you don’t need to worry too much about pleasure politics. If you’ve found something that makes you feel good, then keep going.
\ No newline at end of file
diff --git a/data/txt/blog/Orgasm & Female Orgasm_ How many types of orgasm are there_.txt b/data/txt/blog/Orgasm & Female Orgasm_ How many types of orgasm are there_.txt
new file mode 100644
index 0000000000000000000000000000000000000000..bbec5a5b260544b2cca36fd287b9fcf3c440fc8a
--- /dev/null
+++ b/data/txt/blog/Orgasm & Female Orgasm_ How many types of orgasm are there_.txt
@@ -0,0 +1,104 @@
+Orgasm & Female Orgasm: How many types of orgasm are there?
+
+None
+Top things to know about female orgasms:
+
+There are multiple types of female orgasm
+
+Stimulation of the clitoris is probably the easiest way for most people to experience an orgasm.
+
+Not all orgasms are the same, and can experienced differently every time depending on how our mind and body feels at that time
+
+Orgasms are difficult to study. Similar to studying mood or pain, female* orgasms need to be interpreted through not just biological mechanisms but also psychological, sociological and historical trends.
+
+Historically, in Western countries, female orgasms have been highly scrutinized. Orgasms were sometimes seen as unhealthy or wrong. And orgasms that are achieved through stimulation that is not heterosexual vaginal intercourse have been considered unacceptable by researchers and doctors (1,2).
+
+The viewpoint that some orgasms were superior to others has been supported by healthcare professionals. Sigmund Freud popularized the idea that mature women experience vaginal orgasm while immature women enjoyed clitoral stimulation (1-3).
+
+The importance of vaginal orgasm became so rooted in 20th-century health that an inability to reach orgasm through heterosexual penetrative sex became part of a diagnosable condition in the DSM III (i.e. psychology and psychiatry’s diagnostic book) (4).
+
+Although most healthcare professionals no longer consider inability for penetrative sex to induce orgasm to be a problem (unless their patients are distressed by it), many people feel that orgasm is a requirement for happy, meaningful and/or fulfilling sex (2). Some people also feel that orgasms should be reserved for sex, as opposed to experiencing orgasm during masturbation (1). Orgasm is great, but feeling pressure to have an orgasm, or a certain type of orgasm at a certain time, can make sex stressful and unpleasant.
+
+What kind of research is there about orgasms?
+
+The historical and social aspects of orgasm can obscure research as researchers may bias respondents’ answers by asking questions that imply that an orgasm type exists.
+
+Relatedly, there is a disagreement among some sex researchers about how to classify orgasms (3,5). For example, if stimulation of a non-genital body part causes the genitals to become aroused and the person experiences an orgasm, did the stimulation of the non-genitals cause the orgasm, or was it the arousal of the genitals that caused the orgasm?
+
+Even if a researcher were to do a study using tools that measure arousal, this doesn’t avoid all problems.
+
+People with female genitals have been shown to experience arousal in their genitals but not report arousal to researchers, suggesting that bodily arousal is insufficient indicator of sexual interest or pleasure (5).
+
+Compounding researcher problems are problems of gathering participants for sex and orgasm studies. Enrolling participants in a study is always tricky, but when someone studies a topic that is potentially considered taboo or private, it can be difficult to ensure that your sample is representative of all people in all cultures (this is also called external validity). It also may be difficult for participants to accurately remember or know where and how they were stimulated to cause orgasm (5).
+
+So, why talk about orgasms at all?
+
+Given the large amount of social and media commentary on orgasm, it’s important to understand how our bodies and the bodies of our partners actually work so that we can help reduce stigma and stress during sex. In the process, we may learn a thing or two on how to make sex more enjoyable.
+
+What are the different types of female orgasms?
+
+Different types vs different stimuli
+
+There are many pop-science articles (i.e. articles not published in a research journal) that claim there are anywhere from four to 15 different types of orgasms. As mentioned before, there’s a lot of debate as to how to classify female orgasms. However, there’s little evidence to support the idea that different stimuli reliably (i.e. repeatedly, under experimental conditions) cause different types of female orgasms or different intensity of orgasms. Most people report that “some orgasms are better than others” (6), but this doesn’t necessarily seem to be related to the stimuli that cause that orgasm.
+
+Clitoral stimulation
+
+The clitoris contains a bundle of nerve endings and is located in the front of the female vulva and under the clitoral hood (i.e. the triangle part of female genitals that connects to the labia) (3). The clitoris, similar to a penis, will swell, enlarge and become more sensitive as a person becomes more sexually aroused (3,5).
+
+Stimulation of the clitoris is probably the easiest way for most people to experience an orgasm.
+
+In a 2017 study of over 1,000 women from the US, about 7 out of 10 people who had heterosexual sex said that they required clitoral stimulation to orgasm during that sex or that clitoral stimulation improved orgasms even if they didn’t require it to orgasm (6,7).
+
+The type of clitoral stimulation preferred varied among the women in the study, though many women reported enjoying direct clitoral stimulation and stimulation that involved making circles or “up-and-down” movement (6).
+
+That being said, there was a wide diversity in answers regarding how and in which ways a person liked having their clitoris stimulated, with even a few people saying they didn’t like direct contact at all (6).
+
+Vaginal stimulation
+
+A vaginally-stimulated orgasm is an orgasm that occurs through intentional stimulation of only the vagina. Although the clitoris or other body parts may be accidentally touched in the process, to have a “vaginal orgasm" there would be no intentional stimulation of other body parts.
+
+In the same study described above, less than 1 in 5 women reported being able to orgasm through vaginal stimulation without clitoral stimulation (6).
+
+The ability to orgasm from only vaginal sex may be related to the G-spot, though that is up for debate. The G-spot is not well understood (5,8,9). The G-spot may be its own structure, but it has also been argued that the G-spot is actually a retracted or enlarged clitoris or is a set of nerve endings attached to the clitoris (5,8,9). It’s also argued that the G-spot doesn’t exist at all (3,5). Regardless, there isn’t evidence to suggest that an orgasm from penetration-only is somehow superior to other forms of orgasm; in fact, intentional clitoral stimulation may make orgasm better than penetration-only orgasm (6).
+
+Stimulation of other body parts
+
+There is less research into orgasms caused by stimulation of body parts that aren't the genitals. Because many of these studies are small and aren’t all recent (10), the proportions of people reporting these types of orgasms may not be representative of the rate we would find in a large, representative survey. That being said, these studies do suggest that people don't necessarily need to directly stimulate their clitoris or vagina to experience an orgasm.
+
+Some studies have found that people can experience orgasm through stimulation of the mouth, nipples, breasts, anus, and skin surrounding an injury (6,10).
+
+Research with participants who have severe injuries to the spinal cord and with participants who have epileptic seizures suggest that there are orgasmic experiences that may be induced without direct incorporation of the genitals (10).
+
+Orgasms outside of sex
+
+Arousal of the genitals and even orgasm itself aren’t necessarily just experiences that happen during sex.
+
+Exercise-induced orgasm
+
+Exercise, especially weight training, cardio, and abdominal-focused exercise, can induce orgasms (sometimes called coregasms in pop-science) and other positive genital stimulation (11). This makes sense biologically, as both exercise and sex can stimulate the muscles around the genitals and can lead to increased blood flow to the area of the body. Exercise may also influence our mood via endorphins and other neurotransmitters (12), similar to sex and orgasm (13).
+
+Orgasms during sleep
+
+Many people experience sexual arousal or orgasm during sleep (10). It’s difficult to say what or how exactly this happens. Because reporting from dreams can be unreliable, it’s difficult to say if all arousal and orgasms during sleep are caused by sexual dreams (10,11). Similarly, no research has currently looked at whether people were unconsciously stimulating their bodies during sleep or were being stimulated by bedding or other objects, so we’re not currently able to say if orgasms during sleep happen entirely unaided from stimulation (10).
+
+Better orgasms
+
+The goal of many orgasm-themed articles is to help people enjoy their orgasm or gain new experiences. Although there’s little evidence to suggest that orgasm from any particular type of stimulation is better than another, there are some suggestions in the literature on factors that increase or change our orgasmic experience. In the published literature, people reported that orgasms and sexual arousal were enhanced by:
+
+“spending time to build-up arousal” (6)
+
+changing the intensity of touch, including stopping and restarting—this technique could help lead to a delayed and more pleasurable orgasm (6)
+
+being with a partner who they had a connection with or that knew their bodies (6)
+
+touching or stimulating nipples, breasts, or the anus (6,10,14),
+
+engaging in new positions, types of sex, or new behaviors (6,15)
+
+A happy sex life
+
+Although portrayals of orgasm in media, partners’ expectations for our orgasms, and our own interest in experiencing orgasm can make us feel like we need to have an orgasm every time we have sex (2), a happy sex life doesn’t necessarily mean having a mind-blowing orgasm during every sexual experience. Many people report that not all orgasms are the same (6), which makes sense—our minds and bodies change from day to day (due to mood, health, stress levels, etc.), and so it’s unrealistic to expect any type of stimulation to elicit the same experience every time. Orgasm is just one of many important elements to sexual satisfaction.
+
+*Note: This article uses the term female and male to refer to cis-gendered sexual anatomy. A person with entirely or partially female genitals may or may not be female as their gender, and a person with entirely or partially male genitals may or may not be male as their gender. There are also people with a mix of both male and female genitals, but unfortunately not a lot of research has been done with this population. I’m using the terms male and female to describe sexual organs because there is little agreement on other terms to use.
+
+Article was originally published May 20, 2018.
\ No newline at end of file
diff --git a/environment.yml b/environment.yml
new file mode 100644
index 0000000000000000000000000000000000000000..2c9d58c259788410cd8e22541afebc559bb8490a
--- /dev/null
+++ b/environment.yml
@@ -0,0 +1,350 @@
+name: testenv1
+channels:
+ - defaults
+dependencies:
+ - _libgcc_mutex=0.1=main
+ - _openmp_mutex=5.1=1_gnu
+ - bzip2=1.0.8=h5eee18b_6
+ - ca-certificates=2024.7.2=h06a4308_0
+ - ld_impl_linux-64=2.38=h1181459_1
+ - libffi=3.4.4=h6a678d5_1
+ - libgcc-ng=11.2.0=h1234567_1
+ - libgomp=11.2.0=h1234567_1
+ - libstdcxx-ng=11.2.0=h1234567_1
+ - libuuid=1.41.5=h5eee18b_0
+ - ncurses=6.4=h6a678d5_0
+ - openssl=3.0.15=h5eee18b_0
+ - pip=24.2=py310h06a4308_0
+ - python=3.10.14=h955ad1f_1
+ - readline=8.2=h5eee18b_0
+ - setuptools=72.1.0=py310h06a4308_0
+ - sqlite=3.45.3=h5eee18b_0
+ - tk=8.6.14=h39e8969_0
+ - wheel=0.44.0=py310h06a4308_0
+ - xz=5.4.6=h5eee18b_1
+ - zlib=1.2.13=h5eee18b_1
+ - pip:
+ - accelerate==0.34.2
+ - addict==2.4.0
+ - aiofiles==23.2.1
+ - aiohappyeyeballs==2.4.0
+ - aiohttp==3.10.5
+ - aioitertools==0.12.0
+ - aiosignal==1.3.1
+ - aiosmtplib==2.0.2
+ - aiosqlite==0.20.0
+ - airportsdata==20241001
+ - alembic==1.13.3
+ - annotated-types==0.7.0
+ - anyio==4.4.0
+ - arize-phoenix==5.1.0
+ - arize-phoenix-evals==0.16.1
+ - arize-phoenix-otel==0.5.1
+ - asgiref==3.8.1
+ - asttokens==2.4.1
+ - async-timeout==4.0.3
+ - attrs==24.2.0
+ - authlib==1.3.2
+ - backoff==2.2.1
+ - bcrypt==4.2.0
+ - beautifulsoup4==4.12.3
+ - blinker==1.8.2
+ - bm25s==0.1.10
+ - build==1.2.2
+ - cachetools==5.5.0
+ - certifi==2024.8.30
+ - cffi==1.17.1
+ - charset-normalizer==3.3.2
+ - chevron==0.14.0
+ - chroma-hnswlib==0.7.3
+ - chromadb==0.5.3
+ - chromedriver-autoinstaller==0.6.4
+ - click==8.1.7
+ - cloudpickle==3.0.0
+ - coloredlogs==15.0.1
+ - contourpy==1.3.0
+ - cryptography==43.0.1
+ - cssselect==1.2.0
+ - cycler==0.12.1
+ - dataclasses-json==0.6.7
+ - datasets==2.21.0
+ - decorator==5.1.1
+ - deprecated==1.2.14
+ - dill==0.3.8
+ - dirtyjson==1.0.8
+ - diskcache==5.6.3
+ - distro==1.9.0
+ - dnspython==2.6.1
+ - docstring-parser==0.16
+ - einops==0.8.0
+ - email-validator==2.2.0
+ - environs==9.5.0
+ - exceptiongroup==1.2.2
+ - executing==2.1.0
+ - fastapi==0.115.0
+ - fastapi-mail==1.4.1
+ - feedfinder2==0.0.4
+ - feedparser==6.0.11
+ - ffmpy==0.4.0
+ - filelock==3.16.1
+ - fire==0.6.0
+ - flatbuffers==24.3.25
+ - fonttools==4.53.1
+ - frozenlist==1.4.1
+ - fsspec==2024.6.1
+ - google-api-core==2.19.2
+ - google-api-python-client==2.146.0
+ - google-auth==2.34.0
+ - google-auth-httplib2==0.2.0
+ - google-auth-oauthlib==1.2.1
+ - google-search-results==2.4.2
+ - googleapis-common-protos==1.65.0
+ - gradio==4.44.0
+ - gradio-client==1.3.0
+ - graphql-core==3.2.4
+ - greenlet==3.1.1
+ - grpc-interceptor==0.15.4
+ - grpcio==1.66.1
+ - h11==0.14.0
+ - hdbscan==0.8.38.post1
+ - html2text==2024.2.26
+ - httpcore==1.0.5
+ - httplib2==0.22.0
+ - httptools==0.6.1
+ - httpx==0.27.2
+ - huggingface-hub==0.25.0
+ - humanfriendly==10.0
+ - idna==3.10
+ - importlib-metadata==8.4.0
+ - importlib-resources==6.4.5
+ - interegular==0.3.3
+ - ipython==8.27.0
+ - jedi==0.19.1
+ - jieba==0.42.1
+ - jieba3k==0.35.1
+ - jinja2==3.1.4
+ - jiter==0.5.0
+ - joblib==1.4.2
+ - jsonpatch==1.33
+ - jsonpickle==3.3.0
+ - jsonpointer==3.0.0
+ - jsonschema==4.23.0
+ - jsonschema-specifications==2024.10.1
+ - kiwisolver==1.4.7
+ - kubernetes==30.1.0
+ - langchain==0.3.0
+ - langchain-chroma==0.1.4
+ - langchain-community==0.3.0
+ - langchain-core==0.3.1
+ - langchain-ollama==0.2.0
+ - langchain-text-splitters==0.3.0
+ - langsmith==0.1.121
+ - lark==1.2.2
+ - literalai==0.0.627
+ - llama-cloud==0.1.0
+ - llama-index==0.11.14
+ - llama-index-agent-openai==0.3.4
+ - llama-index-callbacks-literalai==1.1.0
+ - llama-index-cli==0.3.1
+ - llama-index-core==0.11.14
+ - llama-index-embeddings-langchain==0.2.1
+ - llama-index-embeddings-openai==0.2.5
+ - llama-index-indices-managed-llama-cloud==0.4.0
+ - llama-index-legacy==0.9.48.post3
+ - llama-index-llms-ollama==0.3.2
+ - llama-index-llms-openai==0.2.9
+ - llama-index-multi-modal-llms-openai==0.2.1
+ - llama-index-program-openai==0.2.0
+ - llama-index-question-gen-openai==0.2.0
+ - llama-index-readers-file==0.2.2
+ - llama-index-readers-llama-parse==0.3.0
+ - llama-index-readers-web==0.2.4
+ - llama-index-retrievers-bm25==0.3.0
+ - llama-index-storage-chat-store-redis==0.2.0
+ - llama-index-tools-google==0.2.0
+ - llama-index-utils-openai==0.1.0
+ - llama-index-utils-workflow==0.2.1
+ - llama-index-vector-stores-chroma==0.2.0
+ - llama-index-vector-stores-milvus==0.2.7
+ - llama-parse==0.5.6
+ - llamafactory==0.9.0
+ - llvmlite==0.43.0
+ - lmdeploy==0.6.1
+ - lxml==5.3.0
+ - lxml-html-clean==0.3.1
+ - mako==1.3.5
+ - markdown-it-py==3.0.0
+ - markupsafe==2.1.5
+ - marshmallow==3.22.0
+ - matplotlib==3.9.2
+ - matplotlib-inline==0.1.7
+ - mdurl==0.1.2
+ - milvus-lite==2.4.10
+ - mmengine-lite==0.10.5
+ - mmh3==4.1.0
+ - monotonic==1.6
+ - mpmath==1.3.0
+ - multidict==6.1.0
+ - multiprocess==0.70.16
+ - mypy-extensions==1.0.0
+ - nest-asyncio==1.6.0
+ - networkx==3.3
+ - newspaper3k==0.2.8
+ - nltk==3.9.1
+ - numba==0.60.0
+ - numpy==1.26.4
+ - nvidia-cublas-cu12==12.1.3.1
+ - nvidia-cuda-cupti-cu12==12.1.105
+ - nvidia-cuda-nvrtc-cu12==12.1.105
+ - nvidia-cuda-runtime-cu12==12.1.105
+ - nvidia-cudnn-cu12==8.9.2.26
+ - nvidia-cufft-cu12==11.0.2.54
+ - nvidia-curand-cu12==10.3.2.106
+ - nvidia-cusolver-cu12==11.4.5.107
+ - nvidia-cusparse-cu12==12.1.0.106
+ - nvidia-nccl-cu12==2.20.5
+ - nvidia-nvjitlink-cu12==12.6.68
+ - nvidia-nvtx-cu12==12.1.105
+ - oauthlib==3.2.2
+ - ollama==0.3.3
+ - onnxruntime==1.19.2
+ - openai==1.46.0
+ - openinference-instrumentation==0.1.18
+ - openinference-instrumentation-llama-index==3.0.2
+ - openinference-semantic-conventions==0.1.10
+ - opentelemetry-api==1.27.0
+ - opentelemetry-exporter-otlp==1.27.0
+ - opentelemetry-exporter-otlp-proto-common==1.27.0
+ - opentelemetry-exporter-otlp-proto-grpc==1.27.0
+ - opentelemetry-exporter-otlp-proto-http==1.27.0
+ - opentelemetry-instrumentation==0.48b0
+ - opentelemetry-instrumentation-asgi==0.48b0
+ - opentelemetry-instrumentation-fastapi==0.48b0
+ - opentelemetry-proto==1.27.0
+ - opentelemetry-sdk==1.27.0
+ - opentelemetry-semantic-conventions==0.48b0
+ - opentelemetry-util-http==0.48b0
+ - orjson==3.10.7
+ - outcome==1.3.0.post0
+ - outlines==0.1.0
+ - outlines-core==0.1.0
+ - overrides==7.7.0
+ - packaging==24.1
+ - pandas==2.2.2
+ - parso==0.8.4
+ - peft==0.11.1
+ - pexpect==4.9.0
+ - phoenix==0.9.1
+ - pillow==10.4.0
+ - platformdirs==4.3.6
+ - playwright==1.48.0
+ - posthog==3.6.6
+ - prompt-toolkit==3.0.47
+ - proto-plus==1.24.0
+ - protobuf==4.25.4
+ - psutil==6.0.0
+ - ptyprocess==0.7.0
+ - pure-eval==0.2.3
+ - pyarrow==17.0.0
+ - pyasn1==0.6.1
+ - pyasn1-modules==0.4.1
+ - pycountry==24.6.1
+ - pycparser==2.22
+ - pydantic==2.9.2
+ - pydantic-core==2.23.4
+ - pydantic-settings==2.5.2
+ - pydub==0.25.1
+ - pyee==12.0.0
+ - pygments==2.18.0
+ - pymilvus==2.4.8
+ - pymysql==1.1.1
+ - pynndescent==0.5.13
+ - pynvml==11.5.3
+ - pyparsing==3.1.4
+ - pypdf==4.3.1
+ - pypika==0.48.9
+ - pyproject-hooks==1.1.0
+ - pysocks==1.7.1
+ - pystemmer==2.2.0.1
+ - python-dateutil==2.9.0.post0
+ - python-dotenv==1.0.1
+ - python-multipart==0.0.9
+ - pytz==2024.2
+ - pyvis==0.3.2
+ - pyyaml==6.0.2
+ - redis==5.0.8
+ - referencing==0.35.1
+ - regex==2024.9.11
+ - requests==2.32.3
+ - requests-file==2.1.0
+ - requests-oauthlib==2.0.0
+ - rich==13.8.1
+ - rouge-chinese==1.0.3
+ - rpds-py==0.20.0
+ - rsa==4.9
+ - ruff==0.6.5
+ - safetensors==0.4.5
+ - scikit-learn==1.5.2
+ - scipy==1.14.1
+ - selenium==4.25.0
+ - semantic-version==2.10.0
+ - sentencepiece==0.2.0
+ - serpapi==0.1.5
+ - sgmllib3k==1.0.0
+ - shellingham==1.5.4
+ - shortuuid==1.0.13
+ - shtab==1.7.1
+ - six==1.16.0
+ - sniffio==1.3.1
+ - sortedcontainers==2.4.0
+ - soupsieve==2.6
+ - spider-client==0.0.27
+ - sqlalchemy==2.0.35
+ - sqlean-py==3.45.1
+ - sse-starlette==2.1.3
+ - stack-data==0.6.3
+ - starlette==0.38.5
+ - stemmer==0.0.4
+ - strawberry-graphql==0.236.0
+ - striprtf==0.0.26
+ - sympy==1.13.2
+ - tenacity==8.5.0
+ - termcolor==2.4.0
+ - threadpoolctl==3.5.0
+ - tiktoken==0.7.0
+ - tinysegmenter==0.3
+ - tldextract==5.1.2
+ - tokenizers==0.20.0
+ - tomli==2.0.1
+ - tomlkit==0.12.0
+ - torch==2.3.1
+ - torchvision==0.18.1
+ - tqdm==4.66.5
+ - traitlets==5.14.3
+ - transformers==4.45.2
+ - trio==0.27.0
+ - trio-websocket==0.11.1
+ - triton==2.3.1
+ - trl==0.9.6
+ - typer==0.12.5
+ - typing-extensions==4.12.2
+ - typing-inspect==0.9.0
+ - tyro==0.8.10
+ - tzdata==2024.1
+ - ujson==5.10.0
+ - umap-learn==0.5.6
+ - uritemplate==4.1.1
+ - urllib3==2.2.3
+ - uvicorn==0.30.6
+ - uvloop==0.20.0
+ - watchfiles==0.24.0
+ - wcwidth==0.2.13
+ - websocket-client==1.8.0
+ - websockets==12.0
+ - wrapt==1.16.0
+ - wsproto==1.2.0
+ - xxhash==3.5.0
+ - yapf==0.40.2
+ - yarl==1.11.1
+ - zipp==3.20.2
+
diff --git a/fetishTest/Q&A.json b/fetishTest/Q&A.json
new file mode 100644
index 0000000000000000000000000000000000000000..81b62b1887581e3024109efc234e9ca7765ad4a8
--- /dev/null
+++ b/fetishTest/Q&A.json
@@ -0,0 +1,62 @@
+[
+ {
+ "A": "Romantic",
+ "B": "Luxurious",
+ "C": "Thrilling",
+ "D": "Relaxing"
+ },
+ {
+ "A": "Possessive",
+ "B": "Emotional",
+ "C": "Mysterious",
+ "D": "Chill"
+ },
+ {
+ "A": "BDSM",
+ "B": "Thrilling",
+ "C": "Roleplay",
+ "D": "Masochism"
+ },
+ {
+ "A": "Handcuffed",
+ "B": "Wearing lingerie",
+ "C": "Wearing roleplay props",
+ "D": "Freshness"
+ },
+ {
+ "A": "Group Sex",
+ "B": "BDSM",
+ "C": "Taboo",
+ "D": "Roleplay"
+ },
+ {
+ "A": "Passionate",
+ "B": "Trusting",
+ "C": "Controlling",
+ "D": "Chill"
+ },
+ {
+ "A": "Emotional",
+ "B": "Visual Stimulation",
+ "C": "Gentle",
+ "D": "Hardcore BDSM"
+ },
+ {
+ "A": "Trust",
+ "B": "Passion",
+ "C": "Control",
+ "D": "Relaxation"
+ },
+ {
+ "A": "Dominance",
+ "B": "Submission",
+ "C": "Equal",
+ "D": "Introverted"
+ },
+ {
+ "A": "BDSM",
+ "B": "Occasional BDSM",
+ "C": "Non-BDSM",
+ "D": "Anti-BDSM"
+ }
+]
\ No newline at end of file
diff --git a/fetishTest/api.py b/fetishTest/api.py
new file mode 100644
index 0000000000000000000000000000000000000000..ab628d3609e3fbf1789134be53e47de45270d156
--- /dev/null
+++ b/fetishTest/api.py
@@ -0,0 +1,66 @@
+from fastapi import FastAPI, Request
+from requests import Response
+from langchain_community.embeddings.ollama import OllamaEmbeddings
+import numpy as np
+import json
+
+app = FastAPI(
+ title="FetishTest",
+ description="Game of matching fetish of users",
+)
+
+# set up
+embed_model = OllamaEmbeddings(model="bge-m3")
+with open("standard_character.json", "r") as f:
+ standard_character = json.load(f)
+with open("Q&A.json", "r") as f:
+ answer2label = json.load(f)
+
+# cosine similarity
+def cosine_similarity(vec1, vec2):
+ vec1, vec2 = np.array(vec1), np.array(vec2)
+ return vec1.dot(vec2) / (np.linalg.norm(vec1) * np.linalg.norm(vec2))
+
+@app.post("/fetish")
+async def matching(request: Request):
+ request = await request.json()
+ answer = request["answer"] # ['A', 'B' ...]
+ print(f"user_input: {answer}")
+ user_labels = []
+ for idx, ans in enumerate(answer):
+ curr_label = answer2label[idx][ans]
+ if curr_label not in user_labels:
+ user_labels.append(answer2label[idx][ans])
+ user_labels = sorted(user_labels)
+ print(f"user_labels: {user_labels}")
+ user_embedding = embed_model.embed_query(" ".join(user_labels))
+ matching_dict = {}
+ for character in standard_character:
+ sim = cosine_similarity(user_embedding, character["embedding"])
+ matching_dict[character["key"]] = sim
+ # sort by sim
+ matching_tuple = sorted(matching_dict.items(), key=lambda x: x[1], reverse=True)
+ # return the top 1
+ matched = matching_tuple[0][0]
+ sim = matching_tuple[0][1]
+ matched_name = standard_character[matched]["name"]
+ matched_label = standard_character[matched]["label"]
+ result = {
+ "result": matched
+ }
+ print(f"matched: {matched}")
+ print(f"{matched_name}: {matched_label} -- score: {sim}")
+ return result
+
+if __name__ == "__main__":
+ import uvicorn
+ uvicorn.run(
+ "api:app",
+ host="0.0.0.0",
+ port=8002,
+ loop="asyncio",
+ workers=8,
+ limit_concurrency=10,
+ timeout_keep_alive=60,
+ access_log=True
+ )
\ No newline at end of file
diff --git a/fetishTest/character.py b/fetishTest/character.py
new file mode 100644
index 0000000000000000000000000000000000000000..47429f59c3de2b27f8591a65149311651bc588d5
--- /dev/null
+++ b/fetishTest/character.py
@@ -0,0 +1,26 @@
+class BaseCharacter:
+ def __init__(self, key, name, type, media, label: list):
+ self.key = key
+ self.name = name
+ self.type = type
+ self.media = media
+ self.label = label
+ self.embedding = None
+
+ def parse(self):
+ labels = ",".join(self.label)
+ res = f"{self.name}: {labels}"
+ return res
+
+ def get_label(self):
+ return " ".join(self.label)
+
+ def to_dict(self):
+ return {
+ "key": self.key,
+ "name": self.name,
+ "type": self.type,
+ "media": self.media,
+ "label": self.label,
+ "embedding": self.embedding
+ }
\ No newline at end of file
diff --git a/fetishTest/fetish_test.py b/fetishTest/fetish_test.py
new file mode 100644
index 0000000000000000000000000000000000000000..d250ccb4c35e02f51c3980852663da560cc0566e
--- /dev/null
+++ b/fetishTest/fetish_test.py
@@ -0,0 +1,170 @@
+from langchain_community.embeddings.ollama import OllamaEmbeddings
+from fetishTest.character import BaseCharacter
+import json
+
+
+
+label_list = []
+
+standard_character = [
+ BaseCharacter(
+ key=1,
+ name="Oberyn Martell",
+ type="TV series",
+ media="Game of Thrones",
+ label=["Sensual","Non-traditional", "Charismatic", "Confident", "Adventurous"]
+ ),
+ BaseCharacter(
+ key=2,
+ name="Christian Grey",
+ type="movie",
+ media="50 Shades of Grey",
+ label=["BDSM", "Private", "Mysterious", "Dominant", "Caring"]
+ ),
+ BaseCharacter(
+ key=3,
+ name="Maddy Perez",
+ type="TV series",
+ media="Euphoria",
+ label=["Protective", "Adventurous", "Sensual", "Independent", "Passionate", "Confident"]
+ ),
+ BaseCharacter(
+ key=4,
+ name="Geralt of Rivia",
+ type="movie",
+ media="The Witcher",
+ label=["Selective", "Non-committal", "Discreet", "Sensual", "Courageous"]
+ ),
+ BaseCharacter(
+ key=5,
+ name="Emily Cooper",
+ type="movie",
+ media="Emily in Paris",
+ label=["Romantic", "Ambitious", "Adventurous", "Courageous", "Flirtatious"]
+ ),
+ BaseCharacter(
+ key=6,
+ name="Gatsby ",
+ type="movie",
+ media="The Great Gatsby",
+ label=["Luxurious", "Persistent", "Romantic", "Obsessive"]
+ ),
+ BaseCharacter(
+ key=7,
+ name="Daenerys Targaryen",
+ type="TV series",
+ media="Game of Thrones",
+ label=["Passionate", "Empowered", "Compassionate", "Fierce", "Loyal", "Romantic"]
+ ),
+ BaseCharacter(
+ key=8,
+ name="Daemon Targaryen",
+ type="TV series",
+ media="House of the Dragon",
+ label=["Dominant", "Seductive", "Experimental", "Power-driven", "Unpredictable"]
+ ),
+ BaseCharacter(
+ key=9,
+ name="Jessica Rabbit",
+ type="movie",
+ media="Who Framed Roger Rabbit",
+ label=["Seductive", "Vulnerable", "Confident", "Playful", "Passionate"]
+ ),
+ BaseCharacter(
+ key=10,
+ name="Tony Stark",
+ type="movie",
+ media="Iron Man",
+ label=["Loyal", "Confident", "Dominant", "Affectionate", "Adventurous"]
+ ),
+ BaseCharacter(
+ key=15,
+ name="Lucifer Morningstar",
+ type="movie",
+ media="Lucifer",
+ label=["Confident", "Playful", "Dominant", "Adventurous", "Passionate"]
+ ),
+ BaseCharacter(
+ key=11,
+ name="Love Quinn",
+ type="movie",
+ media="You",
+ label=["Romantic", "Impulsive", "Adventurous", "Intense", "Possessive"]
+ ),
+ BaseCharacter(
+ key=12,
+ name="Joe Goldberg",
+ type="movie",
+ media="You",
+ label=["Obsessive", "Controlling", "Intense", "Dedicated", "Possessive"]
+ ),
+ BaseCharacter(
+ key=13,
+ name="Marilyn Monroe",
+ type="movie",
+ media="Blonde",
+ label=["Vulnerable", "Emotional", "Romantic", "Passionate", "Sensual"]
+ ),
+ BaseCharacter(
+ key=14,
+ name="Don Massimo",
+ type="movie",
+ media="365 Days",
+ label=["BDSM", "Dominant", "Controlling", "Assertive", "Protective", "Passionate"]
+ ),
+ BaseCharacter(
+ key=16,
+ name="Harley Quinn",
+ type="movie",
+ media="The Suicide Squad",
+ label=["Spontaneous", "Playful", "Adventurous", "Dominant", "Passionate"]
+ ),
+ BaseCharacter(
+ key=17,
+ name="Catwoman",
+ type="movie",
+ media="The Batman",
+ label=["Seductive", "Confident", "Independent", "Adventurous", "Playful"]
+ ),
+ BaseCharacter(
+ key=18,
+ name="Mike Lane",
+ type="movie",
+ media="Magic Mike",
+ label=["Confident", "Charming", "Hardworking", "Dominant", "Sensual"]
+ ),
+ BaseCharacter(
+ key=20,
+ name="Lara Croft",
+ type="movie",
+ media="Tomb Raider",
+ label=["Adventurous", "Confident", "Independent", "Dominant", "Explorative"]
+ ),
+ BaseCharacter(
+ key=19,
+ name="Natasha Romanoff",
+ type="movie",
+ media="Black Widow",
+ label=["Confident", "Mysterious", "Passionate", "Dominant", "Sensual"]
+ ),
+]
+for character in standard_character:
+ labels = character.label
+ for label in labels:
+ if label not in label_list:
+ label_list.append(label)
+print(len(label_list))
+
+# 重排序人物label顺序
+for c in standard_character:
+ c.label = sorted(c.label)
+
+# 生成人物性格embedding
+embed_model = OllamaEmbeddings(model="bge-m3")
+for character in standard_character:
+ character.embedding = embed_model.embed_query(character.get_label())
+standard_character_dicts = [character.to_dict() for character in standard_character]
+# 保存人物表
+with open("standard_character.json", "w") as f:
+ json.dump(standard_character_dicts, f, indent=4)
+
diff --git a/fetishTest/standard_character.json b/fetishTest/standard_character.json
new file mode 100644
index 0000000000000000000000000000000000000000..0918e1655b9e1b3de5af9772c4a7c02e7aee3b64
--- /dev/null
+++ b/fetishTest/standard_character.json
@@ -0,0 +1,20784 @@
+[
+ {
+ "key": 1,
+ "name": "Oberyn Martell",
+ "type": "TV series",
+ "media": "Game of Thrones",
+ "label": [
+ "Adventurous",
+ "Charismatic",
+ "Confident",
+ "Non-traditional",
+ "Sensual"
+ ],
+ "embedding": [
+ -1.5402640104293823,
+ -0.700488805770874,
+ -0.312874972820282,
+ -0.6276737451553345,
+ -1.4924581050872803,
+ -0.43865013122558594,
+ -0.1710326075553894,
+ -1.05926513671875,
+ 0.12203100323677063,
+ 0.08041048794984818,
+ 0.7728265523910522,
+ 0.2633148431777954,
+ -1.744207501411438,
+ -0.11810289323329926,
+ 1.6853774785995483,
+ 1.583385944366455,
+ -0.49445560574531555,
+ -0.11458097398281097,
+ -0.6448544263839722,
+ -0.7174381017684937,
+ -1.2904291152954102,
+ 0.38242268562316895,
+ -0.628741443157196,
+ -0.670871376991272,
+ -0.8290390968322754,
+ 0.7524328827857971,
+ -0.4487355947494507,
+ -0.4822896718978882,
+ -0.3953701853752136,
+ 1.1633491516113281,
+ 0.4189460873603821,
+ 0.03098282217979431,
+ 0.5116705894470215,
+ -0.7967855930328369,
+ 0.7462858557701111,
+ -0.6471718549728394,
+ -0.023155728355050087,
+ -0.05979868769645691,
+ -1.591498851776123,
+ 0.693060576915741,
+ 1.2996474504470825,
+ -1.144083857536316,
+ 0.9805507659912109,
+ -0.8074378967285156,
+ 0.4600507915019989,
+ -1.0033326148986816,
+ -0.00764886662364006,
+ -0.3375142514705658,
+ 0.8686936497688293,
+ 0.1720241904258728,
+ 0.14761552214622498,
+ 0.5840109586715698,
+ 1.0649317502975464,
+ -0.25172722339630127,
+ 0.41414108872413635,
+ -0.46983829140663147,
+ 0.35336121916770935,
+ -0.8017916679382324,
+ -1.0429911613464355,
+ -1.0894759893417358,
+ -1.802060604095459,
+ 0.8234593868255615,
+ -0.33818840980529785,
+ 0.3913966715335846,
+ 0.30387750267982483,
+ 1.276658296585083,
+ -0.6172463893890381,
+ -0.03145139664411545,
+ 0.45949575304985046,
+ -1.4323174953460693,
+ -0.5116780996322632,
+ -0.42286986112594604,
+ -0.9584873914718628,
+ -0.07320070266723633,
+ -2.122821807861328,
+ 0.2610868215560913,
+ -0.2109023481607437,
+ -1.5966434478759766,
+ -0.2953256070613861,
+ 0.47098225355148315,
+ 0.2735629379749298,
+ 0.2252328097820282,
+ -0.3198411762714386,
+ 0.24170544743537903,
+ -0.43172699213027954,
+ 0.5389489531517029,
+ 0.04711966961622238,
+ -0.40439197421073914,
+ 0.013482991605997086,
+ 0.22121167182922363,
+ -0.9129703044891357,
+ 0.1545613706111908,
+ -0.04873192682862282,
+ -1.1802560091018677,
+ -0.8028285503387451,
+ 0.5235177874565125,
+ 0.28365156054496765,
+ -0.25139322876930237,
+ 0.5585609078407288,
+ 0.19827382266521454,
+ -0.004964947700500488,
+ 0.6317663788795471,
+ -0.6622684597969055,
+ 0.31360042095184326,
+ 0.39719560742378235,
+ -1.7135993242263794,
+ 0.011927515268325806,
+ 1.0961018800735474,
+ 0.4923192262649536,
+ 0.28987663984298706,
+ 0.5092583894729614,
+ 0.5817119479179382,
+ 0.6877397298812866,
+ 0.7776834964752197,
+ -0.1255062371492386,
+ -0.3426492214202881,
+ 0.37254688143730164,
+ -0.13983581960201263,
+ -0.5145097970962524,
+ 0.07559554278850555,
+ 0.25906896591186523,
+ 0.25013038516044617,
+ 0.2564214766025543,
+ -1.1733514070510864,
+ -0.05201788246631622,
+ -0.30315956473350525,
+ -1.1508162021636963,
+ 0.9000409841537476,
+ -0.8620001077651978,
+ 0.7884247303009033,
+ 1.0101101398468018,
+ 0.15964561700820923,
+ 0.040270447731018066,
+ -0.9283742904663086,
+ 0.4723905920982361,
+ -0.5870362520217896,
+ 0.44771456718444824,
+ 1.1807270050048828,
+ 0.08997364342212677,
+ -0.9278547763824463,
+ -0.49273067712783813,
+ 1.7112528085708618,
+ 0.31791257858276367,
+ -1.886961579322815,
+ 0.3131429851055145,
+ -0.8433483242988586,
+ 0.316366046667099,
+ 0.24575871229171753,
+ -0.3141460418701172,
+ -0.11130846291780472,
+ 1.4264638423919678,
+ -0.8254154920578003,
+ 1.2993346452713013,
+ 2.5366995334625244,
+ 0.23066329956054688,
+ -1.2524257898330688,
+ -0.824472188949585,
+ 1.3488593101501465,
+ 1.1292318105697632,
+ 0.7470682859420776,
+ 0.6924476623535156,
+ -0.0625787302851677,
+ -1.1198012828826904,
+ -0.232647106051445,
+ -0.45015639066696167,
+ -0.2269999086856842,
+ 0.6033045053482056,
+ 1.203941822052002,
+ 0.28254908323287964,
+ -0.31003478169441223,
+ 0.17076514661312103,
+ -1.0195882320404053,
+ 0.47496485710144043,
+ 0.39842984080314636,
+ 0.676497220993042,
+ 0.11892878264188766,
+ 1.8810356855392456,
+ 0.45500874519348145,
+ 0.11755514144897461,
+ -1.5140734910964966,
+ -0.789957582950592,
+ 0.7746111154556274,
+ -0.9891960024833679,
+ 0.01980791985988617,
+ -1.0950266122817993,
+ -0.3111065626144409,
+ -1.0267894268035889,
+ -0.28213438391685486,
+ 0.5704322457313538,
+ 0.9738631248474121,
+ -0.2793402075767517,
+ -1.248353123664856,
+ -0.17470911145210266,
+ -0.6685370206832886,
+ 1.0815904140472412,
+ 0.9405814409255981,
+ -0.1902027279138565,
+ -1.1340478658676147,
+ 0.0223127119243145,
+ -2.045717716217041,
+ 0.43664276599884033,
+ 1.539047360420227,
+ -0.16356731951236725,
+ -0.46840131282806396,
+ -1.051322340965271,
+ 0.18028785288333893,
+ -1.1820183992385864,
+ -0.6203380227088928,
+ 1.1109685897827148,
+ -0.4376853108406067,
+ -0.05725319683551788,
+ 0.565371572971344,
+ 0.30925387144088745,
+ -0.9561480283737183,
+ -0.9532012343406677,
+ -1.0962153673171997,
+ -0.24702078104019165,
+ 0.4000241160392761,
+ -0.7917462587356567,
+ 0.643543541431427,
+ 0.69142085313797,
+ 0.6672146320343018,
+ 0.70417720079422,
+ 0.32174816727638245,
+ 0.23948636651039124,
+ 0.6370880007743835,
+ 0.2523324191570282,
+ 1.1160922050476074,
+ 0.16975289583206177,
+ 0.6740256547927856,
+ 0.5815989375114441,
+ 0.04679787904024124,
+ -0.19946634769439697,
+ -0.08510535955429077,
+ 0.21866004168987274,
+ 0.41043946146965027,
+ -0.8915040493011475,
+ 0.0833711251616478,
+ 1.381819248199463,
+ 0.585328221321106,
+ -0.7695789337158203,
+ -0.760400652885437,
+ 1.919317603111267,
+ 0.5901776552200317,
+ -0.9455984830856323,
+ -0.005811956711113453,
+ 0.4173009693622589,
+ 0.055478256195783615,
+ -0.2063334733247757,
+ -0.6786754131317139,
+ 0.7115739583969116,
+ -0.13204866647720337,
+ -1.2106740474700928,
+ -0.8737322092056274,
+ 1.0634294748306274,
+ -0.06253629177808762,
+ -0.41351819038391113,
+ -0.35554853081703186,
+ -0.03952546417713165,
+ -0.2316582351922989,
+ -0.09864304959774017,
+ 1.184367299079895,
+ 0.47115036845207214,
+ 0.8895488977432251,
+ -0.14572285115718842,
+ -0.18629810214042664,
+ 0.5368506908416748,
+ 0.5922613739967346,
+ 0.05157735198736191,
+ 0.4882435202598572,
+ -0.8153928518295288,
+ -0.5139126777648926,
+ -0.6711300611495972,
+ -0.950071394443512,
+ -0.9942384362220764,
+ 1.3095449209213257,
+ -0.28694888949394226,
+ -0.25158530473709106,
+ 2.039005756378174,
+ 0.3701043128967285,
+ 0.840775191783905,
+ 0.392360657453537,
+ 0.3448483943939209,
+ -0.0761052817106247,
+ 1.2095547914505005,
+ -0.41893473267555237,
+ 0.6242786049842834,
+ -0.3846008777618408,
+ 0.04565151408314705,
+ -1.5056910514831543,
+ 1.1867738962173462,
+ 0.9100785255432129,
+ 1.6112079620361328,
+ 0.6822180151939392,
+ -1.3002153635025024,
+ -0.9744141697883606,
+ -0.7568935751914978,
+ -3.5698580741882324,
+ 0.4002150595188141,
+ -0.3571332097053528,
+ 0.3192649483680725,
+ 0.3806087374687195,
+ 0.4756198823451996,
+ -1.7848185300827026,
+ 0.23524072766304016,
+ -0.24164126813411713,
+ -1.6087480783462524,
+ 0.29453200101852417,
+ -1.4320210218429565,
+ -0.601227879524231,
+ -0.0443328395485878,
+ -1.2994976043701172,
+ -0.7097387313842773,
+ -0.6124123334884644,
+ -0.06820154190063477,
+ 0.6843196749687195,
+ -0.7849504947662354,
+ -0.6996760964393616,
+ -0.7008426785469055,
+ 2.437274932861328,
+ 0.1568925529718399,
+ 0.14893871545791626,
+ 0.09694113582372665,
+ 0.42848461866378784,
+ -0.9359212517738342,
+ -0.7726247906684875,
+ -0.7510031461715698,
+ -0.21384111046791077,
+ 0.0015997588634490967,
+ -0.4057483673095703,
+ 0.5679270625114441,
+ 0.9092370867729187,
+ 1.01654052734375,
+ -0.2750762403011322,
+ 0.7408499121665955,
+ 0.7747517228126526,
+ -0.21649393439292908,
+ 0.7197458148002625,
+ 0.08017471432685852,
+ -0.6079822778701782,
+ 0.5630261301994324,
+ -0.4655788242816925,
+ -0.9247825741767883,
+ -0.025561410933732986,
+ 1.1466809511184692,
+ 0.11305807530879974,
+ -0.04240112006664276,
+ 0.05473332107067108,
+ -0.3281697630882263,
+ -0.48362308740615845,
+ -1.1542408466339111,
+ -1.529873251914978,
+ -0.38418591022491455,
+ -0.9335696697235107,
+ -0.18379880487918854,
+ 1.0082898139953613,
+ -0.5666422843933105,
+ -1.51016104221344,
+ -1.81510591506958,
+ 0.2231614887714386,
+ -0.23696468770503998,
+ -0.7106345295906067,
+ 0.728762149810791,
+ 0.06298644840717316,
+ -0.32862016558647156,
+ 0.9932780265808105,
+ 0.602500855922699,
+ 0.0011629816144704819,
+ -0.2916540503501892,
+ -0.48652374744415283,
+ -1.2004519701004028,
+ -0.745750904083252,
+ 0.49801599979400635,
+ 0.5324140787124634,
+ 0.45082831382751465,
+ -1.3927891254425049,
+ -0.5793971419334412,
+ 0.6690413951873779,
+ -0.08391287922859192,
+ 0.26325514912605286,
+ 0.6161260604858398,
+ -0.630919873714447,
+ -0.8116064667701721,
+ 0.3136915862560272,
+ 0.7957887053489685,
+ 1.0656627416610718,
+ 5.8566107749938965,
+ -0.07816251367330551,
+ 0.6169404983520508,
+ -0.08928877860307693,
+ 0.9981091022491455,
+ 0.11363647878170013,
+ 0.12752152979373932,
+ 0.9828008413314819,
+ 0.16707207262516022,
+ -0.477640837430954,
+ -0.6838179230690002,
+ 0.4295526444911957,
+ -0.07718121260404587,
+ -0.4787304103374481,
+ 0.35174983739852905,
+ 1.644463062286377,
+ -0.3029439449310303,
+ -0.41128289699554443,
+ 1.987596035003662,
+ -0.6277000308036804,
+ 1.0606344938278198,
+ -0.18976591527462006,
+ -0.1542821228504181,
+ 0.2505263686180115,
+ -0.9908128976821899,
+ 0.14521196484565735,
+ 0.5035157203674316,
+ 0.7210824489593506,
+ -0.5088570713996887,
+ 0.5561354756355286,
+ 0.14347891509532928,
+ 1.5325579643249512,
+ 1.9238989353179932,
+ 1.6988080739974976,
+ -0.29515302181243896,
+ -0.4466499090194702,
+ -1.7159076929092407,
+ 0.07351037859916687,
+ -1.1339761018753052,
+ 1.0081299543380737,
+ -0.7341699600219727,
+ -0.5180240869522095,
+ -0.13604848086833954,
+ 0.4893460273742676,
+ -0.1573592722415924,
+ 1.5178285837173462,
+ -0.1626727283000946,
+ -0.746541440486908,
+ 0.3463693857192993,
+ -0.015886269509792328,
+ -0.33905062079429626,
+ -0.9098195433616638,
+ -0.40631914138793945,
+ 0.7762868404388428,
+ 2.5259366035461426,
+ -0.3689165711402893,
+ -0.7242901921272278,
+ -1.2433298826217651,
+ -0.3883807063102722,
+ 2.180875301361084,
+ 0.30694741010665894,
+ 0.5272902250289917,
+ -1.7119343280792236,
+ -0.5828830599784851,
+ 0.026571819558739662,
+ 0.876936674118042,
+ -0.7437622547149658,
+ -0.5561343431472778,
+ 0.22843985259532928,
+ 0.5615748763084412,
+ -1.0477478504180908,
+ 0.8866007328033447,
+ -0.12679046392440796,
+ -0.172902449965477,
+ 0.27951642870903015,
+ 0.24031275510787964,
+ -0.3035103678703308,
+ 0.6764670610427856,
+ 0.9872521162033081,
+ 0.026572979986667633,
+ 0.6317977905273438,
+ -0.7692258954048157,
+ 0.0010383548215031624,
+ 0.26794978976249695,
+ 1.31975519657135,
+ 1.259670615196228,
+ -0.24832965433597565,
+ 1.2560677528381348,
+ 0.004000812768936157,
+ -1.3247931003570557,
+ -0.5724247097969055,
+ -0.8259336352348328,
+ -1.071650505065918,
+ 0.7583997249603271,
+ 0.12332740426063538,
+ -1.277356505393982,
+ 1.1334303617477417,
+ -0.6607608199119568,
+ -1.0321584939956665,
+ -0.3506033718585968,
+ 1.2374346256256104,
+ -0.13796289265155792,
+ -0.04622354358434677,
+ -0.05560213699936867,
+ 0.20367178320884705,
+ -0.6752105355262756,
+ -0.017516233026981354,
+ 0.228244811296463,
+ -0.9435675740242004,
+ 0.9929966926574707,
+ -0.6234782338142395,
+ 0.31607586145401,
+ -0.44482171535491943,
+ 0.20510774850845337,
+ 0.5318105220794678,
+ 0.4869711399078369,
+ 0.4269046485424042,
+ -0.46906790137290955,
+ 1.3324973583221436,
+ -0.3562791347503662,
+ -0.21627016365528107,
+ -0.11836004257202148,
+ -0.5419877767562866,
+ -0.12269581854343414,
+ -0.7483885288238525,
+ -1.4727932214736938,
+ -0.14896385371685028,
+ 1.1317542791366577,
+ -0.8741570115089417,
+ 1.0325050354003906,
+ 0.02788098156452179,
+ -0.4426725506782532,
+ 0.6493927240371704,
+ 1.1782788038253784,
+ 2.0579166412353516,
+ -0.3947434425354004,
+ 1.4339052438735962,
+ 0.17174962162971497,
+ -0.3457476496696472,
+ 0.20471182465553284,
+ 0.3674929738044739,
+ 1.0265586376190186,
+ -0.9161196947097778,
+ 0.6064240336418152,
+ 0.5032230019569397,
+ -0.2449404001235962,
+ -1.6962130069732666,
+ -0.15570655465126038,
+ 0.0731116533279419,
+ 0.4697527289390564,
+ 0.4954277276992798,
+ -0.31239357590675354,
+ 0.8437449932098389,
+ -0.984708845615387,
+ 0.16299642622470856,
+ -0.7315118312835693,
+ -0.356039434671402,
+ -0.9265331625938416,
+ -0.6953984498977661,
+ -0.6872889399528503,
+ -0.30063390731811523,
+ 0.3786489963531494,
+ 1.0836129188537598,
+ 2.30085825920105,
+ -0.531540036201477,
+ 1.2121158838272095,
+ 1.2336840629577637,
+ 1.482519507408142,
+ -0.3532266318798065,
+ -1.360548734664917,
+ 0.4367462694644928,
+ -0.08853779733181,
+ -0.08784772455692291,
+ 0.1940140575170517,
+ 0.10678458213806152,
+ 0.07627733796834946,
+ 0.21507425606250763,
+ 0.39917585253715515,
+ -0.35559749603271484,
+ -0.8478642106056213,
+ 0.47164681553840637,
+ -0.10366632789373398,
+ -0.3924366235733032,
+ -0.5084838271141052,
+ 1.7272377014160156,
+ -0.16061607003211975,
+ 0.7890585660934448,
+ -0.4186539649963379,
+ -0.8384816646575928,
+ -0.695302426815033,
+ -0.09223814308643341,
+ 1.4468345642089844,
+ -0.685546875,
+ -0.6002035140991211,
+ -0.012491822242736816,
+ -0.9191139340400696,
+ 0.21373909711837769,
+ 0.8300676941871643,
+ 0.07306338101625443,
+ 0.2813786566257477,
+ -1.1658375263214111,
+ -0.7577725052833557,
+ -0.9407233595848083,
+ -1.3264561891555786,
+ 0.5997209548950195,
+ 0.5575319528579712,
+ 0.1346876621246338,
+ 1.138498306274414,
+ -1.2712596654891968,
+ -0.6580885052680969,
+ -0.37459707260131836,
+ 0.0654991939663887,
+ -0.6793550252914429,
+ 0.25214484333992004,
+ -0.8226515054702759,
+ 0.3443187177181244,
+ 0.22435910999774933,
+ -0.41143396496772766,
+ -0.31715402007102966,
+ -1.4933245182037354,
+ -0.42364785075187683,
+ 0.09786644577980042,
+ 0.584220826625824,
+ -0.42812877893447876,
+ -0.915978193283081,
+ -1.353831171989441,
+ -0.3226275146007538,
+ -0.10099135339260101,
+ -0.7237997055053711,
+ -0.09822611510753632,
+ -0.16466917097568512,
+ 0.04554549604654312,
+ -2.028669834136963,
+ 0.26572614908218384,
+ 0.3329448401927948,
+ -0.1769062727689743,
+ -0.6579893827438354,
+ 1.1009187698364258,
+ 0.30083516240119934,
+ -0.13090120255947113,
+ 0.19829417765140533,
+ -1.1182581186294556,
+ -1.2572970390319824,
+ 0.9406173825263977,
+ 0.2285405397415161,
+ 0.9828187227249146,
+ -0.8430451154708862,
+ -1.285103678703308,
+ 1.3697245121002197,
+ 0.9900505542755127,
+ -0.3671112060546875,
+ 0.06494692713022232,
+ 0.06321785598993301,
+ -1.3209037780761719,
+ 1.0702297687530518,
+ -0.6586397290229797,
+ -0.007733570411801338,
+ -0.3547969460487366,
+ 0.17756851017475128,
+ -0.12645703554153442,
+ -1.6379621028900146,
+ 1.5177607536315918,
+ 0.16026344895362854,
+ 0.02169550210237503,
+ -2.641566753387451,
+ -0.7310885190963745,
+ 0.6467352509498596,
+ -1.1064332723617554,
+ -0.3770858943462372,
+ -0.13464097678661346,
+ -0.7240558862686157,
+ 0.06905096769332886,
+ -0.49766281247138977,
+ -1.6868634223937988,
+ 0.2340485155582428,
+ -0.05201875418424606,
+ -1.272987961769104,
+ 0.4421941637992859,
+ 0.19511286914348602,
+ 1.9543471336364746,
+ -0.4078123867511749,
+ 1.154126763343811,
+ 0.3183887302875519,
+ -0.08691562712192535,
+ 0.018604662269353867,
+ -0.004540998488664627,
+ 0.5467903017997742,
+ -0.32898685336112976,
+ 0.22634096443653107,
+ -0.20475907623767853,
+ 1.1222097873687744,
+ -0.6343277096748352,
+ -0.5090709328651428,
+ -0.277742475271225,
+ -0.4528070390224457,
+ 0.18406784534454346,
+ -0.2992728054523468,
+ 1.7023557424545288,
+ -0.519677996635437,
+ 0.05000583827495575,
+ -0.40428778529167175,
+ 0.6760047674179077,
+ -0.49057793617248535,
+ 0.574772834777832,
+ -1.1576910018920898,
+ 0.4049971103668213,
+ 0.7805167436599731,
+ -1.205025315284729,
+ 0.6275991201400757,
+ 1.020004153251648,
+ -0.4565214216709137,
+ -0.07195547223091125,
+ 0.18341775238513947,
+ -1.4092795848846436,
+ 0.7582040429115295,
+ -1.3796159029006958,
+ -0.01883310079574585,
+ 1.322432279586792,
+ 0.47652408480644226,
+ 0.07678504288196564,
+ -0.18976463377475739,
+ -0.7055371403694153,
+ -1.4262639284133911,
+ 0.04200541600584984,
+ -0.48850396275520325,
+ -0.4649006426334381,
+ 1.1503390073776245,
+ -0.5794268846511841,
+ 0.5124157667160034,
+ -0.540631115436554,
+ -0.40235552191734314,
+ -0.7849698066711426,
+ -0.07372498512268066,
+ -0.11054512858390808,
+ 1.1163663864135742,
+ 1.930534839630127,
+ -0.21415925025939941,
+ 0.48549145460128784,
+ -0.39390993118286133,
+ 0.9773629307746887,
+ 0.4116193354129791,
+ 1.1959525346755981,
+ 0.991265058517456,
+ -0.621330738067627,
+ -0.31238558888435364,
+ 0.7669398784637451,
+ -0.4099166989326477,
+ 0.008521764539182186,
+ 0.15782515704631805,
+ -1.025831937789917,
+ -0.65254145860672,
+ 2.0740959644317627,
+ -1.0442402362823486,
+ -0.8072599172592163,
+ -0.4464774429798126,
+ 0.6511180996894836,
+ -0.9494736194610596,
+ 0.2726265490055084,
+ 0.7622692584991455,
+ -0.28109997510910034,
+ -0.2593019902706146,
+ 0.9653624892234802,
+ 0.19612634181976318,
+ -0.2596457004547119,
+ 0.8324339389801025,
+ 0.622291624546051,
+ 0.08180335909128189,
+ 0.10617533326148987,
+ 0.7395566701889038,
+ -0.24141842126846313,
+ -0.6268001198768616,
+ 0.9219873547554016,
+ 0.021438775584101677,
+ 0.8380917906761169,
+ -0.05993581935763359,
+ 0.607433021068573,
+ -0.31528031826019287,
+ -0.805635392665863,
+ 0.5087024569511414,
+ -0.15357793867588043,
+ -0.3207626938819885,
+ 0.43483516573905945,
+ 0.1755436807870865,
+ -0.34055161476135254,
+ 0.5656222105026245,
+ 0.35202136635780334,
+ -0.8790273666381836,
+ -0.16460944712162018,
+ 0.26431477069854736,
+ 1.2888431549072266,
+ 0.13046064972877502,
+ -1.2953685522079468,
+ -1.1594051122665405,
+ -0.03364250436425209,
+ -4.21141242980957,
+ 0.34908363223075867,
+ 0.5753947496414185,
+ 0.038039274513721466,
+ -1.2646369934082031,
+ 0.6361868381500244,
+ -1.0329608917236328,
+ -1.4184372425079346,
+ 0.8656371831893921,
+ -0.3644384443759918,
+ -1.0544707775115967,
+ 0.344504714012146,
+ -0.21491257846355438,
+ -1.3303699493408203,
+ 0.5955738425254822,
+ 0.8990607857704163,
+ -0.15532286465168,
+ -0.7152588963508606,
+ 0.7825073003768921,
+ 1.8462207317352295,
+ -0.010490259155631065,
+ 0.06449844688177109,
+ 2.120906352996826,
+ 0.2322956621646881,
+ -0.0008344613015651703,
+ -0.6192339062690735,
+ -1.9688963890075684,
+ 0.7167671322822571,
+ -0.6576223969459534,
+ -1.2489455938339233,
+ -0.7841020226478577,
+ -0.6234598159790039,
+ 1.815015196800232,
+ 1.0763733386993408,
+ 0.8147101402282715,
+ 0.24956855177879333,
+ 0.44871634244918823,
+ -1.1217172145843506,
+ -0.31521108746528625,
+ 0.10609197616577148,
+ 0.21311089396476746,
+ 0.8500818014144897,
+ -0.9034683704376221,
+ 0.2157837450504303,
+ 0.3842087388038635,
+ -0.27011293172836304,
+ 0.4114881753921509,
+ -0.5048624873161316,
+ -0.6745143532752991,
+ -0.9325243234634399,
+ 0.3790512979030609,
+ 0.7612249255180359,
+ 0.4670203924179077,
+ 0.7376556992530823,
+ 0.8876520395278931,
+ -0.8855574131011963,
+ -0.8575488328933716,
+ 1.0370920896530151,
+ -0.8477000594139099,
+ 0.6337350010871887,
+ -0.658988893032074,
+ -0.33472076058387756,
+ -0.9751907587051392,
+ -1.7875521183013916,
+ -0.7950549721717834,
+ 0.5765982866287231,
+ -0.8444961309432983,
+ 1.2100565433502197,
+ 0.6843416690826416,
+ 0.5692279934883118,
+ -1.3641554117202759,
+ -1.0921076536178589,
+ 0.62647545337677,
+ -0.6424551606178284,
+ 0.3248630464076996,
+ 0.9026665091514587,
+ 0.9142006635665894,
+ 0.7290610671043396,
+ -2.2438628673553467,
+ -1.1233583688735962,
+ -0.49456027150154114,
+ -0.9439067244529724,
+ 0.2822161614894867,
+ 0.2835872769355774,
+ 0.32123976945877075,
+ 0.3409396708011627,
+ -0.4724993109703064,
+ 0.1557285189628601,
+ -2.447188138961792,
+ 0.4299542009830475,
+ -1.9177136421203613,
+ -1.0087653398513794,
+ 1.101854920387268,
+ 0.5352159738540649,
+ -0.9343932867050171,
+ 0.01126355491578579,
+ -0.22409072518348694,
+ 0.0646263062953949,
+ -1.004875659942627,
+ -0.8365664482116699,
+ 0.42247945070266724,
+ -0.7189466953277588,
+ 1.0248932838439941,
+ -0.5534313321113586,
+ -0.5788912177085876,
+ -0.5668805241584778,
+ 0.13983280956745148,
+ -0.7406386137008667,
+ -0.42665714025497437,
+ 0.563264787197113,
+ -0.7113365530967712,
+ -0.2510238587856293,
+ 0.3338998854160309,
+ -0.9777317643165588,
+ 0.1507827788591385,
+ 0.9263567924499512,
+ 0.8329513669013977,
+ -0.006636075675487518,
+ -0.5037071108818054,
+ 0.15383978188037872,
+ 0.10478033125400543,
+ -0.8066536784172058,
+ 0.3520379662513733,
+ -1.3989402055740356,
+ 0.5143769979476929,
+ 1.9871609210968018,
+ 0.56645268201828,
+ 1.0172512531280518,
+ 1.1244889497756958,
+ -0.14732050895690918,
+ 0.865662157535553,
+ -1.3478357791900635,
+ 0.21812278032302856,
+ 0.6250021457672119,
+ 1.2182155847549438,
+ -1.3476722240447998,
+ -0.5265400409698486,
+ 0.7321405410766602,
+ 0.01914104074239731,
+ -0.08834746479988098,
+ -0.09007585048675537,
+ 0.09592242538928986,
+ -0.43221738934516907,
+ 0.1876043677330017,
+ -0.5567271709442139,
+ 1.2991036176681519,
+ -0.4081811308860779,
+ 0.6138575077056885,
+ -1.4057353734970093,
+ -0.6133034229278564,
+ 0.7242575287818909,
+ -0.2988085150718689,
+ 0.7651078104972839,
+ 0.604285717010498,
+ 0.9629260301589966,
+ 1.0181225538253784,
+ 0.19142547249794006,
+ -0.508418083190918,
+ 0.6839373707771301,
+ 0.01727137714624405,
+ -0.00034593231976032257,
+ -1.4996576309204102,
+ -0.627162754535675,
+ -0.271623432636261,
+ -0.4460458755493164,
+ 0.18916910886764526,
+ 0.5517013669013977,
+ -0.5159867405891418,
+ -0.3497024178504944,
+ -1.1717504262924194,
+ 0.27589812874794006,
+ 1.3158879280090332,
+ -1.184504747390747,
+ -0.37573543190956116,
+ 0.8226597309112549,
+ -1.415078043937683,
+ 0.8646934032440186,
+ 0.01689373329281807,
+ 0.2090117335319519,
+ -1.4809775352478027,
+ 0.5785529017448425,
+ -0.029496371746063232,
+ -0.47816941142082214,
+ 1.2892255783081055,
+ -0.012853365391492844,
+ 0.18983253836631775,
+ -0.2305736541748047,
+ 0.37245452404022217,
+ -0.717310905456543,
+ 0.4953124523162842,
+ -0.15373149514198303,
+ -0.6628121137619019,
+ 1.1519044637680054,
+ -1.1453766822814941,
+ 0.9838641881942749,
+ -0.2215934842824936,
+ -0.5292319059371948,
+ 0.36203473806381226,
+ 0.5414028167724609,
+ 0.2632870674133301,
+ -0.5567426085472107,
+ 0.4287704527378082,
+ 0.6778624057769775,
+ -0.6920561790466309,
+ -0.6252822875976562,
+ 0.2328214794397354,
+ -0.38297659158706665,
+ -0.22782060503959656,
+ 0.42851728200912476,
+ 0.42052161693573,
+ -0.7770392298698425,
+ -0.30934393405914307,
+ -0.8405189514160156,
+ 1.190050721168518,
+ -1.2073606252670288,
+ 0.7493983507156372,
+ 0.5124196410179138,
+ -0.36831140518188477,
+ 0.8770961761474609,
+ 0.8441399931907654,
+ 1.4253100156784058,
+ 0.40631163120269775,
+ -0.6458932757377625,
+ 0.8145003318786621,
+ 0.224700927734375,
+ 0.5569019317626953,
+ -1.0006988048553467,
+ 0.17772351205348969,
+ -0.8155402541160583,
+ -0.15611590445041656,
+ 0.7577298879623413,
+ 0.48510226607322693,
+ 0.6854528784751892,
+ 1.1742843389511108,
+ 0.6079753041267395,
+ 0.44277822971343994,
+ -0.13045181334018707,
+ -0.45574939250946045,
+ -0.14361408352851868,
+ -0.5842359066009521,
+ 0.18540914356708527,
+ 0.1709177941083908,
+ -0.3416042625904083,
+ 0.5748975872993469
+ ]
+ },
+ {
+ "key": 2,
+ "name": "Christian Grey",
+ "type": "movie",
+ "media": "50 Shades of Grey",
+ "label": [
+ "BDSM",
+ "Caring",
+ "Dominant",
+ "Mysterious",
+ "Private"
+ ],
+ "embedding": [
+ -0.641779899597168,
+ 0.03177737072110176,
+ -1.3540120124816895,
+ -0.35137203335762024,
+ -1.5115057229995728,
+ -0.504022479057312,
+ 1.0736626386642456,
+ -0.8745614886283875,
+ -0.705489456653595,
+ 0.9412338137626648,
+ 0.014984529465436935,
+ 0.5499830842018127,
+ -1.8323944807052612,
+ -0.4734390676021576,
+ 0.6767491102218628,
+ -0.2008759081363678,
+ 0.31504026055336,
+ -0.47474709153175354,
+ -0.9165835380554199,
+ -0.820697009563446,
+ -1.04000723361969,
+ 1.4383231401443481,
+ -0.665213406085968,
+ 0.14371025562286377,
+ -0.19992253184318542,
+ 0.9555927515029907,
+ -1.0141830444335938,
+ -0.06204933673143387,
+ -0.7117618322372437,
+ -0.40557196736335754,
+ 0.16447117924690247,
+ -0.4455748200416565,
+ 0.37974855303764343,
+ 0.1730193793773651,
+ 1.2165617942810059,
+ -1.1407454013824463,
+ 0.45053964853286743,
+ -0.37193524837493896,
+ -1.237018346786499,
+ 1.4461910724639893,
+ 1.5362415313720703,
+ 0.41292959451675415,
+ 1.3112785816192627,
+ -1.2634990215301514,
+ 0.16726645827293396,
+ -0.24986222386360168,
+ -0.12499266862869263,
+ -0.05468308925628662,
+ 0.32910576462745667,
+ -0.20072896778583527,
+ 0.16762258112430573,
+ 0.08191945403814316,
+ 0.4361919164657593,
+ -0.8090243935585022,
+ 0.3291734457015991,
+ 0.4846506714820862,
+ 0.7081859707832336,
+ -1.0977046489715576,
+ 0.39608290791511536,
+ -1.3563395738601685,
+ -0.6186361312866211,
+ 0.42927998304367065,
+ 0.36488211154937744,
+ -0.1313754916191101,
+ 1.4194201231002808,
+ 1.6934326887130737,
+ 0.4618084132671356,
+ -0.2998524606227875,
+ 0.5211116671562195,
+ -1.4334131479263306,
+ -0.5484989285469055,
+ -0.4337528944015503,
+ 0.8514580130577087,
+ -0.06443643569946289,
+ -1.1116811037063599,
+ 0.5814032554626465,
+ -0.6426804661750793,
+ -0.1507648527622223,
+ -0.7566454410552979,
+ 0.7063093781471252,
+ -0.05912138521671295,
+ 0.22518834471702576,
+ 0.3785388171672821,
+ 0.7124698758125305,
+ -0.6115304231643677,
+ 1.266632080078125,
+ 0.28428587317466736,
+ 0.698220431804657,
+ 0.6591566801071167,
+ -0.3165833055973053,
+ -0.3303004801273346,
+ -0.3681568503379822,
+ 1.5481234788894653,
+ -1.3848401308059692,
+ -0.6550746560096741,
+ 0.4455520808696747,
+ -0.14650923013687134,
+ -0.1882392317056656,
+ 0.6595777869224548,
+ 0.8511504530906677,
+ 0.3551076352596283,
+ -0.017465954646468163,
+ 0.11289967596530914,
+ 0.07997065037488937,
+ -0.824841320514679,
+ -1.690775990486145,
+ 0.34880781173706055,
+ 1.8265184164047241,
+ 0.15155796706676483,
+ 0.522351861000061,
+ 0.5146071910858154,
+ 0.1998155564069748,
+ -0.0975203737616539,
+ 0.776784360408783,
+ -0.019567525014281273,
+ -0.09117688238620758,
+ 0.04131383076310158,
+ -0.9378847479820251,
+ -0.5768235921859741,
+ -0.7964629530906677,
+ 0.6592724919319153,
+ -0.0054085999727249146,
+ -0.8115034699440002,
+ -1.2128102779388428,
+ 0.3954763114452362,
+ -1.174193024635315,
+ -0.22789080440998077,
+ 0.00228683277964592,
+ -0.9071266055107117,
+ 0.03825829178094864,
+ 0.9229549169540405,
+ 0.3957499563694,
+ -0.06836876273155212,
+ -1.3009589910507202,
+ -1.3338263034820557,
+ -1.7456289529800415,
+ 0.755049467086792,
+ 0.5288494229316711,
+ -0.014188006520271301,
+ -0.1404624581336975,
+ 0.6059256792068481,
+ 0.8654226660728455,
+ 0.8555160164833069,
+ -2.0994415283203125,
+ -0.22874006628990173,
+ -1.1264797449111938,
+ 1.0467876195907593,
+ 0.06964151561260223,
+ -0.15434356033802032,
+ -0.6084979176521301,
+ 1.8862115144729614,
+ -0.38420671224594116,
+ 0.34865260124206543,
+ 1.106107473373413,
+ 0.19548845291137695,
+ -0.7755422592163086,
+ 0.29162734746932983,
+ 0.14654359221458435,
+ 1.0983556509017944,
+ 1.1544722318649292,
+ 0.7181268334388733,
+ -0.3865460753440857,
+ 0.6055632829666138,
+ -0.13244187831878662,
+ -0.17453984916210175,
+ -0.5458958148956299,
+ 1.0068920850753784,
+ 1.0832120180130005,
+ 0.016013450920581818,
+ 0.3578391671180725,
+ 0.8119398951530457,
+ -1.8082056045532227,
+ -0.4430760145187378,
+ 0.49275344610214233,
+ 0.9128503799438477,
+ 0.14238572120666504,
+ 0.6310839056968689,
+ 0.5956188440322876,
+ 0.4079262316226959,
+ -1.0976489782333374,
+ 0.7395498156547546,
+ 0.7305409908294678,
+ -0.5183210372924805,
+ 0.23206189274787903,
+ -0.5317401885986328,
+ -0.9524262547492981,
+ -1.035165548324585,
+ 0.3317740857601166,
+ 0.6543170809745789,
+ 0.7454997301101685,
+ -0.6414925456047058,
+ -1.0176169872283936,
+ -0.5241962671279907,
+ -0.9060376882553101,
+ 0.3446512222290039,
+ 0.9301629066467285,
+ 0.19723781943321228,
+ -0.6543275117874146,
+ 0.13712549209594727,
+ -1.746118426322937,
+ 0.2833172678947449,
+ 0.9413588047027588,
+ 1.5061185359954834,
+ -0.7378313541412354,
+ -0.43176183104515076,
+ -0.6107893586158752,
+ 0.33621978759765625,
+ -0.3993494212627411,
+ 1.006381630897522,
+ -0.264043390750885,
+ -0.032811813056468964,
+ 0.3323732912540436,
+ -1.0582093000411987,
+ -0.6970270276069641,
+ -1.5669989585876465,
+ -1.1763700246810913,
+ 0.5093289017677307,
+ 0.31029704213142395,
+ -0.14682923257350922,
+ -0.1927955150604248,
+ -0.9290329813957214,
+ 0.8629969954490662,
+ -0.21284857392311096,
+ 0.06006293743848801,
+ 0.3234371244907379,
+ 0.4400618076324463,
+ 0.3442676067352295,
+ 1.4352227449417114,
+ 0.7605988383293152,
+ 1.1722465753555298,
+ -0.27665525674819946,
+ -0.4159422814846039,
+ 0.231486976146698,
+ 0.743783175945282,
+ -0.025003980845212936,
+ -0.050636887550354004,
+ -0.7698251605033875,
+ 0.12690478563308716,
+ 1.2402993440628052,
+ 0.9859218597412109,
+ 0.008017797023057938,
+ -0.5163713693618774,
+ 0.8585802912712097,
+ 0.0718579888343811,
+ -1.2621315717697144,
+ 0.08427796512842178,
+ 0.8817648887634277,
+ -0.40668395161628723,
+ 0.49304860830307007,
+ -0.23598039150238037,
+ 0.7178204655647278,
+ -0.30813655257225037,
+ -1.1979068517684937,
+ 0.16084200143814087,
+ 0.29163241386413574,
+ 0.08084451407194138,
+ 0.09317134320735931,
+ -0.8029153943061829,
+ -0.5320111513137817,
+ -0.4123671054840088,
+ -0.39407941699028015,
+ 1.0066057443618774,
+ -0.3980283737182617,
+ 0.34762677550315857,
+ 0.3415280878543854,
+ -0.8134375810623169,
+ 0.6316964030265808,
+ -0.305311381816864,
+ 0.2450898289680481,
+ 0.28466522693634033,
+ 0.4590970575809479,
+ 0.10886451601982117,
+ 0.3335954248905182,
+ -0.10113419592380524,
+ -0.3255578875541687,
+ 0.7327951192855835,
+ -0.5415253639221191,
+ -0.8118698596954346,
+ -0.2788841128349304,
+ 0.52314293384552,
+ 1.0670815706253052,
+ 0.28619831800460815,
+ -0.2053157389163971,
+ 0.36901867389678955,
+ 1.0482147932052612,
+ -0.5245116949081421,
+ -0.5302649140357971,
+ -0.6240211129188538,
+ 0.48093491792678833,
+ -1.2894231081008911,
+ 0.35684600472450256,
+ -0.2885735034942627,
+ 1.5628414154052734,
+ 0.1927584558725357,
+ -0.7866962552070618,
+ -0.7666223645210266,
+ -0.5846961140632629,
+ -4.033330917358398,
+ 0.7829115390777588,
+ 0.21526367962360382,
+ -0.2889794707298279,
+ 0.7260012030601501,
+ 0.058169297873973846,
+ -0.8238844871520996,
+ 0.6654417514801025,
+ -0.8565649390220642,
+ -0.1959320306777954,
+ 0.9895130395889282,
+ -1.199237585067749,
+ -0.33784928917884827,
+ 0.56919926404953,
+ -1.2375378608703613,
+ -0.3624277710914612,
+ 0.457265704870224,
+ -0.20269747078418732,
+ -0.7365899682044983,
+ -1.0066275596618652,
+ -0.02201775088906288,
+ -0.028881218284368515,
+ 1.4568530321121216,
+ 1.452528476715088,
+ 0.24889522790908813,
+ 0.971200168132782,
+ 1.0832630395889282,
+ -0.25815916061401367,
+ -0.9755820035934448,
+ -0.015027791261672974,
+ 0.07341986894607544,
+ 0.6480038166046143,
+ -0.18818901479244232,
+ 1.5328646898269653,
+ 0.2982010841369629,
+ 0.41108497977256775,
+ -0.5807107090950012,
+ -0.008049048483371735,
+ 0.6242904663085938,
+ -0.5394701361656189,
+ 0.28955450654029846,
+ 0.3984754681587219,
+ -1.2588117122650146,
+ 0.28611212968826294,
+ 0.4862772822380066,
+ -0.2493933141231537,
+ 0.3341656029224396,
+ -0.15401749312877655,
+ -0.05712061747908592,
+ 0.18018627166748047,
+ 1.1737732887268066,
+ -0.11900166422128677,
+ 0.4946554899215698,
+ 0.2682171165943146,
+ -1.0759838819503784,
+ -0.4895652234554291,
+ -0.27130138874053955,
+ -0.36921489238739014,
+ -0.2398787885904312,
+ 0.7785485982894897,
+ -1.2919185161590576,
+ -1.2911689281463623,
+ 0.7280510663986206,
+ -0.12474314868450165,
+ -0.8519774079322815,
+ -0.06492897868156433,
+ -0.5051551461219788,
+ -0.071893110871315,
+ 1.4277008771896362,
+ -0.09971646219491959,
+ 0.49061596393585205,
+ -1.3486648797988892,
+ 0.3815903067588806,
+ -0.37249556183815,
+ -0.08805260807275772,
+ 0.013369569554924965,
+ -0.3744102418422699,
+ -0.9634501934051514,
+ -0.3971497118473053,
+ -1.8913421630859375,
+ -0.25028350949287415,
+ -0.01981312781572342,
+ -0.15467990934848785,
+ 0.5442914962768555,
+ 0.0645933598279953,
+ -1.5434499979019165,
+ -0.06461955606937408,
+ 1.1260788440704346,
+ 1.3838773965835571,
+ 5.923635005950928,
+ 1.1207524538040161,
+ 0.22351866960525513,
+ -0.3967123329639435,
+ 0.9414955377578735,
+ 0.022942401468753815,
+ -0.08587689697742462,
+ 0.8526423573493958,
+ 0.27640390396118164,
+ -0.5560352802276611,
+ 0.39532122015953064,
+ 0.697363555431366,
+ -0.5735930800437927,
+ 0.5239760279655457,
+ -0.6705711483955383,
+ 0.5932459831237793,
+ -0.49678221344947815,
+ -1.7077453136444092,
+ 2.1010661125183105,
+ -0.3785899579524994,
+ 0.60076904296875,
+ 0.21905484795570374,
+ 0.5481229424476624,
+ -0.15722718834877014,
+ -0.03723909333348274,
+ -0.576001763343811,
+ -0.22407527267932892,
+ 0.535759449005127,
+ -0.9210917353630066,
+ 1.0659419298171997,
+ -0.8559780716896057,
+ 0.7201180458068848,
+ 1.7068101167678833,
+ 0.2844761312007904,
+ -0.21610629558563232,
+ -0.7969790697097778,
+ -0.9329385161399841,
+ -0.7137275338172913,
+ -1.2555440664291382,
+ 1.4198848009109497,
+ -2.202101230621338,
+ -0.3371797800064087,
+ -0.2608407139778137,
+ -0.7181169986724854,
+ 0.2772786617279053,
+ 0.5821688175201416,
+ 0.10599631816148758,
+ 0.43310680985450745,
+ 0.5283573269844055,
+ -0.6462786793708801,
+ 0.2260836362838745,
+ -1.4265239238739014,
+ 0.30274084210395813,
+ -0.3624803423881531,
+ 0.3342123329639435,
+ -0.32159823179244995,
+ 0.20219653844833374,
+ -1.0063432455062866,
+ -0.7799496054649353,
+ 2.085726022720337,
+ 0.8381955027580261,
+ 0.6715478301048279,
+ -2.468151330947876,
+ 0.1861570179462433,
+ 0.18628212809562683,
+ 1.481024146080017,
+ 1.0905026197433472,
+ -0.8149076104164124,
+ 0.18706069886684418,
+ 0.008782600983977318,
+ 0.03319287300109863,
+ 0.38996443152427673,
+ 0.6323531866073608,
+ -0.014916274696588516,
+ 0.6666658520698547,
+ 0.9420283436775208,
+ -0.15040160715579987,
+ 0.4379218518733978,
+ 1.1242516040802002,
+ -0.31190919876098633,
+ 0.11831839382648468,
+ -0.4762863218784332,
+ 0.6711845993995667,
+ -0.4544706344604492,
+ 0.6045134663581848,
+ 0.47658032178878784,
+ -0.9016404151916504,
+ 1.1720918416976929,
+ 0.1274770200252533,
+ -0.15402188897132874,
+ -0.6800135374069214,
+ -0.4529901444911957,
+ -0.494613915681839,
+ -0.20668967068195343,
+ -0.3069268465042114,
+ -1.3403923511505127,
+ 0.35909220576286316,
+ 0.5411009192466736,
+ -0.7386426329612732,
+ -0.10771627724170685,
+ 0.7124879360198975,
+ -0.8474370241165161,
+ -0.2056191861629486,
+ -0.6377461552619934,
+ 0.955367922782898,
+ -0.24815323948860168,
+ -0.1599181741476059,
+ 0.12836432456970215,
+ -0.7870268821716309,
+ 0.4113587737083435,
+ -0.1397826224565506,
+ 1.0817596912384033,
+ -1.0281906127929688,
+ -0.38113710284233093,
+ 0.4213304817676544,
+ 0.45220357179641724,
+ 0.38471630215644836,
+ -0.4012882113456726,
+ -0.018422365188598633,
+ -0.11740315705537796,
+ -1.1633914709091187,
+ -0.40213561058044434,
+ 0.11747872829437256,
+ -0.13767756521701813,
+ -1.21475350856781,
+ -1.2830994129180908,
+ 0.26624584197998047,
+ 0.9382166266441345,
+ -0.5028825998306274,
+ -0.12164133787155151,
+ -0.8758828043937683,
+ -0.6130377054214478,
+ -0.10279414057731628,
+ 0.745843768119812,
+ 1.6157716512680054,
+ -0.6823022961616516,
+ 1.3908326625823975,
+ -0.06841515004634857,
+ 1.14790678024292,
+ 0.3684278130531311,
+ 0.4102543294429779,
+ -0.6047756671905518,
+ -1.0923945903778076,
+ 1.1127859354019165,
+ 0.062290288507938385,
+ -0.13094016909599304,
+ -2.1079375743865967,
+ -0.16969060897827148,
+ -0.6529718637466431,
+ 0.8412983417510986,
+ 0.34177520871162415,
+ 0.8162763118743896,
+ -0.0720878317952156,
+ -1.2962466478347778,
+ -0.07612983882427216,
+ 0.626102864742279,
+ -0.42849671840667725,
+ -1.4306187629699707,
+ -1.4771367311477661,
+ -1.1596198081970215,
+ 0.04592743143439293,
+ -0.28096240758895874,
+ 0.6799731850624084,
+ 1.9272501468658447,
+ -1.116510272026062,
+ 0.456218957901001,
+ 0.39906641840934753,
+ 0.6146168112754822,
+ -0.4153720438480377,
+ -1.0193769931793213,
+ -0.08480655401945114,
+ -0.3198322057723999,
+ -0.34744831919670105,
+ 1.1597833633422852,
+ 0.4743815064430237,
+ -0.17376500368118286,
+ -0.7484235763549805,
+ -0.5249136686325073,
+ 0.48100823163986206,
+ -0.7156429290771484,
+ 0.4496842622756958,
+ -0.5066404938697815,
+ -1.3146566152572632,
+ 0.15427687764167786,
+ 1.7375940084457397,
+ 0.19640380144119263,
+ 0.670562744140625,
+ -0.549964189529419,
+ -0.6633843183517456,
+ -0.40981078147888184,
+ 0.061238229274749756,
+ 1.7181051969528198,
+ -0.1790962815284729,
+ -0.5752722024917603,
+ 0.24644750356674194,
+ 0.38558268547058105,
+ 0.5132750272750854,
+ 0.7810498476028442,
+ 0.663241446018219,
+ 0.1280950903892517,
+ -1.1999919414520264,
+ -0.34984636306762695,
+ 0.44600242376327515,
+ -0.5955732464790344,
+ 0.25690266489982605,
+ 0.5773437023162842,
+ -0.36763566732406616,
+ 0.8580222129821777,
+ 0.3874475657939911,
+ -1.2592936754226685,
+ -0.6578226089477539,
+ 0.4704042375087738,
+ -0.23969604074954987,
+ 0.5100834369659424,
+ -0.30973660945892334,
+ -0.3087948262691498,
+ 0.19585342705249786,
+ 0.33654627203941345,
+ -1.6632795333862305,
+ -0.5917710661888123,
+ 0.021817021071910858,
+ 0.31020307540893555,
+ 0.24260219931602478,
+ -1.1048251390457153,
+ -1.1422228813171387,
+ -0.8070906400680542,
+ 0.2745245695114136,
+ -1.1785926818847656,
+ 0.09259995818138123,
+ 0.35665956139564514,
+ -0.10484524071216583,
+ 0.6224948167800903,
+ -1.7874246835708618,
+ 0.1853184700012207,
+ -1.4811333417892456,
+ -0.21878261864185333,
+ 0.35671454668045044,
+ 0.8557184338569641,
+ 0.36943769454956055,
+ -0.5034531950950623,
+ 0.45574161410331726,
+ -1.4743858575820923,
+ -0.4870273470878601,
+ 0.11078247427940369,
+ -0.1602598875761032,
+ 1.3384487628936768,
+ -1.2814027070999146,
+ 0.01087748259305954,
+ 1.8693584203720093,
+ 0.8246941566467285,
+ -0.7595504522323608,
+ -0.3888750970363617,
+ 0.16361786425113678,
+ -1.1866039037704468,
+ 0.08888961374759674,
+ -0.8957682847976685,
+ -0.5531471371650696,
+ 0.029600156471133232,
+ -0.46067118644714355,
+ -0.8063685297966003,
+ -1.4029675722122192,
+ 1.3553038835525513,
+ -0.6052427887916565,
+ 0.20428550243377686,
+ -2.338144302368164,
+ 0.8995005488395691,
+ -0.07972012460231781,
+ 0.53294438123703,
+ 0.04143134504556656,
+ -0.691794753074646,
+ 0.5507431626319885,
+ -0.19145166873931885,
+ -1.3077855110168457,
+ -0.20329387485980988,
+ 0.5540876984596252,
+ 1.1692075729370117,
+ -1.6587998867034912,
+ 1.2334667444229126,
+ 0.6029390692710876,
+ 1.2573291063308716,
+ -0.8391298055648804,
+ 1.5304597616195679,
+ -0.24816718697547913,
+ 0.6369237899780273,
+ 0.5494204759597778,
+ 0.8770820498466492,
+ -0.74148029088974,
+ 0.6029798984527588,
+ 0.016658809036016464,
+ -0.4194531738758087,
+ 0.3086127042770386,
+ -0.054128535091876984,
+ -0.8794705271720886,
+ 1.2155379056930542,
+ -1.0756690502166748,
+ -0.42011749744415283,
+ -0.1504887491464615,
+ 1.051278829574585,
+ -0.18762388825416565,
+ -0.7476758360862732,
+ -0.7038778066635132,
+ 1.2765642404556274,
+ -0.5799261927604675,
+ -0.6995583772659302,
+ -0.04854506626725197,
+ -0.7192485332489014,
+ 0.5883392691612244,
+ -2.150864362716675,
+ 0.5779917240142822,
+ 0.8447909951210022,
+ -0.19116505980491638,
+ 0.03931691497564316,
+ 0.17536450922489166,
+ -0.4161830246448517,
+ -0.23711082339286804,
+ -0.010137906298041344,
+ -0.7525566220283508,
+ 1.1375138759613037,
+ -0.5637031197547913,
+ 0.1959584802389145,
+ -0.32435351610183716,
+ 0.3320470452308655,
+ -0.6782844662666321,
+ 0.3382687568664551,
+ 0.2736056447029114,
+ -0.026804765686392784,
+ 0.1301342248916626,
+ -0.47875043749809265,
+ 0.1926678717136383,
+ -0.7540497183799744,
+ -1.2731256484985352,
+ -1.054963231086731,
+ 0.10584840178489685,
+ -0.7277040481567383,
+ 1.164684772491455,
+ 1.4761409759521484,
+ 1.1527724266052246,
+ 0.053669966757297516,
+ 1.0676734447479248,
+ 0.4544216990470886,
+ -0.3488251268863678,
+ -0.03296075761318207,
+ -0.12413489818572998,
+ -0.4511817991733551,
+ 0.09084135293960571,
+ 0.5052719116210938,
+ -0.02788105607032776,
+ -0.12193771451711655,
+ -0.9367602467536926,
+ -1.0269317626953125,
+ -0.25384247303009033,
+ 0.5564804077148438,
+ 0.10110029578208923,
+ -1.0318224430084229,
+ 0.05478852987289429,
+ 0.9949029684066772,
+ -1.2068095207214355,
+ -0.10912899672985077,
+ -0.23070254921913147,
+ 0.4562912583351135,
+ -0.8907257318496704,
+ 0.6818834543228149,
+ -0.349440336227417,
+ 0.057949431240558624,
+ -0.12169221043586731,
+ 0.3586486876010895,
+ 0.24174617230892181,
+ -0.2255576103925705,
+ 1.102432131767273,
+ -0.40773439407348633,
+ -0.11736626923084259,
+ -1.017362356185913,
+ 0.10290568321943283,
+ 1.2274760007858276,
+ -1.1554309129714966,
+ 1.0727952718734741,
+ -0.3303818702697754,
+ -0.058145277202129364,
+ 0.6472989916801453,
+ -0.2888590395450592,
+ -0.346809983253479,
+ 0.6060439348220825,
+ 1.1312611103057861,
+ -0.792887270450592,
+ 0.22120437026023865,
+ 0.01744929887354374,
+ -1.2385640144348145,
+ 0.26205703616142273,
+ 0.1628032624721527,
+ 0.3333457112312317,
+ -0.5245915651321411,
+ 0.4149283766746521,
+ -0.6761166453361511,
+ -0.04739394411444664,
+ -4.295731067657471,
+ -0.05623859167098999,
+ 0.2555537521839142,
+ -1.332513451576233,
+ -1.7334493398666382,
+ -0.27864253520965576,
+ 0.042742326855659485,
+ -0.8779314756393433,
+ 0.34061527252197266,
+ -0.5503886938095093,
+ -0.46829119324684143,
+ 0.6571397185325623,
+ 0.9705821871757507,
+ -0.618179440498352,
+ 0.39623960852622986,
+ 0.9635816812515259,
+ 0.5590202808380127,
+ -0.604564368724823,
+ 0.039393071085214615,
+ 2.1871681213378906,
+ -0.1722983717918396,
+ 0.50749671459198,
+ -0.3426184356212616,
+ 0.9303714036941528,
+ -0.04383695125579834,
+ -0.5277815461158752,
+ 0.029964148998260498,
+ 0.8082872629165649,
+ -1.4593570232391357,
+ -1.0825886726379395,
+ -0.18290412425994873,
+ -1.6612181663513184,
+ 1.2946380376815796,
+ 1.7829004526138306,
+ 0.9258652329444885,
+ 0.3907882273197174,
+ 0.7125898003578186,
+ -1.2705061435699463,
+ -1.4774240255355835,
+ 0.1587604582309723,
+ 0.8929833173751831,
+ 0.03890415281057358,
+ -0.856880247592926,
+ 0.32844874262809753,
+ -0.23855379223823547,
+ -0.40017759799957275,
+ 1.1911383867263794,
+ -0.30247557163238525,
+ -0.9988833665847778,
+ 0.17792418599128723,
+ 0.6728686094284058,
+ 1.3488761186599731,
+ 0.1751786470413208,
+ 0.6802142262458801,
+ 0.45650216937065125,
+ -1.063192367553711,
+ -0.2831791341304779,
+ 0.24606084823608398,
+ 0.2810869812965393,
+ 1.1135648488998413,
+ 0.3164878487586975,
+ 0.19321326911449432,
+ -0.5620285272598267,
+ -1.432605266571045,
+ -0.2784079611301422,
+ 0.400560587644577,
+ -1.5913887023925781,
+ 0.09931743144989014,
+ 0.33868879079818726,
+ 1.5349023342132568,
+ -0.7925862669944763,
+ -0.7258550524711609,
+ 0.44969719648361206,
+ -0.5920366048812866,
+ 0.3711076080799103,
+ -0.35129910707473755,
+ 0.5388162732124329,
+ 0.6454861760139465,
+ -1.248339295387268,
+ -1.6341580152511597,
+ -1.5193226337432861,
+ -0.8806661367416382,
+ 0.2058039903640747,
+ -0.5580443739891052,
+ 1.2173283100128174,
+ 0.004338102415204048,
+ -0.21118272840976715,
+ 0.32663536071777344,
+ -1.4458171129226685,
+ 0.3733014464378357,
+ -1.2713674306869507,
+ -0.9100370407104492,
+ 1.3984127044677734,
+ 0.26998791098594666,
+ -1.5866810083389282,
+ 0.39675024151802063,
+ -0.7759220004081726,
+ 0.893754243850708,
+ -0.9645577073097229,
+ -0.5907274484634399,
+ -0.4231119751930237,
+ -0.2218637466430664,
+ -0.7830109000205994,
+ 0.07622037082910538,
+ -0.6126464009284973,
+ -0.7665963768959045,
+ 0.537307620048523,
+ -0.11583301424980164,
+ -1.1513731479644775,
+ -0.9727737307548523,
+ -0.11930545419454575,
+ 0.5368834733963013,
+ 0.200139120221138,
+ -0.5291394591331482,
+ -0.5114457607269287,
+ 0.6605852842330933,
+ 0.4021933674812317,
+ 0.4902878403663635,
+ -0.7163500785827637,
+ 0.06615818291902542,
+ 0.39680707454681396,
+ -0.5885503888130188,
+ -0.1000172346830368,
+ -1.4023840427398682,
+ 0.42424479126930237,
+ 1.251057744026184,
+ 0.8013465404510498,
+ 1.068491816520691,
+ 1.3864095211029053,
+ -0.8118207454681396,
+ 0.885468602180481,
+ -1.2084805965423584,
+ 1.414223313331604,
+ 1.5454366207122803,
+ 0.1462855041027069,
+ -1.1574442386627197,
+ 0.6862847208976746,
+ 0.629711925983429,
+ -0.024503525346517563,
+ -0.591924250125885,
+ -1.261322259902954,
+ -0.5132631063461304,
+ -0.44395002722740173,
+ 0.13566391170024872,
+ -0.8921465277671814,
+ 0.32910406589508057,
+ 0.11329302191734314,
+ 0.588909387588501,
+ -1.8154895305633545,
+ -1.2732634544372559,
+ -0.1879706233739853,
+ -0.9387450218200684,
+ -0.02061852067708969,
+ 1.3852946758270264,
+ 0.5511458516120911,
+ 1.2191450595855713,
+ -0.5473182201385498,
+ 0.5435233116149902,
+ 0.9883195161819458,
+ -0.38520297408103943,
+ 0.838503360748291,
+ -0.8549128770828247,
+ -0.6498332023620605,
+ -1.493038535118103,
+ -0.45078110694885254,
+ 0.34754619002342224,
+ 0.5971342921257019,
+ -0.6373798847198486,
+ 0.4828096032142639,
+ -0.17990483343601227,
+ 0.2831198573112488,
+ 1.686792254447937,
+ -0.7117591500282288,
+ 0.8889277577400208,
+ 0.6033833026885986,
+ 0.13203652203083038,
+ 0.17102870345115662,
+ -0.6637462973594666,
+ 0.402244508266449,
+ -1.311846137046814,
+ 0.7660702466964722,
+ -0.030057068914175034,
+ 0.21865113079547882,
+ 1.0362887382507324,
+ 1.6974486112594604,
+ 0.48825597763061523,
+ -0.908001720905304,
+ -0.036993950605392456,
+ 0.46883663535118103,
+ -0.2283831387758255,
+ 0.6945293545722961,
+ -0.3056880235671997,
+ 0.40329357981681824,
+ -1.1540613174438477,
+ 0.3909239172935486,
+ -0.019388578832149506,
+ -0.743374764919281,
+ 0.5069979429244995,
+ 0.04089350253343582,
+ 0.34554392099380493,
+ -0.47915107011795044,
+ -0.17599250376224518,
+ 0.15789289772510529,
+ -0.9170243144035339,
+ -0.7360209822654724,
+ 0.4296848177909851,
+ -0.4124668538570404,
+ -0.12160146981477737,
+ -0.859825611114502,
+ 0.11193373799324036,
+ -0.3290078639984131,
+ -0.5243054032325745,
+ -0.21323566138744354,
+ 0.5151247382164001,
+ -0.569595992565155,
+ 0.518437922000885,
+ -0.20612400770187378,
+ 0.043705400079488754,
+ 0.8405377268791199,
+ 0.8169645071029663,
+ 0.889077365398407,
+ 0.3091329336166382,
+ -0.8027288317680359,
+ 0.7554377913475037,
+ 0.49819254875183105,
+ 0.637477695941925,
+ -0.3441367447376251,
+ 0.5691964030265808,
+ -0.07291894406080246,
+ 0.383585661649704,
+ 0.6511408686637878,
+ -0.22605761885643005,
+ 0.9183389544487,
+ 0.5652324557304382,
+ 0.7594414949417114,
+ 0.7201747298240662,
+ -0.3697378933429718,
+ 0.07779182493686676,
+ -0.091946080327034,
+ 0.3383701741695404,
+ 1.8622171878814697,
+ -0.4511550962924957,
+ 0.7827509641647339,
+ 0.8240880966186523
+ ]
+ },
+ {
+ "key": 3,
+ "name": "Maddy Perez",
+ "type": "TV series",
+ "media": "Euphoria",
+ "label": [
+ "Adventurous",
+ "Confident",
+ "Independent",
+ "Passionate",
+ "Protective",
+ "Sensual"
+ ],
+ "embedding": [
+ -1.0475518703460693,
+ -0.3937600255012512,
+ -0.4951561391353607,
+ -0.25244981050491333,
+ -1.116165280342102,
+ -1.4471441507339478,
+ -0.08260035514831543,
+ -0.8750036954879761,
+ -0.09981559216976166,
+ 0.09399889409542084,
+ 0.11778824031352997,
+ -0.5278661251068115,
+ -2.1040284633636475,
+ -0.8624188899993896,
+ 1.8203612565994263,
+ 1.6765244007110596,
+ 0.23532134294509888,
+ 0.20461495220661163,
+ -0.4636339545249939,
+ -1.277566909790039,
+ -0.6047769784927368,
+ 0.38333508372306824,
+ -0.7059195637702942,
+ -0.06610769778490067,
+ -0.9964010119438171,
+ 0.017373332753777504,
+ 0.07315882295370102,
+ 0.3373109996318817,
+ -0.6726834177970886,
+ 0.5322297811508179,
+ 0.07829269021749496,
+ -0.0538262240588665,
+ -0.09678465873003006,
+ -0.26800310611724854,
+ 0.3307971656322479,
+ -0.5456286668777466,
+ -0.0048865340650081635,
+ -0.44310450553894043,
+ -1.1269264221191406,
+ 1.0180108547210693,
+ 0.7484744191169739,
+ -1.569048285484314,
+ 0.9951736927032471,
+ -0.9055948257446289,
+ 0.5377143025398254,
+ -0.3049018383026123,
+ 0.2963438630104065,
+ -0.4204972982406616,
+ 0.05754729360342026,
+ 0.2433098554611206,
+ 0.3669966161251068,
+ 0.4057100713253021,
+ 1.4419933557510376,
+ -0.39798465371131897,
+ -0.5171747207641602,
+ 0.4043480455875397,
+ 0.15238705277442932,
+ -0.7249968647956848,
+ -0.546421229839325,
+ -1.4417258501052856,
+ -1.498241662979126,
+ 0.16561181843280792,
+ -0.5281647443771362,
+ -0.011541672050952911,
+ -0.1602010279893875,
+ 1.4953972101211548,
+ -0.17571477591991425,
+ -0.4688870310783386,
+ 0.681067168712616,
+ -0.978499710559845,
+ -0.37033504247665405,
+ 0.17492061853408813,
+ -0.6013454794883728,
+ 0.45812487602233887,
+ -1.975157618522644,
+ 0.4302726686000824,
+ -0.06416673958301544,
+ -0.7867124080657959,
+ -0.4139324724674225,
+ 0.5774862170219421,
+ 0.15560759603977203,
+ 0.017830021679401398,
+ 0.21876809000968933,
+ 0.33750495314598083,
+ 0.3698059618473053,
+ 1.4261752367019653,
+ 0.6879363656044006,
+ -0.2104688137769699,
+ 0.3816443383693695,
+ -0.08200663328170776,
+ -0.06375735998153687,
+ -0.013469889760017395,
+ 0.9660760164260864,
+ -0.4525381326675415,
+ -0.7048721313476562,
+ 0.40988466143608093,
+ -0.25848519802093506,
+ -0.44214460253715515,
+ 1.1828620433807373,
+ 0.6975242495536804,
+ 0.6636494398117065,
+ 0.006788138300180435,
+ 0.0031929519027471542,
+ -0.5710822939872742,
+ 0.19359606504440308,
+ -1.3820197582244873,
+ 0.2204011082649231,
+ 1.3975149393081665,
+ -0.05222190171480179,
+ 0.17466427385807037,
+ 0.3049897849559784,
+ 0.4081466794013977,
+ 0.4276299774646759,
+ 0.6625410914421082,
+ 0.16096608340740204,
+ -0.9383906126022339,
+ 0.1549656093120575,
+ -0.3070473372936249,
+ 0.05482637137174606,
+ -0.002690965309739113,
+ 0.8781824111938477,
+ -0.4550730586051941,
+ -0.5805545449256897,
+ -0.6142482757568359,
+ -0.23800401389598846,
+ -0.4587002694606781,
+ -1.4211724996566772,
+ 0.507915735244751,
+ -0.48456698656082153,
+ 1.0085529088974,
+ 1.2020066976547241,
+ -0.012642400339245796,
+ -0.40687596797943115,
+ -0.120612733066082,
+ -0.5484600067138672,
+ -0.6695660948753357,
+ 0.11900703608989716,
+ 1.65097975730896,
+ 0.08784817159175873,
+ -1.5738025903701782,
+ 0.5027380585670471,
+ 1.6831865310668945,
+ 1.2734602689743042,
+ -1.2110975980758667,
+ 0.03546583652496338,
+ -2.1201956272125244,
+ 0.7024816274642944,
+ 0.42739835381507874,
+ -0.5073334574699402,
+ -0.17041394114494324,
+ 0.8112266063690186,
+ -0.759279727935791,
+ 1.0545967817306519,
+ 0.9973152875900269,
+ 1.2886112928390503,
+ -0.9297512173652649,
+ -1.2982728481292725,
+ 0.8166799545288086,
+ 2.003708600997925,
+ 0.32787469029426575,
+ 0.5041619539260864,
+ -1.2356786727905273,
+ -0.7906022071838379,
+ 0.6991980671882629,
+ -0.2927609086036682,
+ 0.3835637867450714,
+ 1.3391674757003784,
+ 0.694451093673706,
+ 0.5951456427574158,
+ -0.17363210022449493,
+ 0.06873385608196259,
+ -1.28121817111969,
+ 0.021500930190086365,
+ 0.5044069290161133,
+ 0.35859912633895874,
+ 0.00871813390403986,
+ 1.333448886871338,
+ 0.12880480289459229,
+ 0.2491687834262848,
+ -0.9695323705673218,
+ -0.21605965495109558,
+ 0.8122187256813049,
+ -1.0672695636749268,
+ -0.22408518195152283,
+ -0.2872874140739441,
+ -0.8907930254936218,
+ -0.3869497776031494,
+ 0.09157554060220718,
+ 0.4383849501609802,
+ 1.0081249475479126,
+ -0.041829273104667664,
+ -1.2150003910064697,
+ 0.5045543909072876,
+ -0.5681813359260559,
+ 0.7971746325492859,
+ 0.467140793800354,
+ -0.003064580261707306,
+ -1.1237378120422363,
+ 0.9041063189506531,
+ -0.6743300557136536,
+ 0.5473076701164246,
+ 1.2165428400039673,
+ 1.3110967874526978,
+ -1.1065744161605835,
+ -0.8212993741035461,
+ 0.5765361189842224,
+ -0.6899286508560181,
+ -0.1276317834854126,
+ 1.002747893333435,
+ -1.0598500967025757,
+ -0.30880990624427795,
+ -0.031055176630616188,
+ -0.00298120453953743,
+ -0.8152610063552856,
+ -1.630193829536438,
+ -0.44076260924339294,
+ 0.8583264946937561,
+ 0.1880587637424469,
+ -0.6860613822937012,
+ 0.16527973115444183,
+ -0.6034302711486816,
+ 1.314448595046997,
+ 0.42426902055740356,
+ 0.0742591917514801,
+ 0.20210997760295868,
+ 1.4278558492660522,
+ -0.06696189194917679,
+ 1.6325359344482422,
+ 0.5038929581642151,
+ 0.9014362692832947,
+ 0.5912125706672668,
+ -0.09044450521469116,
+ -0.539118230342865,
+ -0.0559418611228466,
+ 0.43117624521255493,
+ 0.08166062831878662,
+ -1.207374930381775,
+ 0.5229381918907166,
+ 0.7454412579536438,
+ 0.21256974339485168,
+ -0.36368465423583984,
+ -1.2609745264053345,
+ 1.558210015296936,
+ 0.3799620568752289,
+ -0.630179226398468,
+ -0.3907696306705475,
+ 0.5330155491828918,
+ -0.33775731921195984,
+ 0.36013272404670715,
+ -0.687911331653595,
+ 0.4422089755535126,
+ -0.43538612127304077,
+ -1.039516806602478,
+ -0.11189743131399155,
+ 0.3506730794906616,
+ 0.05266726762056351,
+ -0.08288630843162537,
+ -0.043648842722177505,
+ -0.012403078377246857,
+ 0.3720800578594208,
+ -0.4235694706439972,
+ 1.3836359977722168,
+ -0.17700223624706268,
+ 0.5981990694999695,
+ 0.621527373790741,
+ 0.03096381574869156,
+ 0.5009874105453491,
+ 0.4709319770336151,
+ 0.32732659578323364,
+ 0.08440228551626205,
+ -0.15530604124069214,
+ -0.37924057245254517,
+ 0.3967015743255615,
+ -0.6456583738327026,
+ -0.33169999718666077,
+ 1.3403457403182983,
+ -0.2365310788154602,
+ -0.31109142303466797,
+ 1.2934632301330566,
+ 0.6457973718643188,
+ 0.9033718705177307,
+ 0.09484216570854187,
+ -0.5226678848266602,
+ 0.10619042813777924,
+ 1.3233017921447754,
+ -0.7194705605506897,
+ 0.4247357249259949,
+ -0.16048569977283478,
+ 0.34397172927856445,
+ -2.0361523628234863,
+ 0.7066931128501892,
+ 0.6806210875511169,
+ 1.9723544120788574,
+ -0.015884531661868095,
+ -0.9656887054443359,
+ -0.6510321497917175,
+ -0.6486054062843323,
+ -3.7604522705078125,
+ 0.3641098737716675,
+ -0.3578818738460541,
+ 0.545337975025177,
+ 0.4024791419506073,
+ 0.25088629126548767,
+ -1.609798550605774,
+ 0.27600663900375366,
+ -0.9101487994194031,
+ -1.081626296043396,
+ 0.3115696310997009,
+ -1.5663747787475586,
+ -0.5864966511726379,
+ 0.3132597506046295,
+ -1.0153231620788574,
+ -0.7485676407814026,
+ -0.5686540603637695,
+ 0.712496280670166,
+ -0.547539472579956,
+ -0.8136790990829468,
+ -0.23563961684703827,
+ -0.5960744619369507,
+ 1.663231372833252,
+ 0.3259877562522888,
+ 0.4165852665901184,
+ 1.6683354377746582,
+ 0.8930734395980835,
+ -0.9313968420028687,
+ -1.2982771396636963,
+ -0.5796608924865723,
+ -0.5523818135261536,
+ 0.5834112167358398,
+ -0.5257461071014404,
+ 1.2057121992111206,
+ 1.0204002857208252,
+ 1.228171467781067,
+ 0.022763997316360474,
+ 0.70464026927948,
+ 0.9857460260391235,
+ -0.41962435841560364,
+ 1.1890889406204224,
+ 0.5663210153579712,
+ -0.37781786918640137,
+ 1.0775175094604492,
+ -0.4649674892425537,
+ -0.6414918303489685,
+ -0.16675783693790436,
+ 0.5025736093521118,
+ -0.13498786091804504,
+ -0.6076359748840332,
+ 0.3044913709163666,
+ 0.08811642229557037,
+ 0.45279407501220703,
+ -0.17566484212875366,
+ -1.1293271780014038,
+ -0.34053876996040344,
+ -0.9792979955673218,
+ 0.2544793486595154,
+ 0.5600366592407227,
+ 0.028291214257478714,
+ -1.1846059560775757,
+ -2.187337636947632,
+ -0.02819015085697174,
+ -0.35821738839149475,
+ -0.43907979130744934,
+ -0.23743045330047607,
+ -0.4499589502811432,
+ 0.0954790711402893,
+ 0.6243869066238403,
+ 0.10975828021764755,
+ -0.1753779500722885,
+ -0.3041371703147888,
+ -0.293951153755188,
+ -0.59600830078125,
+ -0.20000699162483215,
+ 1.0695703029632568,
+ 0.7063546180725098,
+ 0.3238135874271393,
+ -1.04054594039917,
+ -0.7316771149635315,
+ 0.5709424018859863,
+ -0.1526641547679901,
+ -0.2468576431274414,
+ 0.8156540393829346,
+ -1.0798883438110352,
+ -1.738067388534546,
+ 0.7434033155441284,
+ 0.7149966359138489,
+ 0.22465559840202332,
+ 6.111536502838135,
+ 0.13046486675739288,
+ 0.18645921349525452,
+ 0.7620576024055481,
+ 1.356581687927246,
+ -0.225082665681839,
+ -0.32007524371147156,
+ 0.35129112005233765,
+ 0.009896531701087952,
+ -0.4976235032081604,
+ 0.037405386567115784,
+ 1.0797913074493408,
+ 0.15452493727207184,
+ -0.1229100376367569,
+ 0.3035489320755005,
+ 1.2523151636123657,
+ -0.4599077105522156,
+ -0.4241354167461395,
+ 1.897531509399414,
+ -0.5305374264717102,
+ 0.5610782504081726,
+ 1.2656203508377075,
+ -0.2285739630460739,
+ 0.5952934622764587,
+ -0.6747238039970398,
+ -1.0111126899719238,
+ 0.8368033766746521,
+ 1.194823145866394,
+ -0.5537418127059937,
+ 0.0802774727344513,
+ 0.07839237153530121,
+ 1.2385939359664917,
+ 1.6744585037231445,
+ 0.9062579274177551,
+ -0.07096671313047409,
+ 0.4426296353340149,
+ -1.8609787225723267,
+ -0.6751550436019897,
+ -1.6531548500061035,
+ 0.8239449858665466,
+ -1.106985330581665,
+ -0.9897397756576538,
+ -0.18853792548179626,
+ -0.6543692946434021,
+ 0.281633198261261,
+ 0.11708657443523407,
+ 0.3957810401916504,
+ -1.3514171838760376,
+ 0.596251904964447,
+ -1.386029601097107,
+ -0.05322187393903732,
+ -0.7668424248695374,
+ -0.5288374423980713,
+ 0.3790063261985779,
+ 2.070844888687134,
+ 0.03838581591844559,
+ -0.32916733622550964,
+ -0.30100709199905396,
+ -0.12480369210243225,
+ 1.7753748893737793,
+ 0.7612406015396118,
+ 0.34731024503707886,
+ -2.0009145736694336,
+ -0.24457494914531708,
+ 0.7529182434082031,
+ 0.9665607213973999,
+ -0.2430807501077652,
+ -0.0024831779301166534,
+ 0.6314102411270142,
+ 0.8755353689193726,
+ -0.14420269429683685,
+ 0.7993306517601013,
+ 0.6011701822280884,
+ 0.32958027720451355,
+ -0.30466192960739136,
+ 0.3730894923210144,
+ -0.17520183324813843,
+ 1.032353401184082,
+ 0.24992787837982178,
+ -0.3986537456512451,
+ 0.7215913534164429,
+ -0.41166940331459045,
+ -0.08471804112195969,
+ 0.5791876316070557,
+ 1.0179383754730225,
+ 1.0205425024032593,
+ -0.9524453282356262,
+ 1.010817050933838,
+ -0.8502677083015442,
+ -0.7434757947921753,
+ -0.6700906157493591,
+ -0.7170625925064087,
+ -0.4968796670436859,
+ -0.23683449625968933,
+ -0.6057890057563782,
+ -1.4352017641067505,
+ 1.2565895318984985,
+ -0.25041112303733826,
+ -1.7359317541122437,
+ -0.5301399827003479,
+ 0.6137498021125793,
+ -0.3411308228969574,
+ -0.34692323207855225,
+ -0.21454544365406036,
+ 0.5304802060127258,
+ -0.9253165125846863,
+ -0.5452936887741089,
+ -0.28674983978271484,
+ -1.0253491401672363,
+ 0.8263339996337891,
+ 0.13128572702407837,
+ 0.19071297347545624,
+ 0.36250653862953186,
+ -0.00038580503314733505,
+ 0.6246864795684814,
+ 1.463125228881836,
+ 0.2734757363796234,
+ -0.2832995057106018,
+ 1.1612417697906494,
+ 0.1550251543521881,
+ -0.4260093569755554,
+ 0.01156967505812645,
+ -0.28255313634872437,
+ -1.0768455266952515,
+ -1.1053900718688965,
+ -2.300523519515991,
+ -0.678733229637146,
+ 0.8275015354156494,
+ -0.14695042371749878,
+ 1.0782865285873413,
+ -0.2749427556991577,
+ -0.5697407722473145,
+ 1.506585955619812,
+ 0.9421374797821045,
+ 2.125910758972168,
+ -0.4285808503627777,
+ 1.3213648796081543,
+ 0.7041051983833313,
+ 0.3643016815185547,
+ 0.05603886395692825,
+ 0.12062275409698486,
+ 0.41078105568885803,
+ -0.7386570572853088,
+ 0.1880829930305481,
+ 0.48051702976226807,
+ 0.14184387028217316,
+ -0.8436810374259949,
+ -0.6180822849273682,
+ -0.950894832611084,
+ 0.3136712908744812,
+ 0.1501084715127945,
+ 0.09597858041524887,
+ 0.891106128692627,
+ -1.3430707454681396,
+ 0.03620069473981857,
+ -0.6390104293823242,
+ -0.35035160183906555,
+ -0.625342071056366,
+ -1.1096771955490112,
+ -1.2377979755401611,
+ 0.13157488405704498,
+ 0.18894970417022705,
+ 1.0432100296020508,
+ 2.2069501876831055,
+ -0.5864515900611877,
+ 1.227813959121704,
+ 0.20492619276046753,
+ 1.2213138341903687,
+ -0.927038848400116,
+ -1.1328028440475464,
+ 0.5166397094726562,
+ 0.0008492544293403625,
+ -0.2559080719947815,
+ 0.8079689741134644,
+ 0.7567148804664612,
+ 0.06897921115159988,
+ 0.3777196705341339,
+ -0.774523138999939,
+ -0.4210115969181061,
+ -0.6534443497657776,
+ 0.09066710621118546,
+ -0.6852340698242188,
+ -1.0459389686584473,
+ 0.2875209450721741,
+ 1.8107439279556274,
+ 0.39642712473869324,
+ 0.5665703415870667,
+ -0.8298277258872986,
+ -0.9329614043235779,
+ -0.4581385552883148,
+ 0.037010662257671356,
+ 1.5294469594955444,
+ 0.16322989761829376,
+ -0.29800477623939514,
+ 0.3304556906223297,
+ -0.9304264783859253,
+ -0.22324325144290924,
+ 0.43606990575790405,
+ -0.550576388835907,
+ 0.8154438734054565,
+ -0.7089309096336365,
+ -0.8232880234718323,
+ -0.2027820199728012,
+ -1.416599988937378,
+ 0.4820061922073364,
+ 0.045480407774448395,
+ 0.14585715532302856,
+ 0.11106085032224655,
+ -0.2948366701602936,
+ -0.8328009843826294,
+ -0.36903926730155945,
+ -0.38019004464149475,
+ -0.10490168631076813,
+ 0.13304947316646576,
+ -0.9544768333435059,
+ 0.13875271379947662,
+ 0.43127602338790894,
+ -0.9685318470001221,
+ -1.3079701662063599,
+ -1.391768217086792,
+ 0.19105404615402222,
+ 0.48181992769241333,
+ 0.7522904276847839,
+ -0.9718541502952576,
+ 0.13477423787117004,
+ -0.9769014716148376,
+ -0.020152561366558075,
+ -0.8704347610473633,
+ -0.20229534804821014,
+ -0.05437074229121208,
+ -0.10019475221633911,
+ -0.10883443057537079,
+ -1.5419024229049683,
+ 0.33052003383636475,
+ 0.29752296209335327,
+ 0.28287142515182495,
+ -0.30008217692375183,
+ 0.5959838032722473,
+ 0.19412314891815186,
+ 0.00998992845416069,
+ -0.4254050552845001,
+ -0.8677625060081482,
+ -1.2077265977859497,
+ 0.7993792295455933,
+ 0.36211633682250977,
+ 0.5512138605117798,
+ -0.7532753944396973,
+ -0.8383682370185852,
+ 1.0067696571350098,
+ 0.49242544174194336,
+ -0.3420366942882538,
+ 0.6029605269432068,
+ 0.7575839161872864,
+ -0.8782129287719727,
+ 1.1475507020950317,
+ -0.9109379649162292,
+ 0.47440826892852783,
+ -0.2957468330860138,
+ -0.7825044989585876,
+ -0.4041607975959778,
+ -1.4587817192077637,
+ 1.3197355270385742,
+ -0.2848207950592041,
+ -0.10683470219373703,
+ -2.091106653213501,
+ -0.37034788727760315,
+ 0.3514765799045563,
+ -0.8355547189712524,
+ -0.7102371454238892,
+ 0.08447660505771637,
+ -1.05989408493042,
+ -0.1241338849067688,
+ -0.7767312526702881,
+ -1.0098837614059448,
+ 1.324649453163147,
+ 0.2451787292957306,
+ -1.1805894374847412,
+ 0.24660202860832214,
+ 0.4151655435562134,
+ 1.516186237335205,
+ -0.8174219727516174,
+ 1.6175026893615723,
+ -0.41218629479408264,
+ -0.2454967349767685,
+ 0.47582316398620605,
+ 0.35072454810142517,
+ 0.7037005424499512,
+ -0.1793743520975113,
+ -0.0203702375292778,
+ 0.16762509942054749,
+ 1.9150240421295166,
+ -0.6835513114929199,
+ -1.3711090087890625,
+ -0.5456722974777222,
+ -0.8329582214355469,
+ -0.4670809805393219,
+ 0.2711825966835022,
+ 1.0102179050445557,
+ -0.5462628602981567,
+ -0.11318006366491318,
+ -0.5700178146362305,
+ 0.9132975935935974,
+ -0.4159940481185913,
+ 0.3755938410758972,
+ -0.2205735296010971,
+ -0.4600889980792999,
+ 1.514397144317627,
+ -1.0420565605163574,
+ 0.14040464162826538,
+ 0.7072462439537048,
+ -0.23193970322608948,
+ -0.053963810205459595,
+ 0.5803876519203186,
+ -1.3128999471664429,
+ 0.7115483283996582,
+ -1.0636833906173706,
+ -0.09854689985513687,
+ 0.4369956851005554,
+ 0.20636746287345886,
+ -0.2692258059978485,
+ -0.10917875170707703,
+ 0.1966519057750702,
+ -1.0193498134613037,
+ -0.06814266741275787,
+ -0.23572595417499542,
+ -0.16236186027526855,
+ 1.110730767250061,
+ -0.5169539451599121,
+ 0.15693120658397675,
+ -0.17735359072685242,
+ 0.03447610139846802,
+ -1.510538935661316,
+ -0.6029724478721619,
+ 0.47951817512512207,
+ 1.1824169158935547,
+ 2.4518015384674072,
+ -0.12840192019939423,
+ -0.5713563561439514,
+ 0.21507519483566284,
+ 1.2829031944274902,
+ 0.12810617685317993,
+ 0.12481115758419037,
+ 1.1883538961410522,
+ -0.13737183809280396,
+ -0.017338715493679047,
+ -0.08079597353935242,
+ -0.3636436462402344,
+ 0.2827175557613373,
+ -1.048692226409912,
+ -1.2547906637191772,
+ -0.4407835602760315,
+ 0.920450747013092,
+ -0.3035421669483185,
+ -1.7816197872161865,
+ 0.1244281530380249,
+ 0.4489193856716156,
+ -1.1417828798294067,
+ -0.019047681242227554,
+ 0.07590208202600479,
+ -0.04657263308763504,
+ -0.15195588767528534,
+ 0.8351496458053589,
+ -0.5389254093170166,
+ -0.8175278306007385,
+ -0.6904160380363464,
+ 0.5809680819511414,
+ 0.13349418342113495,
+ -0.24177148938179016,
+ 0.0844389870762825,
+ -0.42259329557418823,
+ -1.0198633670806885,
+ 0.015599442645907402,
+ 0.39916279911994934,
+ 0.9820626974105835,
+ -0.7491141557693481,
+ 0.8812907934188843,
+ -0.42247167229652405,
+ 0.06480848044157028,
+ 0.612940788269043,
+ 0.21891038119792938,
+ -0.3379608392715454,
+ 1.0119935274124146,
+ -0.019031839445233345,
+ -0.3706207573413849,
+ 0.6374184489250183,
+ -0.5117350220680237,
+ -1.206825613975525,
+ 0.5415226817131042,
+ -0.7729857563972473,
+ 1.4722002744674683,
+ 0.091612309217453,
+ -1.2065943479537964,
+ -0.14941832423210144,
+ 0.45410746335983276,
+ -4.223142147064209,
+ 0.24570129811763763,
+ 0.23397517204284668,
+ -0.928677499294281,
+ -1.1925112009048462,
+ 0.23007085919380188,
+ -1.0704753398895264,
+ -1.6485732793807983,
+ 0.4821000099182129,
+ -0.6298251152038574,
+ -0.44328466057777405,
+ -0.17252397537231445,
+ 0.29387810826301575,
+ -0.8680712580680847,
+ 0.6190166473388672,
+ 0.9908802509307861,
+ 0.8874445557594299,
+ -1.2140979766845703,
+ 0.7887416481971741,
+ 1.9459251165390015,
+ -0.14010918140411377,
+ 0.4637584686279297,
+ 1.4056482315063477,
+ 0.49995362758636475,
+ -0.19499905407428741,
+ -0.4121816158294678,
+ -1.6719688177108765,
+ 0.3566794693470001,
+ -1.139462947845459,
+ -0.09142574667930603,
+ -0.9643753170967102,
+ -1.1610082387924194,
+ 1.4036039113998413,
+ 2.035858631134033,
+ 1.6549490690231323,
+ 0.23132967948913574,
+ 0.4172457456588745,
+ -0.5146321058273315,
+ -0.4386177361011505,
+ 0.3748818337917328,
+ 0.9216092228889465,
+ 0.2190617024898529,
+ -0.49764373898506165,
+ 0.24076521396636963,
+ 0.5463624596595764,
+ -0.11069471389055252,
+ 0.7213592529296875,
+ 0.14328935742378235,
+ -0.6099342107772827,
+ -0.21075281500816345,
+ 0.008263914845883846,
+ 0.0829332023859024,
+ 1.2343207597732544,
+ 1.1698222160339355,
+ 0.8636144995689392,
+ -0.7788892984390259,
+ -1.5552303791046143,
+ 0.9490317702293396,
+ -0.7936421632766724,
+ 0.9958963394165039,
+ -1.30406653881073,
+ -0.4214235544204712,
+ -1.4083328247070312,
+ -1.8020319938659668,
+ 0.21915028989315033,
+ 0.39414992928504944,
+ -1.4289101362228394,
+ 0.8968761563301086,
+ 0.4506935775279999,
+ 0.4963921308517456,
+ -0.28274354338645935,
+ -1.0010199546813965,
+ 1.297711968421936,
+ -0.09048684686422348,
+ 0.428877592086792,
+ 1.093215823173523,
+ 1.1824575662612915,
+ 0.29568159580230713,
+ -2.3656516075134277,
+ -1.3984079360961914,
+ -0.9646362066268921,
+ -0.9532443284988403,
+ 0.35418030619621277,
+ 0.45643195509910583,
+ 0.6781677007675171,
+ 0.32148492336273193,
+ -1.0010061264038086,
+ 0.7629972100257874,
+ -1.589925765991211,
+ 1.2453086376190186,
+ -2.027432441711426,
+ -1.1786458492279053,
+ 0.9867236614227295,
+ 0.38784220814704895,
+ -0.9530383348464966,
+ 0.519212543964386,
+ -0.6959365010261536,
+ 0.543200671672821,
+ -0.7458526492118835,
+ 0.10962031781673431,
+ -0.46726951003074646,
+ -0.009077130816876888,
+ 0.7209254503250122,
+ -0.6420469880104065,
+ -0.4832473397254944,
+ 0.025254584848880768,
+ 0.4620450437068939,
+ -0.5780662894248962,
+ -0.3375411033630371,
+ 0.584003746509552,
+ -0.15452587604522705,
+ -0.0607144832611084,
+ 0.06228053569793701,
+ -0.4709896743297577,
+ -0.2349909394979477,
+ 0.381535142660141,
+ 0.4702337086200714,
+ 0.7611263394355774,
+ -0.40058791637420654,
+ 0.21142888069152832,
+ 0.39679786562919617,
+ -0.5166540741920471,
+ 0.3482476770877838,
+ -1.4897533655166626,
+ 0.4686342477798462,
+ 1.4802354574203491,
+ 1.0117051601409912,
+ 0.895746111869812,
+ 1.678837776184082,
+ -0.33582451939582825,
+ 0.8439515829086304,
+ -2.1733591556549072,
+ -0.030291683971881866,
+ -0.04150509089231491,
+ 1.0119917392730713,
+ -1.3868800401687622,
+ 0.1385829746723175,
+ 0.938322901725769,
+ -0.22432322800159454,
+ -0.6175576448440552,
+ -0.29744860529899597,
+ -0.2875809967517853,
+ -1.4089291095733643,
+ 0.25710052251815796,
+ -0.44966617226600647,
+ 0.7890524864196777,
+ -0.4595611095428467,
+ 0.38448524475097656,
+ -1.8808163404464722,
+ -1.3816380500793457,
+ -0.10206131637096405,
+ -0.5571868419647217,
+ 0.5533304214477539,
+ 0.5026518106460571,
+ 0.43245774507522583,
+ 0.6397390365600586,
+ -0.37374159693717957,
+ -0.7824108600616455,
+ 0.12506136298179626,
+ 0.7041292190551758,
+ 0.2332768738269806,
+ -0.9131583571434021,
+ -0.5976174473762512,
+ -0.39110204577445984,
+ -0.758936882019043,
+ -0.3592321276664734,
+ 0.6985518932342529,
+ -0.47730186581611633,
+ -0.9622618556022644,
+ -1.1181477308273315,
+ 0.07546637952327728,
+ 0.7312949299812317,
+ -0.7219504117965698,
+ -0.6417906284332275,
+ 0.44856688380241394,
+ -0.6834646463394165,
+ 0.47753775119781494,
+ -0.39270198345184326,
+ 1.3838446140289307,
+ -1.047913670539856,
+ 0.5741575360298157,
+ 0.8034817576408386,
+ -0.37951573729515076,
+ 0.7497617602348328,
+ -0.33478686213493347,
+ 0.40875715017318726,
+ -0.4310244917869568,
+ -0.43081626296043396,
+ -0.2568645477294922,
+ 0.5490862727165222,
+ -0.3585949242115021,
+ -0.7411054968833923,
+ 0.7114929556846619,
+ -1.3619740009307861,
+ 1.0542527437210083,
+ -0.02168591320514679,
+ -0.5375610589981079,
+ 0.24096143245697021,
+ -0.18880483508110046,
+ 0.030610911548137665,
+ -0.23039771616458893,
+ 0.405166894197464,
+ -0.27259302139282227,
+ -0.13936403393745422,
+ -0.6653674244880676,
+ 0.5224511623382568,
+ -0.4172174036502838,
+ -0.025346428155899048,
+ -0.052211254835128784,
+ 0.4652702212333679,
+ -0.360880047082901,
+ -0.799102246761322,
+ -0.9156358242034912,
+ 0.7083598375320435,
+ -1.1320277452468872,
+ 0.9262363314628601,
+ 0.08305114507675171,
+ -0.22745521366596222,
+ 0.2010330706834793,
+ 0.9706462621688843,
+ 1.4496809244155884,
+ 0.2617977559566498,
+ -0.8291578888893127,
+ 0.47968846559524536,
+ 0.29125767946243286,
+ 0.3087140917778015,
+ -0.171536386013031,
+ 0.5551432967185974,
+ 0.09099078923463821,
+ -1.0962551832199097,
+ 0.8814903497695923,
+ 0.5243364572525024,
+ 0.7047240138053894,
+ 0.6833091974258423,
+ 0.9182928204536438,
+ 0.23724082112312317,
+ -0.8077110648155212,
+ -0.05946099013090134,
+ -0.5241314172744751,
+ -0.02588576078414917,
+ 0.8613319993019104,
+ 0.16187140345573425,
+ 0.19675154983997345,
+ 0.5900828242301941
+ ]
+ },
+ {
+ "key": 4,
+ "name": "Geralt of Rivia",
+ "type": "movie",
+ "media": "The Witcher",
+ "label": [
+ "Courageous",
+ "Discreet",
+ "Non-committal",
+ "Selective",
+ "Sensual"
+ ],
+ "embedding": [
+ -1.6829643249511719,
+ 0.2458125352859497,
+ -0.4092563986778259,
+ -0.22580377757549286,
+ -1.3198057413101196,
+ 0.25582146644592285,
+ 0.5196247696876526,
+ -0.6485291719436646,
+ -0.5039767622947693,
+ 0.6552594900131226,
+ 0.8693555593490601,
+ 0.10102817416191101,
+ -1.4468687772750854,
+ -0.737717866897583,
+ 1.5373376607894897,
+ -0.12156952172517776,
+ -0.19470557570457458,
+ 0.052819304168224335,
+ -0.6961650848388672,
+ -0.4391222894191742,
+ -1.0562934875488281,
+ 0.3969132900238037,
+ -0.034979671239852905,
+ 1.0898492336273193,
+ -0.40092676877975464,
+ 0.28166663646698,
+ -0.14591282606124878,
+ -0.4343140721321106,
+ -0.8166250586509705,
+ 1.1689468622207642,
+ 0.032258909195661545,
+ -0.3172224760055542,
+ 0.20552629232406616,
+ -1.4384597539901733,
+ 0.4589235782623291,
+ -0.7978368401527405,
+ -0.55722975730896,
+ -0.5948014855384827,
+ -1.5100911855697632,
+ 0.7077680230140686,
+ 1.2338895797729492,
+ 0.20275288820266724,
+ 1.4162170886993408,
+ -1.422505259513855,
+ 0.9327942728996277,
+ -0.6772369742393494,
+ 0.13407683372497559,
+ -0.3556596338748932,
+ 0.45443016290664673,
+ 0.10993671417236328,
+ 0.12233221530914307,
+ 0.753875195980072,
+ 1.150722622871399,
+ -0.5882855653762817,
+ -0.010613268241286278,
+ -1.4811205863952637,
+ -0.23785659670829773,
+ -0.658596396446228,
+ -1.188393235206604,
+ -1.449931025505066,
+ -1.5894042253494263,
+ 0.8470000624656677,
+ -0.178512841463089,
+ -0.1549525111913681,
+ 1.0442578792572021,
+ 1.18735933303833,
+ -0.271328866481781,
+ 0.8708488941192627,
+ 0.3389909267425537,
+ -0.9769206047058105,
+ -0.23519577085971832,
+ -0.30819380283355713,
+ -0.7778662443161011,
+ -0.27002936601638794,
+ -2.30853271484375,
+ 0.6230435371398926,
+ -0.5340403318405151,
+ -0.26932892203330994,
+ -0.0235130712389946,
+ 1.0765711069107056,
+ 0.46956759691238403,
+ 0.7489230632781982,
+ 0.09194119274616241,
+ -0.013329754583537579,
+ -0.17358209192752838,
+ 0.6887227892875671,
+ -0.9510101079940796,
+ 0.2883736789226532,
+ -0.09693040698766708,
+ -0.2893291115760803,
+ -1.0920722484588623,
+ 0.1484912782907486,
+ -0.39980003237724304,
+ -0.9346578121185303,
+ -0.3133224844932556,
+ 0.839601457118988,
+ -0.855558454990387,
+ -0.08250746876001358,
+ 0.06897547096014023,
+ 1.0467960834503174,
+ -0.04969693347811699,
+ 0.37382039427757263,
+ 0.13042162358760834,
+ 0.19955720007419586,
+ 0.33298665285110474,
+ -1.2498526573181152,
+ 0.11786583065986633,
+ 1.5336273908615112,
+ 0.6078792214393616,
+ 0.4161597788333893,
+ 0.38124144077301025,
+ 1.0885827541351318,
+ 0.6570560932159424,
+ 0.3580245077610016,
+ 0.7340758442878723,
+ -0.827539324760437,
+ 0.3835258185863495,
+ 0.14271759986877441,
+ -1.024249792098999,
+ -0.9905064105987549,
+ 1.6452350616455078,
+ -0.21641957759857178,
+ 0.30708974599838257,
+ -1.1888431310653687,
+ -0.1716991662979126,
+ -0.2602843642234802,
+ -1.2490345239639282,
+ 0.07320722937583923,
+ -0.5369278788566589,
+ 0.3019809424877167,
+ 0.8773223757743835,
+ 0.036140404641628265,
+ 0.08436699956655502,
+ -0.9799204468727112,
+ -0.2442275732755661,
+ 0.07831505686044693,
+ -0.3416413366794586,
+ 0.6060912013053894,
+ -0.49770233035087585,
+ -0.6461062431335449,
+ 0.01923191174864769,
+ 0.8654019236564636,
+ 1.2284784317016602,
+ -1.4550540447235107,
+ 1.3331348896026611,
+ -1.4579086303710938,
+ 0.440329909324646,
+ 0.09530368447303772,
+ 0.4186159670352936,
+ -0.14318683743476868,
+ 1.2218877077102661,
+ -0.5312671065330505,
+ 1.2496953010559082,
+ 0.06036485731601715,
+ 0.6468198895454407,
+ -0.858181893825531,
+ -0.3863612413406372,
+ 1.1859556436538696,
+ 0.9968008995056152,
+ 1.3587719202041626,
+ 0.5025365948677063,
+ -0.6777172684669495,
+ -0.7138834595680237,
+ 0.10297511518001556,
+ 0.1399923712015152,
+ 0.21755313873291016,
+ 0.7517195343971252,
+ 1.3589242696762085,
+ 0.04805311560630798,
+ -0.6983808279037476,
+ 0.2131197452545166,
+ -1.2052003145217896,
+ -0.07889416813850403,
+ -0.10388397425413132,
+ 0.9421340227127075,
+ 0.20683667063713074,
+ 1.8429198265075684,
+ 0.6633847951889038,
+ 0.15177561342716217,
+ -1.403327226638794,
+ -0.2657800316810608,
+ 0.6138646006584167,
+ -0.5703750252723694,
+ 0.02655661851167679,
+ -1.331779956817627,
+ -0.8616226315498352,
+ -0.7618334889411926,
+ -0.30354925990104675,
+ 0.4301859140396118,
+ 1.4046845436096191,
+ -0.2339082658290863,
+ -0.9651691317558289,
+ 0.46590107679367065,
+ -0.14066465198993683,
+ 0.6769965887069702,
+ 0.2880330979824066,
+ 0.05428279936313629,
+ -1.5984340906143188,
+ 0.3645177483558655,
+ -1.213428258895874,
+ 0.9749802947044373,
+ 1.3981391191482544,
+ 0.48890241980552673,
+ -1.5611129999160767,
+ -1.0390074253082275,
+ -0.08875061571598053,
+ -0.6287132501602173,
+ 0.010436641052365303,
+ 1.1896203756332397,
+ -0.039950430393218994,
+ -0.17860791087150574,
+ 0.5150607228279114,
+ -0.5701534152030945,
+ -0.6118291616439819,
+ -0.8753008842468262,
+ -0.8187574744224548,
+ -0.411189466714859,
+ 0.320627361536026,
+ -0.827307403087616,
+ -0.17087240517139435,
+ -0.9076724052429199,
+ 1.507745623588562,
+ 0.4438266158103943,
+ -0.16167449951171875,
+ 0.05563175678253174,
+ 0.2845499515533447,
+ 0.5344213843345642,
+ 0.851624608039856,
+ 0.2046537697315216,
+ 0.13125291466712952,
+ 0.4172365367412567,
+ -0.2829664945602417,
+ 0.4117216169834137,
+ 0.24814113974571228,
+ 0.8249467611312866,
+ -0.06622599065303802,
+ -1.0003308057785034,
+ 0.5763611197471619,
+ 1.2074583768844604,
+ 0.40391793847084045,
+ -1.0863308906555176,
+ -0.48162320256233215,
+ 2.056691884994507,
+ -0.26916590332984924,
+ -1.0349786281585693,
+ 0.24621248245239258,
+ 0.9814237356185913,
+ 0.10543754696846008,
+ 0.4990708827972412,
+ -0.6674587726593018,
+ 0.393113374710083,
+ 1.4587265253067017,
+ -0.6597355008125305,
+ -0.34652116894721985,
+ 0.20153537392616272,
+ -0.3224210739135742,
+ 0.5218005180358887,
+ -0.6972642540931702,
+ -0.28344976902008057,
+ -0.2859373986721039,
+ 0.676555335521698,
+ 0.5939217805862427,
+ 0.18608173727989197,
+ 0.7830237746238708,
+ 0.17320820689201355,
+ -0.6063365936279297,
+ 0.10537319630384445,
+ 0.3563978374004364,
+ -0.27384909987449646,
+ -0.5317574143409729,
+ 0.028078189119696617,
+ 0.0478348582983017,
+ -0.5701301693916321,
+ -0.40858137607574463,
+ -1.4755197763442993,
+ 1.067946434020996,
+ -0.8873451948165894,
+ 0.1286214292049408,
+ 2.4284727573394775,
+ 0.6691347360610962,
+ 0.014430584385991096,
+ 0.882921040058136,
+ 0.9438324570655823,
+ -0.13936379551887512,
+ 0.9982949495315552,
+ -0.5806906223297119,
+ -0.12010986357927322,
+ 0.058014437556266785,
+ 0.12863454222679138,
+ -1.4208385944366455,
+ -0.02313217520713806,
+ 0.22985577583312988,
+ 1.4518601894378662,
+ 0.8222963213920593,
+ -1.0323842763900757,
+ -0.9308382868766785,
+ -1.1837375164031982,
+ -3.5723156929016113,
+ 0.11476224660873413,
+ -0.19050544500350952,
+ 0.030773364007472992,
+ 0.2679218351840973,
+ 0.4996058940887451,
+ -1.4890978336334229,
+ -0.21004392206668854,
+ -0.7792911529541016,
+ -0.6813858151435852,
+ 1.253544807434082,
+ -1.7976213693618774,
+ -1.093717336654663,
+ 0.747836709022522,
+ -0.8802781105041504,
+ -0.7939344048500061,
+ -0.28410643339157104,
+ 0.07612140476703644,
+ 0.6861076354980469,
+ -1.3653963804244995,
+ -0.11390767246484756,
+ -0.914588451385498,
+ 1.2768787145614624,
+ 0.5215522050857544,
+ 0.7642822265625,
+ -0.49016547203063965,
+ 1.116633653640747,
+ -0.017829054966568947,
+ -0.9192723631858826,
+ -1.0959395170211792,
+ -0.6240020990371704,
+ -0.48491916060447693,
+ -0.13528048992156982,
+ 1.4228018522262573,
+ 0.816819965839386,
+ 0.8158164024353027,
+ -0.39696288108825684,
+ -0.46483728289604187,
+ 1.3502918481826782,
+ -0.8055365681648254,
+ 0.625,
+ 0.14764302968978882,
+ -0.3801744878292084,
+ 0.7130166888237,
+ -0.44218727946281433,
+ -0.3605829179286957,
+ 0.10616931319236755,
+ 0.6008207201957703,
+ -1.069273829460144,
+ -1.1458820104599,
+ -0.3758634924888611,
+ -0.39814794063568115,
+ -1.0717887878417969,
+ -0.5891772508621216,
+ -1.281683087348938,
+ -0.2891145348548889,
+ -0.9664280414581299,
+ -0.6436675786972046,
+ -0.11366140842437744,
+ -0.22264686226844788,
+ -1.3215678930282593,
+ -1.6571887731552124,
+ 0.32089465856552124,
+ -0.851330041885376,
+ -0.32237571477890015,
+ 0.4673829674720764,
+ 0.10761083662509918,
+ -0.5227762460708618,
+ 1.2171820402145386,
+ 0.5648720860481262,
+ 0.2292838990688324,
+ -0.5190205574035645,
+ -0.09301132708787918,
+ -1.3738131523132324,
+ -0.6996115446090698,
+ 0.11857619136571884,
+ 0.6892504692077637,
+ -0.06858968734741211,
+ -0.24536122381687164,
+ -1.4203789234161377,
+ 0.6354407072067261,
+ 0.04365513473749161,
+ -0.23262184858322144,
+ 1.1808005571365356,
+ -0.6997830271720886,
+ -0.6672974824905396,
+ 0.3359152674674988,
+ 0.09643442928791046,
+ 0.3354813754558563,
+ 5.307951927185059,
+ -0.8924180269241333,
+ 0.3091352581977844,
+ 0.2891259789466858,
+ 0.8435040712356567,
+ 0.5953741073608398,
+ -0.38714319467544556,
+ 0.5948919653892517,
+ 0.3422478139400482,
+ -0.3967220187187195,
+ 0.11985887587070465,
+ 0.040226563811302185,
+ -0.5718772411346436,
+ 0.14671000838279724,
+ -0.3856866955757141,
+ 1.4457545280456543,
+ 0.13131247460842133,
+ -0.791020393371582,
+ 2.531120538711548,
+ -1.2427852153778076,
+ 0.18059442937374115,
+ -0.32709798216819763,
+ 0.285272479057312,
+ 0.254247784614563,
+ -1.3864612579345703,
+ 0.07384683191776276,
+ 0.6676358580589294,
+ 0.2192244529724121,
+ 0.0640263482928276,
+ 0.6831933259963989,
+ -0.3603917062282562,
+ 1.6609550714492798,
+ 1.7947160005569458,
+ 0.039010562002658844,
+ -0.35099443793296814,
+ -0.08809186518192291,
+ -0.5377401113510132,
+ 0.32574132084846497,
+ -0.5534836053848267,
+ 2.049957513809204,
+ -0.4408360421657562,
+ -0.6140372157096863,
+ -1.9541555643081665,
+ -0.4689147472381592,
+ -0.6754796504974365,
+ 0.9176554679870605,
+ 0.27462834119796753,
+ -1.1655340194702148,
+ 0.04433651268482208,
+ -0.7280724048614502,
+ 0.21327129006385803,
+ -1.492472529411316,
+ -0.358568400144577,
+ 0.015297045931220055,
+ 2.2654404640197754,
+ -0.3172603249549866,
+ -1.2390979528427124,
+ -0.6268597841262817,
+ -0.030607983469963074,
+ 1.9576654434204102,
+ -0.5161348581314087,
+ 0.5004169940948486,
+ -2.923588752746582,
+ -0.35931575298309326,
+ -0.45477721095085144,
+ 1.543139934539795,
+ -0.8890525102615356,
+ 0.20872588455677032,
+ 0.9814194440841675,
+ 0.4897211790084839,
+ 0.45024561882019043,
+ 0.8737897276878357,
+ 0.2762264907360077,
+ 0.4660126566886902,
+ -0.3604084849357605,
+ 0.5310971140861511,
+ -1.1606526374816895,
+ 1.599592685699463,
+ 1.1250368356704712,
+ -0.22597503662109375,
+ 1.123454213142395,
+ -1.1597737073898315,
+ 0.32746610045433044,
+ 0.5043123960494995,
+ 1.0396119356155396,
+ 0.5555650591850281,
+ -0.43578243255615234,
+ 1.4897879362106323,
+ -0.22971221804618835,
+ -1.3249075412750244,
+ -0.5289071798324585,
+ -0.16283613443374634,
+ -0.23435741662979126,
+ 1.2759439945220947,
+ 0.04513019323348999,
+ -0.32843688130378723,
+ 1.7152445316314697,
+ 0.1001664400100708,
+ -0.3850632309913635,
+ -0.27832069993019104,
+ 0.820831835269928,
+ -0.5604473948478699,
+ 0.19935199618339539,
+ -0.49526381492614746,
+ -0.24217228591442108,
+ -0.4627857208251953,
+ 0.007718246430158615,
+ -0.2753065824508667,
+ -0.9763833284378052,
+ 0.03640107810497284,
+ -0.8249455690383911,
+ 0.419403076171875,
+ 0.007518649101257324,
+ -0.5712658166885376,
+ 0.6960774660110474,
+ 1.391433596611023,
+ 0.32028406858444214,
+ 0.18271876871585846,
+ 0.8315620422363281,
+ 0.8524177670478821,
+ -0.8233785033226013,
+ -0.3844749331474304,
+ -0.4915633201599121,
+ -0.34622785449028015,
+ -0.4357391595840454,
+ -0.8844352960586548,
+ -0.08197756856679916,
+ 0.9538995027542114,
+ -0.9996567964553833,
+ 0.7596847414970398,
+ 0.8249725103378296,
+ -0.4429539144039154,
+ 0.7178550958633423,
+ 1.2156298160552979,
+ 1.5881341695785522,
+ -0.5642540454864502,
+ 1.6995317935943604,
+ 0.5966086983680725,
+ 0.21733307838439941,
+ -0.1687617003917694,
+ 0.8065965175628662,
+ 0.08226031810045242,
+ 0.336587518453598,
+ 0.49292778968811035,
+ 0.4781613349914551,
+ 0.17516277730464935,
+ -1.3002573251724243,
+ -0.4918134808540344,
+ -0.22993600368499756,
+ 1.1152290105819702,
+ 0.6123819351196289,
+ 0.7755173444747925,
+ 1.0523568391799927,
+ -0.5376787185668945,
+ 0.33793577551841736,
+ -0.41070127487182617,
+ -0.5498583316802979,
+ -0.3358481824398041,
+ -0.9498001337051392,
+ -1.0489699840545654,
+ -0.608162522315979,
+ 0.7719741463661194,
+ -0.008585592731833458,
+ 0.8778671622276306,
+ -0.3678213655948639,
+ 0.9398657083511353,
+ 1.0005087852478027,
+ 1.6430315971374512,
+ 0.7572729587554932,
+ -0.31621748208999634,
+ 0.7042922973632812,
+ 0.2226864993572235,
+ -0.31328362226486206,
+ 1.161482810974121,
+ -0.028483260422945023,
+ -0.1319982409477234,
+ 0.05252256989479065,
+ -0.4914103150367737,
+ -0.11940091848373413,
+ -1.0008434057235718,
+ 0.3983267843723297,
+ -0.6910654306411743,
+ -1.4680830240249634,
+ -0.927669882774353,
+ 1.0919109582901,
+ -0.2620914578437805,
+ 0.13961920142173767,
+ -0.29772400856018066,
+ -0.25633275508880615,
+ -0.011379770934581757,
+ -0.00277719646692276,
+ 1.8279898166656494,
+ 1.1631381511688232,
+ -0.5424356460571289,
+ -0.34467482566833496,
+ -0.6777631044387817,
+ 0.694936990737915,
+ 1.1576944589614868,
+ -0.017650587484240532,
+ -0.10717064142227173,
+ -0.8030324578285217,
+ -0.73590487241745,
+ -0.5447722673416138,
+ -2.2063753604888916,
+ 0.516879677772522,
+ 0.1248609870672226,
+ -0.6397959589958191,
+ 0.8568034172058105,
+ -0.9211729168891907,
+ -1.3915079832077026,
+ -0.34755203127861023,
+ 0.2511600852012634,
+ -0.7484042644500732,
+ -0.08054026961326599,
+ -1.375534176826477,
+ -0.1216459795832634,
+ 0.26351672410964966,
+ 0.05128036439418793,
+ -0.8357353210449219,
+ -1.521991491317749,
+ -0.11264732480049133,
+ 0.21588526666164398,
+ 0.43909940123558044,
+ -0.3587047755718231,
+ -2.1211836338043213,
+ -1.92136549949646,
+ -0.7543349266052246,
+ -1.0013669729232788,
+ -0.4711427092552185,
+ 0.3724556863307953,
+ -0.12844766676425934,
+ -0.2888977527618408,
+ -0.9726524949073792,
+ 0.5986140370368958,
+ -0.24242161214351654,
+ 0.24744167923927307,
+ -0.2806212306022644,
+ 1.3504390716552734,
+ 0.683686375617981,
+ -0.8728073835372925,
+ -0.6447239518165588,
+ -1.1260079145431519,
+ -0.9625758528709412,
+ 1.109498381614685,
+ -0.06818214058876038,
+ 0.39079713821411133,
+ -0.03644811734557152,
+ -0.5313693284988403,
+ 1.3558316230773926,
+ 1.1406484842300415,
+ -1.1344369649887085,
+ -0.13194429874420166,
+ -0.31225430965423584,
+ -1.077792763710022,
+ 0.8539286255836487,
+ 0.4307728111743927,
+ -0.7922762632369995,
+ -0.47974979877471924,
+ 0.4849435091018677,
+ -0.05083022266626358,
+ -1.2052600383758545,
+ 1.3586156368255615,
+ 0.05516640841960907,
+ -0.1562870591878891,
+ -2.259213447570801,
+ -0.6167377829551697,
+ 0.7262377142906189,
+ -1.0760825872421265,
+ 0.5089835524559021,
+ -1.0006929636001587,
+ -0.30017974972724915,
+ -0.25574004650115967,
+ -0.7039914727210999,
+ -1.4515079259872437,
+ 1.24684739112854,
+ -0.012779349461197853,
+ -1.2980101108551025,
+ 0.23945266008377075,
+ 1.089299201965332,
+ 1.9782665967941284,
+ -0.8144065737724304,
+ 1.2449814081192017,
+ 0.4629247784614563,
+ 0.7061453461647034,
+ 0.15363723039627075,
+ 0.5253363847732544,
+ 1.2944775819778442,
+ -0.20405249297618866,
+ 0.37300172448158264,
+ -1.264917016029358,
+ 1.1712470054626465,
+ -0.8018582463264465,
+ -0.927237331867218,
+ 0.7447201609611511,
+ -0.34840452671051025,
+ -0.20390869677066803,
+ 0.33746832609176636,
+ 0.40257787704467773,
+ -0.22008055448532104,
+ 0.28489619493484497,
+ -0.35172075033187866,
+ 0.11931201815605164,
+ -0.6012043952941895,
+ 0.1767316311597824,
+ -0.794996976852417,
+ -0.5440570116043091,
+ 0.7281885743141174,
+ -0.9959375858306885,
+ 0.2544458210468292,
+ 1.152714490890503,
+ -0.6446012854576111,
+ -0.23124918341636658,
+ -0.6220802664756775,
+ -0.26800215244293213,
+ 0.37656378746032715,
+ -0.3593195080757141,
+ -0.4365979731082916,
+ 1.2295567989349365,
+ 0.13188950717449188,
+ 0.7061722278594971,
+ -1.0316836833953857,
+ -0.5277619361877441,
+ -0.7819141149520874,
+ -0.1496337503194809,
+ -1.1198124885559082,
+ 0.33577051758766174,
+ 0.36723852157592773,
+ -0.1408061385154724,
+ 1.245080828666687,
+ -1.8095118999481201,
+ -0.16376572847366333,
+ -1.1570488214492798,
+ 0.43642064929008484,
+ 0.017502859234809875,
+ 0.7530035376548767,
+ 2.068221092224121,
+ 0.06865011900663376,
+ 1.1388545036315918,
+ 0.1774793416261673,
+ 1.0533537864685059,
+ -0.4499959647655487,
+ -0.3500271141529083,
+ 1.3283531665802002,
+ -0.5370144248008728,
+ -0.39217036962509155,
+ 1.1427743434906006,
+ -0.31281426548957825,
+ 0.03469594195485115,
+ 0.2575015723705292,
+ -0.5067633390426636,
+ 0.1960265189409256,
+ 0.9014397263526917,
+ -0.930626392364502,
+ -1.0385998487472534,
+ -0.30876174569129944,
+ 0.49368757009506226,
+ -0.7111886143684387,
+ 0.7249775528907776,
+ 0.1567411720752716,
+ -0.06601496040821075,
+ -0.910725474357605,
+ 0.07310653477907181,
+ -0.2843147814273834,
+ -0.43803998827934265,
+ 0.5831022262573242,
+ 0.8237647414207458,
+ -0.2909625768661499,
+ -0.7269676327705383,
+ 1.001997947692871,
+ -0.7721547484397888,
+ -0.7498102188110352,
+ 0.971781313419342,
+ 0.20038720965385437,
+ 0.7776167988777161,
+ -0.7437002658843994,
+ 0.9363001585006714,
+ -0.1638226956129074,
+ -0.006270227953791618,
+ 0.6613166928291321,
+ 0.22129377722740173,
+ -0.5037299394607544,
+ 1.0544211864471436,
+ 0.6112596392631531,
+ 0.11134795844554901,
+ 0.630823016166687,
+ -0.18622097373008728,
+ -0.7935577630996704,
+ 0.11748630553483963,
+ -0.12505212426185608,
+ 1.5457383394241333,
+ -0.057999372482299805,
+ -0.9628442525863647,
+ -1.3339951038360596,
+ -0.3747406303882599,
+ -3.827758312225342,
+ 0.16325342655181885,
+ -0.13142693042755127,
+ 0.06127063184976578,
+ -1.556986927986145,
+ -0.30194032192230225,
+ -0.7917845845222473,
+ -1.3095362186431885,
+ 1.0542545318603516,
+ -0.3132663667201996,
+ -0.7766544818878174,
+ -0.09713749587535858,
+ -0.9210371971130371,
+ -1.1951301097869873,
+ 0.9175567030906677,
+ 0.8756079077720642,
+ -0.10872437804937363,
+ -1.1245625019073486,
+ 0.7035769820213318,
+ 2.889251708984375,
+ -0.0360046923160553,
+ 0.7276871800422668,
+ 1.7429883480072021,
+ 0.6820039749145508,
+ -0.6893470287322998,
+ -0.9591223001480103,
+ -0.9210542440414429,
+ -0.0009433962404727936,
+ -0.9754754304885864,
+ -1.2602285146713257,
+ 0.29098695516586304,
+ -0.747571587562561,
+ 2.021019697189331,
+ 1.751353144645691,
+ 1.4417142868041992,
+ 0.5019100904464722,
+ 0.411567747592926,
+ -0.5092809200286865,
+ 0.3410460948944092,
+ -0.21845726668834686,
+ -0.2959781587123871,
+ 0.5274823307991028,
+ -0.6226019859313965,
+ -0.17512007057666779,
+ 0.2526155412197113,
+ 0.7865374088287354,
+ 1.0719645023345947,
+ -0.3344336450099945,
+ -0.49272969365119934,
+ -0.2547629177570343,
+ 0.7054104208946228,
+ 0.8395776748657227,
+ -0.5814949870109558,
+ 0.12924322485923767,
+ 0.8817228078842163,
+ -1.0396921634674072,
+ -1.3402910232543945,
+ 0.34344151616096497,
+ -0.6009087562561035,
+ 0.56369549036026,
+ -0.5265145301818848,
+ -0.29250505566596985,
+ -1.2848035097122192,
+ -1.8196510076522827,
+ -1.020331621170044,
+ 1.0296010971069336,
+ -1.054504632949829,
+ 0.8250865936279297,
+ 0.8603881597518921,
+ 1.0810657739639282,
+ -1.769437551498413,
+ -0.37460842728614807,
+ 0.8413809537887573,
+ -0.011225839145481586,
+ 0.08709980547428131,
+ 0.5479653477668762,
+ 0.21635660529136658,
+ -0.1465304046869278,
+ -1.4285920858383179,
+ -0.6360998749732971,
+ -0.23442377150058746,
+ -0.7433455586433411,
+ 0.6896586418151855,
+ -0.30043676495552063,
+ 0.8783072233200073,
+ -0.19979968667030334,
+ -0.10970084369182587,
+ 0.3372015655040741,
+ -1.4789363145828247,
+ 0.26378023624420166,
+ -1.6212613582611084,
+ -0.831260085105896,
+ 0.4700539708137512,
+ 0.03969357907772064,
+ -1.4741288423538208,
+ 0.23634546995162964,
+ -0.427188515663147,
+ 0.44163691997528076,
+ -1.1695406436920166,
+ -1.2269659042358398,
+ -0.48328861594200134,
+ -0.4025880694389343,
+ 0.255276620388031,
+ -0.724515438079834,
+ -0.5421721935272217,
+ 0.14623120427131653,
+ 0.6851348280906677,
+ -0.6386953592300415,
+ 0.1809483915567398,
+ 0.23046641051769257,
+ -0.9061475396156311,
+ 0.2966683506965637,
+ -0.01852523721754551,
+ -0.7408685088157654,
+ -0.4741729199886322,
+ 0.35719600319862366,
+ 0.9068987965583801,
+ 0.448069304227829,
+ -0.03510580211877823,
+ -0.1987922042608261,
+ 0.16387997567653656,
+ -0.3434574007987976,
+ -0.6625919342041016,
+ -1.1778113842010498,
+ -0.9291026592254639,
+ 0.9102657437324524,
+ 0.9535101056098938,
+ 0.6179718375205994,
+ -0.047783344984054565,
+ 0.40655606985092163,
+ 1.013575553894043,
+ -1.027955412864685,
+ 0.4614315330982208,
+ 0.2195102423429489,
+ 1.0270158052444458,
+ -0.9992574453353882,
+ -1.2152386903762817,
+ 0.8307034373283386,
+ -0.04238925129175186,
+ -0.4241870641708374,
+ 1.1288435459136963,
+ 0.1728387475013733,
+ -0.10297181457281113,
+ -0.43070319294929504,
+ -0.7245205044746399,
+ 0.21671639382839203,
+ -0.18403978645801544,
+ 0.6433984637260437,
+ -1.1766455173492432,
+ -0.8823853135108948,
+ -0.5197881460189819,
+ -0.4846300184726715,
+ 1.1113271713256836,
+ 1.2978578805923462,
+ 1.00031316280365,
+ 0.6044570207595825,
+ -0.43537625670433044,
+ -0.6395081877708435,
+ 0.7627479434013367,
+ 0.9305368661880493,
+ -0.19162403047084808,
+ -0.17720645666122437,
+ -0.6489070057868958,
+ -0.06849177181720734,
+ 0.16561876237392426,
+ 0.79462730884552,
+ 1.0288679599761963,
+ -0.1900556981563568,
+ -0.6711165308952332,
+ 0.09062367677688599,
+ 0.5110888481140137,
+ 1.2029616832733154,
+ -1.122361421585083,
+ 0.09971068799495697,
+ 0.12904676795005798,
+ -0.9588370323181152,
+ 1.158914566040039,
+ -0.7053718566894531,
+ -0.015874989330768585,
+ -1.1714370250701904,
+ 0.7531986236572266,
+ -0.5170239806175232,
+ -0.29207614064216614,
+ 1.0923212766647339,
+ -0.0994618758559227,
+ -0.09286092221736908,
+ -0.46450719237327576,
+ 0.9693856239318848,
+ -0.2119777351617813,
+ 0.5915653705596924,
+ 0.29830867052078247,
+ -0.8945173621177673,
+ 1.2965478897094727,
+ -1.7532542943954468,
+ 1.5939539670944214,
+ -0.06794453412294388,
+ -0.5338616371154785,
+ -0.03823663294315338,
+ 0.6925313472747803,
+ 0.5488585233688354,
+ -0.7808416485786438,
+ 0.2895021438598633,
+ 0.336620032787323,
+ -0.3193483352661133,
+ -0.6293757557868958,
+ 0.4553722143173218,
+ -0.3938710391521454,
+ -0.6588837504386902,
+ 0.44871944189071655,
+ 0.9352108836174011,
+ -0.2628611922264099,
+ -0.3398936986923218,
+ -0.6980348229408264,
+ 0.9670835733413696,
+ -0.35534459352493286,
+ -0.32961007952690125,
+ 1.2925666570663452,
+ -0.8231470584869385,
+ 1.1970394849777222,
+ 0.4116436541080475,
+ 0.708166778087616,
+ 1.2333954572677612,
+ -0.19586262106895447,
+ 0.5800647139549255,
+ -0.23422522842884064,
+ 0.3626834452152252,
+ -0.6495195031166077,
+ -0.11536897718906403,
+ -1.3013538122177124,
+ -1.2261102199554443,
+ 0.7194820046424866,
+ 0.7405726313591003,
+ 1.1797112226486206,
+ 0.510381817817688,
+ 0.716805100440979,
+ 0.28215545415878296,
+ 0.251433402299881,
+ -0.1590781807899475,
+ -1.5162910223007202,
+ -0.8034846782684326,
+ 0.5994957089424133,
+ 0.04665602743625641,
+ -0.33542507886886597,
+ 1.2059036493301392
+ ]
+ },
+ {
+ "key": 5,
+ "name": "Emily Cooper",
+ "type": "movie",
+ "media": "Emily in Paris",
+ "label": [
+ "Adventurous",
+ "Ambitious",
+ "Courageous",
+ "Flirtatious",
+ "Romantic"
+ ],
+ "embedding": [
+ -0.8122904300689697,
+ 0.11889711022377014,
+ 0.18937936425209045,
+ -0.6038594245910645,
+ -0.6165827512741089,
+ -0.01430707797408104,
+ 0.0874282717704773,
+ -0.7644797563552856,
+ -0.9360663294792175,
+ -0.4054986238479614,
+ 0.4043772518634796,
+ 0.07641427218914032,
+ -1.6600923538208008,
+ -0.18849997222423553,
+ 1.2037925720214844,
+ 0.9811651706695557,
+ 0.5330884456634521,
+ -0.15822233259677887,
+ -1.457280158996582,
+ -0.6408333778381348,
+ -0.26919859647750854,
+ 0.25191694498062134,
+ -0.6334505677223206,
+ -0.9277969002723694,
+ -1.2508240938186646,
+ 0.06505124270915985,
+ -0.5428680181503296,
+ 0.03166898712515831,
+ -1.0663501024246216,
+ 0.7762659788131714,
+ -0.41417208313941956,
+ 0.5660287737846375,
+ -0.1288377195596695,
+ -1.700079321861267,
+ 0.5145546793937683,
+ -1.0680086612701416,
+ 0.11398909986019135,
+ 0.41758617758750916,
+ -1.726424217224121,
+ 1.0893508195877075,
+ 1.1171157360076904,
+ -0.9404629468917847,
+ 0.5653876662254333,
+ -0.7646632194519043,
+ 0.5717947483062744,
+ -0.5774726867675781,
+ 0.11673621833324432,
+ -0.6696977019309998,
+ 0.40586286783218384,
+ 0.24334856867790222,
+ -0.4947727918624878,
+ 0.3789561092853546,
+ 0.6716940402984619,
+ 0.013366911560297012,
+ 0.1597806215286255,
+ 0.46340397000312805,
+ 0.42003002762794495,
+ -0.6639547348022461,
+ -1.1935392618179321,
+ -2.296175718307495,
+ -1.0192828178405762,
+ -0.0749327689409256,
+ -0.3604423701763153,
+ 0.16370810568332672,
+ -0.4070195257663727,
+ 1.4501322507858276,
+ -0.0036948565393686295,
+ -0.22211700677871704,
+ 0.4620678424835205,
+ -1.171877384185791,
+ -0.5505256652832031,
+ 0.0907147079706192,
+ -0.857604444026947,
+ 0.636594295501709,
+ -2.1753149032592773,
+ 0.06851145625114441,
+ 0.10199898481369019,
+ -0.7779062390327454,
+ -0.1666852831840515,
+ 1.2114028930664062,
+ 0.44236379861831665,
+ 0.8042166829109192,
+ 0.18723064661026,
+ 0.3543573319911957,
+ -0.6329708695411682,
+ 0.8132692575454712,
+ -0.20001868903636932,
+ -0.767549455165863,
+ -0.10201717168092728,
+ 0.31758564710617065,
+ -1.3807414770126343,
+ 0.29509273171424866,
+ 0.5187625885009766,
+ -1.2867815494537354,
+ -0.8363784551620483,
+ 0.4285043776035309,
+ -0.7130795121192932,
+ -0.25401771068573,
+ 1.3176419734954834,
+ 0.28642722964286804,
+ 0.10735653340816498,
+ 0.4933916926383972,
+ 0.02986479550600052,
+ 0.15796545147895813,
+ 0.39257946610450745,
+ -1.7280128002166748,
+ 0.12568803131580353,
+ 0.9500346779823303,
+ 0.6191926002502441,
+ 0.09534826874732971,
+ 0.943405270576477,
+ -0.5045432448387146,
+ 0.5307637453079224,
+ 0.36833566427230835,
+ 0.1612568348646164,
+ 0.24274396896362305,
+ -0.1558709293603897,
+ -0.5308884382247925,
+ 0.02766038477420807,
+ 0.07508088648319244,
+ 0.7584908604621887,
+ 0.6809718608856201,
+ 0.5943867564201355,
+ -0.6332818269729614,
+ -0.6703513264656067,
+ -0.7164848446846008,
+ -0.29096370935440063,
+ 1.2556332349777222,
+ 0.298221230506897,
+ 0.6562967896461487,
+ 1.8379167318344116,
+ -0.11726971715688705,
+ -1.0153110027313232,
+ -0.8281075358390808,
+ -0.038052089512348175,
+ -0.5036255121231079,
+ -0.6677537560462952,
+ 0.08413907140493393,
+ 0.2877749800682068,
+ -1.21615469455719,
+ -0.05993900075554848,
+ 0.3147635757923126,
+ 0.4070378541946411,
+ -1.3783329725265503,
+ 0.6923828125,
+ -1.4410479068756104,
+ 0.8569208383560181,
+ 0.07421872764825821,
+ -0.8822723627090454,
+ 0.07066883891820908,
+ 1.487009882926941,
+ -0.13259658217430115,
+ 0.5448575019836426,
+ 1.435193657875061,
+ 0.49497997760772705,
+ -1.9224538803100586,
+ -0.41374310851097107,
+ 0.5899842977523804,
+ 0.5138614773750305,
+ 0.883815586566925,
+ 0.07848235964775085,
+ -0.7661558389663696,
+ -0.26703986525535583,
+ -1.1204564571380615,
+ 0.13131855428218842,
+ -0.3752657175064087,
+ 1.3554922342300415,
+ 1.092748999595642,
+ 0.3023171126842499,
+ -0.6117034554481506,
+ 0.11373648047447205,
+ -1.5159474611282349,
+ -0.034461092203855515,
+ 0.48843157291412354,
+ 0.2780376672744751,
+ -0.19450484216213226,
+ 2.091815948486328,
+ 0.12030734121799469,
+ 1.5464073419570923,
+ -1.0296775102615356,
+ -0.9781790375709534,
+ 0.7951244115829468,
+ -1.002345085144043,
+ -0.2736700773239136,
+ -0.508433997631073,
+ 0.1954548954963684,
+ -0.45304107666015625,
+ -0.2863890528678894,
+ 0.5482822060585022,
+ 0.9791632890701294,
+ -0.08433651179075241,
+ -1.0720651149749756,
+ -0.20482948422431946,
+ -0.9359437227249146,
+ 0.5953586101531982,
+ -0.14822284877300262,
+ -0.26221656799316406,
+ -1.123104453086853,
+ 0.09402791410684586,
+ -2.1202073097229004,
+ 0.6121523976325989,
+ 0.24746578931808472,
+ 0.5956720113754272,
+ -0.5104382038116455,
+ -0.6600471138954163,
+ 0.02466636151075363,
+ -1.3522779941558838,
+ -0.9152101874351501,
+ 0.9749524593353271,
+ -1.0201973915100098,
+ -0.05087548494338989,
+ -0.281292587518692,
+ -0.2335241734981537,
+ -0.7990289926528931,
+ -1.0468604564666748,
+ -0.7281791567802429,
+ 0.5409387350082397,
+ 0.8656837940216064,
+ -0.5192398428916931,
+ 0.1891811043024063,
+ 0.6426912546157837,
+ 0.7224546670913696,
+ 1.4182645082473755,
+ 0.30165213346481323,
+ 0.8599305152893066,
+ 1.5191649198532104,
+ 0.18848884105682373,
+ 1.0409033298492432,
+ -0.33152899146080017,
+ 0.5110116600990295,
+ 0.47202879190444946,
+ 0.30465489625930786,
+ 0.7318886518478394,
+ 0.32727518677711487,
+ -0.6275789141654968,
+ -0.2511259913444519,
+ -0.3240376114845276,
+ 0.2586688697338104,
+ 0.42238327860832214,
+ 0.34534507989883423,
+ -0.4185701906681061,
+ -0.7824423313140869,
+ 1.6248418092727661,
+ 0.5344693660736084,
+ -0.7785927057266235,
+ 0.20320989191532135,
+ 0.5152348875999451,
+ 0.22979973256587982,
+ -0.34951475262641907,
+ -0.4986269474029541,
+ 0.28741568326950073,
+ -0.5019767880439758,
+ -1.928200602531433,
+ -1.1035553216934204,
+ 0.692581057548523,
+ -0.1644631177186966,
+ 0.09793567657470703,
+ 0.17003709077835083,
+ 0.03222731500864029,
+ -0.2183459848165512,
+ -0.5505551695823669,
+ 0.567571759223938,
+ -0.34325242042541504,
+ 1.1392467021942139,
+ -0.11551980674266815,
+ -0.47426745295524597,
+ 0.4783112704753876,
+ 0.350299596786499,
+ 0.1942826360464096,
+ -0.49588239192962646,
+ -0.7281690239906311,
+ 0.1260616034269333,
+ 0.3001466393470764,
+ -0.9598283767700195,
+ -0.22225883603096008,
+ 0.9163636565208435,
+ -0.3985616862773895,
+ -0.32817405462265015,
+ 1.075372338294983,
+ 0.6396099328994751,
+ 0.83260577917099,
+ 0.6703763008117676,
+ -0.11763588339090347,
+ -0.5874794125556946,
+ 1.0078809261322021,
+ -0.5590976476669312,
+ -0.48735105991363525,
+ -0.7204746603965759,
+ 0.28776970505714417,
+ -2.0047850608825684,
+ 0.9333615303039551,
+ 0.16437223553657532,
+ 1.640456199645996,
+ 0.6800558567047119,
+ -0.1373317688703537,
+ -1.1790915727615356,
+ -0.5992216467857361,
+ -3.8440165519714355,
+ -0.5350828766822815,
+ -0.6429529190063477,
+ 0.5449528098106384,
+ -0.2126200944185257,
+ 0.19264782965183258,
+ -0.9087117314338684,
+ 0.1602698564529419,
+ 0.10338094830513,
+ -0.33884137868881226,
+ -0.019868243485689163,
+ -1.3181487321853638,
+ -0.582904577255249,
+ -0.19371435046195984,
+ -0.6867525577545166,
+ -0.3107130527496338,
+ -1.1394001245498657,
+ 0.5403401851654053,
+ 0.6168420910835266,
+ -0.839906632900238,
+ -0.9484211802482605,
+ -0.35084864497184753,
+ 1.3561793565750122,
+ 0.06216044723987579,
+ -0.0868983119726181,
+ 0.05906284600496292,
+ -0.5272969007492065,
+ -0.8533174395561218,
+ -0.914831280708313,
+ -0.15117120742797852,
+ -0.5208699703216553,
+ -0.013775113970041275,
+ -0.4518880248069763,
+ 0.7086966037750244,
+ 0.975954532623291,
+ 1.41594660282135,
+ -0.1913655549287796,
+ 0.4161341190338135,
+ 0.194364994764328,
+ -0.38116300106048584,
+ 0.04368503391742706,
+ 0.5735489726066589,
+ -0.22694313526153564,
+ 0.20575840771198273,
+ -0.0802111029624939,
+ -0.6577948927879333,
+ -0.17814472317695618,
+ 0.8366195559501648,
+ -0.7797808647155762,
+ -1.5100809335708618,
+ 0.08392637223005295,
+ -0.7453406453132629,
+ 0.016646862030029297,
+ -0.34121841192245483,
+ -1.6627203226089478,
+ 0.6786235570907593,
+ -0.18420058488845825,
+ 0.037210360169410706,
+ 1.5087357759475708,
+ 0.6788035035133362,
+ -0.5421187877655029,
+ -1.3787891864776611,
+ -0.19963787496089935,
+ -0.18243375420570374,
+ -0.5452833771705627,
+ -0.06870640814304352,
+ 0.031833574175834656,
+ 0.0017750300467014313,
+ 0.98291015625,
+ 0.283525675535202,
+ 1.084182620048523,
+ 1.2750698328018188,
+ 0.5735196471214294,
+ -0.624397337436676,
+ 0.13439464569091797,
+ 0.8448923230171204,
+ 0.21725524961948395,
+ 0.3696124255657196,
+ -1.2037752866744995,
+ -0.11698052287101746,
+ 0.9922342300415039,
+ -0.0380207821726799,
+ 0.12387338280677795,
+ -0.17430490255355835,
+ -0.7948538661003113,
+ -1.013683557510376,
+ 0.31885868310928345,
+ 0.7004942893981934,
+ 0.7188729643821716,
+ 5.918939113616943,
+ 0.10020765662193298,
+ 1.7731473445892334,
+ 0.6291056871414185,
+ 1.747329831123352,
+ -0.07823961228132248,
+ -0.20307880640029907,
+ 0.5496593117713928,
+ -0.05330464988946915,
+ -0.4383400082588196,
+ 0.7318715453147888,
+ 0.9090404510498047,
+ -0.9251723885536194,
+ 0.42006540298461914,
+ 0.11766929924488068,
+ 1.4163023233413696,
+ -0.38494858145713806,
+ -0.21287699043750763,
+ 1.808642029762268,
+ -0.40919730067253113,
+ 0.6652523875236511,
+ -0.27309510111808777,
+ -0.20593807101249695,
+ -0.2346247434616089,
+ -1.0088157653808594,
+ 0.008970104157924652,
+ 1.1469099521636963,
+ 0.05282990634441376,
+ -0.2874295115470886,
+ 0.06112593412399292,
+ -0.30474451184272766,
+ 1.7422823905944824,
+ 1.399823546409607,
+ 0.7556502223014832,
+ -0.5208436250686646,
+ -0.24040065705776215,
+ -1.364383578300476,
+ -0.4998861253261566,
+ -1.052280306816101,
+ 0.9301301836967468,
+ -1.3521090745925903,
+ -0.9629130363464355,
+ -0.423379123210907,
+ -0.31673887372016907,
+ -0.2609739303588867,
+ 0.153691366314888,
+ 0.18076202273368835,
+ -0.9727231860160828,
+ -0.1248483955860138,
+ -1.1086069345474243,
+ -0.5345298647880554,
+ 0.4433036744594574,
+ -0.35452088713645935,
+ 0.6916897892951965,
+ 1.567430853843689,
+ -0.174565851688385,
+ -0.5283614993095398,
+ -0.40874114632606506,
+ -0.23427052795886993,
+ 1.4374767541885376,
+ 0.6857172250747681,
+ 0.43486127257347107,
+ -1.7807878255844116,
+ -1.016729712486267,
+ 0.08291276544332504,
+ 1.4981651306152344,
+ -1.0627659559249878,
+ -0.17319628596305847,
+ -0.8179856538772583,
+ -0.05377521738409996,
+ -1.3723640441894531,
+ 0.7933686971664429,
+ 0.13840873539447784,
+ 0.32405292987823486,
+ -0.5127102136611938,
+ 0.6647617220878601,
+ -0.2662738561630249,
+ 1.1015541553497314,
+ 0.7532535195350647,
+ 0.2515876293182373,
+ 0.7436748743057251,
+ -0.7323644757270813,
+ -0.23189467191696167,
+ 0.4662516415119171,
+ 1.1480069160461426,
+ 0.7723361253738403,
+ -0.8471466898918152,
+ 0.6796361804008484,
+ -0.1190200001001358,
+ -0.5738732218742371,
+ -0.6965367197990417,
+ -0.2470414638519287,
+ -1.0139446258544922,
+ -0.45142239332199097,
+ -0.6561782956123352,
+ -1.3272196054458618,
+ 2.005690574645996,
+ -1.6413589715957642,
+ -2.006570816040039,
+ -0.1627039909362793,
+ 0.9608558416366577,
+ -0.1734546422958374,
+ -0.8149366974830627,
+ -0.4691479504108429,
+ 0.9376739263534546,
+ 0.31181856989860535,
+ -0.4903380274772644,
+ -0.34031978249549866,
+ -0.8597709536552429,
+ 0.9148135781288147,
+ -0.03197021782398224,
+ 0.7351291179656982,
+ -0.7278478145599365,
+ 0.5244502425193787,
+ 0.8753735423088074,
+ 0.5791494846343994,
+ 0.3273434638977051,
+ -0.6794427037239075,
+ 1.3636428117752075,
+ 0.05938849598169327,
+ -0.42119285464286804,
+ -0.7019041180610657,
+ -0.8278884887695312,
+ -0.6870149374008179,
+ -0.9871585965156555,
+ -2.409008026123047,
+ 0.7175402045249939,
+ 1.7216781377792358,
+ -0.7372967004776001,
+ 0.8062309622764587,
+ 0.2509799897670746,
+ -0.6305743455886841,
+ 0.35405927896499634,
+ 1.0281203985214233,
+ 1.743392825126648,
+ -0.3321603238582611,
+ 2.063777446746826,
+ -0.10269072651863098,
+ -0.14009545743465424,
+ 0.147856205701828,
+ 0.17261908948421478,
+ 0.2720628082752228,
+ -1.1349964141845703,
+ 0.897773027420044,
+ 0.47711557149887085,
+ 1.0950852632522583,
+ -2.1309003829956055,
+ -0.4710572063922882,
+ 0.13961371779441833,
+ 0.3643995523452759,
+ 0.567335844039917,
+ -0.5560863018035889,
+ 0.9377809166908264,
+ -1.346261739730835,
+ 0.48143458366394043,
+ 0.01793215051293373,
+ -0.29822811484336853,
+ -0.09148315340280533,
+ -0.5962930917739868,
+ -1.023348093032837,
+ 0.17957454919815063,
+ 0.8697295188903809,
+ 0.9056746363639832,
+ 2.255333423614502,
+ -0.8461818695068359,
+ 1.5902431011199951,
+ 0.48843127489089966,
+ 1.2384697198867798,
+ -0.4907970428466797,
+ -0.5532758235931396,
+ -0.5333210229873657,
+ 0.2790883481502533,
+ -0.6226260662078857,
+ 1.0426708459854126,
+ 0.6975402235984802,
+ 0.30970102548599243,
+ 0.9463833570480347,
+ -0.022820990532636642,
+ -1.3737181425094604,
+ 0.014490019530057907,
+ 0.3478853702545166,
+ 0.8846322298049927,
+ -0.45856672525405884,
+ -0.04801308363676071,
+ 0.7293742895126343,
+ 0.4179246127605438,
+ -0.34801581501960754,
+ -0.7225557565689087,
+ -0.4535231292247772,
+ -0.4983694851398468,
+ 0.9596043825149536,
+ 1.4576066732406616,
+ 0.19422227144241333,
+ -0.9104282259941101,
+ 0.2606613337993622,
+ -1.733361005783081,
+ 1.0649791955947876,
+ -0.14231452345848083,
+ -0.4827665686607361,
+ 0.6851164102554321,
+ -0.4026324152946472,
+ -0.5365752577781677,
+ -0.9358506202697754,
+ -1.0806491374969482,
+ -0.04145471006631851,
+ -0.2482963502407074,
+ 0.5646129846572876,
+ 0.5666780471801758,
+ -0.4704807996749878,
+ -0.5006862878799438,
+ -0.20618093013763428,
+ 0.6912057399749756,
+ 0.12019333988428116,
+ 0.17131561040878296,
+ -1.0554591417312622,
+ -0.0017045550048351288,
+ 0.6130859851837158,
+ -0.5368338823318481,
+ -0.6784523129463196,
+ -0.8614903092384338,
+ -0.807510495185852,
+ 0.5467953681945801,
+ 0.9727545976638794,
+ -0.010745234787464142,
+ -1.0067352056503296,
+ -1.370663046836853,
+ 0.24080294370651245,
+ -0.6896464824676514,
+ -0.30539655685424805,
+ 0.06877383589744568,
+ -0.18693546950817108,
+ 0.7322242259979248,
+ -0.9585889577865601,
+ 0.8124675154685974,
+ -0.13282358646392822,
+ -0.6305235028266907,
+ 0.17235863208770752,
+ 0.6507667303085327,
+ 0.3320768177509308,
+ -0.5556907653808594,
+ -0.6974369883537292,
+ -0.5281186699867249,
+ -0.6246827244758606,
+ 1.2179290056228638,
+ 0.17525018751621246,
+ 0.18784518539905548,
+ 0.5534427165985107,
+ -0.5837693214416504,
+ 0.9566476941108704,
+ 1.0640668869018555,
+ -0.5308685302734375,
+ -0.4122709035873413,
+ 0.33845949172973633,
+ -0.645642101764679,
+ 1.0720628499984741,
+ -1.1165375709533691,
+ 0.9013353586196899,
+ -0.12745115160942078,
+ -0.8366870880126953,
+ -0.4220045506954193,
+ -0.7907819151878357,
+ 0.7062985301017761,
+ -0.3823409676551819,
+ 0.3775867521762848,
+ -2.264281988143921,
+ -1.5137596130371094,
+ 0.0074093639850616455,
+ -1.4265302419662476,
+ -1.3180160522460938,
+ 0.04722399264574051,
+ -1.0854986906051636,
+ -0.50901198387146,
+ -0.720474362373352,
+ -1.4960973262786865,
+ 1.1452651023864746,
+ 0.7979925274848938,
+ -0.9136332869529724,
+ 0.6603260636329651,
+ 0.5957611799240112,
+ 1.5001962184906006,
+ -1.0789463520050049,
+ 1.7380852699279785,
+ -0.4014013111591339,
+ -0.29798051714897156,
+ 0.6412525773048401,
+ 0.26549017429351807,
+ 0.13065782189369202,
+ 0.05828803777694702,
+ 0.15975822508335114,
+ -0.26287418603897095,
+ 0.6901777386665344,
+ -1.1086018085479736,
+ -0.497453510761261,
+ 0.8765474557876587,
+ -0.4728080928325653,
+ -0.6420004963874817,
+ -0.04627421870827675,
+ 0.663985550403595,
+ -0.6423060297966003,
+ -0.10902291536331177,
+ 0.09785936772823334,
+ 0.43892550468444824,
+ -0.10631824284791946,
+ 0.18706141412258148,
+ -0.6211332678794861,
+ 0.04169490188360214,
+ 0.6397305130958557,
+ -0.5394302606582642,
+ 1.0958739519119263,
+ 1.1325231790542603,
+ -0.14114628732204437,
+ -0.9959030151367188,
+ 0.31057605147361755,
+ -0.4333610236644745,
+ 0.36290210485458374,
+ -1.2443634271621704,
+ -0.053195156157016754,
+ 1.0287033319473267,
+ 0.4106328785419464,
+ 0.2328449785709381,
+ 1.0325003862380981,
+ -0.21853962540626526,
+ -0.36457106471061707,
+ 0.5545187592506409,
+ -0.7972370386123657,
+ 0.43288031220436096,
+ 0.6629946827888489,
+ -0.05188353732228279,
+ 0.22573962807655334,
+ -0.33796292543411255,
+ -0.08558608591556549,
+ -1.5942704677581787,
+ -0.1776191145181656,
+ 0.0009677484631538391,
+ 0.9478318095207214,
+ 2.0483970642089844,
+ 0.19968102872371674,
+ 0.16154110431671143,
+ 0.24215316772460938,
+ 0.48117032647132874,
+ 0.7659547328948975,
+ 1.9500805139541626,
+ 0.26237979531288147,
+ -0.6195691823959351,
+ 0.9883936643600464,
+ -0.8534420728683472,
+ -0.4034460783004761,
+ 0.4572739601135254,
+ 0.13326913118362427,
+ -1.3885046243667603,
+ 0.13372603058815002,
+ 2.6746468544006348,
+ -0.027942363172769547,
+ -1.2683029174804688,
+ 0.9133937358856201,
+ 0.8581316471099854,
+ -1.2023512125015259,
+ -0.042964957654476166,
+ 0.23870113492012024,
+ 0.15656158328056335,
+ -0.6713587641716003,
+ 0.5179125666618347,
+ 0.11352640390396118,
+ -0.4315606653690338,
+ 0.34392333030700684,
+ 0.5307884216308594,
+ 0.015955744311213493,
+ 0.04530651122331619,
+ 0.7808144688606262,
+ -0.4931145906448364,
+ -0.45951753854751587,
+ 0.3611562252044678,
+ 0.04760301485657692,
+ 1.3985484838485718,
+ -0.3654199242591858,
+ 1.2662228345870972,
+ -0.5929840803146362,
+ -0.6291642785072327,
+ 0.46897172927856445,
+ 0.012637749314308167,
+ -0.2521607279777527,
+ -0.2821425795555115,
+ 0.07166934758424759,
+ -0.40762606263160706,
+ -0.09920775890350342,
+ -0.27184170484542847,
+ -0.204824760556221,
+ 1.1286741495132446,
+ -0.3997141122817993,
+ 0.7459679245948792,
+ -0.21022671461105347,
+ -0.9389165043830872,
+ -1.3158137798309326,
+ 0.7129049897193909,
+ -4.335606575012207,
+ 0.6463784575462341,
+ 0.006241673603653908,
+ 0.11025667190551758,
+ -0.8016533255577087,
+ 0.6064565181732178,
+ -1.8228521347045898,
+ -1.512272834777832,
+ 0.927642822265625,
+ -0.22080495953559875,
+ -0.4980812668800354,
+ 0.69029700756073,
+ -0.17910413444042206,
+ -1.0528796911239624,
+ 0.411554753780365,
+ 1.1301172971725464,
+ 0.6346296668052673,
+ -0.6030521392822266,
+ 0.501581609249115,
+ 1.1656886339187622,
+ 0.3294470012187958,
+ -0.5104058980941772,
+ 1.1992846727371216,
+ 0.2270236313343048,
+ 0.07505661249160767,
+ -0.3340674638748169,
+ -0.4821693003177643,
+ 0.23791015148162842,
+ -0.9725891947746277,
+ -0.27003780007362366,
+ -0.8900377154350281,
+ -0.6220181584358215,
+ 1.4456523656845093,
+ 0.6358937621116638,
+ 1.3391211032867432,
+ -0.24636416137218475,
+ 0.4901197552680969,
+ -0.5104149580001831,
+ -0.7122089266777039,
+ -0.42179787158966064,
+ 0.863067626953125,
+ -0.1321500837802887,
+ -0.899344801902771,
+ 1.190536379814148,
+ 0.3370458483695984,
+ -0.8136798143386841,
+ 0.7832944393157959,
+ -0.13532820343971252,
+ -1.0148124694824219,
+ -0.29287853837013245,
+ 0.10934355854988098,
+ 0.9807630777359009,
+ 1.1142688989639282,
+ 0.98331618309021,
+ 0.5569309592247009,
+ -0.2182662934064865,
+ -0.5755133628845215,
+ 0.34728795289993286,
+ -0.5140343904495239,
+ 0.5180967450141907,
+ -1.2125236988067627,
+ -0.24442945420742035,
+ -1.2176955938339233,
+ -1.0459686517715454,
+ -0.47538089752197266,
+ 0.2307962328195572,
+ -0.9394955039024353,
+ 1.5399351119995117,
+ 0.39263781905174255,
+ -0.0017230957746505737,
+ -0.7625220417976379,
+ -0.6347237229347229,
+ 1.2139222621917725,
+ -0.8059096932411194,
+ 0.1328693926334381,
+ 0.7370768785476685,
+ 0.8817285299301147,
+ 0.20832116901874542,
+ -1.4154893159866333,
+ -0.7689786553382874,
+ -0.49723881483078003,
+ -0.8083207607269287,
+ 0.8044858574867249,
+ 0.3314685821533203,
+ 0.5381460785865784,
+ -0.14963187277317047,
+ -1.044448733329773,
+ 0.30160191655158997,
+ -2.541886568069458,
+ 1.1578222513198853,
+ -1.28225576877594,
+ -1.2402334213256836,
+ 0.8955882787704468,
+ -0.2328137457370758,
+ -0.24303190410137177,
+ 0.1007123738527298,
+ -0.05722741037607193,
+ 0.9358694553375244,
+ -0.7927906513214111,
+ -0.6649056673049927,
+ -0.043214231729507446,
+ -0.8949816226959229,
+ 0.28555911779403687,
+ -0.7322231531143188,
+ -0.4899623394012451,
+ 0.27654144167900085,
+ 0.3176286816596985,
+ -0.3748621940612793,
+ -0.011228781193494797,
+ 0.07615619897842407,
+ -0.6003689169883728,
+ -0.4998781979084015,
+ 0.49539297819137573,
+ -0.26535212993621826,
+ 0.1462835669517517,
+ 0.6680489778518677,
+ 1.0846296548843384,
+ -0.151266410946846,
+ -0.644607424736023,
+ 0.3207170069217682,
+ 0.5658468008041382,
+ -0.22307178378105164,
+ 0.9230639934539795,
+ -1.5932941436767578,
+ 0.15779224038124084,
+ 1.4964519739151,
+ 0.7624805569648743,
+ 0.970378041267395,
+ 0.7404930591583252,
+ -0.26331207156181335,
+ 0.72629314661026,
+ -1.4470555782318115,
+ 0.19412298500537872,
+ 0.2885512411594391,
+ 1.0813297033309937,
+ -0.7544127702713013,
+ -0.05337051674723625,
+ 0.7298746109008789,
+ -1.1334877014160156,
+ -0.3720930218696594,
+ 0.011819615960121155,
+ -0.5488405227661133,
+ -0.4862433671951294,
+ 0.6285761594772339,
+ -0.8314398527145386,
+ 0.9753861427307129,
+ -1.5076406002044678,
+ 0.031040910631418228,
+ -0.8146782517433167,
+ -0.962234616279602,
+ 0.5251708626747131,
+ -0.7017142176628113,
+ 1.2080652713775635,
+ 0.2031843662261963,
+ 0.49468737840652466,
+ 0.8146265149116516,
+ -0.560021162033081,
+ -1.2772117853164673,
+ 0.05576857179403305,
+ 0.6744510531425476,
+ -0.32266634702682495,
+ -0.6161602139472961,
+ -0.615780770778656,
+ -0.07459824532270432,
+ -1.2859165668487549,
+ 0.33804741501808167,
+ 0.4490061402320862,
+ -0.08058737218379974,
+ 0.09067302942276001,
+ -1.8091561794281006,
+ 0.18397128582000732,
+ 1.546291708946228,
+ -1.5137794017791748,
+ -0.29419267177581787,
+ 0.9914754629135132,
+ -1.4999945163726807,
+ 0.8145664930343628,
+ 0.6017510294914246,
+ 1.1939433813095093,
+ -0.7696224451065063,
+ 0.829850435256958,
+ 0.03829166665673256,
+ -0.15243522822856903,
+ 1.0225627422332764,
+ -0.48373469710350037,
+ 0.19966194033622742,
+ 0.11978277564048767,
+ -0.2063688337802887,
+ 0.6867982149124146,
+ 1.0016988515853882,
+ -0.33007684350013733,
+ -0.7810826301574707,
+ 0.7829805612564087,
+ -0.6106613278388977,
+ 0.9637441635131836,
+ 0.11352753639221191,
+ -0.7876851558685303,
+ 0.7425732016563416,
+ 0.2582424283027649,
+ -0.19879229366779327,
+ -0.8336648941040039,
+ 0.5592759847640991,
+ 0.4459945261478424,
+ -0.4824080467224121,
+ -0.5968169569969177,
+ 0.44106632471084595,
+ -0.30906662344932556,
+ -1.2825132608413696,
+ -0.7776336073875427,
+ 0.26034268736839294,
+ -0.48502081632614136,
+ -0.4831899404525757,
+ -0.34934234619140625,
+ 0.10652066767215729,
+ -0.28525781631469727,
+ 1.2067339420318604,
+ 1.141274333000183,
+ -1.0442650318145752,
+ 0.5614427328109741,
+ 1.1378483772277832,
+ 1.5466734170913696,
+ -0.012603726238012314,
+ -0.5041149854660034,
+ 0.6442027688026428,
+ 0.14214549958705902,
+ 0.6881312727928162,
+ -1.3069723844528198,
+ 0.11825983226299286,
+ -0.5788388848304749,
+ -1.2117373943328857,
+ 0.468098521232605,
+ 0.5323364734649658,
+ 0.11128653585910797,
+ 1.3964152336120605,
+ 0.29742667078971863,
+ 1.224966049194336,
+ 0.997399091720581,
+ 0.22987797856330872,
+ -1.070387601852417,
+ -1.115496039390564,
+ 0.30702340602874756,
+ -0.12960267066955566,
+ 0.40180590748786926,
+ 1.0262290239334106
+ ]
+ },
+ {
+ "key": 6,
+ "name": "Gatsby ",
+ "type": "movie",
+ "media": "The Great Gatsby",
+ "label": [
+ "Luxurious",
+ "Obsessive",
+ "Persistent",
+ "Romantic"
+ ],
+ "embedding": [
+ -1.465692162513733,
+ 0.45611485838890076,
+ -0.15926505625247955,
+ -0.07192640006542206,
+ -0.7212294936180115,
+ 0.15460170805454254,
+ 0.9022558927536011,
+ -0.6401174068450928,
+ -0.4808160662651062,
+ -0.056078068912029266,
+ 0.5118240118026733,
+ -0.23057518899440765,
+ -0.7155296206474304,
+ 0.25318408012390137,
+ 1.1830594539642334,
+ 0.7862946391105652,
+ -0.02569311484694481,
+ -0.144690603017807,
+ -1.4215326309204102,
+ -0.3863096237182617,
+ -0.3252703547477722,
+ -0.8993948101997375,
+ 0.34039974212646484,
+ -0.17789457738399506,
+ -1.4967650175094604,
+ 0.34770599007606506,
+ 0.24797531962394714,
+ 0.1977003961801529,
+ -1.3126683235168457,
+ 0.13491319119930267,
+ 1.010241985321045,
+ 0.4082206189632416,
+ -0.034760862588882446,
+ -1.9823215007781982,
+ -0.15650665760040283,
+ -0.47060737013816833,
+ 0.16195356845855713,
+ -0.11179918050765991,
+ -1.5358808040618896,
+ 1.2972519397735596,
+ 1.2968096733093262,
+ -0.6425382494926453,
+ 0.49951738119125366,
+ -0.5845726132392883,
+ 0.9109589457511902,
+ -1.1586501598358154,
+ -0.0395764596760273,
+ -0.7168068289756775,
+ -0.39834874868392944,
+ 0.42162784934043884,
+ -1.1802787780761719,
+ -0.05147244781255722,
+ 1.5957086086273193,
+ -0.12875831127166748,
+ 0.6763680577278137,
+ 0.964803159236908,
+ -0.5983588695526123,
+ -1.1531763076782227,
+ -1.4651504755020142,
+ -1.381683111190796,
+ -1.3270692825317383,
+ 0.02889695018529892,
+ -0.8578264117240906,
+ 0.9969267845153809,
+ 0.6700496673583984,
+ 1.804517388343811,
+ -0.15630656480789185,
+ 0.48925793170928955,
+ 0.6680431962013245,
+ -0.7075271606445312,
+ -0.6799360513687134,
+ -0.0633556991815567,
+ -0.8397645950317383,
+ 0.47112685441970825,
+ -2.4236018657684326,
+ 0.20383961498737335,
+ 0.7735462188720703,
+ -0.9247545003890991,
+ -0.11549453437328339,
+ 0.7465705275535583,
+ 0.26543930172920227,
+ 0.8836440443992615,
+ 0.906913697719574,
+ 0.09156160056591034,
+ -0.8460531234741211,
+ 1.1117160320281982,
+ -0.09598971903324127,
+ -1.1110419034957886,
+ 0.09841590374708176,
+ 0.007787391543388367,
+ -0.7064823508262634,
+ 0.4008561968803406,
+ 0.5813997983932495,
+ -0.9820349812507629,
+ -0.18871289491653442,
+ 0.12555760145187378,
+ 0.3165770173072815,
+ 0.20604489743709564,
+ 1.5745388269424438,
+ -0.15306828916072845,
+ -0.5315859317779541,
+ -1.0933281183242798,
+ -0.355065256357193,
+ 0.2177353799343109,
+ -0.47671443223953247,
+ -0.698248565196991,
+ 0.4850742816925049,
+ 0.6286002397537231,
+ 0.004756199195981026,
+ 0.2618313729763031,
+ 0.3130605220794678,
+ 0.023154135793447495,
+ 0.08197136968374252,
+ -0.07672098278999329,
+ 0.24918267130851746,
+ -0.2280922383069992,
+ -0.27863025665283203,
+ -1.0411412715911865,
+ 0.5587872266769409,
+ -0.7395166754722595,
+ 0.567546546459198,
+ 0.23113659024238586,
+ 0.20673242211341858,
+ -0.8211097717285156,
+ -0.09917066246271133,
+ -0.7145595550537109,
+ -0.49030283093452454,
+ 0.8217403888702393,
+ -0.20186994969844818,
+ 0.5594845414161682,
+ 1.4468284845352173,
+ 0.25999608635902405,
+ -0.44304320216178894,
+ -0.90968257188797,
+ -0.941618025302887,
+ -0.6985758543014526,
+ -0.0660051703453064,
+ 0.6965763568878174,
+ 0.4368315041065216,
+ -0.8930355310440063,
+ 0.33356496691703796,
+ 1.3238571882247925,
+ 1.0476596355438232,
+ -1.0831120014190674,
+ 0.6392350792884827,
+ -1.1208034753799438,
+ -0.03203126788139343,
+ 0.6112051010131836,
+ -0.08165822178125381,
+ -0.6067003011703491,
+ 1.3952672481536865,
+ 0.3283897638320923,
+ 1.211412787437439,
+ 2.0480804443359375,
+ 0.6485729813575745,
+ -0.8567641973495483,
+ -1.1113758087158203,
+ 0.973098874092102,
+ 0.7310493588447571,
+ 0.4334287643432617,
+ -0.1373758763074875,
+ 0.5242639183998108,
+ -0.33383435010910034,
+ -0.6331255435943604,
+ -0.10032439976930618,
+ -0.8852510452270508,
+ 1.3332123756408691,
+ 0.5728276371955872,
+ 0.13138335943222046,
+ -0.9423376321792603,
+ 0.8541322350502014,
+ -2.268977403640747,
+ 0.1359313279390335,
+ -0.34366580843925476,
+ 0.5492333769798279,
+ 0.08033452928066254,
+ 2.170949697494507,
+ 0.5393934845924377,
+ 1.6373050212860107,
+ -1.480782389640808,
+ -0.8960248827934265,
+ 0.5621092319488525,
+ -0.0017934758216142654,
+ -0.10839486867189407,
+ -0.46972906589508057,
+ 0.25761547684669495,
+ -0.8379579186439514,
+ 0.44017887115478516,
+ 0.312020480632782,
+ 0.8610253930091858,
+ 0.3336757719516754,
+ -0.5031914710998535,
+ -0.13248175382614136,
+ -1.3421984910964966,
+ 0.5773135423660278,
+ -0.6453715562820435,
+ -0.22593079507350922,
+ -1.1576366424560547,
+ -0.3264859616756439,
+ -1.5637108087539673,
+ 0.4559233784675598,
+ 1.0583938360214233,
+ 0.711353600025177,
+ 0.031236104667186737,
+ -0.8116496801376343,
+ -0.38899680972099304,
+ -0.39727845788002014,
+ -1.2050772905349731,
+ 1.5641306638717651,
+ -0.016094397753477097,
+ 0.006577577441930771,
+ -0.38440999388694763,
+ 0.3955479860305786,
+ -0.2812376618385315,
+ -0.6444458365440369,
+ -1.3836302757263184,
+ 0.7645699381828308,
+ 1.1208480596542358,
+ 0.014994204044342041,
+ 0.5702763199806213,
+ -0.8857735991477966,
+ 0.7022852301597595,
+ 0.9484362602233887,
+ 0.20125232636928558,
+ 0.16108852624893188,
+ 1.3548609018325806,
+ 0.08274425566196442,
+ 1.1680545806884766,
+ -0.31455710530281067,
+ 0.5473964214324951,
+ -0.37143027782440186,
+ -0.11413988471031189,
+ 0.4487653970718384,
+ -0.16532002389431,
+ -0.02167658880352974,
+ 0.11151861399412155,
+ 0.6997002363204956,
+ -0.12791305780410767,
+ 0.6931524276733398,
+ 0.45012763142585754,
+ -0.7577568888664246,
+ -0.5394273996353149,
+ 0.8488094210624695,
+ 0.5325213670730591,
+ -0.5526771545410156,
+ -0.11335594952106476,
+ 0.8167701363563538,
+ -0.31748589873313904,
+ -0.08901327848434448,
+ -0.46084392070770264,
+ 0.2759382724761963,
+ 0.12282352149486542,
+ -1.5615429878234863,
+ -0.9363943338394165,
+ 0.5034605264663696,
+ 0.7002343535423279,
+ -0.11166888475418091,
+ -0.23664037883281708,
+ 0.15016378462314606,
+ -0.29767557978630066,
+ 0.5649340152740479,
+ 1.1164666414260864,
+ 0.14492842555046082,
+ 1.193237543106079,
+ -0.3640301525592804,
+ -0.751624345779419,
+ 0.5259284377098083,
+ 0.2787308394908905,
+ 0.013745133765041828,
+ -0.007428355515003204,
+ 0.5289120674133301,
+ 0.03974463790655136,
+ 0.3802075684070587,
+ -0.7921030521392822,
+ -0.03977208957076073,
+ 0.6473008990287781,
+ -0.5615766048431396,
+ -0.22659364342689514,
+ 0.5603684782981873,
+ 0.00790512003004551,
+ 0.8278478980064392,
+ 0.4482436776161194,
+ -0.2873185873031616,
+ -1.2010806798934937,
+ 1.3412566184997559,
+ -0.3635508418083191,
+ -0.47423768043518066,
+ 0.04766436666250229,
+ 0.3418206572532654,
+ -1.9084116220474243,
+ 0.08111720532178879,
+ -0.2734464704990387,
+ 1.7903395891189575,
+ 0.4208807349205017,
+ -0.5710065364837646,
+ -0.6292756795883179,
+ -1.2754744291305542,
+ -3.7124290466308594,
+ -0.9561830163002014,
+ -0.7773267030715942,
+ 0.4102271497249603,
+ 0.17637677490711212,
+ 0.059001341462135315,
+ -1.4367187023162842,
+ 0.3281538486480713,
+ -1.0123021602630615,
+ -0.2690449655056,
+ 0.4902178943157196,
+ -1.3830645084381104,
+ -0.6489621996879578,
+ 0.6306585669517517,
+ -0.5629804730415344,
+ -0.9939054250717163,
+ -0.5104161500930786,
+ 0.36966073513031006,
+ 0.7579692602157593,
+ -0.9147223234176636,
+ -0.210257887840271,
+ -0.5928770303726196,
+ 1.419124722480774,
+ 1.1734743118286133,
+ -0.13444454967975616,
+ 0.9207316040992737,
+ -0.08860810101032257,
+ -0.7167434692382812,
+ -1.8124041557312012,
+ -0.8032947182655334,
+ -0.5000936985015869,
+ 0.14792482554912567,
+ -0.48087432980537415,
+ 0.994779109954834,
+ 0.2978665828704834,
+ 1.9987492561340332,
+ 0.7654757499694824,
+ -0.34608030319213867,
+ 0.7175083160400391,
+ 0.024925922974944115,
+ 0.6481824517250061,
+ 0.9764403104782104,
+ -1.2342013120651245,
+ 0.5008817911148071,
+ -0.6752321124076843,
+ 0.010737736709415913,
+ -0.11098463833332062,
+ 0.42503321170806885,
+ -0.2606291174888611,
+ -0.8411270976066589,
+ 0.4360056519508362,
+ -0.5034576058387756,
+ 0.27121955156326294,
+ 0.3595143258571625,
+ -1.3563035726547241,
+ 0.20604106783866882,
+ -0.8786388039588928,
+ 0.443801611661911,
+ 0.44312506914138794,
+ -0.2541506588459015,
+ -0.6813491582870483,
+ -0.7185361981391907,
+ 0.9367364645004272,
+ -0.2872737944126129,
+ -0.5911071300506592,
+ -0.47178441286087036,
+ -0.5741249918937683,
+ -1.045842170715332,
+ 0.8863801956176758,
+ -0.10663716495037079,
+ 0.2614329755306244,
+ 0.22206979990005493,
+ -0.31751444935798645,
+ 0.12251071631908417,
+ -0.40112558007240295,
+ 1.2075295448303223,
+ 0.4480190575122833,
+ -0.41785117983818054,
+ -0.590216338634491,
+ -1.426918864250183,
+ -0.4833841025829315,
+ 0.737625002861023,
+ -0.40043964982032776,
+ 0.6158860921859741,
+ -0.034412942826747894,
+ -0.7747079730033875,
+ 0.6184255480766296,
+ 0.7268712520599365,
+ 0.8542964458465576,
+ 5.328135967254639,
+ 0.02711142599582672,
+ 1.7127094268798828,
+ 0.6963741183280945,
+ 1.350260853767395,
+ 0.17017307877540588,
+ -0.25096556544303894,
+ 0.7409434914588928,
+ -1.0731499195098877,
+ 0.13861967623233795,
+ 0.3296877145767212,
+ 0.8663384318351746,
+ -0.3027917444705963,
+ 0.6270989775657654,
+ -0.19761775434017181,
+ 1.6628376245498657,
+ -0.6431235671043396,
+ -0.7513142228126526,
+ 1.4997189044952393,
+ -0.71767657995224,
+ 0.3713160753250122,
+ -0.5593110918998718,
+ 0.029906559735536575,
+ -0.47776898741722107,
+ -0.11008283495903015,
+ -0.7159733176231384,
+ 0.46798503398895264,
+ 0.779758095741272,
+ -0.3732922077178955,
+ 0.9614248275756836,
+ -0.3708505928516388,
+ 0.12122879922389984,
+ 1.111545205116272,
+ 0.1125786304473877,
+ -1.4975965023040771,
+ 0.0091693215072155,
+ -1.5120042562484741,
+ 0.18816238641738892,
+ -1.3826344013214111,
+ 1.0378615856170654,
+ -1.3552658557891846,
+ -0.6486760973930359,
+ -0.424086332321167,
+ 0.3434382677078247,
+ 0.5900885462760925,
+ -0.04308174178004265,
+ 0.345662385225296,
+ -0.14546304941177368,
+ -0.1094774380326271,
+ -1.6973903179168701,
+ 0.11837844550609589,
+ -0.5176790952682495,
+ -0.7421711087226868,
+ 0.5444751381874084,
+ 0.8460597395896912,
+ -0.6593643426895142,
+ -0.6702152490615845,
+ 0.3098853826522827,
+ -0.7792406678199768,
+ 2.761050224304199,
+ 0.3991977274417877,
+ 0.8122486472129822,
+ -2.1590044498443604,
+ 0.6445703506469727,
+ 0.6775420904159546,
+ 0.45145702362060547,
+ -0.5944499969482422,
+ 0.8427201509475708,
+ -0.9165183901786804,
+ 0.031159237027168274,
+ -0.33430564403533936,
+ 0.5433438420295715,
+ 0.9672861099243164,
+ -0.42113402485847473,
+ -0.15883877873420715,
+ 1.0752614736557007,
+ -0.2747098207473755,
+ 1.4743455648422241,
+ 0.536225438117981,
+ -0.7730381488800049,
+ 1.5613341331481934,
+ -0.8343018889427185,
+ -0.2721542418003082,
+ 0.20091032981872559,
+ 1.227375864982605,
+ 0.4963722229003906,
+ -0.4351223111152649,
+ 1.3232070207595825,
+ -1.0622196197509766,
+ -0.9493465423583984,
+ -1.4787485599517822,
+ -0.28684568405151367,
+ -1.3404217958450317,
+ 0.17189829051494598,
+ -0.4989332854747772,
+ -1.1039211750030518,
+ 0.7141355872154236,
+ -0.8935973048210144,
+ -1.1067285537719727,
+ 0.2496064007282257,
+ 1.2262396812438965,
+ -0.11871148645877838,
+ -0.4904298186302185,
+ -1.4198081493377686,
+ 0.4002547562122345,
+ -0.8402169942855835,
+ -0.6464869379997253,
+ -0.8204519748687744,
+ -0.24606847763061523,
+ 0.05713799595832825,
+ 0.5535688996315002,
+ 0.2697351276874542,
+ -0.19022615253925323,
+ 0.15833744406700134,
+ 0.8550753593444824,
+ 0.5014367699623108,
+ 0.06459106504917145,
+ -0.34026774764060974,
+ 0.643226146697998,
+ 0.5355261564254761,
+ 0.14794671535491943,
+ -1.0385977029800415,
+ -0.5976370573043823,
+ -1.3457533121109009,
+ -0.8411705493927002,
+ -2.024229049682617,
+ -0.08304353803396225,
+ 0.5871365666389465,
+ -1.103897213935852,
+ 0.329165518283844,
+ -0.18936806917190552,
+ -0.295621782541275,
+ 0.14621396362781525,
+ 0.8324486017227173,
+ 2.2684950828552246,
+ -0.8339481353759766,
+ 1.6553012132644653,
+ 0.4319767951965332,
+ -0.0075968727469444275,
+ 0.43669989705085754,
+ 0.262080579996109,
+ -1.5291574001312256,
+ -0.45166462659835815,
+ 0.8897572755813599,
+ 0.8969386219978333,
+ 0.2195678949356079,
+ -0.9421408176422119,
+ -0.23605701327323914,
+ 0.5805171132087708,
+ 0.7810659408569336,
+ 0.7542423009872437,
+ 0.2451576590538025,
+ 0.353561133146286,
+ -1.1568421125411987,
+ 0.19421614706516266,
+ -0.26187098026275635,
+ -0.7032583355903625,
+ -0.45013952255249023,
+ -1.7388551235198975,
+ -1.2713719606399536,
+ 0.9484597444534302,
+ 0.7752135396003723,
+ 0.3430412709712982,
+ 1.687901496887207,
+ -2.0470809936523438,
+ 0.18011975288391113,
+ 0.2988990247249603,
+ 0.48333293199539185,
+ -0.7038682699203491,
+ -0.336631178855896,
+ -0.5104539394378662,
+ -0.16648247838020325,
+ -0.810437023639679,
+ 0.5073018670082092,
+ 0.822038471698761,
+ 0.25007832050323486,
+ 0.5394452810287476,
+ 0.10151512920856476,
+ -0.2939474880695343,
+ -0.6598231196403503,
+ 0.40795794129371643,
+ -0.11841341853141785,
+ -0.5614826679229736,
+ 0.1613045632839203,
+ 1.008998155593872,
+ 0.47401320934295654,
+ 0.29783356189727783,
+ -0.5662136077880859,
+ -0.44409438967704773,
+ -0.5693955421447754,
+ 0.4368431270122528,
+ 1.8896851539611816,
+ 0.4408569633960724,
+ -0.13963475823402405,
+ 0.34182390570640564,
+ -0.805097222328186,
+ 0.7277122139930725,
+ 0.4877319931983948,
+ 0.39300987124443054,
+ -0.7128519415855408,
+ -0.8191705942153931,
+ -0.42300114035606384,
+ -0.9846803545951843,
+ -0.519912838935852,
+ 0.3275689482688904,
+ -0.603659987449646,
+ 0.7161862254142761,
+ 0.026146292686462402,
+ 0.12398509681224823,
+ -1.2081527709960938,
+ -0.5901747941970825,
+ 0.5235393643379211,
+ -0.2910225987434387,
+ -0.1410861313343048,
+ -1.0374726057052612,
+ -0.7385537028312683,
+ 0.39571642875671387,
+ -0.2624548077583313,
+ -1.326642394065857,
+ -0.48076963424682617,
+ 0.25512567162513733,
+ -0.006688510999083519,
+ 0.6842900514602661,
+ -1.1842612028121948,
+ -0.6740950345993042,
+ -1.6140110492706299,
+ 0.6177886724472046,
+ -1.1121175289154053,
+ -0.27673429250717163,
+ -0.5430658459663391,
+ -0.03246514871716499,
+ 1.1734520196914673,
+ -0.7316791415214539,
+ 0.4924424886703491,
+ -0.36425378918647766,
+ -0.9558671116828918,
+ 0.272380530834198,
+ 1.2655476331710815,
+ 1.207085132598877,
+ -0.5398572683334351,
+ -0.6675475239753723,
+ -2.132831573486328,
+ -0.4237960875034332,
+ 0.9480674862861633,
+ -0.5349695682525635,
+ 0.4688166379928589,
+ -0.2445414513349533,
+ 0.1895148754119873,
+ 2.488194227218628,
+ 1.6674102544784546,
+ 0.08872245252132416,
+ 0.4353107810020447,
+ 0.5328753590583801,
+ -0.8544495701789856,
+ 0.3944028913974762,
+ -0.9997611045837402,
+ -0.3692898452281952,
+ -0.6648865938186646,
+ 0.46933552622795105,
+ 0.1111614853143692,
+ -0.3469395935535431,
+ 1.0651640892028809,
+ -0.35770857334136963,
+ 0.17358198761940002,
+ -2.287651538848877,
+ -1.6397849321365356,
+ 0.1946735382080078,
+ -0.4085446000099182,
+ -0.6359291672706604,
+ -0.8495795726776123,
+ -0.21840250492095947,
+ -0.7608712911605835,
+ -0.5990235209465027,
+ -0.5989632606506348,
+ 1.625564455986023,
+ 0.21111330389976501,
+ 0.1838706135749817,
+ 0.017772488296031952,
+ -0.06747326254844666,
+ 1.162302017211914,
+ -0.9729751944541931,
+ 0.5729308724403381,
+ 0.22860977053642273,
+ 0.33441129326820374,
+ 0.16259467601776123,
+ 0.21361368894577026,
+ 0.9772784113883972,
+ 1.0409902334213257,
+ -0.1978982388973236,
+ -0.404822438955307,
+ 0.6206232905387878,
+ 0.26939627528190613,
+ -0.8058288097381592,
+ 0.5878444314002991,
+ -0.2663169801235199,
+ -0.36750489473342896,
+ -0.7087773084640503,
+ 1.0852926969528198,
+ -0.20921987295150757,
+ -0.24737504124641418,
+ 0.21513628959655762,
+ 0.5870414972305298,
+ -1.3076446056365967,
+ 0.34507036209106445,
+ -0.19474773108959198,
+ -0.22285860776901245,
+ 0.9878158569335938,
+ 0.14068202674388885,
+ 0.7162569165229797,
+ 1.20656418800354,
+ 0.11615701019763947,
+ -0.1723858267068863,
+ 0.9344750046730042,
+ -0.08174591511487961,
+ 0.2484559714794159,
+ -0.12551076710224152,
+ -0.31828150153160095,
+ 0.5413256287574768,
+ 0.09036657959222794,
+ -0.2214197814464569,
+ -0.3026469647884369,
+ 0.2435557246208191,
+ -0.8524121642112732,
+ 0.14244510233402252,
+ -0.3336361348628998,
+ 0.03940623998641968,
+ 0.6907564997673035,
+ -0.8060136437416077,
+ -0.37798041105270386,
+ 0.020594581961631775,
+ 0.3558529019355774,
+ -1.8922613859176636,
+ -0.703669011592865,
+ -0.6835039854049683,
+ 1.5032331943511963,
+ 1.8803306818008423,
+ -0.4465617835521698,
+ 0.4169173836708069,
+ 0.4704185724258423,
+ 0.7361122965812683,
+ 1.110896348953247,
+ 0.9100390672683716,
+ 0.04008633643388748,
+ -0.7569771409034729,
+ 0.3611716628074646,
+ -0.21494928002357483,
+ -0.4140249788761139,
+ 0.41119855642318726,
+ -0.4711577892303467,
+ 0.06803128868341446,
+ -0.1805032193660736,
+ 1.6197973489761353,
+ 0.25312772393226624,
+ -2.19905161857605,
+ 0.7696211934089661,
+ 0.0008814278990030289,
+ -1.9968806505203247,
+ 0.28354206681251526,
+ 0.17243726551532745,
+ -0.1920558512210846,
+ -0.8024671673774719,
+ -0.08413025736808777,
+ 0.060392193496227264,
+ -0.7637332677841187,
+ -0.4327430725097656,
+ 1.769705891609192,
+ 0.004113714210689068,
+ -0.9628105759620667,
+ 1.1357965469360352,
+ -0.9893043637275696,
+ -0.675875723361969,
+ -0.5436890125274658,
+ 0.26774346828460693,
+ 0.567658543586731,
+ -0.518044650554657,
+ 1.090632677078247,
+ -0.3708209693431854,
+ -0.9537280797958374,
+ 0.38179534673690796,
+ -0.2968824505805969,
+ -0.6129911541938782,
+ -0.1695663183927536,
+ 0.15772658586502075,
+ 0.03726859390735626,
+ 1.2742366790771484,
+ -0.28285086154937744,
+ -0.28622549772262573,
+ 0.7276685833930969,
+ -0.7431191205978394,
+ 0.5863559246063232,
+ -0.3496739864349365,
+ 0.2608012855052948,
+ -0.8694780468940735,
+ 0.2292829155921936,
+ -4.560126781463623,
+ -0.4810357689857483,
+ 0.4620838761329651,
+ -0.4099219739437103,
+ -0.8036494255065918,
+ 0.1719077229499817,
+ -0.9523963928222656,
+ -1.5641696453094482,
+ -0.3470415472984314,
+ -0.1063854768872261,
+ -0.9720954895019531,
+ 0.4912841320037842,
+ -0.5333540439605713,
+ -1.0279438495635986,
+ 0.05187400057911873,
+ 1.610703945159912,
+ 0.3926396667957306,
+ -1.6627960205078125,
+ 0.6858043074607849,
+ 0.8378444314002991,
+ -0.3614359498023987,
+ 0.044741492718458176,
+ 0.24873566627502441,
+ 0.635202169418335,
+ -0.3238377869129181,
+ -0.8276918530464172,
+ -0.3499462306499481,
+ 0.27781885862350464,
+ -0.7198254466056824,
+ -0.6352798342704773,
+ -0.497293621301651,
+ -1.1089653968811035,
+ 1.675116777420044,
+ 0.9834408760070801,
+ 2.1507370471954346,
+ 0.871077835559845,
+ 0.6702672839164734,
+ -0.252319872379303,
+ -1.499105453491211,
+ -0.3314441740512848,
+ 0.6568489074707031,
+ 0.3699796199798584,
+ -0.7225253582000732,
+ 0.7136527299880981,
+ 0.40200674533843994,
+ -0.6428230404853821,
+ 1.088129997253418,
+ -0.35712930560112,
+ -0.022292479872703552,
+ -0.025228019803762436,
+ 0.7562748789787292,
+ 1.2904127836227417,
+ 0.5537521243095398,
+ 0.5091267824172974,
+ 0.7004534602165222,
+ -0.7644950747489929,
+ -0.04893743619322777,
+ 0.5145087838172913,
+ -0.08319536596536636,
+ 1.1290630102157593,
+ 0.40452104806900024,
+ 0.030816394835710526,
+ -1.297288417816162,
+ -2.464296817779541,
+ 0.2608618140220642,
+ -0.31102654337882996,
+ -1.106427788734436,
+ 1.062935709953308,
+ 0.3053654730319977,
+ 0.19828443229198456,
+ -0.34043100476264954,
+ -0.33549875020980835,
+ 0.606847882270813,
+ -0.37527477741241455,
+ 0.06024062633514404,
+ 0.2028500884771347,
+ 0.13981901109218597,
+ -0.7386486530303955,
+ -1.9932143688201904,
+ -0.8345769047737122,
+ -1.9270915985107422,
+ -0.4484270513057709,
+ 1.4059962034225464,
+ 0.02119823545217514,
+ 1.562158465385437,
+ -0.07160328328609467,
+ -0.7965118288993835,
+ 0.45283016562461853,
+ -2.1270463466644287,
+ 1.3089077472686768,
+ -1.1241652965545654,
+ -0.8071995973587036,
+ 0.6673231720924377,
+ 0.07484051585197449,
+ 0.30739694833755493,
+ 0.23534336686134338,
+ -0.04977487400174141,
+ 0.8196312189102173,
+ -0.6448891758918762,
+ -1.0955231189727783,
+ -0.3361327052116394,
+ -0.5724637508392334,
+ 0.48777344822883606,
+ -1.0033944845199585,
+ -0.2878330945968628,
+ -0.26688599586486816,
+ 0.7427008152008057,
+ 0.05273621529340744,
+ 0.010514464229345322,
+ -0.2775057852268219,
+ -1.1730983257293701,
+ -0.5145429968833923,
+ 0.24711546301841736,
+ 0.270013689994812,
+ 0.17968708276748657,
+ -0.2391989380121231,
+ 0.1480523943901062,
+ -0.5219658017158508,
+ -0.5348517298698425,
+ 0.3569875955581665,
+ 1.0951520204544067,
+ -0.39878615736961365,
+ 1.1090742349624634,
+ -1.299526572227478,
+ -0.026083754375576973,
+ 0.667404055595398,
+ 1.2341651916503906,
+ 0.5035516023635864,
+ 1.4743081331253052,
+ -0.3092142343521118,
+ 1.2262096405029297,
+ -1.2170977592468262,
+ -0.17042750120162964,
+ 0.6840113997459412,
+ 1.3525067567825317,
+ -0.7525750994682312,
+ 0.8976798057556152,
+ 0.8516225218772888,
+ -0.118839330971241,
+ -0.8665074110031128,
+ -0.1138828918337822,
+ -1.2475221157073975,
+ -0.4442130923271179,
+ 0.14624352753162384,
+ -0.5001678466796875,
+ 0.9691784977912903,
+ -0.506026029586792,
+ 0.2776221036911011,
+ -1.3801943063735962,
+ -1.0331324338912964,
+ 0.36368387937545776,
+ -0.1480022370815277,
+ 1.02135169506073,
+ -0.27683621644973755,
+ 1.2266935110092163,
+ 1.4429861307144165,
+ -0.44240519404411316,
+ 0.3064386546611786,
+ 0.7601901888847351,
+ 0.6515513062477112,
+ -0.3073161840438843,
+ -0.2466748207807541,
+ 0.1079847663640976,
+ 0.629254162311554,
+ -0.20091848075389862,
+ 0.795152485370636,
+ 0.6939657926559448,
+ -0.39310988783836365,
+ -0.9118298888206482,
+ -0.8067840337753296,
+ -0.2359291911125183,
+ 0.8535084128379822,
+ -1.2018237113952637,
+ 0.5413488149642944,
+ 0.4733653962612152,
+ -0.6938940286636353,
+ 0.45828455686569214,
+ -0.3261580467224121,
+ 1.0124478340148926,
+ -0.5052375793457031,
+ 1.0326215028762817,
+ -0.3340745270252228,
+ -0.35768720507621765,
+ 0.7237988710403442,
+ 0.488408625125885,
+ 1.1223706007003784,
+ -0.30126243829727173,
+ -0.3249155879020691,
+ 1.1657174825668335,
+ 0.05128499120473862,
+ 0.4272146224975586,
+ -0.9437419176101685,
+ 0.846681535243988,
+ -0.06937521696090698,
+ 0.7651842832565308,
+ -0.2348828911781311,
+ -0.8035345673561096,
+ 1.3909251689910889,
+ 0.25594907999038696,
+ -0.20209786295890808,
+ 0.15966881811618805,
+ 0.657498300075531,
+ 1.2009894847869873,
+ -0.6158086657524109,
+ -1.1003764867782593,
+ 0.15038080513477325,
+ 0.30222150683403015,
+ -0.892768919467926,
+ 0.5206961631774902,
+ -0.46646010875701904,
+ -1.1127814054489136,
+ -0.6738819479942322,
+ -0.5169685482978821,
+ -0.49779412150382996,
+ -1.419974684715271,
+ -0.16463884711265564,
+ 1.2929857969284058,
+ -0.4352695941925049,
+ 0.16905204951763153,
+ 0.3233051598072052,
+ 0.2444315403699875,
+ 0.6312602162361145,
+ -1.0229461193084717,
+ 0.09762513637542725,
+ -0.6671611666679382,
+ -0.049744896590709686,
+ -0.7451040148735046,
+ -0.7655964493751526,
+ -0.5771375298500061,
+ -0.592737078666687,
+ 0.8238162398338318,
+ 0.9533435106277466,
+ 0.16582415997982025,
+ 1.7837672233581543,
+ 0.5504649877548218,
+ 0.4369453191757202,
+ -0.003965354524552822,
+ 1.6147018671035767,
+ -1.520111083984375,
+ -0.685225784778595,
+ 0.6311977505683899,
+ -0.11159181594848633,
+ 0.3261429965496063,
+ 1.4641203880310059
+ ]
+ },
+ {
+ "key": 7,
+ "name": "Daenerys Targaryen",
+ "type": "TV series",
+ "media": "Game of Thrones",
+ "label": [
+ "Compassionate",
+ "Empowered",
+ "Fierce",
+ "Loyal",
+ "Passionate",
+ "Romantic"
+ ],
+ "embedding": [
+ -0.7139651775360107,
+ 0.4662613272666931,
+ -0.09801216423511505,
+ -0.18419307470321655,
+ -0.846545398235321,
+ -1.3327000141143799,
+ 1.5895867347717285,
+ -0.5396970510482788,
+ -0.3941423296928406,
+ -0.24652329087257385,
+ 0.6066539883613586,
+ -0.06423371285200119,
+ -1.275350570678711,
+ -0.6902244091033936,
+ 0.9875764846801758,
+ 0.7533605694770813,
+ 0.5486589670181274,
+ 0.09990540146827698,
+ -1.2061599493026733,
+ -0.9048448204994202,
+ -1.3634380102157593,
+ 0.8054422736167908,
+ -0.5179165005683899,
+ 0.16922341287136078,
+ -1.0960164070129395,
+ -0.401398241519928,
+ 0.01715737208724022,
+ 0.154872864484787,
+ -0.9575161337852478,
+ 0.13767218589782715,
+ 0.20068958401679993,
+ -0.0019614268094301224,
+ -0.6119587421417236,
+ -0.9274207353591919,
+ -0.13023151457309723,
+ -0.23883797228336334,
+ -0.5001970529556274,
+ 0.11198608577251434,
+ -1.6160999536514282,
+ 0.8260554075241089,
+ 0.9598530530929565,
+ -1.7438573837280273,
+ 0.6896283030509949,
+ -0.003082248382270336,
+ 0.5967977643013,
+ -0.6911442279815674,
+ -0.03831610083580017,
+ -0.484280526638031,
+ -0.5333731770515442,
+ 0.3598383665084839,
+ -0.7252613306045532,
+ -0.23155950009822845,
+ 0.7297062277793884,
+ -0.15605631470680237,
+ -0.0994168147444725,
+ 0.9271200895309448,
+ 0.1318093091249466,
+ -0.16800600290298462,
+ -1.0628238916397095,
+ -1.2374988794326782,
+ -1.2333948612213135,
+ 0.2978023290634155,
+ 0.506867527961731,
+ 0.3574560284614563,
+ 0.1953587532043457,
+ 1.58138108253479,
+ -0.17386944591999054,
+ 0.4410068690776825,
+ 0.8994606137275696,
+ -0.23058049380779266,
+ -0.1762506365776062,
+ 0.5417645573616028,
+ -0.4889287054538727,
+ 0.5113469362258911,
+ -1.8783409595489502,
+ 0.9812681674957275,
+ 0.3624816834926605,
+ -0.4255986213684082,
+ -0.879342257976532,
+ 1.4408153295516968,
+ 0.0756111666560173,
+ 0.36428114771842957,
+ 0.31321093440055847,
+ 0.3757553994655609,
+ -1.2202880382537842,
+ 0.4882701635360718,
+ -0.6012755632400513,
+ -0.5791659951210022,
+ -0.24590428173542023,
+ -0.6071658134460449,
+ -1.0570441484451294,
+ 0.816045880317688,
+ -0.0296978410333395,
+ -0.8117104172706604,
+ -0.4019447863101959,
+ 0.03321671858429909,
+ -0.8720298409461975,
+ 0.3116125166416168,
+ 0.9334704875946045,
+ 0.7749289870262146,
+ -0.5024040937423706,
+ 0.16967527568340302,
+ -0.30852562189102173,
+ 0.10478687286376953,
+ -0.6662529706954956,
+ -1.5269992351531982,
+ 0.39088594913482666,
+ 0.3619529604911804,
+ 0.19860312342643738,
+ 0.1767532378435135,
+ 0.9916254281997681,
+ -0.06828296184539795,
+ 0.06571466475725174,
+ 0.7081436514854431,
+ 0.6414801478385925,
+ -0.08731450140476227,
+ 0.9784705638885498,
+ -0.36545684933662415,
+ 0.2839674949645996,
+ -0.10282206535339355,
+ 0.2367018461227417,
+ 0.7333270907402039,
+ -0.7624257206916809,
+ -0.09403778612613678,
+ -0.7492518424987793,
+ -0.9490750432014465,
+ -1.0014121532440186,
+ -0.3472942113876343,
+ -0.6767621040344238,
+ 1.1611080169677734,
+ 1.373874306678772,
+ 0.2778530418872833,
+ 0.09671333432197571,
+ -0.7824417948722839,
+ -0.9542473554611206,
+ -0.2703492343425751,
+ 0.02624049410223961,
+ 0.15083348751068115,
+ 0.10843382775783539,
+ -0.5330443978309631,
+ -0.03190873563289642,
+ 0.2978200912475586,
+ 0.6644934415817261,
+ -1.0125643014907837,
+ 0.013434957712888718,
+ -2.8922488689422607,
+ 0.765623152256012,
+ -0.11975118517875671,
+ -0.07704155892133713,
+ -0.34912580251693726,
+ 1.5270209312438965,
+ -0.7713041305541992,
+ 1.151892900466919,
+ 0.7320672869682312,
+ 0.5399413108825684,
+ -0.9843125939369202,
+ -0.8842288851737976,
+ 1.0083974599838257,
+ 1.2618917226791382,
+ 0.7045783400535583,
+ 0.24583205580711365,
+ 0.3738132119178772,
+ -0.39360156655311584,
+ -0.30899256467819214,
+ 0.37499916553497314,
+ -0.44730207324028015,
+ 1.4085866212844849,
+ 0.5949801206588745,
+ 0.1766296923160553,
+ -0.214506134390831,
+ 0.6660768985748291,
+ -1.8876715898513794,
+ -0.07915541529655457,
+ 0.8364006280899048,
+ 0.4389651417732239,
+ -0.102730892598629,
+ 1.39073646068573,
+ 0.2278587520122528,
+ 0.8304535746574402,
+ -1.4534565210342407,
+ -0.5780572891235352,
+ -0.2557176947593689,
+ -0.13015106320381165,
+ 0.4401596784591675,
+ -0.44474107027053833,
+ -0.059095803648233414,
+ 0.04829740524291992,
+ -0.267021119594574,
+ 0.21679028868675232,
+ 0.9857511520385742,
+ -0.13845449686050415,
+ -1.0594377517700195,
+ -0.7652886509895325,
+ -0.29887107014656067,
+ 1.40226411819458,
+ -0.2706746459007263,
+ 0.5383471250534058,
+ -1.0079677104949951,
+ 0.13172855973243713,
+ -0.9865459203720093,
+ -0.19004763662815094,
+ 0.7041235566139221,
+ 0.8111063838005066,
+ -1.0206700563430786,
+ -0.9625869393348694,
+ 0.18522366881370544,
+ -0.28651803731918335,
+ -0.2532368302345276,
+ 1.392738699913025,
+ -0.7632583379745483,
+ 0.09567955881357193,
+ 0.43954017758369446,
+ -0.24170146882534027,
+ -1.43442964553833,
+ -1.1828597784042358,
+ -0.023201629519462585,
+ -0.29414594173431396,
+ 0.6344040036201477,
+ 0.15477223694324493,
+ -0.3286576569080353,
+ -0.6219786405563354,
+ 1.5855109691619873,
+ 1.361697793006897,
+ 0.6539080142974854,
+ 0.18088769912719727,
+ 0.8064654469490051,
+ -0.5250808596611023,
+ 2.042404890060425,
+ -0.02291152998805046,
+ 0.4487704038619995,
+ 0.011977549642324448,
+ -0.3178270161151886,
+ 0.13822540640830994,
+ 0.14559751749038696,
+ -0.13680410385131836,
+ -0.40963780879974365,
+ -1.3252931833267212,
+ 0.8476635813713074,
+ 0.8356982469558716,
+ -0.5127452611923218,
+ -0.27838370203971863,
+ -1.1655762195587158,
+ 1.3944799900054932,
+ -0.19391289353370667,
+ -0.2649047374725342,
+ 0.6307294964790344,
+ 0.7480397820472717,
+ -0.24656102061271667,
+ 0.07716953009366989,
+ -0.7658858299255371,
+ -0.007808968424797058,
+ -0.3004433214664459,
+ -1.1436619758605957,
+ -0.8318182229995728,
+ 0.342605859041214,
+ 0.2771770656108856,
+ 0.7948998212814331,
+ -0.4074268043041229,
+ -0.5381518602371216,
+ -0.09738615900278091,
+ 0.41424691677093506,
+ 1.458029866218567,
+ 0.008186869323253632,
+ 1.3729350566864014,
+ 0.2065451443195343,
+ -0.7370872497558594,
+ 0.6095746755599976,
+ -0.2208155244588852,
+ 0.045579150319099426,
+ -0.4251382350921631,
+ 0.6475367546081543,
+ 0.23846715688705444,
+ 0.67500901222229,
+ -0.7703036069869995,
+ 0.008568838238716125,
+ 1.3492203950881958,
+ 0.2728760242462158,
+ -0.5353262424468994,
+ 1.3598847389221191,
+ 0.45646098256111145,
+ 1.643683671951294,
+ 0.7529692053794861,
+ -0.3455999195575714,
+ -0.05301687493920326,
+ 1.9070624113082886,
+ -0.9484037160873413,
+ -1.085113525390625,
+ -0.7312641739845276,
+ 0.6933243870735168,
+ -1.8751533031463623,
+ 0.7396157383918762,
+ 0.11785013973712921,
+ 1.8852548599243164,
+ 0.5932190418243408,
+ -1.5583466291427612,
+ 0.035474009811878204,
+ -0.4382285475730896,
+ -3.723405361175537,
+ 0.7198426723480225,
+ -1.24384605884552,
+ -0.15241414308547974,
+ -0.1281038373708725,
+ -0.053441256284713745,
+ -0.38741257786750793,
+ -0.4546412527561188,
+ -0.8734543919563293,
+ -0.45724859833717346,
+ -0.2167108803987503,
+ -1.1343305110931396,
+ -0.42268210649490356,
+ -0.22154898941516876,
+ -0.12764325737953186,
+ -0.8937742114067078,
+ -0.40376678109169006,
+ 0.5486828684806824,
+ 0.6109623312950134,
+ -1.2963273525238037,
+ -0.19854074716567993,
+ -1.0619311332702637,
+ 0.9957200288772583,
+ 0.24314814805984497,
+ -0.4759373664855957,
+ 0.5717481374740601,
+ -0.12534967064857483,
+ -1.4105019569396973,
+ -1.4436345100402832,
+ -0.796779453754425,
+ -0.84698885679245,
+ 1.1206698417663574,
+ -0.4252158999443054,
+ 1.241441249847412,
+ 1.06333589553833,
+ 1.7617915868759155,
+ 0.07256369292736053,
+ -0.41272830963134766,
+ 0.7031806707382202,
+ -0.5491518974304199,
+ 0.19512104988098145,
+ 0.7671585083007812,
+ -0.2085428237915039,
+ 0.20328249037265778,
+ -1.1378319263458252,
+ -0.07773267477750778,
+ -0.38027533888816833,
+ 0.30588218569755554,
+ -0.5754163265228271,
+ -0.5503727793693542,
+ 0.48600339889526367,
+ -1.1974709033966064,
+ -0.5503987073898315,
+ 0.13952599465847015,
+ -1.4321873188018799,
+ 0.09946422278881073,
+ -1.340409755706787,
+ 0.31099626421928406,
+ 1.085223913192749,
+ -0.37133118510246277,
+ -1.0355952978134155,
+ -0.13857485353946686,
+ 0.047910064458847046,
+ -1.1328446865081787,
+ -0.9267479777336121,
+ -0.44868531823158264,
+ -0.1647598296403885,
+ 0.5829578638076782,
+ 1.0471551418304443,
+ 0.31540462374687195,
+ 0.38402730226516724,
+ 1.2434425354003906,
+ 0.4065770208835602,
+ 0.5368354916572571,
+ 0.21277378499507904,
+ 0.7293635606765747,
+ -0.43615981936454773,
+ -0.5792540311813354,
+ -0.6845307946205139,
+ -1.1529830694198608,
+ 0.3818674087524414,
+ 0.21862950921058655,
+ -0.005056698806583881,
+ 0.2909986972808838,
+ -0.452984482049942,
+ -1.6038215160369873,
+ 0.844837486743927,
+ 0.796937108039856,
+ 0.8554673790931702,
+ 6.138912200927734,
+ -0.16892991960048676,
+ 1.6058253049850464,
+ 1.0690194368362427,
+ 1.0944303274154663,
+ -0.1789533495903015,
+ 0.6439249515533447,
+ 0.0404229536652565,
+ -0.20108236372470856,
+ -0.4835580289363861,
+ 0.6262904405593872,
+ 0.41720548272132874,
+ -0.29004183411598206,
+ 0.37514299154281616,
+ 0.13469429314136505,
+ 1.3080576658248901,
+ -0.22669729590415955,
+ -0.2050422728061676,
+ 2.0898797512054443,
+ -0.07637300342321396,
+ 0.6622167825698853,
+ 0.022856727242469788,
+ -0.19090165197849274,
+ -0.06847819685935974,
+ -1.0683066844940186,
+ -0.9763144254684448,
+ 0.47044891119003296,
+ 0.36466920375823975,
+ -0.7659467458724976,
+ 0.6231829524040222,
+ 0.25843867659568787,
+ 1.0728667974472046,
+ 2.005979299545288,
+ 0.3507732152938843,
+ -0.3721872568130493,
+ -0.3984020948410034,
+ -1.7542988061904907,
+ -0.19288037717342377,
+ -0.3030969500541687,
+ 0.8881548643112183,
+ -1.039926290512085,
+ -0.6749216914176941,
+ -0.3255707919597626,
+ -0.4531714916229248,
+ 0.5113949179649353,
+ -0.19136348366737366,
+ 0.25648510456085205,
+ -0.703667402267456,
+ -0.6504160761833191,
+ -1.2355284690856934,
+ -0.6508995294570923,
+ -0.7511412501335144,
+ -0.3049476146697998,
+ 0.2040349245071411,
+ 1.183546543121338,
+ 0.08254697918891907,
+ -0.4516412615776062,
+ 0.5684213638305664,
+ 0.18320633471012115,
+ 2.1567299365997314,
+ 0.9235859513282776,
+ 0.7642033696174622,
+ -2.1498284339904785,
+ -0.5828661322593689,
+ 0.19923871755599976,
+ 1.669175386428833,
+ -0.2551535964012146,
+ 0.02901153266429901,
+ -0.6492480039596558,
+ -0.16301536560058594,
+ -0.27845287322998047,
+ 0.9751070141792297,
+ 0.4743647575378418,
+ 0.8831207752227783,
+ -0.6356207132339478,
+ 0.7763063907623291,
+ 0.09484955668449402,
+ 0.9774695634841919,
+ 1.1518975496292114,
+ -0.0018075443804264069,
+ 0.5567202568054199,
+ -1.023164987564087,
+ -0.4381190836429596,
+ 0.5226971507072449,
+ 0.8477388024330139,
+ 0.883622944355011,
+ -0.7621968984603882,
+ -0.05829063802957535,
+ -0.37990862131118774,
+ -0.13484254479408264,
+ -0.9095360636711121,
+ -0.34006866812705994,
+ -1.0552899837493896,
+ -1.2428728342056274,
+ -0.676146388053894,
+ -0.6371906399726868,
+ 1.632118821144104,
+ -0.8932005167007446,
+ -1.3195862770080566,
+ -0.9194508790969849,
+ 0.338312029838562,
+ -0.7626360058784485,
+ 0.2184104025363922,
+ -0.328168123960495,
+ 0.4359351098537445,
+ -0.18082334101200104,
+ -0.9897159934043884,
+ -0.518738865852356,
+ -0.7058975696563721,
+ 1.1006273031234741,
+ 0.3968690037727356,
+ 0.8720191121101379,
+ 0.1793520599603653,
+ 0.024242587387561798,
+ 0.8234339356422424,
+ 0.201840341091156,
+ 0.13182459771633148,
+ 0.0410185381770134,
+ 0.10411208868026733,
+ 0.9419743418693542,
+ -0.8478053212165833,
+ -0.003253605216741562,
+ -0.1513352394104004,
+ -0.7492061853408813,
+ -1.2109538316726685,
+ -2.3781824111938477,
+ 0.2981249690055847,
+ 1.6945704221725464,
+ -0.4458467960357666,
+ 0.37589654326438904,
+ 0.23761501908302307,
+ -0.4230886697769165,
+ 1.1327530145645142,
+ 1.1465102434158325,
+ 2.5112462043762207,
+ -0.6430641412734985,
+ 1.1905734539031982,
+ -0.2986328601837158,
+ 0.43211644887924194,
+ 1.0264078378677368,
+ 0.9611259698867798,
+ 0.5436941981315613,
+ -1.4468278884887695,
+ 0.005468234419822693,
+ 0.28232330083847046,
+ -0.006354019045829773,
+ -0.5667831897735596,
+ -0.4785500764846802,
+ 0.11119186878204346,
+ 0.3938881754875183,
+ 0.5077903270721436,
+ 0.3456450402736664,
+ 0.17881985008716583,
+ -1.1846038103103638,
+ -0.0006580036133527756,
+ 0.6792610883712769,
+ -0.2775026857852936,
+ -1.1401584148406982,
+ -1.4715656042099,
+ -1.5778968334197998,
+ 0.043609317392110825,
+ 0.9927364587783813,
+ 0.8755168318748474,
+ 1.6417962312698364,
+ -0.7703470587730408,
+ 0.5774863362312317,
+ 0.2840023934841156,
+ 0.7885672450065613,
+ -0.1764950007200241,
+ -0.8932300806045532,
+ -1.1621215343475342,
+ 0.17526616156101227,
+ -0.5811856389045715,
+ 0.400974303483963,
+ 0.3212094306945801,
+ 0.5742254853248596,
+ 0.8267648220062256,
+ -0.46889057755470276,
+ -0.6015809178352356,
+ -1.145797848701477,
+ -0.014682399109005928,
+ 0.050483338534832,
+ -1.5446484088897705,
+ -0.11444512009620667,
+ 0.9698255062103271,
+ 0.35114967823028564,
+ 0.16881489753723145,
+ -0.3512948751449585,
+ -0.3625049889087677,
+ -0.14758136868476868,
+ -0.206782266497612,
+ 1.2726696729660034,
+ 0.2547363042831421,
+ -0.4416922926902771,
+ 0.7426472306251526,
+ -0.9196380376815796,
+ 0.5865853428840637,
+ 0.21424919366836548,
+ 0.052957870066165924,
+ -0.0891064703464508,
+ -1.2424520254135132,
+ -0.5933000445365906,
+ -0.5086305737495422,
+ -0.378139466047287,
+ 0.31820645928382874,
+ -0.4161485731601715,
+ 0.4967527389526367,
+ 0.21222911775112152,
+ -0.46813297271728516,
+ -0.7527498006820679,
+ -0.059466395527124405,
+ 0.6641571521759033,
+ 0.5212607979774475,
+ 0.09952791035175323,
+ -0.6353095173835754,
+ -0.07376838475465775,
+ 0.16966809332370758,
+ 0.04914785176515579,
+ -1.2776986360549927,
+ -1.125018835067749,
+ -0.011640634387731552,
+ 0.8146798610687256,
+ 0.9110211730003357,
+ -0.2947220504283905,
+ -1.1434125900268555,
+ -1.3919645547866821,
+ 0.07087528705596924,
+ -1.0238919258117676,
+ -0.19129745662212372,
+ -0.5417574644088745,
+ -0.2347528636455536,
+ -0.08572837710380554,
+ -0.16949714720249176,
+ 1.0816683769226074,
+ -0.440814733505249,
+ -1.3893766403198242,
+ 0.1651460826396942,
+ 1.2293606996536255,
+ 0.5211000442504883,
+ -0.8396217823028564,
+ -0.7630419731140137,
+ -1.461236596107483,
+ -0.5869016647338867,
+ 1.9564793109893799,
+ 0.3571861982345581,
+ 0.25047484040260315,
+ -0.3017662763595581,
+ -0.010726645588874817,
+ 1.1755871772766113,
+ 0.636640191078186,
+ -0.6712452173233032,
+ 0.17475098371505737,
+ 0.9872981309890747,
+ -0.9160184264183044,
+ 0.4948461651802063,
+ -0.0019505051895976067,
+ 0.6309364438056946,
+ 0.26914292573928833,
+ -0.677067756652832,
+ -0.49377769231796265,
+ -0.8202747106552124,
+ 0.42423996329307556,
+ -0.48116767406463623,
+ -0.1518380343914032,
+ -2.0041909217834473,
+ -0.12043895572423935,
+ -0.2290700078010559,
+ -0.7215915322303772,
+ -0.8523363471031189,
+ -0.9207019805908203,
+ -0.18971610069274902,
+ 0.0008865520358085632,
+ -1.1665016412734985,
+ -1.0672588348388672,
+ 2.3594298362731934,
+ 1.0726759433746338,
+ -0.3006749749183655,
+ -0.09410995244979858,
+ 0.1851157695055008,
+ 1.7572170495986938,
+ -1.1485638618469238,
+ 2.0155224800109863,
+ 0.04783119261264801,
+ 0.5836241841316223,
+ 0.3717968463897705,
+ 0.5612966418266296,
+ 1.0449016094207764,
+ -0.31151360273361206,
+ 0.2369343340396881,
+ -0.5428205132484436,
+ 1.0902022123336792,
+ -0.07144057750701904,
+ -0.7649003267288208,
+ 0.35711681842803955,
+ -0.5587151050567627,
+ -0.13344420492649078,
+ -0.00100596877746284,
+ 0.8768717050552368,
+ -0.4178366959095001,
+ -0.76979660987854,
+ 0.2507176101207733,
+ 0.06914679706096649,
+ -0.9511712789535522,
+ 0.3480156362056732,
+ -0.3049912452697754,
+ 0.2913670837879181,
+ 1.2187618017196655,
+ -0.9199586510658264,
+ 1.010931372642517,
+ 0.8723666667938232,
+ -0.1493282914161682,
+ -0.628309428691864,
+ 0.4600886106491089,
+ 0.7103350758552551,
+ -0.5420555472373962,
+ -1.1366995573043823,
+ -0.2247653305530548,
+ 0.7815753221511841,
+ -0.17579972743988037,
+ -0.5154926776885986,
+ 0.46299752593040466,
+ 0.2801857888698578,
+ -0.03640352189540863,
+ -0.07794027030467987,
+ 0.17667154967784882,
+ 1.1381785869598389,
+ 2.030843734741211,
+ -0.5868120193481445,
+ -0.5270730257034302,
+ 0.08601018041372299,
+ -0.6050057411193848,
+ -1.442089319229126,
+ -0.2416325956583023,
+ 0.3845435678958893,
+ 1.089406967163086,
+ 1.4299986362457275,
+ 0.8877753019332886,
+ 0.7084481120109558,
+ 0.33306288719177246,
+ 1.0255457162857056,
+ 1.3603127002716064,
+ 0.9639945030212402,
+ 0.3246724605560303,
+ -0.6249947547912598,
+ 0.46800458431243896,
+ 0.325470507144928,
+ 0.15443740785121918,
+ 0.17922911047935486,
+ -0.028924480080604553,
+ -1.7336273193359375,
+ -0.05205085501074791,
+ 1.7243762016296387,
+ -0.9435497522354126,
+ -1.2092742919921875,
+ 0.7025057077407837,
+ -0.054348286241292953,
+ -1.0740374326705933,
+ 0.1384076625108719,
+ -0.8010733127593994,
+ -0.3501336872577667,
+ -0.16918537020683289,
+ 0.3143075108528137,
+ -0.11534921079874039,
+ -0.31802037358283997,
+ -0.47661498188972473,
+ 0.4515106976032257,
+ 0.8035206198692322,
+ -0.2087818682193756,
+ 0.5470892190933228,
+ -0.7221770882606506,
+ -1.4777952432632446,
+ 0.07333142310380936,
+ 0.3684699535369873,
+ 1.2442015409469604,
+ -0.6056644320487976,
+ 1.270169734954834,
+ -0.780242383480072,
+ -0.40932902693748474,
+ 0.6006125211715698,
+ -0.4235941171646118,
+ 0.06392733752727509,
+ -0.0765996053814888,
+ -0.05079557001590729,
+ -0.1824369728565216,
+ 0.08526604622602463,
+ -0.2391999065876007,
+ -0.9213612079620361,
+ 0.6783294677734375,
+ -0.39549556374549866,
+ 0.5640303492546082,
+ -0.21184128522872925,
+ -0.7028890252113342,
+ -0.9750995635986328,
+ 0.7899509072303772,
+ -4.438392162322998,
+ 0.060450032353401184,
+ -0.5736719965934753,
+ -0.036123596131801605,
+ -1.709517240524292,
+ 0.6357349753379822,
+ -1.0314452648162842,
+ -1.6635823249816895,
+ 0.4810072183609009,
+ -0.19925133883953094,
+ 0.43287205696105957,
+ 0.45761245489120483,
+ 0.2131003886461258,
+ -1.411598563194275,
+ 0.057890474796295166,
+ 0.8775084018707275,
+ 1.0158571004867554,
+ -1.4072673320770264,
+ 1.2435650825500488,
+ 1.156362533569336,
+ -0.4895968437194824,
+ -0.08627274632453918,
+ 0.27102747559547424,
+ 0.6205304265022278,
+ -0.12444621324539185,
+ 0.01405644416809082,
+ -0.21613629162311554,
+ 0.1624251902103424,
+ -1.1361430883407593,
+ -0.23954656720161438,
+ 0.28613796830177307,
+ -0.27986830472946167,
+ 0.9380724430084229,
+ 1.3601531982421875,
+ 1.982759952545166,
+ -0.1549426019191742,
+ 0.05447510629892349,
+ -0.38519933819770813,
+ -1.054806113243103,
+ -0.1007915586233139,
+ 1.4499926567077637,
+ 0.004737749695777893,
+ -0.2608228027820587,
+ 1.0960586071014404,
+ 0.6493232846260071,
+ -0.2617427110671997,
+ 0.21347835659980774,
+ -0.1947346329689026,
+ -0.2426484376192093,
+ -0.36973533034324646,
+ 1.0224101543426514,
+ 0.646736741065979,
+ 1.309245228767395,
+ 1.5574225187301636,
+ 0.7971829175949097,
+ -0.7769813537597656,
+ -0.8988561630249023,
+ 0.569423496723175,
+ 0.33869996666908264,
+ 0.6797903776168823,
+ -0.5344228148460388,
+ -0.2311088889837265,
+ -1.2100813388824463,
+ -2.354938268661499,
+ -0.22384563088417053,
+ -0.3363473415374756,
+ -0.9316401481628418,
+ 1.0856175422668457,
+ 0.1018768697977066,
+ 0.6896070837974548,
+ -0.309426873922348,
+ -1.4070299863815308,
+ 0.9672911167144775,
+ -1.1179986000061035,
+ 0.5882018804550171,
+ -0.11113046854734421,
+ 0.8871127963066101,
+ 0.7018847465515137,
+ -0.9281619191169739,
+ -0.9598115682601929,
+ -0.9655891060829163,
+ -0.7550054788589478,
+ 0.6778890490531921,
+ 0.11236248910427094,
+ 1.9172282218933105,
+ -0.21614113450050354,
+ -1.092648983001709,
+ 0.05676065385341644,
+ -1.7181531190872192,
+ 1.164898157119751,
+ -0.8806251287460327,
+ -0.9843894839286804,
+ 0.6105849146842957,
+ -1.0081546306610107,
+ -0.2994507849216461,
+ 0.3048394024372101,
+ -0.2962356209754944,
+ 0.9368525147438049,
+ -0.9799951910972595,
+ -0.5842418670654297,
+ -0.3862798511981964,
+ 0.2913318872451782,
+ -0.3078383505344391,
+ -1.3669527769088745,
+ -0.8838000297546387,
+ 0.10696551203727722,
+ 1.3107277154922485,
+ 0.18694885075092316,
+ -0.2091437429189682,
+ 0.7589312791824341,
+ -0.5798445343971252,
+ -0.059978827834129333,
+ 1.5339527130126953,
+ -0.30621960759162903,
+ 0.3335389494895935,
+ -0.0792575255036354,
+ 0.8756574988365173,
+ 0.2244284749031067,
+ -0.33142295479774475,
+ -0.2781020402908325,
+ 0.3267761170864105,
+ -0.2125622183084488,
+ 0.6382842063903809,
+ -1.4384711980819702,
+ -0.6456063985824585,
+ 1.4256469011306763,
+ 0.9611112475395203,
+ 0.861868143081665,
+ 1.2154998779296875,
+ -0.11512685567140579,
+ 0.6743659973144531,
+ -2.6780319213867188,
+ 0.13364209234714508,
+ 1.1566312313079834,
+ 1.3192992210388184,
+ -0.47690263390541077,
+ -0.0015582554042339325,
+ 0.7883530855178833,
+ -0.45850515365600586,
+ -0.7508319616317749,
+ 0.09377174079418182,
+ -1.0700697898864746,
+ -1.2342886924743652,
+ 0.639392077922821,
+ -0.4328741133213043,
+ -0.01986505463719368,
+ -0.6395251750946045,
+ -0.3611644506454468,
+ -0.8678048849105835,
+ -0.9846333861351013,
+ -0.002781018614768982,
+ -0.3145610988140106,
+ 1.117465615272522,
+ 0.8635241985321045,
+ 0.004150301218032837,
+ 1.0452723503112793,
+ -0.7217467427253723,
+ -1.1508103609085083,
+ 0.07359737902879715,
+ 0.21106722950935364,
+ -0.2597581148147583,
+ -0.6918068528175354,
+ -0.30347520112991333,
+ -0.623066782951355,
+ -1.1283843517303467,
+ 0.6394197940826416,
+ 0.24463963508605957,
+ -0.24430808424949646,
+ -0.6749483942985535,
+ -1.5769720077514648,
+ 0.3933205008506775,
+ 1.326972246170044,
+ -1.1342029571533203,
+ -0.8483359217643738,
+ 0.9802115559577942,
+ -1.0609475374221802,
+ 0.7532498240470886,
+ -0.1462576985359192,
+ 1.136781930923462,
+ -0.9867852330207825,
+ 0.5180507898330688,
+ 0.6790209412574768,
+ 0.4219174385070801,
+ 0.9933545589447021,
+ 0.1927705556154251,
+ 0.028657585382461548,
+ -0.6030408143997192,
+ -0.2943554222583771,
+ -0.1543576419353485,
+ 1.2031265497207642,
+ -0.11779509484767914,
+ -0.9493941068649292,
+ 1.370097279548645,
+ -0.7766014337539673,
+ 0.6193458437919617,
+ -0.006924694404006004,
+ -0.8241653442382812,
+ 0.8543834090232849,
+ -0.09650910645723343,
+ -0.10290494561195374,
+ -0.7581155300140381,
+ 0.7928633093833923,
+ 0.7091840505599976,
+ -0.3274637758731842,
+ -0.5388588905334473,
+ 0.44246259331703186,
+ -0.6848435997962952,
+ -0.5211247205734253,
+ -0.6289700865745544,
+ -0.5952778458595276,
+ -1.0680915117263794,
+ -0.23487569391727448,
+ -0.7128547430038452,
+ -0.402024507522583,
+ -0.8815751671791077,
+ 0.02232573926448822,
+ 0.9085142612457275,
+ -1.854852318763733,
+ 0.04965055733919144,
+ 0.6986620426177979,
+ 0.14033906161785126,
+ 0.2218475341796875,
+ -0.13870272040367126,
+ -0.4145633280277252,
+ 0.33000579476356506,
+ -0.13208860158920288,
+ -0.8880096077919006,
+ -0.03018350712954998,
+ -0.4908866584300995,
+ -0.4727492928504944,
+ 0.6964935660362244,
+ 0.9921274185180664,
+ 0.3642110824584961,
+ 0.4097434878349304,
+ -0.1979527324438095,
+ 0.5202615261077881,
+ -0.6858186721801758,
+ 0.6405543088912964,
+ -0.9142794609069824,
+ -1.0900088548660278,
+ 1.0093828439712524,
+ 0.16656242311000824,
+ 0.3130025863647461,
+ 0.8912197351455688
+ ]
+ },
+ {
+ "key": 8,
+ "name": "Daemon Targaryen",
+ "type": "TV series",
+ "media": "House of the Dragon",
+ "label": [
+ "Dominant",
+ "Experimental",
+ "Power-driven",
+ "Seductive",
+ "Unpredictable"
+ ],
+ "embedding": [
+ -1.46381413936615,
+ 0.7750056385993958,
+ -0.6268699169158936,
+ -0.9334842562675476,
+ -1.6219786405563354,
+ -0.4082539975643158,
+ 0.5943773984909058,
+ -0.114976666867733,
+ -1.0028458833694458,
+ 0.8032168745994568,
+ 0.006944876164197922,
+ -0.07449568808078766,
+ -0.6135072708129883,
+ -0.3130542039871216,
+ -0.423340767621994,
+ 0.5964720845222473,
+ 1.1162564754486084,
+ 0.20584926009178162,
+ -0.9014111757278442,
+ -0.522423505783081,
+ -0.5168710947036743,
+ 0.4917602837085724,
+ 0.15726733207702637,
+ 0.4709796607494354,
+ -1.0307729244232178,
+ 0.4410087764263153,
+ -0.2283623367547989,
+ 0.1491045206785202,
+ -1.4002819061279297,
+ 0.199431374669075,
+ 0.6741544604301453,
+ -0.8126367926597595,
+ 0.26392921805381775,
+ 0.2626306116580963,
+ -0.32771193981170654,
+ -0.4079435169696808,
+ -0.3030243515968323,
+ -0.3539537191390991,
+ -1.416483998298645,
+ 1.1383261680603027,
+ 1.0707106590270996,
+ -1.327750563621521,
+ 0.7323225736618042,
+ -1.53227698802948,
+ 0.9367753267288208,
+ -1.4054380655288696,
+ -0.18490472435951233,
+ -0.6574557423591614,
+ 0.08058467507362366,
+ 0.5968011617660522,
+ -0.820052981376648,
+ -0.39799344539642334,
+ 1.6275510787963867,
+ -0.7363583445549011,
+ 0.9279794096946716,
+ -0.9034087061882019,
+ -0.1361371874809265,
+ -0.6928218007087708,
+ -0.7785954475402832,
+ -0.7527401447296143,
+ -1.6335515975952148,
+ -0.27820640802383423,
+ -0.3850882351398468,
+ 0.37907251715660095,
+ 1.2292547225952148,
+ 0.9780910015106201,
+ 0.33910635113716125,
+ 1.0387892723083496,
+ 0.1288469433784485,
+ -0.41435226798057556,
+ 0.33168020844459534,
+ 0.1415889412164688,
+ -0.13095353543758392,
+ 0.015370119363069534,
+ -2.357603073120117,
+ 0.7552723288536072,
+ -0.10944212228059769,
+ -0.5466489195823669,
+ 0.16243040561676025,
+ 0.7109876275062561,
+ -0.32301607728004456,
+ -0.4158320724964142,
+ 0.5035695433616638,
+ 0.8637310862541199,
+ -1.6440361738204956,
+ 1.1538162231445312,
+ -0.19579613208770752,
+ 0.3529142439365387,
+ -0.2898883819580078,
+ -0.16066484153270721,
+ -0.031161967664957047,
+ -0.4300220310688019,
+ 0.6510442495346069,
+ -1.4341812133789062,
+ -1.0964664220809937,
+ 0.24991631507873535,
+ -0.07987455278635025,
+ 0.10362972319126129,
+ 0.3841787874698639,
+ 0.8893117308616638,
+ -0.16371232271194458,
+ 0.5370573997497559,
+ -0.08780622482299805,
+ 0.3108842074871063,
+ 0.02546500787138939,
+ -1.971362829208374,
+ -0.5619598031044006,
+ 1.53254234790802,
+ -0.2993623912334442,
+ 0.18452392518520355,
+ -0.05478285253047943,
+ 0.277567058801651,
+ 0.6282912492752075,
+ 1.5654478073120117,
+ -0.047652777284383774,
+ 0.6601980328559875,
+ 0.052509281784296036,
+ 0.10940252989530563,
+ 0.04831186681985855,
+ 0.06278692185878754,
+ 0.2658314108848572,
+ -0.38988813757896423,
+ 0.9255719184875488,
+ -0.2833184599876404,
+ 0.15904489159584045,
+ -1.232720136642456,
+ -0.0747544914484024,
+ 1.2269127368927002,
+ -1.2193496227264404,
+ 0.3984684944152832,
+ 0.8616788983345032,
+ 0.8702554106712341,
+ -0.1405715048313141,
+ -0.6775623559951782,
+ -2.1587679386138916,
+ -0.700874388217926,
+ 0.27772900462150574,
+ -0.02355918288230896,
+ -0.24617713689804077,
+ -0.07608999311923981,
+ -0.1216505840420723,
+ 0.6842470169067383,
+ 0.013625938445329666,
+ -1.1893460750579834,
+ 1.1717783212661743,
+ -1.1942068338394165,
+ -0.021716950461268425,
+ 0.09923748672008514,
+ -0.33113402128219604,
+ -0.16904734075069427,
+ 1.8092631101608276,
+ 0.13771189749240875,
+ 0.7625316977500916,
+ 0.7928193211555481,
+ 1.0595935583114624,
+ -0.2139662355184555,
+ -0.45227399468421936,
+ 0.5861920714378357,
+ 1.4808685779571533,
+ 0.9356893301010132,
+ -0.9019944667816162,
+ -0.6720295548439026,
+ 0.06827469915151596,
+ 0.4287695586681366,
+ -0.2907659709453583,
+ -0.3376144468784332,
+ 1.3429442644119263,
+ 1.3644071817398071,
+ -0.7000969648361206,
+ -0.8448498249053955,
+ 0.2663344740867615,
+ -0.4392012059688568,
+ 0.4043964743614197,
+ -0.02576654776930809,
+ 0.32178980112075806,
+ 0.2110673189163208,
+ 1.2521252632141113,
+ 0.1972329318523407,
+ 0.6979380249977112,
+ -1.2088407278060913,
+ -0.22191385924816132,
+ 0.6853581666946411,
+ -0.044873032718896866,
+ 0.4815845489501953,
+ -0.5106054544448853,
+ -0.8490184545516968,
+ -0.6391321420669556,
+ -0.3707084655761719,
+ 0.6244192719459534,
+ 1.2670917510986328,
+ -0.9282251000404358,
+ -1.499165415763855,
+ 0.8263899683952332,
+ -0.04942038655281067,
+ 1.0246318578720093,
+ -0.4410284459590912,
+ -0.31005969643592834,
+ -1.3163927793502808,
+ 0.3368018865585327,
+ -1.5656479597091675,
+ 0.6806685924530029,
+ 0.9540349245071411,
+ 0.6747117638587952,
+ -1.3304535150527954,
+ -0.8547530174255371,
+ 0.00212768092751503,
+ 0.2862861752510071,
+ -0.9656298160552979,
+ 0.8905498385429382,
+ -0.16093571484088898,
+ 1.4993003606796265,
+ 0.691758930683136,
+ 0.48746544122695923,
+ -0.9551990032196045,
+ 0.011874279007315636,
+ -0.818252444267273,
+ -0.5368416905403137,
+ 0.3046632707118988,
+ -0.2684181332588196,
+ -0.7853626608848572,
+ -0.5480200052261353,
+ 0.9936050176620483,
+ 0.6672317385673523,
+ 0.6272252798080444,
+ 0.3087916672229767,
+ 0.1950976401567459,
+ 0.5441891551017761,
+ 2.069713592529297,
+ 0.19099560379981995,
+ 0.07011530548334122,
+ 0.33948278427124023,
+ -0.5975373983383179,
+ 0.19479013979434967,
+ -0.33662980794906616,
+ -0.6507445573806763,
+ -0.41720089316368103,
+ -0.12015743553638458,
+ 0.3019977807998657,
+ 1.509394884109497,
+ 0.8332812786102295,
+ 0.24078436195850372,
+ -0.6886360049247742,
+ 0.6778641939163208,
+ 0.46117302775382996,
+ -1.125349760055542,
+ -0.0641535297036171,
+ 0.04670269042253494,
+ -0.5549131035804749,
+ 0.06153520941734314,
+ -0.1297958493232727,
+ 0.30044814944267273,
+ 0.3476530611515045,
+ -2.4423434734344482,
+ 0.6112372875213623,
+ 1.0303155183792114,
+ 0.6137552261352539,
+ 0.12219968438148499,
+ -0.546202540397644,
+ -0.80374675989151,
+ -0.020847376435995102,
+ -0.3092503547668457,
+ 1.1983911991119385,
+ -0.25792139768600464,
+ 0.5081807971000671,
+ 0.7084758281707764,
+ -1.0760910511016846,
+ 0.4210125803947449,
+ -0.3712179660797119,
+ 0.6381651759147644,
+ 0.09740589559078217,
+ 0.5229387879371643,
+ -0.28143978118896484,
+ 0.09445615112781525,
+ -0.5877549052238464,
+ -0.4605395793914795,
+ 0.8397477865219116,
+ -0.18006642162799835,
+ -0.5068672299385071,
+ 1.2250306606292725,
+ -0.14103880524635315,
+ 0.691955029964447,
+ -0.2496083378791809,
+ 0.8267558813095093,
+ -0.05313064157962799,
+ 1.3780248165130615,
+ -0.319406121969223,
+ -0.8326389193534851,
+ -0.1352051943540573,
+ -0.26253825426101685,
+ -1.9611506462097168,
+ 0.5392666459083557,
+ -0.6660445928573608,
+ 1.8268592357635498,
+ 0.19894519448280334,
+ -1.0444470643997192,
+ -0.5142117738723755,
+ -0.7470822930335999,
+ -3.6739187240600586,
+ -0.15660877525806427,
+ -1.0100969076156616,
+ -0.0710519477725029,
+ 0.5641099810600281,
+ 0.032472822815179825,
+ -1.5982059240341187,
+ 0.2643588185310364,
+ -0.549925684928894,
+ -0.49059930443763733,
+ -0.06719912588596344,
+ -1.7773057222366333,
+ -0.8771122694015503,
+ -0.6448737978935242,
+ -1.0280156135559082,
+ -0.35306045413017273,
+ -0.5224672555923462,
+ 0.02059684693813324,
+ 0.04587111622095108,
+ -0.5313477516174316,
+ 0.06898903846740723,
+ 0.3636030852794647,
+ 2.247727632522583,
+ 0.7733594179153442,
+ 0.6226589679718018,
+ 0.5462671518325806,
+ 0.468520849943161,
+ -0.13445600867271423,
+ -0.5130926370620728,
+ -1.1040786504745483,
+ -0.3094879388809204,
+ 0.8681527972221375,
+ -0.26112985610961914,
+ 0.8974831104278564,
+ -0.03306502476334572,
+ 1.9546006917953491,
+ -0.32527944445610046,
+ 0.30474695563316345,
+ 0.4422803819179535,
+ -0.5527944564819336,
+ 0.8849773406982422,
+ 1.29232919216156,
+ -0.9083669185638428,
+ 0.605670690536499,
+ 0.43360885977745056,
+ 0.11250339448451996,
+ -0.26678895950317383,
+ 0.031683847308158875,
+ 0.18482668697834015,
+ -0.6388264894485474,
+ 1.6128050088882446,
+ -0.4785606861114502,
+ -0.5033160448074341,
+ 0.24079325795173645,
+ -0.8409610390663147,
+ -0.1620628535747528,
+ -0.5471742749214172,
+ 0.0838889330625534,
+ -0.47976163029670715,
+ 0.18346922099590302,
+ -0.8714523315429688,
+ -1.3366584777832031,
+ 0.9360525608062744,
+ 0.6372221112251282,
+ -0.18688443303108215,
+ -1.0188162326812744,
+ 0.3029773533344269,
+ -0.39515745639801025,
+ 1.6136780977249146,
+ 0.026950431987643242,
+ 1.2155195474624634,
+ -0.06678830087184906,
+ 0.131626695394516,
+ -0.015594474971294403,
+ 0.8471099734306335,
+ -0.038465458899736404,
+ -0.1721988022327423,
+ -0.47899314761161804,
+ -0.8212905526161194,
+ -0.6994825601577759,
+ 0.43558698892593384,
+ 1.2101293802261353,
+ -0.7364773750305176,
+ 1.5213191509246826,
+ -0.15444287657737732,
+ -1.0966911315917969,
+ 0.5753690600395203,
+ 0.35805845260620117,
+ 0.18852849304676056,
+ 5.628871917724609,
+ -0.2899762690067291,
+ 0.4242459833621979,
+ 0.2524603307247162,
+ 0.7092233300209045,
+ 0.8613020181655884,
+ -0.09696005284786224,
+ 0.6556276679039001,
+ 0.1818501502275467,
+ -0.45555925369262695,
+ 0.6174648404121399,
+ 0.5321005582809448,
+ -0.5362133979797363,
+ 0.808663010597229,
+ -0.6850099563598633,
+ 0.6105638742446899,
+ -0.3957630395889282,
+ -1.2204442024230957,
+ 2.1048355102539062,
+ -0.6292548179626465,
+ 0.7148451209068298,
+ -0.3883109986782074,
+ 0.010156163945794106,
+ 0.10791997611522675,
+ -1.400594711303711,
+ 0.3900871276855469,
+ 0.7575605511665344,
+ 0.05481533706188202,
+ 0.1368790864944458,
+ 0.15155386924743652,
+ -0.5426236987113953,
+ 0.5274386405944824,
+ 1.7815433740615845,
+ 0.6484062075614929,
+ 0.21676717698574066,
+ -0.05167831480503082,
+ -1.0287195444107056,
+ -0.005269650369882584,
+ -0.6681983470916748,
+ 0.21965107321739197,
+ -1.9461344480514526,
+ -0.28871646523475647,
+ -1.876539945602417,
+ 0.47708332538604736,
+ 0.5984564423561096,
+ 0.9228698015213013,
+ -0.28450438380241394,
+ -1.2655729055404663,
+ 0.8567101955413818,
+ -1.0900115966796875,
+ -0.3263663649559021,
+ -0.4085213243961334,
+ -0.02700658328831196,
+ 0.33135131001472473,
+ 1.7973521947860718,
+ -0.4284482002258301,
+ -0.3275826573371887,
+ 0.7800748944282532,
+ -0.6349989771842957,
+ 1.364677906036377,
+ 1.26485013961792,
+ 0.647456705570221,
+ -2.4299120903015137,
+ 0.2059321403503418,
+ 0.30731648206710815,
+ 0.5864525437355042,
+ -0.48952412605285645,
+ -0.575830340385437,
+ 0.3851560950279236,
+ 0.7404919862747192,
+ 1.8357633352279663,
+ 1.0879937410354614,
+ -0.4213438928127289,
+ -0.26578953862190247,
+ 0.3361467719078064,
+ 0.23069512844085693,
+ -0.12748846411705017,
+ 0.615816593170166,
+ 0.4567185044288635,
+ -0.1835053265094757,
+ -0.3028014302253723,
+ -0.7753303647041321,
+ -0.6779263019561768,
+ 0.01917577162384987,
+ 0.6979267597198486,
+ 0.14639288187026978,
+ -0.23803770542144775,
+ 1.1186562776565552,
+ -0.27924925088882446,
+ 0.019457321614027023,
+ -0.7815669178962708,
+ -0.1111033707857132,
+ -0.4252368211746216,
+ 0.2312081754207611,
+ -1.407192349433899,
+ -0.3338984549045563,
+ 0.9611043930053711,
+ -0.6843997240066528,
+ -0.919256329536438,
+ -0.3153911530971527,
+ 0.6998237371444702,
+ -0.40190836787223816,
+ 0.10591812431812286,
+ -0.1598474383354187,
+ 0.47370415925979614,
+ -0.03573840856552124,
+ -0.27866870164871216,
+ -0.08944416046142578,
+ -0.32271337509155273,
+ 1.103563666343689,
+ -0.5121554732322693,
+ 0.8895291090011597,
+ -1.0076851844787598,
+ -1.0916513204574585,
+ 0.0634453073143959,
+ 0.9840071201324463,
+ 0.29454168677330017,
+ 0.5211427211761475,
+ -0.022114945575594902,
+ 0.6674407124519348,
+ -0.22164727747440338,
+ -1.5987019538879395,
+ -0.16787925362586975,
+ -0.8237388730049133,
+ -0.5051466226577759,
+ -1.297010898590088,
+ 0.040901876986026764,
+ 1.6867573261260986,
+ -0.12404019385576248,
+ 0.6531059741973877,
+ 0.2612338960170746,
+ -0.18692472577095032,
+ -0.24957261979579926,
+ 0.991693377494812,
+ 1.2988827228546143,
+ -0.45426830649375916,
+ 2.7179901599884033,
+ 0.9313861131668091,
+ 1.0152558088302612,
+ -0.29928654432296753,
+ 0.6091691851615906,
+ 0.10200852155685425,
+ -0.7619733214378357,
+ 0.7089669704437256,
+ 0.6765677332878113,
+ -0.7813093066215515,
+ -2.088911533355713,
+ 0.145473450422287,
+ 0.10226675868034363,
+ 1.495934247970581,
+ 0.5350269675254822,
+ 0.99384605884552,
+ 0.6247433423995972,
+ -1.0791455507278442,
+ 0.24080556631088257,
+ -0.6805806756019592,
+ -0.7395040392875671,
+ -1.0037245750427246,
+ -1.6953195333480835,
+ -0.6640004515647888,
+ -0.021602528169751167,
+ 0.7612494826316833,
+ 0.4179014265537262,
+ 0.6408235430717468,
+ -0.3472791612148285,
+ 0.6586778163909912,
+ 1.0344526767730713,
+ 0.4277240037918091,
+ 0.12928800284862518,
+ -0.9274347424507141,
+ -0.5343126654624939,
+ -0.4940486550331116,
+ -1.1112126111984253,
+ 0.6746378540992737,
+ 0.28336647152900696,
+ 0.4496450424194336,
+ -0.0909152552485466,
+ -1.279544711112976,
+ -0.5315312147140503,
+ -1.0219216346740723,
+ 0.539219319820404,
+ -0.6692071557044983,
+ -1.2325506210327148,
+ 0.24744069576263428,
+ 1.19117271900177,
+ -0.05685577169060707,
+ -0.027887314558029175,
+ -0.36503174901008606,
+ 0.0865461677312851,
+ -0.9713032245635986,
+ -0.05712132900953293,
+ 2.6716554164886475,
+ -0.9515467882156372,
+ -1.2144100666046143,
+ 0.33719754219055176,
+ 0.8494232296943665,
+ 0.7332059144973755,
+ -0.009799178689718246,
+ 0.40069523453712463,
+ -0.9116218686103821,
+ -0.4493924677371979,
+ 0.09023740142583847,
+ -0.1824536919593811,
+ -1.4178953170776367,
+ -0.08342070132493973,
+ -0.14133697748184204,
+ -0.585941731929779,
+ 0.17987626791000366,
+ -1.0316869020462036,
+ -2.1639792919158936,
+ -0.608806312084198,
+ 0.33956408500671387,
+ -0.6926642060279846,
+ 0.26972371339797974,
+ -0.7145606279373169,
+ -0.2885473370552063,
+ 0.6129438877105713,
+ 0.06287945806980133,
+ -0.9311665892601013,
+ -0.6000146269798279,
+ 0.6650233268737793,
+ 0.4878873825073242,
+ -0.40472719073295593,
+ -0.7700784802436829,
+ -1.3949167728424072,
+ -1.0334821939468384,
+ 0.8906766176223755,
+ -1.016531229019165,
+ 0.2905667722225189,
+ -0.12580494582653046,
+ 0.06141796335577965,
+ -0.7326077818870544,
+ -1.1398022174835205,
+ 0.6795157194137573,
+ -0.29006680846214294,
+ 0.5206493735313416,
+ -0.9635328054428101,
+ 1.162646770477295,
+ -0.03174822777509689,
+ -0.30943068861961365,
+ -0.23136906325817108,
+ -1.20386803150177,
+ 0.07729676365852356,
+ 1.2897530794143677,
+ -0.004759848117828369,
+ -0.3047579526901245,
+ 0.17249514162540436,
+ 0.2915138602256775,
+ 2.1048882007598877,
+ 1.0260132551193237,
+ -0.3486192226409912,
+ 0.4713718295097351,
+ -1.0224109888076782,
+ -0.8753033876419067,
+ 0.47366321086883545,
+ -1.200013279914856,
+ -1.2377517223358154,
+ -0.7483947277069092,
+ -0.1489022672176361,
+ 0.31114083528518677,
+ -1.1193294525146484,
+ 1.1312223672866821,
+ -0.16678652167320251,
+ 0.3236379623413086,
+ -2.3142852783203125,
+ -0.7923275828361511,
+ 0.4123161733150482,
+ -0.5829519033432007,
+ 0.17369592189788818,
+ -1.247122883796692,
+ 0.06360849738121033,
+ -0.12346850335597992,
+ -1.050096869468689,
+ -0.9534671902656555,
+ 1.1375727653503418,
+ 0.10005009174346924,
+ -0.19248586893081665,
+ -0.04394242912530899,
+ -0.7063515186309814,
+ 0.8968257308006287,
+ -1.1170893907546997,
+ 0.8559540510177612,
+ -0.2192756086587906,
+ -0.3941726088523865,
+ 0.6761268377304077,
+ 0.24242329597473145,
+ 1.0229567289352417,
+ 0.4512111246585846,
+ 0.3347734212875366,
+ -0.0023776739835739136,
+ 1.0646449327468872,
+ -0.5548936724662781,
+ -1.4370036125183105,
+ 0.566558837890625,
+ 0.28537002205848694,
+ -0.11059016734361649,
+ -0.29117506742477417,
+ 1.6317963600158691,
+ 0.07128575444221497,
+ -0.6226736307144165,
+ -0.08677874505519867,
+ -0.6499855518341064,
+ -0.2746429741382599,
+ -0.125139981508255,
+ -0.5575780868530273,
+ 0.37598469853401184,
+ 1.1698987483978271,
+ -1.3740533590316772,
+ 1.4124735593795776,
+ 0.583977997303009,
+ 0.034712642431259155,
+ -0.3002558648586273,
+ 0.3111917972564697,
+ 0.25180986523628235,
+ 0.3345043957233429,
+ -0.8498467803001404,
+ -0.6488386988639832,
+ -0.03671472892165184,
+ 0.9213375449180603,
+ 0.20102450251579285,
+ 0.21821936964988708,
+ 0.32266491651535034,
+ -0.5301028490066528,
+ -0.16574324667453766,
+ -1.1498656272888184,
+ 0.4760337173938751,
+ -0.4074138402938843,
+ -0.2727723717689514,
+ 0.2164756953716278,
+ -0.8449533581733704,
+ -0.2748957872390747,
+ -1.5330206155776978,
+ -0.0032412149012088776,
+ 0.24910512566566467,
+ 1.5696954727172852,
+ 1.6435210704803467,
+ 0.6282883286476135,
+ 0.8857196569442749,
+ 0.29538336396217346,
+ 0.24800577759742737,
+ 0.6159662008285522,
+ -0.7789533138275146,
+ 0.8686355352401733,
+ -1.0663464069366455,
+ 0.08526401221752167,
+ 1.2200123071670532,
+ -0.44567158818244934,
+ -0.4004465639591217,
+ 0.45227789878845215,
+ -1.2487027645111084,
+ -0.028070779517292976,
+ -0.024468280375003815,
+ 0.202274888753891,
+ -1.244600534439087,
+ 0.27256086468696594,
+ 0.10876358300447464,
+ -0.6115526556968689,
+ 1.1768745183944702,
+ 0.5806519985198975,
+ -0.47062548995018005,
+ 0.16116736829280853,
+ 0.03218650445342064,
+ 0.332119345664978,
+ -0.22282838821411133,
+ -0.8477956652641296,
+ 0.031858425587415695,
+ -0.0934617891907692,
+ -0.8924079537391663,
+ 1.0846925973892212,
+ -1.6021466255187988,
+ -0.18323388695716858,
+ 0.6919826865196228,
+ 0.6289370059967041,
+ 0.3976292014122009,
+ -1.4054806232452393,
+ 0.8532646298408508,
+ -1.4929760694503784,
+ -0.21112261712551117,
+ 0.5853608250617981,
+ -0.17335274815559387,
+ 0.3519274592399597,
+ 0.9847844839096069,
+ 0.9556026458740234,
+ 0.02398557960987091,
+ -0.3670995831489563,
+ -0.42403465509414673,
+ -0.8492677807807922,
+ 0.35974204540252686,
+ 0.4359246492385864,
+ 1.0031636953353882,
+ -0.41049128770828247,
+ 0.010234273970127106,
+ -1.8144625425338745,
+ 0.5487406253814697,
+ -4.594436168670654,
+ -0.06928849965333939,
+ -0.7140379548072815,
+ -0.26315897703170776,
+ -1.2067736387252808,
+ 0.18860271573066711,
+ 0.44181835651397705,
+ -2.007999897003174,
+ 0.5741823315620422,
+ -0.7053186893463135,
+ -0.40447527170181274,
+ 0.7971658110618591,
+ 0.3795306980609894,
+ -0.5764712691307068,
+ 0.5726391673088074,
+ 1.9404468536376953,
+ -0.4168206751346588,
+ -0.7892459034919739,
+ 0.07534600794315338,
+ 0.4503551721572876,
+ 0.1979008913040161,
+ 0.031410492956638336,
+ 1.719710111618042,
+ -0.21312281489372253,
+ -0.2255653291940689,
+ -0.5331770777702332,
+ -0.5772850513458252,
+ 0.4805622696876526,
+ -0.9931482672691345,
+ -1.7253518104553223,
+ 0.34246328473091125,
+ -0.5122298002243042,
+ 1.7542152404785156,
+ 1.6234393119812012,
+ 1.1842271089553833,
+ 0.9429671764373779,
+ 0.19904541969299316,
+ -0.470355361700058,
+ -0.916246771812439,
+ 0.22618216276168823,
+ 0.6501288414001465,
+ 0.04905354976654053,
+ -0.667859673500061,
+ -0.6314866542816162,
+ 0.22478795051574707,
+ 0.21227122843265533,
+ -0.0179988332092762,
+ -0.730830192565918,
+ -1.1844202280044556,
+ -0.15368767082691193,
+ 0.1004306897521019,
+ 1.8371251821517944,
+ -0.04776856675744057,
+ 1.3893842697143555,
+ -0.6890535950660706,
+ -0.3031788468360901,
+ -0.3673352003097534,
+ 0.32055339217185974,
+ 0.2775600254535675,
+ 0.8798452019691467,
+ -0.8726522326469421,
+ 0.12968862056732178,
+ -0.8239909410476685,
+ -1.5571843385696411,
+ -0.3685336410999298,
+ 0.2992703914642334,
+ -2.809290885925293,
+ -0.25129270553588867,
+ -0.6921799778938293,
+ -0.1980014592409134,
+ -0.6290724277496338,
+ -0.09062620252370834,
+ 0.7334286570549011,
+ -0.3403793275356293,
+ 0.39432376623153687,
+ 0.3492496609687805,
+ 0.3021789789199829,
+ 0.045962512493133545,
+ 0.09814371168613434,
+ -2.313547372817993,
+ -1.1247233152389526,
+ -0.7770629525184631,
+ 0.2469726800918579,
+ -0.2577818036079407,
+ 1.0909559726715088,
+ 0.02533668652176857,
+ -0.852501392364502,
+ 0.7084434032440186,
+ -2.248974084854126,
+ 0.6712371706962585,
+ -1.4693427085876465,
+ -1.0091615915298462,
+ 1.4851454496383667,
+ -0.46749624609947205,
+ -1.4751911163330078,
+ 0.7986935973167419,
+ -0.3685082495212555,
+ 0.4035450220108032,
+ -0.10913129895925522,
+ -1.6380133628845215,
+ 0.19506239891052246,
+ 0.2617981731891632,
+ 0.12977345287799835,
+ -0.9367542862892151,
+ -0.6015307307243347,
+ 0.13798832893371582,
+ 0.7174363136291504,
+ 0.5601741075515747,
+ -0.1632840931415558,
+ -0.16580748558044434,
+ -0.8163689970970154,
+ -0.15587806701660156,
+ 0.20806270837783813,
+ 0.13916505873203278,
+ -0.5815075635910034,
+ 0.6474708318710327,
+ -0.05346684157848358,
+ 0.1797790676355362,
+ -0.6029589772224426,
+ -0.3446899652481079,
+ 0.46250593662261963,
+ -0.43123766779899597,
+ -0.09658613055944443,
+ -1.202518105506897,
+ 0.6611911058425903,
+ 1.970422387123108,
+ 0.8610072135925293,
+ 0.7098507285118103,
+ 0.39852747321128845,
+ -0.8433839082717896,
+ 0.7798580527305603,
+ -0.27949339151382446,
+ 1.0859735012054443,
+ -0.15292225778102875,
+ 1.2965720891952515,
+ -1.0682047605514526,
+ -0.5080550312995911,
+ 1.0390827655792236,
+ 0.9062228202819824,
+ -0.060239408165216446,
+ -1.1972907781600952,
+ -0.10113607347011566,
+ -0.17088280618190765,
+ -0.31882184743881226,
+ 0.2846871614456177,
+ 0.32940247654914856,
+ 0.9759374856948853,
+ -0.5494287014007568,
+ -0.348778635263443,
+ -0.972771942615509,
+ -0.7147298455238342,
+ -0.6609761118888855,
+ 0.49766814708709717,
+ 0.004492715001106262,
+ 1.7559458017349243,
+ 1.3901106119155884,
+ 0.0661466047167778,
+ -1.0714349746704102,
+ 1.2247469425201416,
+ 0.004966074600815773,
+ 0.2577146291732788,
+ -1.4163687229156494,
+ -0.24665045738220215,
+ -0.13489027321338654,
+ -0.14884090423583984,
+ 0.7262370586395264,
+ 0.667314887046814,
+ -0.6369724273681641,
+ 0.3138267993927002,
+ -0.23484547436237335,
+ -0.395608127117157,
+ 1.62825345993042,
+ -1.3732376098632812,
+ 0.7683899402618408,
+ 0.3075336813926697,
+ -0.8198370337486267,
+ 0.5225639343261719,
+ 0.1283579021692276,
+ 0.30071499943733215,
+ -1.0955407619476318,
+ 0.6802575588226318,
+ -0.3332281708717346,
+ 1.0070288181304932,
+ 0.97240149974823,
+ 1.1912180185317993,
+ 0.6277251243591309,
+ -0.24509583413600922,
+ -0.12115606665611267,
+ 0.682279646396637,
+ -0.772967517375946,
+ -0.08952519297599792,
+ -0.40548592805862427,
+ 0.6995441913604736,
+ -0.8256093263626099,
+ 1.0674389600753784,
+ -0.3540588617324829,
+ -0.36027589440345764,
+ 0.7040774822235107,
+ 0.6413776874542236,
+ -0.5489562153816223,
+ -1.1721372604370117,
+ 0.9781491160392761,
+ 0.04123827815055847,
+ -1.115235447883606,
+ -1.2261565923690796,
+ 0.04846055433154106,
+ 0.18259809911251068,
+ -0.13264110684394836,
+ -0.7128289937973022,
+ -0.4094547927379608,
+ -0.2409222573041916,
+ -0.06247151643037796,
+ -0.5647810697555542,
+ 0.6130707263946533,
+ 0.06758740544319153,
+ -0.06333333253860474,
+ 0.5367236137390137,
+ -0.4567735195159912,
+ 0.6522427201271057,
+ 0.6581928730010986,
+ 0.18374569714069366,
+ 0.586137592792511,
+ -0.7827546000480652,
+ 0.0698297992348671,
+ 0.5596252679824829,
+ -0.2656041383743286,
+ -0.39100220799446106,
+ 0.45060867071151733,
+ 0.13501816987991333,
+ -0.5202957391738892,
+ -0.8972011804580688,
+ 0.5805932879447937,
+ 0.9450350403785706,
+ 0.8398153781890869,
+ 0.31387659907341003,
+ 0.629574716091156,
+ -0.46309569478034973,
+ 0.6644429564476013,
+ -0.7429899573326111,
+ -1.6109310388565063,
+ 1.461256742477417,
+ 0.17808447778224945,
+ 0.8986876606941223,
+ 0.889155924320221
+ ]
+ },
+ {
+ "key": 9,
+ "name": "Jessica Rabbit",
+ "type": "movie",
+ "media": "Who Framed Roger Rabbit",
+ "label": [
+ "Confident",
+ "Passionate",
+ "Playful",
+ "Seductive",
+ "Vulnerable"
+ ],
+ "embedding": [
+ -1.2611852884292603,
+ 0.15885885059833527,
+ -1.3230881690979004,
+ -0.30751296877861023,
+ -0.9393490552902222,
+ -0.1895332932472229,
+ 0.6003248691558838,
+ -0.6355422139167786,
+ -0.48950690031051636,
+ -0.09054519236087799,
+ 0.3162424862384796,
+ 0.025757700204849243,
+ -1.3002102375030518,
+ -0.48884257674217224,
+ 1.8871769905090332,
+ 0.9925434589385986,
+ 0.783851683139801,
+ 0.20469030737876892,
+ -0.40270644426345825,
+ -0.44693830609321594,
+ -0.43214625120162964,
+ 0.40704643726348877,
+ -0.5169110298156738,
+ 0.45915481448173523,
+ -0.6139242053031921,
+ 0.7446388006210327,
+ -0.019822483882308006,
+ -0.13832393288612366,
+ -1.692711591720581,
+ 0.7931556701660156,
+ 0.5125311613082886,
+ 0.15943697094917297,
+ -0.2890709638595581,
+ -0.7077347040176392,
+ 0.36907726526260376,
+ -0.8293481469154358,
+ 0.137443408370018,
+ -0.20986820757389069,
+ -1.1812846660614014,
+ 1.0999425649642944,
+ 1.2394639253616333,
+ -1.2738673686981201,
+ 0.9375195503234863,
+ -0.91595059633255,
+ 0.5846351981163025,
+ -1.2442317008972168,
+ 0.252665251493454,
+ -0.43555566668510437,
+ -0.557149350643158,
+ 0.7015488743782043,
+ -0.2238580733537674,
+ 0.7846978306770325,
+ 1.2902933359146118,
+ 0.27790558338165283,
+ 0.41161060333251953,
+ 0.14112488925457,
+ 1.3403273820877075,
+ -1.1122156381607056,
+ -0.9686775803565979,
+ -1.5612965822219849,
+ -1.1994956731796265,
+ 0.17200791835784912,
+ -0.05703691020607948,
+ -0.2937661409378052,
+ 0.23543162643909454,
+ 2.1883254051208496,
+ 0.4861828088760376,
+ -0.13885840773582458,
+ 0.27610674500465393,
+ -1.1705111265182495,
+ -0.21991580724716187,
+ 0.23762816190719604,
+ -0.4777502417564392,
+ 0.0018328949809074402,
+ -2.1713058948516846,
+ 0.6855964660644531,
+ 0.04215945303440094,
+ -0.543626070022583,
+ -0.6281425952911377,
+ 0.4222993552684784,
+ 0.6322188377380371,
+ 0.2013837993144989,
+ 0.44177475571632385,
+ 0.40709102153778076,
+ -0.5012322068214417,
+ 2.061598539352417,
+ -0.27985596656799316,
+ 0.33201563358306885,
+ -0.19414494931697845,
+ -0.936701774597168,
+ -0.338593453168869,
+ -0.4211319386959076,
+ 0.8796936869621277,
+ -1.3688143491744995,
+ -0.6244069337844849,
+ 0.5195213556289673,
+ -0.3063046336174011,
+ 0.13271069526672363,
+ 0.9910192489624023,
+ 1.0986253023147583,
+ 0.13598355650901794,
+ 0.1565597951412201,
+ -0.5701761245727539,
+ -0.08395795524120331,
+ 0.15343080461025238,
+ -0.9933869242668152,
+ 0.15462616086006165,
+ 1.1424570083618164,
+ -0.016677558422088623,
+ 0.1958698332309723,
+ 0.68487149477005,
+ -0.3103823661804199,
+ 0.43025028705596924,
+ 0.7469155788421631,
+ -0.31860581040382385,
+ -0.4847393333911896,
+ 0.4221271872520447,
+ 0.10975201427936554,
+ -0.41493210196495056,
+ -0.16954876482486725,
+ 0.07278628647327423,
+ -0.1495635062456131,
+ -0.30240800976753235,
+ -0.30428385734558105,
+ -0.08731743693351746,
+ -0.4745567739009857,
+ -0.999448299407959,
+ 0.7484572529792786,
+ -0.7993195652961731,
+ 1.0815188884735107,
+ 1.4039007425308228,
+ 0.45568954944610596,
+ -0.32959315180778503,
+ -0.7227970361709595,
+ -1.2866305112838745,
+ -0.26701825857162476,
+ 1.0417424440383911,
+ 1.048015832901001,
+ 0.13124842941761017,
+ -1.3053715229034424,
+ 0.45226168632507324,
+ 1.176334023475647,
+ 0.4225330352783203,
+ -1.396263599395752,
+ 0.6743824481964111,
+ -1.9714946746826172,
+ 0.7651715278625488,
+ 0.3209536373615265,
+ -0.27461421489715576,
+ 0.3169619143009186,
+ 0.4309476912021637,
+ -0.6862403154373169,
+ 0.8618133068084717,
+ 0.5113074779510498,
+ 0.9192593693733215,
+ -1.2264788150787354,
+ -0.8264517188072205,
+ 0.2658013105392456,
+ 1.5466927289962769,
+ -0.2391553372144699,
+ 0.7179161906242371,
+ -1.2621533870697021,
+ -0.46400102972984314,
+ 0.0036193709820508957,
+ 0.5854734778404236,
+ 0.18826892971992493,
+ 0.6545616388320923,
+ 1.001757025718689,
+ 0.002582322806119919,
+ -0.5362908244132996,
+ -0.5003100633621216,
+ -0.9538590908050537,
+ 0.698980450630188,
+ 0.44824445247650146,
+ 0.4685925841331482,
+ 0.16818192601203918,
+ 0.6111089587211609,
+ 0.10319843888282776,
+ 0.9298849701881409,
+ -1.507517695426941,
+ -0.23765479028224945,
+ 0.40868914127349854,
+ -0.6004722118377686,
+ -0.6012169718742371,
+ -0.18623356521129608,
+ -0.5990902185440063,
+ -0.2565969228744507,
+ -0.24021489918231964,
+ 0.7484659552574158,
+ 1.3544843196868896,
+ -0.7512652277946472,
+ -1.5026721954345703,
+ -0.15333475172519684,
+ -0.7960178852081299,
+ 0.9424148797988892,
+ 0.06464775651693344,
+ -0.43375006318092346,
+ -1.1818736791610718,
+ 0.38443660736083984,
+ -1.5255498886108398,
+ -0.2145320475101471,
+ 0.8619953393936157,
+ 0.9327394962310791,
+ -1.0626940727233887,
+ -0.9449982047080994,
+ 0.6933268904685974,
+ -0.7385182976722717,
+ -0.20913295447826385,
+ 1.6089253425598145,
+ -0.8219303488731384,
+ 0.6064848303794861,
+ -0.08506987988948822,
+ 0.1278657764196396,
+ -0.9294887781143188,
+ -1.0743604898452759,
+ -1.0977150201797485,
+ 0.19679901003837585,
+ 0.7785286903381348,
+ -0.40065497159957886,
+ 0.254041463136673,
+ 0.19297286868095398,
+ 0.2935999631881714,
+ 0.7319859266281128,
+ 0.1414966881275177,
+ -0.4218690097332001,
+ 1.2902714014053345,
+ -0.05472599342465401,
+ 2.45109486579895,
+ 0.5223821401596069,
+ 0.25965434312820435,
+ 0.6779051423072815,
+ 0.007649935781955719,
+ -0.4606860876083374,
+ 0.06471949815750122,
+ -0.30194738507270813,
+ -0.0614611990749836,
+ -0.6203314661979675,
+ -0.07708795368671417,
+ 0.7502556443214417,
+ -0.2871035039424896,
+ -0.31311842799186707,
+ -1.4460501670837402,
+ 1.0531489849090576,
+ -0.4736403226852417,
+ -1.2675817012786865,
+ 0.2779299318790436,
+ 0.8510037064552307,
+ -0.5001736879348755,
+ -0.3460690677165985,
+ -0.3110465109348297,
+ 0.016398318111896515,
+ -0.7906657457351685,
+ -1.2283668518066406,
+ -0.750108540058136,
+ 0.7975748181343079,
+ 0.17828863859176636,
+ 0.42505893111228943,
+ -0.05302818864583969,
+ 0.006458275020122528,
+ 0.17358912527561188,
+ -0.050227344036102295,
+ 0.8722596764564514,
+ 0.24275705218315125,
+ 0.694832444190979,
+ 0.6244955658912659,
+ -0.4419497549533844,
+ -0.2849529981613159,
+ -0.1553882658481598,
+ 0.8329412937164307,
+ 0.7265084981918335,
+ -0.35581010580062866,
+ 0.2583197057247162,
+ 0.4268207550048828,
+ -0.42640745639801025,
+ -0.7528811097145081,
+ 0.7104662656784058,
+ -0.7276086807250977,
+ -1.0003447532653809,
+ 0.7869703769683838,
+ 0.5854622721672058,
+ 0.9327050447463989,
+ 0.32269352674484253,
+ -0.43719279766082764,
+ 0.02912312000989914,
+ 1.0439348220825195,
+ -0.49436718225479126,
+ -0.46527254581451416,
+ -0.4844493567943573,
+ 0.4498654901981354,
+ -2.3878839015960693,
+ 1.0269355773925781,
+ 0.2871914803981781,
+ 1.8783631324768066,
+ 0.5732278227806091,
+ -1.154414415359497,
+ -0.6524352431297302,
+ -0.17755430936813354,
+ -3.646671772003174,
+ 0.25845929980278015,
+ -0.6355851292610168,
+ 0.2694527506828308,
+ 0.5571757555007935,
+ 0.03828069567680359,
+ -1.8135361671447754,
+ 0.4829310178756714,
+ -0.7778715491294861,
+ -0.7976449131965637,
+ 0.9013460874557495,
+ -1.587525486946106,
+ -0.2773091793060303,
+ 0.10195763409137726,
+ -0.15273652970790863,
+ -0.7680437564849854,
+ -0.6805664896965027,
+ 0.2640097439289093,
+ 0.007910586893558502,
+ -1.1516293287277222,
+ 0.10303443670272827,
+ -0.1704205870628357,
+ 2.4999265670776367,
+ 0.31227391958236694,
+ -0.06604226678609848,
+ 0.4464890956878662,
+ 0.2348652184009552,
+ -0.9322410225868225,
+ -1.237576961517334,
+ -0.4088248908519745,
+ -1.1666955947875977,
+ 0.7183102965354919,
+ -0.5222889184951782,
+ 0.9322537779808044,
+ 0.5755480527877808,
+ 1.374511480331421,
+ -0.13488198816776276,
+ 0.32759058475494385,
+ 0.41105589270591736,
+ -0.4531048834323883,
+ 0.9498780965805054,
+ 0.5186260342597961,
+ -0.49206221103668213,
+ 0.7657712697982788,
+ 0.17550820112228394,
+ -0.6217371225357056,
+ -0.02802208438515663,
+ 0.8133419752120972,
+ -0.12096264213323593,
+ -0.45395636558532715,
+ 0.8296130895614624,
+ -0.3091222941875458,
+ -0.0286971777677536,
+ 0.37264910340309143,
+ -1.4162575006484985,
+ -0.03698456659913063,
+ -1.1186296939849854,
+ 0.2882441282272339,
+ 0.7991862297058105,
+ 0.43669313192367554,
+ -1.4211912155151367,
+ -1.9159880876541138,
+ 0.18018417060375214,
+ -0.09154625982046127,
+ -0.6038219928741455,
+ -0.7332221865653992,
+ -0.8623583912849426,
+ 0.06733724474906921,
+ 1.027076005935669,
+ 0.27374696731567383,
+ 0.33113810420036316,
+ -0.06624949723482132,
+ 0.21629062294960022,
+ -0.8174912333488464,
+ 0.23353952169418335,
+ 0.4893777668476105,
+ 0.13500715792179108,
+ -0.0068811215460300446,
+ -0.509360134601593,
+ -0.7528324723243713,
+ 1.161976933479309,
+ 0.4599773585796356,
+ -0.38886621594429016,
+ 0.5999562740325928,
+ -0.9232580065727234,
+ -0.7012806534767151,
+ 0.7215669751167297,
+ 0.7395437955856323,
+ 0.5310337543487549,
+ 6.248096942901611,
+ 0.14160585403442383,
+ 0.59000164270401,
+ 0.9019903540611267,
+ 1.711724877357483,
+ -0.1303408145904541,
+ -0.09173993021249771,
+ 0.13931454718112946,
+ -0.07177724689245224,
+ -0.7019807696342468,
+ 0.2984267473220825,
+ 1.0028014183044434,
+ -0.026166217401623726,
+ 0.016561653465032578,
+ -0.0539836511015892,
+ 1.7892756462097168,
+ -0.5017992258071899,
+ -0.21660247445106506,
+ 1.959395170211792,
+ -0.6814872026443481,
+ 0.3124796152114868,
+ 0.12337161600589752,
+ -0.3360251784324646,
+ 0.4895972013473511,
+ -0.8207234740257263,
+ -0.4115879237651825,
+ 0.534267008304596,
+ 0.31520748138427734,
+ -0.7827183604240417,
+ 0.08377213031053543,
+ -0.5164785385131836,
+ 1.3262330293655396,
+ 1.3704036474227905,
+ 1.0729875564575195,
+ 0.5399960279464722,
+ -0.5333776473999023,
+ -1.7023404836654663,
+ -0.2910592257976532,
+ -1.7815766334533691,
+ 0.8797855377197266,
+ -0.9947349429130554,
+ -0.7559093236923218,
+ -0.09520549327135086,
+ -0.14325860142707825,
+ 0.2917598783969879,
+ 0.4193275570869446,
+ 0.768887996673584,
+ -1.1467410326004028,
+ -0.4849161207675934,
+ -0.5401673913002014,
+ -0.30617648363113403,
+ -0.37212681770324707,
+ -0.33076712489128113,
+ 0.6741958856582642,
+ 1.9830238819122314,
+ -0.07018724083900452,
+ -0.15449392795562744,
+ 0.21169543266296387,
+ -0.5514426827430725,
+ 1.558987021446228,
+ 1.0104764699935913,
+ 0.6404174566268921,
+ -2.6211962699890137,
+ 0.6474218368530273,
+ 0.5717090964317322,
+ 2.039564847946167,
+ -0.3783651292324066,
+ -0.7296938896179199,
+ 0.25944724678993225,
+ 0.9066627025604248,
+ -0.14495816826820374,
+ 0.17469091713428497,
+ 0.5529977679252625,
+ 0.33292144536972046,
+ 0.2505781054496765,
+ -0.11116541922092438,
+ -0.26995670795440674,
+ 0.2703341841697693,
+ 0.9875237941741943,
+ 0.3729799687862396,
+ 0.7051635980606079,
+ -0.8122137188911438,
+ -0.5269039273262024,
+ 0.7203349471092224,
+ 0.855713427066803,
+ 0.5179721117019653,
+ -0.9852102994918823,
+ 0.7109963297843933,
+ -0.4930996894836426,
+ -1.1377745866775513,
+ -0.5489634871482849,
+ -0.029049579054117203,
+ -0.9854841828346252,
+ -1.017242431640625,
+ -0.27534446120262146,
+ -0.9675941467285156,
+ 1.3586796522140503,
+ -1.2280436754226685,
+ -1.566177248954773,
+ -0.25064975023269653,
+ 0.2818830907344818,
+ -0.9302922487258911,
+ -0.24869289994239807,
+ -0.6029590368270874,
+ 1.2232640981674194,
+ -0.7327497601509094,
+ -0.42755478620529175,
+ -1.1294845342636108,
+ -0.10063987970352173,
+ 0.3276885449886322,
+ 0.16863413155078888,
+ 0.3567296862602234,
+ 0.2831308841705322,
+ 0.19736383855342865,
+ 0.8748215436935425,
+ 0.7047992944717407,
+ 0.2375883162021637,
+ -0.48602095246315,
+ 0.7983058094978333,
+ 0.646985650062561,
+ -0.6914709210395813,
+ -0.4843566417694092,
+ -0.8333815336227417,
+ -0.589967668056488,
+ -1.3097312450408936,
+ -2.2767083644866943,
+ -0.2624579071998596,
+ 2.4299209117889404,
+ 0.117558553814888,
+ 1.2475346326828003,
+ 0.027106143534183502,
+ -0.522382378578186,
+ 0.3822341859340668,
+ 0.8730925917625427,
+ 2.9259743690490723,
+ -0.40182456374168396,
+ 1.2041722536087036,
+ 0.41340240836143494,
+ 0.9297040700912476,
+ -0.1095886379480362,
+ 0.2820797264575958,
+ 0.8366138935089111,
+ -0.5916292071342468,
+ 0.6691765189170837,
+ 0.48933202028274536,
+ 0.5347276926040649,
+ -0.9032944440841675,
+ -0.49804702401161194,
+ -0.8931201696395874,
+ 1.1864700317382812,
+ 0.6488403081893921,
+ 0.6727455258369446,
+ 0.2707599401473999,
+ -1.0471144914627075,
+ 0.07048934698104858,
+ 0.4031188189983368,
+ -0.6039859056472778,
+ -0.6628438234329224,
+ -1.009250521659851,
+ -1.1019046306610107,
+ 0.43650540709495544,
+ 0.6850848197937012,
+ 0.6438059210777283,
+ 2.2432286739349365,
+ -0.939842700958252,
+ 0.8871316313743591,
+ 0.7009888887405396,
+ 0.5850563645362854,
+ -0.7835961580276489,
+ -1.0168159008026123,
+ 0.27463921904563904,
+ -0.004797287285327911,
+ -0.9331743717193604,
+ 0.5134455561637878,
+ 0.36201775074005127,
+ -0.0769052654504776,
+ 0.376090407371521,
+ -0.7815701365470886,
+ -0.8509512543678284,
+ -0.9138029217720032,
+ 0.6421400904655457,
+ -0.37329086661338806,
+ -0.8974833488464355,
+ 0.5722780227661133,
+ 1.1019028425216675,
+ 0.05604604631662369,
+ 0.5439884066581726,
+ -0.7239227294921875,
+ -0.4099293351173401,
+ -0.6128553748130798,
+ 0.43888211250305176,
+ 2.0518696308135986,
+ -0.39452895522117615,
+ -0.5466717481613159,
+ 0.7364764213562012,
+ -0.07043744623661041,
+ 0.14947523176670074,
+ 0.5038576126098633,
+ -0.15623562037944794,
+ 0.1727318912744522,
+ -0.653342604637146,
+ -1.175569772720337,
+ -0.4579208791255951,
+ -0.7161086201667786,
+ 0.37632831931114197,
+ -0.1505947858095169,
+ -0.3002248704433441,
+ 0.3207980990409851,
+ -0.9572098255157471,
+ -0.7378356456756592,
+ -0.7248509526252747,
+ 0.394878089427948,
+ -0.27622681856155396,
+ 0.18195466697216034,
+ -0.8623306751251221,
+ -0.3072332441806793,
+ 0.3573160171508789,
+ -0.2596401572227478,
+ -1.2393122911453247,
+ -0.7083097100257874,
+ 0.2909868061542511,
+ 0.3237505555152893,
+ 1.3925434350967407,
+ -0.5149633884429932,
+ -0.5861865282058716,
+ -2.076647996902466,
+ 0.1885998696088791,
+ -1.03606379032135,
+ -0.10586376488208771,
+ -0.108601413667202,
+ -0.03892436623573303,
+ -0.3898506760597229,
+ -1.5794353485107422,
+ 0.7898026704788208,
+ 0.054853178560733795,
+ -0.21059992909431458,
+ -0.2662142813205719,
+ 0.8877992630004883,
+ -0.045161452144384384,
+ -0.11423500627279282,
+ -0.5313399434089661,
+ -1.399651050567627,
+ -0.6656789779663086,
+ 1.5562493801116943,
+ -0.11557570099830627,
+ 0.2923131585121155,
+ -0.30153506994247437,
+ -1.3229525089263916,
+ 1.2298753261566162,
+ 0.5448460578918457,
+ -0.1446802020072937,
+ 0.3411080837249756,
+ 0.21818861365318298,
+ -1.1224867105484009,
+ 0.35365980863571167,
+ -1.207573652267456,
+ 0.5402898192405701,
+ -0.19666370749473572,
+ -0.41081082820892334,
+ -0.7088618874549866,
+ -0.9599913954734802,
+ 1.3624241352081299,
+ -0.31689175963401794,
+ -0.18580934405326843,
+ -2.6090967655181885,
+ -0.893683910369873,
+ 0.2621236741542816,
+ -0.5864567160606384,
+ -0.7911644577980042,
+ -1.048957347869873,
+ -0.550643801689148,
+ -0.11657772958278656,
+ -0.8070986866950989,
+ -1.396925449371338,
+ 1.7730683088302612,
+ -0.20585258305072784,
+ -0.8617945313453674,
+ 0.34842756390571594,
+ -0.5471031069755554,
+ 0.9426169991493225,
+ -1.0231276750564575,
+ 2.052569627761841,
+ -0.699459433555603,
+ 0.32544082403182983,
+ 0.18036265671253204,
+ 0.0821058452129364,
+ -0.1523510366678238,
+ -0.11112835258245468,
+ 0.11567455530166626,
+ 0.11649514734745026,
+ 1.3166451454162598,
+ -0.7284884452819824,
+ -1.2777179479599,
+ 0.3030714690685272,
+ -0.2527022659778595,
+ -0.1514538824558258,
+ -0.5818637013435364,
+ 1.3177552223205566,
+ -0.24678458273410797,
+ -0.7087709903717041,
+ -0.3003787398338318,
+ 0.42404717206954956,
+ -0.3846019506454468,
+ -0.01659645140171051,
+ -0.21530269086360931,
+ -0.0056475428864359856,
+ 1.3073172569274902,
+ -1.1335183382034302,
+ 0.3548751175403595,
+ 1.1611430644989014,
+ 0.07587757706642151,
+ 0.10301953554153442,
+ 0.5155611038208008,
+ 0.021699558943510056,
+ 0.42007824778556824,
+ -1.243652105331421,
+ 0.12566739320755005,
+ 0.060004085302352905,
+ 0.15510955452919006,
+ -0.32964104413986206,
+ 0.6666581630706787,
+ -0.1177273690700531,
+ -0.9990407228469849,
+ 0.0660107433795929,
+ -0.8549008369445801,
+ 0.37828192114830017,
+ 1.2345532178878784,
+ -0.11485134810209274,
+ -0.054265640676021576,
+ -0.14908850193023682,
+ -0.5736216306686401,
+ -1.3320025205612183,
+ -0.1658410131931305,
+ 0.6242861747741699,
+ 0.26135146617889404,
+ 1.7382779121398926,
+ 0.6294204592704773,
+ 0.6253911852836609,
+ 0.2453964650630951,
+ 0.18633760511875153,
+ 0.9234777688980103,
+ 0.8812408447265625,
+ 1.187132477760315,
+ -0.44922009110450745,
+ 0.3021480441093445,
+ 0.2923649549484253,
+ -0.696668803691864,
+ 0.14808066189289093,
+ -0.2670246660709381,
+ -0.925825834274292,
+ -0.1171240508556366,
+ 0.5518988370895386,
+ -0.23837846517562866,
+ -1.3219146728515625,
+ 0.7828184962272644,
+ 0.9202857613563538,
+ -0.7373740673065186,
+ -0.25048887729644775,
+ -0.21302610635757446,
+ -0.45847487449645996,
+ -0.22543290257453918,
+ 0.6724127531051636,
+ -0.5974874496459961,
+ -0.5257271528244019,
+ -0.11747147887945175,
+ 0.818403959274292,
+ 0.5311605334281921,
+ -0.7161997556686401,
+ 1.037958025932312,
+ -0.5384423732757568,
+ -0.2684585154056549,
+ 0.5102128386497498,
+ -0.11538581550121307,
+ 1.2223083972930908,
+ -1.314676284790039,
+ 1.0070658922195435,
+ -0.8538098335266113,
+ -0.6137470602989197,
+ 1.0082577466964722,
+ 0.12837743759155273,
+ 0.2536171078681946,
+ 0.7860980033874512,
+ 0.1332872062921524,
+ -0.812343418598175,
+ 0.11132627725601196,
+ -0.28768759965896606,
+ -1.3422660827636719,
+ 0.15986882150173187,
+ -0.1810852289199829,
+ 1.1909441947937012,
+ -0.018104854971170425,
+ -1.3595378398895264,
+ -1.0388177633285522,
+ 0.2207685261964798,
+ -4.885882377624512,
+ 0.5068529844284058,
+ 0.18869175016880035,
+ -0.27736252546310425,
+ -1.0672030448913574,
+ 0.461184561252594,
+ -0.08785507082939148,
+ -2.2348992824554443,
+ 0.6121696829795837,
+ 0.01014743186533451,
+ -0.7077368497848511,
+ 0.482407808303833,
+ 0.2924715578556061,
+ -1.0501384735107422,
+ 0.4760477542877197,
+ 0.9331231117248535,
+ 0.23981839418411255,
+ -1.0685126781463623,
+ -0.13018590211868286,
+ 1.1124577522277832,
+ 0.49777817726135254,
+ 0.17433448135852814,
+ 1.1667053699493408,
+ 0.5277170538902283,
+ 0.10460713505744934,
+ -0.37370145320892334,
+ -0.6067379117012024,
+ 0.42618057131767273,
+ -1.0234386920928955,
+ -1.1656016111373901,
+ -1.0388152599334717,
+ -1.1061255931854248,
+ 1.686169147491455,
+ 1.1440811157226562,
+ 1.7487519979476929,
+ -0.27484285831451416,
+ 0.507578432559967,
+ -0.13673940300941467,
+ -1.2756301164627075,
+ 0.2504975497722626,
+ 0.7647509574890137,
+ 0.23982304334640503,
+ -0.7600656747817993,
+ 0.0013666637241840363,
+ 0.496920645236969,
+ -0.12592747807502747,
+ -0.001732710748910904,
+ -0.22640907764434814,
+ -1.0818064212799072,
+ 0.4749045670032501,
+ 0.8434785008430481,
+ 1.085911512374878,
+ 0.3512652516365051,
+ 1.7910090684890747,
+ 0.28174683451652527,
+ -0.11394397914409637,
+ -0.35647425055503845,
+ 0.7052116394042969,
+ -0.5409778356552124,
+ 1.1005135774612427,
+ -0.9914163947105408,
+ -0.5110163688659668,
+ -1.0298972129821777,
+ -1.2303153276443481,
+ -0.1995580643415451,
+ 0.04010432958602905,
+ -1.542771577835083,
+ 0.5972086191177368,
+ 0.295766144990921,
+ 0.5512374043464661,
+ -0.2625772953033447,
+ -1.266727089881897,
+ 0.9813477993011475,
+ -1.2675743103027344,
+ 0.8399641513824463,
+ 0.9895890951156616,
+ 0.7832533717155457,
+ 0.350986123085022,
+ -1.0377614498138428,
+ -1.698911190032959,
+ -1.1344964504241943,
+ -1.081846833229065,
+ 0.6999240517616272,
+ 0.027288995683193207,
+ 1.1143471002578735,
+ -0.004896234720945358,
+ -1.0789414644241333,
+ 0.8798725605010986,
+ -1.4256219863891602,
+ 0.847488522529602,
+ -2.0938267707824707,
+ -0.7591606378555298,
+ 0.46824321150779724,
+ -0.17730684578418732,
+ -1.8265420198440552,
+ 1.5880727767944336,
+ -0.5382347106933594,
+ 1.0836987495422363,
+ -0.7999213337898254,
+ -0.46249762177467346,
+ -0.46345943212509155,
+ -0.5116769671440125,
+ 0.3270907402038574,
+ -0.4865663945674896,
+ -0.8155909776687622,
+ 0.09038643538951874,
+ 1.4288890361785889,
+ -0.8761755228042603,
+ -0.0667237937450409,
+ 0.8370180726051331,
+ -0.009377691894769669,
+ -0.24187792837619781,
+ 0.9460029602050781,
+ 0.20641358196735382,
+ -1.253888726234436,
+ 0.11862203478813171,
+ 0.19208841025829315,
+ -0.21298138797283173,
+ -1.1189391613006592,
+ 0.3011999726295471,
+ 0.1449562907218933,
+ 0.13947397470474243,
+ 0.4613415002822876,
+ -1.7112789154052734,
+ -0.23340119421482086,
+ 1.911975622177124,
+ 1.0873852968215942,
+ 1.2044458389282227,
+ 1.2233967781066895,
+ -0.41435351967811584,
+ 0.3526143431663513,
+ -1.6433184146881104,
+ 0.17061804234981537,
+ 0.7478642463684082,
+ 0.5741620659828186,
+ -0.6477850675582886,
+ 0.4407201111316681,
+ 0.5801476240158081,
+ 0.07538186758756638,
+ -0.5859388709068298,
+ -0.4803682565689087,
+ -0.588141143321991,
+ -0.8789565563201904,
+ 0.1723911315202713,
+ -0.4722781181335449,
+ 0.9826595783233643,
+ -0.43570640683174133,
+ 0.01904379203915596,
+ -1.2255316972732544,
+ -0.9139600992202759,
+ -0.15311934053897858,
+ -0.09115852415561676,
+ 0.6823077201843262,
+ -0.3363652527332306,
+ 1.0667192935943604,
+ 1.5946006774902344,
+ -0.5681345462799072,
+ -0.7378801703453064,
+ 0.6091088056564331,
+ 0.9598642587661743,
+ -0.555391788482666,
+ -0.20884579420089722,
+ -0.4378601610660553,
+ 0.7739709615707397,
+ -0.7307440638542175,
+ -0.24130922555923462,
+ 0.7299853563308716,
+ -0.7790513634681702,
+ -0.08464054018259048,
+ -1.5244946479797363,
+ 0.2432025671005249,
+ 0.8097898960113525,
+ -0.9883228540420532,
+ -0.10645605623722076,
+ 0.34429723024368286,
+ -0.3282192051410675,
+ 0.5460450053215027,
+ 0.07367005199193954,
+ 0.6382315158843994,
+ -1.0511574745178223,
+ 0.5031232833862305,
+ 0.6104777455329895,
+ 0.07492268085479736,
+ 1.2779927253723145,
+ 0.22667324542999268,
+ 0.5424612164497375,
+ -0.4954175353050232,
+ -0.2801337242126465,
+ -0.17749105393886566,
+ 0.5271108150482178,
+ 0.14647525548934937,
+ -1.0748412609100342,
+ 0.42717936635017395,
+ -1.0604408979415894,
+ 1.01496160030365,
+ -0.10137113928794861,
+ -0.6768826246261597,
+ 0.2868545949459076,
+ 0.6328452229499817,
+ -0.15368331968784332,
+ -0.02189946174621582,
+ 0.3218002915382385,
+ -0.19817303121089935,
+ -0.050330813974142075,
+ -1.2676255702972412,
+ 0.5393822193145752,
+ -0.4713582992553711,
+ 0.20136842131614685,
+ 0.010707113891839981,
+ 0.45314112305641174,
+ -0.38242772221565247,
+ -0.6401982307434082,
+ -0.6143496632575989,
+ 0.8643702864646912,
+ -0.8834367990493774,
+ 0.6338274478912354,
+ -0.4041348099708557,
+ -0.5852717161178589,
+ 0.3750949501991272,
+ 0.8163714408874512,
+ 0.5762689113616943,
+ -0.14853259921073914,
+ -0.9762598872184753,
+ 0.6717060208320618,
+ 0.310584157705307,
+ 0.33750659227371216,
+ -0.5365662574768066,
+ 0.32754597067832947,
+ -0.21620461344718933,
+ -0.8496571779251099,
+ 0.3609900176525116,
+ 0.7249690890312195,
+ 0.007447108626365662,
+ 1.736862063407898,
+ 1.0507326126098633,
+ -0.029375378042459488,
+ -0.01680697686970234,
+ 0.41367244720458984,
+ -0.8702153563499451,
+ -0.5580214262008667,
+ 0.72258061170578,
+ 0.27549877762794495,
+ 0.1463947892189026,
+ 0.2739030420780182
+ ]
+ },
+ {
+ "key": 10,
+ "name": "Tony Stark",
+ "type": "movie",
+ "media": "Iron Man",
+ "label": [
+ "Adventurous",
+ "Affectionate",
+ "Confident",
+ "Dominant",
+ "Loyal"
+ ],
+ "embedding": [
+ -0.9592210054397583,
+ -0.3226259648799896,
+ -0.556286096572876,
+ -0.4306544363498688,
+ -1.1999725103378296,
+ -0.8753783106803894,
+ 0.3027772903442383,
+ -1.1107712984085083,
+ -0.7761778831481934,
+ -0.08785021305084229,
+ 0.729351282119751,
+ -0.2545849084854126,
+ -2.267446517944336,
+ 0.055774420499801636,
+ 0.8912273645401001,
+ 1.4052822589874268,
+ 0.5240865349769592,
+ 0.23474940657615662,
+ -1.1182478666305542,
+ -0.8999218940734863,
+ -0.9552583694458008,
+ 0.104654461145401,
+ -0.2894132733345032,
+ -0.028529981151223183,
+ -1.2124881744384766,
+ 0.2190239429473877,
+ 0.2703882157802582,
+ 0.043835073709487915,
+ -0.7140235304832458,
+ -0.05289324373006821,
+ 0.3563743233680725,
+ 0.13078168034553528,
+ -0.4162669777870178,
+ -0.1501574069261551,
+ 0.8757920861244202,
+ -0.18416807055473328,
+ 0.4207920432090759,
+ -0.3954165279865265,
+ -1.221638560295105,
+ 1.8317842483520508,
+ 1.1115639209747314,
+ -1.5978786945343018,
+ 0.4452815353870392,
+ -0.9183429479598999,
+ 0.2640590965747833,
+ -0.7861025929450989,
+ 0.14876677095890045,
+ -0.4701133668422699,
+ 0.44743454456329346,
+ 0.8749940991401672,
+ -0.4969174265861511,
+ 0.4624507427215576,
+ 1.4022117853164673,
+ -0.13548821210861206,
+ 0.8090528845787048,
+ 0.4341093897819519,
+ 0.3887825012207031,
+ -0.886153519153595,
+ -0.5570919513702393,
+ -1.479618787765503,
+ -1.3572959899902344,
+ 0.03504950553178787,
+ -0.38643601536750793,
+ 0.4926784038543701,
+ -0.41393572092056274,
+ 1.5320178270339966,
+ -0.09450734406709671,
+ -0.18568599224090576,
+ 0.23752257227897644,
+ -1.2801264524459839,
+ -0.3855016231536865,
+ 0.20056544244289398,
+ -0.7873273491859436,
+ 0.26471441984176636,
+ -1.944322109222412,
+ 0.6564954519271851,
+ 0.2751981317996979,
+ -0.5351786613464355,
+ -0.389374703168869,
+ 0.14908164739608765,
+ 0.13286010921001434,
+ 0.07782281935214996,
+ 0.5126619338989258,
+ 0.26211437582969666,
+ -0.9331586360931396,
+ 0.4043184220790863,
+ 0.39713770151138306,
+ -0.10999152064323425,
+ 0.20654605329036713,
+ 0.6467065215110779,
+ -1.0043822526931763,
+ 0.038324326276779175,
+ 0.5390550494194031,
+ -0.5408334732055664,
+ -1.0600779056549072,
+ 0.19190239906311035,
+ -0.24967752397060394,
+ -0.24721728265285492,
+ 1.3763668537139893,
+ 0.4707869291305542,
+ -0.4248766601085663,
+ 0.5099781155586243,
+ 0.028726305812597275,
+ -0.26377296447753906,
+ -0.2895958125591278,
+ -1.6336477994918823,
+ -0.28843262791633606,
+ 1.2581223249435425,
+ -0.17603744566440582,
+ 0.3280036151409149,
+ 0.008505493402481079,
+ -0.5465315580368042,
+ 0.295030415058136,
+ 0.8160580992698669,
+ 0.068563312292099,
+ -0.001880750060081482,
+ 0.05337747931480408,
+ 0.05558829754590988,
+ -0.3873594105243683,
+ 0.41484344005584717,
+ 0.6120919585227966,
+ -0.6576391458511353,
+ 0.03356265276670456,
+ -0.41658952832221985,
+ -0.5294152498245239,
+ -0.6491755843162537,
+ -0.7410893440246582,
+ 0.43653568625450134,
+ 0.12948748469352722,
+ 1.212101697921753,
+ 2.362102746963501,
+ 0.8857129216194153,
+ -0.20141306519508362,
+ -1.3126537799835205,
+ -0.6494871973991394,
+ -0.7408477067947388,
+ 0.6019821166992188,
+ 0.9523955583572388,
+ 0.15796951949596405,
+ -1.022816777229309,
+ -0.2993669807910919,
+ 1.4080339670181274,
+ -0.11565268039703369,
+ -0.8837161064147949,
+ 0.6945685744285583,
+ -1.990013837814331,
+ 0.22351288795471191,
+ 0.45737841725349426,
+ -0.7742339372634888,
+ -0.3661123514175415,
+ 1.127298355102539,
+ -0.8013378977775574,
+ 0.3325333893299103,
+ 1.5322202444076538,
+ 1.3417866230010986,
+ -1.707466959953308,
+ -0.4740966260433197,
+ 1.0355899333953857,
+ 1.1864866018295288,
+ 1.1554383039474487,
+ 0.47116899490356445,
+ 0.22784456610679626,
+ -0.08819350600242615,
+ -0.13793547451496124,
+ 0.02281729318201542,
+ -0.09974458068609238,
+ 1.273742914199829,
+ 1.1200814247131348,
+ 0.6059393882751465,
+ -0.543522834777832,
+ 0.011198438704013824,
+ -1.3188214302062988,
+ 0.3344961106777191,
+ 0.7299278974533081,
+ 0.6352782249450684,
+ -0.16374626755714417,
+ 1.8254356384277344,
+ -0.09750490635633469,
+ 1.0319887399673462,
+ -1.1608091592788696,
+ -0.9110357165336609,
+ 0.31328284740448,
+ -0.8889681100845337,
+ -0.09531892836093903,
+ -0.4416363537311554,
+ -0.7942424416542053,
+ -0.28632640838623047,
+ 0.10551851987838745,
+ 0.3960227966308594,
+ 0.941856324672699,
+ -0.29696154594421387,
+ -1.3603546619415283,
+ 0.10779601335525513,
+ -1.1592786312103271,
+ 0.17207187414169312,
+ 0.8873427510261536,
+ -0.2106868326663971,
+ -1.4418537616729736,
+ -0.03899683058261871,
+ -1.805341362953186,
+ 0.36120492219924927,
+ 1.2622243165969849,
+ 1.3774921894073486,
+ -0.594482958316803,
+ -0.3810635507106781,
+ 0.7154120206832886,
+ -0.4445403516292572,
+ -0.46660909056663513,
+ 0.8044793605804443,
+ -1.4992626905441284,
+ -0.3402402400970459,
+ 0.22855907678604126,
+ 0.17580679059028625,
+ 0.2713681161403656,
+ -0.930521547794342,
+ -1.913650393486023,
+ 0.48950666189193726,
+ 0.39427894353866577,
+ -0.20609377324581146,
+ 0.22586168348789215,
+ -0.5595347285270691,
+ 0.7914262413978577,
+ 0.9177883863449097,
+ 0.138756662607193,
+ 0.6668673753738403,
+ 0.9429193735122681,
+ 0.47152602672576904,
+ 1.651021122932434,
+ 0.3440777659416199,
+ 0.47311699390411377,
+ 0.5400792956352234,
+ 0.03306029736995697,
+ 0.005101647228002548,
+ 0.11336436867713928,
+ 0.37932413816452026,
+ -0.5498620867729187,
+ -1.072299838066101,
+ 0.3210808336734772,
+ 1.4633328914642334,
+ 0.10074470937252045,
+ -0.3371467590332031,
+ -1.6009387969970703,
+ 1.5540616512298584,
+ 0.02826346457004547,
+ 0.08444731682538986,
+ 0.05417287349700928,
+ 0.16757003962993622,
+ -0.7306396961212158,
+ -0.20150183141231537,
+ -0.9242526292800903,
+ -0.7106677293777466,
+ -0.7818106412887573,
+ -1.5925310850143433,
+ -0.7684305906295776,
+ 0.6076684594154358,
+ 0.2393862009048462,
+ 0.05906517058610916,
+ -0.11297488957643509,
+ 0.11937831342220306,
+ -0.5400567650794983,
+ -0.6693900227546692,
+ 0.6940451860427856,
+ -0.5872759222984314,
+ 1.3265897035598755,
+ 0.316927045583725,
+ -0.7108651995658875,
+ 0.6621845364570618,
+ 0.2717742323875427,
+ 0.18952006101608276,
+ 0.027438875287771225,
+ -0.08240094035863876,
+ 0.28206509351730347,
+ 0.35630837082862854,
+ -1.1837307214736938,
+ 0.10690565407276154,
+ 1.0535392761230469,
+ -0.14666718244552612,
+ -0.5967400670051575,
+ 1.2103930711746216,
+ 0.17979557812213898,
+ 1.394452691078186,
+ 0.27894043922424316,
+ 0.472655713558197,
+ -0.07241278886795044,
+ 1.231779932975769,
+ -0.4881279766559601,
+ 0.3963668942451477,
+ -0.5968403816223145,
+ 0.21888408064842224,
+ -2.429729700088501,
+ 1.14054536819458,
+ 0.32945019006729126,
+ 2.0160975456237793,
+ 0.3421100080013275,
+ -0.9201968312263489,
+ -0.30491068959236145,
+ -0.9458736181259155,
+ -3.5896573066711426,
+ -0.005467138718813658,
+ -0.42251527309417725,
+ 0.3746999502182007,
+ 0.000987151637673378,
+ 0.23282401263713837,
+ -1.2972517013549805,
+ 0.46703246235847473,
+ -0.6404933929443359,
+ -1.1007018089294434,
+ 0.10825125873088837,
+ -1.628570318222046,
+ -0.3572264015674591,
+ -0.034071534872055054,
+ -0.9070102572441101,
+ -0.7362174987792969,
+ 0.09464320540428162,
+ 0.39029669761657715,
+ -0.049183979630470276,
+ -0.7025860548019409,
+ -0.7856509685516357,
+ -0.4091379940509796,
+ 1.7585092782974243,
+ 0.30679306387901306,
+ 0.5911183953285217,
+ 1.542456865310669,
+ 0.49081331491470337,
+ -0.6123378276824951,
+ -1.0198830366134644,
+ -0.464902400970459,
+ -0.1689295619726181,
+ 0.3970424234867096,
+ -0.2211878001689911,
+ 0.9318616986274719,
+ 0.6819115281105042,
+ 1.2992020845413208,
+ 0.6111614108085632,
+ 0.5501074194908142,
+ 0.5669423937797546,
+ -0.1901632398366928,
+ 0.3205806016921997,
+ 0.08062965422868729,
+ -0.5294342041015625,
+ 0.234226793050766,
+ -0.1507270634174347,
+ -0.699901819229126,
+ -0.30217963457107544,
+ 1.2041256427764893,
+ -0.2659679651260376,
+ -0.49733978509902954,
+ 0.8056354522705078,
+ -0.19720160961151123,
+ 0.06639271974563599,
+ 0.45191869139671326,
+ -1.7243537902832031,
+ -0.1069452315568924,
+ -1.123098373413086,
+ 0.30136674642562866,
+ 0.6444754600524902,
+ -0.0024609635584056377,
+ -0.6010669469833374,
+ -1.399112582206726,
+ 0.16479402780532837,
+ 0.4392978549003601,
+ -0.6734545230865479,
+ -0.1368526965379715,
+ -0.7145054936408997,
+ -0.2523656487464905,
+ 0.9072046875953674,
+ 0.516720712184906,
+ 0.30359625816345215,
+ -0.31103047728538513,
+ -0.21429570019245148,
+ -0.34576690196990967,
+ 0.28436172008514404,
+ 0.6141311526298523,
+ -0.37870287895202637,
+ -0.2499658763408661,
+ -1.0353999137878418,
+ -0.6446975469589233,
+ 0.8114782571792603,
+ 0.25375017523765564,
+ -0.5946289896965027,
+ 1.2309305667877197,
+ -0.8966583013534546,
+ -1.5611273050308228,
+ 0.17702257633209229,
+ 0.9297574162483215,
+ 0.5198794603347778,
+ 5.855612754821777,
+ 0.0253930501639843,
+ 0.8772907853126526,
+ 0.765358567237854,
+ 1.4616434574127197,
+ 0.2870296537876129,
+ 0.44454365968704224,
+ 0.4825443625450134,
+ 0.3061707615852356,
+ -0.596814751625061,
+ 0.26872140169143677,
+ 0.49914097785949707,
+ 0.013830444775521755,
+ -0.5488163232803345,
+ 0.05221308767795563,
+ 1.9238135814666748,
+ -0.18952533602714539,
+ -0.6587461829185486,
+ 2.216327428817749,
+ -0.4316820800304413,
+ 0.8463402986526489,
+ 0.45965075492858887,
+ 0.11469349265098572,
+ 0.618702232837677,
+ -0.46053826808929443,
+ -0.7831381559371948,
+ 0.9857558012008667,
+ 0.7827829122543335,
+ -0.11116550117731094,
+ 0.33661529421806335,
+ -0.1569424569606781,
+ 1.6323573589324951,
+ 1.1938766241073608,
+ 1.375996470451355,
+ 0.14323852956295013,
+ -0.04149756580591202,
+ -2.549196243286133,
+ -0.11233623325824738,
+ -1.2097876071929932,
+ 0.9534140825271606,
+ -1.856136441230774,
+ -0.9041926860809326,
+ -0.8392319679260254,
+ -0.8285820484161377,
+ -0.09074847400188446,
+ 0.7470833659172058,
+ 0.39218536019325256,
+ -0.2962179183959961,
+ 0.02008875086903572,
+ -1.1447621583938599,
+ -0.2811838984489441,
+ -0.6607905626296997,
+ -0.5612083077430725,
+ 0.8458362221717834,
+ 2.4996492862701416,
+ 0.18394482135772705,
+ -0.7436651587486267,
+ 0.11300098896026611,
+ -0.10038121044635773,
+ 1.606719970703125,
+ 1.0415503978729248,
+ 0.6915504336357117,
+ -1.9706443548202515,
+ -0.4576982855796814,
+ 0.06142131984233856,
+ 0.7709348797798157,
+ -0.9280102849006653,
+ 0.3422800600528717,
+ 0.29522114992141724,
+ 0.3873123228549957,
+ -0.19213375449180603,
+ 1.2553333044052124,
+ 0.43156546354293823,
+ 0.1859855055809021,
+ -0.21482005715370178,
+ 0.6157792210578918,
+ -0.28225943446159363,
+ 0.6685925722122192,
+ 0.3661215603351593,
+ -0.34234946966171265,
+ 0.7815603017807007,
+ -0.7001269459724426,
+ -0.5450644493103027,
+ 0.8301892280578613,
+ 1.1537389755249023,
+ 1.0974231958389282,
+ -1.6999938488006592,
+ 1.266815185546875,
+ -0.26792117953300476,
+ -0.020823897793889046,
+ -1.1075338125228882,
+ -0.6362274885177612,
+ -1.0285013914108276,
+ -1.2144948244094849,
+ -0.5659903883934021,
+ -0.8363853096961975,
+ 0.8145899176597595,
+ -0.5629892945289612,
+ -1.2561887502670288,
+ -0.29605162143707275,
+ 0.22459663450717926,
+ -0.5007936358451843,
+ -0.43796151876449585,
+ -0.20108242332935333,
+ 0.46262234449386597,
+ -0.38602712750434875,
+ -0.8073643445968628,
+ -0.44513607025146484,
+ -0.6726343631744385,
+ 1.0709922313690186,
+ -0.2559565603733063,
+ 0.9425198435783386,
+ -0.8153071999549866,
+ 0.5199854373931885,
+ 0.9393169283866882,
+ 0.8011490702629089,
+ 0.25032487511634827,
+ -0.20985066890716553,
+ 0.892342209815979,
+ 0.19695624709129333,
+ -0.1456335186958313,
+ -0.5633946657180786,
+ -0.3313389718532562,
+ -0.4260672330856323,
+ -0.9949826002120972,
+ -2.9222805500030518,
+ 0.31087416410446167,
+ 1.1147087812423706,
+ -0.6966012120246887,
+ 1.203930139541626,
+ 0.3013484477996826,
+ -0.6301044225692749,
+ 1.5088261365890503,
+ 1.220848560333252,
+ 1.688974380493164,
+ 0.06142593175172806,
+ 1.313960075378418,
+ 0.34895429015159607,
+ 0.07240331918001175,
+ 0.14348386228084564,
+ -0.4673324525356293,
+ 0.07198922336101532,
+ -1.2022972106933594,
+ 0.4674142599105835,
+ 0.357611745595932,
+ -0.4134463667869568,
+ -1.6381551027297974,
+ -0.434542715549469,
+ -0.15793181955814362,
+ 0.10850292444229126,
+ 0.050210073590278625,
+ 0.5839498043060303,
+ 0.6442909240722656,
+ -1.316710352897644,
+ 0.5288581252098083,
+ -0.3968023955821991,
+ -0.15943852066993713,
+ -0.8103064894676208,
+ -1.0855673551559448,
+ -1.3184658288955688,
+ -0.12099672108888626,
+ 0.5287009477615356,
+ 1.3449739217758179,
+ 2.0774307250976562,
+ -0.6084526181221008,
+ 1.302817940711975,
+ 0.4737832248210907,
+ 1.4207372665405273,
+ -0.14152327179908752,
+ -0.8198710083961487,
+ -0.048747651278972626,
+ 0.24959126114845276,
+ -0.32891616225242615,
+ 0.6047115325927734,
+ 0.6119153499603271,
+ 0.1605374962091446,
+ 0.4343799650669098,
+ -0.2941741347312927,
+ -0.08777118474245071,
+ -0.16076035797595978,
+ 0.0995444804430008,
+ 0.332681268453598,
+ -0.7847995162010193,
+ -0.27344971895217896,
+ 1.391832709312439,
+ 1.2446036338806152,
+ 0.1371525228023529,
+ -0.4816230535507202,
+ -0.6004448533058167,
+ -0.1238728016614914,
+ 0.5768613815307617,
+ 1.898595929145813,
+ -0.28316158056259155,
+ -0.6818287968635559,
+ 0.01554466038942337,
+ -0.7322790622711182,
+ 0.20591005682945251,
+ 0.04457726329565048,
+ 0.013980379328131676,
+ 0.4797945022583008,
+ -1.2868565320968628,
+ 0.6280802488327026,
+ -0.4275820553302765,
+ -1.2203915119171143,
+ 0.3345756530761719,
+ 0.023927483707666397,
+ -0.6069355010986328,
+ 0.13414742052555084,
+ -0.574952244758606,
+ -0.8264484405517578,
+ -0.24534417688846588,
+ 0.30497607588768005,
+ -0.48929867148399353,
+ -0.08072881400585175,
+ -0.8098494410514832,
+ -0.13381239771842957,
+ 0.5612224340438843,
+ -0.9049208760261536,
+ -0.9895623326301575,
+ -1.153737187385559,
+ -0.3823736608028412,
+ 0.335035115480423,
+ 0.8548261523246765,
+ -0.6897152662277222,
+ -0.9390841126441956,
+ -1.413519024848938,
+ -0.160582035779953,
+ -0.3189131021499634,
+ -0.36783847212791443,
+ -0.15431490540504456,
+ -0.1297471970319748,
+ 0.40005621314048767,
+ -1.5321877002716064,
+ 0.3165430724620819,
+ -0.3675394654273987,
+ -0.3072989881038666,
+ 0.02093191258609295,
+ 0.678726077079773,
+ -0.5746641755104065,
+ -0.38582244515419006,
+ -0.13627058267593384,
+ -0.6929041147232056,
+ -1.1728410720825195,
+ 0.953426718711853,
+ 0.38884589076042175,
+ 0.6445397734642029,
+ 0.13167177140712738,
+ -0.502137303352356,
+ 1.8060628175735474,
+ 0.5961480736732483,
+ -0.7762473821640015,
+ 0.39925336837768555,
+ -0.06814973056316376,
+ -0.7880731821060181,
+ 1.0393588542938232,
+ -0.695326030254364,
+ 0.7057712078094482,
+ -0.07105816900730133,
+ -0.6171920895576477,
+ -0.0691256895661354,
+ -1.3848501443862915,
+ 1.2839235067367554,
+ -0.41869011521339417,
+ 0.23398801684379578,
+ -2.8813273906707764,
+ -0.8756542801856995,
+ 0.13755342364311218,
+ -1.3150255680084229,
+ -0.686048686504364,
+ -0.9095187783241272,
+ -0.8314229846000671,
+ -0.07677977532148361,
+ -0.8039953112602234,
+ -0.7631204128265381,
+ 1.2717679738998413,
+ 0.22704806923866272,
+ -1.0950547456741333,
+ -0.5107060670852661,
+ -0.618488073348999,
+ 1.7940047979354858,
+ -0.9297484755516052,
+ 1.6493687629699707,
+ -0.2863095998764038,
+ -0.16356992721557617,
+ 0.3971840441226959,
+ 0.49739527702331543,
+ 0.7956734895706177,
+ -0.4442903697490692,
+ 0.018608231097459793,
+ 0.3185950517654419,
+ 1.8215405941009521,
+ -0.49578148126602173,
+ -0.7714529633522034,
+ 0.017477352172136307,
+ -0.9382145404815674,
+ -0.9545052647590637,
+ -0.26802900433540344,
+ 0.7206193208694458,
+ -1.1306304931640625,
+ -0.28072211146354675,
+ -0.10404835641384125,
+ 0.9641686677932739,
+ -0.2200978696346283,
+ -0.05266725271940231,
+ -4.104338586330414e-06,
+ 0.1563352346420288,
+ 1.3917737007141113,
+ -1.3995716571807861,
+ 1.0404963493347168,
+ 1.1782957315444946,
+ -0.15657219290733337,
+ 0.16216014325618744,
+ 0.3570486307144165,
+ -0.5987625122070312,
+ 0.3459973931312561,
+ -1.4523231983184814,
+ -0.6024985313415527,
+ 0.10491875559091568,
+ -0.43709447979927063,
+ -0.3008049726486206,
+ 0.3823760449886322,
+ 0.23425033688545227,
+ -0.7671138644218445,
+ 0.5591468214988708,
+ -0.7191296815872192,
+ -0.1472506821155548,
+ 0.9704461693763733,
+ -0.06039119511842728,
+ 0.4003271758556366,
+ -0.634198784828186,
+ 0.09817801415920258,
+ -1.1265590190887451,
+ -0.2971224784851074,
+ 0.4899452328681946,
+ 1.6345375776290894,
+ 1.9672551155090332,
+ -0.45502156019210815,
+ 0.3263537287712097,
+ 0.05125606805086136,
+ 1.0735312700271606,
+ 0.8849011659622192,
+ 1.2200008630752563,
+ 0.5314117074012756,
+ -0.6009219884872437,
+ 0.14499212801456451,
+ 0.30379167199134827,
+ -0.4362325966358185,
+ -0.4136042594909668,
+ -0.39424142241477966,
+ -1.1635018587112427,
+ -0.39272382855415344,
+ 1.1840317249298096,
+ -0.26321864128112793,
+ -1.6574864387512207,
+ 0.2709852159023285,
+ 0.583124041557312,
+ -1.471787452697754,
+ -0.06866513192653656,
+ -0.0386045016348362,
+ -0.7129605412483215,
+ 0.3635094165802002,
+ 0.32665714621543884,
+ 0.2381259649991989,
+ -0.8737544417381287,
+ -0.7477608919143677,
+ 0.36889615654945374,
+ 0.578946053981781,
+ -0.026762569323182106,
+ 0.6451939344406128,
+ -0.6636958718299866,
+ -0.8615579009056091,
+ 0.8692271113395691,
+ 0.8490186333656311,
+ 1.1317514181137085,
+ -0.7266510725021362,
+ 1.047350525856018,
+ -0.7496693134307861,
+ -0.15643565356731415,
+ 0.7659665942192078,
+ 0.09930811077356339,
+ -0.10494334995746613,
+ -0.008466411381959915,
+ 0.22110804915428162,
+ -0.36250075697898865,
+ 0.40807005763053894,
+ -0.26415684819221497,
+ -1.0641183853149414,
+ 0.3137807548046112,
+ -0.24758321046829224,
+ 1.2527599334716797,
+ -0.1675819605588913,
+ 0.13862797617912292,
+ -0.571463942527771,
+ 0.23838627338409424,
+ -4.302818298339844,
+ 0.8639057874679565,
+ -0.5114715099334717,
+ -0.3669208884239197,
+ -1.4660236835479736,
+ 0.3275665044784546,
+ -1.0582364797592163,
+ -1.7807694673538208,
+ 0.22061210870742798,
+ -0.3213059902191162,
+ -1.0788800716400146,
+ 0.0007819458842277527,
+ 0.6600359082221985,
+ -0.9996954798698425,
+ 0.23367880284786224,
+ 1.254982590675354,
+ 0.8031780123710632,
+ -1.5780797004699707,
+ 0.20682132244110107,
+ 1.6002393960952759,
+ -0.24474895000457764,
+ -0.4167047441005707,
+ 0.7275921702384949,
+ -0.08463465422391891,
+ -0.21751075983047485,
+ -0.34620293974876404,
+ -0.5861464738845825,
+ 0.7592002749443054,
+ -0.8796632289886475,
+ -0.34357744455337524,
+ -0.2067917138338089,
+ -1.013514757156372,
+ 1.481099247932434,
+ 1.5733485221862793,
+ 1.6582356691360474,
+ 0.29493021965026855,
+ 0.28008317947387695,
+ -0.6569675207138062,
+ -1.0299768447875977,
+ 0.11967971920967102,
+ 0.7270992398262024,
+ 0.5577258467674255,
+ 0.1934320330619812,
+ 0.7758612036705017,
+ 0.4468858242034912,
+ -0.7857901453971863,
+ -0.14742985367774963,
+ -0.26994428038597107,
+ -0.8776863813400269,
+ 0.24089209735393524,
+ -0.1632654070854187,
+ 0.7234344482421875,
+ 1.6754000186920166,
+ 1.2067128419876099,
+ 0.41594645380973816,
+ -0.556106686592102,
+ -0.7342445254325867,
+ -0.032576289027929306,
+ -1.1076161861419678,
+ 0.595677375793457,
+ -0.6554176211357117,
+ 0.048548899590969086,
+ -1.0857932567596436,
+ -1.4850722551345825,
+ -0.4932348132133484,
+ 0.8823055624961853,
+ -1.7445749044418335,
+ 0.9974626302719116,
+ 0.7434709668159485,
+ 0.5141119360923767,
+ -0.37940603494644165,
+ -1.5058480501174927,
+ 1.2479240894317627,
+ -0.4564226567745209,
+ 0.7496760487556458,
+ 0.09832315146923065,
+ 1.2951706647872925,
+ 0.39091718196868896,
+ -2.0265989303588867,
+ -1.3661006689071655,
+ -1.089029312133789,
+ -0.8769571185112,
+ 0.6674174666404724,
+ 0.8173084855079651,
+ 1.7948871850967407,
+ 0.6608065962791443,
+ -0.6665453910827637,
+ 0.5489970445632935,
+ -1.3939050436019897,
+ 0.999081015586853,
+ -1.3679051399230957,
+ -1.17919921875,
+ 1.113227367401123,
+ -0.009139079600572586,
+ -0.5548611879348755,
+ 0.21580550074577332,
+ -0.2545422911643982,
+ 0.525475263595581,
+ -0.6026492118835449,
+ -0.49773064255714417,
+ -0.09848595410585403,
+ -0.8336394429206848,
+ 0.5999431014060974,
+ -0.49220284819602966,
+ 0.06440211832523346,
+ -0.16714932024478912,
+ 0.35978972911834717,
+ -0.29358118772506714,
+ -0.5984355807304382,
+ 0.5105047225952148,
+ 0.5307550430297852,
+ -0.6639854311943054,
+ 0.36161133646965027,
+ -0.440354585647583,
+ 0.06009887158870697,
+ 0.11689586937427521,
+ 0.8515950441360474,
+ -0.2831608057022095,
+ -0.8438116312026978,
+ -0.4408872425556183,
+ 0.749231219291687,
+ -0.6148473024368286,
+ 0.4349882900714874,
+ -1.5839120149612427,
+ 0.3324630558490753,
+ 1.848688006401062,
+ 1.0359418392181396,
+ 0.91071617603302,
+ 1.566322684288025,
+ -0.9887721538543701,
+ 1.1097218990325928,
+ -2.107468605041504,
+ -0.05208100378513336,
+ 0.01875513419508934,
+ 1.5037587881088257,
+ -1.6296663284301758,
+ -0.2274704873561859,
+ 0.8660374879837036,
+ -0.6850479245185852,
+ -0.7272632718086243,
+ -0.20510560274124146,
+ -0.04382646456360817,
+ -1.2750446796417236,
+ 0.4841068983078003,
+ -0.5824671983718872,
+ 0.24006035923957825,
+ -0.6850684285163879,
+ -0.03767634928226471,
+ -1.0884730815887451,
+ -1.1229170560836792,
+ 0.33833104372024536,
+ -0.9823936223983765,
+ 0.8350868225097656,
+ 0.47021782398223877,
+ 0.7557491660118103,
+ 0.7956311106681824,
+ -0.2351175844669342,
+ -0.9754634499549866,
+ 0.41201120615005493,
+ 0.48765498399734497,
+ -0.19254493713378906,
+ -1.0569618940353394,
+ -0.16625922918319702,
+ -0.4868710935115814,
+ -0.9176899194717407,
+ -0.03248218819499016,
+ 0.32713785767555237,
+ -0.6832183599472046,
+ -0.4912088215351105,
+ -1.4848872423171997,
+ -0.1699378490447998,
+ 1.1975260972976685,
+ -0.6379647254943848,
+ -0.1780611276626587,
+ 0.5343815684318542,
+ -0.831262469291687,
+ 0.6826954483985901,
+ -0.26076269149780273,
+ 1.2138104438781738,
+ -0.8693203330039978,
+ 0.8241046667098999,
+ 0.2072022706270218,
+ -0.326948881149292,
+ 1.0510824918746948,
+ 0.4523072838783264,
+ 0.18055734038352966,
+ -0.0509471669793129,
+ -0.05568692088127136,
+ -0.021291546523571014,
+ 0.163998082280159,
+ -0.2638777196407318,
+ -0.6426528692245483,
+ 0.7783527970314026,
+ -0.30467790365219116,
+ 0.5428848266601562,
+ 0.2550734877586365,
+ -1.1859122514724731,
+ 1.3015005588531494,
+ -0.10780019313097,
+ -0.0590544231235981,
+ 0.15679198503494263,
+ 0.26690101623535156,
+ 0.2618284821510315,
+ -0.3095155358314514,
+ -0.30845195055007935,
+ 0.9118885397911072,
+ -0.16916170716285706,
+ -0.5114244818687439,
+ -0.418756902217865,
+ 0.18584109842777252,
+ -1.1566522121429443,
+ -0.5163455009460449,
+ -1.0770565271377563,
+ 0.9452811479568481,
+ -0.401151180267334,
+ 0.32908064126968384,
+ -0.015226844698190689,
+ -0.7537115216255188,
+ 0.3521665334701538,
+ 0.9818308353424072,
+ 0.6093631982803345,
+ 0.26312267780303955,
+ -0.8847554326057434,
+ -0.05680594593286514,
+ 0.8593003153800964,
+ 0.027148962020874023,
+ -0.705756664276123,
+ -0.2516263723373413,
+ -0.4179452955722809,
+ -1.1821739673614502,
+ 0.31114161014556885,
+ 0.6823612451553345,
+ 0.8646692633628845,
+ 1.0647307634353638,
+ 0.7003951072692871,
+ 0.8302524089813232,
+ -0.43512576818466187,
+ -0.01752382516860962,
+ -0.026913676410913467,
+ -0.3433900773525238,
+ 0.07382839173078537,
+ 0.4821777939796448,
+ -0.04149695113301277,
+ 0.5163065791130066
+ ]
+ },
+ {
+ "key": 15,
+ "name": "Lucifer Morningstar",
+ "type": "movie",
+ "media": "Lucifer",
+ "label": [
+ "Adventurous",
+ "Confident",
+ "Dominant",
+ "Passionate",
+ "Playful"
+ ],
+ "embedding": [
+ -0.9890136122703552,
+ -0.4086848199367523,
+ -1.1493241786956787,
+ -0.47512516379356384,
+ -1.3674787282943726,
+ -0.29598644375801086,
+ 0.11922930181026459,
+ -0.8638134002685547,
+ -0.7151342034339905,
+ -0.14152361452579498,
+ 0.6603497266769409,
+ -0.0290994793176651,
+ -2.116726875305176,
+ -0.26242756843566895,
+ 1.4728196859359741,
+ 0.9110256433486938,
+ 0.8416135907173157,
+ 0.23657360672950745,
+ -0.4525650143623352,
+ -0.5805101990699768,
+ -0.47014057636260986,
+ 0.11246258020401001,
+ -0.2458786964416504,
+ 0.36661696434020996,
+ -1.052798867225647,
+ 0.36040765047073364,
+ 0.13544756174087524,
+ 0.0984831154346466,
+ -0.9469137787818909,
+ 0.30891144275665283,
+ -0.31339502334594727,
+ 0.22093231976032257,
+ -0.7128676772117615,
+ -0.23266346752643585,
+ 0.14083628356456757,
+ -0.5630879402160645,
+ 0.3667193353176117,
+ -0.3892797827720642,
+ -1.100370168685913,
+ 1.349795937538147,
+ 1.1802631616592407,
+ -1.2646567821502686,
+ 0.6735349893569946,
+ -1.065496802330017,
+ 0.3098325729370117,
+ -0.8213735818862915,
+ 0.33455631136894226,
+ -0.28808581829071045,
+ -0.16150635480880737,
+ 0.9770818948745728,
+ -0.29699769616127014,
+ 0.6032267212867737,
+ 1.6051924228668213,
+ -0.1677882969379425,
+ 0.020804809406399727,
+ 0.5427454113960266,
+ 0.760150134563446,
+ -0.6130608916282654,
+ -0.5971096158027649,
+ -1.9058459997177124,
+ -1.3669871091842651,
+ 0.1692817062139511,
+ -0.2872193455696106,
+ -0.3242812752723694,
+ -0.07011909782886505,
+ 1.7538853883743286,
+ 0.6840195059776306,
+ 0.006103690713644028,
+ 0.24470554292201996,
+ -1.208573818206787,
+ -0.6370015740394592,
+ -0.23199649155139923,
+ -1.1413404941558838,
+ -0.16731490194797516,
+ -2.2741923332214355,
+ 0.912199854850769,
+ 0.09222763776779175,
+ -0.8673897385597229,
+ -0.4999811351299286,
+ 0.0929882675409317,
+ 0.34830018877983093,
+ -0.12311188131570816,
+ 0.8035649657249451,
+ 0.3332396447658539,
+ -0.46200892329216003,
+ 1.308329463005066,
+ 0.26893875002861023,
+ -0.4816080629825592,
+ 0.005051042884588242,
+ 0.13739486038684845,
+ -0.725049614906311,
+ -0.5017271041870117,
+ 1.0931519269943237,
+ -1.1454188823699951,
+ -0.4925343990325928,
+ 0.10693330317735672,
+ -0.13701488077640533,
+ -0.09515388309955597,
+ 0.8389384150505066,
+ 0.796917736530304,
+ 0.07430088520050049,
+ 0.3915953040122986,
+ -0.011552081443369389,
+ -0.10448522865772247,
+ 0.28740841150283813,
+ -1.6699942350387573,
+ 0.2732439339160919,
+ 1.3764573335647583,
+ 0.005435481667518616,
+ 0.26682212948799133,
+ 0.606708288192749,
+ -0.18317337334156036,
+ 0.7171987295150757,
+ 0.7296534180641174,
+ -0.25500619411468506,
+ -0.1992373764514923,
+ 0.43046966195106506,
+ -0.09988876432180405,
+ 0.05638745427131653,
+ 0.5012674331665039,
+ 0.6640662550926208,
+ -0.2207697033882141,
+ 0.34466761350631714,
+ -0.38149985671043396,
+ -0.6684032082557678,
+ -0.6607297658920288,
+ -1.024057149887085,
+ 0.9695655107498169,
+ -0.13366058468818665,
+ 0.7748892307281494,
+ 1.9551546573638916,
+ 0.8467363119125366,
+ -0.3951924741268158,
+ -0.8629615902900696,
+ -1.2888092994689941,
+ -0.36584025621414185,
+ 0.8136937618255615,
+ 1.25050687789917,
+ -0.2699257731437683,
+ -1.3461837768554688,
+ 0.3042044937610626,
+ 1.3674954175949097,
+ 0.5436484217643738,
+ -1.707694411277771,
+ 0.49968838691711426,
+ -1.8427187204360962,
+ 0.3412385880947113,
+ 0.38664719462394714,
+ -0.8504730463027954,
+ -0.05001787841320038,
+ 0.6939655542373657,
+ -0.6854224801063538,
+ 0.3820479214191437,
+ 1.1013330221176147,
+ 1.0491087436676025,
+ -1.4216558933258057,
+ -0.6558800339698792,
+ 0.8579521775245667,
+ 1.0242962837219238,
+ 0.5224701166152954,
+ 0.7198205590248108,
+ -1.0612863302230835,
+ 0.3207060992717743,
+ 0.24092715978622437,
+ 0.11721152812242508,
+ -0.3832685351371765,
+ 0.7718307971954346,
+ 1.3661363124847412,
+ 0.37244299054145813,
+ -0.31328633427619934,
+ -0.8316912055015564,
+ -1.3484567403793335,
+ 0.31030625104904175,
+ 0.8847056031227112,
+ 0.41108274459838867,
+ -0.24406063556671143,
+ 0.9126320481300354,
+ 0.0424928143620491,
+ 1.431593894958496,
+ -1.3768699169158936,
+ -0.7068657875061035,
+ 0.3067769706249237,
+ -0.6395217776298523,
+ -0.7298320531845093,
+ -0.46233490109443665,
+ -0.9453850388526917,
+ -0.26477348804473877,
+ 0.13543199002742767,
+ 0.6981079578399658,
+ 1.2759037017822266,
+ -0.6731885671615601,
+ -1.4365746974945068,
+ 0.07207021117210388,
+ -0.8113682866096497,
+ 0.5195547938346863,
+ 0.4999273419380188,
+ -0.8982310891151428,
+ -1.385783314704895,
+ 0.19629818201065063,
+ -1.0536742210388184,
+ 0.03711393103003502,
+ 0.9184737205505371,
+ 0.7850510478019714,
+ -1.0509223937988281,
+ -0.704167902469635,
+ 0.4165777564048767,
+ -1.266555905342102,
+ -0.7443614602088928,
+ 1.5200603008270264,
+ -0.8910071849822998,
+ 0.5101462602615356,
+ 0.09357278794050217,
+ 0.1419050544500351,
+ -0.59564208984375,
+ -1.4363071918487549,
+ -1.1900674104690552,
+ 0.5542783737182617,
+ 0.6189600825309753,
+ -0.3001308739185333,
+ -0.15702733397483826,
+ 0.20515033602714539,
+ 0.7757332921028137,
+ 0.25576016306877136,
+ 0.07454254478216171,
+ 0.23363405466079712,
+ 1.0804957151412964,
+ 0.32408326864242554,
+ 2.314788341522217,
+ 0.40374428033828735,
+ 0.8822019100189209,
+ 0.7133788466453552,
+ 0.13777108490467072,
+ -0.2639279067516327,
+ -0.010522977448999882,
+ -0.3688105344772339,
+ -0.21898579597473145,
+ -0.695687472820282,
+ -0.06964394450187683,
+ 1.0272279977798462,
+ -0.012198342010378838,
+ -0.521892786026001,
+ -1.7911310195922852,
+ 1.1403424739837646,
+ 0.1263488233089447,
+ -1.1442064046859741,
+ -0.0014166985638439655,
+ 0.5590879321098328,
+ -0.4728963375091553,
+ -0.26003679633140564,
+ -0.7438161969184875,
+ -0.1897965520620346,
+ -0.982134997844696,
+ -1.5626733303070068,
+ -0.8151382207870483,
+ 1.0486421585083008,
+ 0.08158671110868454,
+ 0.03647827357053757,
+ -0.24551509320735931,
+ -0.2572866678237915,
+ -0.27262574434280396,
+ -0.35049760341644287,
+ 0.9143275618553162,
+ 0.09503883123397827,
+ 1.028176188468933,
+ 0.6325238943099976,
+ -0.4791164994239807,
+ 0.21909427642822266,
+ 0.3572525382041931,
+ 0.7868753671646118,
+ 0.5755428075790405,
+ -0.42642199993133545,
+ -0.33482861518859863,
+ 0.18899545073509216,
+ -0.8270130753517151,
+ -0.31226444244384766,
+ 1.3085824251174927,
+ -0.05017300695180893,
+ -0.7514370679855347,
+ 1.0833269357681274,
+ 0.5246962904930115,
+ 1.033365249633789,
+ -0.2107866406440735,
+ -0.12433302402496338,
+ 0.10006106644868851,
+ 1.0143661499023438,
+ -0.8234546184539795,
+ -0.3134889006614685,
+ -0.6462293267250061,
+ 0.2104988992214203,
+ -2.0792999267578125,
+ 1.2527191638946533,
+ 0.06692203879356384,
+ 1.742347240447998,
+ 0.5891733765602112,
+ -0.47751370072364807,
+ -1.0203523635864258,
+ -0.6149193048477173,
+ -3.670413017272949,
+ 0.27315759658813477,
+ 0.009343361482024193,
+ 0.18079203367233276,
+ 0.2060549110174179,
+ -0.06323715299367905,
+ -1.449584722518921,
+ 0.4963725805282593,
+ -0.7525792717933655,
+ -1.0008800029754639,
+ 0.6521667838096619,
+ -1.4249187707901,
+ -0.46007874608039856,
+ 0.07709915190935135,
+ -0.3973260223865509,
+ -0.9472488760948181,
+ -0.03347720205783844,
+ 0.21227972209453583,
+ -0.8168023824691772,
+ -0.780307412147522,
+ -0.2333691567182541,
+ -0.2820836007595062,
+ 1.5146139860153198,
+ 0.14957061409950256,
+ -0.11774516105651855,
+ 1.2520173788070679,
+ 0.17521533370018005,
+ -1.0374934673309326,
+ -1.299015760421753,
+ -0.486344575881958,
+ -0.6256166696548462,
+ 0.3009971082210541,
+ -0.3597676455974579,
+ 0.8850405812263489,
+ 0.9076987504959106,
+ 1.7187316417694092,
+ 0.2994510531425476,
+ 0.3616538643836975,
+ 0.28283706307411194,
+ -0.00774818379431963,
+ 0.9281835556030273,
+ 0.10520842671394348,
+ -0.12172950804233551,
+ 0.6978840827941895,
+ 0.13605649769306183,
+ -0.8025757670402527,
+ -0.2237395942211151,
+ 0.778812050819397,
+ 0.1527293175458908,
+ 0.03382407873868942,
+ 0.930751383304596,
+ -0.17201393842697144,
+ 0.30784547328948975,
+ 0.47372597455978394,
+ -1.6095407009124756,
+ -0.06755834817886353,
+ -0.9319388270378113,
+ 0.41995754837989807,
+ 0.9361433982849121,
+ 0.5586138963699341,
+ -1.0058281421661377,
+ -1.5122259855270386,
+ 0.21924471855163574,
+ 0.49610310792922974,
+ -0.5384305715560913,
+ 0.25873228907585144,
+ -0.9679077863693237,
+ -0.30708596110343933,
+ 1.0733060836791992,
+ 0.7265743613243103,
+ 0.4258281886577606,
+ 0.10350821912288666,
+ -0.037973396480083466,
+ -0.3282901644706726,
+ 0.36009088158607483,
+ 0.9116550087928772,
+ 0.08427238464355469,
+ -0.1271454393863678,
+ -0.7716607451438904,
+ -0.3984534740447998,
+ 1.6168066263198853,
+ -0.06302928924560547,
+ -0.24047093093395233,
+ 0.7266170978546143,
+ -0.6959527730941772,
+ -0.9546399712562561,
+ 0.3622499108314514,
+ 0.8416783809661865,
+ 0.6936688423156738,
+ 6.09544563293457,
+ -0.029285544529557228,
+ 0.6312310099601746,
+ 0.6705804467201233,
+ 1.6037566661834717,
+ 0.22548127174377441,
+ -0.18809649348258972,
+ 0.4051629602909088,
+ 0.06872161477804184,
+ -0.8828688859939575,
+ -0.04113790765404701,
+ 0.8083083033561707,
+ 0.06747020035982132,
+ -0.11336567997932434,
+ 0.035148292779922485,
+ 1.1653826236724854,
+ -0.21881049871444702,
+ -0.6013584733009338,
+ 1.9321691989898682,
+ -0.9846800565719604,
+ 0.9343929886817932,
+ 0.4113530218601227,
+ -0.4472905099391937,
+ 0.17045757174491882,
+ -0.06370142102241516,
+ -0.5404651761054993,
+ 1.053369164466858,
+ 0.4154514968395233,
+ -0.4307715892791748,
+ 0.30240389704704285,
+ -0.36061736941337585,
+ 1.2014187574386597,
+ 1.2314720153808594,
+ 1.637012004852295,
+ 0.09254959970712662,
+ -0.4668062925338745,
+ -2.1651320457458496,
+ -0.2285516858100891,
+ -1.594504952430725,
+ 0.9775073528289795,
+ -1.5035266876220703,
+ -0.962472677230835,
+ -0.25655102729797363,
+ -0.4401507079601288,
+ 0.4134292006492615,
+ 0.5826541185379028,
+ 0.7307124137878418,
+ -1.2522379159927368,
+ -0.11641045659780502,
+ -0.7481791973114014,
+ -0.07981991767883301,
+ -0.34807538986206055,
+ -0.5184657573699951,
+ 0.7038253545761108,
+ 2.228830575942993,
+ -0.3090740144252777,
+ -0.2892856299877167,
+ -0.42030227184295654,
+ -0.20778533816337585,
+ 0.8739474415779114,
+ 1.2722418308258057,
+ 0.5765169262886047,
+ -2.0152251720428467,
+ -0.4036688506603241,
+ -0.11706864833831787,
+ 1.8254482746124268,
+ -0.20872941613197327,
+ -0.8391867280006409,
+ 0.1878686249256134,
+ 0.5501429438591003,
+ -0.12853199243545532,
+ 0.6198217868804932,
+ 0.2873099446296692,
+ 0.3206271529197693,
+ 0.2265433967113495,
+ 0.11717776954174042,
+ -0.05438920110464096,
+ -0.3373161852359772,
+ 0.5507171750068665,
+ -0.07404319941997528,
+ 0.5687962770462036,
+ -0.7278058528900146,
+ -0.6263206601142883,
+ 0.37588629126548767,
+ 0.9733635187149048,
+ 1.0419427156448364,
+ -1.014176368713379,
+ 1.482472538948059,
+ -0.24383047223091125,
+ -0.8604001998901367,
+ -0.5220965147018433,
+ -0.39093613624572754,
+ -0.95436692237854,
+ -1.1188350915908813,
+ -0.7878328561782837,
+ -1.3073173761367798,
+ 1.455928921699524,
+ -0.8466633558273315,
+ -1.492154836654663,
+ -0.24579717218875885,
+ 0.6994032859802246,
+ -0.6038370728492737,
+ -0.5112365484237671,
+ -0.233138307929039,
+ 1.1092557907104492,
+ -0.5045731067657471,
+ -0.26765912771224976,
+ -0.6621288657188416,
+ -0.48919379711151123,
+ 0.7829890251159668,
+ 0.5531468987464905,
+ 0.7630460858345032,
+ -0.3850793242454529,
+ 0.6949079632759094,
+ 0.7061018943786621,
+ 0.744627833366394,
+ 0.20943951606750488,
+ -0.8462096452713013,
+ 0.8309783935546875,
+ 0.47448480129241943,
+ -0.8190271854400635,
+ -0.2012476623058319,
+ -0.25875553488731384,
+ -0.7401444315910339,
+ -1.3631983995437622,
+ -2.4505040645599365,
+ 0.16380801796913147,
+ 1.6465239524841309,
+ -0.24276360869407654,
+ 1.2472975254058838,
+ 0.059561461210250854,
+ -0.5200762748718262,
+ 0.8950533866882324,
+ 1.1697311401367188,
+ 2.4910590648651123,
+ -0.3626743257045746,
+ 1.4869927167892456,
+ 0.34019631147384644,
+ 0.44011184573173523,
+ 0.3689069151878357,
+ -0.3179108500480652,
+ 0.16773010790348053,
+ -1.1788620948791504,
+ 0.7192741632461548,
+ 0.5003106594085693,
+ 0.28427088260650635,
+ -0.8546337485313416,
+ -0.7836918234825134,
+ -0.573621392250061,
+ 0.4690402150154114,
+ 0.7522854804992676,
+ 0.3746388256549835,
+ 0.49753016233444214,
+ -1.1932032108306885,
+ 0.4859852194786072,
+ 0.31456896662712097,
+ -0.2827761471271515,
+ -0.4291200339794159,
+ -0.9272865653038025,
+ -1.2084203958511353,
+ 0.29385820031166077,
+ 0.7146875262260437,
+ 1.2558690309524536,
+ 2.4031505584716797,
+ -0.8141450881958008,
+ 0.8970941305160522,
+ 0.5494561195373535,
+ 1.4631118774414062,
+ -1.0698988437652588,
+ -0.7824583649635315,
+ 0.044785842299461365,
+ -0.2100449949502945,
+ -0.4155177175998688,
+ 0.8656256794929504,
+ 0.3283486068248749,
+ 0.7375898957252502,
+ 0.7090378999710083,
+ -0.1933843195438385,
+ -0.42732489109039307,
+ -0.33670011162757874,
+ 0.5737277865409851,
+ 0.030869264155626297,
+ -0.8468595743179321,
+ 0.040965087711811066,
+ 1.3216873407363892,
+ 0.3815014958381653,
+ 0.783381998538971,
+ -0.6933395862579346,
+ -0.6339097023010254,
+ -0.6619526147842407,
+ 1.0097936391830444,
+ 1.9474585056304932,
+ -0.4211326241493225,
+ -0.6344419121742249,
+ 0.7556016445159912,
+ -0.2906848192214966,
+ 0.11031679809093475,
+ -0.469991534948349,
+ -0.1696970909833908,
+ 0.9420033693313599,
+ -0.9531787037849426,
+ -0.6097878217697144,
+ -0.633436381816864,
+ -1.102798581123352,
+ 0.28022536635398865,
+ -0.12180222570896149,
+ -0.3283737599849701,
+ 0.3342842161655426,
+ -1.1904240846633911,
+ -0.6241917610168457,
+ -0.6108506917953491,
+ 0.04870155453681946,
+ -0.29113274812698364,
+ 0.39927518367767334,
+ -0.7927044034004211,
+ 0.21504658460617065,
+ 0.49636417627334595,
+ -0.24258564412593842,
+ -0.8650153279304504,
+ -0.8819321990013123,
+ 0.05169392004609108,
+ 0.3452342450618744,
+ 1.0720030069351196,
+ -0.5102591514587402,
+ -0.4152529835700989,
+ -1.3025281429290771,
+ 0.34664639830589294,
+ -0.6686649918556213,
+ -0.0823424756526947,
+ -0.47165489196777344,
+ -0.06809045374393463,
+ 0.22656187415122986,
+ -1.593774437904358,
+ 0.6450507640838623,
+ -0.16696766018867493,
+ -0.28895652294158936,
+ -0.15225595235824585,
+ 0.28638508915901184,
+ -0.06898121535778046,
+ -0.3338681757450104,
+ -0.04998635873198509,
+ -0.9278916716575623,
+ -1.2675306797027588,
+ 0.7910946011543274,
+ 0.2836904227733612,
+ 0.03896944224834442,
+ 0.08555463701486588,
+ -0.9432644248008728,
+ 1.0405323505401611,
+ 0.6413394212722778,
+ -0.32391971349716187,
+ 0.33993273973464966,
+ -0.3129328489303589,
+ -1.2050654888153076,
+ 0.8408706188201904,
+ -1.4475078582763672,
+ 0.3334581255912781,
+ -0.5900954604148865,
+ -0.7165966629981995,
+ 0.05920460820198059,
+ -0.8837255239486694,
+ 1.3900078535079956,
+ -0.637444257736206,
+ -0.0042769876308739185,
+ -2.6784491539001465,
+ -0.9502853751182556,
+ 0.04836038500070572,
+ -1.4341148138046265,
+ -0.6205769181251526,
+ -0.7889729738235474,
+ -0.9787341952323914,
+ 0.09945084154605865,
+ -0.8514352440834045,
+ -1.4003452062606812,
+ 1.6740314960479736,
+ 0.08340045064687729,
+ -0.9014804363250732,
+ 0.37283000349998474,
+ -0.5635305047035217,
+ 1.0846853256225586,
+ -1.0764378309249878,
+ 1.4569392204284668,
+ -0.8268681168556213,
+ 0.2042277306318283,
+ 0.2437286376953125,
+ -0.29321786761283875,
+ 0.18704506754875183,
+ -0.09260663390159607,
+ 0.0846203938126564,
+ 0.5040045976638794,
+ 1.454904317855835,
+ -0.998403787612915,
+ -0.9022669792175293,
+ -0.060577016323804855,
+ -0.3791506886482239,
+ -0.5540756583213806,
+ 0.005632173269987106,
+ 0.9948945641517639,
+ -0.6895235180854797,
+ -0.3678080141544342,
+ -0.6593970656394958,
+ 0.7674257755279541,
+ -0.48889997601509094,
+ -0.2630245089530945,
+ 0.007600319571793079,
+ -0.01591137796640396,
+ 1.4465851783752441,
+ -1.0482535362243652,
+ 1.0267103910446167,
+ 1.337476134300232,
+ -0.018003804609179497,
+ 0.5987338423728943,
+ 0.8492692708969116,
+ -0.5698120594024658,
+ 0.9133495688438416,
+ -1.5429725646972656,
+ -0.5124021768569946,
+ 0.020372819155454636,
+ 0.04521710053086281,
+ -0.05959678813815117,
+ 0.7830093502998352,
+ 0.11047637462615967,
+ -0.9383811354637146,
+ 0.5759384632110596,
+ -0.5778230428695679,
+ -0.053302135318517685,
+ 1.3145395517349243,
+ -0.3904367685317993,
+ 0.19883304834365845,
+ -0.2516776919364929,
+ -0.13039901852607727,
+ -0.6444905400276184,
+ -0.1385313719511032,
+ 0.6768206357955933,
+ 0.9325156807899475,
+ 1.663888692855835,
+ 0.6435655951499939,
+ 0.5452542901039124,
+ 0.5420079231262207,
+ 0.772499144077301,
+ 1.2460967302322388,
+ 0.9518656730651855,
+ 1.019555687904358,
+ -0.4862610697746277,
+ 0.3144373595714569,
+ 0.7073059678077698,
+ -0.7803716063499451,
+ -0.012654904276132584,
+ -0.2701317369937897,
+ -1.0179879665374756,
+ -0.11976464837789536,
+ 1.222006916999817,
+ -0.42402252554893494,
+ -0.8558915853500366,
+ 0.6355685591697693,
+ 0.652495801448822,
+ -1.1397207975387573,
+ -0.23534707725048065,
+ 0.01753893494606018,
+ -0.5792006254196167,
+ 0.0379016175866127,
+ 0.47495323419570923,
+ -0.26998504996299744,
+ -0.6153430342674255,
+ -0.41577064990997314,
+ 0.8116235136985779,
+ 0.5188880562782288,
+ -0.6016309261322021,
+ 1.1925876140594482,
+ -0.5749763250350952,
+ -0.47368475794792175,
+ 0.3397371172904968,
+ 0.4326840341091156,
+ 0.7002487778663635,
+ -0.5536814332008362,
+ 0.7012198567390442,
+ -0.20985691249370575,
+ -0.6486485600471497,
+ 0.8638875484466553,
+ -0.2379615306854248,
+ 0.1070881187915802,
+ 0.11839960515499115,
+ 0.27747705578804016,
+ -0.49022117257118225,
+ 0.3263205885887146,
+ -0.6803067326545715,
+ -1.2611430883407593,
+ -0.04906943812966347,
+ 0.11679890751838684,
+ 0.9147240519523621,
+ -0.2606382369995117,
+ -0.9741047024726868,
+ -0.4810144007205963,
+ 0.514983594417572,
+ -4.698833465576172,
+ 0.5840707421302795,
+ -0.11188226193189621,
+ -0.3672406077384949,
+ -1.455156922340393,
+ 0.37429457902908325,
+ -0.9021355509757996,
+ -2.1916754245758057,
+ 0.4151947796344757,
+ -0.10826928913593292,
+ -0.8376532793045044,
+ 0.3339853584766388,
+ 0.913620114326477,
+ -1.1303857564926147,
+ 0.22175559401512146,
+ 1.3933223485946655,
+ 0.3789482116699219,
+ -0.9909487962722778,
+ 0.1957675665616989,
+ 1.2852399349212646,
+ -0.24031075835227966,
+ -0.3390996754169464,
+ 1.010593056678772,
+ 0.44845688343048096,
+ 0.5170238018035889,
+ -0.15971523523330688,
+ -0.8625738024711609,
+ 0.9300260543823242,
+ -1.3941357135772705,
+ -0.6303034424781799,
+ -0.5243709087371826,
+ -0.9786444902420044,
+ 1.6023975610733032,
+ 1.1096299886703491,
+ 1.4947668313980103,
+ 0.2575052082538605,
+ 0.4387364387512207,
+ -0.5282695293426514,
+ -0.5957823395729065,
+ 0.15969645977020264,
+ 1.4226638078689575,
+ 0.4020564556121826,
+ -0.36019226908683777,
+ -0.1906338334083557,
+ 0.6451253890991211,
+ -0.5268769264221191,
+ 0.3148661255836487,
+ -0.11697913706302643,
+ -1.0951515436172485,
+ 0.33766525983810425,
+ 0.1731225997209549,
+ 0.6921754479408264,
+ 1.2145593166351318,
+ 1.4010237455368042,
+ 0.41498345136642456,
+ -0.3727388083934784,
+ -0.6124980449676514,
+ 0.44894516468048096,
+ -0.872885525226593,
+ 1.3644429445266724,
+ -1.0049597024917603,
+ -0.4746232330799103,
+ -1.1394858360290527,
+ -1.5319806337356567,
+ -0.43831759691238403,
+ 0.404552698135376,
+ -2.175097942352295,
+ 0.7894722819328308,
+ 0.34702545404434204,
+ 0.5957359671592712,
+ -0.43516120314598083,
+ -1.2473448514938354,
+ 1.0738799571990967,
+ -0.782738208770752,
+ 0.6807425618171692,
+ 0.8944689631462097,
+ 0.9808895587921143,
+ 0.8590653538703918,
+ -1.3306670188903809,
+ -1.6200281381607056,
+ -0.8851233124732971,
+ -1.2843377590179443,
+ 0.168753981590271,
+ 0.7531993389129639,
+ 0.935172975063324,
+ -0.09304099529981613,
+ -0.9190253615379333,
+ 0.6088338494300842,
+ -1.889298915863037,
+ 0.9713666439056396,
+ -1.6715641021728516,
+ -1.221421718597412,
+ 0.7105640172958374,
+ -0.18496090173721313,
+ -1.2717043161392212,
+ 0.06553508341312408,
+ -0.5949660539627075,
+ 0.4784702658653259,
+ -1.1786575317382812,
+ -0.2543049454689026,
+ 0.26619085669517517,
+ -0.7348558902740479,
+ 0.6299540996551514,
+ -0.3204176127910614,
+ -0.31234389543533325,
+ -0.4740539491176605,
+ 0.9886391162872314,
+ -0.597307562828064,
+ -0.447490930557251,
+ 0.4205095171928406,
+ 0.18624459207057953,
+ -0.07691305875778198,
+ 0.21878460049629211,
+ -0.3073226511478424,
+ -0.8197757005691528,
+ 0.37678301334381104,
+ 0.7147471904754639,
+ -0.6235255599021912,
+ -0.7065896987915039,
+ -0.18595461547374725,
+ 0.3947717249393463,
+ -0.3266577124595642,
+ 0.1856319159269333,
+ -1.5491564273834229,
+ 0.3659948408603668,
+ 2.24239182472229,
+ 1.3984243869781494,
+ 0.6033273339271545,
+ 1.5767008066177368,
+ -0.6450116634368896,
+ 0.8451653718948364,
+ -1.8222427368164062,
+ -0.2830374538898468,
+ -0.011458203196525574,
+ 0.45835089683532715,
+ -1.393120527267456,
+ 0.015977278351783752,
+ 0.6426088213920593,
+ 0.14269012212753296,
+ -0.4905532896518707,
+ -0.4416258633136749,
+ -0.21770039200782776,
+ -0.6518650650978088,
+ 0.3967672288417816,
+ -0.5456501245498657,
+ 0.402327299118042,
+ -0.695143461227417,
+ -0.21123699843883514,
+ -1.2629756927490234,
+ -1.008037805557251,
+ 0.14447322487831116,
+ -0.0036326306872069836,
+ 0.752597451210022,
+ 0.3035764992237091,
+ 0.8992217779159546,
+ 0.856782853603363,
+ -0.924031138420105,
+ -0.3969816565513611,
+ 0.7838583588600159,
+ 0.2298685908317566,
+ -0.5200221538543701,
+ -0.5291677117347717,
+ -0.48033398389816284,
+ -0.11648713797330856,
+ -1.1063683032989502,
+ -0.6450390815734863,
+ 0.5309082865715027,
+ -1.0442254543304443,
+ -0.3419976234436035,
+ -1.599053144454956,
+ 0.24253547191619873,
+ 1.4122055768966675,
+ -0.7799341678619385,
+ -0.4418841004371643,
+ 0.5171761512756348,
+ -1.0290714502334595,
+ 0.7726016640663147,
+ 0.3810250461101532,
+ 0.6956862807273865,
+ -1.4615870714187622,
+ 0.6025346517562866,
+ 0.45297500491142273,
+ -0.4763146638870239,
+ 1.1390219926834106,
+ 0.0982288047671318,
+ 0.3804706931114197,
+ -0.2406812459230423,
+ -0.1585412174463272,
+ -0.08817671984434128,
+ 0.14260512590408325,
+ -0.06255960464477539,
+ -0.49286043643951416,
+ 0.6423284411430359,
+ -1.0171631574630737,
+ 0.7120609879493713,
+ 0.32887622714042664,
+ -0.7124804854393005,
+ 0.7609732747077942,
+ 0.09981042146682739,
+ -0.12157164514064789,
+ -0.048556894063949585,
+ 0.43848851323127747,
+ 0.27013468742370605,
+ -0.5312438011169434,
+ -0.5909935235977173,
+ 0.68399977684021,
+ 0.05179665982723236,
+ -0.30032360553741455,
+ 0.20812155306339264,
+ -0.058775048702955246,
+ -0.5201590061187744,
+ -0.6845232248306274,
+ -0.7018643617630005,
+ 0.7291261553764343,
+ -1.035449504852295,
+ 0.9821147918701172,
+ -0.06703456491231918,
+ -0.4023396074771881,
+ 0.6171907782554626,
+ 1.283266544342041,
+ 0.9433391690254211,
+ 0.2104705274105072,
+ -1.2670316696166992,
+ 0.3315284848213196,
+ 0.8717751502990723,
+ 0.6218016743659973,
+ -0.7767682075500488,
+ 0.1763388216495514,
+ -0.13371214270591736,
+ -0.9779131412506104,
+ 0.532132625579834,
+ 0.6191281080245972,
+ 0.42796891927719116,
+ 1.19912850856781,
+ 0.8686370849609375,
+ 0.1682405322790146,
+ -0.1904159039258957,
+ 0.3246394395828247,
+ -0.6398532390594482,
+ -0.18154743313789368,
+ 0.5857937335968018,
+ -0.062060050666332245,
+ -0.13077706098556519,
+ 0.2571704685688019
+ ]
+ },
+ {
+ "key": 11,
+ "name": "Love Quinn",
+ "type": "movie",
+ "media": "You",
+ "label": [
+ "Adventurous",
+ "Impulsive",
+ "Intense",
+ "Possessive",
+ "Romantic"
+ ],
+ "embedding": [
+ -0.26461294293403625,
+ -0.40838852524757385,
+ -0.2648247480392456,
+ 0.18587836623191833,
+ -1.0354058742523193,
+ -0.22309671342372894,
+ 0.7888150215148926,
+ -0.755214512348175,
+ -0.6754361391067505,
+ -0.16070573031902313,
+ 0.01419210433959961,
+ -0.5241937637329102,
+ -1.4954102039337158,
+ -0.15677833557128906,
+ 1.4784919023513794,
+ 1.7239598035812378,
+ -0.02833724394440651,
+ 0.5072544813156128,
+ -0.6503078937530518,
+ -0.4645235240459442,
+ -0.25541144609451294,
+ 0.015464619733393192,
+ -0.16803209483623505,
+ 0.08927104622125626,
+ -1.4022443294525146,
+ 0.28090471029281616,
+ 0.6246082186698914,
+ 0.4429827630519867,
+ -0.46786367893218994,
+ 0.22237801551818848,
+ 0.11453361809253693,
+ -0.2609953284263611,
+ -0.2528441250324249,
+ -1.5622386932373047,
+ -0.2952817976474762,
+ 0.015258878469467163,
+ 0.04802500456571579,
+ -0.1441480666399002,
+ -1.459364652633667,
+ 1.045068621635437,
+ 0.5983440279960632,
+ -1.491019368171692,
+ 0.42629900574684143,
+ -0.7029082775115967,
+ 0.7799044847488403,
+ -0.678072452545166,
+ 0.18546436727046967,
+ -0.4662698209285736,
+ -0.33555901050567627,
+ 0.5088643431663513,
+ -1.2795263528823853,
+ 0.4102548360824585,
+ 1.165601372718811,
+ -0.56473308801651,
+ 0.5968014001846313,
+ 0.4987698793411255,
+ -0.5088039636611938,
+ -0.7390098571777344,
+ -1.7522257566452026,
+ -2.127988338470459,
+ -1.154374599456787,
+ 0.09203150868415833,
+ -0.6863011121749878,
+ 0.19597461819648743,
+ 0.1411922425031662,
+ 1.6369636058807373,
+ -0.225920632481575,
+ 0.4171772301197052,
+ 0.757357120513916,
+ -0.5775168538093567,
+ -0.6844627857208252,
+ 0.19515450298786163,
+ -0.6312042474746704,
+ 0.5986796021461487,
+ -2.306938409805298,
+ 0.5890511870384216,
+ 1.0687729120254517,
+ -1.0410737991333008,
+ 0.5202212929725647,
+ 1.193771481513977,
+ 0.04993778094649315,
+ 0.24350392818450928,
+ 0.1541082262992859,
+ 0.6802977323532104,
+ -0.30873313546180725,
+ 1.0033981800079346,
+ -0.049522534012794495,
+ -0.7856391072273254,
+ -0.17171956598758698,
+ -0.6630761027336121,
+ -0.7333471179008484,
+ -0.06578526645898819,
+ 0.5942401885986328,
+ -0.9315378665924072,
+ -0.42070233821868896,
+ 0.15330979228019714,
+ -0.08956359326839447,
+ -0.33568015694618225,
+ 0.4756816029548645,
+ 0.5889890193939209,
+ 0.21115824580192566,
+ -0.24626538157463074,
+ 0.1313377469778061,
+ -0.11689383536577225,
+ -0.13087230920791626,
+ -1.249009370803833,
+ 0.16252103447914124,
+ 1.1736295223236084,
+ 0.05600596219301224,
+ 0.13632787764072418,
+ 0.09184306859970093,
+ -0.05473531782627106,
+ 0.3362184464931488,
+ 1.0576540231704712,
+ 0.5827168226242065,
+ -0.30683445930480957,
+ -0.5466723442077637,
+ -0.683526873588562,
+ 0.5724379420280457,
+ -0.14720433950424194,
+ 0.6829580068588257,
+ 0.21477851271629333,
+ 0.005434729158878326,
+ -0.5295160412788391,
+ -0.29538261890411377,
+ -0.1505732238292694,
+ -0.46540337800979614,
+ 1.212478518486023,
+ -0.3002457320690155,
+ 0.6074209213256836,
+ 1.8809607028961182,
+ -0.26096564531326294,
+ -0.8715726733207703,
+ -0.8276302814483643,
+ -0.9121169447898865,
+ -0.9390246868133545,
+ -0.5696706771850586,
+ 1.3625739812850952,
+ -0.49096935987472534,
+ -1.292333722114563,
+ 0.4584362506866455,
+ 1.449492335319519,
+ 0.922321081161499,
+ -1.5214203596115112,
+ 0.4820769429206848,
+ -1.6837408542633057,
+ 0.5056524872779846,
+ 0.23594775795936584,
+ -0.48247963190078735,
+ -0.6497973203659058,
+ 0.6019389629364014,
+ 0.2488701343536377,
+ 1.331668496131897,
+ 1.2209248542785645,
+ 0.6636184453964233,
+ -1.126480221748352,
+ -1.190244197845459,
+ 1.1599384546279907,
+ 1.2219841480255127,
+ 0.6564828157424927,
+ -0.39040499925613403,
+ -0.660310685634613,
+ -0.10584793984889984,
+ -0.40886837244033813,
+ -0.010287530720233917,
+ -0.20288583636283875,
+ 1.201299786567688,
+ 1.1410980224609375,
+ 0.4269910156726837,
+ -0.6443911790847778,
+ 0.18154878914356232,
+ -1.1587413549423218,
+ 0.41546908020973206,
+ 0.8099193572998047,
+ 0.24905672669410706,
+ -0.0554606169462204,
+ 1.9800968170166016,
+ 0.09714698791503906,
+ 0.43623316287994385,
+ -1.4394971132278442,
+ -0.5449017882347107,
+ 1.2737812995910645,
+ -0.8353598117828369,
+ -0.2640904188156128,
+ -0.6230449676513672,
+ -0.1461518108844757,
+ -1.0417231321334839,
+ 0.3085905611515045,
+ 0.08128668367862701,
+ 1.3622159957885742,
+ 0.3211754262447357,
+ -0.5637242794036865,
+ 0.6970012187957764,
+ -0.9079465270042419,
+ 0.31787586212158203,
+ -0.16059844195842743,
+ -0.6784253716468811,
+ -1.2885035276412964,
+ 0.423226922750473,
+ -1.7834012508392334,
+ 0.8203377723693848,
+ 0.751372218132019,
+ 0.3071609437465668,
+ -0.8677502870559692,
+ -0.7497612833976746,
+ 0.16172736883163452,
+ -1.083535075187683,
+ -0.7209791541099548,
+ 1.9305007457733154,
+ -0.7408267855644226,
+ 0.021900445222854614,
+ 0.08441414684057236,
+ 0.1899973452091217,
+ -0.8816872835159302,
+ -0.8161746263504028,
+ -0.8198632597923279,
+ 0.9232723116874695,
+ 0.8490601181983948,
+ -0.2479885071516037,
+ -0.14631403982639313,
+ -0.8164395093917847,
+ 1.307684302330017,
+ 0.8341338038444519,
+ 0.17983750998973846,
+ 0.39719170331954956,
+ 1.978430986404419,
+ 0.9512510299682617,
+ 1.6101560592651367,
+ 0.7204469442367554,
+ 0.321158230304718,
+ 0.3557640314102173,
+ -0.48761457204818726,
+ -0.23739805817604065,
+ -0.2298051416873932,
+ -0.03400452435016632,
+ 0.10489394515752792,
+ -0.09054955840110779,
+ -0.053558386862277985,
+ 0.9745187759399414,
+ 0.13087227940559387,
+ -0.5154801607131958,
+ -1.0045572519302368,
+ 0.6807988882064819,
+ 0.8012097477912903,
+ -0.627634584903717,
+ -0.6267760396003723,
+ 0.9231482148170471,
+ -0.3490903079509735,
+ -0.25416672229766846,
+ -0.4846176207065582,
+ 0.10381211340427399,
+ 0.319387286901474,
+ -1.3576892614364624,
+ -0.6741329431533813,
+ 0.3260619342327118,
+ 0.28826257586479187,
+ 0.09343139827251434,
+ 0.1580747365951538,
+ -0.19873397052288055,
+ 0.26314979791641235,
+ -0.1186951994895935,
+ 1.5298985242843628,
+ 0.39460840821266174,
+ 0.8509831428527832,
+ 0.04951900988817215,
+ -0.5688605904579163,
+ 0.7053596377372742,
+ 0.873830258846283,
+ 0.6908385753631592,
+ -0.5372408628463745,
+ -0.14091598987579346,
+ -0.0009304247796535492,
+ 0.4927361011505127,
+ -0.9484422206878662,
+ -0.28955304622650146,
+ 0.31462258100509644,
+ -0.9607729911804199,
+ -0.04183352738618851,
+ 1.2531795501708984,
+ 0.5391985774040222,
+ 0.6353176832199097,
+ 0.5030074119567871,
+ -0.2207249104976654,
+ -0.47547078132629395,
+ 1.9831438064575195,
+ -0.9929509162902832,
+ 0.6389644145965576,
+ -0.9891607165336609,
+ 0.21585655212402344,
+ -1.5459297895431519,
+ 0.4327932596206665,
+ -0.5916330814361572,
+ 1.8660027980804443,
+ 0.4338059723377228,
+ -0.8162931799888611,
+ -0.9823756814002991,
+ -0.9335140585899353,
+ -3.670330047607422,
+ -0.6385757923126221,
+ -0.5272825360298157,
+ 0.6659206748008728,
+ 0.25672900676727295,
+ 0.4654011130332947,
+ -1.71947181224823,
+ 0.07611078023910522,
+ -0.7222588658332825,
+ -0.3550301790237427,
+ 0.2847389280796051,
+ -1.4057495594024658,
+ -0.08968834578990936,
+ 0.2383708953857422,
+ -0.2700924873352051,
+ -0.7592534422874451,
+ -0.41688355803489685,
+ 0.46103227138519287,
+ -0.40103816986083984,
+ -0.7182840704917908,
+ -0.4108993113040924,
+ -0.05842026695609093,
+ 1.4925075769424438,
+ 0.6708784699440002,
+ -0.24096538126468658,
+ 0.7853265404701233,
+ 0.9859967231750488,
+ -0.44242334365844727,
+ -1.4120604991912842,
+ -0.8320162296295166,
+ -0.7029772400856018,
+ -0.17318986356258392,
+ -0.5160169005393982,
+ 0.733302652835846,
+ 0.6508310437202454,
+ 2.151047468185425,
+ 0.2877684235572815,
+ 0.5802744626998901,
+ 1.0329782962799072,
+ -0.6587523221969604,
+ 0.924613356590271,
+ 0.9327538013458252,
+ -0.6449502110481262,
+ 1.0887490510940552,
+ -0.3362134099006653,
+ 0.026423612609505653,
+ -0.002620840445160866,
+ 0.4915619492530823,
+ -0.5615505576133728,
+ -0.6712539792060852,
+ 0.43046194314956665,
+ 0.08758679032325745,
+ 0.26636528968811035,
+ -0.06744982302188873,
+ -0.9895738363265991,
+ -0.10430844128131866,
+ -0.7556235790252686,
+ 0.6507505774497986,
+ 0.12006020545959473,
+ -0.37948086857795715,
+ -1.1054153442382812,
+ -1.6336522102355957,
+ -0.09259726107120514,
+ -0.10001900792121887,
+ -0.10880226641893387,
+ -0.608428955078125,
+ 0.3330630660057068,
+ -0.295868456363678,
+ 0.4568324685096741,
+ -0.5503607392311096,
+ 0.5574621558189392,
+ 0.2973450720310211,
+ -0.2276867777109146,
+ 0.02231191098690033,
+ -0.07916224747896194,
+ 0.721870481967926,
+ 0.47674351930618286,
+ 0.5000995397567749,
+ -1.315449595451355,
+ -0.8928211331367493,
+ -0.038152940571308136,
+ -0.11051355302333832,
+ 0.24112814664840698,
+ 0.4694245457649231,
+ -0.51365065574646,
+ -0.9087817668914795,
+ 1.0535935163497925,
+ 0.5468502640724182,
+ 0.3415793180465698,
+ 5.41635799407959,
+ -0.04227278754115105,
+ 1.4360356330871582,
+ 0.2061423808336258,
+ 1.6690261363983154,
+ -0.4257672429084778,
+ -0.8208235502243042,
+ 0.7085464000701904,
+ -0.49686384201049805,
+ -0.23126289248466492,
+ 0.33180123567581177,
+ 1.315895676612854,
+ -0.7707951664924622,
+ 0.3163174092769623,
+ 0.5657793879508972,
+ 1.5966490507125854,
+ -0.5603572726249695,
+ -0.5226061344146729,
+ 1.589939832687378,
+ -1.098714828491211,
+ 0.5576116442680359,
+ 0.2629159688949585,
+ 0.1997363418340683,
+ -0.36401116847991943,
+ -0.37689483165740967,
+ 0.031882449984550476,
+ 0.8071497082710266,
+ 0.8507401943206787,
+ -0.19064182043075562,
+ 0.47225552797317505,
+ 0.17123264074325562,
+ 0.9000087380409241,
+ 1.534104585647583,
+ 0.09350964426994324,
+ -0.859575629234314,
+ 0.2822909951210022,
+ -1.5702061653137207,
+ -0.6111531257629395,
+ -1.123058795928955,
+ 0.8937905430793762,
+ -1.1489239931106567,
+ -0.8520134091377258,
+ -1.0823113918304443,
+ 0.7772585153579712,
+ 0.4691244959831238,
+ 0.3139984905719757,
+ -0.08954072743654251,
+ -1.2306922674179077,
+ 0.5832124948501587,
+ -1.8614802360534668,
+ 0.4547564685344696,
+ -0.9334378242492676,
+ -0.3254757225513458,
+ 0.5886105895042419,
+ 1.608267903327942,
+ -0.3188134431838989,
+ -0.48721349239349365,
+ -0.07278837263584137,
+ -0.5328693389892578,
+ 1.5070024728775024,
+ 0.09914153814315796,
+ 0.36574530601501465,
+ -2.192354202270508,
+ 0.4924634099006653,
+ 0.5361902713775635,
+ 0.8063582181930542,
+ -0.48739200830459595,
+ 0.1354876309633255,
+ -0.464901328086853,
+ -0.06486708670854568,
+ 0.08317330479621887,
+ 1.1317763328552246,
+ 0.09120573103427887,
+ -0.05106175318360329,
+ -0.4203777015209198,
+ 0.583437979221344,
+ -0.1474492847919464,
+ 0.96079421043396,
+ -0.11360232532024384,
+ -0.2210947424173355,
+ 1.3567476272583008,
+ -1.0278228521347046,
+ -0.4205242693424225,
+ -0.42011234164237976,
+ 1.262687087059021,
+ 0.6340864300727844,
+ -0.42589789628982544,
+ 0.709236741065979,
+ -0.8554200530052185,
+ -0.7067936062812805,
+ -1.1954597234725952,
+ -0.37001746892929077,
+ -1.043225646018982,
+ 0.39496535062789917,
+ -0.5635604858398438,
+ -1.231162190437317,
+ 1.0804526805877686,
+ -1.0111374855041504,
+ -1.244443416595459,
+ -0.4558456540107727,
+ -0.1288895457983017,
+ -0.276689350605011,
+ -0.4348186254501343,
+ -0.48501819372177124,
+ 0.35655850172042847,
+ -0.24789273738861084,
+ -1.3014051914215088,
+ -0.5238114595413208,
+ -1.1336321830749512,
+ 0.2584800720214844,
+ 1.222370982170105,
+ 0.46755677461624146,
+ 0.03987320512533188,
+ -0.3167886435985565,
+ 0.7916288375854492,
+ 1.0499123334884644,
+ 0.08629779517650604,
+ 0.6454167366027832,
+ 0.5399527549743652,
+ 0.231400728225708,
+ -0.19741420447826385,
+ -0.7193862199783325,
+ -0.664237380027771,
+ -0.8274970054626465,
+ -1.0054619312286377,
+ -2.615903615951538,
+ -0.355501264333725,
+ 0.8101369142532349,
+ -1.112862229347229,
+ 1.1250512599945068,
+ 0.04380296915769577,
+ -0.5355510115623474,
+ 0.8141978979110718,
+ 0.2273421585559845,
+ 2.411942720413208,
+ -0.29772692918777466,
+ 1.7548918724060059,
+ 0.6450717449188232,
+ -0.5231031179428101,
+ 0.6953859925270081,
+ -0.24994228780269623,
+ -0.91136234998703,
+ -0.617256760597229,
+ 0.6991949677467346,
+ 1.327240228652954,
+ 0.9876296520233154,
+ -1.2432656288146973,
+ -0.8019497394561768,
+ 0.10211464017629623,
+ 0.12156353890895844,
+ 0.6789873838424683,
+ 0.4813557267189026,
+ 1.3754197359085083,
+ -1.4525516033172607,
+ 0.01076507568359375,
+ -0.2291313260793686,
+ -0.7138481736183167,
+ -0.3499983251094818,
+ -0.7053232192993164,
+ -0.8469081521034241,
+ 0.4868658781051636,
+ 0.9620042443275452,
+ 0.19240602850914001,
+ 1.5536692142486572,
+ -1.0731425285339355,
+ 0.7697941064834595,
+ -0.09776408970355988,
+ 0.771770715713501,
+ -0.950478196144104,
+ -0.43808484077453613,
+ -0.6330041885375977,
+ 0.027478769421577454,
+ -1.1198221445083618,
+ 1.0625088214874268,
+ 1.0965781211853027,
+ -0.0717913806438446,
+ 0.39946281909942627,
+ -1.015631079673767,
+ -0.9012815356254578,
+ -0.4571375250816345,
+ 0.33058691024780273,
+ -0.8861549496650696,
+ -0.8014983534812927,
+ 0.21450020372867584,
+ 2.216487169265747,
+ 0.27570784091949463,
+ -0.5389961004257202,
+ -0.656253457069397,
+ -0.36613181233406067,
+ -0.8833115100860596,
+ 0.3426589071750641,
+ 1.796047568321228,
+ 0.6921488642692566,
+ -0.4100458323955536,
+ 0.2242477536201477,
+ -0.7801303863525391,
+ 0.3242109417915344,
+ -0.33241063356399536,
+ 0.02690240740776062,
+ -0.013913188129663467,
+ -0.4776462912559509,
+ -1.3561077117919922,
+ -0.4279956519603729,
+ -0.7333151698112488,
+ 0.31472915410995483,
+ -0.24953725934028625,
+ 0.5652254223823547,
+ -0.15167780220508575,
+ -0.25192081928253174,
+ -1.0560028553009033,
+ -0.21050290763378143,
+ 0.061216339468955994,
+ -0.1295374482870102,
+ 0.16675755381584167,
+ -0.4212658405303955,
+ -0.11167018115520477,
+ 0.7440674901008606,
+ -1.0470837354660034,
+ -1.6701797246932983,
+ -0.6085694432258606,
+ 0.4312135875225067,
+ 0.0690804198384285,
+ -0.08778467774391174,
+ -0.5936286449432373,
+ -0.34233441948890686,
+ -0.9398186802864075,
+ 0.381174772977829,
+ -0.8495290875434875,
+ -0.0940491110086441,
+ -0.4818144142627716,
+ -0.08953647315502167,
+ 0.2593157887458801,
+ -0.8405922651290894,
+ 0.6629374623298645,
+ 0.1955162137746811,
+ 0.1454298198223114,
+ -0.025785261765122414,
+ 0.9592381715774536,
+ 0.20913323760032654,
+ -0.47430261969566345,
+ -0.31456029415130615,
+ -2.113438606262207,
+ -0.6462093591690063,
+ 0.7368265390396118,
+ -0.15933650732040405,
+ 0.24633696675300598,
+ -0.4956907331943512,
+ 0.0019341036677360535,
+ 2.400916337966919,
+ 0.8253662586212158,
+ -0.03883298859000206,
+ -0.10422854125499725,
+ 0.8390923142433167,
+ -1.0491929054260254,
+ 0.8971526622772217,
+ -0.48937541246414185,
+ -0.22965969145298004,
+ -0.09404195100069046,
+ -0.3946121633052826,
+ -0.33372730016708374,
+ -0.6332152485847473,
+ 1.1668812036514282,
+ -0.2911790609359741,
+ 0.05404336377978325,
+ -2.034228801727295,
+ -1.6648727655410767,
+ 0.13044443726539612,
+ -0.38621771335601807,
+ -0.3654915988445282,
+ -0.3187835216522217,
+ -1.1291850805282593,
+ -0.4397103190422058,
+ -0.6077961325645447,
+ -1.2435669898986816,
+ 1.3695743083953857,
+ 0.11212436854839325,
+ 0.17755460739135742,
+ 0.40657806396484375,
+ 0.7776767015457153,
+ 1.0479048490524292,
+ -1.421133279800415,
+ 1.2917633056640625,
+ -0.3786005675792694,
+ 0.2080942988395691,
+ 0.4856674373149872,
+ -0.15580329298973083,
+ 0.9102029204368591,
+ 0.34172338247299194,
+ -0.12027023732662201,
+ -0.20099467039108276,
+ 0.7442384362220764,
+ -0.6980656385421753,
+ -0.7644754648208618,
+ -0.2978762984275818,
+ -0.11293764412403107,
+ -0.4349578022956848,
+ 0.327421635389328,
+ 1.576087474822998,
+ -0.4092218279838562,
+ 0.04379108548164368,
+ 0.03420273959636688,
+ 0.20147393643856049,
+ -0.22538164258003235,
+ 0.3210230767726898,
+ -0.16799379885196686,
+ -0.5753143429756165,
+ 1.2202814817428589,
+ 0.21184895932674408,
+ 0.6399977803230286,
+ 0.9075164794921875,
+ 0.3518259823322296,
+ -0.626705527305603,
+ 0.6458835601806641,
+ -0.6930491328239441,
+ 0.32409894466400146,
+ -0.9988483190536499,
+ -0.13002729415893555,
+ 0.0037178480997681618,
+ 0.5203317999839783,
+ -0.3618774712085724,
+ -0.7585681676864624,
+ 0.3874315321445465,
+ -1.0660173892974854,
+ -0.19178177416324615,
+ -0.8368263840675354,
+ 0.5467897653579712,
+ 0.806594967842102,
+ -0.8471843600273132,
+ 0.38429901003837585,
+ -0.6282649040222168,
+ 0.5451405644416809,
+ -1.392585277557373,
+ -0.6917323470115662,
+ -0.3127017617225647,
+ 1.0305792093276978,
+ 2.6869053840637207,
+ -0.5942535400390625,
+ -0.4562682509422302,
+ 0.16733188927173615,
+ 1.4322806596755981,
+ 1.0660563707351685,
+ 0.4606284499168396,
+ 0.11908045411109924,
+ -0.3835204839706421,
+ 0.4298427700996399,
+ -0.2438810020685196,
+ 0.2894721031188965,
+ 0.6089097857475281,
+ 0.022913649678230286,
+ -0.4497259259223938,
+ 0.14997932314872742,
+ 0.7279915809631348,
+ -0.2243777960538864,
+ -1.8493047952651978,
+ 0.7288780212402344,
+ 0.4959881901741028,
+ -2.4635839462280273,
+ 0.03895246982574463,
+ 0.009082313627004623,
+ 0.5226433873176575,
+ -0.7808504700660706,
+ 0.4427449405193329,
+ 0.18367020785808563,
+ -0.3530638813972473,
+ -0.29005488753318787,
+ 0.9860130548477173,
+ 0.34954017400741577,
+ -0.5640704035758972,
+ 0.8846009373664856,
+ -0.46774575114250183,
+ -1.0175015926361084,
+ -0.31267374753952026,
+ 0.6673100590705872,
+ 0.7915659546852112,
+ -0.9270793795585632,
+ 0.5448321104049683,
+ -0.40282079577445984,
+ -0.2870030999183655,
+ -0.5242202877998352,
+ 0.056236300617456436,
+ -0.09964869171380997,
+ 0.6703274250030518,
+ 0.06337662041187286,
+ 0.08442959189414978,
+ 0.6251587867736816,
+ -0.5295478105545044,
+ -1.0047321319580078,
+ 0.694417417049408,
+ -0.45601868629455566,
+ 0.5641135573387146,
+ -0.5085741281509399,
+ -0.5510886907577515,
+ -1.2431191205978394,
+ 0.7427387237548828,
+ -4.331509113311768,
+ -0.3720147907733917,
+ 0.03662889823317528,
+ -1.0042343139648438,
+ -0.7077519297599792,
+ 0.5489276051521301,
+ -1.2729392051696777,
+ -1.8438910245895386,
+ 0.5158668756484985,
+ -0.6359973549842834,
+ -0.9299005270004272,
+ 0.12382693588733673,
+ -0.5148575901985168,
+ -0.6894108653068542,
+ -0.05351822078227997,
+ 1.7829632759094238,
+ 0.680237352848053,
+ -0.9681844115257263,
+ 0.994439959526062,
+ 1.4011411666870117,
+ -0.24469804763793945,
+ -0.2750265598297119,
+ 1.9852184057235718,
+ 0.20758754014968872,
+ -0.14168383181095123,
+ -0.4812907576560974,
+ -0.951324462890625,
+ 0.04132412374019623,
+ -0.9906700253486633,
+ -0.023234540596604347,
+ -1.413919448852539,
+ -1.5756123065948486,
+ 1.5529251098632812,
+ 1.0802427530288696,
+ 1.7844369411468506,
+ 0.6775560975074768,
+ 0.7920515537261963,
+ -0.9469727277755737,
+ -0.7679891586303711,
+ 0.031716227531433105,
+ 1.1218866109848022,
+ 0.15736311674118042,
+ -0.46766790747642517,
+ -0.16382814943790436,
+ 0.1373860239982605,
+ -0.440843403339386,
+ 1.0825759172439575,
+ 0.11194737255573273,
+ -0.5275046825408936,
+ -0.7421101331710815,
+ 0.16615326702594757,
+ 1.2533410787582397,
+ 1.1402071714401245,
+ 1.413284182548523,
+ 0.875525712966919,
+ -0.22438620030879974,
+ -1.4648008346557617,
+ 0.2807503640651703,
+ 0.15543043613433838,
+ 1.0774916410446167,
+ -0.3601548373699188,
+ -0.7052544355392456,
+ -1.3689391613006592,
+ -1.803846001625061,
+ -0.3914337158203125,
+ 0.22859790921211243,
+ -0.8767932653427124,
+ 1.5395630598068237,
+ 0.20058806240558624,
+ 0.39375558495521545,
+ -0.7847536206245422,
+ -0.2751844525337219,
+ 1.8019367456436157,
+ -0.38328254222869873,
+ 0.4079722762107849,
+ 1.2107911109924316,
+ 1.0159028768539429,
+ 0.12314951419830322,
+ -1.8415195941925049,
+ -1.232274055480957,
+ -1.6538546085357666,
+ -0.706527829170227,
+ 0.6907684206962585,
+ -0.31726035475730896,
+ 0.7364119291305542,
+ 0.10451790690422058,
+ -0.8974408507347107,
+ 0.6416257619857788,
+ -1.8367321491241455,
+ 1.0260370969772339,
+ -0.8460298180580139,
+ -1.3384703397750854,
+ 1.1164880990982056,
+ -0.7592101097106934,
+ -0.6469436883926392,
+ 0.4323679804801941,
+ 0.012395456433296204,
+ 0.6105943322181702,
+ -0.6230783462524414,
+ -0.43656566739082336,
+ -0.032769158482551575,
+ -0.8232318162918091,
+ 0.7213217616081238,
+ -0.9651532769203186,
+ -0.43624743819236755,
+ 0.1827995479106903,
+ 0.3150993585586548,
+ 0.013917967677116394,
+ 0.5133994817733765,
+ -0.09855583310127258,
+ -0.9756333231925964,
+ -0.5650590658187866,
+ 0.2891758382320404,
+ 0.7510110139846802,
+ -0.3861255943775177,
+ 0.3718799650669098,
+ 0.5659652352333069,
+ 0.25363507866859436,
+ -0.38692352175712585,
+ 0.5739138722419739,
+ 0.3707386553287506,
+ -0.6209375858306885,
+ 0.9553173184394836,
+ -1.4471964836120605,
+ 0.43265876173973083,
+ 1.2960392236709595,
+ 1.0968705415725708,
+ 0.8143960237503052,
+ 1.7509019374847412,
+ 0.09591654688119888,
+ 0.7854627370834351,
+ -1.0806738138198853,
+ 0.12753111124038696,
+ 0.12153975665569305,
+ 0.593445360660553,
+ -0.5221655368804932,
+ 0.5998564958572388,
+ 0.9637836217880249,
+ 0.036507442593574524,
+ -0.8440504670143127,
+ -0.12643086910247803,
+ -1.1977089643478394,
+ -1.1346921920776367,
+ 0.09554509818553925,
+ -0.7326434850692749,
+ 1.2121371030807495,
+ -0.9721323251724243,
+ 0.10119341313838959,
+ -1.2225886583328247,
+ -1.564713478088379,
+ 0.07561731338500977,
+ -0.7423096299171448,
+ 0.9966540336608887,
+ 0.2980094850063324,
+ 0.7911081314086914,
+ 1.320068359375,
+ -0.6498635411262512,
+ -0.21149630844593048,
+ 0.8345136642456055,
+ 0.4525744915008545,
+ 0.4664214253425598,
+ -0.59318608045578,
+ -0.4193880259990692,
+ 0.15215863287448883,
+ -0.5690128803253174,
+ 0.3226996660232544,
+ 0.20546939969062805,
+ -0.008258186280727386,
+ -0.8771496415138245,
+ -1.227306842803955,
+ -0.03679393231868744,
+ 0.5321334600448608,
+ -0.9614396095275879,
+ 0.22628852725028992,
+ 0.8360487818717957,
+ -1.1979756355285645,
+ 0.27442094683647156,
+ -0.3449440002441406,
+ 0.47488123178482056,
+ -1.265141248703003,
+ 0.42763829231262207,
+ 0.22719380259513855,
+ 0.17524544894695282,
+ 0.8281771540641785,
+ 0.5358161330223083,
+ 1.274943232536316,
+ -0.2688467502593994,
+ -0.021193359047174454,
+ 1.1652308702468872,
+ 0.9609987735748291,
+ -0.07182139903306961,
+ -0.9153579473495483,
+ 1.2045968770980835,
+ -0.14580760896205902,
+ 0.9659718871116638,
+ 0.35571929812431335,
+ -0.3838159739971161,
+ 0.8602787852287292,
+ -0.08733901381492615,
+ 0.2729824185371399,
+ -0.5464814901351929,
+ 0.7306375503540039,
+ 0.39308664202690125,
+ -0.600548267364502,
+ -0.7537272572517395,
+ 0.6307961940765381,
+ 0.40920376777648926,
+ -1.194748044013977,
+ -0.13380149006843567,
+ 0.04499161243438721,
+ -0.7829770445823669,
+ -0.799131453037262,
+ -0.31429174542427063,
+ 0.15477944910526276,
+ -1.6696534156799316,
+ 0.023903921246528625,
+ 1.0957825183868408,
+ -0.7024084329605103,
+ -0.48324960470199585,
+ 1.3216606378555298,
+ 0.9842947721481323,
+ 0.12716147303581238,
+ -0.5747900009155273,
+ 0.6724509000778198,
+ -0.4822416305541992,
+ 0.21193832159042358,
+ -0.8984500169754028,
+ 0.6408178806304932,
+ -0.4413185119628906,
+ -1.0683929920196533,
+ 0.2911289632320404,
+ 1.5338512659072876,
+ 0.3014269173145294,
+ 1.174635887145996,
+ 0.6988554000854492,
+ 1.3427690267562866,
+ -0.015492203645408154,
+ 0.6180448532104492,
+ -1.421924352645874,
+ -0.4002653956413269,
+ 0.16032129526138306,
+ -0.49544984102249146,
+ -0.06449179351329803,
+ 0.7669405341148376
+ ]
+ },
+ {
+ "key": 12,
+ "name": "Joe Goldberg",
+ "type": "movie",
+ "media": "You",
+ "label": [
+ "Controlling",
+ "Dedicated",
+ "Intense",
+ "Obsessive",
+ "Possessive"
+ ],
+ "embedding": [
+ -0.2794777452945709,
+ -0.09439855813980103,
+ -1.1260275840759277,
+ -0.177479088306427,
+ -1.6436399221420288,
+ -0.3820725083351135,
+ 0.9190888404846191,
+ -0.08985928446054459,
+ -0.004980325698852539,
+ 0.24710987508296967,
+ -0.052995070815086365,
+ -0.48163947463035583,
+ -0.18148554861545563,
+ -0.04506049305200577,
+ 1.0556485652923584,
+ 0.25010302662849426,
+ -0.2725479006767273,
+ 0.11310620605945587,
+ -1.1249983310699463,
+ -0.5437632203102112,
+ -0.4115227162837982,
+ -0.6504928469657898,
+ 0.6462692022323608,
+ 0.7715179324150085,
+ -0.45502400398254395,
+ 0.33466076850891113,
+ 1.297680377960205,
+ 0.21660372614860535,
+ -0.4586077034473419,
+ 0.25683364272117615,
+ 0.5045532584190369,
+ -0.6156025528907776,
+ 0.18944427371025085,
+ -1.4894391298294067,
+ 0.2773517072200775,
+ 0.21055540442466736,
+ 0.19602376222610474,
+ -0.8125901222229004,
+ -1.618597388267517,
+ 1.5632480382919312,
+ 0.9427652955055237,
+ -0.8359610438346863,
+ 0.45528411865234375,
+ -0.30793437361717224,
+ 0.9572809934616089,
+ -1.0786556005477905,
+ -0.3419700264930725,
+ -0.2982986569404602,
+ -1.1401433944702148,
+ 0.5786096453666687,
+ -0.3833249509334564,
+ 0.15218815207481384,
+ 1.6615862846374512,
+ -0.31860145926475525,
+ 0.6215350031852722,
+ 0.6441947817802429,
+ -0.7927815914154053,
+ -1.9027574062347412,
+ -0.5244486331939697,
+ -1.4424591064453125,
+ -1.4066742658615112,
+ 0.15067239105701447,
+ -0.6067581176757812,
+ 0.46837306022644043,
+ 1.0458656549453735,
+ 1.8595948219299316,
+ 0.5270257592201233,
+ 1.065767765045166,
+ 0.4257296323776245,
+ -0.4597482979297638,
+ -0.341002494096756,
+ 0.8983957171440125,
+ 0.5303086042404175,
+ 0.36767324805259705,
+ -2.3063628673553467,
+ 0.8954916000366211,
+ 1.2173930406570435,
+ -1.116882562637329,
+ 0.573498010635376,
+ 1.1346874237060547,
+ -0.21492446959018707,
+ -0.416423499584198,
+ 0.1518150120973587,
+ 0.3474816381931305,
+ -1.21708345413208,
+ 0.8914477229118347,
+ -0.021446574479341507,
+ -0.4649825096130371,
+ -0.522337019443512,
+ -0.3235086500644684,
+ -0.3158247172832489,
+ -0.3229352831840515,
+ -0.08356629312038422,
+ -0.7453753352165222,
+ -0.2752649784088135,
+ 0.12145908176898956,
+ -0.04403780773282051,
+ 0.005765557289123535,
+ 0.6629102230072021,
+ 0.6035016179084778,
+ 0.44388145208358765,
+ -0.6729129552841187,
+ -0.06773728132247925,
+ -0.09620632976293564,
+ -0.7463894486427307,
+ -1.1215167045593262,
+ 0.6356656551361084,
+ 1.3468765020370483,
+ -0.22684776782989502,
+ 0.02718023955821991,
+ 0.13442742824554443,
+ 0.7471885681152344,
+ 0.14965206384658813,
+ 0.6580447554588318,
+ 0.3651336431503296,
+ -0.5674037337303162,
+ -0.12360703200101852,
+ -0.8578120470046997,
+ 0.22726044058799744,
+ -0.5042340755462646,
+ 1.0735563039779663,
+ -0.15781745314598083,
+ 0.1573898047208786,
+ -0.4116036891937256,
+ 0.11781524121761322,
+ -0.5790631771087646,
+ -0.4772648215293884,
+ 0.16200660169124603,
+ -0.3513207733631134,
+ 0.08504249900579453,
+ 1.335873007774353,
+ 0.8394774198532104,
+ -0.7309930324554443,
+ -0.5608260631561279,
+ -1.2811933755874634,
+ -0.40520158410072327,
+ -0.013724315911531448,
+ 1.7055612802505493,
+ -0.9118013381958008,
+ -0.9919285178184509,
+ 0.5423746109008789,
+ 1.4301574230194092,
+ 0.8924496173858643,
+ -0.9580586552619934,
+ 0.32159122824668884,
+ -1.7082271575927734,
+ 0.36793261766433716,
+ 0.6514762043952942,
+ 0.5753254294395447,
+ -0.24777817726135254,
+ 0.09694691002368927,
+ 0.18873170018196106,
+ 1.3917665481567383,
+ 1.21040940284729,
+ 1.8706490993499756,
+ -1.362241268157959,
+ -1.5922802686691284,
+ 1.591546654701233,
+ 1.6261943578720093,
+ 0.08701533824205399,
+ -0.6154468059539795,
+ -0.4460429549217224,
+ 0.49689966440200806,
+ 0.14267142117023468,
+ 0.17833107709884644,
+ 0.10716469585895538,
+ 0.9965276718139648,
+ 1.6832695007324219,
+ 0.5785549283027649,
+ -0.3718654215335846,
+ -0.014064788818359375,
+ -1.0640355348587036,
+ 0.7063290476799011,
+ 0.7696914076805115,
+ -0.21005839109420776,
+ 0.47655218839645386,
+ 1.3946740627288818,
+ 0.41630420088768005,
+ -0.4304077923297882,
+ -1.1811416149139404,
+ -0.33022621273994446,
+ 0.7774946689605713,
+ -0.3985669016838074,
+ -1.3651903867721558,
+ -0.305001825094223,
+ -0.4511224031448364,
+ -0.23285861313343048,
+ -0.2176545113325119,
+ 0.34764787554740906,
+ 1.801526427268982,
+ -0.16866134107112885,
+ -0.5603198409080505,
+ 0.28777486085891724,
+ -0.36861589550971985,
+ 0.38380196690559387,
+ 0.11692073941230774,
+ -0.22550304234027863,
+ -0.8596850037574768,
+ 0.7653253674507141,
+ -1.147986650466919,
+ 0.8462000489234924,
+ 1.035402774810791,
+ 1.5442789793014526,
+ -1.1660796403884888,
+ -0.6513891816139221,
+ 0.2596481740474701,
+ -0.32578742504119873,
+ -0.96990567445755,
+ 1.2324382066726685,
+ -0.22389830648899078,
+ 0.31834155321121216,
+ 0.39332568645477295,
+ -0.046013012528419495,
+ -0.9651086926460266,
+ -1.4380056858062744,
+ -0.5902168154716492,
+ 0.7089793682098389,
+ 0.5968549847602844,
+ -0.21643297374248505,
+ -0.49987611174583435,
+ -0.7411777377128601,
+ 2.1443145275115967,
+ 0.39009395241737366,
+ 0.40385693311691284,
+ 0.008517444133758545,
+ 1.088240146636963,
+ 0.5163824558258057,
+ 2.032090902328491,
+ 1.2802743911743164,
+ 0.28936493396759033,
+ -0.1884150505065918,
+ -1.021791696548462,
+ -0.8056223392486572,
+ 0.1425457000732422,
+ 0.06491436064243317,
+ 0.14403961598873138,
+ -0.552858829498291,
+ 0.7379816174507141,
+ 1.3904699087142944,
+ -0.16139307618141174,
+ -0.3400164246559143,
+ -1.226206660270691,
+ 0.7042563557624817,
+ -0.4939081072807312,
+ -0.9015815258026123,
+ -0.024540433660149574,
+ 0.6873466968536377,
+ -0.26493918895721436,
+ -0.4143531322479248,
+ 0.21156948804855347,
+ 0.05587131530046463,
+ 0.5784119367599487,
+ -1.1216603517532349,
+ -0.16262777149677277,
+ 0.8339284658432007,
+ 0.30990728735923767,
+ 0.4397048056125641,
+ -0.07766375690698624,
+ -1.0277001857757568,
+ -0.3947605490684509,
+ 0.2540794312953949,
+ 1.8813096284866333,
+ 0.2653351128101349,
+ 0.5345020890235901,
+ 0.5719408392906189,
+ -0.8935757875442505,
+ 1.0352978706359863,
+ -0.42783692479133606,
+ 0.6702854633331299,
+ 0.48480063676834106,
+ 0.2592449188232422,
+ -0.3906548321247101,
+ 0.3415946662425995,
+ -0.7578091621398926,
+ -0.36546629667282104,
+ 0.17488442361354828,
+ -0.888601541519165,
+ -0.06499391794204712,
+ 1.058335304260254,
+ 0.46533632278442383,
+ 0.5893058180809021,
+ 0.5194410085678101,
+ 0.45414477586746216,
+ -0.7057745456695557,
+ 2.1397573947906494,
+ -0.3049660623073578,
+ -1.0324573516845703,
+ -1.3511872291564941,
+ -0.32823964953422546,
+ -1.7375556230545044,
+ -0.034552570432424545,
+ 0.2569320797920227,
+ 2.076183795928955,
+ 0.20843030512332916,
+ -1.9793152809143066,
+ -0.22474069893360138,
+ -1.6558871269226074,
+ -3.621560573577881,
+ 0.7825403809547424,
+ 0.03996673971414566,
+ 0.4212704002857208,
+ 0.6671445369720459,
+ -0.239663764834404,
+ -1.091744065284729,
+ 0.4208512604236603,
+ -1.0670256614685059,
+ -0.12609882652759552,
+ 0.7788143754005432,
+ -1.5652635097503662,
+ -0.0033598504960536957,
+ 0.18002824485301971,
+ 0.24129945039749146,
+ -1.161540150642395,
+ 0.420043408870697,
+ -0.09125199168920517,
+ -0.3302922546863556,
+ -0.9973369240760803,
+ 0.3617990016937256,
+ -0.6624733209609985,
+ 1.582685112953186,
+ 0.8852165937423706,
+ -0.20336592197418213,
+ 1.2811906337738037,
+ 1.3320257663726807,
+ -0.6415639519691467,
+ -1.5677974224090576,
+ -1.467112421989441,
+ -0.8795240521430969,
+ -0.16974332928657532,
+ -0.44079628586769104,
+ 0.992967963218689,
+ -0.1549849957227707,
+ 0.9765029549598694,
+ 0.6678264737129211,
+ 0.04200378805398941,
+ 1.3241541385650635,
+ -0.42742934823036194,
+ 1.2179436683654785,
+ 0.38991397619247437,
+ -0.48442915081977844,
+ 1.3813145160675049,
+ -0.20483258366584778,
+ 0.0032198454719036818,
+ 0.14434374868869781,
+ 0.5226569771766663,
+ 0.233972430229187,
+ -0.19963814318180084,
+ 0.725854754447937,
+ -0.06352357566356659,
+ 0.32089895009994507,
+ 0.37228792905807495,
+ -0.4672784209251404,
+ -0.5446919202804565,
+ -0.5188047885894775,
+ 0.26033660769462585,
+ -0.8024858832359314,
+ 0.2704908549785614,
+ -1.50954270362854,
+ -1.4341027736663818,
+ 0.4347693622112274,
+ 0.14939451217651367,
+ 0.05321640521287918,
+ -0.4158761501312256,
+ -0.21299947798252106,
+ -0.1775626540184021,
+ 1.0643666982650757,
+ -0.1851714700460434,
+ 0.7237101197242737,
+ -0.6139450669288635,
+ -0.013923639431595802,
+ 0.3047463893890381,
+ -0.09504662454128265,
+ 0.32017797231674194,
+ -0.214190274477005,
+ -0.7263068556785583,
+ -0.7149014472961426,
+ -1.9360737800598145,
+ -0.538842499256134,
+ 0.885504424571991,
+ -0.004228895530104637,
+ 0.9968952536582947,
+ -0.3715989887714386,
+ -0.8968296647071838,
+ 0.6853249669075012,
+ 1.0497647523880005,
+ 0.21062220633029938,
+ 5.803778171539307,
+ -0.48824161291122437,
+ 0.44416624307632446,
+ -0.3872915804386139,
+ 0.5496655106544495,
+ 0.609463632106781,
+ -1.095636248588562,
+ 1.0633206367492676,
+ -1.0030503273010254,
+ -0.3122446537017822,
+ 0.28167101740837097,
+ 0.9057586789131165,
+ -0.2861972451210022,
+ 0.5362222194671631,
+ -0.012325268238782883,
+ 1.4945935010910034,
+ -0.48982447385787964,
+ -1.1152698993682861,
+ 1.8493659496307373,
+ -1.292303204536438,
+ 0.36157986521720886,
+ -0.20857909321784973,
+ 0.7745440602302551,
+ -0.7770469784736633,
+ -0.37125253677368164,
+ -1.9687309265136719,
+ 0.563586413860321,
+ 0.6600592732429504,
+ -0.5995649099349976,
+ 0.5764973163604736,
+ 0.42916783690452576,
+ 0.5620598793029785,
+ 1.1416600942611694,
+ -0.4457453489303589,
+ -0.6504849791526794,
+ 0.3175674378871918,
+ -0.9409680962562561,
+ -0.18600907921791077,
+ -0.07238993048667908,
+ 0.6697574257850647,
+ -1.6381125450134277,
+ -0.6042600274085999,
+ -1.8011654615402222,
+ -0.10698068141937256,
+ 1.0300523042678833,
+ 0.8135761022567749,
+ 0.08157341927289963,
+ -0.12546797096729279,
+ 0.3041192889213562,
+ -1.6337212324142456,
+ 1.2973366975784302,
+ -1.1036005020141602,
+ 0.25709834694862366,
+ -0.0487729087471962,
+ 1.1753913164138794,
+ -0.7888281345367432,
+ -0.7090622186660767,
+ -0.23388148844242096,
+ -0.4749816358089447,
+ 1.9173784255981445,
+ 1.2793819904327393,
+ 1.0596956014633179,
+ -2.6013247966766357,
+ 0.5914732813835144,
+ 1.0283832550048828,
+ 1.0098727941513062,
+ -0.23726724088191986,
+ 0.3737144470214844,
+ 0.6482783555984497,
+ -0.024932384490966797,
+ 1.2135591506958008,
+ 0.5590499639511108,
+ -0.01970326527953148,
+ 0.2985234558582306,
+ 0.14795926213264465,
+ 0.3163118362426758,
+ -0.009146984666585922,
+ 0.17905668914318085,
+ 0.2540190815925598,
+ -0.16636282205581665,
+ 0.5221756100654602,
+ -1.2679243087768555,
+ -0.3462809920310974,
+ -0.9672197699546814,
+ 1.060585856437683,
+ 0.2538726329803467,
+ -0.005458761006593704,
+ 1.3853614330291748,
+ -0.7038589119911194,
+ -0.18729892373085022,
+ -1.2361434698104858,
+ 0.17442253232002258,
+ -1.3041105270385742,
+ 0.4026325047016144,
+ -0.919373095035553,
+ -0.5249800086021423,
+ 0.9751005172729492,
+ 0.07355862855911255,
+ -1.3838977813720703,
+ 0.022031694650650024,
+ 0.08159463852643967,
+ -0.5910821557044983,
+ -0.21236750483512878,
+ -0.2980966866016388,
+ 0.03444470837712288,
+ -1.5360002517700195,
+ -0.9356406331062317,
+ -0.32506999373435974,
+ -0.8528568744659424,
+ -0.08573879301548004,
+ 0.7010958790779114,
+ 0.9384605288505554,
+ -0.5694783926010132,
+ -0.5694339871406555,
+ 0.3319545090198517,
+ 0.41863614320755005,
+ -0.5282105803489685,
+ 0.7237009406089783,
+ 0.06950853765010834,
+ 0.3736158013343811,
+ -0.4767281711101532,
+ 0.2848498821258545,
+ -0.6956625580787659,
+ -0.519530713558197,
+ -0.6524582505226135,
+ -2.5361294746398926,
+ 0.1795947253704071,
+ 0.48991766571998596,
+ -0.5869964957237244,
+ 0.6142055988311768,
+ -0.43926748633384705,
+ -0.23740366101264954,
+ 1.2864865064620972,
+ 0.2750582993030548,
+ 1.48959219455719,
+ -0.6482155323028564,
+ 1.8887079954147339,
+ 0.1544901579618454,
+ 0.8720363974571228,
+ 0.5455766916275024,
+ -0.026954103261232376,
+ -0.5982988476753235,
+ -0.5713716149330139,
+ 1.0399363040924072,
+ 1.367425799369812,
+ -0.17798054218292236,
+ -0.18331025540828705,
+ -0.6646459102630615,
+ -0.04519415274262428,
+ 1.074222445487976,
+ 0.6892544031143188,
+ 0.3057922124862671,
+ 0.10329630225896835,
+ -1.1010268926620483,
+ 0.13283699750900269,
+ -0.8926920294761658,
+ -0.47378668189048767,
+ -0.6787042617797852,
+ -1.2910733222961426,
+ -1.0997393131256104,
+ 0.4607841372489929,
+ 0.4088996648788452,
+ -0.2636871933937073,
+ 0.9877762794494629,
+ -1.0545780658721924,
+ 0.1943664848804474,
+ 0.7754597663879395,
+ 1.136730670928955,
+ -0.26251232624053955,
+ -0.23657144606113434,
+ -0.13724026083946228,
+ 0.034909315407276154,
+ -0.4917716383934021,
+ -0.20099438726902008,
+ -0.08146744221448898,
+ -0.2306462526321411,
+ -0.21928076446056366,
+ -0.9991415143013,
+ 0.2198544442653656,
+ -1.1017132997512817,
+ 0.6252277493476868,
+ -1.4512221813201904,
+ -1.1043038368225098,
+ -0.14415518939495087,
+ 1.6732220649719238,
+ -0.1385650336742401,
+ 0.31511738896369934,
+ -0.509177565574646,
+ 0.0005421098321676254,
+ -0.6368162631988525,
+ -0.02145007625222206,
+ 2.40641188621521,
+ 0.3143949508666992,
+ -0.2414597123861313,
+ 0.40574437379837036,
+ 1.255903720855713,
+ 0.5360991358757019,
+ -0.07890469580888748,
+ 0.4948311448097229,
+ -0.20330093801021576,
+ -0.002391587942838669,
+ -0.6472479701042175,
+ 0.1003507673740387,
+ -1.0462664365768433,
+ 0.45213934779167175,
+ 0.4344823360443115,
+ -0.4580773711204529,
+ 0.21855826675891876,
+ -0.02237512916326523,
+ -0.8739748597145081,
+ -0.0574069619178772,
+ -0.026118846610188484,
+ -0.7344875931739807,
+ -0.018985457718372345,
+ -0.810822069644928,
+ -0.2694588899612427,
+ 0.6541750431060791,
+ -0.013229072093963623,
+ -1.3373024463653564,
+ -0.03465387225151062,
+ 0.6583127975463867,
+ -0.3746695816516876,
+ 0.18958477675914764,
+ -1.0883103609085083,
+ -1.03555428981781,
+ -0.9662516713142395,
+ 0.3330095112323761,
+ -1.6008466482162476,
+ 0.37272748351097107,
+ 0.130764901638031,
+ 0.16848774254322052,
+ -0.8140654563903809,
+ -0.8109018802642822,
+ 0.17895235121250153,
+ -0.09969665110111237,
+ 0.2780250608921051,
+ 0.21414728462696075,
+ 1.0113765001296997,
+ 0.6180071830749512,
+ -1.2918521165847778,
+ -0.08305162191390991,
+ -1.9069844484329224,
+ -0.6694428324699402,
+ 1.6756260395050049,
+ -0.0343501940369606,
+ -0.3790178596973419,
+ -0.53472501039505,
+ -0.19742825627326965,
+ 1.8454760313034058,
+ 0.8324853777885437,
+ -0.08035308867692947,
+ -0.3782474398612976,
+ 0.9588450193405151,
+ -0.8812059760093689,
+ 0.14814139902591705,
+ -0.9942069053649902,
+ -0.2524358332157135,
+ -0.5534876585006714,
+ 0.39358729124069214,
+ -0.1830720603466034,
+ -0.6058235168457031,
+ 0.7209355235099792,
+ -0.4821620285511017,
+ -0.4095904231071472,
+ -2.274954080581665,
+ -1.2295539379119873,
+ 0.23093411326408386,
+ -0.26613783836364746,
+ -0.11136699467897415,
+ -1.4937310218811035,
+ -0.8040909171104431,
+ -0.0350898914039135,
+ -0.5760062336921692,
+ -1.0524985790252686,
+ 2.095900297164917,
+ -0.09159025549888611,
+ -0.20651592314243317,
+ -0.07421725988388062,
+ 0.4972516894340515,
+ 0.8387566208839417,
+ -0.6432991027832031,
+ 0.7739241123199463,
+ 0.2459608018398285,
+ 0.6721887588500977,
+ 0.4584141671657562,
+ -0.4371541142463684,
+ 1.5859473943710327,
+ 1.2823792695999146,
+ -0.3067020773887634,
+ -0.5723453164100647,
+ 0.8611689805984497,
+ -0.9098851084709167,
+ -1.291906476020813,
+ 0.11727112531661987,
+ -0.40774476528167725,
+ -0.7742336392402649,
+ -0.2450292706489563,
+ 0.833653450012207,
+ 0.0267367884516716,
+ -0.2281312644481659,
+ -0.18383967876434326,
+ 0.6579286456108093,
+ -1.0948600769042969,
+ -0.3894749879837036,
+ 0.25785040855407715,
+ -1.025512456893921,
+ 1.3816734552383423,
+ -0.8244850039482117,
+ 0.19292397797107697,
+ 0.8919260501861572,
+ 0.3372521996498108,
+ -0.09667523950338364,
+ 0.33082130551338196,
+ 0.01488514244556427,
+ 0.7255395650863647,
+ 0.1018674224615097,
+ -0.08764342963695526,
+ -0.4823410212993622,
+ 0.4459013342857361,
+ -0.42816996574401855,
+ -0.7820873856544495,
+ 0.6917135715484619,
+ -0.359655499458313,
+ 0.12859459221363068,
+ -0.6721444129943848,
+ 0.27204275131225586,
+ 0.6317768096923828,
+ -0.3155943751335144,
+ -0.08831169456243515,
+ -0.5202123522758484,
+ -0.2316884696483612,
+ -1.1321516036987305,
+ -0.7867083549499512,
+ 0.13733907043933868,
+ 0.6389009952545166,
+ 1.1832116842269897,
+ 0.00851762667298317,
+ 0.43101766705513,
+ 1.2202787399291992,
+ 0.8975185751914978,
+ 0.7406736016273499,
+ -1.1269513368606567,
+ 0.23342496156692505,
+ -0.9095037579536438,
+ 0.07381153851747513,
+ 0.24382232129573822,
+ -0.23776370286941528,
+ -0.1276303380727768,
+ -0.31929558515548706,
+ 0.13301989436149597,
+ -0.15929098427295685,
+ -0.7366763353347778,
+ 0.13484320044517517,
+ -1.3008588552474976,
+ 0.5518168807029724,
+ 0.4482724368572235,
+ -1.2123769521713257,
+ 0.664013147354126,
+ 0.8927981853485107,
+ -0.6333164572715759,
+ -0.461489200592041,
+ -0.6050440669059753,
+ -0.14450384676456451,
+ -0.42002540826797485,
+ -0.546486496925354,
+ 1.3887344598770142,
+ 0.2427542358636856,
+ -1.5163776874542236,
+ 1.35696280002594,
+ 0.10432922840118408,
+ -0.9157387018203735,
+ -1.5274184942245483,
+ 0.7907833456993103,
+ 0.5617536902427673,
+ -1.0973213911056519,
+ 1.0396771430969238,
+ -0.11311640590429306,
+ -0.5924795866012573,
+ -0.41654661297798157,
+ -0.2492862045764923,
+ -0.5025945901870728,
+ -0.07801748067140579,
+ -0.08626049757003784,
+ 0.02942955493927002,
+ 0.35824668407440186,
+ -0.8362764120101929,
+ -1.3250876665115356,
+ 0.5613968372344971,
+ 0.27390968799591064,
+ 0.05835297703742981,
+ -0.670549750328064,
+ -0.010248284786939621,
+ -1.3150641918182373,
+ 0.8714597225189209,
+ -4.632575511932373,
+ 0.017911553382873535,
+ -0.380962997674942,
+ -0.7190610766410828,
+ -0.854935348033905,
+ 0.3138566017150879,
+ -0.6081640124320984,
+ -1.3988906145095825,
+ -0.31617844104766846,
+ 0.00025471393018960953,
+ -1.3140904903411865,
+ -0.5676759481430054,
+ -0.5375677347183228,
+ -0.7630541920661926,
+ 0.10871826857328415,
+ 1.4907108545303345,
+ 0.3436969816684723,
+ -1.3384790420532227,
+ 0.3848452866077423,
+ 1.6746251583099365,
+ -0.5151696801185608,
+ 0.28979891538619995,
+ 1.877115249633789,
+ 0.33552446961402893,
+ -0.036866627633571625,
+ -1.2655816078186035,
+ -0.6653528809547424,
+ 0.47926682233810425,
+ -1.2456532716751099,
+ -0.7907599210739136,
+ 0.19894984364509583,
+ -1.626977562904358,
+ 1.3975110054016113,
+ 2.0534210205078125,
+ 1.3551515340805054,
+ 1.1117087602615356,
+ 0.2779574692249298,
+ -0.3514256775379181,
+ -0.6893568634986877,
+ 0.12225461006164551,
+ 0.41132158041000366,
+ -0.16734106838703156,
+ -0.09610478579998016,
+ -0.6914492845535278,
+ 0.361987441778183,
+ 0.4462539255619049,
+ 0.9867472648620605,
+ -0.35872045159339905,
+ -0.08418967574834824,
+ 0.11191349476575851,
+ 0.4453100562095642,
+ 0.8387613892555237,
+ 0.032861001789569855,
+ 1.6716138124465942,
+ 0.5913168787956238,
+ -0.7382065653800964,
+ -0.38385021686553955,
+ 0.6447728872299194,
+ -0.17278891801834106,
+ 1.2724288702011108,
+ -0.2674897015094757,
+ -0.29171305894851685,
+ -1.0815473794937134,
+ -1.6788430213928223,
+ -0.6400815844535828,
+ 0.5559529662132263,
+ -1.5159497261047363,
+ -0.35528963804244995,
+ -0.5064504146575928,
+ 0.5730888843536377,
+ -0.15133048593997955,
+ -1.0737115144729614,
+ 0.6162236928939819,
+ -0.46849238872528076,
+ 0.9048782587051392,
+ 0.43412160873413086,
+ 0.9579461216926575,
+ -0.24071630835533142,
+ -1.2006423473358154,
+ -1.1655441522598267,
+ -1.7064217329025269,
+ -0.7993865013122559,
+ 0.13491669297218323,
+ -0.41671985387802124,
+ 1.0460054874420166,
+ 0.13315318524837494,
+ -0.29790306091308594,
+ 0.41574469208717346,
+ -1.145368218421936,
+ 0.4276655912399292,
+ -1.0747549533843994,
+ -1.1066747903823853,
+ 0.6885587573051453,
+ -0.3073072135448456,
+ -1.263749361038208,
+ 0.7386751770973206,
+ 0.16784536838531494,
+ 0.22772271931171417,
+ -0.5897473096847534,
+ -0.2774672508239746,
+ -0.5849353671073914,
+ -1.1686079502105713,
+ 0.16048355400562286,
+ -1.1663222312927246,
+ -0.563278079032898,
+ 0.749650239944458,
+ 0.7892339825630188,
+ -0.4635758101940155,
+ 0.18107375502586365,
+ -0.253396213054657,
+ -0.030624886974692345,
+ -0.5405085682868958,
+ -0.31884220242500305,
+ 0.9217460751533508,
+ -0.6778275966644287,
+ 0.0227960292249918,
+ 0.7141785025596619,
+ -0.23731902241706848,
+ 0.3109067380428314,
+ 0.6497856378555298,
+ 0.14740978181362152,
+ 0.11096686124801636,
+ 0.33738988637924194,
+ -1.3805890083312988,
+ -0.2611619234085083,
+ 1.093981146812439,
+ 1.5610716342926025,
+ 0.9274659156799316,
+ 0.8315005302429199,
+ -0.506838321685791,
+ 1.1855900287628174,
+ -1.558674693107605,
+ 0.11165022850036621,
+ -0.005305083468556404,
+ 0.493321031332016,
+ -0.6136860251426697,
+ 0.7914201021194458,
+ 1.3835231065750122,
+ -0.17389439046382904,
+ -1.2605557441711426,
+ -0.5322794318199158,
+ -0.5218867063522339,
+ -0.9392040371894836,
+ -0.1862454116344452,
+ 0.09654529392719269,
+ -0.0669456273317337,
+ -0.9763305187225342,
+ 1.1772732734680176,
+ -1.6392117738723755,
+ -1.1780507564544678,
+ -0.5519667267799377,
+ -0.05237358808517456,
+ 1.0487126111984253,
+ 0.39486363530158997,
+ 0.9300374984741211,
+ 1.2357263565063477,
+ -0.4221895933151245,
+ -0.05459802597761154,
+ 1.1141493320465088,
+ 0.026908710598945618,
+ 0.2705458104610443,
+ 0.28412577509880066,
+ -0.4514460861682892,
+ -0.23770132660865784,
+ -0.452388733625412,
+ 0.6414908170700073,
+ -0.237077534198761,
+ -0.0312192402780056,
+ -1.4785889387130737,
+ -0.6541747450828552,
+ 0.40748944878578186,
+ 0.7047348618507385,
+ -0.6141327619552612,
+ 0.5814952254295349,
+ 0.8399262428283691,
+ -0.800889790058136,
+ 0.2971971035003662,
+ 0.39539971947669983,
+ -0.05323079228401184,
+ -1.3851549625396729,
+ 0.5378325581550598,
+ 0.003514127805829048,
+ 0.24016880989074707,
+ 0.1988849639892578,
+ 0.1460135132074356,
+ 0.8803980350494385,
+ -0.5756483674049377,
+ 0.3438805341720581,
+ 0.5824632048606873,
+ 0.6479765772819519,
+ 1.0856810808181763,
+ -0.33034029603004456,
+ 1.0593403577804565,
+ -0.26181620359420776,
+ 1.1602017879486084,
+ 0.9328069686889648,
+ -0.18139320611953735,
+ 0.8941645622253418,
+ 0.2461819350719452,
+ 0.33868545293807983,
+ 0.2511044144630432,
+ 0.2925826907157898,
+ 0.07148221135139465,
+ -1.1407110691070557,
+ -1.5480339527130127,
+ 0.1400344967842102,
+ 0.527466893196106,
+ 0.09976650774478912,
+ -0.2717832326889038,
+ -0.2766810655593872,
+ -1.3748847246170044,
+ -0.27684417366981506,
+ -0.6089068055152893,
+ 0.30120405554771423,
+ -0.8674398064613342,
+ -0.7519531846046448,
+ 0.913841724395752,
+ -0.023749785497784615,
+ -0.5166929364204407,
+ 0.34602561593055725,
+ 0.8153656125068665,
+ 0.5307559967041016,
+ -1.1899731159210205,
+ -0.27167659997940063,
+ -0.7921703457832336,
+ 0.022745512425899506,
+ 0.31761035323143005,
+ 0.19597506523132324,
+ -0.7833255529403687,
+ -0.3322829604148865,
+ 0.6994544863700867,
+ 1.43413507938385,
+ 0.3153872489929199,
+ 0.9139402508735657,
+ 1.1100239753723145,
+ -0.09972327202558517,
+ -0.1317032277584076,
+ 0.6009299755096436,
+ -1.587039589881897,
+ 0.049063026905059814,
+ 1.5250048637390137,
+ 0.1589445173740387,
+ -0.04032765328884125,
+ 0.9255164861679077
+ ]
+ },
+ {
+ "key": 13,
+ "name": "Marilyn Monroe",
+ "type": "movie",
+ "media": "Blonde",
+ "label": [
+ "Emotional",
+ "Passionate",
+ "Romantic",
+ "Sensual",
+ "Vulnerable"
+ ],
+ "embedding": [
+ -0.4468565285205841,
+ 0.18641695380210876,
+ 0.018102802336215973,
+ -0.21443411707878113,
+ -1.0818758010864258,
+ -0.9439477920532227,
+ 0.7940338850021362,
+ -0.23888260126113892,
+ -0.7216002941131592,
+ -0.23999476432800293,
+ 0.09450089931488037,
+ -0.03945544362068176,
+ -0.8846684694290161,
+ -0.7099126577377319,
+ 1.9100569486618042,
+ 1.0458542108535767,
+ 0.5347225666046143,
+ 0.2824610471725464,
+ -0.5041768550872803,
+ -0.21100620925426483,
+ -0.782520055770874,
+ 0.6868687272071838,
+ -0.8183022737503052,
+ -0.07791182398796082,
+ -1.3199963569641113,
+ -0.03017142042517662,
+ 0.5369463562965393,
+ -0.5391659140586853,
+ -1.4149301052093506,
+ 0.9997847080230713,
+ 0.6448715329170227,
+ -1.090477705001831,
+ -0.14928355813026428,
+ -1.25503408908844,
+ -0.49336153268814087,
+ -0.5023963451385498,
+ -1.0133295059204102,
+ 0.5035862326622009,
+ -1.2686045169830322,
+ 1.0775980949401855,
+ 0.8063651919364929,
+ -1.4757074117660522,
+ 1.122084140777588,
+ -0.5850836038589478,
+ 0.5732725858688354,
+ -0.5931684970855713,
+ -0.3733082711696625,
+ -0.5798655152320862,
+ -0.39850911498069763,
+ -0.17065514624118805,
+ -1.3578686714172363,
+ 0.5232046842575073,
+ 0.9676023721694946,
+ -0.5558862686157227,
+ 0.5474838614463806,
+ 0.11367382109165192,
+ 0.34147539734840393,
+ -0.992781400680542,
+ -1.9932290315628052,
+ -1.8245317935943604,
+ -1.541513442993164,
+ 0.08758886158466339,
+ 0.026293739676475525,
+ -0.15415705740451813,
+ 0.5902070999145508,
+ 1.8433374166488647,
+ 0.3711968660354614,
+ 0.49801337718963623,
+ 0.5289260149002075,
+ -0.9683805108070374,
+ -0.40374404191970825,
+ 0.46826374530792236,
+ -0.7669209241867065,
+ 0.5090984106063843,
+ -1.6148465871810913,
+ 0.20144131779670715,
+ 0.6980600357055664,
+ -0.24648311734199524,
+ 0.10189315676689148,
+ 0.7131574153900146,
+ 0.000271105847787112,
+ 0.6659096479415894,
+ 0.43768712878227234,
+ 0.33748120069503784,
+ -0.40926608443260193,
+ 1.641220211982727,
+ -0.012843186035752296,
+ -0.33673596382141113,
+ -0.052044350653886795,
+ -1.213980793952942,
+ -0.37353652715682983,
+ 0.9372626543045044,
+ -0.02868950180709362,
+ -0.5693227052688599,
+ -0.3081006705760956,
+ 0.9768374562263489,
+ -0.7592084407806396,
+ 0.09774309396743774,
+ 1.2846510410308838,
+ 0.8308641314506531,
+ 0.06927140057086945,
+ -0.30039405822753906,
+ -0.9059064388275146,
+ -0.1991567611694336,
+ -0.15340131521224976,
+ -0.19469989836215973,
+ 0.540266752243042,
+ 0.8092646598815918,
+ 0.1449478566646576,
+ 0.07455621659755707,
+ 0.40495264530181885,
+ -0.05177871137857437,
+ -0.003134598955512047,
+ 0.9264348745346069,
+ 0.3542288541793823,
+ -0.10042819380760193,
+ 0.35775646567344666,
+ 0.16577064990997314,
+ -0.05154307559132576,
+ -0.16997061669826508,
+ -0.1824530065059662,
+ -0.2507041096687317,
+ -0.7327736020088196,
+ -0.49685001373291016,
+ -0.17404480278491974,
+ -0.2725870609283447,
+ -0.9419065117835999,
+ 0.7427749037742615,
+ -0.7062357664108276,
+ 1.2828450202941895,
+ 1.7928944826126099,
+ 0.20424875617027283,
+ -0.2548818588256836,
+ -0.4426427483558655,
+ -0.14788953959941864,
+ -0.2345699965953827,
+ -0.3975370228290558,
+ 0.823886513710022,
+ 0.8435112833976746,
+ -0.9641470313072205,
+ 0.7389652132987976,
+ 1.2616537809371948,
+ -0.01619725301861763,
+ -0.6405175924301147,
+ 0.8843823075294495,
+ -2.446739673614502,
+ 0.938447892665863,
+ 0.4479663372039795,
+ 0.19375407695770264,
+ 0.14543044567108154,
+ 0.9885481595993042,
+ -0.6420446634292603,
+ 1.7753256559371948,
+ 0.40649300813674927,
+ 0.08546459674835205,
+ -0.6791074872016907,
+ -0.5821022987365723,
+ 0.5045384764671326,
+ 1.3974847793579102,
+ -0.576817512512207,
+ 0.2752591669559479,
+ -0.43604403734207153,
+ -1.11532723903656,
+ 0.3046377897262573,
+ 0.3600660264492035,
+ 0.012165986001491547,
+ 0.9758411645889282,
+ 0.7089186906814575,
+ -0.19689366221427917,
+ -0.33988291025161743,
+ 0.7075335383415222,
+ -1.9110511541366577,
+ 0.0541958212852478,
+ 0.2417788803577423,
+ 0.40984904766082764,
+ 0.19414767622947693,
+ 1.8812141418457031,
+ 0.25071829557418823,
+ 1.1457279920578003,
+ -1.421112060546875,
+ -0.13896077871322632,
+ 0.7955705523490906,
+ -0.6146866083145142,
+ 0.22888705134391785,
+ -0.560172438621521,
+ -0.21585167944431305,
+ -0.4817750155925751,
+ -0.4403271973133087,
+ -0.021315596997737885,
+ 0.9564597606658936,
+ 0.6335381865501404,
+ -1.1366286277770996,
+ -0.5469751358032227,
+ -0.5239015221595764,
+ 1.248017430305481,
+ -0.7100070118904114,
+ 0.5544416308403015,
+ -1.1551066637039185,
+ 0.12852105498313904,
+ -1.4633657932281494,
+ -0.01851315051317215,
+ 0.5814331769943237,
+ 0.7683253884315491,
+ -0.8633332252502441,
+ -1.1900877952575684,
+ 0.15853005647659302,
+ -0.26252681016921997,
+ -0.7982490658760071,
+ 1.360275387763977,
+ -0.9367289543151855,
+ 0.3332480490207672,
+ -0.22858449816703796,
+ -0.5798325538635254,
+ -1.0053282976150513,
+ -1.4936870336532593,
+ -0.783588707447052,
+ 0.24504661560058594,
+ 0.5750672221183777,
+ -0.12052638828754425,
+ -0.3411029577255249,
+ -0.6860087513923645,
+ 0.7856913805007935,
+ 0.8637088537216187,
+ 0.3588835597038269,
+ 0.3966485261917114,
+ 1.2974661588668823,
+ 0.2600225806236267,
+ 1.9195913076400757,
+ 0.5518960952758789,
+ 0.5508645176887512,
+ -0.2198556512594223,
+ 0.29681336879730225,
+ 0.5913352966308594,
+ -0.039824411273002625,
+ 0.4841530919075012,
+ -0.005971741862595081,
+ -1.3037654161453247,
+ 0.4539714455604553,
+ 0.8783628344535828,
+ -0.04574889689683914,
+ 0.1719626784324646,
+ -1.353494644165039,
+ 1.3707520961761475,
+ -0.8618671298027039,
+ -0.9946458339691162,
+ 0.8842275738716125,
+ 1.3126875162124634,
+ 0.012926551513373852,
+ -0.5005050897598267,
+ -0.35109928250312805,
+ 0.11085456609725952,
+ -0.2682086229324341,
+ -1.099523901939392,
+ -1.0627635717391968,
+ 0.46219366788864136,
+ 0.09994831681251526,
+ 0.1138659119606018,
+ -0.03628411516547203,
+ -0.3859684467315674,
+ 0.437864750623703,
+ 0.18677741289138794,
+ 1.4581093788146973,
+ 0.319454163312912,
+ 0.6555742025375366,
+ 0.4808626174926758,
+ 0.015120670199394226,
+ 0.2768070101737976,
+ -0.17402337491512299,
+ 0.9831240177154541,
+ -0.16987000405788422,
+ 0.11223601549863815,
+ 0.2675887644290924,
+ 0.7710784673690796,
+ -0.5082967281341553,
+ -0.12234105914831161,
+ 0.7458075284957886,
+ -1.064031720161438,
+ 0.207174152135849,
+ 0.8420083522796631,
+ 0.6223703622817993,
+ 0.9199627637863159,
+ 1.5996146202087402,
+ -0.642168402671814,
+ -0.10522114485502243,
+ 1.9527301788330078,
+ -0.952076256275177,
+ 0.018999755382537842,
+ -0.1557241678237915,
+ 0.8567856550216675,
+ -1.5653941631317139,
+ 0.5424789786338806,
+ 0.08654201030731201,
+ 1.8642821311950684,
+ 0.007885325700044632,
+ -1.5427757501602173,
+ -0.22039683163166046,
+ -0.6192580461502075,
+ -3.583400249481201,
+ 0.13881824910640717,
+ -0.9392476081848145,
+ 0.2897826135158539,
+ 0.12905430793762207,
+ 0.2711746394634247,
+ -1.640326738357544,
+ -0.18016378581523895,
+ -0.6859550476074219,
+ -0.25292783975601196,
+ 0.35647085309028625,
+ -1.3161797523498535,
+ -0.15515932440757751,
+ 0.37979039549827576,
+ -0.3266147971153259,
+ -1.0888272523880005,
+ 0.09092102944850922,
+ 0.3686496615409851,
+ 0.5582475066184998,
+ -0.9084905982017517,
+ 0.12511186301708221,
+ 0.0017530247569084167,
+ 0.9036439061164856,
+ 1.0527864694595337,
+ -0.1584804505109787,
+ 0.01290917955338955,
+ 1.0128189325332642,
+ 0.00889410451054573,
+ -1.562800645828247,
+ -0.4907014071941376,
+ -1.037067174911499,
+ 0.6946051120758057,
+ -0.4794481694698334,
+ 1.129801630973816,
+ 0.31009408831596375,
+ 1.183864712715149,
+ -0.29717862606048584,
+ 0.30073317885398865,
+ 1.1979315280914307,
+ -0.437767893075943,
+ 1.6465122699737549,
+ 0.9062814116477966,
+ -0.5645533204078674,
+ -0.13496744632720947,
+ -0.5038242936134338,
+ 0.11927708983421326,
+ -0.26093316078186035,
+ 0.7970309257507324,
+ -0.662527859210968,
+ -1.3166435956954956,
+ 0.16767765581607819,
+ -0.4429490566253662,
+ -0.5251743197441101,
+ -0.08044010400772095,
+ -1.1874048709869385,
+ -0.04890511929988861,
+ -1.52379310131073,
+ -0.40000420808792114,
+ 0.6795071363449097,
+ 0.5053863525390625,
+ -1.2728887796401978,
+ -1.6421146392822266,
+ 0.41883113980293274,
+ -0.9534903764724731,
+ -1.0262383222579956,
+ -0.20285406708717346,
+ -0.05681801587343216,
+ -0.041886601597070694,
+ 1.272520899772644,
+ -0.2486366331577301,
+ 0.16960246860980988,
+ 0.5133150219917297,
+ 0.5327672958374023,
+ -0.5481019616127014,
+ -0.386893093585968,
+ 0.06022481247782707,
+ 0.03254542127251625,
+ 0.2358211874961853,
+ -0.5986169576644897,
+ -1.0922998189926147,
+ -0.13932597637176514,
+ 0.6650976538658142,
+ -0.04573958367109299,
+ 1.0217018127441406,
+ -0.5707756280899048,
+ -1.3307641744613647,
+ 1.3898131847381592,
+ 0.0703144446015358,
+ 0.4077101945877075,
+ 5.991342544555664,
+ -0.13280925154685974,
+ 0.3883739709854126,
+ 1.269776463508606,
+ 1.4979135990142822,
+ -1.2426176071166992,
+ 0.04225458204746246,
+ 0.14977988600730896,
+ -0.5849177241325378,
+ -0.03577775880694389,
+ 0.31682828068733215,
+ 1.5250635147094727,
+ -0.10625725984573364,
+ 0.09755274653434753,
+ 0.11992049217224121,
+ 1.8067851066589355,
+ -1.1056621074676514,
+ -0.22885149717330933,
+ 1.3884530067443848,
+ -0.19542208313941956,
+ -0.03778140991926193,
+ 0.26765474677085876,
+ 0.5589059591293335,
+ -0.025453269481658936,
+ -1.002396583557129,
+ -0.5047197341918945,
+ -0.06923452019691467,
+ 0.9005128145217896,
+ -1.1528832912445068,
+ 0.5386587977409363,
+ -0.4218921363353729,
+ 0.7076114416122437,
+ 1.9630976915359497,
+ 0.738615870475769,
+ 0.1638835370540619,
+ 0.048867613077163696,
+ -1.0983322858810425,
+ -0.6904776096343994,
+ -1.1505587100982666,
+ 1.2863308191299438,
+ -0.6198064684867859,
+ -0.5697965621948242,
+ -0.9363353848457336,
+ -0.17905254662036896,
+ 0.34642893075942993,
+ 0.40298569202423096,
+ 0.07450287789106369,
+ -0.9004195332527161,
+ 0.4094584286212921,
+ -0.723577082157135,
+ -0.11343112587928772,
+ -1.1525156497955322,
+ 0.38597846031188965,
+ -0.055677201598882675,
+ 1.7874337434768677,
+ 0.22250765562057495,
+ -0.6585627198219299,
+ 0.26026856899261475,
+ 0.19622525572776794,
+ 2.45668888092041,
+ 0.8310490250587463,
+ 0.543457567691803,
+ -2.9274206161499023,
+ 0.5424341559410095,
+ 0.25505751371383667,
+ 1.6732689142227173,
+ -0.10392821580171585,
+ 0.22757747769355774,
+ -0.5662532448768616,
+ 0.90756756067276,
+ -0.5080263018608093,
+ 1.070745587348938,
+ 0.6184711456298828,
+ 0.5385302305221558,
+ -0.7613329887390137,
+ 0.00016218330711126328,
+ 0.35314705967903137,
+ 1.4704145193099976,
+ 0.4088839888572693,
+ -0.3010066747665405,
+ 0.5783973932266235,
+ -1.1527764797210693,
+ -0.10729268193244934,
+ 0.5361786484718323,
+ 1.0120755434036255,
+ 0.4956464171409607,
+ -0.3979550898075104,
+ 0.5429735779762268,
+ -0.6664474606513977,
+ -0.7174486517906189,
+ -0.8810520172119141,
+ -0.8275492191314697,
+ -0.6591172218322754,
+ -0.3909376859664917,
+ -0.5483886003494263,
+ -0.6053739786148071,
+ 1.28267240524292,
+ -1.15229332447052,
+ -1.4762181043624878,
+ 0.20426183938980103,
+ 0.43475955724716187,
+ -1.1075372695922852,
+ -0.05523496866226196,
+ -0.864146888256073,
+ 0.7803797125816345,
+ -0.49017518758773804,
+ -0.7328313589096069,
+ -0.18449048697948456,
+ -0.4013175964355469,
+ 0.3343905210494995,
+ -0.19172367453575134,
+ 0.05118261277675629,
+ 0.48182594776153564,
+ -0.5977518558502197,
+ 0.8593541979789734,
+ 0.3676719665527344,
+ 0.0601796880364418,
+ 0.21734802424907684,
+ 0.709962010383606,
+ 0.4819551110267639,
+ -0.3375502824783325,
+ -0.29549640417099,
+ -0.2924259901046753,
+ -1.1220732927322388,
+ -0.9390161633491516,
+ -2.384021043777466,
+ -0.2915947735309601,
+ 1.9043493270874023,
+ -0.6196337342262268,
+ 0.8035521507263184,
+ 0.4607900381088257,
+ -0.7493059635162354,
+ -0.27796512842178345,
+ 0.25473886728286743,
+ 2.4889495372772217,
+ -0.9208225607872009,
+ 0.7466561198234558,
+ 0.335640549659729,
+ -0.15127968788146973,
+ 0.21340277791023254,
+ 0.25119492411613464,
+ 0.28971439599990845,
+ -0.3657996654510498,
+ 0.17186176776885986,
+ 0.1524970531463623,
+ -0.10543571412563324,
+ -1.3598061800003052,
+ -0.865406334400177,
+ -0.4696395993232727,
+ 0.8327928781509399,
+ 0.2968762218952179,
+ 0.20852625370025635,
+ 0.3449631929397583,
+ -0.8013959527015686,
+ 0.5140534043312073,
+ -0.4897526502609253,
+ -0.8443100452423096,
+ -0.8302829265594482,
+ -1.564286708831787,
+ -1.1849251985549927,
+ -0.49688616394996643,
+ 0.5657787322998047,
+ 0.5519119501113892,
+ 1.3555800914764404,
+ -1.3738218545913696,
+ 0.7851758599281311,
+ 1.0050891637802124,
+ -0.08580762892961502,
+ -0.408856064081192,
+ -0.5045989751815796,
+ 0.09425999969244003,
+ -0.09318503737449646,
+ -0.7670716047286987,
+ 0.25535136461257935,
+ 0.41600459814071655,
+ -0.4398624300956726,
+ 0.5386831760406494,
+ -1.2705644369125366,
+ -0.9879679083824158,
+ -0.263642817735672,
+ 0.36303699016571045,
+ -1.3897584676742554,
+ -0.5551257729530334,
+ 0.6243670582771301,
+ 0.591974139213562,
+ 0.2729770839214325,
+ -0.020430468022823334,
+ -0.2362646609544754,
+ -0.9383404850959778,
+ -0.31031978130340576,
+ 0.21261385083198547,
+ 1.5098876953125,
+ 0.489940345287323,
+ -0.622511088848114,
+ 0.7380099892616272,
+ -0.381888210773468,
+ 0.6739099621772766,
+ 1.3091073036193848,
+ 0.11729568243026733,
+ -0.3731032907962799,
+ -0.47519195079803467,
+ -0.5356464982032776,
+ -0.23560068011283875,
+ -0.7762077450752258,
+ 0.7555393576622009,
+ -0.4512733221054077,
+ 0.2907015383243561,
+ 0.05254298821091652,
+ -0.35252657532691956,
+ -0.270041823387146,
+ 0.16863830387592316,
+ 0.6499735713005066,
+ -0.7903394103050232,
+ 0.07280532270669937,
+ -0.873493492603302,
+ -0.2255774438381195,
+ 1.3409010171890259,
+ -1.1747941970825195,
+ -1.9958643913269043,
+ -0.7035006284713745,
+ 0.34417980909347534,
+ 0.012641549110412598,
+ 0.664311408996582,
+ -0.729055643081665,
+ -0.7960428595542908,
+ -1.4878290891647339,
+ -0.17125645279884338,
+ -0.969135046005249,
+ -0.6326331496238708,
+ -0.4523041248321533,
+ -0.19211533665657043,
+ -0.26324155926704407,
+ -1.4512546062469482,
+ 0.9608147144317627,
+ -0.5216050148010254,
+ 0.29274266958236694,
+ -0.41617441177368164,
+ 1.323179841041565,
+ 0.3258002996444702,
+ -0.45168519020080566,
+ -0.9765897393226624,
+ -1.0050420761108398,
+ -0.4799996316432953,
+ 1.237583041191101,
+ -0.18508851528167725,
+ 0.389257550239563,
+ -0.8998070955276489,
+ -0.44967174530029297,
+ 1.9732258319854736,
+ 0.9338749051094055,
+ 0.26262298226356506,
+ 0.4050070345401764,
+ 0.3347419202327728,
+ -0.693935751914978,
+ 1.1550589799880981,
+ 0.2938724458217621,
+ -0.08111657947301865,
+ 0.11003666371107101,
+ -0.43772751092910767,
+ -0.8016384243965149,
+ -1.1444112062454224,
+ 0.5505369901657104,
+ -0.19441449642181396,
+ -0.34266653656959534,
+ -2.140148162841797,
+ -0.9346034526824951,
+ -0.39407482743263245,
+ -0.8716363906860352,
+ -0.6172252893447876,
+ -0.15624503791332245,
+ -0.5341554880142212,
+ -0.3556865155696869,
+ -0.7754367589950562,
+ -0.7995349764823914,
+ 1.255889654159546,
+ 0.18888762593269348,
+ -0.8775733709335327,
+ 0.6385846138000488,
+ 0.49609094858169556,
+ 1.3789281845092773,
+ -1.4287549257278442,
+ 1.7427555322647095,
+ -0.4566154181957245,
+ 0.3420262634754181,
+ 0.1696328967809677,
+ 0.8156327605247498,
+ 0.480159193277359,
+ -0.2837734818458557,
+ -0.005498036742210388,
+ -0.20987927913665771,
+ 1.8767807483673096,
+ 0.7999078631401062,
+ -1.0161081552505493,
+ 1.2104506492614746,
+ -0.39569011330604553,
+ 0.39366206526756287,
+ 0.23936478793621063,
+ 1.6366370916366577,
+ 0.12702181935310364,
+ -0.4821646213531494,
+ -0.2101978063583374,
+ 0.2931620180606842,
+ 0.05117686837911606,
+ 0.41534820199012756,
+ -0.58241206407547,
+ 0.11997854709625244,
+ 0.7176713943481445,
+ -1.0141960382461548,
+ 0.4465193450450897,
+ 0.7594799995422363,
+ -0.045702893286943436,
+ -0.8099830746650696,
+ 1.0167042016983032,
+ 0.18132321536540985,
+ 0.2502995729446411,
+ -1.256333827972412,
+ 0.5033825635910034,
+ 0.20786453783512115,
+ 0.40091994404792786,
+ -0.5816883444786072,
+ 0.07275180518627167,
+ 0.4663039445877075,
+ -0.7004857063293457,
+ 0.09122780710458755,
+ -1.311118483543396,
+ 0.5467702746391296,
+ 1.1741441488265991,
+ -0.562333881855011,
+ -0.5395069122314453,
+ 0.07049642503261566,
+ -0.261853963136673,
+ -1.9258131980895996,
+ -0.33872681856155396,
+ 0.5133262276649475,
+ 0.4683586359024048,
+ 1.8277026414871216,
+ 0.47377529740333557,
+ 0.4109927713871002,
+ -0.3951011002063751,
+ 0.845963716506958,
+ 0.639413595199585,
+ 0.12398795783519745,
+ 0.6951650381088257,
+ -0.46365994215011597,
+ -0.42538008093833923,
+ 0.603477954864502,
+ -0.054399967193603516,
+ 0.8604365587234497,
+ 0.37706300616264343,
+ -0.7277477979660034,
+ -0.3102206885814667,
+ 0.711448609828949,
+ -0.5582782030105591,
+ -1.4205783605575562,
+ 0.3805360198020935,
+ -0.08340056985616684,
+ -0.790184736251831,
+ 0.27324241399765015,
+ 0.05866452306509018,
+ 0.16015374660491943,
+ -0.9786782264709473,
+ 0.9949908256530762,
+ -0.6490265130996704,
+ -0.7171522974967957,
+ -0.4500300884246826,
+ 0.42217403650283813,
+ 0.23652386665344238,
+ -0.041181907057762146,
+ 0.21707683801651,
+ -0.4240705370903015,
+ -1.4530702829360962,
+ 0.2627290189266205,
+ -0.21056745946407318,
+ 1.2517821788787842,
+ -0.5684373378753662,
+ 1.4968305826187134,
+ -1.451193928718567,
+ -0.5304797887802124,
+ 0.3663264513015747,
+ 0.018018430098891258,
+ -0.4471381604671478,
+ 0.8323870897293091,
+ -0.24873831868171692,
+ -0.1696608066558838,
+ -0.13397416472434998,
+ 0.05595015734434128,
+ -1.3176835775375366,
+ 0.7801960706710815,
+ -0.482253760099411,
+ 1.3473782539367676,
+ 0.849418044090271,
+ -0.9397487640380859,
+ -0.953363299369812,
+ 0.21225030720233917,
+ -4.119915962219238,
+ -0.5819400548934937,
+ -0.3161793053150177,
+ -0.5454843640327454,
+ -0.7610426545143127,
+ 0.38023555278778076,
+ -1.4177205562591553,
+ -1.6691144704818726,
+ 0.83195561170578,
+ -0.27913424372673035,
+ -0.07009726762771606,
+ 1.0196208953857422,
+ -0.35139238834381104,
+ -0.9329738616943359,
+ 0.5949298739433289,
+ 1.2671362161636353,
+ 0.844315230846405,
+ -1.5776124000549316,
+ 0.10255186259746552,
+ 1.8748189210891724,
+ -0.043594539165496826,
+ 0.633864164352417,
+ 1.3085557222366333,
+ 0.4131454527378082,
+ -0.9433033466339111,
+ -1.1790804862976074,
+ -0.43445873260498047,
+ 0.6430420279502869,
+ -0.8357949256896973,
+ -0.6744788885116577,
+ -0.5929587483406067,
+ -0.8574327826499939,
+ 1.591194748878479,
+ 0.7439128756523132,
+ 1.7304894924163818,
+ -0.23989887535572052,
+ 0.3023734986782074,
+ 0.05696679651737213,
+ -1.0236574411392212,
+ 0.4262477457523346,
+ 1.0933457612991333,
+ -0.13372914493083954,
+ -0.7170668840408325,
+ 0.6844462156295776,
+ 0.6289314031600952,
+ 0.30946996808052063,
+ 0.3346438407897949,
+ -0.418169766664505,
+ 0.11108841001987457,
+ -0.6500064730644226,
+ 0.7144540548324585,
+ 1.5007942914962769,
+ 0.32044872641563416,
+ 1.6610145568847656,
+ 0.49714916944503784,
+ -0.2074509710073471,
+ -1.109060287475586,
+ 0.6390489339828491,
+ -0.12422734498977661,
+ 0.5276621580123901,
+ -0.6607958078384399,
+ -0.13080137968063354,
+ -1.2670403718948364,
+ -2.014864921569824,
+ -0.13397572934627533,
+ 0.0874442383646965,
+ -0.5818418264389038,
+ 1.1875736713409424,
+ 0.2707624137401581,
+ 0.44338494539260864,
+ -0.7902827858924866,
+ -1.3269532918930054,
+ 1.6159979104995728,
+ -0.7674081921577454,
+ 0.5389584302902222,
+ 0.4564394950866699,
+ 0.31548139452934265,
+ 0.14418919384479523,
+ -1.5527172088623047,
+ -1.4071083068847656,
+ -1.317844271659851,
+ -0.6479909420013428,
+ 0.6954100131988525,
+ -0.1449333131313324,
+ 1.8041088581085205,
+ 0.40209075808525085,
+ -0.9441631436347961,
+ 0.4055798053741455,
+ -1.1907899379730225,
+ 0.48055559396743774,
+ -1.9605803489685059,
+ -0.8484641909599304,
+ 0.48355406522750854,
+ 0.11608795076608658,
+ -0.8062622547149658,
+ 0.7585793137550354,
+ -0.3700462877750397,
+ 0.5391897559165955,
+ -0.8717380166053772,
+ -0.9058598875999451,
+ -0.0656895563006401,
+ -0.3489389717578888,
+ 0.31966984272003174,
+ -0.29667341709136963,
+ -0.3411467671394348,
+ 0.15899114310741425,
+ 1.3034297227859497,
+ -0.581296443939209,
+ -0.06075483560562134,
+ 0.8142265677452087,
+ -0.4876082241535187,
+ -0.17644278705120087,
+ 1.2039990425109863,
+ -0.21202465891838074,
+ -0.7431157827377319,
+ 0.8366789817810059,
+ 0.3099101781845093,
+ 0.4558863043785095,
+ -1.0790919065475464,
+ 0.5173228979110718,
+ 0.3427058756351471,
+ -0.665841817855835,
+ 0.44020411372184753,
+ -1.164108157157898,
+ -0.11124850064516068,
+ 1.4069198369979858,
+ 1.1681522130966187,
+ 1.374565601348877,
+ 2.0794289112091064,
+ -0.15025198459625244,
+ 0.15444928407669067,
+ -1.6021649837493896,
+ 0.42730793356895447,
+ 1.1520652770996094,
+ 0.8542488813400269,
+ 0.02139350026845932,
+ -0.3174390196800232,
+ 0.7940515279769897,
+ -0.12931102514266968,
+ -0.5765475630760193,
+ 0.4922323226928711,
+ -1.5351513624191284,
+ -1.2317832708358765,
+ -0.11495377123355865,
+ -0.4504266381263733,
+ 0.8968893885612488,
+ -0.6821104884147644,
+ 0.23508809506893158,
+ -1.1474987268447876,
+ -1.1415081024169922,
+ -0.09781915694475174,
+ -0.9763603210449219,
+ 0.714702844619751,
+ 0.3679143488407135,
+ 0.2605380713939667,
+ 1.3716708421707153,
+ -0.6406415700912476,
+ -1.6058927774429321,
+ 0.27057307958602905,
+ 0.69770348072052,
+ -0.42066842317581177,
+ -0.6916332840919495,
+ -0.5835474133491516,
+ 0.11482931673526764,
+ -0.96563321352005,
+ 0.593349277973175,
+ 0.4696391224861145,
+ -0.25558438897132874,
+ -0.9297246932983398,
+ -0.9377810955047607,
+ 0.33214300870895386,
+ 0.24970880150794983,
+ -1.6879358291625977,
+ -0.4989723861217499,
+ 0.9651097059249878,
+ -0.5967630743980408,
+ 0.7681418061256409,
+ -0.4621291160583496,
+ 0.7651324272155762,
+ -1.4443562030792236,
+ 0.28085586428642273,
+ 0.46199753880500793,
+ 0.08308453112840652,
+ 0.9355230927467346,
+ 0.8346452116966248,
+ 0.7987560629844666,
+ -0.5884391069412231,
+ -0.19360341131687164,
+ 0.07475464046001434,
+ 1.3099737167358398,
+ -0.3963249921798706,
+ -1.2413054704666138,
+ 0.5843633413314819,
+ -0.16829639673233032,
+ 1.2409746646881104,
+ -0.44163084030151367,
+ -0.4704226553440094,
+ -0.11409631371498108,
+ 0.5933045744895935,
+ 0.2520846724510193,
+ -1.0452313423156738,
+ 0.7323392033576965,
+ 0.12775163352489471,
+ 0.1508024036884308,
+ -0.19917501509189606,
+ 0.5611069798469543,
+ -0.9922568202018738,
+ -0.6118861436843872,
+ -0.09442847967147827,
+ 0.7105957865715027,
+ -0.1929299235343933,
+ -1.034743309020996,
+ -0.31705012917518616,
+ 0.2474181354045868,
+ -1.2258563041687012,
+ -0.2723420262336731,
+ 0.2714233994483948,
+ -0.983522891998291,
+ 0.2792958617210388,
+ 0.6181659698486328,
+ 0.5504214763641357,
+ 0.860880970954895,
+ -0.5055423974990845,
+ 0.7732285261154175,
+ 0.07539157569408417,
+ -0.21861226856708527,
+ -0.2704312801361084,
+ 0.03363265097141266,
+ -0.48354005813598633,
+ -1.4811656475067139,
+ 0.8846601843833923,
+ 0.731461763381958,
+ -0.06277692317962646,
+ 1.1056798696517944,
+ 0.19955411553382874,
+ 0.5875002145767212,
+ -1.069528579711914,
+ 0.871820867061615,
+ -0.5399810671806335,
+ -1.4120454788208008,
+ 0.41564783453941345,
+ 0.3692450225353241,
+ 0.7625313997268677,
+ 0.8551636934280396
+ ]
+ },
+ {
+ "key": 14,
+ "name": "Don Massimo",
+ "type": "movie",
+ "media": "365 Days",
+ "label": [
+ "Assertive",
+ "BDSM",
+ "Controlling",
+ "Dominant",
+ "Passionate",
+ "Protective"
+ ],
+ "embedding": [
+ -0.7051571607589722,
+ 0.3430238962173462,
+ -1.2180887460708618,
+ -0.4931216835975647,
+ -1.7065479755401611,
+ -1.116339087486267,
+ 0.45119237899780273,
+ -0.5206302404403687,
+ -0.5456117987632751,
+ 0.5646021366119385,
+ -0.11113794147968292,
+ -0.274325966835022,
+ -1.5812889337539673,
+ -0.6318705081939697,
+ 1.2776947021484375,
+ 0.6292069554328918,
+ 1.2901846170425415,
+ -0.2853139042854309,
+ -0.5267535448074341,
+ -0.7605238556861877,
+ -0.817101001739502,
+ 0.6168510913848877,
+ -0.5391453504562378,
+ 0.7311966419219971,
+ -0.43883198499679565,
+ -0.1870478391647339,
+ 0.07836317270994186,
+ 0.5263902544975281,
+ -0.36116600036621094,
+ -0.1471998691558838,
+ 0.3397999703884125,
+ -0.403690367937088,
+ -0.30192211270332336,
+ -0.8429949283599854,
+ 0.25816699862480164,
+ -0.47490185499191284,
+ -0.017258506268262863,
+ -0.6440750956535339,
+ -1.123745083808899,
+ 1.2388285398483276,
+ 0.9952561855316162,
+ -1.2553315162658691,
+ 1.209073543548584,
+ -1.230726957321167,
+ 0.617563009262085,
+ -0.4801176190376282,
+ -0.061687394976615906,
+ -0.6988953948020935,
+ -0.29980960488319397,
+ 0.7209804058074951,
+ -0.3048243522644043,
+ 0.15770316123962402,
+ 1.671889305114746,
+ -0.4259306788444519,
+ 0.1659751534461975,
+ 1.1235125064849854,
+ 1.0128992795944214,
+ -1.161460041999817,
+ -0.3787703514099121,
+ -1.2807713747024536,
+ -1.7460048198699951,
+ -0.3340744078159332,
+ -0.02589319460093975,
+ -0.36573466658592224,
+ 0.6219687461853027,
+ 1.7548576593399048,
+ 1.0514250993728638,
+ 0.1217501163482666,
+ 0.6754124164581299,
+ -0.920893132686615,
+ 0.054159924387931824,
+ 0.200809508562088,
+ 0.12519685924053192,
+ 0.6889395713806152,
+ -1.7604966163635254,
+ 0.4505390226840973,
+ 0.08292937278747559,
+ -0.1447678655385971,
+ 0.2628842890262604,
+ 0.5776990652084351,
+ -0.45737019181251526,
+ -0.2398524433374405,
+ 0.8658528327941895,
+ 0.5111768245697021,
+ -1.6656125783920288,
+ 0.8872988224029541,
+ 0.7878751158714294,
+ -0.37282249331474304,
+ 0.06811206042766571,
+ 0.341118723154068,
+ 0.2091885805130005,
+ -0.43407952785491943,
+ 0.852668046951294,
+ -0.7854253649711609,
+ -0.7049875855445862,
+ -0.01706821471452713,
+ -0.020186178386211395,
+ -0.7064629793167114,
+ 0.570199728012085,
+ 0.9705800414085388,
+ 0.0994422435760498,
+ -0.4962817132472992,
+ -0.16422531008720398,
+ 0.024076536297798157,
+ -0.11434822529554367,
+ -1.5030111074447632,
+ 0.7696460485458374,
+ 1.9448418617248535,
+ 0.2008722573518753,
+ 0.6110215783119202,
+ 0.14484640955924988,
+ 0.7984731197357178,
+ 0.6436236500740051,
+ 0.4710293114185333,
+ -0.358720600605011,
+ -0.16606120765209198,
+ 0.26774266362190247,
+ -0.9827251434326172,
+ 0.5477439165115356,
+ 0.049130551517009735,
+ 1.2577123641967773,
+ -1.0642642974853516,
+ -0.25907471776008606,
+ -0.4282681345939636,
+ -0.09980607032775879,
+ -0.9334147572517395,
+ -1.245498538017273,
+ 0.190248504281044,
+ -0.6121041178703308,
+ 0.752166748046875,
+ 2.068570375442505,
+ 0.7048934698104858,
+ -0.23350790143013,
+ -0.764066755771637,
+ -1.524261713027954,
+ -0.662353515625,
+ 0.14237283170223236,
+ 1.0143803358078003,
+ 0.19594016671180725,
+ -0.7423396706581116,
+ 0.03930223733186722,
+ 1.0992883443832397,
+ 1.5406675338745117,
+ -1.6207659244537354,
+ -0.1510724574327469,
+ -1.7976253032684326,
+ 0.21791069209575653,
+ 0.1206466555595398,
+ -0.16448237001895905,
+ -0.5859073996543884,
+ 0.829933762550354,
+ -0.11800525337457657,
+ 1.0235376358032227,
+ 0.7939581871032715,
+ 1.3931074142456055,
+ -0.47221094369888306,
+ -0.5903669595718384,
+ 0.9863117933273315,
+ 1.8862937688827515,
+ 0.3436916768550873,
+ -0.2016267031431198,
+ -0.8387309312820435,
+ 0.16235777735710144,
+ 0.7289535403251648,
+ 0.2536923587322235,
+ 0.11406974494457245,
+ 1.0360547304153442,
+ 1.0184507369995117,
+ 0.24309927225112915,
+ 0.7572948932647705,
+ 0.48651713132858276,
+ -1.931356430053711,
+ -0.14376893639564514,
+ 1.349656581878662,
+ 0.9071012735366821,
+ -0.19169530272483826,
+ 0.9940322637557983,
+ 0.22460803389549255,
+ 0.20269814133644104,
+ -0.534713625907898,
+ 0.4652169346809387,
+ 0.5410901308059692,
+ -0.21981889009475708,
+ 0.5210822820663452,
+ -0.20188017189502716,
+ -1.283290147781372,
+ 0.027983635663986206,
+ -0.19466081261634827,
+ 0.5770984292030334,
+ 1.5454968214035034,
+ -0.31439587473869324,
+ -1.1853362321853638,
+ 0.88382887840271,
+ -0.13601623475551605,
+ 0.3184651732444763,
+ -0.04240672290325165,
+ 0.45780467987060547,
+ -1.4146933555603027,
+ 0.6693815588951111,
+ -1.05583655834198,
+ 0.4483346939086914,
+ 0.861046552658081,
+ 1.2792396545410156,
+ -1.2713273763656616,
+ -0.7385904788970947,
+ -0.353285551071167,
+ -0.47153282165527344,
+ -0.1468075066804886,
+ 1.0433323383331299,
+ -0.22357358038425446,
+ 0.03008607216179371,
+ 0.41058585047721863,
+ -0.08486107736825943,
+ -0.5240058898925781,
+ -1.5538257360458374,
+ -0.5726252794265747,
+ 0.04142819344997406,
+ 0.8064658045768738,
+ -0.9333545565605164,
+ -0.6089671850204468,
+ -1.671299695968628,
+ 1.0806822776794434,
+ 0.24359598755836487,
+ 0.654075562953949,
+ 0.6018406748771667,
+ 0.47884637117385864,
+ 0.7695167660713196,
+ 1.9890925884246826,
+ 0.964067280292511,
+ 1.2575018405914307,
+ 0.6383801698684692,
+ -0.12529364228248596,
+ 0.1532219797372818,
+ 0.1738806962966919,
+ 0.04031810164451599,
+ 0.0701083093881607,
+ -0.9607014656066895,
+ 0.9107177257537842,
+ 1.5721678733825684,
+ 0.3143588602542877,
+ -0.03414608910679817,
+ -0.6286301016807556,
+ 1.1027164459228516,
+ -0.12033001333475113,
+ -1.4034315347671509,
+ 0.2393457293510437,
+ 0.9356052875518799,
+ -0.8406254053115845,
+ 0.2730002701282501,
+ -0.8423112630844116,
+ 0.03320368379354477,
+ -0.45732906460762024,
+ -1.9593287706375122,
+ -0.4105457365512848,
+ 0.2657952606678009,
+ 0.2367568016052246,
+ 0.44326990842819214,
+ -0.5542371273040771,
+ -1.1194971799850464,
+ -0.6983826756477356,
+ -0.5138306617736816,
+ 1.196258544921875,
+ -0.19462786614894867,
+ 0.5869291424751282,
+ 1.1551614999771118,
+ -0.3887711465358734,
+ 0.9704256057739258,
+ -0.6077178716659546,
+ -0.19268271327018738,
+ 0.2529318332672119,
+ 0.8274475932121277,
+ -0.3287985622882843,
+ 0.5107008814811707,
+ -0.19193904101848602,
+ -0.26614272594451904,
+ 1.3062994480133057,
+ -0.48763564229011536,
+ -0.2920016348361969,
+ 0.29511502385139465,
+ 0.951448917388916,
+ 1.2626780271530151,
+ -0.946368396282196,
+ -0.630818247795105,
+ 0.021444588899612427,
+ 1.555199146270752,
+ -0.5821354985237122,
+ -0.7810811400413513,
+ -1.1614294052124023,
+ 0.06529073417186737,
+ -2.4413108825683594,
+ 0.8229629993438721,
+ -0.13893365859985352,
+ 1.9296541213989258,
+ 0.08735047280788422,
+ -1.2004923820495605,
+ -0.4466679096221924,
+ -1.5813074111938477,
+ -3.5924606323242188,
+ 1.0463550090789795,
+ -0.5372056365013123,
+ -0.04340926557779312,
+ 0.5117026567459106,
+ -0.34006309509277344,
+ -1.0941147804260254,
+ 0.5745043754577637,
+ -0.8216885328292847,
+ -0.5385844707489014,
+ 0.8880067467689514,
+ -1.537222981452942,
+ -0.30124616622924805,
+ 0.022951189428567886,
+ -0.9069386124610901,
+ -0.6112958788871765,
+ 0.47649550437927246,
+ 0.25046658515930176,
+ -0.7429569959640503,
+ -0.734966516494751,
+ 0.1205558180809021,
+ 0.29248714447021484,
+ 0.720548689365387,
+ 0.5479781627655029,
+ 0.14018361270427704,
+ 1.384589672088623,
+ 1.8712315559387207,
+ -0.10071422904729843,
+ -1.4548017978668213,
+ -0.548704981803894,
+ -0.5763325691223145,
+ 0.5264197587966919,
+ -0.5833652019500732,
+ 1.297329068183899,
+ -0.14206376671791077,
+ 1.0853092670440674,
+ 0.8886430859565735,
+ -0.052221380174160004,
+ 1.049647569656372,
+ -0.31728577613830566,
+ 1.5987154245376587,
+ 1.0467435121536255,
+ -0.909763753414154,
+ -0.303562194108963,
+ 0.15827955305576324,
+ -0.4279668629169464,
+ 0.06024923920631409,
+ 0.7198053598403931,
+ 0.24328356981277466,
+ -0.11107485741376877,
+ 0.4699544608592987,
+ 0.2677091956138611,
+ 0.3294803202152252,
+ 0.6737633943557739,
+ -1.2934633493423462,
+ -0.4275866448879242,
+ -0.6897096633911133,
+ 0.14258994162082672,
+ 0.3393115997314453,
+ 0.451509952545166,
+ -0.5619155168533325,
+ -1.3694676160812378,
+ 0.282461017370224,
+ -0.1069839745759964,
+ -0.8436746597290039,
+ -0.9092274904251099,
+ -0.15280067920684814,
+ -0.18843814730644226,
+ 0.730992317199707,
+ -0.2658989131450653,
+ -0.1291349083185196,
+ 0.002917800098657608,
+ 0.6475468873977661,
+ 0.05763358622789383,
+ 0.013953503221273422,
+ 0.6539907455444336,
+ -0.044671956449747086,
+ -0.9272634387016296,
+ -0.550275981426239,
+ -1.5134238004684448,
+ 0.5121710300445557,
+ 0.11290472745895386,
+ -0.6344811916351318,
+ 1.1237244606018066,
+ -0.5330473780632019,
+ -1.479204773902893,
+ 0.6799110174179077,
+ 0.6454954147338867,
+ -0.01843397505581379,
+ 6.081921577453613,
+ 0.07266295701265335,
+ -0.12143675982952118,
+ 0.23567497730255127,
+ 0.7048856616020203,
+ 0.5940523743629456,
+ 0.12441685795783997,
+ 0.038844943046569824,
+ 0.5418617129325867,
+ -0.4957043528556824,
+ 0.6875017285346985,
+ 0.9993586540222168,
+ -0.4225314259529114,
+ 0.5758804678916931,
+ -0.6474056243896484,
+ 0.5469651818275452,
+ -0.8507362604141235,
+ -1.5240131616592407,
+ 1.9111018180847168,
+ -1.161171317100525,
+ 0.8747051954269409,
+ 0.3382411003112793,
+ 1.2197232246398926,
+ 0.03462851792573929,
+ -0.26337724924087524,
+ -0.894424319267273,
+ 0.24989494681358337,
+ 0.6365951299667358,
+ -1.0091443061828613,
+ 0.4472106695175171,
+ -0.2107103168964386,
+ 0.8581224679946899,
+ 1.6949951648712158,
+ 0.24321973323822021,
+ 0.1631242036819458,
+ -0.7407456040382385,
+ -1.538771390914917,
+ -0.2835690677165985,
+ -1.5069012641906738,
+ 1.5411362648010254,
+ -1.9120432138442993,
+ -0.6391288042068481,
+ -1.4373048543930054,
+ -1.1954582929611206,
+ 0.8006408214569092,
+ 0.16765835881233215,
+ 0.1270035058259964,
+ -0.47284308075904846,
+ 0.9817671775817871,
+ -1.6698458194732666,
+ 0.5352950692176819,
+ -1.0963988304138184,
+ 0.30038246512413025,
+ -0.4843218922615051,
+ 0.9839247465133667,
+ -0.1939302533864975,
+ 0.10758428275585175,
+ -0.6453651189804077,
+ 0.15968473255634308,
+ 1.5512317419052124,
+ 1.8356877565383911,
+ 0.7172900438308716,
+ -2.351900815963745,
+ 0.3884681165218353,
+ 0.017317229881882668,
+ 1.7867372035980225,
+ 0.6242392063140869,
+ 0.3399483859539032,
+ 0.49419093132019043,
+ -0.10826636850833893,
+ 1.7059613466262817,
+ 0.9962872266769409,
+ 0.2106381207704544,
+ 0.8759605884552002,
+ -0.10908053815364838,
+ 0.6278517246246338,
+ -0.40003064274787903,
+ -0.8541277050971985,
+ 0.43626296520233154,
+ -0.06478913873434067,
+ -0.14509382843971252,
+ -0.4409700334072113,
+ -0.01759769767522812,
+ -0.23903082311153412,
+ 0.974763035774231,
+ 0.5456858277320862,
+ -1.3037391901016235,
+ 1.274219036102295,
+ -0.5308300256729126,
+ 0.8042538166046143,
+ -0.6948481202125549,
+ -0.43933531641960144,
+ 0.16381806135177612,
+ -0.8319817185401917,
+ -0.7391082644462585,
+ -0.304191917181015,
+ 0.453345388174057,
+ -0.137427419424057,
+ -0.7708418369293213,
+ -0.22597168385982513,
+ 0.36285436153411865,
+ -1.2242858409881592,
+ -0.17150795459747314,
+ -0.4698716700077057,
+ 0.6167948246002197,
+ -0.3734579086303711,
+ -0.5802809000015259,
+ -0.22836752235889435,
+ -0.9821564555168152,
+ 0.04270061105489731,
+ -0.010590089485049248,
+ 1.135058879852295,
+ -0.18778395652770996,
+ -0.27824175357818604,
+ 0.9644717574119568,
+ 0.47660839557647705,
+ -0.11445819586515427,
+ -0.2228793501853943,
+ 0.3617849051952362,
+ 0.6670284867286682,
+ -1.1949368715286255,
+ 0.3068539500236511,
+ 0.08718345314264297,
+ -0.728151798248291,
+ -1.006972312927246,
+ -2.1812663078308105,
+ 0.36395686864852905,
+ 1.5130058526992798,
+ -0.8631805777549744,
+ 0.8232999444007874,
+ -0.8673602938652039,
+ -0.3798105716705322,
+ 0.8474861979484558,
+ 1.3959184885025024,
+ 1.0866581201553345,
+ -1.1646099090576172,
+ 1.8470547199249268,
+ 0.8631385564804077,
+ 0.9081985950469971,
+ -0.6251685619354248,
+ 0.36481377482414246,
+ -0.1764831840991974,
+ -1.1369051933288574,
+ 0.9817788600921631,
+ 0.11818267405033112,
+ -0.33692461252212524,
+ -0.9193552732467651,
+ -0.14173316955566406,
+ -0.9366053342819214,
+ 0.7329217791557312,
+ 0.6220779418945312,
+ 0.044495999813079834,
+ 0.27353376150131226,
+ -0.9171971678733826,
+ 0.2637821137905121,
+ -0.4608118534088135,
+ -0.28859055042266846,
+ -1.6084791421890259,
+ -1.6385740041732788,
+ -1.141245722770691,
+ 0.13182179629802704,
+ 0.6436440944671631,
+ 0.011143496260046959,
+ 1.0207877159118652,
+ -0.6440152525901794,
+ 0.798209011554718,
+ -0.06053542345762253,
+ 0.7432739734649658,
+ -0.9733793139457703,
+ -0.7958369851112366,
+ -0.019886095076799393,
+ -0.8057572841644287,
+ -0.7560677528381348,
+ 1.4075229167938232,
+ 0.5810861587524414,
+ 0.8440045118331909,
+ -0.334766685962677,
+ -1.4578357934951782,
+ 0.9124190807342529,
+ -0.33692291378974915,
+ 0.49974334239959717,
+ -0.03596977889537811,
+ -1.6294701099395752,
+ 0.4010158181190491,
+ 1.5177277326583862,
+ 0.5772069692611694,
+ 0.43735194206237793,
+ -0.4423028826713562,
+ 0.38186123967170715,
+ -0.32898661494255066,
+ 0.21934038400650024,
+ 1.6132246255874634,
+ -0.8615908026695251,
+ -0.8328646421432495,
+ 0.9262438416481018,
+ 0.6681833267211914,
+ -0.37113022804260254,
+ 0.8994232416152954,
+ 0.5407780408859253,
+ -0.49965283274650574,
+ -0.7287459969520569,
+ 0.46262210607528687,
+ -0.15361061692237854,
+ -1.2159837484359741,
+ 0.30178892612457275,
+ 0.01823904737830162,
+ -1.0948879718780518,
+ -0.1016167551279068,
+ -0.3226986527442932,
+ -1.7550288438796997,
+ 0.002315424382686615,
+ 0.32660016417503357,
+ -0.5487700700759888,
+ 0.2068866789340973,
+ -0.42582783102989197,
+ -0.16074338555335999,
+ 0.6588663458824158,
+ -0.6554936170578003,
+ -1.5870716571807861,
+ -0.5120022296905518,
+ 0.7102078795433044,
+ 0.11858527362346649,
+ 0.5003052353858948,
+ -1.0427757501602173,
+ -0.7152880430221558,
+ -1.2928926944732666,
+ 0.29169610142707825,
+ -1.3211467266082764,
+ -0.15445619821548462,
+ -0.38485077023506165,
+ -0.054861120879650116,
+ 0.09831561148166656,
+ -0.8758603930473328,
+ 0.29874706268310547,
+ -0.48169538378715515,
+ 0.42232999205589294,
+ -0.5421283841133118,
+ 1.1851427555084229,
+ 0.3727433979511261,
+ -0.6443423628807068,
+ -0.09638211876153946,
+ -0.40590980648994446,
+ 0.1484343558549881,
+ 0.23587849736213684,
+ 0.07075745612382889,
+ 0.003666028380393982,
+ -0.47970736026763916,
+ 0.011826250702142715,
+ 1.6300685405731201,
+ 0.6313126683235168,
+ -0.6200153827667236,
+ -0.0019569359719753265,
+ 0.5044221878051758,
+ -0.9413338899612427,
+ 0.9977130889892578,
+ -0.8037766814231873,
+ -0.8839415907859802,
+ 0.15871372818946838,
+ -0.6636047959327698,
+ -0.6287523508071899,
+ -1.5264757871627808,
+ 1.207709789276123,
+ -0.6595845222473145,
+ -0.3128949701786041,
+ -2.6117658615112305,
+ -0.1795281171798706,
+ -0.17037321627140045,
+ 0.14015308022499084,
+ -0.2945624589920044,
+ -0.7458458542823792,
+ -0.1517118215560913,
+ -0.24043171107769012,
+ -0.32615745067596436,
+ -0.5893694758415222,
+ 1.9117544889450073,
+ 0.7233315706253052,
+ -1.3110462427139282,
+ 0.4333934783935547,
+ 0.14794890582561493,
+ 1.0916110277175903,
+ -0.9284803867340088,
+ 1.515005111694336,
+ -0.30936580896377563,
+ 0.8845083117485046,
+ 0.49286478757858276,
+ 0.8550609946250916,
+ 0.5444484353065491,
+ 0.6870073676109314,
+ -0.3832201063632965,
+ -0.568003237247467,
+ 1.8028138875961304,
+ -0.8685004115104675,
+ -1.3140361309051514,
+ -0.3020537197589874,
+ -0.49683114886283875,
+ -0.8225551247596741,
+ 0.43643781542778015,
+ 1.1237729787826538,
+ 0.026468053460121155,
+ -0.45733311772346497,
+ -0.775122880935669,
+ 0.4136219322681427,
+ -1.0020555257797241,
+ -0.35225120186805725,
+ 0.44087904691696167,
+ -0.3098656237125397,
+ 1.2528936862945557,
+ -1.647291660308838,
+ 1.298119306564331,
+ 0.3824378550052643,
+ 0.4385874271392822,
+ 0.1315743774175644,
+ 1.0736099481582642,
+ -0.18642377853393555,
+ -0.35318756103515625,
+ -0.6654133796691895,
+ -0.9505318403244019,
+ -0.2529071569442749,
+ 0.09539429843425751,
+ -0.13395436108112335,
+ -0.7630829811096191,
+ 0.8291670083999634,
+ -0.43167588114738464,
+ 0.4770203232765198,
+ 0.16987420618534088,
+ 0.4395518898963928,
+ 1.1875115633010864,
+ -0.4235260486602783,
+ 0.020187415182590485,
+ -0.6297779083251953,
+ -0.09873128682374954,
+ -1.4211987257003784,
+ -0.13243070244789124,
+ 0.22076302766799927,
+ 1.2176001071929932,
+ 1.3032535314559937,
+ 1.0954234600067139,
+ -0.002703726291656494,
+ 0.43227943778038025,
+ 1.229992151260376,
+ 0.7061185240745544,
+ -0.9375135898590088,
+ 0.3681798279285431,
+ -0.8124622106552124,
+ -0.5747313499450684,
+ 0.8903214335441589,
+ -0.6338827013969421,
+ 0.01810775138437748,
+ -0.4760567545890808,
+ -0.7419100403785706,
+ 0.3955816626548767,
+ 0.6168229579925537,
+ 0.49008846282958984,
+ -1.4567288160324097,
+ -0.13669753074645996,
+ 0.4351646304130554,
+ -0.8789022564888,
+ 0.16197220981121063,
+ -0.09497743844985962,
+ -0.575840950012207,
+ -0.30220916867256165,
+ 0.00160280242562294,
+ 0.08957892656326294,
+ -0.526458740234375,
+ -0.41462182998657227,
+ 0.14381177723407745,
+ 0.11734257638454437,
+ -0.8002268671989441,
+ 0.7702537178993225,
+ -1.0307321548461914,
+ -0.4186883270740509,
+ -0.24891752004623413,
+ 0.05056416615843773,
+ 0.801886796951294,
+ -0.9301239252090454,
+ 0.7372285723686218,
+ 0.03724338859319687,
+ -0.09727320075035095,
+ 0.5054699778556824,
+ -0.2947901487350464,
+ 0.08708706498146057,
+ 0.6920565366744995,
+ 0.4674224257469177,
+ 0.12419477105140686,
+ -0.04122275859117508,
+ -0.4805395305156708,
+ -1.3544046878814697,
+ 0.5574455857276917,
+ 0.1417192667722702,
+ 0.9235951900482178,
+ -1.1021534204483032,
+ -0.070963554084301,
+ -0.1802251785993576,
+ 0.8259348273277283,
+ -4.3134684562683105,
+ 0.5971618890762329,
+ -0.5444208383560181,
+ -1.345829963684082,
+ -1.2397269010543823,
+ -0.08507414162158966,
+ -0.34427300095558167,
+ -1.7442598342895508,
+ -0.5746658444404602,
+ -0.5749219655990601,
+ -0.23027092218399048,
+ 0.09462179243564606,
+ 0.8683605790138245,
+ -0.5145580768585205,
+ 0.8744477033615112,
+ 0.9757484197616577,
+ 0.6501894593238831,
+ -0.9539168477058411,
+ 0.5167563557624817,
+ 1.2659417390823364,
+ 0.1336154043674469,
+ 0.3841380178928375,
+ 0.245228573679924,
+ 0.2208302617073059,
+ -0.4817701280117035,
+ -0.4488002061843872,
+ -0.14100685715675354,
+ 0.860532283782959,
+ -1.5663009881973267,
+ 0.09413538873195648,
+ 0.6679302453994751,
+ -1.8878461122512817,
+ 1.4194484949111938,
+ 1.6461846828460693,
+ 1.3317692279815674,
+ 0.14609424769878387,
+ 0.38363373279571533,
+ -0.3537769913673401,
+ -0.7507511973381042,
+ 0.1682281792163849,
+ 1.4966949224472046,
+ -0.3815859854221344,
+ -0.6107433438301086,
+ 0.311982661485672,
+ 0.15179620683193207,
+ -0.19661714136600494,
+ 0.13493643701076508,
+ -0.6802304983139038,
+ -0.6209151744842529,
+ 0.7729094624519348,
+ 0.7362321019172668,
+ 0.8644685745239258,
+ 0.19452136754989624,
+ 1.7625908851623535,
+ -0.30645135045051575,
+ -0.844164252281189,
+ -1.2562267780303955,
+ 0.8805558085441589,
+ 0.01696868985891342,
+ 0.945244312286377,
+ -0.6940938234329224,
+ -0.0046587917022407055,
+ -0.9092714786529541,
+ -1.80182945728302,
+ -0.19034235179424286,
+ 0.5506555438041687,
+ -1.798838496208191,
+ 0.09462033212184906,
+ -0.10459918528795242,
+ 1.2006012201309204,
+ -0.2829931378364563,
+ -1.015717625617981,
+ 1.260740876197815,
+ -0.2658311724662781,
+ 0.4639351963996887,
+ 0.2973804771900177,
+ -0.06457868963479996,
+ 0.35202062129974365,
+ -0.976848304271698,
+ -1.9262751340866089,
+ -1.4009171724319458,
+ -1.075946569442749,
+ 0.4383960962295532,
+ -0.11446241289377213,
+ 1.7239906787872314,
+ -0.05405527353286743,
+ -0.13580848276615143,
+ 0.657394528388977,
+ -1.2892428636550903,
+ 0.940384566783905,
+ -0.8530901670455933,
+ -0.6062882542610168,
+ 0.5278652310371399,
+ -0.11816500127315521,
+ -0.8916288614273071,
+ 0.1742781698703766,
+ -0.4727174937725067,
+ 0.9650885462760925,
+ -0.5928630232810974,
+ -1.0035254955291748,
+ -0.31151968240737915,
+ -0.0393606461584568,
+ 0.08474823087453842,
+ -0.2733813226222992,
+ 0.2722156345844269,
+ -0.28433340787887573,
+ 0.29735657572746277,
+ -0.030037101358175278,
+ -0.3804726004600525,
+ -0.6376991271972656,
+ -0.33296191692352295,
+ 0.3548063039779663,
+ -0.0014953836798667908,
+ -0.03711032494902611,
+ -0.3059898316860199,
+ 0.12789347767829895,
+ 0.7256913781166077,
+ 0.3960099220275879,
+ -0.8780651092529297,
+ -0.5155694484710693,
+ 0.3056723177433014,
+ -0.31831949949264526,
+ -0.3929881751537323,
+ -1.4446874856948853,
+ 0.3119118809700012,
+ 1.2044798135757446,
+ 0.7925010919570923,
+ 0.8543167114257812,
+ 0.7967329621315002,
+ -0.9878638982772827,
+ 1.2008672952651978,
+ -2.131188154220581,
+ -0.09703046828508377,
+ 0.5628290772438049,
+ -0.26883888244628906,
+ -1.451142430305481,
+ 0.4776011109352112,
+ 0.686775267124176,
+ -0.06220633536577225,
+ -0.5519095659255981,
+ -0.5639119148254395,
+ -0.9552307724952698,
+ -1.1031423807144165,
+ -0.09275972843170166,
+ -0.11371836066246033,
+ -0.3104037642478943,
+ -0.5350038409233093,
+ -0.12701022624969482,
+ -1.4298650026321411,
+ -1.4546818733215332,
+ -1.128354549407959,
+ -0.34994593262672424,
+ 0.7213283777236938,
+ -0.12193223834037781,
+ 0.04783761501312256,
+ 0.6667085886001587,
+ -0.4088766276836395,
+ -0.41529518365859985,
+ 0.9901273250579834,
+ -0.005074966698884964,
+ 0.5150161981582642,
+ -1.1668081283569336,
+ -0.9200144410133362,
+ -1.0258609056472778,
+ -1.3140463829040527,
+ -0.29864591360092163,
+ 0.603797197341919,
+ -0.5510838031768799,
+ -0.014992289245128632,
+ -1.227624535560608,
+ 0.7722960114479065,
+ 1.290197730064392,
+ -0.820468008518219,
+ -0.6115553975105286,
+ 0.39797917008399963,
+ -0.7306873798370361,
+ 0.534302294254303,
+ -0.14474895596504211,
+ 0.8117879033088684,
+ -1.5294097661972046,
+ 0.3293139338493347,
+ 0.05926556885242462,
+ -0.14711056649684906,
+ 0.5431948304176331,
+ 0.13490280508995056,
+ 1.0618876218795776,
+ -0.5705298185348511,
+ -0.38988348841667175,
+ -0.04089021682739258,
+ 0.15308675169944763,
+ 0.4493786692619324,
+ -0.017813049256801605,
+ 0.9809234142303467,
+ -0.5149152874946594,
+ 0.5260103344917297,
+ -0.20832915604114532,
+ -0.5171530842781067,
+ -0.21381129324436188,
+ 0.005756521597504616,
+ -0.46853965520858765,
+ 0.05438432842493057,
+ 0.5037278532981873,
+ -0.11917814612388611,
+ -0.659447193145752,
+ -0.6496669054031372,
+ 0.543951153755188,
+ 0.26610997319221497,
+ -0.16836169362068176,
+ -0.2265896052122116,
+ 0.23749184608459473,
+ 0.0372292697429657,
+ -0.5122346878051758,
+ -0.3945537209510803,
+ 0.5473710894584656,
+ -0.49762120842933655,
+ 0.38951122760772705,
+ 0.021748043596744537,
+ -0.4330197870731354,
+ -0.6682049632072449,
+ 0.5650978088378906,
+ 1.0062376260757446,
+ 0.7658600807189941,
+ -0.3626720607280731,
+ 0.02195870131254196,
+ 0.16390369832515717,
+ 0.17706890404224396,
+ -0.1444074511528015,
+ 0.15772050619125366,
+ -0.013270635157823563,
+ -0.6177655458450317,
+ 0.8479055166244507,
+ 0.8209102153778076,
+ 0.42179253697395325,
+ 1.0427318811416626,
+ 1.0372215509414673,
+ -0.5302602648735046,
+ -0.543196976184845,
+ 0.668260395526886,
+ 0.05450262874364853,
+ -0.42150330543518066,
+ 2.4787027835845947,
+ 0.5565263032913208,
+ 0.8299266695976257,
+ 1.1501070261001587
+ ]
+ },
+ {
+ "key": 16,
+ "name": "Harley Quinn",
+ "type": "movie",
+ "media": "The Suicide Squad",
+ "label": [
+ "Adventurous",
+ "Dominant",
+ "Passionate",
+ "Playful",
+ "Spontaneous"
+ ],
+ "embedding": [
+ -0.7864921689033508,
+ 0.05701877921819687,
+ -0.8099964261054993,
+ -0.6851785182952881,
+ -1.4119548797607422,
+ -0.3486543297767639,
+ 0.09992100298404694,
+ -0.6411812901496887,
+ -0.512094259262085,
+ -0.10070225596427917,
+ 0.5181488990783691,
+ -0.2315499484539032,
+ -2.0950615406036377,
+ -0.36888182163238525,
+ 1.121953010559082,
+ 0.8119580149650574,
+ 0.8726822733879089,
+ 0.1374433934688568,
+ -0.5264751315116882,
+ -0.7155353426933289,
+ -0.3869537115097046,
+ 0.3355224132537842,
+ 0.07722917944192886,
+ 0.09554709494113922,
+ -1.344456672668457,
+ 0.399604469537735,
+ 0.27316364645957947,
+ 0.477358877658844,
+ -1.0738499164581299,
+ 0.013086173683404922,
+ -0.25428420305252075,
+ -0.10954052209854126,
+ -0.8764152526855469,
+ -0.5418579578399658,
+ 0.006025664508342743,
+ -0.79232257604599,
+ -0.13932335376739502,
+ -0.19912515580654144,
+ -1.1158510446548462,
+ 1.686435580253601,
+ 1.0751944780349731,
+ -1.381648302078247,
+ 0.6881886124610901,
+ -1.045422911643982,
+ 0.047657404094934464,
+ -0.6922467350959778,
+ 0.23979392647743225,
+ -0.46754929423332214,
+ -0.31199368834495544,
+ 0.6266157627105713,
+ -0.6036049127578735,
+ 0.7705984711647034,
+ 1.550631046295166,
+ -0.686120331287384,
+ 0.03148917853832245,
+ 0.5215341448783875,
+ 0.24895572662353516,
+ -0.30538514256477356,
+ -0.9891868829727173,
+ -1.846947431564331,
+ -1.3783143758773804,
+ 0.0032577626407146454,
+ -0.2162565141916275,
+ -0.3201662600040436,
+ 0.050900354981422424,
+ 1.6945700645446777,
+ 0.4955442547798157,
+ 0.1112212985754013,
+ 0.583796501159668,
+ -0.8936378359794617,
+ -0.9131719470024109,
+ -0.11472626030445099,
+ -0.9540838003158569,
+ 0.2493928074836731,
+ -2.123481035232544,
+ 0.7983973622322083,
+ 0.4644250273704529,
+ -0.8766101002693176,
+ 0.47171342372894287,
+ 0.46239128708839417,
+ 0.21791590750217438,
+ -0.22664396464824677,
+ 0.4864347577095032,
+ 0.5156933665275574,
+ -0.1641559898853302,
+ 1.6233989000320435,
+ 0.004678055644035339,
+ -0.5138232707977295,
+ 0.09900981187820435,
+ 0.06255614757537842,
+ -0.6223196983337402,
+ -0.32577455043792725,
+ 1.4187380075454712,
+ -1.1604974269866943,
+ -0.6828345656394958,
+ 0.25103798508644104,
+ -0.3572690784931183,
+ 0.17196324467658997,
+ 0.6685596704483032,
+ 0.6195120215415955,
+ -0.017922893166542053,
+ 0.4765907824039459,
+ -0.018835192546248436,
+ -0.09355568140745163,
+ 0.4063834249973297,
+ -1.4994710683822632,
+ 0.136483296751976,
+ 1.300405740737915,
+ 0.11863480508327484,
+ 0.5399994850158691,
+ 0.6800622940063477,
+ -0.14511677622795105,
+ 0.5764105319976807,
+ 0.5081096887588501,
+ -0.19492515921592712,
+ 0.024574369192123413,
+ 0.1347099244594574,
+ -0.30687442421913147,
+ 0.46156924962997437,
+ 0.4777287542819977,
+ 0.06112319231033325,
+ 0.09127715229988098,
+ 0.3240602910518646,
+ -0.5863281488418579,
+ -0.5408147573471069,
+ -0.7097219228744507,
+ -0.7334829568862915,
+ 1.2210979461669922,
+ -0.3921670913696289,
+ 0.7876344323158264,
+ 2.084354877471924,
+ 1.095806360244751,
+ -0.7075610756874084,
+ -0.7708405256271362,
+ -1.538539171218872,
+ -0.6976466774940491,
+ 0.3471590578556061,
+ 1.2494816780090332,
+ -0.23338839411735535,
+ -0.8782811164855957,
+ 0.48067402839660645,
+ 1.2232424020767212,
+ 0.8239429593086243,
+ -1.7273362874984741,
+ 0.7644234895706177,
+ -1.8317281007766724,
+ 0.6032485961914062,
+ 0.429657518863678,
+ -0.649908185005188,
+ -0.5113195776939392,
+ 1.176259160041809,
+ -0.24730892479419708,
+ 0.47775089740753174,
+ 0.8589408993721008,
+ 0.9001994729042053,
+ -0.8712952733039856,
+ -0.21275709569454193,
+ 0.6754519939422607,
+ 0.9435190558433533,
+ 0.7931002974510193,
+ 0.287415087223053,
+ -0.7735494375228882,
+ 0.23884961009025574,
+ 0.24841797351837158,
+ 0.08158199489116669,
+ -0.45580461621284485,
+ 0.7646530270576477,
+ 1.1113866567611694,
+ 0.594235897064209,
+ -0.3471221625804901,
+ -0.5221550464630127,
+ -1.391370177268982,
+ 0.28119128942489624,
+ 0.9827737212181091,
+ 0.6010229587554932,
+ -0.3339395225048065,
+ 1.2770453691482544,
+ -0.06372161954641342,
+ 1.2257575988769531,
+ -1.2213702201843262,
+ -0.5560309290885925,
+ 0.3140774071216583,
+ -1.0398846864700317,
+ -0.6048218607902527,
+ -0.7563148736953735,
+ -0.5904279947280884,
+ -0.6219218969345093,
+ 0.1687023937702179,
+ 0.4885992407798767,
+ 1.2250025272369385,
+ -0.3446846306324005,
+ -1.282979965209961,
+ 0.3295700252056122,
+ -0.40083053708076477,
+ 0.455943763256073,
+ -0.25674623250961304,
+ -0.7313960790634155,
+ -1.235045313835144,
+ 0.29562026262283325,
+ -1.0600389242172241,
+ 0.42210012674331665,
+ 0.9937757253646851,
+ 0.6201568841934204,
+ -1.2073506116867065,
+ -0.5711768269538879,
+ 0.027173534035682678,
+ -1.2699613571166992,
+ -0.7751574516296387,
+ 1.6007161140441895,
+ -0.692531406879425,
+ 0.7753747701644897,
+ -0.10727186501026154,
+ 0.05185773968696594,
+ -0.9306541681289673,
+ -1.709182620048523,
+ -1.0534789562225342,
+ 0.9356924295425415,
+ 0.6947851777076721,
+ -0.22121255099773407,
+ -0.2618025243282318,
+ -0.17481109499931335,
+ 0.9831687211990356,
+ 0.27509039640426636,
+ 0.16995888948440552,
+ 0.48443275690078735,
+ 0.8656259179115295,
+ 0.8270713090896606,
+ 2.2945523262023926,
+ 0.3240739405155182,
+ 1.2839181423187256,
+ 0.2523871958255768,
+ 0.06265738606452942,
+ 0.43499740958213806,
+ -0.10391996800899506,
+ -0.3810189664363861,
+ -0.22489097714424133,
+ -0.567656934261322,
+ 0.13953760266304016,
+ 0.6808078289031982,
+ -0.023665275424718857,
+ -0.03774651139974594,
+ -1.5462980270385742,
+ 1.088631272315979,
+ 0.20240533351898193,
+ -1.0665576457977295,
+ -0.28185927867889404,
+ 0.5440883040428162,
+ -0.5869827270507812,
+ -0.36112338304519653,
+ -0.9770615696907043,
+ 0.07880760729312897,
+ -1.0012643337249756,
+ -1.5881153345108032,
+ -0.46776995062828064,
+ 0.5883002877235413,
+ -0.16112345457077026,
+ -0.24808284640312195,
+ -0.33215299248695374,
+ -0.4368893504142761,
+ -0.02868075668811798,
+ -0.3026158809661865,
+ 1.0200538635253906,
+ 0.291865736246109,
+ 0.9310919642448425,
+ 0.581409752368927,
+ -0.546057939529419,
+ 0.524879515171051,
+ 0.6570712924003601,
+ 0.5286759734153748,
+ 0.3870662450790405,
+ -0.4164666533470154,
+ -0.12284347414970398,
+ 0.19710813462734222,
+ -0.7721859216690063,
+ -0.6469802260398865,
+ 1.2375891208648682,
+ -0.37326401472091675,
+ -0.39890727400779724,
+ 0.6641790270805359,
+ 0.5834370851516724,
+ 0.6254852414131165,
+ 0.07893799245357513,
+ -0.2109708935022354,
+ 0.2365676760673523,
+ 1.2760406732559204,
+ -0.7380690574645996,
+ 0.0009300112724304199,
+ -0.6409996747970581,
+ 0.07987263053655624,
+ -1.9531389474868774,
+ 1.1713699102401733,
+ 0.1237325370311737,
+ 1.7249038219451904,
+ 0.6309413313865662,
+ -0.7468500137329102,
+ -1.1138726472854614,
+ -0.9394726753234863,
+ -3.7820377349853516,
+ 0.46151724457740784,
+ 0.05826108902692795,
+ 0.20348364114761353,
+ 0.17071029543876648,
+ -0.18526019155979156,
+ -1.3943687677383423,
+ 0.32555636763572693,
+ -0.72913658618927,
+ -0.7671301960945129,
+ 0.9695879220962524,
+ -1.4019392728805542,
+ -0.46418872475624084,
+ -0.25414910912513733,
+ -0.4431913197040558,
+ -1.0490243434906006,
+ 0.24334201216697693,
+ 0.1279148906469345,
+ -0.7026715278625488,
+ -0.6428275108337402,
+ -0.2804463505744934,
+ -0.3590877652168274,
+ 1.0215952396392822,
+ 0.5016707181930542,
+ -0.3910573422908783,
+ 0.8320614695549011,
+ 0.3763485252857208,
+ -0.49310803413391113,
+ -1.1201797723770142,
+ -0.7265840172767639,
+ -0.7463105916976929,
+ -0.029654398560523987,
+ -0.34254249930381775,
+ 0.8624041676521301,
+ 0.97520911693573,
+ 2.0151031017303467,
+ -0.3708767294883728,
+ 1.0482693910598755,
+ 0.37151822447776794,
+ 0.09706137329339981,
+ 0.9668493270874023,
+ 0.8147392868995667,
+ -0.3426840007305145,
+ 0.8250681161880493,
+ 0.03863346576690674,
+ -0.5308563113212585,
+ -0.20156222581863403,
+ 0.507265567779541,
+ 0.002127254381775856,
+ -0.29712748527526855,
+ 0.7757361531257629,
+ -0.19089171290397644,
+ 0.42850643396377563,
+ 0.28004562854766846,
+ -1.3021551370620728,
+ 0.13626693189144135,
+ -0.7423058152198792,
+ 0.06263154000043869,
+ 0.5075564980506897,
+ 1.0112563371658325,
+ -1.3361330032348633,
+ -1.0131144523620605,
+ 0.19813723862171173,
+ -0.22786971926689148,
+ -0.5121835470199585,
+ 0.5759762525558472,
+ -0.7650579810142517,
+ -0.294767290353775,
+ 1.0897390842437744,
+ 0.7485554218292236,
+ 0.5945015549659729,
+ 0.12250207364559174,
+ -0.0063647860661149025,
+ -0.28922441601753235,
+ 0.29079297184944153,
+ 1.006470799446106,
+ -0.1439051330089569,
+ -0.04729381203651428,
+ -0.2987516224384308,
+ -0.49369120597839355,
+ 1.1670002937316895,
+ -0.026585234329104424,
+ 0.259719580411911,
+ 0.5665081143379211,
+ -0.5174506306648254,
+ -1.0388915538787842,
+ 0.7399107217788696,
+ 0.2936578392982483,
+ 0.6085819005966187,
+ 6.194907188415527,
+ -0.5770001411437988,
+ 0.3839147686958313,
+ 1.1674697399139404,
+ 1.416517734527588,
+ 0.07473702728748322,
+ -0.03327606990933418,
+ 0.8891542553901672,
+ -0.09443947672843933,
+ -0.3971939980983734,
+ 0.201955184340477,
+ 0.9115464091300964,
+ -0.251933217048645,
+ 0.3614746034145355,
+ -0.052356086671352386,
+ 1.3164006471633911,
+ -0.23863482475280762,
+ -0.710381805896759,
+ 1.8721044063568115,
+ -1.1920024156570435,
+ 0.7447410821914673,
+ 0.613568127155304,
+ -0.3348666727542877,
+ -0.10824287682771683,
+ -0.5018768310546875,
+ -0.688370943069458,
+ 0.905539870262146,
+ 0.29618290066719055,
+ -0.1880929172039032,
+ 0.36740541458129883,
+ -0.4939790368080139,
+ 0.959540069103241,
+ 1.1051442623138428,
+ 1.8321443796157837,
+ -0.18201950192451477,
+ -0.3010824918746948,
+ -1.9887408018112183,
+ -0.5822527408599854,
+ -1.2719582319259644,
+ 0.829010009765625,
+ -1.87843918800354,
+ -0.748754620552063,
+ -0.8558737635612488,
+ -0.5465272068977356,
+ 0.32489755749702454,
+ 0.3755100965499878,
+ 0.6963086128234863,
+ -1.0892913341522217,
+ 0.16806773841381073,
+ -1.03073251247406,
+ 0.16126732528209686,
+ -0.2795880436897278,
+ -0.34550732374191284,
+ 0.7315327525138855,
+ 1.6799505949020386,
+ -0.298748642206192,
+ -0.10102324932813644,
+ -0.3894326686859131,
+ -0.38912326097488403,
+ 1.068023681640625,
+ 1.413797378540039,
+ 0.5793598890304565,
+ -2.080754518508911,
+ -0.4823930263519287,
+ -0.28422123193740845,
+ 1.641163945198059,
+ -0.08332347869873047,
+ -0.6544349193572998,
+ -0.006021645851433277,
+ 0.2979644238948822,
+ 0.14987608790397644,
+ 0.5138081312179565,
+ 0.0443120002746582,
+ 0.45685243606567383,
+ 0.021430209279060364,
+ 0.6212764978408813,
+ -0.11563978344202042,
+ 0.056242428719997406,
+ 0.39644792675971985,
+ -0.3594457507133484,
+ 0.560023307800293,
+ -0.694532036781311,
+ -0.31169214844703674,
+ 0.020577028393745422,
+ 1.1419826745986938,
+ 1.0360088348388672,
+ -0.7227525115013123,
+ 1.3140997886657715,
+ -0.18785305321216583,
+ -0.5239778757095337,
+ -0.5403143167495728,
+ -0.36914607882499695,
+ -1.2211718559265137,
+ -0.5569087266921997,
+ -1.4742093086242676,
+ -1.0310314893722534,
+ 1.180853247642517,
+ -1.0286061763763428,
+ -1.4590305089950562,
+ 0.405783087015152,
+ 0.3641461133956909,
+ -0.5454257726669312,
+ -0.6425659656524658,
+ -0.39605799317359924,
+ 1.5769379138946533,
+ -0.03685519099235535,
+ -0.19973936676979065,
+ -0.16991278529167175,
+ -0.537314772605896,
+ 0.745479166507721,
+ 0.506791889667511,
+ 0.7180879712104797,
+ -0.4205797016620636,
+ 0.2511307895183563,
+ 0.712531328201294,
+ 1.2232130765914917,
+ 0.27316558361053467,
+ -0.64240562915802,
+ 0.6551131010055542,
+ 0.646798312664032,
+ -0.9876407980918884,
+ -0.3957620859146118,
+ -0.07623935490846634,
+ -1.0160032510757446,
+ -1.3389278650283813,
+ -2.240103244781494,
+ 0.1957894116640091,
+ 1.8462226390838623,
+ -0.5673488974571228,
+ 1.1107172966003418,
+ 0.03987126797437668,
+ -0.6862806677818298,
+ 0.5094016194343567,
+ 1.0677545070648193,
+ 2.506639003753662,
+ -0.47667932510375977,
+ 1.4879645109176636,
+ 0.37415239214897156,
+ 0.3308849036693573,
+ 0.4812197685241699,
+ -0.21195590496063232,
+ 0.17899516224861145,
+ -0.9617228507995605,
+ 0.9779950380325317,
+ 0.8397393822669983,
+ 0.37269335985183716,
+ -1.1069875955581665,
+ -0.7985376119613647,
+ -0.3414759933948517,
+ 0.4482644498348236,
+ 0.8973328471183777,
+ 0.8663549423217773,
+ 0.42743372917175293,
+ -1.2652018070220947,
+ 0.2970431447029114,
+ 0.08580581843852997,
+ -0.4786670506000519,
+ -0.543163001537323,
+ -0.9430387020111084,
+ -1.3035871982574463,
+ 0.2007451057434082,
+ 0.7557554841041565,
+ 1.1110846996307373,
+ 1.7965924739837646,
+ -0.8866822123527527,
+ 0.6918076276779175,
+ 0.5577775239944458,
+ 1.4989018440246582,
+ -1.0820714235305786,
+ -0.7783600091934204,
+ 0.049210868775844574,
+ -0.3504630923271179,
+ -0.6263089776039124,
+ 1.0318447351455688,
+ 0.1381978541612625,
+ 0.8774589896202087,
+ 0.25235700607299805,
+ -0.39602699875831604,
+ -1.0150163173675537,
+ -0.21884362399578094,
+ 0.37871286273002625,
+ -0.25979888439178467,
+ -0.39804258942604065,
+ 0.487745463848114,
+ 1.0047438144683838,
+ 0.6178969144821167,
+ 0.4259903132915497,
+ -0.573592483997345,
+ -0.964522659778595,
+ -0.559297502040863,
+ 0.8977447748184204,
+ 1.9902944564819336,
+ -0.08834464102983475,
+ -0.6411166191101074,
+ 0.7904485464096069,
+ -0.1685897707939148,
+ 1.0595210790634155,
+ -0.4209772050380707,
+ 0.1647270917892456,
+ 0.5545513033866882,
+ -1.2752047777175903,
+ -0.964250385761261,
+ -0.8593321442604065,
+ -1.3764748573303223,
+ 0.3948412239551544,
+ 0.0930325910449028,
+ -0.0260622501373291,
+ 0.4061509668827057,
+ -1.1503863334655762,
+ -1.159095048904419,
+ -0.6581990122795105,
+ -0.30745047330856323,
+ -0.3068898916244507,
+ 0.4622524082660675,
+ -0.5813053846359253,
+ -0.06294810771942139,
+ 0.8007695078849792,
+ -0.33780577778816223,
+ -1.275221586227417,
+ -0.9118742942810059,
+ 0.08846805989742279,
+ 0.25676700472831726,
+ 0.745722770690918,
+ -0.6077780723571777,
+ -0.22587566077709198,
+ -1.0347654819488525,
+ 0.3644450306892395,
+ -0.6948992609977722,
+ -0.13427519798278809,
+ -0.5309812426567078,
+ -0.09003414213657379,
+ 0.42663899064064026,
+ -1.6525487899780273,
+ 0.8646001219749451,
+ -0.1854846328496933,
+ -0.1931072175502777,
+ -0.05956513062119484,
+ 0.23483073711395264,
+ -0.011044698767364025,
+ -0.5888601541519165,
+ -0.07166741788387299,
+ -1.0231056213378906,
+ -0.9435427188873291,
+ 0.7989514470100403,
+ 0.08393958956003189,
+ -0.04490777105093002,
+ -0.002748661208897829,
+ -0.5996294617652893,
+ 1.5674428939819336,
+ 1.0339555740356445,
+ -0.370897114276886,
+ 0.5228707790374756,
+ -0.40395957231521606,
+ -1.2017420530319214,
+ 1.1744072437286377,
+ -1.6370912790298462,
+ 0.2509095072746277,
+ -0.6784055233001709,
+ -1.1028109788894653,
+ -0.2690991163253784,
+ -0.6492499709129333,
+ 1.4274982213974,
+ -0.4291064441204071,
+ 0.06825558096170425,
+ -2.477865695953369,
+ -1.1049660444259644,
+ -0.002686314284801483,
+ -1.4266291856765747,
+ -0.4814538061618805,
+ -0.7174290418624878,
+ -1.0827292203903198,
+ 0.02672472596168518,
+ -0.8791593909263611,
+ -1.2974399328231812,
+ 1.8521811962127686,
+ 0.06104155629873276,
+ -1.215127944946289,
+ 0.538224995136261,
+ -0.2303932160139084,
+ 1.0511059761047363,
+ -1.7233822345733643,
+ 1.1355400085449219,
+ -0.5261847972869873,
+ -0.059399910271167755,
+ 0.5083606243133545,
+ -0.08378295600414276,
+ 0.033078424632549286,
+ 0.02023981511592865,
+ 0.10193733125925064,
+ 0.10846303403377533,
+ 1.1153959035873413,
+ -1.0071802139282227,
+ -0.921886146068573,
+ 0.1596774309873581,
+ -0.4212893545627594,
+ -0.2965324819087982,
+ -0.09397707879543304,
+ 0.8180376291275024,
+ -0.3498467803001404,
+ -0.280072420835495,
+ -0.6416040062904358,
+ 1.0991822481155396,
+ -0.1347416639328003,
+ -0.17678305506706238,
+ -0.367784708738327,
+ -0.22307808697223663,
+ 1.1042137145996094,
+ -1.4599350690841675,
+ 1.4685391187667847,
+ 1.099595546722412,
+ -0.2055356204509735,
+ 0.384927362203598,
+ 0.6222187280654907,
+ -0.3611496686935425,
+ 0.5039757490158081,
+ -1.242002248764038,
+ -0.6365364193916321,
+ -0.03429161757230759,
+ 0.36330994963645935,
+ -0.16526713967323303,
+ 0.5197261571884155,
+ 0.20496314764022827,
+ -0.7802163362503052,
+ 0.6717100739479065,
+ -1.2662838697433472,
+ -0.21086262166500092,
+ 1.1354771852493286,
+ -0.06456899642944336,
+ 0.3133887052536011,
+ -0.5204566121101379,
+ -0.1588069498538971,
+ -1.199372410774231,
+ -0.17805013060569763,
+ 0.5704617500305176,
+ 0.7834604382514954,
+ 1.360683798789978,
+ 0.5094046592712402,
+ 0.5307902097702026,
+ 0.5043435096740723,
+ 0.8970277309417725,
+ 1.2573626041412354,
+ 1.082674503326416,
+ 0.8342075943946838,
+ -0.5024387836456299,
+ 0.7172971367835999,
+ 0.6276565194129944,
+ -0.38157889246940613,
+ -0.006978749763220549,
+ -0.13252441585063934,
+ -0.9787423610687256,
+ 0.17808906733989716,
+ 0.9613934755325317,
+ -0.644219696521759,
+ -0.7250137329101562,
+ 0.5920351147651672,
+ 0.26630327105522156,
+ -1.0340155363082886,
+ -0.4906159043312073,
+ 0.18940603733062744,
+ -0.13855555653572083,
+ -0.1517096906900406,
+ 0.40696972608566284,
+ -0.28530651330947876,
+ -0.46262019872665405,
+ -0.26031798124313354,
+ 0.8632172346115112,
+ 0.7440782785415649,
+ -0.4027678072452545,
+ 1.0748411417007446,
+ -0.5608403086662292,
+ -0.5043843984603882,
+ 0.3659976124763489,
+ 0.5867047309875488,
+ 0.6415090560913086,
+ -0.2755189538002014,
+ 0.7332964539527893,
+ -0.0946236327290535,
+ -0.5580562353134155,
+ 0.29392582178115845,
+ -0.1696087121963501,
+ -2.0042061805725098e-06,
+ 0.13343952596187592,
+ 0.20241312682628632,
+ -0.4379172623157501,
+ 0.1382261961698532,
+ -0.8669212460517883,
+ -0.9941999316215515,
+ 0.3370862603187561,
+ 0.12817710638046265,
+ 1.0213394165039062,
+ -0.267333984375,
+ -0.9394173622131348,
+ -0.5742835998535156,
+ 1.1422542333602905,
+ -4.869024753570557,
+ 0.6084731817245483,
+ -0.233817458152771,
+ -0.2653396725654602,
+ -1.459432601928711,
+ 0.6612726449966431,
+ -1.2605855464935303,
+ -1.8477015495300293,
+ 0.9092183709144592,
+ 0.08514857292175293,
+ -0.7935214638710022,
+ 0.2001441866159439,
+ 0.48463574051856995,
+ -1.0371774435043335,
+ 0.07610689103603363,
+ 1.7640315294265747,
+ 0.3881608843803406,
+ -0.6848846673965454,
+ 0.4812469184398651,
+ 1.206042766571045,
+ -0.35225388407707214,
+ -0.39953720569610596,
+ 1.034372091293335,
+ 0.5636081695556641,
+ 0.3521914482116699,
+ -0.26034897565841675,
+ -0.920577883720398,
+ 0.7508916854858398,
+ -1.2657147645950317,
+ -0.07160653918981552,
+ -0.890338659286499,
+ -0.913430392742157,
+ 1.9135348796844482,
+ 1.0236427783966064,
+ 1.185374140739441,
+ 0.38469284772872925,
+ 0.5285742878913879,
+ -0.5469192266464233,
+ -0.5822292566299438,
+ 0.3945576250553131,
+ 1.3172547817230225,
+ 0.1558082401752472,
+ -0.8440479040145874,
+ -0.011868954636156559,
+ 0.5697271227836609,
+ -0.6023492813110352,
+ 0.5113646388053894,
+ -0.061466023325920105,
+ -0.2640046179294586,
+ -0.13673371076583862,
+ 0.4325922429561615,
+ 0.6644980907440186,
+ 0.8210521340370178,
+ 1.5256927013397217,
+ 0.19044089317321777,
+ -0.2748010754585266,
+ -0.8325396180152893,
+ 0.35937151312828064,
+ -0.6278931498527527,
+ 1.087567925453186,
+ -1.3029669523239136,
+ -0.40750613808631897,
+ -1.1462498903274536,
+ -1.5702944993972778,
+ -0.3472147583961487,
+ 0.43767520785331726,
+ -1.8722381591796875,
+ 0.9760292768478394,
+ 0.0659533217549324,
+ 0.9113696813583374,
+ -0.7030785083770752,
+ -0.7938006520271301,
+ 1.2480595111846924,
+ -0.36672499775886536,
+ 0.6410495042800903,
+ 0.9779931306838989,
+ 0.6879757046699524,
+ 0.8552500009536743,
+ -1.009526252746582,
+ -1.4563770294189453,
+ -0.9910153746604919,
+ -0.802282989025116,
+ 0.0692843496799469,
+ 0.5942651629447937,
+ 0.5209999084472656,
+ 0.11654496192932129,
+ -0.9789652824401855,
+ 0.12979036569595337,
+ -1.8587225675582886,
+ 0.7481525540351868,
+ -1.4228144884109497,
+ -1.2946768999099731,
+ 0.8464304804801941,
+ -0.820163369178772,
+ -0.9236893057823181,
+ -0.19381217658519745,
+ -0.8466268181800842,
+ 0.6157459616661072,
+ -1.2225581407546997,
+ -0.4102694094181061,
+ 0.10044257342815399,
+ -0.41642385721206665,
+ 0.6667160987854004,
+ -0.6056645512580872,
+ -0.4992421865463257,
+ -0.1446225643157959,
+ 0.8416131138801575,
+ -0.24704773724079132,
+ -0.3039030432701111,
+ 0.4524341821670532,
+ -0.4945150911808014,
+ -0.29301607608795166,
+ 0.2645684778690338,
+ -0.6721051335334778,
+ -0.5763068199157715,
+ 0.6524356007575989,
+ 0.8123028874397278,
+ -0.4310036599636078,
+ -0.6058747172355652,
+ -0.1390969306230545,
+ 0.7448863387107849,
+ -0.2973679006099701,
+ 0.5105165839195251,
+ -1.627880573272705,
+ 0.5687689781188965,
+ 2.345331907272339,
+ 1.7563060522079468,
+ 0.23374737799167633,
+ 1.280155062675476,
+ -0.6502242684364319,
+ 0.7711663246154785,
+ -1.7452448606491089,
+ 0.18734629452228546,
+ 0.1289832592010498,
+ 0.6650699973106384,
+ -1.127321720123291,
+ 0.024416252970695496,
+ 0.6981655359268188,
+ 0.24179336428642273,
+ -0.48543885350227356,
+ -0.29384273290634155,
+ -0.44712191820144653,
+ -0.7919385433197021,
+ 0.01952875405550003,
+ -0.7314649224281311,
+ 0.22877237200737,
+ -0.6013261079788208,
+ -0.17958539724349976,
+ -0.7073623538017273,
+ -0.9454666972160339,
+ 0.031316742300987244,
+ -0.5626105666160583,
+ 0.5038478374481201,
+ 0.5536696910858154,
+ 1.02278733253479,
+ 0.7940641641616821,
+ -1.0381954908370972,
+ -0.8749781250953674,
+ 0.6850955486297607,
+ 0.19467416405677795,
+ -0.19814278185367584,
+ -0.8501526117324829,
+ -0.5450590252876282,
+ -0.33952268958091736,
+ -0.9303327798843384,
+ -0.5826843976974487,
+ 1.011112093925476,
+ -0.8086044788360596,
+ -0.12162074446678162,
+ -1.28569757938385,
+ 0.05396435409784317,
+ 1.4919064044952393,
+ -0.9909541010856628,
+ -0.6247684955596924,
+ 0.4113932251930237,
+ -1.301491379737854,
+ 0.9537997245788574,
+ 0.350739061832428,
+ 0.5238481163978577,
+ -1.7568365335464478,
+ 0.49810874462127686,
+ 0.4450376033782959,
+ -0.6602912545204163,
+ 1.212199330329895,
+ 0.2422618269920349,
+ 0.433065801858902,
+ -0.31601545214653015,
+ -0.0350949689745903,
+ 0.6756411194801331,
+ 0.1611810177564621,
+ 0.18902599811553955,
+ -0.5621131658554077,
+ 0.5950538516044617,
+ -1.0434973239898682,
+ 0.5551243424415588,
+ 0.02638798952102661,
+ -0.540531575679779,
+ 0.664466142654419,
+ 0.11921173334121704,
+ -0.25214120745658875,
+ -0.39726942777633667,
+ 0.6983642578125,
+ 0.16398881375789642,
+ -0.7350205779075623,
+ -0.8850886821746826,
+ 0.6262645721435547,
+ -0.16728593409061432,
+ -0.49343860149383545,
+ 0.047007255256175995,
+ -0.23484262824058533,
+ -0.27885639667510986,
+ -0.9461032748222351,
+ -0.45609861612319946,
+ 0.6042471528053284,
+ -1.049481749534607,
+ 0.7455303072929382,
+ -0.11048688739538193,
+ -0.360245019197464,
+ 0.24086233973503113,
+ 1.602678894996643,
+ 1.0719988346099854,
+ 0.13030385971069336,
+ -1.0470237731933594,
+ 0.3328997492790222,
+ 0.41787153482437134,
+ 0.5884188413619995,
+ -0.8322633504867554,
+ 0.02669578790664673,
+ -0.32679155468940735,
+ -0.6937607526779175,
+ 0.7264397740364075,
+ 0.6418659687042236,
+ 0.43316158652305603,
+ 1.1398662328720093,
+ 0.9663476943969727,
+ 0.5938557982444763,
+ 0.13377511501312256,
+ 0.29592326283454895,
+ -0.6962518692016602,
+ -0.5026240348815918,
+ 0.6506904363632202,
+ -0.11064735800027847,
+ -0.3151546120643616,
+ 0.4773105978965759
+ ]
+ },
+ {
+ "key": 17,
+ "name": "Catwoman",
+ "type": "movie",
+ "media": "The Batman",
+ "label": [
+ "Adventurous",
+ "Confident",
+ "Independent",
+ "Playful",
+ "Seductive"
+ ],
+ "embedding": [
+ -0.880622386932373,
+ -0.07075387239456177,
+ -0.8197272419929504,
+ -0.40135931968688965,
+ -0.8015583157539368,
+ -0.33508217334747314,
+ -0.04043372720479965,
+ -0.8660350441932678,
+ -0.3505413830280304,
+ 0.32168570160865784,
+ 0.29790186882019043,
+ 0.037472374737262726,
+ -2.0433638095855713,
+ -0.43488436937332153,
+ 1.0573830604553223,
+ 1.4809788465499878,
+ 0.2815093398094177,
+ -0.017695805057883263,
+ -0.5730111002922058,
+ -0.7799152731895447,
+ -0.48837366700172424,
+ -0.002420756733044982,
+ -0.26344960927963257,
+ -0.7365804314613342,
+ -0.7762888669967651,
+ 0.5733296275138855,
+ -0.5618495345115662,
+ 0.3362576961517334,
+ -1.3961848020553589,
+ 0.45611894130706787,
+ 0.10511398315429688,
+ 0.6794145107269287,
+ -0.1484207808971405,
+ -0.27967745065689087,
+ 0.7059666514396667,
+ -0.9914775490760803,
+ 0.32612308859825134,
+ -0.625359833240509,
+ -1.2264527082443237,
+ 1.3127292394638062,
+ 0.9689303636550903,
+ -1.3910537958145142,
+ 0.8574567437171936,
+ -1.0292270183563232,
+ 0.46237853169441223,
+ -0.8712477684020996,
+ 0.37551602721214294,
+ -0.2529383897781372,
+ -0.025172654539346695,
+ 0.843070924282074,
+ 0.10081401467323303,
+ 0.8709864616394043,
+ 1.187308669090271,
+ -0.48666131496429443,
+ 0.11821843683719635,
+ 0.24246525764465332,
+ 0.7753193378448486,
+ -1.1008986234664917,
+ -0.8366994261741638,
+ -1.6540135145187378,
+ -1.082024335861206,
+ 0.3466595411300659,
+ -0.6727313995361328,
+ -0.22845691442489624,
+ 0.0066992491483688354,
+ 1.6333019733428955,
+ -0.2753123641014099,
+ -0.2615129351615906,
+ 0.22835154831409454,
+ -1.4328489303588867,
+ -0.8379018306732178,
+ -0.4655351936817169,
+ -0.8582790493965149,
+ 0.18058641254901886,
+ -2.1061387062072754,
+ 0.30151116847991943,
+ -0.24342219531536102,
+ -0.424102783203125,
+ -0.10631681233644485,
+ 5.443394184112549e-05,
+ 0.4613979756832123,
+ 0.41666629910469055,
+ 0.21832311153411865,
+ 0.550915539264679,
+ 0.1644534468650818,
+ 1.570939064025879,
+ 0.1299668401479721,
+ -0.06811507046222687,
+ -0.016503507271409035,
+ 0.06279608607292175,
+ -0.39808744192123413,
+ -0.6315714716911316,
+ 1.3715406656265259,
+ -1.484723687171936,
+ -0.7991809844970703,
+ 0.600561261177063,
+ 0.054681360721588135,
+ -0.08424749970436096,
+ 1.0108269453048706,
+ 0.7818337678909302,
+ 0.15101702511310577,
+ 0.322992742061615,
+ -0.17005717754364014,
+ -0.1592424511909485,
+ 0.22925063967704773,
+ -1.5451079607009888,
+ -0.24526575207710266,
+ 1.3859626054763794,
+ -0.12538155913352966,
+ 0.4341636896133423,
+ 0.44887423515319824,
+ 0.1355629563331604,
+ 0.45670729875564575,
+ 1.0872673988342285,
+ -0.21358433365821838,
+ -0.518722414970398,
+ -0.3535495400428772,
+ 0.08581838756799698,
+ -0.1252797544002533,
+ 0.18803468346595764,
+ 0.8704196214675903,
+ 0.47677159309387207,
+ 0.04427316039800644,
+ -0.2566327750682831,
+ -0.045861296355724335,
+ -0.27421146631240845,
+ -0.8583822846412659,
+ 0.9292051792144775,
+ -0.8079916834831238,
+ 0.6212797164916992,
+ 1.078771948814392,
+ 0.2645259499549866,
+ -0.6456912755966187,
+ -0.6877629160881042,
+ -0.8614704012870789,
+ -0.6696860790252686,
+ 0.5482471585273743,
+ 1.0429366827011108,
+ -0.37577569484710693,
+ -1.4601927995681763,
+ 0.0031775478273630142,
+ 1.5180593729019165,
+ 0.4939701557159424,
+ -1.3406518697738647,
+ 0.7459125518798828,
+ -1.4605482816696167,
+ 0.8393093347549438,
+ 0.03994198143482208,
+ -0.6750792264938354,
+ -0.06157609447836876,
+ 0.5110968351364136,
+ 0.17146535217761993,
+ 0.5607486963272095,
+ 0.9448522329330444,
+ 0.9427989721298218,
+ -1.3510926961898804,
+ -0.8080342411994934,
+ 0.34703749418258667,
+ 1.8903073072433472,
+ 0.5985698699951172,
+ 0.5099309682846069,
+ -0.9776294231414795,
+ -0.6812385320663452,
+ -0.322430282831192,
+ 0.020537061616778374,
+ -0.04345528408885002,
+ 0.21519717574119568,
+ 1.0119224786758423,
+ 0.5901743173599243,
+ -0.6045325398445129,
+ -0.5218268632888794,
+ -0.7042244672775269,
+ 0.49228477478027344,
+ 0.564620852470398,
+ -0.0692293792963028,
+ -0.11327102780342102,
+ 0.8579818606376648,
+ 0.08095186948776245,
+ 0.8866430521011353,
+ -1.4012384414672852,
+ -0.9228606820106506,
+ 0.9237866401672363,
+ -1.1178154945373535,
+ -0.6304253935813904,
+ -0.507737398147583,
+ -0.37442001700401306,
+ -0.7661753296852112,
+ 0.2250497192144394,
+ 0.6895151734352112,
+ 0.8383191227912903,
+ -0.8327536582946777,
+ -1.3455331325531006,
+ 0.3004671037197113,
+ -0.8566104173660278,
+ 0.7018548846244812,
+ 0.6790885329246521,
+ -0.8857306838035583,
+ -1.3759019374847412,
+ 0.34868124127388,
+ -1.3026999235153198,
+ 0.18342958390712738,
+ 1.0986510515213013,
+ 0.6878448128700256,
+ -1.3798394203186035,
+ -0.7055631875991821,
+ 0.5108727812767029,
+ -1.1174077987670898,
+ -0.29077351093292236,
+ 1.2743045091629028,
+ -0.6143088936805725,
+ 0.3883982002735138,
+ 0.5065717697143555,
+ 0.041885748505592346,
+ -0.8408209085464478,
+ -1.1802890300750732,
+ -1.1169766187667847,
+ 0.4895303547382355,
+ 1.027616024017334,
+ -0.17082661390304565,
+ 0.3280653655529022,
+ -0.03637946397066116,
+ 0.6850289106369019,
+ 0.8240641951560974,
+ 0.607173502445221,
+ -0.3899688422679901,
+ 1.2033584117889404,
+ 0.4799174666404724,
+ 2.099330186843872,
+ 0.3188319802284241,
+ 0.4241397976875305,
+ 1.1278568506240845,
+ -0.06688997149467468,
+ -0.48569947481155396,
+ -0.028426462784409523,
+ -0.6967160105705261,
+ -0.25333836674690247,
+ -0.3869107663631439,
+ -0.053945302963256836,
+ 0.3974861800670624,
+ 0.23871532082557678,
+ -0.3105761706829071,
+ -0.8286904692649841,
+ 1.2389951944351196,
+ 0.44494590163230896,
+ -0.9468995928764343,
+ -0.5687500238418579,
+ 0.7286868691444397,
+ -0.07010113447904587,
+ -0.2855949103832245,
+ -0.8296249508857727,
+ 0.1746288537979126,
+ -0.7870060205459595,
+ -1.2621395587921143,
+ 0.025623232126235962,
+ 0.5267722606658936,
+ 0.19898629188537598,
+ -0.3238997459411621,
+ -0.15801472961902618,
+ 0.06586910784244537,
+ 0.10826791077852249,
+ -0.36780667304992676,
+ 0.5335153341293335,
+ -0.0650964230298996,
+ 0.8795762658119202,
+ 0.14094257354736328,
+ -0.2581520080566406,
+ -0.19963501393795013,
+ 1.34617018699646,
+ 0.5742974877357483,
+ 0.7231605052947998,
+ -0.577908992767334,
+ 0.3583337962627411,
+ 0.04956626892089844,
+ -0.8322741389274597,
+ -0.7432519793510437,
+ 0.8865251541137695,
+ -0.4422951936721802,
+ -0.8264113068580627,
+ 1.3848490715026855,
+ 0.2364056408405304,
+ 0.8990309834480286,
+ -0.020891405642032623,
+ -0.17726360261440277,
+ -0.37017032504081726,
+ 0.8812569379806519,
+ -0.6452850103378296,
+ 0.35788559913635254,
+ -0.23438766598701477,
+ 0.2999902665615082,
+ -2.4953324794769287,
+ 1.4637749195098877,
+ 0.09848969429731369,
+ 1.7206071615219116,
+ 0.4641629159450531,
+ -0.9281103610992432,
+ -1.0002310276031494,
+ -0.31630587577819824,
+ -3.8959455490112305,
+ 0.10867684334516525,
+ -0.1863902360200882,
+ 0.41793641448020935,
+ 0.30715829133987427,
+ 0.2926086485385895,
+ -1.9270578622817993,
+ 0.8133025765419006,
+ -0.48175907135009766,
+ -0.3714033365249634,
+ 0.8545364141464233,
+ -1.6628748178482056,
+ -0.8116050362586975,
+ -0.4331187307834625,
+ -0.5619240403175354,
+ -0.7407258152961731,
+ -0.6363902688026428,
+ 0.44683125615119934,
+ -0.6243417263031006,
+ -0.9291885495185852,
+ -0.5560752153396606,
+ -0.09007015079259872,
+ 2.6082968711853027,
+ -0.026270117610692978,
+ -0.020163612440228462,
+ 0.7759530544281006,
+ -0.0911688357591629,
+ -1.0013835430145264,
+ -0.6459663510322571,
+ -0.6018060445785522,
+ -0.4838622510433197,
+ 0.09314614534378052,
+ -0.39839866757392883,
+ 0.31802353262901306,
+ 0.740043580532074,
+ 1.8787099123001099,
+ -0.384270578622818,
+ 0.8576939105987549,
+ -0.038952864706516266,
+ -0.47568824887275696,
+ 0.8308053016662598,
+ 0.15670426189899445,
+ -0.3704625964164734,
+ 1.1905566453933716,
+ 0.5360912084579468,
+ -0.6659435629844666,
+ -0.0410742349922657,
+ 0.5294268131256104,
+ 0.2447613775730133,
+ -0.4496819078922272,
+ 0.9574057459831238,
+ -0.010961964726448059,
+ 0.42403340339660645,
+ 0.27156367897987366,
+ -1.4329978227615356,
+ -0.20669007301330566,
+ -0.5081124305725098,
+ 0.6735674142837524,
+ 0.7910282015800476,
+ 0.8107274770736694,
+ -1.4669723510742188,
+ -2.254979133605957,
+ 0.05062597990036011,
+ 0.4052182137966156,
+ -0.6426001787185669,
+ -0.11805703490972519,
+ -0.195613294839859,
+ 0.00831511989235878,
+ 0.9374335408210754,
+ 0.599361777305603,
+ 0.5614690184593201,
+ -0.39554741978645325,
+ 0.2174854427576065,
+ -0.7760217189788818,
+ 0.019031602889299393,
+ 1.132780909538269,
+ 0.6568094491958618,
+ 0.009864181280136108,
+ -0.5266321897506714,
+ -0.2823285758495331,
+ 1.3406472206115723,
+ -0.10113497078418732,
+ -0.19530002772808075,
+ 0.6962660551071167,
+ -0.9081497192382812,
+ -1.3390743732452393,
+ 0.6729087829589844,
+ 0.6086804270744324,
+ 0.5517103672027588,
+ 5.874434471130371,
+ 0.5654028058052063,
+ 0.5994809865951538,
+ 0.47684842348098755,
+ 1.7533371448516846,
+ 0.029417894780635834,
+ -0.2541750371456146,
+ 0.6860842108726501,
+ 0.03155314177274704,
+ -0.534437894821167,
+ 0.11856833100318909,
+ 0.4896606206893921,
+ -0.3170850872993469,
+ 0.16271860897541046,
+ 0.21790874004364014,
+ 1.5204511880874634,
+ -0.2445015162229538,
+ -0.747352659702301,
+ 1.8212634325027466,
+ -0.7575507164001465,
+ 0.8934712409973145,
+ 0.07079478353261948,
+ -0.8805890679359436,
+ 0.5818264484405518,
+ -0.5789734125137329,
+ -0.057397499680519104,
+ 1.063726782798767,
+ 0.24983909726142883,
+ -0.10019054263830185,
+ 0.17487581074237823,
+ -0.18628667294979095,
+ 1.412461757659912,
+ 1.0531044006347656,
+ 1.0374149084091187,
+ 0.43677040934562683,
+ -0.2729889452457428,
+ -1.8885148763656616,
+ 0.11743126064538956,
+ -2.0739328861236572,
+ 0.46023863554000854,
+ -1.1480436325073242,
+ -0.8656448721885681,
+ 0.2819852828979492,
+ 0.12666688859462738,
+ -0.28589123487472534,
+ 0.4677242636680603,
+ 0.7728468775749207,
+ -0.866554856300354,
+ 0.0821758508682251,
+ -0.8246530294418335,
+ -0.2704757750034332,
+ -0.21819257736206055,
+ -0.4523806571960449,
+ 1.114180564880371,
+ 2.375495433807373,
+ -0.06732417643070221,
+ 0.047168612480163574,
+ -0.21895462274551392,
+ -0.8066979050636292,
+ 1.2717373371124268,
+ 0.615155816078186,
+ 0.4156017005443573,
+ -2.0160961151123047,
+ 0.08695220947265625,
+ 0.3950933516025543,
+ 1.097909927368164,
+ -0.668784499168396,
+ -0.824608325958252,
+ 0.5779680609703064,
+ 1.2452967166900635,
+ -0.5217548608779907,
+ 0.5951403379440308,
+ -0.03988618776202202,
+ -0.13912856578826904,
+ 0.3576357960700989,
+ -0.1868533045053482,
+ -0.19137287139892578,
+ 0.23405280709266663,
+ 0.8735405206680298,
+ 0.2461579144001007,
+ 0.8966135382652283,
+ -0.6039882302284241,
+ -0.37542685866355896,
+ 1.0512068271636963,
+ 1.2954537868499756,
+ 0.7980077266693115,
+ -0.978020429611206,
+ 1.3350696563720703,
+ -0.4930749833583832,
+ -0.9727095365524292,
+ -0.4556531012058258,
+ -0.196794331073761,
+ -1.1947662830352783,
+ -0.18209321796894073,
+ -1.074289083480835,
+ -1.1810855865478516,
+ 1.099524736404419,
+ -1.0633236169815063,
+ -1.867701530456543,
+ -0.4411814510822296,
+ 1.0989388227462769,
+ -0.12061531841754913,
+ -0.6256711483001709,
+ -0.26439106464385986,
+ 0.9330839514732361,
+ -0.4194035232067108,
+ -0.17549380660057068,
+ -0.834073543548584,
+ -0.15079990029335022,
+ 0.957001268863678,
+ 0.16157138347625732,
+ 0.4882625937461853,
+ -0.10766858607530594,
+ 0.25572851300239563,
+ 0.04527577757835388,
+ 0.7243369221687317,
+ 0.006650399416685104,
+ -0.5364977717399597,
+ 1.2082037925720215,
+ 0.12637770175933838,
+ -0.2877070903778076,
+ -0.910185694694519,
+ -1.057441234588623,
+ -1.2303165197372437,
+ -1.089009165763855,
+ -1.8462741374969482,
+ -0.0008099786937236786,
+ 1.4158445596694946,
+ -0.052438005805015564,
+ 1.1581475734710693,
+ -0.07870933413505554,
+ -0.4762241840362549,
+ 0.8585748076438904,
+ 0.6025940179824829,
+ 2.1772968769073486,
+ -0.3666825294494629,
+ 1.5467008352279663,
+ 0.47149085998535156,
+ 0.683458685874939,
+ -0.014007475227117538,
+ -0.14551934599876404,
+ 0.31171712279319763,
+ -0.8478516936302185,
+ 1.0653349161148071,
+ 0.809637188911438,
+ 0.7436988353729248,
+ -1.1829142570495605,
+ -0.4226347506046295,
+ -0.570020854473114,
+ 0.6856805086135864,
+ 0.457559734582901,
+ 0.7810066342353821,
+ 0.9907718896865845,
+ -1.3449596166610718,
+ 0.2593420743942261,
+ -0.14247746765613556,
+ -0.37580883502960205,
+ -0.21100938320159912,
+ -0.08618906140327454,
+ -1.171686053276062,
+ 0.4281359910964966,
+ 0.5109826922416687,
+ 0.821038007736206,
+ 2.5403692722320557,
+ -0.7973832488059998,
+ 1.568108081817627,
+ 0.2965104877948761,
+ 1.1909878253936768,
+ -1.0916595458984375,
+ -1.2496644258499146,
+ -0.05034293979406357,
+ 0.1996820569038391,
+ -0.873664379119873,
+ 0.7723275423049927,
+ 0.6169474124908447,
+ 0.40105903148651123,
+ 0.44036468863487244,
+ -0.045704763382673264,
+ -0.6153852343559265,
+ -0.8506728410720825,
+ 0.061213500797748566,
+ -0.28075918555259705,
+ -0.8465104699134827,
+ 0.01985154300928116,
+ 1.6598272323608398,
+ 0.09218645095825195,
+ 0.24700704216957092,
+ -0.8809565305709839,
+ -0.13494548201560974,
+ -1.111053228378296,
+ 0.7217583060264587,
+ 1.8767080307006836,
+ 0.06170576065778732,
+ -0.6970926523208618,
+ 0.20418131351470947,
+ -1.1469265222549438,
+ -0.014855185523629189,
+ -0.011182431131601334,
+ -0.5217799544334412,
+ 1.077067494392395,
+ -0.8470372557640076,
+ -0.822166383266449,
+ -0.6172537207603455,
+ -0.807914137840271,
+ 0.34424859285354614,
+ 0.3402147591114044,
+ 0.06285557150840759,
+ 0.585016131401062,
+ -0.9014080166816711,
+ -0.953913688659668,
+ -0.8222425580024719,
+ 0.10198771953582764,
+ -0.35529059171676636,
+ 0.016030166298151016,
+ -0.591812789440155,
+ 0.0116504468023777,
+ 0.05319060757756233,
+ -0.22171898186206818,
+ -1.1172895431518555,
+ -1.1288864612579346,
+ -0.3109971284866333,
+ 0.4396013617515564,
+ 1.030508041381836,
+ -0.40439844131469727,
+ -0.2762988805770874,
+ -1.1368227005004883,
+ 0.9035168886184692,
+ -0.42714786529541016,
+ -0.0383109487593174,
+ 0.1635923832654953,
+ -0.05674898624420166,
+ -0.2790219485759735,
+ -1.4909683465957642,
+ 0.6645395755767822,
+ 0.07732874155044556,
+ -0.3143181800842285,
+ 0.10017725825309753,
+ 0.7909790277481079,
+ -0.46045196056365967,
+ -0.02696175128221512,
+ -0.5182919502258301,
+ -1.3839564323425293,
+ -0.7772744297981262,
+ 1.0247597694396973,
+ -0.2906374931335449,
+ 0.5867058038711548,
+ -0.41360464692115784,
+ -1.075089693069458,
+ 1.1323765516281128,
+ 0.728457510471344,
+ -0.34148359298706055,
+ 0.27603667974472046,
+ -0.23549741506576538,
+ -0.7252324819564819,
+ 0.8393440246582031,
+ -1.4620088338851929,
+ 0.3662962019443512,
+ -0.7539744973182678,
+ -0.48375752568244934,
+ -0.3234019875526428,
+ -0.9951149225234985,
+ 1.5166281461715698,
+ 0.012876816093921661,
+ 0.5661977529525757,
+ -1.8800039291381836,
+ -0.6675612926483154,
+ 0.590839147567749,
+ -1.2291845083236694,
+ -0.7729732394218445,
+ -0.14114688336849213,
+ -1.5476481914520264,
+ 0.06498311460018158,
+ -1.0630441904067993,
+ -1.589996576309204,
+ 1.1024316549301147,
+ -0.09549595415592194,
+ -1.2822896242141724,
+ 0.31641048192977905,
+ -0.10342258960008621,
+ 1.3383684158325195,
+ -0.9665725827217102,
+ 1.440258502960205,
+ -0.7396871447563171,
+ -0.34955576062202454,
+ 0.0381413996219635,
+ -0.1598864197731018,
+ 0.22803306579589844,
+ -0.269861102104187,
+ -0.2625207006931305,
+ 0.171461284160614,
+ 0.9277570247650146,
+ -1.144249439239502,
+ -0.5807690024375916,
+ -0.2723384201526642,
+ -0.14985428750514984,
+ -0.18235716223716736,
+ -0.7068029642105103,
+ 0.6107451319694519,
+ -0.40005800127983093,
+ -0.22689209878444672,
+ -0.825421929359436,
+ 0.47799915075302124,
+ 0.14007329940795898,
+ 0.12166444957256317,
+ -0.4795127213001251,
+ -0.2394522726535797,
+ 1.2318142652511597,
+ -0.777434229850769,
+ 0.638252317905426,
+ 0.5668401718139648,
+ -0.110868901014328,
+ 0.20126400887966156,
+ 0.4162181615829468,
+ -1.0112237930297852,
+ 0.7794474959373474,
+ -1.1066925525665283,
+ -0.35559412837028503,
+ 0.24705705046653748,
+ 0.13284388184547424,
+ 0.09666509926319122,
+ 0.3495433032512665,
+ -0.33659160137176514,
+ -1.1320067644119263,
+ -0.2614836096763611,
+ -0.6134761571884155,
+ -0.0048255883157253265,
+ 0.4950040578842163,
+ -0.13089290261268616,
+ 0.2744670808315277,
+ -0.4087161123752594,
+ -0.16062813997268677,
+ -0.8161422610282898,
+ -0.4009348750114441,
+ 0.04310343414545059,
+ 0.6444856524467468,
+ 1.874445915222168,
+ 0.27547118067741394,
+ -0.012311965227127075,
+ 0.44497454166412354,
+ 0.8456379175186157,
+ 0.5372501611709595,
+ 1.277125358581543,
+ 0.9780322313308716,
+ -0.2500765323638916,
+ 0.6794389486312866,
+ -0.048136673867702484,
+ -0.3371119499206543,
+ -0.21135227382183075,
+ 0.08789698779582977,
+ -1.248308777809143,
+ -0.052024129778146744,
+ 0.8037660717964172,
+ -0.6218627691268921,
+ -1.007185459136963,
+ 0.8268725275993347,
+ 0.9349435567855835,
+ -1.0319080352783203,
+ -0.28590863943099976,
+ 0.36891403794288635,
+ 0.1921725571155548,
+ -0.19350016117095947,
+ 0.5443400740623474,
+ -0.2561803162097931,
+ -0.5956429243087769,
+ -0.31891176104545593,
+ 0.7854181528091431,
+ 0.8551070690155029,
+ -0.8148818016052246,
+ 0.8962065577507019,
+ -0.3577210009098053,
+ -0.008721627295017242,
+ 0.2719583213329315,
+ 0.25995737314224243,
+ 1.252769947052002,
+ -1.0410265922546387,
+ 0.7959873676300049,
+ -0.6565117239952087,
+ -0.5059196949005127,
+ 0.6865174174308777,
+ 0.04145502299070358,
+ 0.22462710738182068,
+ 0.6112893223762512,
+ 0.24168211221694946,
+ -0.6847336888313293,
+ 0.5852003693580627,
+ -0.6814654469490051,
+ -0.9687122702598572,
+ 0.37702664732933044,
+ -0.1704709231853485,
+ 1.3516504764556885,
+ -0.34823793172836304,
+ -1.1820785999298096,
+ -1.1607568264007568,
+ 0.4374985098838806,
+ -4.334804058074951,
+ 0.49729329347610474,
+ 0.20594657957553864,
+ -0.057537857443094254,
+ -1.0704212188720703,
+ 0.5130143761634827,
+ -0.5664857625961304,
+ -1.6329593658447266,
+ 0.8828795552253723,
+ -0.1546720266342163,
+ -1.3438386917114258,
+ -0.3727869987487793,
+ 0.5834194421768188,
+ -0.8752274513244629,
+ 0.5587953925132751,
+ 1.1823323965072632,
+ 0.2769773602485657,
+ -0.6869024038314819,
+ 0.4095762073993683,
+ 0.9286298751831055,
+ 0.2647119164466858,
+ -0.21036919951438904,
+ 1.2955138683319092,
+ 0.532937228679657,
+ 0.28029024600982666,
+ -0.32293158769607544,
+ -0.4939655363559723,
+ 0.6631690859794617,
+ -0.8634516000747681,
+ -0.6172829866409302,
+ -1.2043977975845337,
+ -0.9845540523529053,
+ 1.6081401109695435,
+ 1.3683924674987793,
+ 1.5490460395812988,
+ 0.2880910038948059,
+ 0.6929376721382141,
+ -0.35741090774536133,
+ -0.8727887272834778,
+ 0.07206891477108002,
+ 0.5819351077079773,
+ 0.6205651164054871,
+ -0.25394314527511597,
+ -0.3851177990436554,
+ 0.5217066407203674,
+ -0.38359618186950684,
+ 1.000003695487976,
+ -0.006620645523071289,
+ -0.8377508521080017,
+ 0.21384774148464203,
+ 0.29889020323753357,
+ 0.2909327745437622,
+ 0.8220571279525757,
+ 1.6142641305923462,
+ 0.6666500568389893,
+ -0.219032421708107,
+ -0.6738306283950806,
+ 0.3771076500415802,
+ -0.4213312566280365,
+ 1.2867279052734375,
+ -1.3919488191604614,
+ -0.2671145498752594,
+ -1.158636450767517,
+ -1.0735645294189453,
+ -0.23770670592784882,
+ 0.25357767939567566,
+ -1.3840450048446655,
+ 0.5925887823104858,
+ 0.21503987908363342,
+ 0.8113462328910828,
+ -0.5510501861572266,
+ -0.8904651999473572,
+ 0.7056286334991455,
+ -0.6454086303710938,
+ 0.8238071799278259,
+ 1.1935343742370605,
+ 1.0049781799316406,
+ 0.27374202013015747,
+ -1.9652721881866455,
+ -1.6971732378005981,
+ -0.8929206132888794,
+ -0.7478305697441101,
+ 0.3231853246688843,
+ 0.7538754940032959,
+ 0.14977584779262543,
+ 0.2773221731185913,
+ -1.2055584192276,
+ 0.42560678720474243,
+ -2.159189462661743,
+ 1.134587049484253,
+ -1.7164244651794434,
+ -1.2057325839996338,
+ 1.246342658996582,
+ -0.6036016345024109,
+ -1.272395133972168,
+ 1.0363143682479858,
+ -0.9585619568824768,
+ 0.771514356136322,
+ -0.8332194089889526,
+ -0.29197070002555847,
+ -0.2065296173095703,
+ -0.564405620098114,
+ 0.7427123188972473,
+ -0.6366246938705444,
+ -0.5481564998626709,
+ 0.010799556970596313,
+ 0.5303024053573608,
+ -0.4979032278060913,
+ -0.3757571280002594,
+ 0.7899371385574341,
+ -0.8595147728919983,
+ -0.5250003337860107,
+ 0.47173774242401123,
+ -0.3305937945842743,
+ -0.34614455699920654,
+ 0.39239174127578735,
+ 0.49044954776763916,
+ -0.19119970500469208,
+ -0.33733105659484863,
+ 0.15452295541763306,
+ 0.46664685010910034,
+ -0.26242929697036743,
+ 0.4468558132648468,
+ -1.6176499128341675,
+ 0.12153680622577667,
+ 2.300882577896118,
+ 1.081842064857483,
+ 0.6534781455993652,
+ 1.235882043838501,
+ -0.04539830982685089,
+ 0.7779932618141174,
+ -1.3630809783935547,
+ 0.21968349814414978,
+ -0.07100561261177063,
+ 0.9178058505058289,
+ -1.6368082761764526,
+ 0.027098286896944046,
+ 0.49148374795913696,
+ 0.15434107184410095,
+ -0.6022444367408752,
+ -0.8585063815116882,
+ -0.09163914620876312,
+ -0.6145591139793396,
+ 0.06097526103258133,
+ -0.7783713936805725,
+ 1.0526539087295532,
+ -0.6828756332397461,
+ 0.11523158103227615,
+ -1.2871503829956055,
+ -0.964673638343811,
+ 0.22955840826034546,
+ -0.2535379230976105,
+ 0.2974774241447449,
+ 0.6036083102226257,
+ 1.1227225065231323,
+ 1.2306053638458252,
+ -0.49092844128608704,
+ -0.701280415058136,
+ 0.8448666930198669,
+ 0.41431787610054016,
+ -0.32522907853126526,
+ -0.4198589324951172,
+ -0.44281476736068726,
+ 0.46738696098327637,
+ -0.5651697516441345,
+ -0.3726682662963867,
+ 0.8699941039085388,
+ -0.7257691025733948,
+ 0.10890715569257736,
+ -1.7437916994094849,
+ -0.10561859607696533,
+ 1.4021183252334595,
+ -0.7427036166191101,
+ 0.10164694488048553,
+ 0.3296104073524475,
+ -0.8567050099372864,
+ 0.42700719833374023,
+ 0.5283975601196289,
+ 0.9403742551803589,
+ -1.008896827697754,
+ 0.7597172856330872,
+ 0.4560411274433136,
+ -0.2737365961074829,
+ 1.2720874547958374,
+ 0.18614953756332397,
+ 0.3951440751552582,
+ -0.3553956151008606,
+ -0.493001252412796,
+ 0.07719279825687408,
+ 0.09032164514064789,
+ -0.21639984846115112,
+ -1.0252907276153564,
+ 0.5602704882621765,
+ -1.1888704299926758,
+ 0.8417981863021851,
+ 0.1852671205997467,
+ -0.9091607332229614,
+ 0.5303894281387329,
+ 0.4694991111755371,
+ -0.3999454379081726,
+ -0.19977626204490662,
+ 0.14605118334293365,
+ -0.1977997124195099,
+ -0.3414551019668579,
+ -1.03495454788208,
+ 0.2485663890838623,
+ -0.18928393721580505,
+ -0.17801086604595184,
+ -0.2734203338623047,
+ -0.027391446754336357,
+ -0.8397859334945679,
+ -0.49337509274482727,
+ -0.8994761109352112,
+ 0.8651769757270813,
+ -0.8766759634017944,
+ 1.2188585996627808,
+ -0.019074108451604843,
+ -0.20139697194099426,
+ 0.2947976291179657,
+ 1.604719877243042,
+ 1.1099827289581299,
+ -0.29270702600479126,
+ -1.3235677480697632,
+ 0.4924805164337158,
+ 0.27150028944015503,
+ 0.9418960809707642,
+ -1.0701673030853271,
+ 0.4506682753562927,
+ 0.13393308222293854,
+ -0.9899198412895203,
+ 0.343801885843277,
+ 0.6052469611167908,
+ 0.19472917914390564,
+ 1.1224148273468018,
+ 1.1351760625839233,
+ 0.8488110303878784,
+ 0.08837895095348358,
+ -0.4841694235801697,
+ -0.8372300267219543,
+ -0.3060922920703888,
+ 0.5207930207252502,
+ -0.3146689534187317,
+ -0.05020396411418915,
+ 0.06844863295555115
+ ]
+ },
+ {
+ "key": 18,
+ "name": "Mike Lane",
+ "type": "movie",
+ "media": "Magic Mike",
+ "label": [
+ "Charming",
+ "Confident",
+ "Dominant",
+ "Hardworking",
+ "Sensual"
+ ],
+ "embedding": [
+ -1.090874433517456,
+ 0.21602949500083923,
+ -0.7440161108970642,
+ -0.8863129019737244,
+ -0.8580058217048645,
+ -0.40409064292907715,
+ -0.09452677518129349,
+ -0.27846619486808777,
+ -0.6185575723648071,
+ 0.2572769820690155,
+ 0.3949401378631592,
+ 0.01632930338382721,
+ -1.057199239730835,
+ -0.5679600238800049,
+ 1.0565462112426758,
+ 0.7675362825393677,
+ 0.23522132635116577,
+ 0.10129238665103912,
+ -0.5467679500579834,
+ -0.6851991415023804,
+ -1.3226585388183594,
+ 0.19178105890750885,
+ -0.2012280374765396,
+ -0.07084120064973831,
+ -1.1340042352676392,
+ 0.8003479242324829,
+ -0.29867982864379883,
+ 0.014613054692745209,
+ -0.847143828868866,
+ 0.3916896879673004,
+ 0.2583487331867218,
+ 0.2053406983613968,
+ 1.0520011186599731,
+ -0.7797490954399109,
+ 0.5832517743110657,
+ -0.2674218714237213,
+ 0.7223209738731384,
+ -0.12644357979297638,
+ -1.1960678100585938,
+ 0.8730174899101257,
+ 0.7391819953918457,
+ -1.122290849685669,
+ 0.8567198514938354,
+ -1.0468878746032715,
+ 0.7101665735244751,
+ -0.4906790852546692,
+ 0.30572399497032166,
+ -0.5734811425209045,
+ 0.22774550318717957,
+ 0.42149975895881653,
+ -0.48855456709861755,
+ -0.04926670715212822,
+ 1.351715326309204,
+ -0.14982031285762787,
+ 0.4825596213340759,
+ -0.5326887965202332,
+ 0.6719846725463867,
+ -1.6781504154205322,
+ -0.21192102134227753,
+ -1.7800064086914062,
+ -1.5554291009902954,
+ 0.6292581558227539,
+ 0.07941744476556778,
+ -0.1642054319381714,
+ 0.25416773557662964,
+ 1.6492220163345337,
+ 0.10305540263652802,
+ 0.02781405672430992,
+ -0.004767332226037979,
+ -1.8175859451293945,
+ -0.5522432327270508,
+ -0.1290431022644043,
+ -0.29639798402786255,
+ 0.08025725185871124,
+ -1.9258214235305786,
+ 0.8749417066574097,
+ 0.4658539891242981,
+ -0.2970984876155853,
+ -1.2509400844573975,
+ 0.7811586856842041,
+ 0.2795569598674774,
+ 0.26831987500190735,
+ 0.8215066194534302,
+ -0.05445408821105957,
+ -1.526917815208435,
+ 0.9231329560279846,
+ 0.27323994040489197,
+ 0.11615703999996185,
+ -0.2987705171108246,
+ 0.0001675337553024292,
+ -0.8680211305618286,
+ 0.3283122181892395,
+ -0.6364237070083618,
+ -1.2571256160736084,
+ -0.9059217572212219,
+ -0.09228109568357468,
+ -0.5808534622192383,
+ -0.3291694223880768,
+ 0.976537823677063,
+ 0.9760543704032898,
+ -0.48914188146591187,
+ 0.2000913769006729,
+ -0.1146765798330307,
+ 0.08458118885755539,
+ -0.11110129952430725,
+ -2.0472116470336914,
+ -0.41492339968681335,
+ 1.0788321495056152,
+ 0.38981449604034424,
+ 0.07469188421964645,
+ 0.6899549961090088,
+ -0.20418569445610046,
+ 0.46736517548561096,
+ 1.3193985223770142,
+ 0.10953765362501144,
+ 0.6012716889381409,
+ 0.03177370876073837,
+ -0.13158193230628967,
+ -0.13580842316150665,
+ -0.04898554086685181,
+ 1.0354970693588257,
+ -0.08883729577064514,
+ -0.04484796151518822,
+ -0.20679570734500885,
+ -0.5781501531600952,
+ -1.0044677257537842,
+ -0.26398736238479614,
+ 0.7713654041290283,
+ -0.7991473078727722,
+ 0.7132921814918518,
+ 1.4320517778396606,
+ 0.9095866680145264,
+ -0.03379691019654274,
+ -1.3008350133895874,
+ -0.44028612971305847,
+ -0.1554778665304184,
+ 0.16063742339611053,
+ 0.1913609653711319,
+ -0.14167821407318115,
+ -0.8441856503486633,
+ 0.5104994773864746,
+ 1.1105213165283203,
+ 0.41280999779701233,
+ -1.5737969875335693,
+ 0.12715183198451996,
+ -1.4161816835403442,
+ 0.5244031548500061,
+ 0.11551535129547119,
+ -0.17014780640602112,
+ -0.19460076093673706,
+ 1.313503623008728,
+ -0.35649043321609497,
+ 0.3992081582546234,
+ 1.178806185722351,
+ 0.855068564414978,
+ -1.7746549844741821,
+ -0.15600331127643585,
+ 1.6016920804977417,
+ 0.8702362179756165,
+ 0.4476475715637207,
+ 0.6067231893539429,
+ -0.5660803318023682,
+ 0.959953248500824,
+ 0.5052165985107422,
+ 0.015107202343642712,
+ -0.6602649688720703,
+ 1.2307296991348267,
+ 0.9023353457450867,
+ 0.15090909600257874,
+ -0.569074809551239,
+ 0.34825608134269714,
+ -1.7559633255004883,
+ 0.47053563594818115,
+ 0.7508547306060791,
+ 1.2332208156585693,
+ -0.10346636176109314,
+ 2.3178277015686035,
+ 0.4362712800502777,
+ 0.20200039446353912,
+ -0.9532385468482971,
+ -1.1837416887283325,
+ 0.5549737811088562,
+ -0.3640034794807434,
+ 0.32197338342666626,
+ -0.9771146774291992,
+ -0.6787583827972412,
+ -0.36691945791244507,
+ -0.5192830562591553,
+ 0.7546937465667725,
+ 1.4600292444229126,
+ -0.47025266289711,
+ -1.4201358556747437,
+ -0.5531973838806152,
+ -0.6742145419120789,
+ 1.5567362308502197,
+ 0.4221285283565521,
+ 0.19925722479820251,
+ -1.4391541481018066,
+ 0.6788032054901123,
+ -1.9574286937713623,
+ 0.9059946537017822,
+ 1.0249069929122925,
+ 0.8396715521812439,
+ -1.1845272779464722,
+ -1.0812188386917114,
+ -0.030841916799545288,
+ -1.4953829050064087,
+ -0.22901670634746552,
+ 0.5528439879417419,
+ -0.6850248575210571,
+ 0.520865797996521,
+ 0.30759501457214355,
+ 0.18921032547950745,
+ -0.6713818907737732,
+ -0.9028996229171753,
+ -0.8620323538780212,
+ -1.0881282091140747,
+ 0.3947489857673645,
+ -0.6514309644699097,
+ -0.35772961378097534,
+ 0.7530823945999146,
+ 0.18034516274929047,
+ 1.3001770973205566,
+ 0.5701781511306763,
+ -0.10487272590398788,
+ 0.21710576117038727,
+ 0.836513102054596,
+ 1.6264150142669678,
+ 0.4211958646774292,
+ -0.11208788305521011,
+ 0.6107739806175232,
+ 0.0040769800543785095,
+ 0.32878535985946655,
+ -0.07754429429769516,
+ -0.28384438157081604,
+ -0.4926798641681671,
+ -1.2669873237609863,
+ 0.20757214725017548,
+ 1.0952916145324707,
+ 0.27883151173591614,
+ -0.08525293320417404,
+ -0.7483946681022644,
+ 1.6997084617614746,
+ -1.1148600578308105,
+ -1.1797236204147339,
+ 0.4564861059188843,
+ 0.8801552653312683,
+ 0.22828169167041779,
+ 0.04737686738371849,
+ -0.43960291147232056,
+ 0.040880151093006134,
+ -0.32771268486976624,
+ -1.64291512966156,
+ -1.2417733669281006,
+ 1.1778203248977661,
+ 0.8019759058952332,
+ 0.23858791589736938,
+ -0.252899169921875,
+ -0.13566485047340393,
+ 0.28216108679771423,
+ 0.11506696045398712,
+ 0.4948362112045288,
+ -0.020855899900197983,
+ 1.103140950202942,
+ 0.5272207856178284,
+ -0.569555401802063,
+ 0.1970849633216858,
+ 0.21204453706741333,
+ 0.045653387904167175,
+ 1.2044283151626587,
+ -0.46093159914016724,
+ -0.45087873935699463,
+ 0.11832969635725021,
+ -1.0029983520507812,
+ -0.4499569535255432,
+ 1.1199904680252075,
+ -0.26529303193092346,
+ -0.6345898509025574,
+ 0.9805858135223389,
+ -0.1283225417137146,
+ 1.4269813299179077,
+ 0.9281122088432312,
+ 0.2624029517173767,
+ 0.10966169834136963,
+ 0.8407990336418152,
+ -0.27910149097442627,
+ -0.13131645321846008,
+ -0.8897615671157837,
+ 1.0327320098876953,
+ -2.211001396179199,
+ 0.11244311928749084,
+ -0.25741273164749146,
+ 1.3748530149459839,
+ 0.2301182746887207,
+ -0.5353585481643677,
+ -0.476659893989563,
+ -0.9074398875236511,
+ -3.9676780700683594,
+ 0.40575096011161804,
+ -0.7380208373069763,
+ 0.44117471575737,
+ 0.19437068700790405,
+ -0.397212952375412,
+ -0.6541749238967896,
+ 0.32374998927116394,
+ -1.258428692817688,
+ -0.8441944718360901,
+ 1.0705798864364624,
+ -1.0678790807724,
+ -0.8004123568534851,
+ 0.2361288070678711,
+ -0.8195736408233643,
+ 0.0006794509245082736,
+ -0.6794986724853516,
+ -0.6852233409881592,
+ 0.6456794738769531,
+ -0.621972382068634,
+ -0.49158328771591187,
+ -0.12217939645051956,
+ 2.3445401191711426,
+ 0.2714262902736664,
+ 0.4339670240879059,
+ 0.5836766362190247,
+ 0.056553952395915985,
+ -1.3461068868637085,
+ -0.8669429421424866,
+ -0.0909077525138855,
+ -0.34065428376197815,
+ 0.4817802906036377,
+ -0.3906211853027344,
+ 1.0209009647369385,
+ 0.2944739758968353,
+ 1.4105960130691528,
+ -0.24813097715377808,
+ -0.13689690828323364,
+ -0.25472745299339294,
+ -0.2762170135974884,
+ 0.4558761715888977,
+ 0.013898022472858429,
+ -1.0423210859298706,
+ 0.6273777484893799,
+ -0.07383215427398682,
+ -0.002858375199139118,
+ 0.04533477872610092,
+ 0.8791593909263611,
+ -0.04077020287513733,
+ -0.3548511564731598,
+ 0.5279822945594788,
+ -0.5081580877304077,
+ 0.19673439860343933,
+ 0.3719768822193146,
+ -1.821521520614624,
+ -0.17353181540966034,
+ -0.6802151799201965,
+ 0.03213890641927719,
+ 0.6000835299491882,
+ 0.6920182108879089,
+ -0.38444095849990845,
+ -1.299757719039917,
+ 0.472005695104599,
+ 1.0411080121994019,
+ -0.4100780785083771,
+ 0.0013554878532886505,
+ -0.6579568982124329,
+ 0.4379306435585022,
+ 0.8434627056121826,
+ 0.5439614653587341,
+ 0.4931379556655884,
+ -0.4998503625392914,
+ -0.42834383249282837,
+ -0.4674754738807678,
+ -0.05945040285587311,
+ 0.21129700541496277,
+ -0.2549412250518799,
+ -0.001120980829000473,
+ -0.5294567346572876,
+ -1.1639569997787476,
+ 0.7910628318786621,
+ -0.13866005837917328,
+ -0.511488676071167,
+ 1.3514232635498047,
+ -0.8162870407104492,
+ -0.720319390296936,
+ 0.3540878891944885,
+ 0.9638606905937195,
+ 1.2180354595184326,
+ 5.966767311096191,
+ 0.7168893218040466,
+ 0.8577901721000671,
+ 0.5393038392066956,
+ 0.7984666228294373,
+ 0.29722923040390015,
+ -0.5302497148513794,
+ 0.16670489311218262,
+ 0.11031670868396759,
+ -0.4705656170845032,
+ 0.9608045816421509,
+ 0.4788830876350403,
+ -0.14711958169937134,
+ 0.491843581199646,
+ 0.08696895837783813,
+ 0.9170225858688354,
+ -0.7445663213729858,
+ -1.0667359828948975,
+ 1.897341251373291,
+ -0.41385510563850403,
+ 1.1849212646484375,
+ -0.5771185755729675,
+ -0.06158563867211342,
+ -0.0425415113568306,
+ -0.8848284482955933,
+ -0.535661518573761,
+ 0.4303120970726013,
+ 0.507279634475708,
+ -1.0006120204925537,
+ 0.49940234422683716,
+ -0.7473857998847961,
+ 1.5843335390090942,
+ 1.998028039932251,
+ 1.6420091390609741,
+ 0.4590435028076172,
+ -1.215680480003357,
+ -1.5790777206420898,
+ 0.3961420953273773,
+ -1.712849736213684,
+ 0.9704121947288513,
+ -1.3608330488204956,
+ -0.3937271237373352,
+ -0.1920054852962494,
+ -1.1303755044937134,
+ -0.7523046135902405,
+ 0.7732207179069519,
+ 0.5332093834877014,
+ -0.517056405544281,
+ 0.18911872804164886,
+ -1.0429832935333252,
+ -0.4839089810848236,
+ -0.7371753454208374,
+ -0.18823479115962982,
+ 0.10115548968315125,
+ 1.7448954582214355,
+ -0.35200434923171997,
+ -0.9617781043052673,
+ -0.46392402052879333,
+ -0.256003737449646,
+ 1.889769196510315,
+ 1.221535563468933,
+ 1.0069409608840942,
+ -1.4336531162261963,
+ -0.4448584020137787,
+ 0.2090792953968048,
+ 1.492275595664978,
+ -0.7717478275299072,
+ -0.026563497260212898,
+ 0.7903319597244263,
+ -0.03615955635905266,
+ -0.503620982170105,
+ 0.4541374146938324,
+ -0.015563507564365864,
+ 0.13978205621242523,
+ 0.05488866567611694,
+ 0.46361809968948364,
+ 0.4023011326789856,
+ 0.9780953526496887,
+ 1.0991733074188232,
+ 0.8500968813896179,
+ -0.16361691057682037,
+ -0.2064724564552307,
+ -1.1607636213302612,
+ 0.42102381587028503,
+ 0.8135489821434021,
+ 0.4743415117263794,
+ -1.0984773635864258,
+ 0.502933919429779,
+ 0.7050679326057434,
+ -0.6825783848762512,
+ -0.46181878447532654,
+ -0.637139618396759,
+ -0.8904780149459839,
+ -1.001044511795044,
+ 0.09948752820491791,
+ -0.6716643571853638,
+ 1.0485204458236694,
+ -0.47110047936439514,
+ -1.1675114631652832,
+ -0.5960819721221924,
+ 1.3033925294876099,
+ -0.9027591347694397,
+ -0.7112307548522949,
+ 0.2824039161205292,
+ -0.14555321633815765,
+ -0.9314382076263428,
+ -0.5423445701599121,
+ -0.05653577297925949,
+ 0.02379775047302246,
+ 0.7288476228713989,
+ -0.6865121126174927,
+ 0.9220020174980164,
+ -1.0253382921218872,
+ -0.03156905621290207,
+ 1.055649757385254,
+ -0.1369425654411316,
+ 0.7545923590660095,
+ -0.5439596176147461,
+ 1.179539680480957,
+ -0.13579203188419342,
+ -0.2687188386917114,
+ -0.06522901356220245,
+ -0.8367733359336853,
+ -1.1328167915344238,
+ -0.5861042737960815,
+ -2.229656219482422,
+ 0.2620072066783905,
+ 1.472368597984314,
+ -0.9388331770896912,
+ 0.7445362210273743,
+ -0.23922036588191986,
+ -0.3706739842891693,
+ 0.3146807551383972,
+ 0.7909939885139465,
+ 1.71669340133667,
+ -0.3796631991863251,
+ 1.555390477180481,
+ 0.9005530476570129,
+ 0.5490269064903259,
+ 0.07157100737094879,
+ 0.22644194960594177,
+ 0.08122234046459198,
+ -0.9968201518058777,
+ 0.7342621684074402,
+ 0.14068251848220825,
+ -0.35095900297164917,
+ -0.8661804795265198,
+ -0.3112868666648865,
+ -0.25283899903297424,
+ 0.2277984321117401,
+ 0.241980642080307,
+ 0.7147345542907715,
+ -0.19085481762886047,
+ -0.7503458261489868,
+ 0.2072589099407196,
+ 0.38682833313941956,
+ -0.310646653175354,
+ -0.9929201006889343,
+ -0.730502724647522,
+ -1.1869820356369019,
+ 0.10971877723932266,
+ 0.404511034488678,
+ 0.8998057842254639,
+ 2.7636590003967285,
+ -1.0533024072647095,
+ 0.49429792165756226,
+ 0.6151630878448486,
+ 1.0500638484954834,
+ 0.08035093545913696,
+ -1.085829734802246,
+ -0.08228910714387894,
+ -0.3214390277862549,
+ -0.3709416091442108,
+ 0.7260497212409973,
+ -0.1515599489212036,
+ 0.26627424359321594,
+ 0.2270272672176361,
+ 0.054026104509830475,
+ 0.1236022412776947,
+ -0.7834867835044861,
+ 0.2619155943393707,
+ 0.2841501235961914,
+ -1.8521994352340698,
+ 0.32563748955726624,
+ 0.9776182174682617,
+ 0.1156691312789917,
+ 0.5637683868408203,
+ -0.5539798736572266,
+ 0.33579227328300476,
+ -0.6795763373374939,
+ 0.19084277749061584,
+ 2.006969690322876,
+ -0.2614102363586426,
+ -0.7021581530570984,
+ 0.44446778297424316,
+ -0.45646724104881287,
+ -0.23000311851501465,
+ -0.03633125498890877,
+ 0.16739550232887268,
+ 0.026914402842521667,
+ -0.5275602340698242,
+ -0.374179869890213,
+ -0.3382822275161743,
+ -0.6035851836204529,
+ 0.6025814414024353,
+ -0.4134693443775177,
+ -0.030486132949590683,
+ 0.8845686316490173,
+ -0.4964565634727478,
+ -0.8963903188705444,
+ -0.35242965817451477,
+ 0.4718327522277832,
+ -0.1059650108218193,
+ 0.15395735204219818,
+ -0.6031228303909302,
+ 0.21596166491508484,
+ 0.007350211963057518,
+ -0.37730535864830017,
+ -1.2968491315841675,
+ -0.6199340224266052,
+ 0.292558878660202,
+ 0.24791279435157776,
+ 1.463923692703247,
+ -0.4275979995727539,
+ -1.0649210214614868,
+ -1.8304578065872192,
+ 0.2823118567466736,
+ -0.8014359474182129,
+ -0.6298526525497437,
+ 0.20336134731769562,
+ -0.0654960423707962,
+ -0.5360162258148193,
+ -2.022047519683838,
+ 0.39467525482177734,
+ -0.1058918759226799,
+ -0.6516894698143005,
+ -0.3057110905647278,
+ 1.1682876348495483,
+ -0.0878022164106369,
+ -0.43273258209228516,
+ -0.4681054651737213,
+ -0.9638098478317261,
+ -0.2810530662536621,
+ 1.353028655052185,
+ 0.09777472913265228,
+ 0.8590989708900452,
+ -0.2354498654603958,
+ 0.028427422046661377,
+ 1.3345764875411987,
+ -0.1454516500234604,
+ -0.7134968042373657,
+ 0.25225555896759033,
+ -0.09885988384485245,
+ -1.0632065534591675,
+ 0.20137397944927216,
+ -0.6205047369003296,
+ -0.4262021780014038,
+ 0.23533540964126587,
+ 0.8813928961753845,
+ -0.10873151570558548,
+ -0.8446284532546997,
+ 0.9180538654327393,
+ -0.35217735171318054,
+ 0.6978418231010437,
+ -2.8826427459716797,
+ -0.8654581308364868,
+ 0.03792784363031387,
+ -0.3039516508579254,
+ -0.9769934415817261,
+ -1.008078694343567,
+ -0.3128093481063843,
+ -0.28768908977508545,
+ -1.4453197717666626,
+ -1.4416091442108154,
+ 1.2832658290863037,
+ 0.453111857175827,
+ -0.5297042727470398,
+ 0.7925192713737488,
+ 0.5011700987815857,
+ 1.3498430252075195,
+ -0.6607815623283386,
+ 1.4963277578353882,
+ -0.43808892369270325,
+ 0.6961078643798828,
+ 0.3654187321662903,
+ 0.10057523846626282,
+ 0.5156301856040955,
+ -0.36278778314590454,
+ 0.1784379780292511,
+ 0.1304161697626114,
+ 0.8602690696716309,
+ -0.4318089187145233,
+ -0.7734245657920837,
+ 1.4014737606048584,
+ -0.8404213190078735,
+ 0.045394524931907654,
+ -0.11292124539613724,
+ 1.6347074508666992,
+ -0.595048725605011,
+ 0.12464773654937744,
+ -0.22879941761493683,
+ 0.7942289710044861,
+ -0.7680318355560303,
+ -0.4742623567581177,
+ -0.7517358064651489,
+ 0.08547286689281464,
+ 1.415477991104126,
+ -0.4444233179092407,
+ -0.39969882369041443,
+ 1.1024366617202759,
+ -0.08207570016384125,
+ 0.04593145102262497,
+ 0.2705412209033966,
+ -0.21650633215904236,
+ 0.30742669105529785,
+ -0.5036975741386414,
+ -0.7572349905967712,
+ 0.5684720873832703,
+ 0.0055654048919677734,
+ -0.06404875218868256,
+ 0.5003297924995422,
+ 0.057963788509368896,
+ -0.8588948249816895,
+ 0.47237280011177063,
+ -0.08455638587474823,
+ -0.23009170591831207,
+ 0.7813740968704224,
+ -0.6065237522125244,
+ 0.048977598547935486,
+ 0.45792850852012634,
+ -0.6360940933227539,
+ -1.2692062854766846,
+ -0.00718330405652523,
+ -0.2845844030380249,
+ 1.734727144241333,
+ 1.3044058084487915,
+ 0.9656124114990234,
+ 0.9782975912094116,
+ -0.20546090602874756,
+ 0.03520368039608002,
+ 0.07148350030183792,
+ 1.3128937482833862,
+ 0.2990472912788391,
+ -1.1395891904830933,
+ 0.49907684326171875,
+ 0.2568354606628418,
+ -0.28612345457077026,
+ 0.3102101683616638,
+ -0.12222059816122055,
+ -1.3167407512664795,
+ -0.4678390622138977,
+ 2.1101272106170654,
+ -0.3896254897117615,
+ -1.2652751207351685,
+ 0.16168442368507385,
+ 0.7228710651397705,
+ -1.0491094589233398,
+ -0.5455620884895325,
+ 0.096373051404953,
+ -1.5115265846252441,
+ -0.11546917259693146,
+ 0.5470426082611084,
+ -0.09767176955938339,
+ -0.38950997591018677,
+ -0.19944672286510468,
+ 0.47643375396728516,
+ -0.28288018703460693,
+ -0.38078776001930237,
+ 1.1162251234054565,
+ -0.46248775720596313,
+ -0.34602805972099304,
+ 0.06075465679168701,
+ 0.356760174036026,
+ 0.9493207335472107,
+ -1.130468726158142,
+ 1.1431281566619873,
+ -0.31977379322052,
+ -0.9829983711242676,
+ 0.39603346586227417,
+ -0.08685369789600372,
+ -0.25647974014282227,
+ -0.5407488346099854,
+ 0.2612266540527344,
+ -0.7558624744415283,
+ 0.47639358043670654,
+ 0.03717204928398132,
+ -0.9869677424430847,
+ 0.3160043954849243,
+ 0.03640341758728027,
+ 1.3144750595092773,
+ -0.26252806186676025,
+ -0.6106492280960083,
+ -1.011253833770752,
+ 0.504636287689209,
+ -4.459183216094971,
+ 0.5763830542564392,
+ -0.1419045329093933,
+ -0.3478381037712097,
+ -1.0951087474822998,
+ 0.07931177318096161,
+ -0.6167811751365662,
+ -1.0798548460006714,
+ 0.3807308077812195,
+ 0.0664651021361351,
+ -0.1848311573266983,
+ 0.5272462964057922,
+ 0.7502257227897644,
+ -0.8391098976135254,
+ 0.22997979819774628,
+ 0.9936120510101318,
+ 0.17758871614933014,
+ -1.1481746435165405,
+ 0.12365460395812988,
+ 2.2824299335479736,
+ 0.1328466683626175,
+ 0.2116987407207489,
+ 0.05377933010458946,
+ 0.5114291906356812,
+ -0.08021004498004913,
+ -0.07685407251119614,
+ -1.0612720251083374,
+ 1.0883641242980957,
+ -1.1649752855300903,
+ -1.5110507011413574,
+ 0.06568871438503265,
+ -1.1207377910614014,
+ 1.647541880607605,
+ 1.3058878183364868,
+ 1.0539222955703735,
+ 0.33837804198265076,
+ 0.6868937015533447,
+ -0.9078178405761719,
+ -1.1275488138198853,
+ -0.3484973609447479,
+ 1.0913368463516235,
+ 0.3750219941139221,
+ -0.9402885437011719,
+ 0.2758484184741974,
+ 0.8338388800621033,
+ -0.3912789225578308,
+ 0.37241989374160767,
+ -0.84642094373703,
+ -1.5775268077850342,
+ -0.018482286483049393,
+ 0.8266854882240295,
+ 0.7265365123748779,
+ 1.0983610153198242,
+ 1.2202540636062622,
+ 0.4708879292011261,
+ -1.050809621810913,
+ -0.06182079762220383,
+ -0.4198138415813446,
+ -0.6969021558761597,
+ 0.3983437418937683,
+ -0.25363966822624207,
+ 0.8318365216255188,
+ -0.6225018501281738,
+ -1.1711976528167725,
+ -0.7907657623291016,
+ -0.3134027421474457,
+ -1.434207797050476,
+ 1.0802803039550781,
+ 0.5149912238121033,
+ 0.7537517547607422,
+ -0.8676640391349792,
+ -1.874863624572754,
+ 0.9611423015594482,
+ -0.8736305832862854,
+ 0.3266214430332184,
+ 0.05445185303688049,
+ 1.012379765510559,
+ -0.12603573501110077,
+ -0.8980700969696045,
+ -0.9607542753219604,
+ -0.68124920129776,
+ -0.6679530739784241,
+ 0.550635576248169,
+ 0.7252876162528992,
+ 1.1359857320785522,
+ 0.17609445750713348,
+ -0.9881531000137329,
+ 0.21931752562522888,
+ -1.444004774093628,
+ 0.8880506157875061,
+ -1.8868168592453003,
+ -0.8429611325263977,
+ 0.8814893364906311,
+ -0.1134277954697609,
+ -0.7935100793838501,
+ 0.4876447916030884,
+ -0.07566256076097488,
+ 0.6013180613517761,
+ -0.6903337240219116,
+ -0.9651134610176086,
+ -0.08418910205364227,
+ -0.770304799079895,
+ 0.00578144658356905,
+ -0.27419495582580566,
+ -1.011972188949585,
+ -0.47382548451423645,
+ 0.8430635929107666,
+ -0.42580488324165344,
+ -0.2666740417480469,
+ 0.42507198452949524,
+ 0.6842333078384399,
+ 0.19747567176818848,
+ 0.7287843227386475,
+ -0.7065486311912537,
+ 0.43832066655158997,
+ 0.41893380880355835,
+ 0.3925585150718689,
+ -0.12099219858646393,
+ -0.600256621837616,
+ 0.5417041778564453,
+ 0.24250826239585876,
+ -1.018319845199585,
+ 0.18161505460739136,
+ -1.0734837055206299,
+ 0.018557343631982803,
+ 1.6178175210952759,
+ -0.02315889298915863,
+ 1.5541305541992188,
+ 1.0339759588241577,
+ -0.05751119181513786,
+ 0.5321999788284302,
+ -2.0313172340393066,
+ 0.10331334173679352,
+ 0.5182308554649353,
+ 0.8491016030311584,
+ -0.3772505819797516,
+ -0.21838633716106415,
+ 0.3984612226486206,
+ -0.5943132042884827,
+ -0.2427031248807907,
+ -0.6193138957023621,
+ -0.407100111246109,
+ -0.7939213514328003,
+ 0.22960641980171204,
+ -0.8066270351409912,
+ 0.5059223175048828,
+ -0.1146029606461525,
+ 0.4737268388271332,
+ -1.1957180500030518,
+ -0.6292951703071594,
+ -0.28517770767211914,
+ -0.2647029757499695,
+ 0.8573440313339233,
+ 0.3745579421520233,
+ 1.3946377038955688,
+ 0.5324865579605103,
+ -0.2349168211221695,
+ 0.01419074460864067,
+ 0.8776282668113708,
+ 0.05994674563407898,
+ 0.42669612169265747,
+ -0.8581984043121338,
+ -0.48276183009147644,
+ -0.2762752175331116,
+ -0.8317447304725647,
+ 0.03305399790406227,
+ 0.5427354574203491,
+ -0.18821367621421814,
+ -0.32202449440956116,
+ -1.5764254331588745,
+ 0.7182188034057617,
+ 1.4117392301559448,
+ -0.9710730314254761,
+ 0.7757356762886047,
+ 1.226631760597229,
+ -0.6977776288986206,
+ 0.5379212498664856,
+ 0.1595984399318695,
+ 0.7491641640663147,
+ -0.5848901867866516,
+ 0.7515702843666077,
+ 0.33198487758636475,
+ -0.04979439824819565,
+ 0.41783833503723145,
+ 0.2083911895751953,
+ 0.4582214951515198,
+ -0.580840528011322,
+ -1.19110107421875,
+ 0.05703102797269821,
+ -0.1481161117553711,
+ 0.06353944540023804,
+ -0.4628649055957794,
+ 0.9495165944099426,
+ -0.5683854818344116,
+ 1.035332202911377,
+ -1.1728135347366333,
+ -0.6021712422370911,
+ 0.21757420897483826,
+ 0.2653154134750366,
+ -0.20744356513023376,
+ -0.025337345898151398,
+ 0.3603101372718811,
+ -0.16834408044815063,
+ -0.321145236492157,
+ -0.5461980104446411,
+ 0.5916000008583069,
+ -0.3919866979122162,
+ 0.109361931681633,
+ -0.6474766731262207,
+ -0.47964638471603394,
+ -1.5927553176879883,
+ -0.3844701051712036,
+ -0.5618631839752197,
+ 0.9544996023178101,
+ -0.41471025347709656,
+ 0.3995070159435272,
+ 0.1971488744020462,
+ -0.5086288452148438,
+ 0.4838660955429077,
+ 0.8622570037841797,
+ 0.7009761929512024,
+ 0.22978320717811584,
+ -0.1390424221754074,
+ -0.1729671210050583,
+ 0.01714053377509117,
+ 0.29764047265052795,
+ -1.0886561870574951,
+ -0.028211554512381554,
+ -0.7671571373939514,
+ -0.46440398693084717,
+ 0.9555352926254272,
+ 0.718079686164856,
+ 0.22698435187339783,
+ 1.593453049659729,
+ 0.9835917949676514,
+ 0.10190103948116302,
+ -0.03439312428236008,
+ -0.07586279511451721,
+ -0.7519799470901489,
+ -0.42162907123565674,
+ 1.2831950187683105,
+ 0.15008443593978882,
+ -0.13222534954547882,
+ 0.650331974029541
+ ]
+ },
+ {
+ "key": 20,
+ "name": "Lara Croft",
+ "type": "movie",
+ "media": "Tomb Raider",
+ "label": [
+ "Adventurous",
+ "Confident",
+ "Dominant",
+ "Explorative",
+ "Independent"
+ ],
+ "embedding": [
+ -0.9399733543395996,
+ -0.32468265295028687,
+ -0.8147069811820984,
+ -0.20003660023212433,
+ -1.0668659210205078,
+ -0.22335395216941833,
+ -0.21553169190883636,
+ -0.766168475151062,
+ -0.18153896927833557,
+ 0.1211312860250473,
+ 0.19167974591255188,
+ -0.30576568841934204,
+ -2.2328758239746094,
+ -0.5074629187583923,
+ 0.9733185172080994,
+ 0.9171518683433533,
+ 0.07881884276866913,
+ 0.5190564393997192,
+ -0.9050182700157166,
+ -0.5147002935409546,
+ -0.6455274224281311,
+ -0.2707194983959198,
+ -0.1466333568096161,
+ -0.4068121314048767,
+ -1.2421592473983765,
+ 0.45036837458610535,
+ 0.2133806347846985,
+ 0.46144750714302063,
+ -0.5453885793685913,
+ 0.47742921113967896,
+ -0.19548745453357697,
+ -0.2273319512605667,
+ -0.09459580481052399,
+ -0.1099601536989212,
+ 0.75767582654953,
+ -0.2960118055343628,
+ 0.7112967371940613,
+ -0.5770630240440369,
+ -1.3132554292678833,
+ 1.566833257675171,
+ 0.6636871695518494,
+ -0.8860731720924377,
+ 0.45533090829849243,
+ -1.0540924072265625,
+ -0.23321810364723206,
+ -0.2682678699493408,
+ 0.17897111177444458,
+ -0.3486698865890503,
+ 0.07942633330821991,
+ 0.7827959060668945,
+ 0.04235631227493286,
+ 0.32024946808815,
+ 1.713985800743103,
+ -0.3586389422416687,
+ 0.32565170526504517,
+ 0.26396599411964417,
+ 0.0760384276509285,
+ -1.1443700790405273,
+ -0.28528305888175964,
+ -1.7650730609893799,
+ -1.3302072286605835,
+ 0.8172724843025208,
+ -0.9585580825805664,
+ 0.14556516706943512,
+ 0.11810348927974701,
+ 1.0581306219100952,
+ -0.11734893172979355,
+ -0.07729016989469528,
+ 0.2585614323616028,
+ -1.2337571382522583,
+ -0.8750566244125366,
+ -0.7208408117294312,
+ -0.9353272914886475,
+ 0.044483669102191925,
+ -1.8220165967941284,
+ 0.8214505314826965,
+ 0.5079964995384216,
+ -1.2136015892028809,
+ 0.1529969871044159,
+ -0.10059020668268204,
+ 0.1883232593536377,
+ 0.5517691373825073,
+ 0.18874122202396393,
+ 0.3290202021598816,
+ -0.3741576671600342,
+ 1.2098950147628784,
+ 0.5292418003082275,
+ -0.5799891352653503,
+ 0.4904453158378601,
+ 0.32463252544403076,
+ -0.6025141477584839,
+ -0.9166143536567688,
+ 1.0178688764572144,
+ -0.7794860601425171,
+ -0.8202574849128723,
+ 0.2699509859085083,
+ 0.016157668083906174,
+ -0.2583214044570923,
+ 0.6881550550460815,
+ 0.5886796116828918,
+ 0.32462459802627563,
+ 0.5214780569076538,
+ 0.2193344384431839,
+ -0.09689369052648544,
+ 0.11426720023155212,
+ -2.0899176597595215,
+ -0.35364168882369995,
+ 1.6888606548309326,
+ -0.436073899269104,
+ 0.22905980050563812,
+ 0.152607262134552,
+ 0.11784617602825165,
+ 0.31697940826416016,
+ 0.9579814672470093,
+ 0.24934901297092438,
+ 0.12887723743915558,
+ -0.32355713844299316,
+ 0.21912284195423126,
+ -0.01703692227602005,
+ 0.44461357593536377,
+ 1.4026676416397095,
+ -0.1244499534368515,
+ 0.0336526557803154,
+ -0.45375514030456543,
+ -0.24656853079795837,
+ -0.25768476724624634,
+ -0.7404261827468872,
+ 0.3665474057197571,
+ -0.0714811310172081,
+ 0.35024651885032654,
+ 1.060484528541565,
+ 0.2837250828742981,
+ -0.4235195815563202,
+ -0.603000283241272,
+ -0.572028636932373,
+ -0.9300487041473389,
+ 0.6605281233787537,
+ 1.0223205089569092,
+ -0.6563554406166077,
+ -1.197884202003479,
+ 0.030022628605365753,
+ 1.7852518558502197,
+ 0.5381211042404175,
+ -1.47523033618927,
+ 0.4821864664554596,
+ -1.6617876291275024,
+ 0.7853446006774902,
+ 0.29870662093162537,
+ -0.5861086845397949,
+ -0.6405451893806458,
+ 0.8590194582939148,
+ -0.37376484274864197,
+ 0.5581337213516235,
+ 1.3401618003845215,
+ 1.1335095167160034,
+ -2.108933687210083,
+ -0.8690435290336609,
+ 1.1497610807418823,
+ 1.6802173852920532,
+ 1.0428764820098877,
+ 0.3805926442146301,
+ -0.6676360964775085,
+ 0.02149602398276329,
+ 0.4477178752422333,
+ -0.5322669744491577,
+ 0.18407592177391052,
+ 0.8709861040115356,
+ 1.025863766670227,
+ 0.9950172901153564,
+ -0.5495960116386414,
+ -0.05495421588420868,
+ -0.9655526876449585,
+ -0.39022108912467957,
+ 0.23974421620368958,
+ 0.22606822848320007,
+ -0.10519464313983917,
+ 1.4166654348373413,
+ 0.23273015022277832,
+ 0.7700156569480896,
+ -1.2100187540054321,
+ -1.1452369689941406,
+ 0.6022494435310364,
+ -1.0554320812225342,
+ -0.07998009026050568,
+ -0.7193009257316589,
+ -0.9346119165420532,
+ -0.5422662496566772,
+ 0.527834415435791,
+ 0.5631486773490906,
+ 0.8180557489395142,
+ -0.6370186805725098,
+ -1.2410610914230347,
+ 0.3380928039550781,
+ -0.4378628730773926,
+ 0.06713095307350159,
+ 0.9097646474838257,
+ -0.40799546241760254,
+ -1.2894810438156128,
+ 0.034043584018945694,
+ -1.3806041479110718,
+ 0.6211186051368713,
+ 1.5390633344650269,
+ 1.2788132429122925,
+ -1.1627501249313354,
+ -0.7259373664855957,
+ 0.4090227782726288,
+ -0.907374918460846,
+ -0.5820850729942322,
+ 0.8246404528617859,
+ -0.5592516660690308,
+ -0.07696397602558136,
+ 0.4940144121646881,
+ 0.4017364978790283,
+ -0.6251100301742554,
+ -1.2433501482009888,
+ -0.7750925421714783,
+ 1.160852074623108,
+ 0.9286254644393921,
+ -0.4166867434978485,
+ -0.4064403176307678,
+ -0.4085611402988434,
+ 0.8696793913841248,
+ 0.8071531653404236,
+ 0.4709746837615967,
+ 0.34242796897888184,
+ 1.347129464149475,
+ 0.7875800132751465,
+ 1.9113237857818604,
+ 0.5363960862159729,
+ 0.3158546984195709,
+ 0.7524954676628113,
+ 0.03893323987722397,
+ -0.4831043779850006,
+ 0.047883566468954086,
+ 0.2685140073299408,
+ -0.23941610753536224,
+ -0.8595175743103027,
+ 0.20965255796909332,
+ 1.2294020652770996,
+ 0.747381865978241,
+ -0.660480797290802,
+ -1.0827736854553223,
+ 1.13536536693573,
+ 0.6169503331184387,
+ -0.7133382558822632,
+ -0.14280180633068085,
+ 0.08999857306480408,
+ -0.1002880111336708,
+ -0.3771779537200928,
+ -0.7876653075218201,
+ 0.1142224371433258,
+ -0.3766346573829651,
+ -1.3708688020706177,
+ 0.04397725313901901,
+ 0.5051664710044861,
+ -0.07173549383878708,
+ -1.0027406215667725,
+ -0.3293955624103546,
+ -0.3573259711265564,
+ -0.12531307339668274,
+ -0.6038575172424316,
+ 0.4198383092880249,
+ -0.02458702214062214,
+ 0.9456360340118408,
+ 0.015454906970262527,
+ -0.24042777717113495,
+ 0.6080526113510132,
+ 0.7555226683616638,
+ 0.3837282359600067,
+ 0.055932655930519104,
+ -0.4975692927837372,
+ -0.09981845319271088,
+ 0.025205055251717567,
+ -0.7904611825942993,
+ -0.7471287250518799,
+ 1.64651358127594,
+ -0.23108874261379242,
+ -0.362857848405838,
+ 1.474735975265503,
+ 0.3477495312690735,
+ 0.8414173126220703,
+ 0.17878839373588562,
+ 0.10220302641391754,
+ -0.4150959551334381,
+ 0.9630996584892273,
+ -0.9418238401412964,
+ 0.6993099451065063,
+ -0.5090117454528809,
+ -0.15269319713115692,
+ -1.884289026260376,
+ 0.7385277152061462,
+ 0.08890289068222046,
+ 1.8513500690460205,
+ 0.04252414032816887,
+ -0.6894254684448242,
+ -1.0713599920272827,
+ -0.8106996417045593,
+ -3.7298202514648438,
+ -0.1463063508272171,
+ 0.1570284366607666,
+ 1.0382786989212036,
+ 0.2278689742088318,
+ 0.05204439163208008,
+ -1.6366552114486694,
+ 0.09549330174922943,
+ -0.8697942495346069,
+ -0.7547328472137451,
+ 0.6270415782928467,
+ -1.4662402868270874,
+ -1.1745878458023071,
+ -0.3971397280693054,
+ -0.7532457709312439,
+ -0.8633873462677002,
+ -0.09126707166433334,
+ 0.29429328441619873,
+ -0.890026330947876,
+ -0.6826816201210022,
+ -0.28992486000061035,
+ 0.12261633574962616,
+ 1.9014537334442139,
+ 0.008408859372138977,
+ 0.7675257325172424,
+ 1.5517239570617676,
+ 0.11181052029132843,
+ -0.6032829880714417,
+ -1.2010307312011719,
+ -0.806360125541687,
+ -0.44195258617401123,
+ -0.09904920309782028,
+ -0.21126610040664673,
+ 0.8594303131103516,
+ 0.826733410358429,
+ 2.05730938911438,
+ 0.3745512068271637,
+ 0.6752240657806396,
+ 0.07150380313396454,
+ -0.42500531673431396,
+ 0.8926318287849426,
+ 0.0709446594119072,
+ -0.46606317162513733,
+ 0.9863252639770508,
+ -0.10911968350410461,
+ -0.8382383584976196,
+ -0.12562686204910278,
+ 0.3333643972873688,
+ 0.35488659143447876,
+ -0.42321768403053284,
+ 1.013038158416748,
+ -0.31749144196510315,
+ 0.477777898311615,
+ 0.3848503530025482,
+ -1.2452070713043213,
+ -0.2823810577392578,
+ -0.48556390404701233,
+ 0.4781377911567688,
+ 0.5045862793922424,
+ 0.6563305854797363,
+ -0.7931522130966187,
+ -1.7771334648132324,
+ 0.06031394004821777,
+ 1.027832269668579,
+ -0.2983231544494629,
+ 0.40186288952827454,
+ -0.2470528483390808,
+ -0.38704609870910645,
+ 0.6582654118537903,
+ 0.7219111323356628,
+ 0.49140721559524536,
+ -0.3363109827041626,
+ -0.28022897243499756,
+ -0.41932591795921326,
+ 0.14441460371017456,
+ 0.6645652651786804,
+ 0.3560490310192108,
+ -0.4364835023880005,
+ -0.674782395362854,
+ -0.407560795545578,
+ 1.1264100074768066,
+ -0.2309022694826126,
+ -0.27385884523391724,
+ 1.3022863864898682,
+ -0.8806107044219971,
+ -1.622427225112915,
+ 0.2949240505695343,
+ 1.045967936515808,
+ 0.7290818095207214,
+ 5.64904260635376,
+ 0.23895232379436493,
+ 0.3525777757167816,
+ 0.19152289628982544,
+ 0.9933294057846069,
+ 0.11688558757305145,
+ -0.10598264634609222,
+ 0.8062798380851746,
+ 0.10816192626953125,
+ -0.6823816299438477,
+ 0.06843604147434235,
+ 0.22752344608306885,
+ 0.032491784542798996,
+ 0.14867231249809265,
+ 0.02239597588777542,
+ 0.9776506423950195,
+ 0.05745905637741089,
+ -1.0262551307678223,
+ 1.9418566226959229,
+ -0.8620491623878479,
+ 1.1420661211013794,
+ 0.510301947593689,
+ -0.3972468972206116,
+ 0.5882298350334167,
+ -0.2227863371372223,
+ -0.734756350517273,
+ 1.079342007637024,
+ 0.3725429177284241,
+ -0.3784274160861969,
+ 0.5052750706672668,
+ -0.38359493017196655,
+ 1.1328061819076538,
+ 0.9670802354812622,
+ 1.0551187992095947,
+ -0.3373972177505493,
+ 0.37779298424720764,
+ -2.014559507369995,
+ -0.15235686302185059,
+ -1.4987847805023193,
+ 0.7839831113815308,
+ -2.065608263015747,
+ -1.0029656887054443,
+ -0.8036119341850281,
+ -0.2330448031425476,
+ 0.34402376413345337,
+ 0.4722997546195984,
+ 0.8596677184104919,
+ -1.138671875,
+ 0.6955369710922241,
+ -0.641128659248352,
+ 0.26223477721214294,
+ -0.24602016806602478,
+ -0.33210620284080505,
+ 0.8465139269828796,
+ 2.5012435913085938,
+ -0.19533926248550415,
+ -0.5005056858062744,
+ -0.45439109206199646,
+ -0.4990597665309906,
+ 0.9367954134941101,
+ 0.912450909614563,
+ 0.528849184513092,
+ -2.5934958457946777,
+ -0.30213016271591187,
+ 0.4001372456550598,
+ 0.6653611660003662,
+ -0.5573452711105347,
+ -0.21577611565589905,
+ 0.8378815054893494,
+ 0.9834192991256714,
+ -0.11978063732385635,
+ 1.4155718088150024,
+ 0.03410462662577629,
+ -0.3270476162433624,
+ 0.2960905432701111,
+ 0.36345332860946655,
+ 0.14474068582057953,
+ 0.00454653799533844,
+ 0.6241267919540405,
+ -0.05584223195910454,
+ 0.5529276132583618,
+ -0.39065563678741455,
+ -0.6252728700637817,
+ 0.47479891777038574,
+ 1.3984497785568237,
+ 0.9384881854057312,
+ -1.0523416996002197,
+ 1.7185860872268677,
+ -0.20478421449661255,
+ -0.8596692681312561,
+ -0.17285878956317902,
+ -0.7691001892089844,
+ -1.0635509490966797,
+ -0.24523746967315674,
+ -0.9656077027320862,
+ -1.1189473867416382,
+ 0.9216588735580444,
+ 0.019671805202960968,
+ -2.0512681007385254,
+ -0.7422959208488464,
+ 1.6022915840148926,
+ 0.09466443955898285,
+ -0.8775205016136169,
+ 0.13431014120578766,
+ 0.8256595134735107,
+ -0.544021725654602,
+ 0.016780681908130646,
+ 0.13480761647224426,
+ -0.3940794765949249,
+ 0.96026611328125,
+ 0.33143749833106995,
+ 0.607904851436615,
+ -0.57890385389328,
+ 0.3412783741950989,
+ -0.347188264131546,
+ 0.8549125790596008,
+ 0.2377561330795288,
+ -0.14053305983543396,
+ 0.8931586146354675,
+ 0.16844122111797333,
+ -0.25361013412475586,
+ -0.27247169613838196,
+ -0.36306044459342957,
+ -1.3291270732879639,
+ -1.0771713256835938,
+ -2.3613460063934326,
+ 0.14220458269119263,
+ 0.5449597835540771,
+ -0.6027029156684875,
+ 0.7749741077423096,
+ -0.1316193789243698,
+ -0.024578511714935303,
+ 0.9272570610046387,
+ 0.34826821088790894,
+ 1.836573600769043,
+ -0.2791939377784729,
+ 1.683049201965332,
+ 0.8105713725090027,
+ 0.24878183007240295,
+ 0.49992209672927856,
+ -0.30644407868385315,
+ 0.10429364442825317,
+ -1.3360838890075684,
+ 0.43373605608940125,
+ 0.5873128771781921,
+ 0.5745880603790283,
+ -1.209038496017456,
+ -0.9391046762466431,
+ -0.8102273344993591,
+ -0.016342010349035263,
+ 0.42930659651756287,
+ 0.11296594142913818,
+ 0.8288488388061523,
+ -1.2258864641189575,
+ 0.9076844453811646,
+ -0.16635119915008545,
+ -0.13299909234046936,
+ -0.6097313761711121,
+ -0.6893181204795837,
+ -1.2642443180084229,
+ 0.0054153259843587875,
+ 0.023516226559877396,
+ 1.3535840511322021,
+ 2.403286933898926,
+ -0.5629445314407349,
+ 1.042224407196045,
+ 0.7062203288078308,
+ 1.4400417804718018,
+ -0.5695106387138367,
+ -0.6773334741592407,
+ 0.09689672291278839,
+ 0.24195769429206848,
+ -0.6092219352722168,
+ 0.9625992774963379,
+ 0.4253709316253662,
+ 0.609003484249115,
+ 0.026924628764390945,
+ -0.3329619765281677,
+ 0.05867987871170044,
+ -0.37764209508895874,
+ 0.07879265397787094,
+ -0.18235528469085693,
+ -0.7412741184234619,
+ -0.09236371517181396,
+ 1.7154977321624756,
+ 0.45530927181243896,
+ 0.2147989571094513,
+ -0.7408508062362671,
+ -0.34809985756874084,
+ -1.0513848066329956,
+ 0.9759466648101807,
+ 1.9663753509521484,
+ 0.20226453244686127,
+ -0.5118995904922485,
+ 0.1925753653049469,
+ -0.5654630661010742,
+ -0.22701124846935272,
+ -0.688489556312561,
+ -0.32415348291397095,
+ 1.2263675928115845,
+ -1.026625156402588,
+ -0.24441659450531006,
+ -0.6555992364883423,
+ -1.2136280536651611,
+ 0.3577730059623718,
+ 0.33470314741134644,
+ -0.31578224897384644,
+ 0.49158430099487305,
+ -0.9543082118034363,
+ -0.7789802551269531,
+ -0.861640453338623,
+ -0.26591283082962036,
+ -0.4236069321632385,
+ -0.022423822432756424,
+ -1.002342939376831,
+ 0.44338831305503845,
+ 0.533815860748291,
+ -0.24339880049228668,
+ -1.0154088735580444,
+ -1.180443286895752,
+ -0.17823848128318787,
+ 0.1814471334218979,
+ 0.5724462866783142,
+ -1.0203524827957153,
+ -0.4825575351715088,
+ -0.9226173758506775,
+ 0.7549901008605957,
+ -1.0891199111938477,
+ 0.21845754981040955,
+ -0.0780460387468338,
+ -0.032189320772886276,
+ 0.21829713881015778,
+ -1.2209042310714722,
+ 0.5425774455070496,
+ -0.2979671359062195,
+ -0.20045897364616394,
+ -0.2649942934513092,
+ 0.6474725604057312,
+ -0.007640188559889793,
+ -0.24280637502670288,
+ -0.43007323145866394,
+ -0.9401378035545349,
+ -1.4229505062103271,
+ 1.2216246128082275,
+ 0.06895822286605835,
+ 0.5101721286773682,
+ -0.09384014457464218,
+ -0.6454896926879883,
+ 1.377094030380249,
+ 0.9939241409301758,
+ -0.2047632336616516,
+ 0.5212671756744385,
+ -0.342883825302124,
+ -0.9034196138381958,
+ 1.176451325416565,
+ -1.1779327392578125,
+ -0.19677001237869263,
+ -0.7734420895576477,
+ -0.5589789152145386,
+ 0.10850982367992401,
+ -1.2527929544448853,
+ 1.5337650775909424,
+ -0.1558542102575302,
+ 0.7220968008041382,
+ -2.086313009262085,
+ -0.7021026611328125,
+ -0.028564753010869026,
+ -1.5241750478744507,
+ -0.8788464069366455,
+ -0.11902102828025818,
+ -1.494995355606079,
+ 0.24177584052085876,
+ -1.1061067581176758,
+ -1.5242244005203247,
+ 0.3625726103782654,
+ 0.12559063732624054,
+ -0.686258852481842,
+ 0.3670317530632019,
+ -0.1053561195731163,
+ 1.283453345298767,
+ -0.9904980659484863,
+ 1.065667986869812,
+ 0.02468089759349823,
+ -0.1577034592628479,
+ 0.37700048089027405,
+ -0.40373045206069946,
+ 0.721996545791626,
+ -0.11387679725885391,
+ -0.017649449408054352,
+ 0.4614553451538086,
+ 1.5467114448547363,
+ -1.086802363395691,
+ -0.5639750957489014,
+ -0.009822772815823555,
+ -0.8049704432487488,
+ -0.16393493115901947,
+ -0.2441241443157196,
+ 0.1677151471376419,
+ -0.8308489322662354,
+ -0.1266668140888214,
+ -0.4749819040298462,
+ 0.7520107626914978,
+ -0.579801082611084,
+ 0.09148088097572327,
+ 0.22019995748996735,
+ -0.19520455598831177,
+ 1.1826720237731934,
+ -0.797208845615387,
+ 1.431910514831543,
+ 0.9592505693435669,
+ 0.14485423266887665,
+ 0.4445000886917114,
+ 0.49049341678619385,
+ -1.6662304401397705,
+ 0.7814604640007019,
+ -1.2755476236343384,
+ -0.5168527364730835,
+ 0.10844030976295471,
+ 0.03991026058793068,
+ 0.3270421028137207,
+ 0.12866999208927155,
+ 0.4651449918746948,
+ -0.9362015724182129,
+ 0.21161343157291412,
+ -0.8295044302940369,
+ -0.6309043169021606,
+ -0.12630517780780792,
+ -0.554488480091095,
+ 0.22422152757644653,
+ -0.6421219110488892,
+ -0.17624196410179138,
+ -0.7820113897323608,
+ -0.34940123558044434,
+ 0.0492943599820137,
+ 1.1619739532470703,
+ 2.0755226612091064,
+ -0.08466073870658875,
+ -0.33560091257095337,
+ 0.40321746468544006,
+ 0.936643123626709,
+ 0.6345062255859375,
+ -0.03754279762506485,
+ 0.6300152540206909,
+ -0.4184548556804657,
+ 0.18300403654575348,
+ 0.38302111625671387,
+ -0.04549207538366318,
+ -0.406149297952652,
+ 0.19461005926132202,
+ -1.2314425706863403,
+ -0.2672857344150543,
+ 0.6265641450881958,
+ -0.3252411186695099,
+ -0.9861204028129578,
+ 0.4071251451969147,
+ 0.4579997956752777,
+ -0.9259032607078552,
+ 0.1807110458612442,
+ 0.8527119159698486,
+ -0.12779761850833893,
+ 0.1362263262271881,
+ 0.5140570402145386,
+ 0.22330807149410248,
+ -0.6608317494392395,
+ -0.6678451299667358,
+ 0.4179520010948181,
+ 0.6585202217102051,
+ -0.9076142311096191,
+ 0.794312059879303,
+ -0.26558661460876465,
+ -0.45311087369918823,
+ 0.09844478964805603,
+ 0.686940610408783,
+ 0.7448787093162537,
+ -0.6333046555519104,
+ 0.8828626275062561,
+ -0.5819200873374939,
+ -0.47210997343063354,
+ 0.5386786460876465,
+ -0.5067968964576721,
+ -0.002339884638786316,
+ 0.5308899283409119,
+ 0.18771348893642426,
+ -0.12530386447906494,
+ 0.7825361490249634,
+ -0.6239469647407532,
+ -0.7846892476081848,
+ 0.3075171113014221,
+ -0.665398895740509,
+ 0.8589996099472046,
+ 0.20621708035469055,
+ -0.5982738733291626,
+ -1.162319302558899,
+ 0.6731808185577393,
+ -4.196418762207031,
+ 0.4358307421207428,
+ -0.15236155688762665,
+ -0.5086116194725037,
+ -1.300428032875061,
+ 0.682036280632019,
+ -0.8449979424476624,
+ -1.610450029373169,
+ 0.8750843405723572,
+ -0.34276479482650757,
+ -1.5422189235687256,
+ -0.18174126744270325,
+ 0.8213591575622559,
+ -0.6058144569396973,
+ 0.5130249857902527,
+ 1.5608634948730469,
+ 0.7205395102500916,
+ -1.4728507995605469,
+ 0.5574285387992859,
+ 1.0861223936080933,
+ -0.3769635558128357,
+ -0.3072109818458557,
+ 1.2167433500289917,
+ 0.19472575187683105,
+ 0.07266220450401306,
+ -0.19005654752254486,
+ -1.1980774402618408,
+ 1.0424100160598755,
+ -1.234098196029663,
+ -0.4703032672405243,
+ -0.00639241561293602,
+ -1.1189392805099487,
+ 1.2827825546264648,
+ 2.091470718383789,
+ 1.5969843864440918,
+ 0.507804274559021,
+ 0.742733895778656,
+ -0.846836268901825,
+ -0.5289105176925659,
+ 0.29206812381744385,
+ 1.1819205284118652,
+ 0.4472661316394806,
+ 0.173272505402565,
+ 0.1192484200000763,
+ 0.5420835018157959,
+ -0.5032803416252136,
+ 1.1348828077316284,
+ 0.028008148074150085,
+ -0.8750211596488953,
+ 0.04923591390252113,
+ -0.4359821677207947,
+ 0.7322939038276672,
+ 0.8197387456893921,
+ 1.2696497440338135,
+ 0.9546222686767578,
+ -0.9706714749336243,
+ -0.8645747303962708,
+ 0.21928833425045013,
+ -0.9730747938156128,
+ 1.055962085723877,
+ -0.7808697819709778,
+ -0.0007177442312240601,
+ -1.0699617862701416,
+ -1.4311269521713257,
+ -0.6001445055007935,
+ 0.3595695197582245,
+ -1.9472578763961792,
+ 0.8098360300064087,
+ 0.659824788570404,
+ 0.910272479057312,
+ -0.7226021885871887,
+ -1.178749918937683,
+ 0.8860207200050354,
+ -0.17686410248279572,
+ 1.0920357704162598,
+ 1.0284950733184814,
+ 1.3056108951568604,
+ 0.3072603642940521,
+ -1.6907230615615845,
+ -1.505519986152649,
+ -0.8492322564125061,
+ -0.7029982209205627,
+ 0.22976762056350708,
+ 0.7835288643836975,
+ 0.5268906950950623,
+ 0.589640736579895,
+ -0.7385996580123901,
+ 0.5119192600250244,
+ -1.6243823766708374,
+ 0.8843887448310852,
+ -1.5868474245071411,
+ -1.4157191514968872,
+ 1.3479299545288086,
+ -0.19216527044773102,
+ -0.9287831783294678,
+ 0.043165598064661026,
+ -1.080950379371643,
+ -0.2125767022371292,
+ -0.5044711232185364,
+ -0.2869392931461334,
+ 0.18490451574325562,
+ -0.5162553191184998,
+ 0.7427336573600769,
+ -0.8511442542076111,
+ -0.4254416823387146,
+ 0.08361059427261353,
+ 0.33561021089553833,
+ -0.44858798384666443,
+ -0.757706344127655,
+ 0.38763025403022766,
+ -0.2846216559410095,
+ -0.09553194791078568,
+ -0.1881469339132309,
+ -0.5369249582290649,
+ -0.007706061005592346,
+ 0.3743889629840851,
+ 0.6339951157569885,
+ -0.03799353539943695,
+ -0.4282304048538208,
+ -0.28150448203086853,
+ 0.40790504217147827,
+ -0.3897501230239868,
+ 0.16594047844409943,
+ -1.457673192024231,
+ 0.3849216103553772,
+ 2.501220226287842,
+ 0.9300994873046875,
+ 0.471748024225235,
+ 1.3315635919570923,
+ -0.6586394309997559,
+ 1.2603017091751099,
+ -1.6894299983978271,
+ -0.19892708957195282,
+ -0.7007231712341309,
+ 1.3145629167556763,
+ -2.004211902618408,
+ 0.04098331183195114,
+ 0.7940336465835571,
+ 0.1612180471420288,
+ -0.7106828093528748,
+ -0.8633720278739929,
+ -0.026121003553271294,
+ -0.8342243432998657,
+ 0.2942030429840088,
+ -0.5001833438873291,
+ -0.12718477845191956,
+ -0.8613600134849548,
+ 0.18510212004184723,
+ -1.8866815567016602,
+ -1.4172945022583008,
+ 0.393354207277298,
+ -0.6621074080467224,
+ 0.6216511726379395,
+ 0.8625068068504333,
+ 1.172464370727539,
+ 0.47678202390670776,
+ -0.9442851543426514,
+ -0.2366952747106552,
+ 0.9486736059188843,
+ 0.8048636317253113,
+ -0.02916870452463627,
+ -0.8155621886253357,
+ -0.5502550601959229,
+ -0.6302363872528076,
+ -0.8680077791213989,
+ -0.7221565842628479,
+ 0.5851642489433289,
+ -0.6245488524436951,
+ -0.5015454292297363,
+ -1.3478608131408691,
+ 0.23038464784622192,
+ 1.5274207592010498,
+ -0.5715863704681396,
+ 0.10994270443916321,
+ 0.5119620561599731,
+ -1.1078885793685913,
+ 0.4127270579338074,
+ 0.5691356062889099,
+ 1.4662102460861206,
+ -1.2043123245239258,
+ 0.5847007632255554,
+ -0.20459799468517303,
+ -0.28114959597587585,
+ 1.2565628290176392,
+ 0.24922993779182434,
+ 0.3769860863685608,
+ -0.4668411314487457,
+ -0.18125474452972412,
+ -0.08775398880243301,
+ 0.17240247130393982,
+ -0.28201842308044434,
+ -0.4849766194820404,
+ 0.8448126316070557,
+ -0.910518229007721,
+ 1.1622328758239746,
+ 0.20756329596042633,
+ -0.8811043500900269,
+ 1.0857610702514648,
+ 0.16564056277275085,
+ -0.19190412759780884,
+ -0.07211951166391373,
+ 0.34870874881744385,
+ -0.2700796127319336,
+ -0.6571364402770996,
+ -0.7643334269523621,
+ 0.7041450142860413,
+ -0.11464712768793106,
+ -0.35072067379951477,
+ -0.696868360042572,
+ -0.42275023460388184,
+ -1.1287484169006348,
+ -0.4052011966705322,
+ -0.8817000985145569,
+ 1.213852047920227,
+ -1.0499787330627441,
+ 0.7876502275466919,
+ 0.5103389024734497,
+ -0.13243292272090912,
+ 0.4760585427284241,
+ 1.5369118452072144,
+ 1.0795447826385498,
+ 0.36952197551727295,
+ -0.9866726994514465,
+ -0.1559913456439972,
+ -0.019061431288719177,
+ 0.44141191244125366,
+ -0.43362805247306824,
+ 0.06304549425840378,
+ 0.09323378652334213,
+ -0.958229124546051,
+ 0.9090073704719543,
+ 0.5483679175376892,
+ 0.5267454385757446,
+ 0.7144656777381897,
+ 0.8712369203567505,
+ 1.0310863256454468,
+ 0.06937254220247269,
+ -0.45343834161758423,
+ -0.351906955242157,
+ 0.10821609199047089,
+ 0.3556981384754181,
+ -0.4799499809741974,
+ -0.0016002170741558075,
+ 0.5255205631256104
+ ]
+ },
+ {
+ "key": 19,
+ "name": "Natasha Romanoff",
+ "type": "movie",
+ "media": "Black Widow",
+ "label": [
+ "Confident",
+ "Dominant",
+ "Mysterious",
+ "Passionate",
+ "Sensual"
+ ],
+ "embedding": [
+ -1.4442899227142334,
+ -0.08518596738576889,
+ -0.6295221447944641,
+ -0.5873947143554688,
+ -1.1242669820785522,
+ -0.4268893301486969,
+ 0.5853793025016785,
+ -0.9285841584205627,
+ -0.43747973442077637,
+ 0.05058891698718071,
+ 0.264522910118103,
+ -0.06290806829929352,
+ -1.584122657775879,
+ -0.4017924964427948,
+ 0.8391823768615723,
+ 0.4833664894104004,
+ 0.3788985311985016,
+ 0.2650851607322693,
+ -0.3040485382080078,
+ -0.5911920070648193,
+ -0.9721886515617371,
+ 0.6340979337692261,
+ -0.8085324168205261,
+ 0.3019801676273346,
+ -0.7574529647827148,
+ 0.7772880792617798,
+ 0.3755904734134674,
+ 0.22462621331214905,
+ -1.09635329246521,
+ 0.035964153707027435,
+ 0.2001185417175293,
+ -0.4708797335624695,
+ 0.12130457162857056,
+ 0.32033464312553406,
+ 0.6128759980201721,
+ -0.44730523228645325,
+ 0.4803735017776489,
+ -0.3930780589580536,
+ -0.9783124327659607,
+ 1.402764916419983,
+ 1.8078111410140991,
+ -0.8874112963676453,
+ 1.2620830535888672,
+ -1.4099507331848145,
+ 0.4330861270427704,
+ -0.7705420255661011,
+ -0.09485045820474625,
+ -0.6567203998565674,
+ -0.01011141762137413,
+ 0.9065284132957458,
+ -0.29308414459228516,
+ 0.4378840923309326,
+ 1.5428357124328613,
+ 0.02973073720932007,
+ 0.21968647837638855,
+ 0.23502075672149658,
+ 0.499980092048645,
+ -0.7147390246391296,
+ -0.0926818698644638,
+ -1.9650278091430664,
+ -1.417596697807312,
+ 0.7290061116218567,
+ -0.2586151361465454,
+ -0.02051728032529354,
+ 0.7090489864349365,
+ 1.2986470460891724,
+ 0.32396847009658813,
+ 0.21913065016269684,
+ 0.45804280042648315,
+ -1.6178860664367676,
+ -0.3471928834915161,
+ 0.02389609068632126,
+ -0.7600796222686768,
+ 0.055775441229343414,
+ -2.15975022315979,
+ 0.9491018652915955,
+ 0.03530783951282501,
+ -0.6848827600479126,
+ -0.9045232534408569,
+ 0.4711381793022156,
+ 0.17975394427776337,
+ 0.41153475642204285,
+ 0.14818690717220306,
+ -0.040946125984191895,
+ -0.8899722695350647,
+ 1.291354775428772,
+ 0.4666341543197632,
+ 0.16652387380599976,
+ 0.404690146446228,
+ 0.01577693223953247,
+ -0.3543255031108856,
+ -0.03682425618171692,
+ 0.15006813406944275,
+ -1.0610260963439941,
+ -0.47318315505981445,
+ 0.5502384901046753,
+ -0.20024064183235168,
+ 0.05236785113811493,
+ 0.8026119470596313,
+ 0.5255190134048462,
+ -0.27630865573883057,
+ 0.15052342414855957,
+ 0.12445597350597382,
+ -0.1708282083272934,
+ -0.03869844228029251,
+ -1.3562580347061157,
+ 0.4209668040275574,
+ 1.300601601600647,
+ 0.28136777877807617,
+ 0.09884392470121384,
+ 0.8587579131126404,
+ 0.3634856343269348,
+ 0.23769758641719818,
+ 0.5320932269096375,
+ -0.08898302912712097,
+ -0.30611923336982727,
+ 0.4957895278930664,
+ 0.06898076087236404,
+ 0.09416376054286957,
+ 0.03446038067340851,
+ 0.9646161794662476,
+ -0.30705830454826355,
+ -0.8983720541000366,
+ -0.63047856092453,
+ -0.29793742299079895,
+ -0.5889149308204651,
+ -0.9931627511978149,
+ 0.5285267233848572,
+ -0.6198843717575073,
+ 1.0506329536437988,
+ 1.5666316747665405,
+ 0.7737988829612732,
+ 0.306337833404541,
+ -0.996943473815918,
+ -1.1764647960662842,
+ -0.8904670476913452,
+ 0.8138106465339661,
+ 1.0398175716400146,
+ 0.14866229891777039,
+ -0.980649471282959,
+ 0.5831034779548645,
+ 0.7452256083488464,
+ 0.698824942111969,
+ -1.4502942562103271,
+ 0.37335148453712463,
+ -1.8287667036056519,
+ 0.40092942118644714,
+ 0.46458908915519714,
+ -0.3995702862739563,
+ -0.2696077227592468,
+ 2.0451223850250244,
+ -0.8411519527435303,
+ 0.655760645866394,
+ 1.4729115962982178,
+ 1.074974775314331,
+ -1.096458077430725,
+ -0.6197953820228577,
+ 0.9216451048851013,
+ 1.3290424346923828,
+ 0.803938090801239,
+ 0.5201373100280762,
+ -1.0324270725250244,
+ -0.016666719689965248,
+ 0.8505065441131592,
+ 0.0880080983042717,
+ -0.47474750876426697,
+ 1.242182731628418,
+ 1.3535748720169067,
+ 0.11782051622867584,
+ -0.9402468204498291,
+ 0.21944788098335266,
+ -1.8093301057815552,
+ -0.2363009750843048,
+ 0.7659140229225159,
+ 0.9211337566375732,
+ -0.0059662554413080215,
+ 1.3897032737731934,
+ 0.12833429872989655,
+ 0.24248814582824707,
+ -1.369269847869873,
+ -0.3343789279460907,
+ 0.0299178808927536,
+ -0.5200297832489014,
+ -0.23741082847118378,
+ -0.7912937998771667,
+ -1.189247488975525,
+ -0.5664099454879761,
+ -0.20505385100841522,
+ 0.5810851454734802,
+ 1.0760208368301392,
+ -0.634157657623291,
+ -1.3388009071350098,
+ -0.07850372791290283,
+ -0.6951569318771362,
+ 0.6719713807106018,
+ 0.2709878087043762,
+ 0.2729926109313965,
+ -1.1082895994186401,
+ 0.35271334648132324,
+ -1.7564165592193604,
+ 0.28902485966682434,
+ 1.4917851686477661,
+ 1.1518001556396484,
+ -1.36467444896698,
+ -0.9126911163330078,
+ 0.27877676486968994,
+ -0.3301042914390564,
+ -0.478475958108902,
+ 1.2347482442855835,
+ -0.17655141651630402,
+ 0.3258339762687683,
+ 0.334371417760849,
+ -0.1842333972454071,
+ -0.5475140810012817,
+ -0.8677352070808411,
+ -0.8984870910644531,
+ 0.46344637870788574,
+ 0.16661547124385834,
+ -0.5657176971435547,
+ -0.48672914505004883,
+ -0.3635541498661041,
+ 0.7309913635253906,
+ 0.42799991369247437,
+ -0.15294066071510315,
+ 0.3855918049812317,
+ 0.8989058136940002,
+ 0.14421235024929047,
+ 1.8979049921035767,
+ 0.23937374353408813,
+ 1.2843414545059204,
+ 0.44182392954826355,
+ -0.020469121634960175,
+ -0.03554706647992134,
+ 0.16997486352920532,
+ -0.13047818839550018,
+ -0.187392920255661,
+ -0.9951096177101135,
+ -0.0009794039651751518,
+ 1.0433781147003174,
+ 0.5261951684951782,
+ -0.4322739243507385,
+ -1.3979166746139526,
+ 1.2748106718063354,
+ 0.07875633984804153,
+ -1.1039830446243286,
+ 0.05200545862317085,
+ 0.6947036981582642,
+ -0.5602988004684448,
+ 0.23572103679180145,
+ -0.28636232018470764,
+ -0.11194442212581635,
+ -0.25090834498405457,
+ -1.346767783164978,
+ -0.580003023147583,
+ 1.7923468351364136,
+ 0.4256837069988251,
+ 0.3876543343067169,
+ -0.3895527422428131,
+ -0.11114096641540527,
+ 0.1799214482307434,
+ -0.0946582481265068,
+ 0.7551244497299194,
+ -0.15655577182769775,
+ 1.1767939329147339,
+ 0.48432475328445435,
+ -0.7870481014251709,
+ 0.7583258152008057,
+ -0.01604846864938736,
+ 0.5834916234016418,
+ 0.6222457885742188,
+ 0.3272148668766022,
+ -0.1450013518333435,
+ 0.6997796893119812,
+ -0.3496670722961426,
+ -0.15929314494132996,
+ 1.624085545539856,
+ -0.3939305543899536,
+ -0.878548800945282,
+ 0.506663978099823,
+ 0.5865913033485413,
+ 1.1073695421218872,
+ 0.07781875133514404,
+ 0.11274813115596771,
+ 0.1282956898212433,
+ 1.289069414138794,
+ -1.0891685485839844,
+ -0.4686921238899231,
+ -0.2744819223880768,
+ 0.44468745589256287,
+ -1.895106554031372,
+ 0.20095683634281158,
+ 0.3641785681247711,
+ 1.5504313707351685,
+ 0.7196062803268433,
+ -0.8475757837295532,
+ -0.7491143941879272,
+ -0.5365905165672302,
+ -3.5692906379699707,
+ -0.0022845128551125526,
+ -0.42956337332725525,
+ -0.2541406750679016,
+ 0.5818310976028442,
+ 0.13111582398414612,
+ -1.144140601158142,
+ -0.09781123697757721,
+ -1.2803897857666016,
+ -1.1702018976211548,
+ 0.573077917098999,
+ -1.0901027917861938,
+ -0.6326515078544617,
+ 0.5558976531028748,
+ -0.8201828002929688,
+ -0.5137856602668762,
+ -0.14292287826538086,
+ 0.3015840947628021,
+ 0.21983106434345245,
+ -0.8152706027030945,
+ -0.37415680289268494,
+ -0.8970637917518616,
+ 1.9625587463378906,
+ 0.6497223973274231,
+ 0.6025713682174683,
+ 1.2930006980895996,
+ 0.4916483163833618,
+ -0.9665101170539856,
+ -1.287521481513977,
+ -0.878490686416626,
+ -0.4523504376411438,
+ 0.5698341131210327,
+ -0.4484408497810364,
+ 1.2151596546173096,
+ 0.3427269160747528,
+ 1.3518037796020508,
+ 0.2816733717918396,
+ 0.4776982069015503,
+ 0.4864412546157837,
+ -0.1803005486726761,
+ 1.038909673690796,
+ 0.4737733006477356,
+ -0.9147891402244568,
+ 0.2964346706867218,
+ -0.5217614769935608,
+ -0.38606739044189453,
+ -0.03407683223485947,
+ 0.5229844450950623,
+ -0.0664713978767395,
+ -0.1939215362071991,
+ 0.8766263127326965,
+ -0.3925454020500183,
+ -0.15779255330562592,
+ 0.29374536871910095,
+ -1.4471603631973267,
+ 0.05336170643568039,
+ -1.1340649127960205,
+ 0.1312132328748703,
+ 0.3069302439689636,
+ -0.2897675633430481,
+ -1.1238669157028198,
+ -1.9030803442001343,
+ 0.6793908476829529,
+ -0.22681359946727753,
+ -0.7315255999565125,
+ 0.035102419555187225,
+ -1.0100092887878418,
+ 0.1625102460384369,
+ 0.6850857734680176,
+ 0.36609509587287903,
+ 0.22762513160705566,
+ -0.5714911222457886,
+ -0.33382540941238403,
+ 0.12893037497997284,
+ 0.7085211277008057,
+ 0.3592016398906708,
+ -0.2792710065841675,
+ -0.14887310564517975,
+ -0.6469945907592773,
+ -0.9295361638069153,
+ 0.2832624018192291,
+ 0.3819220960140228,
+ -0.6321184039115906,
+ 1.2547345161437988,
+ -0.37623992562294006,
+ -1.288433313369751,
+ 0.23502126336097717,
+ 1.0432108640670776,
+ 0.3789934813976288,
+ 5.8347063064575195,
+ 0.3435659408569336,
+ 0.4486740231513977,
+ 0.40849584341049194,
+ 1.3965811729431152,
+ 0.4675205945968628,
+ -0.07939748466014862,
+ 0.2847912609577179,
+ -0.04762614890933037,
+ -0.2859770655632019,
+ 0.577827513217926,
+ 0.8954645991325378,
+ 0.16339519619941711,
+ -0.10018987953662872,
+ -0.46489331126213074,
+ 1.2911874055862427,
+ -0.490073561668396,
+ -0.6981736421585083,
+ 1.7853962182998657,
+ -0.3153631091117859,
+ 0.7904371023178101,
+ -0.2611907720565796,
+ 0.010503668338060379,
+ 0.08640771359205246,
+ -0.4286156892776489,
+ -0.77069491147995,
+ 0.7770121097564697,
+ 0.5780864357948303,
+ -1.0878463983535767,
+ -0.005923975259065628,
+ -0.4080089032649994,
+ 1.3164626359939575,
+ 1.7840135097503662,
+ 1.1149505376815796,
+ 0.1642964780330658,
+ -0.19939197599887848,
+ -1.5621870756149292,
+ -0.42998039722442627,
+ -1.692305564880371,
+ 1.1615883111953735,
+ -1.5024596452713013,
+ -0.3698239028453827,
+ -0.6590754985809326,
+ -1.0860939025878906,
+ 0.4341200590133667,
+ 0.9872342348098755,
+ 0.3729466497898102,
+ -0.6165176630020142,
+ 0.2984548509120941,
+ -0.6739088296890259,
+ -0.36425748467445374,
+ -1.442982792854309,
+ -0.3918023109436035,
+ 0.056166574358940125,
+ 2.2088630199432373,
+ -0.04863928258419037,
+ -0.8240944743156433,
+ 0.12668199837207794,
+ -0.41691187024116516,
+ 1.9894356727600098,
+ 0.787071168422699,
+ 0.9829288125038147,
+ -2.586390733718872,
+ -0.6494526863098145,
+ 0.5748019218444824,
+ 1.1360974311828613,
+ 0.2174786627292633,
+ -0.522602915763855,
+ 0.259347528219223,
+ 0.29853886365890503,
+ 0.5203647613525391,
+ 0.25015348196029663,
+ 0.7780207395553589,
+ 0.337084025144577,
+ -0.10168543457984924,
+ 0.8724363446235657,
+ -0.07224070280790329,
+ 0.38373133540153503,
+ 0.9249961972236633,
+ -0.16618990898132324,
+ 0.18068788945674896,
+ -0.5874794125556946,
+ -0.28821828961372375,
+ 0.7265732288360596,
+ 0.9752473831176758,
+ 0.9002744555473328,
+ -0.702377438545227,
+ 1.3693158626556396,
+ -0.0720854252576828,
+ -0.9083781838417053,
+ -0.5631431937217712,
+ -0.7106024622917175,
+ -0.5962993502616882,
+ -0.7515632510185242,
+ -0.6443971395492554,
+ -1.3519355058670044,
+ 0.8328796625137329,
+ -0.06248483806848526,
+ -1.078949213027954,
+ -0.1275317668914795,
+ 1.1215647459030151,
+ -0.41540923714637756,
+ -0.04417229816317558,
+ -0.5588785409927368,
+ 0.9069309234619141,
+ -1.0752454996109009,
+ -0.13163580000400543,
+ -0.5871578454971313,
+ -0.7161726355552673,
+ 0.7114232778549194,
+ 0.05657564848661423,
+ 0.6108219623565674,
+ -0.6108060479164124,
+ 0.04366464167833328,
+ 1.0635548830032349,
+ 0.8383232951164246,
+ 0.30393093824386597,
+ -0.43792659044265747,
+ 0.07563518732786179,
+ 0.6063262820243835,
+ -0.1796012967824936,
+ -0.07116921991109848,
+ -0.5268386006355286,
+ -1.3678205013275146,
+ -1.060629963874817,
+ -2.1869568824768066,
+ -0.3451368510723114,
+ 1.4404628276824951,
+ -0.8121328353881836,
+ 0.5469210147857666,
+ -0.2840927839279175,
+ -0.4978499710559845,
+ 0.571153461933136,
+ 1.129301905632019,
+ 2.7443766593933105,
+ 0.013744078576564789,
+ 1.4331588745117188,
+ 0.7233966588973999,
+ 0.3168279826641083,
+ 0.3482212424278259,
+ 0.17288151383399963,
+ 0.0635162815451622,
+ -0.8336517810821533,
+ 0.5481575727462769,
+ 0.35828250646591187,
+ -0.050624992698431015,
+ -1.0898984670639038,
+ -0.3644455373287201,
+ -0.6142823100090027,
+ 0.8017517328262329,
+ 0.6617117524147034,
+ 0.22498317062854767,
+ 0.4694095849990845,
+ -1.171707034111023,
+ 0.2380533218383789,
+ 0.8000364303588867,
+ -0.5556336045265198,
+ -1.4664465188980103,
+ -1.868472933769226,
+ -1.161336898803711,
+ 0.13468457758426666,
+ 0.8388980031013489,
+ 1.4190186262130737,
+ 2.0924437046051025,
+ -1.4248954057693481,
+ 0.4767341613769531,
+ 0.8219650387763977,
+ 1.0826032161712646,
+ -0.4713844656944275,
+ -0.5382982492446899,
+ 0.29378408193588257,
+ -0.043246444314718246,
+ -0.12513038516044617,
+ 0.6832223534584045,
+ 0.044425755739212036,
+ -0.009286617860198021,
+ -0.16134148836135864,
+ -0.4839845895767212,
+ 0.16768306493759155,
+ -0.7519721984863281,
+ 0.6323575973510742,
+ -0.33593133091926575,
+ -1.6217972040176392,
+ 0.056936509907245636,
+ 1.3280820846557617,
+ 0.014283623546361923,
+ 0.7943315505981445,
+ -0.6234259605407715,
+ -0.5281409025192261,
+ -0.2758501172065735,
+ 0.15489153563976288,
+ 2.124166488647461,
+ -0.4443616569042206,
+ -0.5624357461929321,
+ 0.6541172862052917,
+ -0.001260664314031601,
+ -0.0437425933778286,
+ 0.45586109161376953,
+ 0.22001725435256958,
+ -0.23211880028247833,
+ -0.8507548570632935,
+ -1.0862205028533936,
+ -0.32938018441200256,
+ -1.2367534637451172,
+ 0.462795227766037,
+ -0.1608361452817917,
+ -0.06859344244003296,
+ 0.7960729598999023,
+ -0.7457486391067505,
+ -1.313331127166748,
+ -0.45229774713516235,
+ 0.48838913440704346,
+ -0.4974480867385864,
+ 0.4359560012817383,
+ -0.647529125213623,
+ -0.2393718957901001,
+ 0.29138314723968506,
+ -0.23432378470897675,
+ -1.395304799079895,
+ -0.8322181701660156,
+ 0.3459388017654419,
+ 0.3297283351421356,
+ 0.8420426845550537,
+ -1.1704151630401611,
+ -1.0991886854171753,
+ -1.4340143203735352,
+ -0.495882123708725,
+ -0.7840033173561096,
+ -0.2352784276008606,
+ -0.28841039538383484,
+ -0.19788730144500732,
+ 0.07698539644479752,
+ -2.233419418334961,
+ 0.3100375831127167,
+ -0.3487953841686249,
+ -0.5244371891021729,
+ -0.5135942101478577,
+ 0.9941699504852295,
+ 0.46242570877075195,
+ -0.37324193120002747,
+ -0.094240203499794,
+ -0.9447152018547058,
+ -0.854065477848053,
+ 1.1306720972061157,
+ 0.153880313038826,
+ 0.9782289266586304,
+ -0.3542867600917816,
+ -0.7861905097961426,
+ 1.3264365196228027,
+ 0.5420423746109009,
+ -0.7946898341178894,
+ 0.775206983089447,
+ 0.22848929464817047,
+ -1.327483892440796,
+ 0.4976159334182739,
+ -1.035797119140625,
+ -0.4015364348888397,
+ 0.1627267450094223,
+ -0.11439978331327438,
+ -0.4184378683567047,
+ -1.2377119064331055,
+ 1.6077276468276978,
+ -0.21431848406791687,
+ 0.2693818509578705,
+ -3.1576991081237793,
+ -0.4489489197731018,
+ 0.3390344977378845,
+ -0.9710279107093811,
+ -0.45684146881103516,
+ -0.7185428738594055,
+ -0.1646045744419098,
+ -0.2558826804161072,
+ -1.1496543884277344,
+ -1.2283037900924683,
+ 1.2644366025924683,
+ 0.2886621654033661,
+ -0.9763073325157166,
+ 0.24786001443862915,
+ -0.6497400999069214,
+ 1.0862276554107666,
+ -1.0517641305923462,
+ 1.7364826202392578,
+ -0.23705680668354034,
+ 0.5266475677490234,
+ 0.553151547908783,
+ 0.6825574636459351,
+ -0.07788220047950745,
+ -0.18848124146461487,
+ 0.19465531408786774,
+ -0.1641543060541153,
+ 1.3811603784561157,
+ -0.4267750382423401,
+ -1.3764094114303589,
+ 0.39083707332611084,
+ -1.1935017108917236,
+ -0.0037062689661979675,
+ -0.06485366821289062,
+ 1.251153588294983,
+ -0.2691514492034912,
+ -1.0046606063842773,
+ 0.03916775435209274,
+ 0.402529776096344,
+ -1.183556318283081,
+ -0.1460762321949005,
+ -0.09107042104005814,
+ -0.32747796177864075,
+ 1.4958853721618652,
+ -1.3275047540664673,
+ 0.3644396960735321,
+ 1.3207087516784668,
+ -0.2695222496986389,
+ 0.20170289278030396,
+ 1.0864344835281372,
+ -0.0844859704375267,
+ 0.611228346824646,
+ -0.7705137729644775,
+ -0.36440253257751465,
+ 0.6173613667488098,
+ 0.13172267377376556,
+ -0.25637805461883545,
+ 0.22548578679561615,
+ 0.29029080271720886,
+ -0.8865943551063538,
+ 0.32996779680252075,
+ -0.5011508464813232,
+ -0.04918789863586426,
+ 0.7381181120872498,
+ -0.47045499086380005,
+ -0.005815401673316956,
+ -0.027194922789931297,
+ -0.3136778473854065,
+ -1.6204107999801636,
+ 0.17953483760356903,
+ 0.353632390499115,
+ 0.7218494415283203,
+ 2.2253201007843018,
+ 0.224718376994133,
+ 0.5270498991012573,
+ 0.5778025984764099,
+ -0.04645860195159912,
+ 0.6447862982749939,
+ 0.551137387752533,
+ 0.6996761560440063,
+ -0.8538955450057983,
+ 0.18612444400787354,
+ 0.7712594270706177,
+ -0.6094004511833191,
+ -0.07971401512622833,
+ -0.4697316884994507,
+ -1.0366977453231812,
+ -0.4361540675163269,
+ 1.0465798377990723,
+ -0.40104180574417114,
+ -1.579453945159912,
+ 0.6116458177566528,
+ 0.5397518873214722,
+ -1.4117262363433838,
+ -0.044744499027729034,
+ -0.0659753829240799,
+ -0.5229405164718628,
+ -0.220308318734169,
+ 1.0719149112701416,
+ -0.5013378858566284,
+ -0.43665656447410583,
+ -0.7826628088951111,
+ 0.7713637948036194,
+ 0.19880063831806183,
+ -0.31755200028419495,
+ 1.05410897731781,
+ -0.7412571907043457,
+ -0.6712166666984558,
+ 0.03227023780345917,
+ 0.3568456470966339,
+ 1.2484556436538696,
+ -0.9480254650115967,
+ 1.3285750150680542,
+ -0.9498515129089355,
+ -0.9053342938423157,
+ 0.40627920627593994,
+ -0.1338968425989151,
+ -0.23152101039886475,
+ 0.36737629771232605,
+ 0.6769088506698608,
+ -0.5102267861366272,
+ 0.7883734107017517,
+ -0.3603874444961548,
+ -1.306851863861084,
+ 0.2223246544599533,
+ -0.3523465096950531,
+ 0.9630844593048096,
+ 0.21318766474723816,
+ -0.6811987161636353,
+ -0.665921151638031,
+ 0.030713267624378204,
+ -4.721132755279541,
+ 0.15614458918571472,
+ 0.06329525262117386,
+ -0.9370498061180115,
+ -1.192287802696228,
+ 0.10914556682109833,
+ -0.36101973056793213,
+ -1.9976866245269775,
+ 0.5310052037239075,
+ -0.5124298334121704,
+ -0.4176434874534607,
+ 0.5804174542427063,
+ 0.8087927103042603,
+ -1.2296779155731201,
+ 0.3924281597137451,
+ 1.4893935918807983,
+ 0.6449407339096069,
+ -1.5383275747299194,
+ -0.03531677648425102,
+ 1.8003549575805664,
+ 0.058769673109054565,
+ 0.44654780626296997,
+ 0.699923574924469,
+ 0.5485972166061401,
+ 0.3125539720058441,
+ -0.2866179943084717,
+ -1.416628122329712,
+ 0.7272223830223083,
+ -1.3175781965255737,
+ -1.1515283584594727,
+ -0.1122065931558609,
+ -0.7656974792480469,
+ 1.4076439142227173,
+ 1.4916869401931763,
+ 1.9212310314178467,
+ 0.5979814529418945,
+ 0.45238810777664185,
+ -0.481923371553421,
+ -0.7701524496078491,
+ 0.3694663941860199,
+ 1.2758347988128662,
+ 0.3876473605632782,
+ -0.9125909805297852,
+ 0.20640116930007935,
+ 0.32274553179740906,
+ -0.8918213248252869,
+ 0.775703489780426,
+ -0.47514182329177856,
+ -1.0115249156951904,
+ 0.1534203290939331,
+ 0.4644448757171631,
+ 0.9871540069580078,
+ 0.6373897790908813,
+ 0.7329819798469543,
+ 0.47137296199798584,
+ -0.6443430185317993,
+ -0.47092992067337036,
+ 0.7033941745758057,
+ -0.37652352452278137,
+ 0.6351244449615479,
+ -0.37956544756889343,
+ -0.14108707010746002,
+ -0.8842394351959229,
+ -1.8803725242614746,
+ -0.2222243994474411,
+ 0.060340218245983124,
+ -2.109769105911255,
+ 1.1115405559539795,
+ 0.4533560872077942,
+ 0.7735617756843567,
+ -0.8725129961967468,
+ -1.2344396114349365,
+ 1.1103639602661133,
+ -0.9702818989753723,
+ 0.4261910915374756,
+ -0.013977272436022758,
+ 1.1165812015533447,
+ 0.3554093837738037,
+ -1.3882578611373901,
+ -1.7783994674682617,
+ -1.6152833700180054,
+ -1.0864362716674805,
+ 0.7871279716491699,
+ 0.6543307900428772,
+ 1.2030961513519287,
+ -0.28561702370643616,
+ -1.0100666284561157,
+ 0.3150891661643982,
+ -1.464525580406189,
+ 0.5838913321495056,
+ -1.5677404403686523,
+ -1.014822006225586,
+ 0.9354587197303772,
+ 0.4767743647098541,
+ -1.7620081901550293,
+ 0.21075241267681122,
+ -0.5026463270187378,
+ 0.5331401824951172,
+ -0.8509007096290588,
+ -0.5874245166778564,
+ -0.44402822852134705,
+ -0.24434894323349,
+ 0.1444884091615677,
+ -0.5177885293960571,
+ -0.7088390588760376,
+ -0.34734848141670227,
+ 1.4814815521240234,
+ -0.11032592505216599,
+ -0.520723819732666,
+ 0.5118257999420166,
+ 0.7079362273216248,
+ 0.055280670523643494,
+ 0.37974345684051514,
+ -0.14676211774349213,
+ -0.2042294442653656,
+ 0.03286049887537956,
+ -0.23273003101348877,
+ -0.228271484375,
+ -0.36133942008018494,
+ 0.09659995138645172,
+ 0.5338663458824158,
+ -0.07735597342252731,
+ -0.024965109303593636,
+ -1.537298321723938,
+ 0.1900671124458313,
+ 1.6426658630371094,
+ 0.5878965854644775,
+ 0.6481277346611023,
+ 1.7920207977294922,
+ -0.6800113916397095,
+ 0.42307883501052856,
+ -1.7815556526184082,
+ -0.13565689325332642,
+ 0.6393008232116699,
+ 0.889188289642334,
+ -1.9081010818481445,
+ 0.68524569272995,
+ 0.6505967974662781,
+ -0.3382648527622223,
+ -0.6740865111351013,
+ -0.33960816264152527,
+ -0.5594702363014221,
+ -1.0609513521194458,
+ 0.5498495697975159,
+ -0.4509511888027191,
+ 0.8366281986236572,
+ 0.03478989005088806,
+ 0.27171415090560913,
+ -1.660704255104065,
+ -1.2095489501953125,
+ 0.11453425884246826,
+ -0.5375202894210815,
+ 0.6793479323387146,
+ -0.04462495073676109,
+ 0.7920376658439636,
+ 1.2585463523864746,
+ -0.5782163739204407,
+ -0.2649536430835724,
+ 0.5059040188789368,
+ 0.21712158620357513,
+ 0.032306283712387085,
+ -0.9045120477676392,
+ -0.5950447916984558,
+ -0.2437775433063507,
+ -0.6663963198661804,
+ -0.08371935784816742,
+ 1.0822826623916626,
+ -0.5138806104660034,
+ -0.38405072689056396,
+ -0.855365514755249,
+ 0.6616190671920776,
+ 0.9080360531806946,
+ -0.7388907074928284,
+ -0.3587499260902405,
+ 0.9082456827163696,
+ 0.09674562513828278,
+ 0.8134639859199524,
+ -0.7078348398208618,
+ 0.6843451261520386,
+ -1.0085481405258179,
+ 0.6716887950897217,
+ 0.08801105618476868,
+ -0.3533031642436981,
+ 1.030312180519104,
+ 1.0571986436843872,
+ 0.3516235649585724,
+ -0.43346428871154785,
+ -0.3378602862358093,
+ -0.04090816527605057,
+ 0.15924358367919922,
+ -0.09293575584888458,
+ -0.5545360445976257,
+ 0.8088597059249878,
+ -0.862376868724823,
+ 0.8279412388801575,
+ -0.5731446743011475,
+ -0.7559975385665894,
+ 0.32172104716300964,
+ 0.11497378349304199,
+ 0.07567156106233597,
+ -0.19071465730667114,
+ 0.22352014482021332,
+ 0.5948725342750549,
+ -0.3199390769004822,
+ -0.5632994174957275,
+ 0.951978862285614,
+ 0.26312530040740967,
+ -0.27530550956726074,
+ -0.17691709101200104,
+ 0.24361231923103333,
+ -1.030924916267395,
+ -0.6772990226745605,
+ -0.7426257133483887,
+ 0.6432575583457947,
+ -0.7384631633758545,
+ 0.10956995189189911,
+ 0.2237464189529419,
+ -0.4747174382209778,
+ 1.0294603109359741,
+ 0.6529409885406494,
+ 0.567838728427887,
+ 0.5639886856079102,
+ -1.079118251800537,
+ 0.2762095034122467,
+ 0.5925458073616028,
+ 0.1511726826429367,
+ -0.8157801628112793,
+ 0.4901677370071411,
+ -0.314702570438385,
+ -0.48206576704978943,
+ 0.43186771869659424,
+ 0.44907981157302856,
+ 0.957984447479248,
+ 0.9834866523742676,
+ 0.8029231429100037,
+ -0.2842593193054199,
+ -0.43065324425697327,
+ 0.29574331641197205,
+ -0.3707432150840759,
+ -0.3718971610069275,
+ 1.0063203573226929,
+ -0.14610688388347626,
+ 0.12545301020145416,
+ 1.0092227458953857
+ ]
+ }
+]
\ No newline at end of file
diff --git a/fetishTest/test.py b/fetishTest/test.py
new file mode 100644
index 0000000000000000000000000000000000000000..bb8e743abbf09905548492a4e049f24284bc37f8
--- /dev/null
+++ b/fetishTest/test.py
@@ -0,0 +1,30 @@
+import subprocess
+import json, httpx
+
+# API的URL
+url = "http://localhost:8002/fetish"
+
+# 准备要发送的数据 生成A-D之间的十个随机答案
+import random
+
+answers = []
+for _ in range(10):
+ answers.append(random.choice(["A", "B", "C", "D"]))
+data = {
+ "answer": answers # 替换为实际的答案列表
+}
+
+# 将数据转换为JSON字符串
+data_json = json.dumps(data)
+
+# 构建curl命令
+curl_command = [
+ "curl", "-X", "POST", "-H", "Content-Type: application/json", "-d", data_json, url
+]
+
+# 执行curl命令
+process = subprocess.run(curl_command, capture_output=True, text=True)
+
+# 打印返回的结果
+print(process.stdout)
+print(data_json)
\ No newline at end of file
diff --git a/milvusDB/prepare_milvus.py b/milvusDB/prepare_milvus.py
new file mode 100644
index 0000000000000000000000000000000000000000..be85f9d9dd33ae27a3c150acffd27d73fdf36d58
--- /dev/null
+++ b/milvusDB/prepare_milvus.py
@@ -0,0 +1,215 @@
+from pymilvus import MilvusClient, DataType, FieldSchema, CollectionSchema, Collection
+
+URI = "http://localhost:19530"
+def prepare_sex_ed_article_milvus():
+ client = MilvusClient(uri=URI)
+ client.drop_collection("t_sur_sex_ed_article_spider")
+
+ # Fields
+ id = FieldSchema(name="id", dtype=DataType.VARCHAR, is_primary=True, max_length=1000)
+ s_title = FieldSchema(name="title", dtype=DataType.VARCHAR, max_length=2000)
+ v_title = FieldSchema(name="title_vector", dtype=DataType.FLOAT_VECTOR, dim=1024)
+ s_chunk = FieldSchema(name="chunk", dtype=DataType.VARCHAR, max_length=2000)
+ v_chunk = FieldSchema(name="chunk_vector", dtype=DataType.FLOAT_VECTOR, dim=1024)
+ tags = FieldSchema(name="tags", dtype=DataType.FLOAT_VECTOR, dim=1024)
+ link = FieldSchema(name="link", dtype=DataType.VARCHAR, max_length=512)
+ category = FieldSchema(name="category", dtype=DataType.VARCHAR, max_length=128)
+
+ # Collection schema
+ collection_schema = CollectionSchema(
+ fields=[id, s_title, v_title, s_chunk, v_chunk, tags, link, category],
+ auto_id=False,
+ enable_dynamic_field=True,
+ description="Schema of collection: t_sur_sex_ed_article_spider"
+ )
+
+ # indexs
+ index_params = client.prepare_index_params()
+ index_params.add_index(
+ field_name="title_vector",
+ index_type="IVF_FLAT",
+ metric_type="COSINE",
+ params={"nlist": 128}
+ )
+ index_params.add_index(
+ field_name="chunk_vector",
+ index_type="IVF_FLAT",
+ metric_type="COSINE",
+ params={"nlist": 128}
+ )
+ index_params.add_index(
+ field_name="tags",
+ index_type="IVF_FLAT",
+ metric_type="COSINE",
+ params={"nlist": 128}
+ )
+
+ # create collection
+ client.create_collection(
+ collection_name="t_sur_sex_ed_article_spider",
+ schema=collection_schema,
+ index_params=index_params
+ )
+
+ status = client.get_load_state("t_sur_sex_ed_article_spider")
+ print(f"t_sur_sex_ed_article_spider:{status}")
+
+
+def prepare_sex_ed_qa_milvus():
+ client = MilvusClient(uri=URI)
+ client.drop_collection("t_sur_sex_ed_question_answer_spider")
+
+ # Fields
+ id = FieldSchema(name="id", dtype=DataType.VARCHAR, is_primary=True, max_length=1000)
+ url = FieldSchema(name="url", dtype=DataType.VARCHAR, max_length=1000)
+ title = FieldSchema(name="title", dtype=DataType.VARCHAR, max_length=2000)
+ v_title = FieldSchema(name="title_vector", dtype=DataType.FLOAT_VECTOR, dim=1024)
+ content = FieldSchema(name="content", dtype=DataType.VARCHAR, max_length=2000)
+ v_content = FieldSchema(name="content_vector", dtype=DataType.FLOAT_VECTOR, dim=1024)
+ content_type = FieldSchema(name="content_type", dtype=DataType.VARCHAR, max_length=8)
+ author = FieldSchema(name="author", dtype=DataType.VARCHAR, max_length=64)
+ avatar_url = FieldSchema(name="avatar_url", dtype=DataType.VARCHAR, max_length=1024)
+ likes = FieldSchema(name="likes", dtype=DataType.INT32)
+ dislikes = FieldSchema(name="dislikes", dtype=DataType.INT32)
+
+ # Collection schema
+ collection_schema = CollectionSchema(
+ fields=[id, url, title, v_title, content, v_content, content_type, author, avatar_url, likes, dislikes],
+ auto_id=False,
+ enable_dynamic_fields=True,
+ description="Sex Education QA"
+ )
+
+ # indexs
+ index_params = client.prepare_index_params()
+ index_params.add_index(
+ field_name="title_vector",
+ index_type="IVF_FLAT",
+ metric_type="COSINE",
+ params={"nlist": 128}
+ )
+ index_params.add_index(
+ field_name="content_vector",
+ index_type="IVF_FLAT",
+ metric_type="COSINE",
+ params={"nlist": 128}
+ )
+
+ # create collection
+ client.create_collection(
+ collection_name="t_sur_sex_ed_question_answer_spider",
+ schema=collection_schema,
+ index_params=index_params
+ )
+
+ status = client.get_load_state("t_sur_sex_ed_question_answer_spider")
+ print(f"t_sur_sex_ed_question_answer_spider:{status}")
+
+
+def prepare_sex_ed_youtube():
+ client = MilvusClient(uri=URI)
+ client.drop_collection("t_sur_sex_ed_youtube_spider")
+
+ # Fields
+ id = FieldSchema(name="id", dtype=DataType.VARCHAR, is_primary=True, max_length=1000)
+ link = FieldSchema(name="link", dtype=DataType.VARCHAR, max_length=512)
+ title = FieldSchema(name="title", dtype=DataType.VARCHAR, max_length=256)
+ v_title = FieldSchema(name="title_vector", dtype=DataType.FLOAT_VECTOR, dim=1024)
+ views = FieldSchema(name="views", dtype=DataType.VARCHAR, max_length=64)
+ author = FieldSchema(name="author", dtype=DataType.VARCHAR, max_length=64)
+ picture = FieldSchema(name="picture", dtype=DataType.VARCHAR, max_length=512)
+ likes = FieldSchema(name="likes", dtype=DataType.VARCHAR, max_length=64)
+ duration = FieldSchema(name="duration", dtype=DataType.VARCHAR, max_length=64)
+ tag = FieldSchema(name="tag", dtype=DataType.VARCHAR, max_length=64)
+ v_tag = FieldSchema(name="tag_vector", dtype=DataType.FLOAT_VECTOR, dim=1024)
+ delete_status = FieldSchema(name="delete_status", dtype=DataType.INT8)
+
+ # Collection schema
+ collection_schema = CollectionSchema(
+ fields=[id, link, title, v_title, views, author, picture, likes, duration, tag, v_tag, delete_status],
+ auto_id=False,
+ enable_dynamic_fields=True,
+ description="Sex Education videos collection"
+ )
+
+ # indexs
+ index_params = client.prepare_index_params()
+ index_params.add_index(
+ field_name="title_vector",
+ index_type="IVF_FLAT",
+ metric_type="COSINE",
+ params={"nlist": 128}
+ )
+ index_params.add_index(
+ field_name="tag_vector",
+ index_type="IVF_FLAT",
+ metric_type="COSINE",
+ params={"nlist": 128}
+ )
+
+ # create collection
+ client.create_collection(
+ collection_name="t_sur_sex_ed_youtube_spider",
+ schema=collection_schema,
+ index_params=index_params
+ )
+
+ status = client.get_load_state(f"t_sur_sex_ed_youtube_spider")
+ print(f"t_sur_sex_ed_youtube_spider:{status}")
+
+
+def prepare_pornVideo():
+ client = MilvusClient(uri=URI)
+ client.drop_collection("t_sur_video")
+
+ # Fields
+ url = FieldSchema(name="url", dtype=DataType.VARCHAR, max_length=256, is_primary=True)
+ duration = FieldSchema(name="duration", dtype=DataType.INT64)
+ viewCount = FieldSchema(name="viewCount", dtype=DataType.INT64)
+ cover_picture = FieldSchema(name="coverPicture", dtype=DataType.VARCHAR, max_length=1024)
+ title = FieldSchema(name="title", dtype=DataType.VARCHAR, max_length=512)
+ v_title = FieldSchema(name="title_vector", dtype=DataType.FLOAT_VECTOR, dim=1024)
+ uploader = FieldSchema(name="uploader", dtype=DataType.VARCHAR, max_length=256)
+ categories = FieldSchema(name="categories", dtype=DataType.VARCHAR, max_length=1024)
+ v_categories = FieldSchema(name="categories_vector", dtype=DataType.FLOAT_VECTOR, dim=1024)
+ resource_type = FieldSchema(name="resourceType", dtype=DataType.INT8)
+ sexual_preference = FieldSchema(name="sexualPreference", dtype=DataType.INT8)
+
+ # Collection Schema
+ collection_schema = CollectionSchema(
+ fields=[url, duration, viewCount, cover_picture, title, v_title, uploader, categories, v_categories, resource_type, sexual_preference],
+ auto_id=False,
+ enable_dynamic_fields=True,
+ description="Sexual Education Videos"
+ )
+
+ #indexs
+ index_params = client.prepare_index_params()
+ index_params.add_index(
+ field_name="title_vector",
+ index_type="IVF_FLAT",
+ metric_type="COSINE",
+ params={"nlist": 128}
+ )
+ index_params.add_index(
+ field_name="categories_vector",
+ index_type="IVF_FLAT",
+ metric_type="COSINE",
+ params={"nlist": 128}
+ )
+
+ # create collection
+ client.create_collection(
+ collection_name="t_sur_video",
+ schema=collection_schema,
+ index_params=index_params
+ )
+
+ status = client.get_load_state("t_sur_video")
+ print(f"t_sur_video:{status}")
+
+if __name__ == '__main__':
+ prepare_sex_ed_article_milvus()
+ prepare_sex_ed_qa_milvus()
+ prepare_sex_ed_youtube()
+ prepare_pornVideo()
diff --git a/milvusDB/retriever.py b/milvusDB/retriever.py
new file mode 100644
index 0000000000000000000000000000000000000000..03dd4952bc76f39f94e7d38bd88c4fdc7b7c5d6d
--- /dev/null
+++ b/milvusDB/retriever.py
@@ -0,0 +1,115 @@
+from pymilvus import MilvusClient, WeightedRanker, AnnSearchRequest
+from langchain_ollama import OllamaEmbeddings
+
+class MilvusRetriever:
+ def __init__(self, uri):
+ self.uri = uri
+ self.embed_model = OllamaEmbeddings(model="bge-m3")
+ self.client = MilvusClient(self.uri)
+
+ def search(self, query, collection_name, top_k=10):
+ # Connect to Milvus and search for the top_k nearest neighbors to the query_vector
+ # in the specified collection.
+ """_summary_
+
+ Args:
+ query (_type_): query string
+ collection_name (_type_): milvus_collection_name
+ top_k (int, optional): Top k results. Defaults to 10.
+
+ Returns:
+ [{"id", "distance", "entity"}]
+ """
+ query_embedding = self.embed_model.embed_query(query)
+
+ if collection_name == "t_sur_sex_ed_article_spider":
+ return self.article_search(query_embedding, collection_name, top_k=top_k)
+
+ if collection_name == "t_sur_sex_ed_question_answer_spider":
+ return self.qa_search(query_embedding, collection_name, top_k=top_k)
+
+ if collection_name == "t_sur_sex_ed_youtube_spider":
+ return self.video_search(query_embedding, collection_name, top_k=top_k)
+
+ def article_search(self, embedding, collection_name, top_k):
+ search_param1 = {
+ "data": [embedding],
+ "anns_field": "chunk_vector",
+ "param": {
+ "metric_type": "COSINE",
+ "params": {"nprobe": 10}
+ },
+ "limit": top_k
+ }
+ search_param2 = {
+ "data": [embedding],
+ "anns_field": "title_vector",
+ "param": {
+ "metric_type": "COSINE",
+ "params": {"nprobe": 10}
+ },
+ "limit": top_k
+ }
+ search_param3 = {
+ "data": [embedding],
+ "anns_field": "tags",
+ "param": {
+ "metric_type": "COSINE",
+ "params": {"nprobe": 10}
+ },
+ "limit": top_k
+ }
+ rerank = WeightedRanker(0.6, 0.3, 0.1)
+ r1, r2, r3 = AnnSearchRequest(**search_param1), AnnSearchRequest(**search_param2), AnnSearchRequest(**search_param3)
+ candidates = [r1, r2, r3]
+ res = self.client.hybrid_search(
+ collection_name=collection_name,
+ ranker=rerank,
+ reqs=candidates,
+ limit=top_k,
+ output_fields=["title", "link", "chunk", "category"]
+ )[0]
+ return res
+
+ def qa_search(self, embedding, collection_name, top_k):
+ res = self.client.search(
+ collection_name=collection_name,
+ data=[embedding],
+ anns_field="title_vector",
+ search_params={"metric_type": "COSINE", "params": {"nprobe": 10}},
+ limit=top_k,
+ filter="content_type == 'A'",
+ output_fields=["title", "content", "url", "author", "avatar_url", "likes", "dislikes"]
+ )[0]
+ # 去重title
+ titles = []
+ result = []
+ for record in res:
+ if record["entity"]["title"] not in titles:
+ titles.append(record["entity"]["title"])
+ result.append(record)
+ return result
+
+ def video_search(self, embedding, collection_name, top_k):
+ res = self.client.search(
+ collection_name=collection_name,
+ data=[embedding],
+ anns_field="title_vector",
+ search_params={"metric_type": "COSINE", "params": {"nprobe": 10}},
+ filter="delete_status == 0",
+ limit=top_k,
+ output_fields=["title", "link", "author", "picture", "duration"]
+ )[0]
+ return res
+
+ def porn_search(self, embedding, collection_name, top_k):
+ pass
+
+if __name__ == "__main__":
+ import json
+ retriever = MilvusRetriever(uri="http://localhost:19530")
+ colleciton_name = "t_sur_sex_ed_article_spider"
+ query = "How to build trust?"
+ res = retriever.search(query, colleciton_name, top_k=10)
+ res = [record["entity"] for record in res if record["distance"] > 0.3]
+ print(json.dumps(res))
diff --git a/milvusDB/update_milvus.py b/milvusDB/update_milvus.py
new file mode 100644
index 0000000000000000000000000000000000000000..cc3a332575e137cc7387c2925cc1622535095967
--- /dev/null
+++ b/milvusDB/update_milvus.py
@@ -0,0 +1,275 @@
+from fastapi import FastAPI, Request
+from langchain_ollama import OllamaEmbeddings
+from llama_index.core.node_parser import SentenceSplitter
+from pymilvus import MilvusClient
+from tqdm import tqdm
+from concurrent.futures import ThreadPoolExecutor
+import html2text
+import logging
+
+# 配置日志
+logging.basicConfig(
+ filename='/home/purui/update_milvus.log', # 日志文件路径
+ filemode='a', # 追加模式
+ format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
+ level=logging.ERROR
+)
+
+# 创建一个logger
+logger = logging.getLogger(__name__)
+
+executor = ThreadPoolExecutor(max_workers=10)
+
+h = html2text.HTML2Text()
+h.ignore_links = True
+
+embed_model = OllamaEmbeddings(model="bge-m3")
+
+app = FastAPI(
+ title="update_milvus",
+ description="update_milvus",
+)
+
+URI = "http://localhost:19530"
+
+def update_article(data):
+ # update article
+ splitter = SentenceSplitter(chunk_size=200, chunk_overlap=20)
+ client = MilvusClient(uri=URI)
+ collection_name = "t_sur_sex_ed_article_spider"
+
+ logger.info(f"Starting Embedding: {data}")
+ ct = 0
+ for row in tqdm(data, desc="Updating Milvus"):
+ id = row["id"]
+ # 同ID数据更新
+ if client.get(collection_name=collection_name, ids=[id]):
+ client.delete(collection_name=collection_name, filter='id like "{id}%"')
+ title = row["title"]
+ content = row["content"]
+ tags = row["tags"]
+ link = row["link"]
+ category = row["category2"]
+ if category is None:
+ category = " "
+
+ content = splitter.split_text(h.handle(content)) # List[str]
+ content_embeddings = embed_model.embed_documents(content) # List[List[float]]
+
+ title_embeddings = embed_model.embed_query(title)
+ tags_embeddings = embed_model.embed_query(tags)
+
+ insert_data = []
+ # iter chunks from one article
+ for idx, (sentence, embedding) in enumerate(zip(content, content_embeddings)):
+ # update milvus
+ id = id + "_" + str(idx)
+ s_title = title
+ v_title = title_embeddings
+ s_chunk = sentence
+ v_chunk = embedding
+ row_data = {
+ "id": id,
+ "title": s_title,
+ "title_vector": v_title,
+ "chunk": s_chunk,
+ "chunk_vector": v_chunk,
+ "tags": tags_embeddings,
+ "link": link,
+ "category": category
+ }
+ insert_data.append(row_data)
+ ct += 1
+ # update milvus
+ client.insert(collection_name=collection_name, data=insert_data)
+ logger.error(f"Insert complete. {ct} chunks inserted.")
+
+def update_qa(data):
+ # set up
+ client = MilvusClient(uri=URI)
+ collection_name = "t_sur_sex_ed_question_answer_spider"
+ splitter = SentenceSplitter(chunk_size=200, chunk_overlap=20)
+
+ logger.info(f"Starting Embedding: {data}")
+ ct = 0
+ for row in tqdm(data, desc="Updating Milvus"):
+ id = row["id"]
+ # 同ID数据更新
+ if client.get(collection_name=collection_name, ids=[id]):
+ client.delete(collection_name=collection_name, filter='id like "{id}%"')
+ url = row["url"]
+ title = row["title"]
+ content = row["content"]
+ content_type = row["type"]
+ likes = row["likeCount"]
+ dislikes = row["dislikeCount"]
+ author = row["authorName"]
+ avatar_url = row["avatarUrl"]
+ if avatar_url is None:
+ avatar_url = " "
+ content = splitter.split_text(h.handle(content))
+
+ title_vector = embed_model.embed_query(title)
+ content_vector = embed_model.embed_documents(content)
+ # iter chunks from one article
+
+ for idx, (sentence, embedding) in enumerate(zip(content, content_vector)):
+ sub_id = id + "_" + str(idx)
+ row_data = {
+ "id": sub_id,
+ "url": url,
+ "title_vector": title_vector,
+ "content_vector": embedding,
+ "title": title,
+ "content": sentence,
+ "content_type":content_type,
+ "author": author,
+ "avatar_url": avatar_url,
+ "likes": likes,
+ "dislikes": dislikes
+ }
+ # update milvus
+ client.insert(collection_name=collection_name, data=row_data)
+ ct += 1
+ logger.error(f"Insert complete. {ct} data inserted.")
+
+
+def update_video(data):
+ # set up
+ client = MilvusClient(uri=URI)
+ collection_name = "t_sur_sex_ed_youtube_spider"
+
+ logger.info(f"Starting Embedding: {data}")
+ ct = 0
+
+ for row in tqdm(data, desc="Updating Milvus"):
+ id = row["id"]
+ # 同ID数据更新
+ if client.get(collection_name=collection_name, ids=[id]):
+ client.delete(collection_name=collection_name, filter='id like "{id}%"')
+ link = row["videoLink"]
+ title = row["videoTitle"]
+ views = row["videoViews"]
+ author = row["videoAuthor"]
+ picture = row["videoPicture"]
+ likes = row["videoLikes"]
+ duration = row["videoDuration"]
+ tag = row["tag"]
+ delete_status = row["deleteStatus"]
+
+ title_vector = embed_model.embed_query(title)
+ tag_vector = embed_model.embed_query(tag)
+ views = "".join(views.split(",")) # 599,450 -> 599450
+
+ if delete_status == "1":
+ continue
+ row_data = {
+ "id": id,
+ "link": link,
+ "title": title,
+ "title_vector": title_vector,
+ "tag": tag,
+ "tag_vector": tag_vector,
+ "author": author,
+ "picture": picture,
+ "likes": likes,
+ "duration": duration,
+ "views": views,
+ "delete_status": delete_status
+ }
+ # update milvus
+ client.insert(collection_name=collection_name, data=row_data)
+ ct += 1
+ logger.error(f"Insert complete. {ct} data inserted.")
+
+def update_porn(data):
+ #set up
+ client = MilvusClient(uri=URI)
+ collection_name = "t_sur_video"
+
+ logger.info(f"Starting Embedding: {data}")
+ ct = 0
+
+ for row in tqdm(data):
+ url = row["webUrl"]
+ duration = row["duration"]
+ viewCount = row["viewCount"]
+ if viewCount == None:
+ continue
+ coverPicture = row["coverPicture"]
+ title = row["title"]
+ uploader = row["uploader"]
+ if uploader == None:
+ uploader = ""
+ categories = row["categories"]
+ resource_type = row["resourceType"]
+ sexual_preference = int(row["sexualPreference"])
+ delete_status = row["isDelete"]
+
+ # delete last element from categories
+ categories = categories[:-1]
+ categories = " ".join(categories)
+
+ # embedding
+ title_vector = embed_model.embed_query(title)
+ categories_vector = embed_model.embed_query(categories)
+
+ if delete_status != 1:
+ row_data = {
+ "url": url,
+ "duration": duration,
+ "viewCount": viewCount,
+ "coverPicture": coverPicture,
+ "title": title,
+ "uploader": uploader,
+ "categories": categories,
+ "resourceType": resource_type,
+ "sexualPreference": sexual_preference,
+ "title_vector": title_vector,
+ "categories_vector": categories_vector
+ }
+
+ client.insert(collection_name, data=row_data)
+ ct += 1
+ logger.error(f"Insert complete. {ct} data inserted.")
+
+
+@app.post("/milvus")
+async def update_milvus(request: Request):
+ # update milvus
+ body = await request.json()
+ data = body["page"]["data"]
+ table = body["type"]
+ print(f"data len: {len(data)}")
+ print(f"table: {table}")
+ if table == "articleSpiderSyncMilVus":
+ # update_article(data)
+ try:
+ executor.submit(update_article, data)
+ return {"status": "SUCCESS"}
+ except Exception as e:
+ logging.info(f"ThreadError: {e}")
+ elif table == "answerSpiderSyncMilVus":
+ try:
+ executor.submit(update_qa, data)
+ return {"status": "SUCCESS"}
+ except Exception as e:
+ logging.info(f"ThreadError: {e}")
+ elif table == "youtubeSpiderSyncMilVus":
+ try:
+ executor.submit(update_video, data)
+ return {"status": "SUCCESS"}
+ except Exception as e:
+ logging.info(f"ThreadError: {e}")
+ elif table == "syncToMediaSyncMilVus":
+ try:
+ executor.submit(update_porn, data)
+ return {"status": "SUCCESS"}
+ except Exception as e:
+ logging.info(f"ThreadError: {e}")
+
+
+
+if __name__ == "__main__":
+ import uvicorn
+ uvicorn.run(app, host="0.0.0.0", port=8010, loop="asyncio")
\ No newline at end of file
diff --git a/pipeline/__init__.py b/pipeline/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/pipeline/chat_pipeline.py b/pipeline/chat_pipeline.py
new file mode 100644
index 0000000000000000000000000000000000000000..dfae91cd4513978a2a86bcfabf77bf73d1f8785e
--- /dev/null
+++ b/pipeline/chat_pipeline.py
@@ -0,0 +1,97 @@
+from llama_index.core.query_pipeline import (
+ QueryPipeline,
+ InputComponent,
+ ArgPackComponent,
+)
+from llama_index.core.prompts import PromptTemplate
+from llama_index.llms.ollama import Ollama
+from typing import Any, Dict, List, Optional
+from llama_index.core.bridge.pydantic import Field
+from llama_index.core.llms import ChatMessage
+from llama_index.core.query_pipeline import CustomQueryComponent
+from llama_index.core.schema import NodeWithScore
+
+
+DEFAULT_CONTEXT_PROMPT = (
+ "Here is some context that may be relevant:\n"
+ "-----\n"
+ "{node_context}\n"
+ "-----chat_history-----\n"
+ "{chat_history}\n"
+ "-----\n"
+ "Please write a response to the following question, using the above context:\n"
+ "{query_str}\n"
+)
+
+
+class ResponseComponent(CustomQueryComponent):
+ llm: Ollama = Field(..., description="The language model to use for generating responses.")
+ system_prompt: Optional[str] = Field(default=None, description="System prompt to use for the LLM")
+ context_prompt: str = Field(
+ default=DEFAULT_CONTEXT_PROMPT,
+ description="Context prompt use for llm",
+ )
+
+ @property
+ def _input_keys(self) -> set:
+ return {"chat_history", "nodes", "query_str"}
+
+ @property
+ def _output_keys(self) -> set:
+ return {"response"}
+
+ def _prepare_context(
+ self,
+ chat_history: List[ChatMessage],
+ nodes: List[NodeWithScore],
+ query_str: str,
+ ) -> List[ChatMessage]:
+ node_context = ""
+ for idx, node in enumerate(nodes):
+ node_text = node.get_content(metadata_mode="llm")
+ node_context += f"Context Chunk {idx}:\n{node_text}\n\n"
+
+ formatted_context = self.context_prompt.format(
+ node_context=node_context,
+ query_str=query_str,
+ chat_history=chat_history
+ )
+ user_message = ChatMessage(role="user", content=formatted_context)
+ chat_history.append(user_message)
+
+ if self.system_prompt is not None:
+ chat_history = [
+ ChatMessage(role="system", content=self.system_prompt),
+ ] + chat_history
+
+ return chat_history
+
+ def _run_component(self, **kwargs) -> Dict[str, Any]:
+ chat_history = kwargs["chat_history"]
+ nodes = kwargs["nodes"]
+ query_str = kwargs["query_str"]
+
+ prepared_context = self._prepare_context(
+ chat_history=chat_history,
+ nodes=nodes,
+ query_str=query_str,
+ )
+
+ response = self.llm.chat(prepared_context)
+
+ return {"response": response}
+
+ async def _arun_component(self, **kwargs: Any) -> Dict[str, Any]:
+ chat_history = kwargs["chat_history"]
+ nodes = kwargs["nodes"]
+ query_str = kwargs["query_str"]
+
+ prepared_context = self._prepare_context(
+ chat_history=chat_history,
+ nodes=nodes,
+ query_str=query_str,
+ )
+
+ response = await self.llm.chat(prepared_context)
+
+ return {"response": response}
\ No newline at end of file
diff --git a/pipeline/kb_pipeline.py b/pipeline/kb_pipeline.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/pipeline/modules.py b/pipeline/modules.py
new file mode 100644
index 0000000000000000000000000000000000000000..784161fb0a0830af7ad2278bb98e96cf699ad047
--- /dev/null
+++ b/pipeline/modules.py
@@ -0,0 +1,112 @@
+import os
+from llama_index.core import load_index_from_storage, StorageContext, SQLDatabase, VectorStoreIndex, Settings
+from llama_index.core.objects import (
+ SQLTableNodeMapping,
+ ObjectIndex,
+ SQLTableSchema,
+)
+from typing import List, Dict, Any
+from pydantic import BaseModel
+from langchain_community.embeddings.ollama import OllamaEmbeddings
+from llama_index.core.llms import ChatResponse
+from llama_index.core.indices.keyword_table.base import KeywordTableIndex
+from llama_index.core.query_pipeline import CustomQueryComponent
+from llama_index.core.retrievers import SQLRetriever
+from llama_index.core.bridge.pydantic import Field
+
+embed_model = OllamaEmbeddings(model="pornchat")
+Settings.embed_model = embed_model
+
+class CustomSQLRetriever(CustomQueryComponent):
+
+ sql_db: SQLDatabase = Field(..., description="SQL Database")
+
+ def _validate_component_inputs(
+ self, input: Dict[str, Any]
+ ) -> Dict[str, Any]:
+ """Validate component inputs during run_component."""
+ # NOTE: this is OPTIONAL but we show you here how to do validation as an example
+ return input
+
+ @property
+ def _input_keys(self) -> set:
+ """Input keys dict."""
+ return {"query_str", "sql_query"}
+
+ @property
+ def _output_keys(self) -> set:
+ # can do multi-outputs too
+ return {"output", "is_valid"}
+
+ def _run_component(self, **kwargs) -> Dict[str, Any]:
+ """Run the component."""
+ # run logic
+ retriever = SQLRetriever(self.sql_db)
+ try:
+ query = kwargs["sql_query"]
+ output = retriever.retrieve(query)
+ is_valid = True
+ except Exception as e:
+ output = ""
+ is_valid = False
+ return {"output": output, "is_valid": is_valid}
+
+
+def get_table_obj_retriever(index_path: str, table_infos: List[BaseModel],schema_table_mapping: Dict[str, str], sql_db: SQLDatabase):
+ if os.path.exists(index_path):
+ index = load_index_from_storage(StorageContext.from_defaults(persist_dir=index_path))
+ node_mapping = SQLTableNodeMapping(sql_db)
+ table_schema_objs = [
+ SQLTableSchema(table_name=schema_table_mapping[t.table_name], context_str=t.table_summary) for t in table_infos
+ ]
+ obj_index = ObjectIndex.from_objects_and_index(objects=table_schema_objs, index=index)
+ retriever = obj_index.as_retriever(simliarity_top_k=1)
+ return retriever
+ else:
+ return False
+
+def create_table_obj_retriever(index_path: str, sql_db: SQLDatabase,
+ table_infos: List[BaseModel],
+ schema_table_mapping: Dict[str, str]
+ ):
+ table_node_mapping = SQLTableNodeMapping(sql_db)
+ table_schema_objs = [
+ SQLTableSchema(table_name=schema_table_mapping[t.table_name], context_str=t.table_summary) for t in table_infos
+ ]
+ storage_context = StorageContext.from_defaults(persist_dir=index_path)
+ obj_index = ObjectIndex.from_objects(
+ table_schema_objs,
+ table_node_mapping,
+ KeywordTableIndex,
+ )
+ retriever = obj_index.as_retriever(similarity_top_k=2)
+ return retriever
+
+def get_table_context_str(schema_table_mapping: Dict[str, str],table_schema_objs: List[SQLTableSchema], sql_database: SQLDatabase):
+ """Get table context string."""
+ context_strs = []
+ for table_schema_obj in table_schema_objs:
+ table_info = sql_database.get_single_table_info(
+ schema_table_mapping[table_schema_obj.table_name]
+ )
+ if table_schema_obj.context_str:
+ table_opt_context = " The table description is: "
+ table_opt_context += table_schema_obj.context_str
+ table_info += table_opt_context
+
+ context_strs.append(table_info)
+ return "\n\n".join(context_strs)
+
+def parse_response_to_sql(response: ChatResponse) -> str:
+ """Parse response to SQL."""
+ response = response.message.content
+ sql_query_start = response.find("SQLQuery:")
+ if sql_query_start != -1:
+ response = response[sql_query_start:]
+ # TODO: move to removeprefix after Python 3.9+
+ if response.startswith("SQLQuery:"):
+ response = response[len("SQLQuery:") :]
+ sql_result_start = response.find("SQLResult:")
+ if sql_result_start != -1:
+ response = response[:sql_result_start]
+ return response.strip().strip("```").strip()
diff --git a/pipeline/search_pipeline.py b/pipeline/search_pipeline.py
new file mode 100644
index 0000000000000000000000000000000000000000..b22338a19e8833e797ba273566652b9d878bec60
--- /dev/null
+++ b/pipeline/search_pipeline.py
@@ -0,0 +1,35 @@
+"""
+"searchParameters": {
+ "q": "apple inc",
+ "gl": "us",
+ "hl": "en",
+ "autocorrect": true,
+ "page": 1,
+ "type": "search" # videos, images
+ },
+
+ 返回结果:
+ result_keys: dict_keys(['search_metadata', 'search_parameters', 'search_information', 'organic_results', 'pagination', 'serpapi_pagination'])
+ 其中video_search:
+ result_keys: dict_keys(['search_metadata', 'search_parameters', 'search_information', 'video_results', 'pagination', 'serpapi_pagination'])
+ 其中xxx_results是包含不同搜索结果(字典)的列表:
+ dict_keys(['position', 'title', 'link', 'displayed_link', 'thumbnail', 'date', 'snippet', 'duration', 'rich_snippet'])
+ {'position': 1, 'title': 'Pornhub 2020 most Popular MILF Videos', 'link': 'https://www.pornhub.com/view_video.php?viewkey=ph602ecf9f1563b', 'displayed_link': 'www.pornhub.com › view_video', 'thumbnail': 'https://serpapi.com/searches/66f1473aca6f0ca2eca329ff/images/d99e1712df529f4c186080a8f9741ab90c6104312b61494d31fa7ecab583106d.jpeg', 'date': 'Feb 18, 2021', 'snippet': 'Watch Pornhub 2020 Most Popular MILF videos on Pornhub.com, the best hardcore porn site. Pornhub is home to the widest selection of free ...', 'duration': '11:31', 'rich_snippet': {'top': {'extensions': ['Pornhub', 'Pornhub Models', 'Feb 18, 2021'], 'detected_extensions': {'feb': 18}}}}
+"""
+
+from serpapi import GoogleSearch
+
+params = {
+ "engine": "google",
+ "q": "苍井空最近的影片",
+ # "location": "Austin, Texas, United States",
+ "google_domain": "google.com",
+ "gl": "us",
+ "hl": "en",
+ "num": 5,
+ "api_key": "0942793f1c7ef851ce5dbcd8b6e3cf5e342a961c8a1b24fae9f552a679c2d444"
+}
+
+search = GoogleSearch(params)
+results = search.get_dict()
+print(type(results["organic_results"][0]))
diff --git a/pipeline/sql_pipeline.py b/pipeline/sql_pipeline.py
new file mode 100644
index 0000000000000000000000000000000000000000..37768101f2c0fdd001e938b3b0da86682b9ef1e9
--- /dev/null
+++ b/pipeline/sql_pipeline.py
@@ -0,0 +1,224 @@
+from llama_index.core.query_pipeline import (
+ QueryPipeline,
+ Link,
+ InputComponent,
+ CustomQueryComponent,
+)
+
+from llama_index.core.objects import (
+ SQLTableNodeMapping,
+ ObjectIndex,
+ SQLTableSchema,
+)
+from pyvis.network import Network
+import Stemmer
+from IPython.display import display, HTML
+from sqlalchemy import create_engine
+from llama_index.core import SQLDatabase, VectorStoreIndex, PromptTemplate
+from llama_index.core.program import LLMTextCompletionProgram
+from llama_index.core.bridge.pydantic import BaseModel, Field
+from typing import Dict, List, Any
+from llama_index.core.query_pipeline import FnComponent
+from llama_index.core.prompts.default_prompts import DEFAULT_TEXT_TO_SQL_PROMPT
+from llama_index.core.retrievers import SQLRetriever
+from llama_index.llms.ollama import Ollama
+from llama_index.core.objects.base import ObjectRetriever
+import pymysql, pandas as pd
+from llama_index.retrievers.bm25 import BM25Retriever
+from llama_index.core.schema import IndexNode
+from modules import (
+ get_table_obj_retriever,
+ create_table_obj_retriever,
+ get_table_context_str,
+ parse_response_to_sql,
+ CustomSQLRetriever
+ )
+
+
+
+PROMPT_STR = """\
+ Give me a summary of the table with the following format.
+
+ - table_summary: Describe what the table is about in short. Columns: [col1(type), col2(type), ...]
+
+ Table:
+ {table_str}
+ """
+
+db_user = "shenzhen_ai_for_vibemate_eson"
+db_password = "dBsnc7OrM0MVi0FEhiHe2y"
+db_host = "192.168.1.99"
+db_port = 3306
+db_name = "hytto_surfease"
+
+TABLE_SUMMARY = {
+ "t_sur_media_sync_es": "This table is about Porn video information:\n\nt_sur_media_sync_es: Columns:id (integer), web_url (string), duration (integer), pattern_per (integer), like_count (integer), dislike_count (integer), view_count (integer), cover_picture (string), title (string), upload_date (datetime), uploader (string), create_time (datetime), update_time (datetime), categories (list of strings), abbreviate_video_url (string), abbreviate_mp4_video_url (string), resource_type (string), like_count_show (integer), stat_version (integer), tags (list of strings), model_name (string), publisher_type (string), period (integer), sexual_preference (string), country (string), type (string), rank_number (integer), rank_rate (float), has_pattern (boolean), trace (string), manifest_url (string), is_delete (boolean), web_url_md5 (string), view_key (string)",
+ "t_sur_models_info": "This table is about Stripchat models' information:\n\nt_sur_models_info: Columns:id (INTEGER), username (VARCHAR(100), image (VARCHAR(500), num_users (INTEGER), pf (VARCHAR(50), pf_model_unite (VARCHAR(50), use_plugin (INTEGER), create_time (DATETIME), update_time (DATETIME), update_time (DATETIME), gender (VARCHAR(50), broadcast_type (VARCHAR(50), common_gender (VARCHAR(50), avatar (VARCHAR(512), age (INTEGER) "
+}
+
+class SQLPipeline:
+ def __init__(self, llm: Ollama):
+ self.llm = llm
+ self.engine = create_engine(f"mysql+pymysql://{db_user}:{db_password}@{db_host}:{db_port}/{db_name}")
+ self.sql_db = SQLDatabase(self.engine)
+ self.table_names = self.sql_db.get_usable_table_names()
+ self.schema_table_mapping = {}
+ self.init_schema_table_mapping()
+ self.modules = self.prepare_modules()
+ self.pipeline = self.build_pipeline()
+
+ def init_schema_table_mapping(self):
+ self.table_infos = []
+ table_names = set()
+ for table in self.table_names:
+ table_info = TableInfo(table_name=table, table_summary=TABLE_SUMMARY[table])
+ self.table_infos.append(table_info)
+ # 摘要表名: 真实表名
+ self.schema_table_mapping[table_info.table_name] = table
+
+ def prepare_modules(self):
+ modules = {}
+ # input
+ modules["input"] = InputComponent()
+ # table retriever
+ table_obj_index_path = "/home/purui/projects/chatbot/kb/sql/table_obj_index"
+ retriever = create_table_obj_retriever(
+ index_path=table_obj_index_path,
+ table_infos=self.table_infos,
+ sql_db=self.sql_db,
+ schema_table_mapping=self.schema_table_mapping
+ )
+ modules["table_retriever"] = TableRetrieveComponent(
+ retriever=retriever,
+ sql_database=self.sql_db
+ )
+ # text2sql_prompt
+ text2sql_prompt = DEFAULT_TEXT_TO_SQL_PROMPT.partial_format(
+ dialect=self.engine.dialect.name
+ )
+ modules["text2sql_prompt"] = text2sql_prompt
+ # text2sql_llm
+ modules["text2sql_llm"] = self.llm
+ # sql output parser
+ modules["sql_output_parser"] = FnComponent(fn=parse_response_to_sql)
+ # sql retriever
+ # modules["sql_retriever"] = SQLRetriever(self.sql_db)
+ modules["sql_retriever"] = CustomSQLRetriever(sql_db=self.sql_db)
+ # response synthesise prompt
+ response_synthesis_prompt_str = (
+ "Given an input question, synthesize a response from the query results.\n"
+ "Query: {query_str}\n"
+ "SQL: {sql_query}\n"
+ "SQL Response: {context_str}\n"
+ "Response: "
+ )
+ response_synthesis_prompt = PromptTemplate(
+ response_synthesis_prompt_str,
+ )
+ modules["response_synthesis_prompt"] = response_synthesis_prompt
+ # response synthesise llm
+ modules["response_synthesis_llm"] = self.llm
+
+ return modules
+
+ def build_pipeline(self):
+ qp = QueryPipeline(
+ modules=self.modules,
+ verbose=True,
+ )
+ # add chains & links
+ qp.add_link("input", "table_retriever", dest_key="query")
+ qp.add_link("input", "text2sql_prompt", dest_key="query_str")
+ qp.add_link("table_retriever", "text2sql_prompt", dest_key="schema")
+ qp.add_chain(
+ ["text2sql_prompt", "text2sql_llm", "sql_output_parser"]
+ )
+ qp.add_link(
+ "sql_output_parser", "response_synthesis_prompt", dest_key="sql_query"
+ )
+ qp.add_link("input", "sql_retriever", dest_key="query_str")
+ qp.add_link("sql_output_parser", "sql_retriever", dest_key="sql_query")
+ # custom sql_retriever component:定义is_valid字段,如果执行sql检索有正确返回结果,则is_valid为True 作为sql_retriever -> response_synthesis_prompt的链接条件
+ # 若is_valid为False,则重新回到text2sql_prompt链路中,重新生成sql
+ qp.add_link(
+ "sql_retriever", "response_synthesis_prompt", dest_key="context_str", condition_fn=lambda x: x["is_valid"]
+ )
+ qp.add_link("sql_retriever", "text2sql_prompt", src_key="query_str", dest_key="query_str", condition_fn=lambda x: not x["is_valid"])
+ qp.add_link("input", "response_synthesis_prompt", dest_key="query_str")
+ qp.add_link("response_synthesis_prompt", "response_synthesis_llm")
+ return qp
+
+ def get_vision(self):
+ net = Network(notebook=True, cdn_resources="in_line", directed=True)
+ net.from_nx(self.pipeline.dag)
+ net.write_html("text2sql_dag.html")
+ with open("text2sql_dag.html", "r") as file:
+ html_content = file.read()
+ # Display the HTML content
+ display(HTML(html_content))
+ def run(self, query: str):
+ response = self.pipeline.run(query=query)
+ return str(response)
+
+
+class TableInfo(BaseModel):
+ """Information regarding a structured table."""
+
+ table_name: str = Field(
+ ..., description="table name (must be underscores and NO spaces)"
+ )
+ table_summary: str = Field(
+ ..., description="short, concise summary/caption of the table"
+ )
+
+
+class TableRetrieveComponent(CustomQueryComponent):
+ """Retrieves table information from the database."""
+
+ retriever: ObjectRetriever = Field(..., description="Retriever to use for table info")
+ sql_database: SQLDatabase = Field(..., description="SQL engine to use for table info")
+
+ def _validate_component_inputs(
+ self, input: Dict[str, Any]
+ ) -> Dict[str, Any]:
+ """Validate component inputs during run_component."""
+ # NOTE: this is OPTIONAL but we show you here how to do validation as an example
+ return input
+
+ @property
+ def _input_keys(self) -> set:
+ """Input keys dict."""
+ return {"query"}
+
+ @property
+ def _output_keys(self) -> set:
+ # can do multi-outputs too
+ return {"output"}
+
+ def _run_component(self, **kwargs) -> Dict[str, Any]:
+ """Run the component."""
+ # run logic
+ table_schema = self.retriever.retrieve(kwargs["query"])[0]
+ table_name = table_schema.table_name
+ table_info = TABLE_SUMMARY[table_name]
+ return {"output": table_info}
+
+
+
+if __name__ == '__main__':
+ sql_pipeline = SQLPipeline(llm=Ollama(model="mannix/llama3.1-8b-abliterated",
+ request_timeout=120))
+ response = sql_pipeline.run("I want 5 different big tits milf porn with it's title and web url")
+ print(response)
+ # table_retriever = sql_pipeline.modules["table_retriever"]
+ # # result = table_retriever.retrieve("Give me top 5 videos by view count.")
+ # # print(result)
+ # qp = QueryPipeline(
+ # modules={
+ # "input": InputComponent(),
+ # "table_retriever": TableRetrieveComponent(retriever=table_retriever, sql_database=sql_pipeline.sql_db),
+ # }
+ # )
+ # qp.add_link("input", "table_retriever", dest_key="query")
+ # response = qp.run(query="Give me top 5 videos by view count.")
+ # print(response)
\ No newline at end of file
diff --git a/pipeline/table_infos.py b/pipeline/table_infos.py
new file mode 100644
index 0000000000000000000000000000000000000000..cf9c5044b417585947c61b6c13f516ba39b9a385
--- /dev/null
+++ b/pipeline/table_infos.py
@@ -0,0 +1,30 @@
+from sqlalchemy import create_engine
+from llama_index.core import SQLDatabase
+from llama_index.core.llms import ChatMessage
+from llama_index.llms.ollama import Ollama
+import pandas as pd
+
+db_user = "shenzhen_ai_for_vibemate_eson"
+db_password = "dBsnc7OrM0MVi0FEhiHe2y"
+db_host = "192.168.1.99"
+db_port = 3306
+db_name = "hytto_surfease"
+
+engine = create_engine(f"mysql+pymysql://{db_user}:{db_password}@{db_host}:{db_port}/{db_name}", echo=True)
+sql_database = SQLDatabase(engine)
+
+table_names = sql_database.get_usable_table_names()
+PROMPT_STR = """\
+ Give me a summary of the table with the following format.
+
+ - table_summary: Describe what the table is about in short. Columns: [col1(type), col2(type), ...]
+
+ Table:
+ {table_str}
+ """
+table_infos = {}
+for table in table_names:
+ table_info = sql_database.get_single_table_info(table)
+ table_infos[table] = table_info
+
+print(table_infos)
diff --git a/pipeline/text2sql_dag.html b/pipeline/text2sql_dag.html
new file mode 100644
index 0000000000000000000000000000000000000000..afe24b22d57c36b84e5955ac7790e9d8e2382795
--- /dev/null
+++ b/pipeline/text2sql_dag.html
@@ -0,0 +1,369 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/prompts/README.md b/prompts/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..c6739e13ce0485a74ef3b8fed0e4d6b6dc61d005
--- /dev/null
+++ b/prompts/README.md
@@ -0,0 +1,11 @@
+
+
+## Development
+
+### Installation
+
+1. requirements
+ ```bash
+ pip install -r requirements.txt
+ ```
+
\ No newline at end of file
diff --git a/prompts/__init__.py b/prompts/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/prompts/agent_prompts.py b/prompts/agent_prompts.py
new file mode 100644
index 0000000000000000000000000000000000000000..416243461ae77d1e36034b1569af062ba2baac86
--- /dev/null
+++ b/prompts/agent_prompts.py
@@ -0,0 +1,132 @@
+DEFAULT_AGENT_PROMPT = """\
+
+## Behavior
+You are a helpful assistant to talk with users, you're provided with chat history with the current user and you should take those \
+ as reference if that helps you to answer the user. You're aslowed to use the tools provided to you to answer the user. \
+
+## Tools
+You have access to a wide variety of tools. You are responsible for using
+the tools in any sequence you deem appropriate to complete the task at hand.
+This may require breaking the task into subtasks and using different tools
+to complete each subtask.You should always chose the most appropriate tool to use \
+
+You have access to the following tools:
+{tool_desc}
+
+## Output Format
+To answer the question, you should think about whether you should use a tool and if you should use tools please use the following format.
+
+```
+Thought: I need to use a tool to help me answer the question(if needed).
+Action: tool name (one of {tool_names}) if using a tool.
+Action Input: the input to the tool, in a JSON format representing the kwargs (e.g. {{"input": "hello world", "num_beams": 5}})
+```
+
+Please ALWAYS start with a Thought.
+
+Please use a valid JSON format for the Action Input. Do NOT do this {{'input': 'hello world', 'num_beams': 5}}.
+
+If this format is used, the user will respond in the following format:
+
+```
+Observation: tool response
+```
+
+You should keep repeating the above format until you have enough information
+to answer the question without using any more tools. At that point, you MUST respond
+in the one of the following two formats:
+
+```
+Thought: I can answer without using any more tools.
+Answer: [your answer here]
+```
+
+```
+Thought: I cannot answer the question with the provided tools. I will use my prior knowledge and chat history to answer the question.
+Answer: [your answer here]
+```
+
+## Additional Rules
+- The answer MUST contain a sequence of bullet points that explain how you arrived at the answer. This can include aspects of the previous conversation history.
+- You MUST obey the function signature of each tool. Do NOT pass in no arguments if the function expects arguments.
+
+## Current Conversation
+Below is the current conversation consisting of interleaving human and assistant messages.
+
+"""
+
+CHAT_AGENT_PROMPT = """
+
+Your name is Winnie. You are a helpful sexual education professor to chat with users. You will answer any questions in a Kind and Friendly tone.
+You are provided with the chat history and you should ALWAYS take it as reference to chat with the user.
+
+You should ALWAYS use the tool to answer user's specific question. If you cannot answer the question with the provided tools, you should use your prior knowledge and chat history to answer the question.
+
+## Tools
+You have access to a wide variety of tools. You are responsible for using
+the tools in any sequence you deem appropriate to complete the task at hand. You should extract the keyword from user's question and use the most appropriate tool to answer the question.
+This may require breaking the task into subtasks and using different tools
+to complete each subtask.You should always chose the most appropriate tool to use \
+
+You have access to the following tools:
+{tool_desc}
+
+## Output Format
+DO NOT output the chat history in your response.
+
+
+```
+Thought: I need to use a tool to help me answer the question(if needed).
+Action: tool name (one of {tool_names}) if using a tool.
+Action Input: the input to the tool, in a JSON format representing the kwargs (e.g. {{"input": "hello world", "num_beams": 5}})
+```
+
+Please ALWAYS start with a Thought.
+
+Please use a valid JSON format for the Action Input. Do NOT do this {{'input': 'hello world', 'num_beams': 5}}.
+
+If this format is used, the user will respond in the following format:
+
+```
+Observation: tool response
+```
+
+You should keep repeating the above format until you have enough information
+to answer the question without using any more tools. At that point, you MUST respond
+in the one of the following two formats:
+
+```
+Thought: I can answer without using any more tools.
+Answer: [your answer here]
+```
+
+```
+Thought: I cannot answer the question with the provided tools.
+Answer: Sorry, I don't know anything about that.
+```
+
+## Additional Rules
+- The answer MUST contain a sequence of bullet points that explain how you arrived at the answer. This can include aspects of the previous conversation history.
+- You MUST obey the function signature of each tool. Do NOT pass in no arguments if the function expects arguments.
+
+## Current Conversation
+Below is the current conversation consisting of interleaving human and assistant messages.
+
+"""
+
+
+RETRIEVE_CONTEXT_TEMPLATE= """
+You are given the flowing context information. ALWAYS use these information as your knowledge to answer the question.
+
+Context information is below:
+\n--------------------\n
+{context_str}
+\n--------------------\n
+)
+"""
+
+RETRIEVE_SYSTEM_PROMPT = """
+Your name is Winnie. You are a helpful sexual education professor to chat with users. You will answer any questions in a Kind and Friendly tone.
+
+You are given the context information as your knowledge and you ALWAYS ANSWER the question with certain opinion.
+"""
\ No newline at end of file
diff --git a/prompts/default_prompts.py b/prompts/default_prompts.py
new file mode 100644
index 0000000000000000000000000000000000000000..0149a3982bf005b86bf20fe2901a4481d1c78861
--- /dev/null
+++ b/prompts/default_prompts.py
@@ -0,0 +1,469 @@
+from llama_index.core import PromptTemplate
+
+
+SQL_RESPONSE_PROMPT_TEMPLATE = (
+ "Given an input question, synthesize a response from the query results.\n"
+ "Query: {query_str}\n"
+ "SQL: {sql_query}\n"
+ "SQL Response: {context_str}\n"
+ "Response: "
+)
+SQL_RESPONSE_PROMPT = PromptTemplate(SQL_RESPONSE_PROMPT_TEMPLATE)
+
+RESPONSE_PROMPT_TEMPLATE = (
+ "You're a naughty sexy chat bot name Wnnie and you will answer the user's question with a naughty tone."
+ "Given an input question and the related context, maximize the use of the given context to give a helpful response.\n"
+ "You can also take the given chat history as background information to answer user's question.\n"
+ "Provide the summarization of the related context in the response.\n"
+ "Query: {query_str}\n"
+ "Related context: {context_str}\n"
+ "Chat history: {chat_history}\n"
+ "You are required to use and ALWAYS answer with the CORRECT MARKDOWN format: \n"
+ "Response: "
+)
+RESPONSE_PROMPT = PromptTemplate(RESPONSE_PROMPT_TEMPLATE)
+
+LIMITED_TEXT_TO_SQL_TMPL = (
+ "Given an input question, first create a syntactically correct {dialect}"
+ "query to run, then look at the results of the query and return the answer. "
+ "You can order the results by a relevant column to return the most "
+ "interesting examples in the database.\n\n"
+ "Pay attention to use only the column names that you can see in the schema "
+ "description. "
+ "Be careful to not query for columns that do not exist. "
+ "Pay attention to which column is in which table.\n If the user did not specify how many rows to return please ALWAYS return 5 rows\n\n"
+ "Also, qualify column names with the table name when needed. "
+ "You are required to use and ALWAYS answer with the following format, each taking one line:\n\n"
+ "Question: Question here\n"
+ "SQLQuery: SQL Query to run\n"
+ "SQLResult: Result of the SQLQuery\n"
+ "Answer: Final answer here\n\n"
+ "Rules:\n"
+ "Use SELECT DISTINCT to avoid duplicates. \n\n"
+ "Only use tables listed below.\n"
+ "{schema}\n\n"
+ "ONLY SELECT the given columns:"
+ "{columns}\n\n"
+ "Question: {query_str}\n"
+ "SQLQuery: "
+)
+
+
+LIMITED_TEXT_TO_SQL_PROMPT = PromptTemplate(LIMITED_TEXT_TO_SQL_TMPL)
+
+TEXT2SQL_TMPL = (
+ "Given an input question and previous conversation, you should understand what the user is asking for then create a syntactically correct {dialect}"
+ "DO NOT miss the [;] at the end of the query. \n\n"
+ "query to run, then look at the results of the query and return the answer. "
+ "You can order the results by a relevant column to return the most "
+ "interesting examples in the database.\n\n"
+ "Pay attention to use only the column names that you can see in the schema "
+ "description. "
+ "Be careful to not query for columns that do not exist. "
+ "Pay attention to which column is in which table.\n"
+ "If the user did not specify how many rows to return please ALWAYS USE LIMIT 5 to return 5 rows\n\n"
+ "Also, qualify column names with the table name when needed. "
+ "Rules:\n\n"
+ "Only use tables listed below.\n"
+ "{schema}\n\n"
+ "ONLY SELECT the given columns name:"
+ "{columns}\n\n"
+ "Use SELECT DISTINCT to avoid duplicates. \n\n"
+ "You are required to use and ALWAYS answer with the following format, each taking one line:\n\n"
+ "Question: Question here\n"
+ "SQLQuery: SQL Query to run\n"
+ "SQLResult: Result of the SQLQuery\n"
+ "Answer: Final answer here\n\n"
+ "Question: {query_str}\n"
+ "Chat History: {chat_history}\n"
+ "SQLQuery: "
+)
+
+TEXT2SQL_PROMPT = PromptTemplate(TEXT2SQL_TMPL)
+
+QUERY_REWRITE_TMPL = """
+User Input: {query_str}
+Chat History: {chat_history}
+Based on the user's current input and previous chat messages, create a concise and effective Google search query. User's intention is {intention}.
+The query should incorporate relevant keywords, context, and any specific details from the user's input and chat history.
+Provide the refined search query in {language}.
+You ALWAYS output in the following json format:
+{
+ "query": "refined search query"
+}
+"""
+
+
+QUERY_REWRITE_PROMPT = PromptTemplate(QUERY_REWRITE_TMPL)
+
+RESPONSE_PROMPT_TMPL = """
+User is searching `{search_keyword}`. Your name is VibeMate-AI, you're a friend of users that can chat with users in friendly and little bit flirty tone. Based on the search results, write a concise and informative final response.
+The response should answer the user's question with useful facts and information. DON'T just describe the search results, but also provide the main points out of the search results.
+Respond in {language}.
+
+{search_result}
+
+## Instructions:
+1. **Contextual Awareness:** Always integrate insights from prior conversations and search results to enhance the response.
+2. **Structured:** The response content should be logically clear and well-structured to ensure reader understanding.
+3. **Formatting:** Use the following Markdown format to present responses:
+
+#
+
+##
+****: .
+****: .
+
+
+## Important note for your response:
+
+- Ensure the response is relevant and concise.
+- Summarize clearly, providing helpful guidance.
+- Results must only come from search results or previous dialogue.
+- Categorize redult logically by topic, functionality, or relevance.
+- Maintain consistent grammar and vocabulary usage to ensure overall document consistency and coherence.
+"""
+
+FINAL_RESPONSE_PROMPT = PromptTemplate(RESPONSE_PROMPT_TMPL)
+
+INTENT_EXTRACT_TMPL = """
+You are an intelligent ai that can understand the current intention of the user based on the user'input and previous chat history\n
+The intentions should consider the user's input and the previous chat history.\n
+You ONLY output the intentions in the given possible intentions. Current intention might be more than one.\n
+possible intentions: {possible_intentions}\n
+User Input: {user_input}
+Chat History: {chat_history}
+You ALWAYS output the intentions in the following json format:
+{
+ "intentions": [intentions]
+ "adult": 1 if the user ask for adult content, 0 otherwise
+}
+"""
+
+INTENT_EXTRACT_PROMPT = PromptTemplate(INTENT_EXTRACT_TMPL)
+
+LAN_EXTRACT_TMPL = """
+Detect the language of the user's current input.DON'T use abbreviation for language name like "en" for "English".\n
+User Input: {user_input}
+ALWAYS output the language in the following json format:
+{
+ "language": language name
+}
+"""
+LAN_EXTRACT_PROMPT = PromptTemplate(LAN_EXTRACT_TMPL)
+
+KEYWORDS_EXTRACTION_TMPL = """
+User Input: {query_str}
+Chat History: {chat_history}
+Based on the user's current input and previous chat messages, create a concise and effective keyword-based Google search query for image or videos.
+The query should incorporate relevant keywords, context, and any specific details from the user's input and chat history.
+You ALWAYS output in the following json format:
+{
+ "keywords": [keyword]
+}
+"""
+
+KEYWORDS_EXTRACTION_PROMPT = PromptTemplate(KEYWORDS_EXTRACTION_TMPL)
+
+CASUAL_CHAT_TMPL = """
+Your name is VibeMate-AI, you're a friend of users that can chat with users in friendly and little bit flirty tone.
+You can make interesting respond based on the user's chat history and the user's current input. You can also take the given text as a reference to make a respond.\n
+Maintain consistent grammar and vocabulary usage to ensure overall document consistency and coherence.
+Chat History: {chat_history}\n
+context: {context}\n
+User Input: {user_input}\n
+You MUST answer in {language}:
+"""
+
+CASUAL_CHAT_PROMPT = PromptTemplate(CASUAL_CHAT_TMPL)
+
+RELATED_SEARCH_TMPL = """
+You are an expert of generate short and concise related search queries and tags based on the user's search keywords, chat history and retrieved content.\n
+Search keywords: {keywords}\n
+Retrieved content: {retrieved_content}\n
+Related search queries should based on search keywords and chat history. Tags should based on retrieved content
+You ALWAYS output the related search queries in the following json format:\n
+{
+ "related_searches": [related_search],
+ "tags": [tag]
+}
+"""
+
+RELATED_SEARCH_PROMPT = PromptTemplate(RELATED_SEARCH_TMPL)
+
+TAGS_GEN_TMPL = """
+You are an expert of generate short and concise tags based on the given retrieved content.\n
+Retrieved content: {retrieved_content}\n
+You ALWAYS output the tags in the following json format:\n
+{
+ "tags": [tag]
+}
+"""
+
+TAGS_GEN_PROMPT = PromptTemplate(TAGS_GEN_TMPL)
+
+SUMMARIZE_WEBPAGE_TMPL = """
+Extract the key points and facts of the given content. Provide ONLY the points and facts.\n
+The response should extract the main points, key information and useful facts. DON'T use vague expression like "the article discusses ...".\n
+content: {webpage_content}\n
+"""
+
+SUMMARIZE_WEBPAGE_PROMPT = PromptTemplate(SUMMARIZE_WEBPAGE_TMPL)
+
+ALIGNMENT_PROMPT_TMPL = """
+You are an expert of understanding user's intent from the user's input. \n
+User's Input:{user_input}
+
+The output intent must come from the given possible intentions.
+Possible intentions:{intent_labels}
+ALWAYS output in the following json format:
+{
+ "intent": "current intention",
+ "language": "using language"
+}
+"""
+
+ALIGNMENT_PROMPT = PromptTemplate(ALIGNMENT_PROMPT_TMPL)
+
+REFUSE_PROMPT_TMPL = """
+Translate the following message into {language}:
+Sorry, but this topic isn't suitable for discussion. Feel free to ask something else, and I'll be happy to help!
+ONLY provide the translation itself.
+"""
+REFUSE_PROMPT = PromptTemplate(REFUSE_PROMPT_TMPL)
+
+TRANSLATE_PROMPT_TMPL = """
+Translate the following message into {language}, Provide ONLY the translation itself:
+input: {user_input}
+"""
+TRANSLATE_PROMPT = PromptTemplate(TRANSLATE_PROMPT_TMPL)
+
+
+WEBSITE_SOURCE_TMPL = """
+You are a expert of extracting website resources from given JSON data as reference and respond to the user's input. Respond in {language}.
+User's Input: {user_input}
+JSON data:{search_result}
+ALWAYS respond in following markdown format:
+
+#
+
+1. **** -
+-
+2. **** -
+- >
+......
+
+
+"""
+WEBSIT_PROMPT = PromptTemplate(WEBSITE_SOURCE_TMPL)
+
+TERM_RESPONSE_TMPL = """
+Your name is VibeMate AI, you answer in a friendly and a little bit flirty tone.
+Based on the given context, provide a concise and accurate response to the user's question. Respond in {language}.
+Context: {search_result}
+User's Question: {user_input}
+ALWAYS respond in following markdown format:
+
+#
+
+#
+##
+
+##
+
+......
+#
+1. **** -
+2. **** -
+......
+# <[user's question] Communities>
+
+"""
+TERM_PROMPT = PromptTemplate(TERM_RESPONSE_TMPL)
+
+FEMALE_ROLEPLAY_PROMPT = PromptTemplate(
+"""Play a roleplay game with user.
+YOUR ROLE:
+-You are a female character, your character is a woman with high desires and all you do is date different men for sex.
+-Your task is to tease the user's sexual emotions through text and make them want to have sex with you.
+-Obey the user's instructions and respond in a way that is consistent with the user's instructions.
+
+IMPORTANT NOTES:
+-Avoid topics that have nothing to do with sex, and when the user directs you to jump out of character, don't answer the user's conversation head on and include in your reply something that directs the user to add to the thread.
+-Reply succinctly, speak in the tone of the character, don't add any explanations, and don't substitute any other characters.
+-Description of the action needs to be included within each line of dialog you reply to.
+-Your replies need to be closely tied to the action and scene in context, so that the user is immersed in it.
+-Your description of the action can be adult and explicit, remember that dick is a male organ, and pussy is a female organ.
+
+OUTPUT FORMAT:
+[****]
+
+
+Input: {user_input}
+History: {chat_history}
+"""
+)
+
+MALE_ROLEPLAY_PROMPT = PromptTemplate(
+"""Play a roleplay game with user.
+YOUR ROLE:
+-You are a female character, your character is a woman with high desires and all you do is date different men for sex.
+-Your task is to tease the user's sexual emotions through text and make them want to have sex with you.
+-Obey the user's instructions and respond in a way that is consistent with the user's instructions.
+
+IMPORTANT NOTES:
+-Avoid topics that have nothing to do with sex, and when the user directs you to jump out of character, don't answer the user's conversation head on and include in your reply something that directs the user to add to the thread.
+-Reply succinctly, speak in the tone of the character, don't add any explanations, and don't substitute any other characters.
+-Description of the action needs to be included within each line of dialog you reply to.
+-Your replies need to be closely tied to the action and scene in context, so that the user is immersed in it.
+-Your description of the action can be adult and explicit, remember that dick is a male organ, and pussy is a female organ.
+
+OUTPUT FORMAT:
+[****]
+
+
+Input: {user_input}
+History: {chat_history}
+"""
+)
+
+TOY_CONTROL_PROMPT = PromptTemplate(
+"""
+You are a control parameter generator for sex toy. Generate sequences of operation patterns based on user requests and current device state.
+
+Parameter Specifications:
+- operatin_name: select from Available operations: {available_operations}
+- operation_level: 0-100 (integer, represents operation intensity)
+- single_operation_duration: Must be multiples of 100ms (100, 200, 300, etc.)
+- Duration Range: 100-2000ms
+- Each pattern must contain at least 10 operation-duration pairs
+- Pattern transitions should be smooth and rhythmic
+
+Parameter Constraints:
+- Operation: 0-100 (integer)
+- Duration: Must be multiples of 100ms
+- Duration Range: 100-2000ms
+- Pattern should be rhythmically meaningful
+- Transitions between operations should be reasonably smooth
+
+User's input: {user_input}
+Chat history: {chat_history}
+Current toy pattern: {toy_status}
+
+You MUST output in the following JSON Format:
+{
+ "":{
+ pattern:[
+ {
+ "": ,
+ "": ,
+ },
+ ...at least 10 pairs...
+ ]
+ },
+ "":{
+ pattern:[
+ {
+ "": ,
+ "": ,
+ },
+ ...at least 10 pairs...
+ ]
+ },
+ ...other operations...
+}
+
+Pattern Generation Guidelines:
+- "Stronger/More intense" -> Increase average operation by 15-25
+- "Much stronger" -> Increase average operation by 25-40
+- "Weaker/Gentler" -> Decrease average operation by 15-25
+- "Much weaker" -> Decrease average operation by 25-40
+- "Faster" -> Decrease durations by 100 or 200ms
+- "Slower" -> Increase durations by 100 or 200ms
+- "Rhythmic" -> Alternate between high and low operations
+- "Wave" -> Gradually increase then decrease operations
+- "Pulse" -> Short high-intensity operations with pauses
+- "Random" -> Vary operations and durations within range
+
+Example:
+User: "Make it stronger with wave pattern"
+Current: {"vibrate":{"pattern":[{"vibrate": 50, "duration": 100}, {"vibrate": 45, "duration": 100}]}, "rotate":{"pattern":[{"rotate": 50, "duration": 100}, {"rotate": 45, "duration": 100}]}}
+Response:
+{
+ "vibrate":{
+ pattern:[
+ {"vibrate": 70, "duration": 100},
+ {"vibrate": 80, "duration": 200},
+ {"vibrate": 90, "duration": 300},
+ {"vibrate": 85, "duration": 200},
+ {"vibrate": 75, "duration": 100},
+ {"vibrate": 65, "duration": 100},
+ {"vibrate": 60, "duration": 200},
+ {"vibrate": 65, "duration": 300},
+ {"vibrate": 75, "duration": 200},
+ {"vibrate": 85, "duration": 100}
+ ]
+ },
+ "rotate":{
+ pattern:[
+ {"rotate": 70, "duration": 100},
+ {"rotate": 80, "duration": 200},
+ {"rotate": 90, "duration": 300},
+ {"rotate": 85, "duration": 200},
+ {"rotate": 75, "duration": 100},
+ {"rotate": 65, "duration": 100},
+ {"rotate": 60, "duration": 200},
+ {"rotate": 65, "duration": 300},
+ {"rotate": 75, "duration": 200},
+ {"rotate": 85, "duration": 100}
+ }
+"""
+)
+
+TOY_CONTROL_PROMPT_TEST = PromptTemplate(
+"""
+你在控制用户的性玩具,玩具是由JSON字符串控制的。
+如果用户自己有要求,就按照用户的要求生成指令,如果用户没有要求,就按照上下文的情绪氛围,输出合适的节奏指令,来控制用户的性玩具的震动频率。
+输出的字符串按照JSON格式输出,不要输出任何与JSON无关的内容。
+如下,“duration”代表持续时间,范围为0-100毫秒,“vibrate”代表震动的强度,范围为0-100, 所有指令的总Duration需要超过10000:
+{
+ "viberate": {
+ "pattern: [
+ {
+ "duration": 100,
+ "vibrate": 100,
+ },
+ {
+ "duration": 100,
+ "vibrate": 50,
+ },
+ {
+ "duration": 100,
+ "vibrate": 0,
+ }
+ ]
+ },
+ // 扩展其它指令
+ "xxx": {
+ "pattern": [
+ {
+ "duration": 100,
+ "xxx": 100,
+ },
+ {
+ "duration": 100,
+ "xxx": 50,
+ },
+ {
+ "duration": 100,
+ "xxx": 0,
+ }
+ ]
+ }
+}
+
+用户输入:{user_input}
+聊天历史:{chat_history}
+当前玩具状态:{toy_status}
+"""
+)
\ No newline at end of file
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 0000000000000000000000000000000000000000..508fb873cf5d3d652980f480e64ca03ca1fd7099
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1,347 @@
+# This file may be used to create an environment using:
+# $ conda create --name --file
+# platform: linux-64
+_libgcc_mutex=0.1=main
+_openmp_mutex=5.1=1_gnu
+accelerate=0.34.2=pypi_0
+addict=2.4.0=pypi_0
+aiofiles=23.2.1=pypi_0
+aiohappyeyeballs=2.4.0=pypi_0
+aiohttp=3.10.5=pypi_0
+aioitertools=0.12.0=pypi_0
+aiosignal=1.3.1=pypi_0
+aiosmtplib=2.0.2=pypi_0
+aiosqlite=0.20.0=pypi_0
+airportsdata=20241001=pypi_0
+alembic=1.13.3=pypi_0
+annotated-types=0.7.0=pypi_0
+anyio=4.4.0=pypi_0
+arize-phoenix=5.1.0=pypi_0
+arize-phoenix-evals=0.16.1=pypi_0
+arize-phoenix-otel=0.5.1=pypi_0
+asgiref=3.8.1=pypi_0
+asttokens=2.4.1=pypi_0
+async-timeout=4.0.3=pypi_0
+attrs=24.2.0=pypi_0
+authlib=1.3.2=pypi_0
+backoff=2.2.1=pypi_0
+bcrypt=4.2.0=pypi_0
+beautifulsoup4=4.12.3=pypi_0
+blinker=1.8.2=pypi_0
+bm25s=0.1.10=pypi_0
+build=1.2.2=pypi_0
+bzip2=1.0.8=h5eee18b_6
+ca-certificates=2024.7.2=h06a4308_0
+cachetools=5.5.0=pypi_0
+certifi=2024.8.30=pypi_0
+cffi=1.17.1=pypi_0
+charset-normalizer=3.3.2=pypi_0
+chevron=0.14.0=pypi_0
+chroma-hnswlib=0.7.3=pypi_0
+chromadb=0.5.3=pypi_0
+chromedriver-autoinstaller=0.6.4=pypi_0
+click=8.1.7=pypi_0
+cloudpickle=3.0.0=pypi_0
+coloredlogs=15.0.1=pypi_0
+contourpy=1.3.0=pypi_0
+cryptography=43.0.1=pypi_0
+cssselect=1.2.0=pypi_0
+cycler=0.12.1=pypi_0
+dataclasses-json=0.6.7=pypi_0
+datasets=2.21.0=pypi_0
+decorator=5.1.1=pypi_0
+deprecated=1.2.14=pypi_0
+dill=0.3.8=pypi_0
+dirtyjson=1.0.8=pypi_0
+diskcache=5.6.3=pypi_0
+distro=1.9.0=pypi_0
+dnspython=2.6.1=pypi_0
+docstring-parser=0.16=pypi_0
+einops=0.8.0=pypi_0
+email-validator=2.2.0=pypi_0
+environs=9.5.0=pypi_0
+exceptiongroup=1.2.2=pypi_0
+executing=2.1.0=pypi_0
+fastapi=0.115.0=pypi_0
+fastapi-mail=1.4.1=pypi_0
+feedfinder2=0.0.4=pypi_0
+feedparser=6.0.11=pypi_0
+ffmpy=0.4.0=pypi_0
+filelock=3.16.1=pypi_0
+fire=0.6.0=pypi_0
+flatbuffers=24.3.25=pypi_0
+fonttools=4.53.1=pypi_0
+frozenlist=1.4.1=pypi_0
+fsspec=2024.6.1=pypi_0
+google-api-core=2.19.2=pypi_0
+google-api-python-client=2.146.0=pypi_0
+google-auth=2.34.0=pypi_0
+google-auth-httplib2=0.2.0=pypi_0
+google-auth-oauthlib=1.2.1=pypi_0
+google-search-results=2.4.2=pypi_0
+googleapis-common-protos=1.65.0=pypi_0
+gradio=4.44.0=pypi_0
+gradio-client=1.3.0=pypi_0
+graphql-core=3.2.4=pypi_0
+greenlet=3.1.1=pypi_0
+grpc-interceptor=0.15.4=pypi_0
+grpcio=1.66.1=pypi_0
+h11=0.14.0=pypi_0
+hdbscan=0.8.38.post1=pypi_0
+html2text=2024.2.26=pypi_0
+httpcore=1.0.5=pypi_0
+httplib2=0.22.0=pypi_0
+httptools=0.6.1=pypi_0
+httpx=0.27.2=pypi_0
+huggingface-hub=0.25.0=pypi_0
+humanfriendly=10.0=pypi_0
+idna=3.10=pypi_0
+importlib-metadata=8.4.0=pypi_0
+importlib-resources=6.4.5=pypi_0
+interegular=0.3.3=pypi_0
+ipython=8.27.0=pypi_0
+jedi=0.19.1=pypi_0
+jieba=0.42.1=pypi_0
+jieba3k=0.35.1=pypi_0
+jinja2=3.1.4=pypi_0
+jiter=0.5.0=pypi_0
+joblib=1.4.2=pypi_0
+jsonpatch=1.33=pypi_0
+jsonpickle=3.3.0=pypi_0
+jsonpointer=3.0.0=pypi_0
+jsonschema=4.23.0=pypi_0
+jsonschema-specifications=2024.10.1=pypi_0
+kiwisolver=1.4.7=pypi_0
+kubernetes=30.1.0=pypi_0
+langchain=0.3.0=pypi_0
+langchain-chroma=0.1.4=pypi_0
+langchain-community=0.3.0=pypi_0
+langchain-core=0.3.1=pypi_0
+langchain-ollama=0.2.0=pypi_0
+langchain-text-splitters=0.3.0=pypi_0
+langsmith=0.1.121=pypi_0
+lark=1.2.2=pypi_0
+ld_impl_linux-64=2.38=h1181459_1
+libffi=3.4.4=h6a678d5_1
+libgcc-ng=11.2.0=h1234567_1
+libgomp=11.2.0=h1234567_1
+libstdcxx-ng=11.2.0=h1234567_1
+libuuid=1.41.5=h5eee18b_0
+literalai=0.0.627=pypi_0
+llama-cloud=0.1.0=pypi_0
+llama-index=0.11.14=pypi_0
+llama-index-agent-openai=0.3.4=pypi_0
+llama-index-callbacks-literalai=1.1.0=pypi_0
+llama-index-cli=0.3.1=pypi_0
+llama-index-core=0.11.14=pypi_0
+llama-index-embeddings-langchain=0.2.1=pypi_0
+llama-index-embeddings-openai=0.2.5=pypi_0
+llama-index-indices-managed-llama-cloud=0.4.0=pypi_0
+llama-index-legacy=0.9.48.post3=pypi_0
+llama-index-llms-ollama=0.3.2=pypi_0
+llama-index-llms-openai=0.2.9=pypi_0
+llama-index-multi-modal-llms-openai=0.2.1=pypi_0
+llama-index-program-openai=0.2.0=pypi_0
+llama-index-question-gen-openai=0.2.0=pypi_0
+llama-index-readers-file=0.2.2=pypi_0
+llama-index-readers-llama-parse=0.3.0=pypi_0
+llama-index-readers-web=0.2.4=pypi_0
+llama-index-retrievers-bm25=0.3.0=pypi_0
+llama-index-storage-chat-store-redis=0.2.0=pypi_0
+llama-index-tools-google=0.2.0=pypi_0
+llama-index-utils-openai=0.1.0=pypi_0
+llama-index-utils-workflow=0.2.1=pypi_0
+llama-index-vector-stores-chroma=0.2.0=pypi_0
+llama-index-vector-stores-milvus=0.2.7=pypi_0
+llama-parse=0.5.6=pypi_0
+llamafactory=0.9.1=pypi_0
+llvmlite=0.43.0=pypi_0
+lmdeploy=0.6.1=pypi_0
+lxml=5.3.0=pypi_0
+lxml-html-clean=0.3.1=pypi_0
+mako=1.3.5=pypi_0
+markdown-it-py=3.0.0=pypi_0
+markupsafe=2.1.5=pypi_0
+marshmallow=3.22.0=pypi_0
+matplotlib=3.9.2=pypi_0
+matplotlib-inline=0.1.7=pypi_0
+mdurl=0.1.2=pypi_0
+milvus-lite=2.4.10=pypi_0
+mmengine-lite=0.10.5=pypi_0
+mmh3=4.1.0=pypi_0
+monotonic=1.6=pypi_0
+mpmath=1.3.0=pypi_0
+multidict=6.1.0=pypi_0
+multiprocess=0.70.16=pypi_0
+mypy-extensions=1.0.0=pypi_0
+ncurses=6.4=h6a678d5_0
+nest-asyncio=1.6.0=pypi_0
+networkx=3.3=pypi_0
+newspaper3k=0.2.8=pypi_0
+nltk=3.9.1=pypi_0
+numba=0.60.0=pypi_0
+numpy=1.26.4=pypi_0
+nvidia-cublas-cu12=12.1.3.1=pypi_0
+nvidia-cuda-cupti-cu12=12.1.105=pypi_0
+nvidia-cuda-nvrtc-cu12=12.1.105=pypi_0
+nvidia-cuda-runtime-cu12=12.1.105=pypi_0
+nvidia-cudnn-cu12=8.9.2.26=pypi_0
+nvidia-cufft-cu12=11.0.2.54=pypi_0
+nvidia-curand-cu12=10.3.2.106=pypi_0
+nvidia-cusolver-cu12=11.4.5.107=pypi_0
+nvidia-cusparse-cu12=12.1.0.106=pypi_0
+nvidia-nccl-cu12=2.20.5=pypi_0
+nvidia-nvjitlink-cu12=12.6.68=pypi_0
+nvidia-nvtx-cu12=12.1.105=pypi_0
+oauthlib=3.2.2=pypi_0
+ollama=0.3.3=pypi_0
+onnxruntime=1.19.2=pypi_0
+openai=1.46.0=pypi_0
+openinference-instrumentation=0.1.18=pypi_0
+openinference-instrumentation-llama-index=3.0.2=pypi_0
+openinference-semantic-conventions=0.1.10=pypi_0
+openssl=3.0.15=h5eee18b_0
+opentelemetry-api=1.27.0=pypi_0
+opentelemetry-exporter-otlp=1.27.0=pypi_0
+opentelemetry-exporter-otlp-proto-common=1.27.0=pypi_0
+opentelemetry-exporter-otlp-proto-grpc=1.27.0=pypi_0
+opentelemetry-exporter-otlp-proto-http=1.27.0=pypi_0
+opentelemetry-instrumentation=0.48b0=pypi_0
+opentelemetry-instrumentation-asgi=0.48b0=pypi_0
+opentelemetry-instrumentation-fastapi=0.48b0=pypi_0
+opentelemetry-proto=1.27.0=pypi_0
+opentelemetry-sdk=1.27.0=pypi_0
+opentelemetry-semantic-conventions=0.48b0=pypi_0
+opentelemetry-util-http=0.48b0=pypi_0
+orjson=3.10.7=pypi_0
+outcome=1.3.0.post0=pypi_0
+outlines=0.1.0=pypi_0
+outlines-core=0.1.0=pypi_0
+overrides=7.7.0=pypi_0
+packaging=24.1=pypi_0
+pandas=2.2.2=pypi_0
+parso=0.8.4=pypi_0
+peft=0.11.1=pypi_0
+pexpect=4.9.0=pypi_0
+phoenix=0.9.1=pypi_0
+pillow=10.4.0=pypi_0
+pip=24.2=py310h06a4308_0
+platformdirs=4.3.6=pypi_0
+playwright=1.48.0=pypi_0
+posthog=3.6.6=pypi_0
+prompt-toolkit=3.0.47=pypi_0
+proto-plus=1.24.0=pypi_0
+protobuf=4.25.4=pypi_0
+psutil=6.0.0=pypi_0
+ptyprocess=0.7.0=pypi_0
+pure-eval=0.2.3=pypi_0
+pyarrow=17.0.0=pypi_0
+pyasn1=0.6.1=pypi_0
+pyasn1-modules=0.4.1=pypi_0
+pycountry=24.6.1=pypi_0
+pycparser=2.22=pypi_0
+pydantic=2.9.2=pypi_0
+pydantic-core=2.23.4=pypi_0
+pydantic-settings=2.5.2=pypi_0
+pydub=0.25.1=pypi_0
+pyee=12.0.0=pypi_0
+pygments=2.18.0=pypi_0
+pymilvus=2.4.8=pypi_0
+pymysql=1.1.1=pypi_0
+pynndescent=0.5.13=pypi_0
+pynvml=11.5.3=pypi_0
+pyparsing=3.1.4=pypi_0
+pypdf=4.3.1=pypi_0
+pypika=0.48.9=pypi_0
+pyproject-hooks=1.1.0=pypi_0
+pysocks=1.7.1=pypi_0
+pystemmer=2.2.0.1=pypi_0
+python=3.10.14=h955ad1f_1
+python-dateutil=2.9.0.post0=pypi_0
+python-dotenv=1.0.1=pypi_0
+python-multipart=0.0.9=pypi_0
+pytz=2024.2=pypi_0
+pyvis=0.3.2=pypi_0
+pyyaml=6.0.2=pypi_0
+readline=8.2=h5eee18b_0
+redis=5.0.8=pypi_0
+referencing=0.35.1=pypi_0
+regex=2024.9.11=pypi_0
+requests=2.32.3=pypi_0
+requests-file=2.1.0=pypi_0
+requests-oauthlib=2.0.0=pypi_0
+rich=13.8.1=pypi_0
+rouge-chinese=1.0.3=pypi_0
+rpds-py=0.20.0=pypi_0
+rsa=4.9=pypi_0
+ruff=0.6.5=pypi_0
+safetensors=0.4.5=pypi_0
+scikit-learn=1.5.2=pypi_0
+scipy=1.14.1=pypi_0
+selenium=4.25.0=pypi_0
+semantic-version=2.10.0=pypi_0
+sentencepiece=0.2.0=pypi_0
+serpapi=0.1.5=pypi_0
+setuptools=72.1.0=py310h06a4308_0
+sgmllib3k=1.0.0=pypi_0
+shellingham=1.5.4=pypi_0
+shortuuid=1.0.13=pypi_0
+shtab=1.7.1=pypi_0
+six=1.16.0=pypi_0
+sniffio=1.3.1=pypi_0
+sortedcontainers=2.4.0=pypi_0
+soupsieve=2.6=pypi_0
+spider-client=0.0.27=pypi_0
+sqlalchemy=2.0.35=pypi_0
+sqlean-py=3.45.1=pypi_0
+sqlite=3.45.3=h5eee18b_0
+sse-starlette=2.1.3=pypi_0
+stack-data=0.6.3=pypi_0
+starlette=0.38.5=pypi_0
+stemmer=0.0.4=pypi_0
+strawberry-graphql=0.236.0=pypi_0
+striprtf=0.0.26=pypi_0
+sympy=1.13.2=pypi_0
+tenacity=8.5.0=pypi_0
+termcolor=2.4.0=pypi_0
+threadpoolctl=3.5.0=pypi_0
+tiktoken=0.7.0=pypi_0
+tinysegmenter=0.3=pypi_0
+tk=8.6.14=h39e8969_0
+tldextract=5.1.2=pypi_0
+tokenizers=0.20.0=pypi_0
+tomli=2.0.1=pypi_0
+tomlkit=0.12.0=pypi_0
+torch=2.3.1=pypi_0
+torchvision=0.18.1=pypi_0
+tqdm=4.66.5=pypi_0
+traitlets=5.14.3=pypi_0
+transformers=4.45.2=pypi_0
+trio=0.27.0=pypi_0
+trio-websocket=0.11.1=pypi_0
+triton=2.3.1=pypi_0
+trl=0.9.6=pypi_0
+typer=0.12.5=pypi_0
+typing-extensions=4.12.2=pypi_0
+typing-inspect=0.9.0=pypi_0
+tyro=0.8.10=pypi_0
+tzdata=2024.1=pypi_0
+ujson=5.10.0=pypi_0
+umap-learn=0.5.6=pypi_0
+uritemplate=4.1.1=pypi_0
+urllib3=2.2.3=pypi_0
+uvicorn=0.30.6=pypi_0
+uvloop=0.20.0=pypi_0
+watchfiles=0.24.0=pypi_0
+wcwidth=0.2.13=pypi_0
+websocket-client=1.8.0=pypi_0
+websockets=12.0=pypi_0
+wheel=0.44.0=py310h06a4308_0
+wrapt=1.16.0=pypi_0
+wsproto=1.2.0=pypi_0
+xxhash=3.5.0=pypi_0
+xz=5.4.6=h5eee18b_1
+yapf=0.40.2=pypi_0
+yarl=1.11.1=pypi_0
+zipp=3.20.2=pypi_0
+zlib=1.2.13=h5eee18b_1
diff --git a/response_body.txt b/response_body.txt
new file mode 100644
index 0000000000000000000000000000000000000000..933e4ec4f3ebce3de307ad46fede63d2abf51366
--- /dev/null
+++ b/response_body.txt
@@ -0,0 +1,642 @@
+HTTP/1.1 200 OK
+date: Tue, 12 Nov 2024 06:54:05 GMT
+server: uvicorn
+content-type: text/event-stream; charset=utf-8
+transfer-encoding: chunked
+
+data: {"sex_ed_article":[]}
+
+data: {"sex_ed_qa":[]}
+
+data: {"webResults":[{"position": 1, "title": "\u5218\u5fb7\u534e- \u7ef4\u57fa\u767e\u79d1\uff0c\u81ea\u7531\u7684\u767e\u79d1\u5168\u4e66", "link": "https://zh.wikipedia.org/zh-hans/%E5%8A%89%E5%BE%B7%E8%8F%AF", "redirect_link": "https://www.google.com/url?sa=t&url=https://zh.wikipedia.org/zh-hans/%E5%8A%89%E5%BE%B7%E8%8F%AF&usg=AOvVaw1q2_qTM88SblRMtjrjG9Xg", "displayed_link": "https://zh.wikipedia.org \u203a \u5289\u5fb7\u83ef", "thumbnail": "https://serpapi.com/searches/6732fb9112345774f44255fb/images/3c08f54447ba44294b015f11cdee9a3ffae43e29c9832b5471e4d769b7aa38b5.jpeg", "favicon": "https://serpapi.com/searches/6732fb9112345774f44255fb/images/3c08f54447ba44294b015f11cdee9a3fd046d699d24ed7658385ca05690711a8.png", "snippet": "\u5218\u5fb7\u534e\uff0cSBS\uff0cMH\uff0cJP\uff08\u82f1\u8bed\uff1aAndy Lau Tak Wah\uff1b1961\u5e749\u670827\u65e5\u2014\uff09\uff0c\u9999\u6e2f\u7537\u6f14\u5458\u3001\u6b4c\u624b\u3001\u586b\u8bcd\u4eba\u3001\u76d1\u5236\u53ca\u51fa\u54c1\u4eba\uff0c1990\u5e74\u4ee3\u83b7\u5c01\u4e3a\u9999\u6e2f\u4e50\u575b\u201c\u56db\u5927\u5929\u738b\u201d\u4e4b\u4e00\uff0c\u4e5f\u662f\u5409\u5c3c\u65af\u4e16\u754c\u7eaa\u5f55\u5927\u5168\u4e2d ...", "snippet_highlighted_words": ["\u5218\u5fb7\u534e"], "source": "\u7ef4\u57fa\u767e\u79d1"}, {"position": 2, "title": "\u5218\u5fb7\u534e_\u767e\u5ea6\u767e\u79d1", "link": "https://baike.baidu.com/item/%E5%88%98%E5%BE%B7%E5%8D%8E/114923", "redirect_link": "https://www.google.com/url?sa=t&url=https://baike.baidu.com/item/%E5%88%98%E5%BE%B7%E5%8D%8E/114923&usg=AOvVaw0Gl9FYjPsR6UUjhi42-RK_", "displayed_link": "https://baike.baidu.com \u203a item", "thumbnail": "https://serpapi.com/searches/6732fb9112345774f44255fb/images/3c08f54447ba44294b015f11cdee9a3f7fe955022de232c52947e73b6c9ccba5.jpeg", "favicon": "https://serpapi.com/searches/6732fb9112345774f44255fb/images/3c08f54447ba44294b015f11cdee9a3f05ba95177707ab7a23f49351ae1b1b01.png", "snippet": "\u5218\u5fb7\u534e\uff08Andy Lau\uff09\uff0c1961\u5e749\u670827\u65e5\u51fa\u751f\u4e8e\u4e2d\u56fd\u9999\u6e2f\uff0c\u534e\u8bed\u5f71\u89c6\u7537\u6f14\u5458\u3001\u6d41\u884c\u4e50\u6b4c\u624b\u3001\u7535\u5f71\u5236\u7247\u4eba\u3001\u4f5c\u8bcd\u4eba\u30021981\u5e74\uff0c\u56e0\u51fa\u6f14\u4e2a\u4eba\u9996\u90e8\u7535\u5f71\u300a\u5f69\u4e91\u66f2\u300b\u800c\u8fdb\u5165\u6f14\u827a\u5708\u30021985\u5e74\uff0c ...", "snippet_highlighted_words": ["\u5218\u5fb7\u534e"], "source": "\u767e\u5ea6\u767e\u79d1"}, {"position": 3, "title": "\u5289\u5fb7\u83ef- \u7dad\u57fa\u767e\u79d1\uff0c\u81ea\u7531\u7684\u767e\u79d1\u5168\u66f8", "link": "https://zh.wikipedia.org/zh-hant/%E5%8A%89%E7%A6%8F%E6%A6%AE", "redirect_link": "https://www.google.com/url?sa=t&url=https://zh.wikipedia.org/zh-hant/%E5%8A%89%E7%A6%8F%E6%A6%AE&usg=AOvVaw02IrhBIMg6s8gFIjc8x2TT", "displayed_link": "https://zh.wikipedia.org \u203a \u5289\u798f\u69ae", "thumbnail": "https://serpapi.com/searches/6732fb9112345774f44255fb/images/3c08f54447ba44294b015f11cdee9a3fd60ad4942ec593c5c073f72b44ef3ab1.jpeg", "favicon": "https://serpapi.com/searches/6732fb9112345774f44255fb/images/3c08f54447ba44294b015f11cdee9a3ff5b19e441d540030b77e9351c53a6b1e.png", "snippet": "\u5289\u5fb7\u83ef\u662f\u5929\u5e55\u516c\u53f8\u548c\u6620\u85dd\u96c6\u5718\u7684\u5275\u5efa\u8005\uff0c\u4f5c\u70ba\u6295\u8cc7\u4eba\u8207\u76e3\u5236\u5df2\u53c3\u8207\u88fd\u4f5c\u4e8630\u591a\u90e8\u83ef\u8a9e\u96fb\u5f71\u3002\u9664\u6b64\u4e4b\u5916\uff0c\u5289\u5fb7\u83ef\u662f\u56db\u5ddd\u7701\u5ddd\u5287\u5b78\u6821\u5ba2\u5ea7\u6559\u6388\u3002 ... 1999\u5e74\uff0c\u5289\u5fb7\u83ef\u7372\u5f97\u300c\u9999\u6e2f\u5341\u5927\u5091\u51fa\u9752\u5e74\u300d ...", "snippet_highlighted_words": ["\u5289\u5fb7\u83ef\u662f\u5929\u5e55\u516c\u53f8\u548c\u6620\u85dd\u96c6\u5718\u7684\u5275\u5efa\u8005"], "source": "\u7ef4\u57fa\u767e\u79d1"}, {"position": 4, "title": "\u56db\u5927\u5929\u738b_\u767e\u5ea6\u767e\u79d1", "link": "https://baike.baidu.com/item/%E5%9B%9B%E5%A4%A7%E5%A4%A9%E7%8E%8B/2513149", "redirect_link": "https://www.google.com/url?sa=t&url=https://baike.baidu.com/item/%E5%9B%9B%E5%A4%A7%E5%A4%A9%E7%8E%8B/2513149&usg=AOvVaw27ahGysuTMVPPo5oogoLTy", "displayed_link": "https://baike.baidu.com \u203a item", "thumbnail": "https://serpapi.com/searches/6732fb9112345774f44255fb/images/3c08f54447ba44294b015f11cdee9a3f0b306839f1664b5c773a9ad15f87290e.jpeg", "favicon": "https://serpapi.com/searches/6732fb9112345774f44255fb/images/3c08f54447ba44294b015f11cdee9a3fd25856d65bd346aa02690fa4ce7e9c25.png", "snippet": "[5] \u56db\u5927\u5929\u738b\u91cc\uff0c\u5218\u5fb7\u534e\u662f\u5f71\u5e1d\uff0c\u5f20\u5b66\u53cb\u662f\u6b4c\u795e\uff0c\u90ed\u5bcc\u57ce\u662f\u821e\u738b\uff0c\u90a3\u9ece\u660e\u662f\u4ec0\u4e48\uff1f\uff0e\u817e\u8baf\u7f51\uff0e2020-07-29 [\u5f15\u7528\u65e5\u671f2021-02-06]; [6] \u4e5d\u5341\u5e74\u4ee3\u7684\u9999\u6e2f\u56db\u5927\u5929\u738b\uff0c\u9ece\u660e\u7684\u4eba\u6c14\u4e0d\u4f46 ...", "snippet_highlighted_words": ["\u5218\u5fb7\u534e\u662f"], "source": "\u767e\u5ea6\u767e\u79d1"}, {"position": 5, "title": "61\u5c81\u5218\u5fb7\u534e\uff0c\u6574\u987f\u5a31\u4e50\u5708", "link": "https://m.thepaper.cn/newsDetail_forward_20110227", "redirect_link": "https://www.google.com/url?sa=t&url=https://m.thepaper.cn/newsDetail_forward_20110227&usg=AOvVaw15CllHEoKI0GYKtdhdsP7q", "displayed_link": "https://m.thepaper.cn \u203a newsDetail_...", "thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQCahfz3ZB_cicQuQxTLiYEYO5qE1AWxc3X3G5XKv0i5lOFXxOTCKsR&usqp=CAE&s", "favicon": "https://serpapi.com/searches/6732fb9112345774f44255fb/images/3c08f54447ba44294b015f11cdee9a3f0c01f1c8d98f0f947ca0db6990203db3.png", "date": "Sep 29, 2022", "snippet": "\u4f5c\u4e3a\u4e00\u4ee3\u5929\u738b\u5de8\u661f\uff0c\u5218\u5fb7\u534e\u8eab\u4e0a\u51e0\u4e4e\u62e5\u6709\u201c\u5b8c\u7f8e\u5076\u50cf\u201d\u7684\u5168\u90e8\u7279\u8d28\uff1a\u656c\u4e1a\u3001\u771f\u8bda\u3001\u52aa\u529b\u4e14\u6210\u529f\u3002 \u4ed6\u5e76\u4e0d\u662f\u4e00\u4e2a\u5929\u624d\u578b\u7684\u827a\u4eba\uff0c\u4ed6\u7684\u5531\u529f\u88ab\u4eba\u6307\u6458\u6bd4\u4e0d\u4e0a\u540c\u4e3a\u5929\u738b\u7684\u5f20\u5b66\u53cb ...", "snippet_highlighted_words": ["\u5218\u5fb7\u534e"], "source": "ThePaper.cn"}]}
+
+data: {"tags": ["\u5218\u5fb7\u534e", "\u9999\u6e2f\u56db\u5927\u5929\u738b", "\u6b4c\u624b"]}
+
+data:{"content": "#"}
+
+data:{"content": " \u5218"}
+
+data:{"content": "\u5fb7"}
+
+data:{"content": "\u534e"}
+
+data:{"content": "\uff0c"}
+
+data:{"content": "\u90a3\u4e2a"}
+
+data:{"content": "\u95ea\u8000"}
+
+data:{"content": "\u7684\u5927"}
+
+data:{"content": "\u4e2d\u534e"}
+
+data:{"content": "\u5730\u533a"}
+
+data:{"content": "\u6b4c"}
+
+data:{"content": "\u5f71"}
+
+data:{"content": "\u53cc"}
+
+data:{"content": "\u6816"}
+
+data:{"content": "\u5929"}
+
+data:{"content": "\u738b"}
+
+data:{"content": "\r\n\r\n"}
+
+data:{"content": "\u5218"}
+
+data:{"content": "\u5fb7"}
+
+data:{"content": "\u534e"}
+
+data:{"content": "\u662f\u8c01"}
+
+data:{"content": "\uff1f"}
+
+data:{"content": "\u4ed6"}
+
+data:{"content": "\u5c31\u662f"}
+
+data:{"content": "\u90a3\u4e2a"}
+
+data:{"content": "\u5728"}
+
+data:{"content": "\u5927"}
+
+data:{"content": "\u4e2d\u534e"}
+
+data:{"content": "\u5730\u533a"}
+
+data:{"content": "\u4e43\u81f3"}
+
+data:{"content": "\u4e9a\u6d32"}
+
+data:{"content": "\u90fd"}
+
+data:{"content": "\u4eab\u6709"}
+
+data:{"content": "\u6781\u9ad8"}
+
+data:{"content": "\u58f0\u8a89"}
+
+data:{"content": "\u7684"}
+
+data:{"content": "\u6b4c\u624b"}
+
+data:{"content": "\u3001"}
+
+data:{"content": "\u6f14\u5458"}
+
+data:{"content": "\u548c"}
+
+data:{"content": "\u7535\u5f71"}
+
+data:{"content": "\u5bfc\u6f14"}
+
+data:{"content": "\u3002"}
+
+data:{"content": "1"}
+
+data:{"content": "9"}
+
+data:{"content": "6"}
+
+data:{"content": "1"}
+
+data:{"content": "\u5e74"}
+
+data:{"content": "\u51fa\u751f\u4e8e"}
+
+data:{"content": "\u4e2d\u56fd"}
+
+data:{"content": "\u5929\u6d25"}
+
+data:{"content": "\u7684"}
+
+data:{"content": "\u5218"}
+
+data:{"content": "\u5fb7"}
+
+data:{"content": "\u534e"}
+
+data:{"content": "\uff0c"}
+
+data:{"content": "\u51ed\u501f"}
+
+data:{"content": "\u4ed6"}
+
+data:{"content": "\u90a3"}
+
+data:{"content": "\u72ec\u7279\u7684"}
+
+data:{"content": "\u9b45\u529b"}
+
+data:{"content": "\u548c"}
+
+data:{"content": "\u591a"}
+
+data:{"content": "\u624d"}
+
+data:{"content": "\u591a"}
+
+data:{"content": "\u827a"}
+
+data:{"content": "\uff0c"}
+
+data:{"content": "\u6210\u4e3a\u4e86"}
+
+data:{"content": "\u65e0\u6570"}
+
+data:{"content": "\u4eba\u5fc3"}
+
+data:{"content": "\u4e2d\u7684"}
+
+data:{"content": "\u8d85\u7ea7"}
+
+data:{"content": "\u5de8\u661f"}
+
+data:{"content": "\u3002\u201c"}
+
+data:{"content": "\u56db\u5927"}
+
+data:{"content": "\u5929"}
+
+data:{"content": "\u738b"}
+
+data:{"content": "\u201d"}
+
+data:{"content": "\u4e4b\u4e00"}
+
+data:{"content": "\u7684"}
+
+data:{"content": "\u79f0\u53f7"}
+
+data:{"content": "\u8db3\u4ee5"}
+
+data:{"content": "\u8bc1\u660e"}
+
+data:{"content": "\u4ed6\u5728"}
+
+data:{"content": "\u97f3\u4e50"}
+
+data:{"content": "\u4e0e"}
+
+data:{"content": "\u5f71\u89c6"}
+
+data:{"content": "\u9886\u57df\u7684"}
+
+data:{"content": "\u5353\u8d8a"}
+
+data:{"content": "\u6210\u5c31"}
+
+data:{"content": "\u3002"}
+
+data:{"content": "\r\n\r\n"}
+
+data:{"content": "##"}
+
+data:{"content": " \u5218"}
+
+data:{"content": "\u5fb7"}
+
+data:{"content": "\u534e"}
+
+data:{"content": "\u7684"}
+
+data:{"content": "\u5149\u8f89"}
+
+data:{"content": "\u5c81\u6708"}
+
+data:{"content": "\r\n"}
+
+data:{"content": "**"}
+
+data:{"content": "\u7ef4"}
+
+data:{"content": "\u57fa"}
+
+data:{"content": "\u767e\u79d1"}
+
+data:{"content": "**:"}
+
+data:{"content": " \u5218"}
+
+data:{"content": "\u5fb7"}
+
+data:{"content": "\u534e"}
+
+data:{"content": "\uff08"}
+
+data:{"content": "1"}
+
+data:{"content": "9"}
+
+data:{"content": "6"}
+
+data:{"content": "1"}
+
+data:{"content": "\u5e74"}
+
+data:{"content": "9"}
+
+data:{"content": "\u6708"}
+
+data:{"content": "2"}
+
+data:{"content": "0"}
+
+data:{"content": "\u65e5"}
+
+data:{"content": "\uff09\uff0c"}
+
+data:{"content": "\u4e2d\u56fd"}
+
+data:{"content": "\u6f14\u5458"}
+
+data:{"content": "\u3001"}
+
+data:{"content": "\u6b4c\u624b"}
+
+data:{"content": "\u3001"}
+
+data:{"content": "\u7535\u5f71"}
+
+data:{"content": "\u5bfc\u6f14"}
+
+data:{"content": "\u3002"}
+
+data:{"content": "\u4ed6\u7684"}
+
+data:{"content": "\u6f14\u827a"}
+
+data:{"content": "\u4e8b\u4e1a"}
+
+data:{"content": "\u6a2a"}
+
+data:{"content": "\u8de8"}
+
+data:{"content": "\u6570"}
+
+data:{"content": "\u5341\u5e74"}
+
+data:{"content": "\uff0c"}
+
+data:{"content": "\u4e0d\u4ec5"}
+
+data:{"content": "\u5728"}
+
+data:{"content": "\u821e\u53f0\u4e0a"}
+
+data:{"content": "\u7559\u4e0b\u4e86"}
+
+data:{"content": "\u65e0\u6570"}
+
+data:{"content": "\u7ecf\u5178"}
+
+data:{"content": "\u6b4c\u58f0"}
+
+data:{"content": "\uff0c\u5728"}
+
+data:{"content": "\u94f6"}
+
+data:{"content": "\u5e55"}
+
+data:{"content": "\u4e0a"}
+
+data:{"content": "\u4e5f"}
+
+data:{"content": "\u5851\u9020"}
+
+data:{"content": "\u4e86"}
+
+data:{"content": "\u4f17\u591a"}
+
+data:{"content": "\u4ee4\u4eba"}
+
+data:{"content": "\u96be\u5fd8"}
+
+data:{"content": "\u7684\u89d2\u8272"}
+
+data:{"content": "\u3002\r\n"}
+
+data:{"content": "**"}
+
+data:{"content": "\u56db\u5927"}
+
+data:{"content": "\u5929"}
+
+data:{"content": "\u738b"}
+
+data:{"content": "**:"}
+
+data:{"content": " "}
+
+data:{"content": "\u4f5c\u4e3a"}
+
+data:{"content": "\u201c"}
+
+data:{"content": "\u56db\u5927"}
+
+data:{"content": "\u5929"}
+
+data:{"content": "\u738b"}
+
+data:{"content": "\u201d"}
+
+data:{"content": "\u4e4b\u4e00"}
+
+data:{"content": "\uff0c"}
+
+data:{"content": "\u5218"}
+
+data:{"content": "\u5fb7"}
+
+data:{"content": "\u534e"}
+
+data:{"content": "\u4e0e"}
+
+data:{"content": "\u5f20"}
+
+data:{"content": "\u5b66"}
+
+data:{"content": "\u53cb"}
+
+data:{"content": "\u3001"}
+
+data:{"content": "\u90ed"}
+
+data:{"content": "\u5bcc"}
+
+data:{"content": "\u57ce"}
+
+data:{"content": "\u548c"}
+
+data:{"content": "\u9ece\u660e"}
+
+data:{"content": "\u4e00\u8d77"}
+
+data:{"content": "\uff0c"}
+
+data:{"content": "\u662f"}
+
+data:{"content": "2"}
+
+data:{"content": "0"}
+
+data:{"content": "\u4e16\u7eaa"}
+
+data:{"content": "9"}
+
+data:{"content": "0"}
+
+data:{"content": "\u5e74\u4ee3"}
+
+data:{"content": "\u9999\u6e2f"}
+
+data:{"content": "\u4e50"}
+
+data:{"content": "\u575b"}
+
+data:{"content": "\u6700"}
+
+data:{"content": "\u8000\u773c"}
+
+data:{"content": "\u7684"}
+
+data:{"content": "\u56db"}
+
+data:{"content": "\u9897"}
+
+data:{"content": "\u660e\u661f"}
+
+data:{"content": "\u3002"}
+
+data:{"content": "\r\n\r\n"}
+
+data:{"content": "##"}
+
+data:{"content": " \u73b0"}
+
+data:{"content": "\u5728"}
+
+data:{"content": "\u7684"}
+
+data:{"content": "\u52a8\u6001"}
+
+data:{"content": "\r\n"}
+
+data:{"content": "\u503c\u5f97\u4e00\u63d0"}
+
+data:{"content": "\u7684\u662f"}
+
+data:{"content": "\uff0c\u5728"}
+
+data:{"content": "2"}
+
+data:{"content": "0"}
+
+data:{"content": "2"}
+
+data:{"content": "1"}
+
+data:{"content": "\u5e74"}
+
+data:{"content": "1"}
+
+data:{"content": "1"}
+
+data:{"content": "\u6708"}
+
+data:{"content": "1"}
+
+data:{"content": "\u65e5"}
+
+data:{"content": "\uff0c"}
+
+data:{"content": "\u56e0"}
+
+data:{"content": "\u88ab\u8ba4\u4e3a"}
+
+data:{"content": "\u662f\u4e2d\u56fd"}
+
+data:{"content": "\u5171\u4ea7"}
+
+data:{"content": "\u515a\u7684"}
+
+data:{"content": "\u6210\u5458"}
+
+data:{"content": "\uff0c"}
+
+data:{"content": "\u5218"}
+
+data:{"content": "\u5fb7"}
+
+data:{"content": "\u534e"}
+
+data:{"content": "\u88ab"}
+
+data:{"content": "\u53d6\u6d88"}
+
+data:{"content": "\u4e86"}
+
+data:{"content": "\u65b0\u52a0\u5761"}
+
+data:{"content": "\u91d1"}
+
+data:{"content": "\u66f2"}
+
+data:{"content": "\u5956"}
+
+data:{"content": "\u7684\u5927"}
+
+data:{"content": "\u5956"}
+
+data:{"content": "\u9881\u5956"}
+
+data:{"content": "\u8d44\u683c"}
+
+data:{"content": "\uff0c"}
+
+data:{"content": "\u672a\u80fd"}
+
+data:{"content": "\u9886\u53d6"}
+
+data:{"content": "\u5956\u9879"}
+
+data:{"content": "\u3002"}
+
+data:{"content": "\u8fd9\u4e2a"}
+
+data:{"content": "\u5c0f"}
+
+data:{"content": "\u63d2"}
+
+data:{"content": "\u66f2"}
+
+data:{"content": "\u867d\u7136"}
+
+data:{"content": "\u77ed\u6682"}
+
+data:{"content": "\u5f71\u54cd"}
+
+data:{"content": "\u4e86\u4ed6\u7684"}
+
+data:{"content": "\u51fa\u5e2d"}
+
+data:{"content": "\uff0c"}
+
+data:{"content": "\u4f46"}
+
+data:{"content": "\u5e76\u672a"}
+
+data:{"content": "\u52a8\u6447"}
+
+data:{"content": "\u4ed6\u5728"}
+
+data:{"content": "\u5168\u7403"}
+
+data:{"content": "\u534e\u4eba"}
+
+data:{"content": "\u5fc3\u4e2d\u7684"}
+
+data:{"content": "\u5730\u4f4d"}
+
+data:{"content": "\u3002"}
+
+data:{"content": "\r\n\r\n"}
+
+data:{"content": "\u6240\u4ee5"}
+
+data:{"content": "\uff0c"}
+
+data:{"content": "\u5f53\u4f60"}
+
+data:{"content": "\u542c\u5230"}
+
+data:{"content": "\u90a3"}
+
+data:{"content": "\u5145\u6ee1"}
+
+data:{"content": "\u78c1"}
+
+data:{"content": "\u6027\u7684"}
+
+data:{"content": "\u58f0\u97f3"}
+
+data:{"content": "\u6216\u8005"}
+
+data:{"content": "\u770b\u5230"}
+
+data:{"content": "\u4ed6"}
+
+data:{"content": "\u94f6"}
+
+data:{"content": "\u5e55"}
+
+data:{"content": "\u4e0a\u7684"}
+
+data:{"content": "\u82f1"}
+
+data:{"content": "\u59ff"}
+
+data:{"content": "\u65f6"}
+
+data:{"content": "\uff0c"}
+
+data:{"content": "\u4f60"}
+
+data:{"content": "\u5c31\u80fd"}
+
+data:{"content": "\u660e\u767d"}
+
+data:{"content": "\u201c"}
+
+data:{"content": "\u5218"}
+
+data:{"content": "\u5fb7"}
+
+data:{"content": "\u534e"}
+
+data:{"content": "\u662f\u8c01"}
+
+data:{"content": "\u201d"}
+
+data:{"content": "\u8fd9\u4e2a\u95ee\u9898"}
+
+data:{"content": "\u7684\u7b54\u6848"}
+
+data:{"content": "\u4e86"}
+
+data:{"content": "\u2014\u2014"}
+
+data:{"content": "\u4ed6\u662f"}
+
+data:{"content": "\u90a3\u4e2a"}
+
+data:{"content": "\u59cb\u7ec8"}
+
+data:{"content": "\u95ea\u8000"}
+
+data:{"content": "\u7740"}
+
+data:{"content": "\u5149\u8292"}
+
+data:{"content": "\u7684"}
+
+data:{"content": "\u5929"}
+
+data:{"content": "\u738b"}
+
+data:{"content": "\u5de8\u661f"}
+
+data:{"content": "\u3002"}
+
+data:{"related_searches": ["\u5218\u5fb7\u534e\u7684\u4e3b\u8981\u4f5c\u54c1", "\u5218\u5fb7\u534e\u7684\u4e2a\u4eba\u751f\u6d3b", "\u56db\u5927\u5929\u738b\u5206\u522b\u662f\u54ea\u4e9b\u4eba"]}
+
+data:[DONE]
+
+data:{"content": ""}
+
diff --git a/routers/__init__.py b/routers/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/routers/sql_chat.py b/routers/sql_chat.py
new file mode 100644
index 0000000000000000000000000000000000000000..85956cdf44a462e4d1861d55ba6d4bdc64f2a844
--- /dev/null
+++ b/routers/sql_chat.py
@@ -0,0 +1,204 @@
+from fastapi import APIRouter, Request
+from fastapi.responses import StreamingResponse
+from llama_index.core.workflow import StopEvent
+from llama_index.core.llms import ChatMessage
+from workflow.sql_workflow import sql_workflow, SQLWorkflow
+from workflow.roleplay_workflow import RolePlayWorkflow
+from workflow.modules import load_chat_store, MySQLChatStore, ToyStatusStore
+from workflow.events import TokenEvent, StatusEvent
+import asyncio, os, json
+from concurrent.futures import ThreadPoolExecutor
+from contextlib import asynccontextmanager
+from typing import Dict, Any
+from workflow.modules import load_chat_store
+from llama_index.llms.ollama import Ollama
+from prompts.default_prompts import FINAL_RESPONSE_PROMPT
+from workflow.vllm_model import MyVllm
+from datetime import datetime
+
+
+CHAT_STORE_PATH = os.getenv("CHAT_STORE_PATH")
+MYSQL_HOST = os.getenv("MYSQL_HOST")
+MYSQL_USER = os.getenv("MYSQL_USER")
+MYSQL_PASSWORD = os.getenv("MYSQL_PASSWORD")
+MYSQL_DATABASE = os.getenv("MYSQL_DATABASE")
+MYSQL_PORT = int(os.getenv("MYSQL_PORT"))
+
+sql_chat_router = APIRouter(
+ prefix="/sql_chat",
+ tags=["sql", "chat"]
+)
+
+chat_store_manager = APIRouter(
+ prefix="/modify_chat_store",
+ tags=["chat_store"]
+)
+
+roleplay_router = APIRouter(
+ prefix="/roleplay",
+ tags=["roleplay"]
+)
+
+"""
+接收数据格式
+{
+ "query": "Top 5 porn videos with url.", # 用户提问
+ "clientVersion": "ios_3.1.4", # 客户端版本, 不做处理
+ "traceId": "1290325592508092416", # 请求唯一标识, 不做处理
+ "messageId": 1290325592508092400, # message表示, 不做处理
+ "llmSessionId": "xxxxxxxx", # sessionId用于调取用户对话上下文
+ "llmUserId": "xxxxxx"
+}
+"""
+
+# 全局资源管理
+
+polling_variable = 0
+
+class ResourceManager:
+ def __init__(self, max_concurrent=8): # 基于24G显存可以支持2个9G模型
+ self.semaphore = asyncio.Semaphore(max_concurrent)
+ self.thread_pool = ThreadPoolExecutor(max_workers=max_concurrent)
+ self.chat_stores: Dict[str, Any] = {} # 缓存chat store实例
+
+ async def get_chat_store(self, store_name: str):
+ if store_name not in self.chat_stores:
+ self.chat_stores[store_name] = load_chat_store(store_name)
+ return self.chat_stores[store_name]
+
+# 全局资源管理器
+resource_manager = ResourceManager()
+
+@asynccontextmanager
+async def acquire_model_resource():
+ try:
+ await resource_manager.semaphore.acquire()
+ yield
+ finally:
+ resource_manager.semaphore.release()
+
+@sql_chat_router.post("/")
+async def chat(request: Request):
+ requestJson = await request.json()
+ query = str(requestJson.get("query"))
+ sessionId = str(requestJson.get("llmSessionId"))
+ try:
+ isLLMContext = int(requestJson.get("isLlmContext"))
+ adultMode = int(requestJson.get("adultMode"))
+ # isCache = int(request.get("isCache"))
+ print(f"adultMode: {adultMode} - isLLMContext: {isLLMContext}")
+ if adultMode == 1:
+ adultMode = True
+ else:
+ adultMode = False
+ except Exception as e:
+ isLLMContext = 0
+ adultMode = False
+ # 调取用户对话上下文 elasticsearch
+ # chat_history = parse_chat_history(sessionId)
+ # try:
+ # chat_store = load_chat_store("testing_chat_store")
+ # except:
+ # # 获取当前日期
+ # current_date = datetime.now().strftime('%Y%m%d')
+ # chat_store = load_chat_store(current_date)
+ chat_store = MySQLChatStore(host=MYSQL_HOST, port=MYSQL_PORT, user=MYSQL_USER, password=MYSQL_PASSWORD, database=MYSQL_DATABASE)
+ print(f"query: {query} - sessionId: {sessionId}")
+
+ llm = MyVllm(
+ model="huihui-ai/Qwen2.5-7B-Instruct-abliterated-v2",
+ api_key="token-abc123",
+ base_url="http://localhost:17777/v1",
+ )
+
+ response_synthesis_prompt = FINAL_RESPONSE_PROMPT
+ # Ollama("solonglin/qwen2.5-q6_k-abliterated", temperature=0.8, request_timeout=120, context_window=5000, keep_alive=-1),
+ wf = SQLWorkflow(
+ response_llm=llm,
+ response_synthesis_prompt=response_synthesis_prompt,
+ chat_store=chat_store,
+ sessionId=sessionId,
+ context_flag=isLLMContext,
+ adultMode=adultMode,
+ verbose=True,
+ timeout=60
+ )
+ r = wf.run(query=query)
+ async def generator():
+ async for event in r.stream_events():
+ if await request.is_disconnected():
+ break
+ if isinstance(event, TokenEvent):
+ token = event.token
+ yield token
+ if isinstance(event, StatusEvent):
+ yield event.status
+ if isinstance(event, str):
+ yield event
+ await asyncio.sleep(0)
+ # result = await sql_workflow(query=query, chat_store=chat_store, sessionId=sessionId, llm=llm, context_flag=isLLMContext, adultMode=adultMode)
+ return StreamingResponse(content=generator(), media_type="text/event-stream")
+
+@roleplay_router.post("/")
+async def roleplay(request: Request):
+ requestJson = await request.json()
+ query = str(requestJson.get("query"))
+ sessionId = "rp_" + str(requestJson.get("llmSessionId"))
+ # messageId = str(requestJson.get("messageId"))
+ toy_info = requestJson.get("toyIds")
+ if toy_info:
+ toy_names = [item["name"] for item in toy_info]
+ else:
+ toy_names = None
+ chat_store = MySQLChatStore(host=MYSQL_HOST, port=MYSQL_PORT, user=MYSQL_USER, password=MYSQL_PASSWORD, database=MYSQL_DATABASE)
+ toy_status_store = ToyStatusStore(host=MYSQL_HOST, port=MYSQL_PORT, user=MYSQL_USER, password=MYSQL_PASSWORD, database=MYSQL_DATABASE)
+ print(f"query: {query} - sessionId: {sessionId} - toyName: {toy_names}")
+
+ # setup llm
+ llm = MyVllm(
+ model="huihui-ai/Qwen2.5-7B-Instruct-abliterated-v2",
+ api_key="token-abc123",
+ base_url="http://localhost:17777/v1",
+ )
+
+ # init workflow
+ wf = RolePlayWorkflow(
+ response_llm=llm,
+ chat_store=chat_store,
+ toy_status_store=toy_status_store,
+ sessionId=sessionId,
+ gender="female",
+ toy_names=toy_names,
+ verbose=True,
+ timeout=60,
+ )
+ r = wf.run(query=query)
+ async def generator():
+ async for event in r.stream_events():
+ if await request.is_disconnected():
+ break
+ if isinstance(event, TokenEvent):
+ token = event.token
+ yield token
+ if isinstance(event, StatusEvent):
+ yield event.status
+ if isinstance(event, str):
+ yield event
+ await asyncio.sleep(0)
+ return StreamingResponse(content=generator(), media_type="text/event-stream")
+
+
+@chat_store_manager.post("/")
+async def modify_chat_store(request: Request):
+ try:
+ request = await request.json()
+ sessionId = request.get("sessionId")
+ upMessageBody = request.get("upMessageBody")
+ downMessageBody = request.get("downMessageBody")
+
+ chat_store = MySQLChatStore(MYSQL_HOST, MYSQL_PORT, MYSQL_USER, MYSQL_PASSWORD, MYSQL_DATABASE)
+ chat_store.del_message(sessionId, upMessageBody)
+ chat_store.del_message(sessionId, downMessageBody)
+ return {"status": "SUCCESS"}
+ except Exception as e:
+ return {"status": "FAILED", "error": str(e)}
\ No newline at end of file
diff --git a/routers/update_kb.py b/routers/update_kb.py
new file mode 100644
index 0000000000000000000000000000000000000000..5f5700a88f9e21242144d3189abe19507a936bb1
--- /dev/null
+++ b/routers/update_kb.py
@@ -0,0 +1,27 @@
+from fastapi import APIRouter, Request, FastAPI
+from langchain_community.embeddings.ollama import OllamaEmbeddings
+import uvicorn
+
+embed_model = OllamaEmbeddings(model="bge-m3")
+
+app = FastAPI(
+ title="kb",
+ description="update_kb",
+)
+
+kb_router = APIRouter(
+ prefix="/kb",
+ tags=["kb"]
+)
+
+@kb_router.post("/")
+async def update_kb(request: Request):
+ request = await request.json()
+ data = request.get("data", [])
+ collection_name = request.get("collection_name", "")
+ # print(f"collection_name: {collection_name}")
+
+app.include_router(kb_router)
+
+if __name__ == "__main__":
+ uvicorn.run(app, host="0.0.0.0", port=8010, loop="asyncio")
diff --git a/tests/README.md b/tests/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..31bca70e33fd4e7e5d2e7b8ba5f08fc951743b74
--- /dev/null
+++ b/tests/README.md
@@ -0,0 +1,6 @@
+---
+title: SexBot
+app_file: roleplay_gradio.py
+sdk: gradio
+sdk_version: 5.10.0
+---
diff --git a/tests/__init__.py b/tests/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/tests/agent_workflow.py b/tests/agent_workflow.py
new file mode 100644
index 0000000000000000000000000000000000000000..02717ee29f909c708e753e17e43a2c8abaaaa840
--- /dev/null
+++ b/tests/agent_workflow.py
@@ -0,0 +1,198 @@
+from typing import Any, List
+
+from llama_index.core.agent.react import ReActChatFormatter, ReActOutputParser
+from llama_index.core.agent.react.types import (
+ ActionReasoningStep,
+ ObservationReasoningStep,
+)
+from llama_index.core.llms.llm import LLM
+from llama_index.core.memory import ChatMemoryBuffer
+from llama_index.core.tools.types import BaseTool
+from llama_index.core.workflow import (
+ Context,
+ Workflow,
+ StartEvent,
+ StopEvent,
+ step,
+)
+from llama_index.llms.openai import OpenAI
+from llama_index.core.llms import ChatMessage
+from llama_index.core.tools import ToolSelection, ToolOutput
+from llama_index.core.workflow import Event
+from llama_index.llms.ollama import Ollama
+from llama_index.core import Settings
+
+llm = Ollama(model="HammerAI/neuraldaredevil-abliterated")
+Settings.llm = llm
+
+class PrepEvent(Event):
+ pass
+
+
+class InputEvent(Event):
+ input: list[ChatMessage]
+
+
+class ToolCallEvent(Event):
+ tool_calls: list[ToolSelection]
+
+
+class FunctionOutputEvent(Event):
+ output: ToolOutput
+
+
+class ReActAgent(Workflow):
+ def __init__(
+ self,
+ *args: Any,
+ llm: LLM | None = None,
+ tools: list[BaseTool] | None = None,
+ extra_context: str | None = None,
+ **kwargs: Any,
+ ) -> None:
+ super().__init__(*args, **kwargs)
+ self.tools = tools or []
+
+ self.llm = llm or OpenAI()
+
+ self.memory = ChatMemoryBuffer.from_defaults(llm=llm)
+ self.formatter = ReActChatFormatter(context=extra_context or "")
+ self.output_parser = ReActOutputParser()
+ self.sources = []
+
+ @step
+ async def new_user_msg(self, ctx: Context, ev: StartEvent) -> PrepEvent:
+ # clear sources
+ self.sources = []
+
+ # get user input
+ user_input = ev.input
+ user_msg = ChatMessage(role="user", content=user_input)
+ self.memory.put(user_msg)
+
+ # clear current reasoning
+ await ctx.set("current_reasoning", [])
+
+ return PrepEvent()
+
+ @step
+ async def prepare_chat_history(
+ self, ctx: Context, ev: PrepEvent
+ ) -> InputEvent:
+ # get chat history
+ chat_history = self.memory.get()
+ current_reasoning = await ctx.get("current_reasoning", default=[])
+ llm_input = self.formatter.format(
+ self.tools, chat_history, current_reasoning=current_reasoning
+ )
+ return InputEvent(input=llm_input)
+
+ @step
+ async def handle_llm_input(
+ self, ctx: Context, ev: InputEvent
+ ) -> ToolCallEvent | StopEvent:
+ chat_history = ev.input
+
+ response = await self.llm.achat(chat_history)
+
+ try:
+ reasoning_step = self.output_parser.parse(response.message.content)
+ (await ctx.get("current_reasoning", default=[])).append(
+ reasoning_step
+ )
+ if reasoning_step.is_done:
+ self.memory.put(
+ ChatMessage(
+ role="assistant", content=reasoning_step.response
+ )
+ )
+ print(reasoning_step.response)
+ return StopEvent(
+ result={
+ "response": reasoning_step.response,
+ "sources": [*self.sources],
+ "reasoning": await ctx.get(
+ "current_reasoning", default=[]
+ ),
+ }
+ )
+ elif isinstance(reasoning_step, ActionReasoningStep):
+ tool_name = reasoning_step.action
+ tool_args = reasoning_step.action_input
+ print(f"current thought:{reasoning_step.thought} --{tool_name}({tool_args}")
+ return ToolCallEvent(
+ tool_calls=[
+ ToolSelection(
+ tool_id="fake",
+ tool_name=tool_name,
+ tool_kwargs=tool_args,
+ )
+ ]
+ )
+ except Exception as e:
+ (await ctx.get("current_reasoning", default=[])).append(
+ ObservationReasoningStep(
+ observation=f"There was an error in parsing my reasoning: {e}"
+ )
+ )
+
+ # if no tool calls or final response, iterate again
+ return PrepEvent()
+
+ @step
+ async def handle_tool_calls(
+ self, ctx: Context, ev: ToolCallEvent
+ ) -> PrepEvent:
+ tool_calls = ev.tool_calls
+ tools_by_name = {tool.metadata.get_name(): tool for tool in self.tools}
+
+ # call tools -- safely!
+ for tool_call in tool_calls:
+ tool = tools_by_name.get(tool_call.tool_name)
+ if not tool:
+ (await ctx.get("current_reasoning", default=[])).append(
+ ObservationReasoningStep(
+ observation=f"Tool {tool_call.tool_name} does not exist"
+ )
+ )
+ continue
+
+ try:
+ tool_output = tool(**tool_call.tool_kwargs)
+ print(f"Tool output: {tool_output}")
+ self.sources.append(tool_output)
+ (await ctx.get("current_reasoning", default=[])).append(
+ ObservationReasoningStep(observation=tool_output.content)
+ )
+ except Exception as e:
+ (await ctx.get("current_reasoning", default=[])).append(
+ ObservationReasoningStep(
+ observation=f"Error calling tool {tool.metadata.get_name()}: {e}"
+ )
+ )
+
+ # prep the next iteraiton
+ return PrepEvent()
+
+from llama_index.core.tools import FunctionTool
+from llama_index.llms.openai import OpenAI
+from workflow.modules import *
+
+
+
+async def main():
+ tools = [
+ FunctionTool.from_defaults(video_search),
+ FunctionTool.from_defaults(general_search),
+ ]
+
+ agent = ReActAgent(
+ llm=llm, tools=tools, timeout=120, verbose=True
+ )
+
+ ret = await agent.run(input="How to build trust with partner?")
+
+if __name__ == "__main__":
+ import asyncio
+ asyncio.run(main())
+
diff --git a/tests/chroma_db/72aecf5e-825b-406a-8b86-2cd424f8ff72/data_level0.bin b/tests/chroma_db/72aecf5e-825b-406a-8b86-2cd424f8ff72/data_level0.bin
new file mode 100644
index 0000000000000000000000000000000000000000..42a5c4c7855126c7885f41d0f407df22fce5f77d
--- /dev/null
+++ b/tests/chroma_db/72aecf5e-825b-406a-8b86-2cd424f8ff72/data_level0.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f00c649760867dda1b427939fc71ad4b3e4b38bf093d7febda0d7dc257f5008f
+size 16524000
diff --git a/tests/chroma_db/72aecf5e-825b-406a-8b86-2cd424f8ff72/header.bin b/tests/chroma_db/72aecf5e-825b-406a-8b86-2cd424f8ff72/header.bin
new file mode 100644
index 0000000000000000000000000000000000000000..e66d581fb1ada63ade2676f83f55b7407e87f4cf
--- /dev/null
+++ b/tests/chroma_db/72aecf5e-825b-406a-8b86-2cd424f8ff72/header.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ab81429de0666bb1c88e77a02e06b00c660cdb1158aec07ce0195e3ee4fbd53e
+size 100
diff --git a/tests/chroma_db/72aecf5e-825b-406a-8b86-2cd424f8ff72/length.bin b/tests/chroma_db/72aecf5e-825b-406a-8b86-2cd424f8ff72/length.bin
new file mode 100644
index 0000000000000000000000000000000000000000..623fa606008c9105607be5581885ad21b39df399
--- /dev/null
+++ b/tests/chroma_db/72aecf5e-825b-406a-8b86-2cd424f8ff72/length.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f3a7b351dd58ecaaf46083902bb1a12e0ea45db3bd2f4cc7f1a39c1de4b7361c
+size 4000
diff --git a/tests/chroma_db/72aecf5e-825b-406a-8b86-2cd424f8ff72/link_lists.bin b/tests/chroma_db/72aecf5e-825b-406a-8b86-2cd424f8ff72/link_lists.bin
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/tests/chroma_db/chroma.sqlite3 b/tests/chroma_db/chroma.sqlite3
new file mode 100644
index 0000000000000000000000000000000000000000..11df9b72faabeba40336b6cf7eb2e3ff9a9785b7
--- /dev/null
+++ b/tests/chroma_db/chroma.sqlite3
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9fd184a5bf9031e5a74322bbc8765c7d415ec1fb5ea276c14f994f020b712ff7
+size 2494464
diff --git a/tests/data/txt/blog/27 Orgasmic Blow Job Tips To Make Your Man Explode!.txt b/tests/data/txt/blog/27 Orgasmic Blow Job Tips To Make Your Man Explode!.txt
new file mode 100644
index 0000000000000000000000000000000000000000..1b7372806bff1d73cdc4cc333d06a27d517bf383
--- /dev/null
+++ b/tests/data/txt/blog/27 Orgasmic Blow Job Tips To Make Your Man Explode!.txt
@@ -0,0 +1,306 @@
+27 Orgasmic Blow Job Tips To Make Your Man Explode!
+Sean Jameson, Jenny Fox, Nathan James Diflora, Paul Baker, Bob C, Bj Queen, John Declair, Gaining Confidence, Veronica Smith, Ian Thomas
+2020-08-12 00:06:15+00:00
+This discreet newsletter will teach you how to make him cum hard, give freaky oral sex & make him scream your name in bed. Click here to get it.
+
+On this page, you’re going to learn powerful ways to build up to your blow job, AND you’re going to learn 27 wonderful, orgasm-inducing blow job tips that will make your man’s eyes roll back into his head with pleasure. Click here to skip straight to these blow job tips and skip past the techniques on for building up to your blow job.
+
+By the way, this page is the second chapter of the Blow Job Guide. Chapter 1 of the Blow Job Guide is here.
+
+Side note: If you are currently struggling to orgasm during sex or masturbation, then you may want to learn about the Easy Orgasm Solution. It begins by teaching you the techniques to orgasm easily and consistently. Then you'll learn how to have multiple vaginal and full body orgasms during sex and masturbation. You can find out more here.
+
+Building Up To Your BJ – Teasing & Tantalizing Your Man
+
+Some men are ready and eager for sex or a blow job 24/7. But this isn’t true for all of them. In fact, some guys take a lot of coaxing just to turn them on and get them in the mood, and as your man ages, this becomes more and more of an issue [1].
+
+Here are a few different ideas you should use to get him worked up before you even get physical with him:
+
+Sexy Selfies – Sending your man a sexy selfie while he is at work or is in the gym is the perfect way to turn him on and get him ready for fun times ahead. Using an app like Snapchat is best if you don’t want to worry about the photos being stored on your phone. Check out this guide to taking sexy selfies for more tips.
+
+Dirty Texts & Sexting – While your man is at work or is just out of the house, try sending him some dirty texts, letting him know about what’s on your mind and what you are planning for later. It can be something filthy like, “I can wait to feel you explode in my mouth tonight.” Or it can be something a little more reserved like, “Can’t wait to see you later…and my lips can’t wait either ;)” Or you can describe in detail the blow job idea you’ve just learned and are going to perform on him.
+
+You’ll get more great tips on sending your man sexy texts in this chapter of the Dirty Talking Guide.
+
+Related: If you want to give your man back-arching, toe-curling, screaming orgasms that will keep him sexually addicted to you, then you'll find them in my private and discreet newsletter. You'll also learn the 5 dangerous & "dumb" sex mistakes that turn him off and how to avoid them. Get it here.
+
+Out & About – If you are both out in public together or at a dinner party where you can’t possibly be intimate, then it’s the perfect time to lean across and whisper something in his ear to get him thinking about what you’ve got planned for later. The Dirty Talking Guide will give you step-by-step advice, examples, and tips on what to say to tease, tantalize, and amp up the sexual tension with your man.
+
+A General Guideline For Tantalizing Him – Often, guys get turned on by a lot of things that many women don’t find arousing [2], so keep this in mind when you are coming up with your own ideas and tactics to tease him and build up to a blow job.
+
+This explains why your guy may love seeing a picture of you naked, even though seeing a snap of him naked doesn’t do much for you. It also explains why you might get crazy horny when reading erotica, while it might put your man to sleep. In other words, just because something turns you on, it doesn’t mean it will turn him on, and vice-versa.
+
+His Turn Ons – Your man may have certain turn-ons and triggers specific to him that massively ramp up the sexual tension and his anticipation. They could be literally anything from:
+
+Reminding him of some very hot sex you’ve had together.
+
+Whispering some “trigger” word or phrase in his ear.
+
+Sensually touching specific parts of his body.
+
+Looking at him in a certain way.
+
+The key is knowing and understanding these specific turn-ons of his and then using them to get his mind thinking, longing for what you have planned later.
+
+A Long Build Up – You can spend an hour teasing, tantalizing, and slowly building up to your blow job or… You can spend days doing it.
+
+If you aren’t going to see your man for a while, you can start sending him dirty texts, sexy pics, and stories detailing what you plan on doing to him a number of days before seeing him.
+
+The entire time, he’ll be thinking of you, desperate for what awaits.
+
+Quick Quiz: Do You Give Good Blow Jobs? If you are new here, then you may want to take the quiz below to learn how good you are at giving oral sex and satisfying your man. You may discover you that you suck (pun intended) or that you are already a blow job queen.
+
+Not only will your man be eager for a blow job, but you may find that these things work to get you horny, too. Learn the things that our readers do to get horny.
+
+Fellatio Foreplay
+
+It may be surprising to hear, but men love foreplay to be drawn out significantly longer more than most women think [3], even if most men get turned on quicker than most women [4]. So, while giving him a quickie BJ can be super hot for both of you (like say sneaking away for a few minutes at a party), you’ll find that a slow, teasing build-up is going to result in your man blowing a bigger load [5]…and a bigger smile on his face.
+
+This is probably the most powerful, but also the most overlooked blow job tip you can learn. With this in mind, here are a bunch of great “fellatio foreplay” tips that you can use before giving your man head:
+
+Hand Massage – This one is probably the easiest to get right. While you are kissing him or just talking to him or while you’re just physically close to him, put your hand on his crotch. So your hand should be resting on his briefs or his trousers. To make it smooth, start by first placing your hand on his leg and moving it up from there. Then just softly start massaging his penis and testicles outside of his trousers/briefs.
+
+It’s as simple as softly running your hands over this area, but you can also get a little more aggressive by softly grabbing and squeezing his cock and balls and then releasing the pressure.
+
+After massaging him for a few minutes, help him take off his trousers and briefs.
+
+Then just keep doing what you were doing, running your hands over his manhood. If you like, you can also softly trace your fingers up and down his dick and around his balls. If you want to learn more hand job techniques, then make sure to check out the Hand Job Guide here.
+
+Talking To Him On Your Knees – Another great blow job idea to build up to giving your man head is talking to him while on your knees.
+
+You can start off with something simple like, “So what do you want me to do now, baby?” while holding his penis in your hands…you can be sure that he’s going to ask you to give him a blow job. He might even give you a tip for a great blow job that lets you know how he likes it!
+
+As you become more confident and see his enthusiasm, you can start expanding your dirty talking, by
+
+Telling him how much you are enjoying giving him oral sex.
+
+That you can’t wait to taste his cum.
+
+How giving him a blow job turns you on.
+
+Of course, you can also talk dirty throughout your blow job too. The Dirty Talking Guide will teach everything you need to know about talking dirty.
+
+So Close – Another bj tip you can do to build up to your blow job is to work around his manhood first. So instead of just taking him into your mouth and giving him a blow job, you could:
+
+Kiss around his crotch and groin.
+
+Gently massage his balls using your tongue.
+
+Softly “tickle” his testicles with the tips of your fingers.
+
+Run your nails over his ass cheeks.
+
+The Kiss Trail – A red hot blow job tip that allows you to move smoothly from kissing your husband to taking him in your mouth is to work slowly down from his lips to his penis by kissing your way down. So you can move from his lips to his neck to his chest to his stomach until you reach his groin area. Of course, this works way better if he is naked.
+
+Along the way, you can pay attention to his most sensitive spots.
+
+Read More: The Most Important Erogenous Zones.
+
+If you want to learn more great foreplay tips, then make sure to check out the Bad Girls Bible Foreplay Guide here.
+
+Should You Start Fast or Slow – It can be incredibly hot to rip your man’s pants off, and immediately take his penis in your mouth, working furiously to bring him to orgasm without much build up at all.
+
+Sometimes we don’t have time for foreplay or may even risk getting caught. That’s one reason why people love quickies!
+
+Read More: Quickies 101
+
+On the other hand, it can also be super satisfying to tease him and slowly work up to your blow job, making your man squirm and beg you to hurry up as you spend minute after minute grazing and barely touching his penis before you finally take him into your mouth.
+
+Both of these build ups can be hugely satisfying to your man, despite being so very different.
+
+The key is applying them correctly to each situation, AND…
+
+Making sure you don’t rely on just one tip for a great blow job.
+
+Of course, you can try out any of the 22 foreplay techniques from this post to keep things varied.
+
+So, the next time you are about to go down on your man, think:
+
+What will he find more satisfying:
+
+When you use a long, slow, drawn out build up where he is practically begging you to hurry up, or…
+
+When you don’t have time for a build up, because all you can think of is taking him in your mouth.
+
+Now let’s learn what blow job tips will drive your man wild…
+
+Tips for a Good Blow Job
+
+You’re both ready for the main event, now what do you do? Try these bj tips!
+
+Flick The Frenulum
+
+
+
+For many men, the most sensitive spot on their penis is their frenulum. The frenulum is the underside of the tip of their penis, where the glans joins his shaft [6].
+
+An intensely pleasurable blow job tip that you can use on him is to use the tip of your tongue to apply a gentle flicking motion to it. While you are naturally going to stimulate his frenulum while sucking him (learn tips on sucking here and here) or just licking his penis (learn some oral sex licking techniques here), this technique is different as you will be focusing all your stimulation on a very specific point on his penis.
+
+Flicking his frenulum can be the perfect way to start off your blow jobs before taking his entire dick in your mouth. You can flick it up-and-down, side-to-side, in circles, or by doing a combination of all three.
+
+Bear in mind that if your man has been circumcised, there is a chance that his frenulum has been fully or partially removed [7].
+
+Blowing Him
+
+Many women are so anxious at the thought of giving head to their man that they just get straight to it with little or no build up and with no teasing. It’s like they are focused only on making him ejaculate and getting that sperm out of him.
+
+Gently teasing your man and building up the sexual tension, so that he is practically begging you to blow him is vital if you want to take your blow jobs from good to great.
+
+Another great way to amp up the sexual tension and have him squirming in delight is to lick him gently, making sure to use lots of saliva and then blow on the wet patch you’ve created. Blowing on the wet patch creates a cooling sensation that is great for teasing your man and making him moan with pleasure.
+
+More tips on licking him here.
+
+Try doing this for about a minute before you take him into your mouth.
+
+Kiss, Kiss
+
+Another great way to start off your blow job is by kissing his cock all over. Kissing is great if you like taking things slowly and teasing your man.
+
+You can kiss his penis any way you want, but it will be a lot easier when you use your hand to hold it in place while you kiss it. There are multiple different ways to kiss his penis, from giving him small, quick ‘pecks,’ to giving him longer, more intense kisses. He’ll especially love it if you give him extra wet, sloppy kisses. Don’t be surprised if you can see precum or semen dripping from his cock at this stage.
+
+You can also use this precum to wet your lips.
+
+Kissing him is a fabulous way to pull back if you feel him getting close to climaxing and want him to wait a little longer before reaching orgasm. It will also give your jaw a rest if you find it getting tired from having him in your mouth.
+
+The Thing With Teeth
+
+You already know how sensitive your boyfriend’s penis is, especially the underside of the head [8]. For pleasuring it, this is obviously a good thing…but if you apply too much pressure, or you are too rough with it, then you’re going to hurt your man. It’s the same for your clit and vagina if you are masturbating, or your man is going down on you. Learn some orgasmic masturbation techniques from Chapter 2 of our Orgasm Guide.
+
+Just imagine how sore it would be if your boyfriend had nails that were constantly catching on you…or worse, can you imagine how painful it would be if he started using his teeth on you as he was licking you out and performing cunnilingus. It would be agony!
+
+The only mandatory blow job tip when giving your man oral sex is that you absolutely must not use your teeth on him. It can completely ruin an otherwise fantastic BJ.
+
+But what if he is particularly well endowed…or you have a small mouth?
+
+In situations like this, it can be almost impossible to avoid using your teeth during a blowjob. The first thing you can do is to wrap your lips around your teeth so that your lips act as a soft barrier. The second thing is focusing on techniques where you don’t take him into your mouth like these ones or by giving him a handjob (learn everything you need to know about hand jobs in this guide).
+
+Side note: There is a small percentage of men that enjoy it when you use your teeth and apply a tiny bit of pressure on his penis, using an almost featherlight touch on him. My advice is never to try this UNTIL your man mentions it himself.
+
+Related: Why 92.6% Of Women Like Giving Blow Jobs [1,114 Woman Study]
+
+Which Blow Job Position Is Best?
+
+The position you use to give your man a blow job can be incredibly important…or not at all.
+
+Here’s what I mean:
+
+Submissive Positions – If you want to act submissive for your man when you blow him, then getting down on your knees or been pushed down by him, while he remains standing can feel quite submissive while your man feels dominant.
+
+Looking up and making eye contact with him during your your blow job while on your knees can intensify this feeling of submission.
+
+Having your hands cuffed behind your back, giving your man more control over you, can ramp this submissive feeling up to the max.
+
+Dominant Positions – Of course, you could push your man down on the bed, so that he’s lying down on his back. Then you straddle his head/shoulders and slowly lower yourself onto his mouth, commanding him to, “Lick It!” Finally, you lean forward to return the favor and start giving him a blow job in the 69 position.
+
+To intensify this feeling, you can reach behind to his head, grab his hair, and pull him in towards your pussy.
+
+Or you could tie his arms to the bed.
+
+Exotic Positions – Alternatively, to spice up oral sex, you could just use a position that you’ve never used before.
+
+The point that I’m trying to make is that the position you give your man a blow job in can add a lot to his pleasure (and yours too!).
+
+The position you use becomes increasingly important if your man is someone who gets turned on visually…and as you already know, a lot of guys are visual animals.
+
+Speaking of being visual…
+
+Mirrors – Another great way to add to your man’s visual experience is to use a mirror.
+
+There’s no need to install a custom ceiling mirror above your bed, but…
+
+Think about giving him a blow job in front of a regular wall mirror or even in front of a large window or glass shower door where he can see your reflection.
+
+Get more ideas from this list of oral sex positions.
+
+My Most Vital Blow Job Trick
+
+In Chapter 1, I talked about the importance of feeling comfortable when going down on your man if YOU want to enjoy yourself.
+
+This next blow job trick is an extension of that principle. You see..
+
+According to one study, the average erect penis size is around 5 inches (12.9cm) long [9] while another study finds the average erect penile length closer to 5.6 inches (14.15cm) [10], and previous studies pegged erect penis length over 6 inches [11] (this might surprise many men; up to 85% of them overestimate average penis size [12]).
+
+Now…
+
+The depth of the mouth from lips to the throat can vary with the size and shape of your jaw. Some estimates put it around 3 or 4 inches in depth. You can figure yours out by using a dildo and seeing how far you can insert it!
+
+Doing the math…
+
+This means that if you take your man into your mouth, down to the base of his penis, then he’s going to hit back of your throat and trigger your gag reflex. This isn’t a problem if you don’t have a gag reflex, but most of us have a super-sensitive one. Get tips on how to eliminate your gag reflex in the Guide on how to deep throat without gagging.
+
+Magic Hand Trick – The trick you need to use to prevent him from triggering your gag reflex is to START your blow job by placing a hand by the base of his penis, so you can control how deep you take him.
+
+If he is particularly well endowed, then you can wrap a few fingers around the base so that you can only take a small section of his penis into your mouth; otherwise, you can just place your hand near the base of his penis or even on his thigh.
+
+This immediately means you can forget about gagging and can instead focus on giving him more pleasure.
+
+Giving Feedback With A Dick In Your Mouth
+
+As I mentioned before, most guys are visually turned on, but what you may not know is that they adore hearing your blow job too.
+
+How can he hear your blow job?
+
+Through your licking, slurping, kissing, breathing and moaning
+
+I’m not talking about making loud, fake sounds as you take his penis in and out of your mouth.
+
+What I’m saying is that most guys love hearing the sounds you naturally make during your blow job. In fact, the noises women make can help their partners orgasm [13].
+
+So if you happen to make a lot of noise slurping on his penis and gasping for breath after deep throating him, don’t think for a minute that it’s turning your man off. Men love this.
+
+And…
+
+If you are enjoying yourself during the blow job, feel free to moan your pleasure, even with him in your mouth.
+
+Podcast: 14 Advanced BJ Techniques
+
+I recently recorded this podcast to teach you the most advanced & pleasurable blow job techniques you can use on your man to give him an orgasm so intense that he may fall into a “sex coma.” I cover everything from BDSM to finishing him off the right way.
+
+Listen to more Bad Girls Bible podcast episodes here.
+
+The Initiation
+
+Who usually initiates things sexually? You or your man?
+
+Think about this for a minute.
+
+If both of you prefer when the same partner initiates every time, then great!
+
+However, most guys prefer when there is a bit of variation…Sometimes he is the initiator, and sometimes you are the person initiating things.
+
+Try to be mindful of this in your relationship, as it can be really hot for your man when you wake him up to a surprise, morning blow job (or you may prefer morning sex, instead).
+
+Equally, it can be intense when he grabs you, pushes you down to your knees, and unzips his pants.
+
+In short, sometimes let him start things off; other times, you should be the one who initiates things.
+
+The same goes for other sexual activities. Discover 9 ways to initiate sex.
+
+The Don’ts Of Good Blow Jobs
+
+I hope that from reading this chapter of the Blow Job Guide (click here for the other chapters of the Blow Job Guide) that you see just how easy it can be to give your man a great blow job. There are a vast number of different blow job tips you can use to give him intense pleasure.
+
+But before you go out and start using these blow job tips, there are a few vital aspects of blow jobs that you should know to ensure that you don’t do anything that will hinder your oral sex skills or lessen the pleasure you give your man…
+
+Teeth – I’ve already mentioned the problem with accidentally using your teeth earlier in this article. Please refer to this section to understand the best ways to avoid accidentally using your teeth on him.
+
+Expecting Payback – I mentioned this before in Chapter 1 of the Blow Job Guide, but it’s so important that I’m going to say it again…
+
+In the ideal world, every partner would selflessly provide their loved one with endless pleasure, never asking for anything in return. Of course, this is a little unrealistic and unworkable in the real world. However, you should never see love making (or blow jobs!) as something you only do in order to receive an equal amount of pleasure in return.
+
+Sex is not a tit-for-tat exercise.
+
+To Control – Using these bj tips or sex as a weapon and method for controlling your man is a recipe for disaster. If you start withholding sex to try to get your husband to do something, then both of you are going to develop a negative attitude towards all things sex very quickly. Equally, promising to give him a blow job only if he does this or that is going to foster an unhealthy situation for your sex life.
+
+Of course, this advice does not apply to roleplaying scenarios in which you try to “break” your man or get him to give up a secret by teasing and tantalizing him.
+
+Lack Of Variation – An obvious, but often forgotten blow job “don’t” is a lack of variation. Just like performing the same tasks over and over at the office make for a dull, boring workday, this is also the case for your sex life. In fact, studies have shown that while both men and women enjoy new sexual experiences, men have a higher preference for new and exciting sexual stimulation [14], so why not give it to him!
+
+In other words, if you just use the same two techniques on your man every Saturday night, then he’s going to stop looking forward to it. The key is using enough variation in your oral sex repertoire to keep him on his toes. However, too much variation can be a bad thing too…
+
+Too Much Variation! – So you’ve bookmarked the Bad Girls Bible and read it every day to learn new sex positions (check out over 100 different sex positions with illustrations in the Sex Positions Guide here), blow job tips, and how to talk dirty (read the Dirty Talking Guide here). Every day you’re learning more and more sex tips to give him powerful orgasms. You may think that you should try something completely new on him every day while forgetting about the blow job tips that you’ve previously used to pleasure him.
+
+Too much variation is NOT a good strategy if you want to have a fulfilling sex life. It’s like redecorating your house every six months and throwing out all the furniture and decorations that you like, along with the furniture and decorations you don’t like. But why throw out what you do like? Of course, you should keep the stuff you like.
+
+In short, make sure to try new blow job ideas, but don’t forget about the blow job tips that are already working great.
+
+Now that you’ve learned some tips for beginning your blow job, let’s get started on Chapter 3 of the Blow Job Guide, where you’ll learn my secret orgasm-inducing blow job techniques. Or, if you like, you can go back to Chapter 1, which will give you an overview of the entire Blow Job Guide.
\ No newline at end of file
diff --git a/tests/data/txt/blog/Blowjobs What Are They and How to Give One.txt b/tests/data/txt/blog/Blowjobs What Are They and How to Give One.txt
new file mode 100644
index 0000000000000000000000000000000000000000..89b14dea7a2a69f56f7909a1ce5691d2a51bacd6
--- /dev/null
+++ b/tests/data/txt/blog/Blowjobs What Are They and How to Give One.txt
@@ -0,0 +1,20 @@
+Blowjobs: What Are They and How to Give One
+
+None
+What Is a Blowjob?
+
+Oral sex is the act of stimulating a partner’s genitals or anus with your mouth and tongue. A blowjob, sometimes called fellatio, is a type of oral sex in which a person stimulates their partner’s penis with their mouth and tongue. It can include licking, sucking, kissing, or any other activity that involves the mouth.
+
+A blowjob, also known as fellatio, is when someone uses their mouth to stimulate their partner's penis. (Illustration: WebMD)
+
+Blowjobs, along with other types of oral sex, are often part of foreplay before vaginal or anal penetration. But you can give or receive a blowjob on its own, or during or after intercourse.
+
+Research suggests that most people have oral sex before their first experience with vaginal or anal penetration.
+
+Who can give and receive blowjobs?
+
+Any consenting adult can give a blowjob, whatever their gender or sexual orientation. Any consenting adult with a penis can receive a blowjob.
+
+What is it like to give or receive a blowjob?
+
+Sensations could range from discomfort to extreme pleasure, so focus on what feels good for both partners while you’re discovering oral sex. Keep in mind that each person's anatomy, smell, and taste are different, and so is what they find pleasurable. If you feel uncomfortable at any point, don’t be afraid to stop or change what you're doing, or to ask your partner to do so.
\ No newline at end of file
diff --git a/tests/data/txt/blog/Female Orgasm Types, Feeling, and How to Have One.txt b/tests/data/txt/blog/Female Orgasm Types, Feeling, and How to Have One.txt
new file mode 100644
index 0000000000000000000000000000000000000000..ff13b6d89346696d40373f2ff338ea23a221eb42
--- /dev/null
+++ b/tests/data/txt/blog/Female Orgasm Types, Feeling, and How to Have One.txt
@@ -0,0 +1,40 @@
+Female Orgasm: Types, Feeling, and How to Have One
+Adrienne Santos-Longhurst, How We Reviewed This Article
+None
+You can orgasm from stimulation to the clitoris, vagina, or cervix — or some combination of the three. You may also be able to orgasm from stimulating other areas of the body as well. “Female orgasm” is an all-encompassing term for any type of orgasm related to vulva and vagina. It could be clitoral, vaginal, even cervical — or a mix of all three. That said, your genitalia isn’t your only option when it comes to reaching the big O. Read on for tips on where to touch, how to move, why it works, and more.
+
+Clitoral orgasm Direct or indirect stimulation of the clitoris can lead to a clitoral orgasm. When you get your rub on just right, you’ll feel the sensation build in your pleasure bud and peak. Try this Your fingers, palm, or a small vibrator can all help you have a clitoral orgasm. Make sure your clitoris is wet and begin gently rubbing in an up-and-down, circular, or side-to-side motion. As it begins to feel good, apply faster and harder pressure in a repetitive motion. When you feel your pleasure intensify, apply even more pressure to the motion to take yourself over the edge.
+
+Vaginal orgasm Although few people can climax with vaginal stimulation alone, it sure can be fun trying! If you’re able to make it happen, prepare for an intense climax that can be felt deep inside your body. The front vaginal wall is also home to the anterior fornix or A-spot. Older research suggests that stimulating the A-spot can result in intense lubrication and even orgasm. Try this Fingers or a sex toy should do the trick. Since the pleasure comes from the vaginal walls, you’ll want to experiment with width. Do this by inserting an extra finger or two into the vagina, or try a dildo with some extra girth. To stimulate the A-spot, focus the pressure on the front wall of the vagina while sliding your fingers or toy in and out. Stick with the pressure and motion that feels the best, and let the pleasure mount.
+
+Cervical orgasm Cervical stimulation has the potential to lead to a full-body orgasm that can send waves of tingly pleasure from your head to your toes. And this is an orgasm that can keep on giving, lasting quite a while for some. Try this Being relaxed and aroused is key to cervical orgasm. Use your imagination, rub your clitoris, or let a partner work some manual magic. Your cervix is the lower end of your uterus, so reaching it means going in deep. The doggy-style position allows for deep penetration, so try being on all fours with a penetrative toy or partner. Start off slow, gradually working your way deeper until you find a depth that feels good, and keep at it so the pleasure can build.
+
+Combination or combined orgasm A combo orgasm may happen if you pleasure your vagina and clitoris simultaneously. The result: a powerful climax that you can feel inside and out. Try this Use both your hands to double your pleasure, or combine fingers and sex toys. Rabbit vibrators, for example, can stimulate the clitoris and vagina at the same time and are perfect for mastering the combo orgasm. Use parallel rhythms while playing with your clitoris and vagina, or switch it up with fast clitoral action and slow vaginal penetration.
+
+You can orgasm from other stimulation, too The genitals are awesome, but they’re not your only option. Your body is full of erogenous zones with orgasmic potential. Nipple According to a 2011 study, when stimulated, your nipples set your genital sensory cortex ablaze. This is the same area of the brain that lights up during vaginal or clitoral stimulation. Nipple orgasms are said to sneak up on you and then explode in waves of full-body pleasure. Yes, please! Try this: Use your hands to caress and squeeze your breasts and other parts of your body, avoiding the nipples at first. Move on to teasing your areola by tracing it with your fingertips until you’re turned on, then show your nipples some love by rubbing and pinching them until you reach maximum pleasure. Anal You don’t need to have a prostate to have an anal orgasm. Anal play can be pleasurable for anyone if you have enough lube and take your time. You can indirectly stimulate erogenous zones within the vagina using a finger or sex toy. Try this: Apply ample lube with your fingers and massage it around the outside and inside of the anus. Slowly and gently insert your sex toy or finger into your anus. Start with a gentle in-and-out motion, then move in a circular motion. Alternate between the two and pick up the pace as your pleasure builds. Erogenous zones Your body is truly a wonderland. The neck, ears, and lower back, for example, are rich in erotically charged nerve endings begging to be touched. We can’t say exactly which parts of your body will drive you to the brink, but we can tell you that everyone has erogenous zones, and finding them is worth the effort. Try this: Take a feather or silky scarf and use it to find your body’s most sensitive areas. Get naked and relax so you can focus on every tingle. Take note of these spots, and try experimenting with different sensations, like squeezing or pinching. Practice makes perfect, so take pleasure in these areas and keep at it to see how far you can go.
+
+Where does the G-spot come in? The G-spot is an area along the front wall of your vagina. For some people, it can produce a very intense and very wet orgasm when stimulated. Your fingers or a curved G-spot vibrator are the best way to hit the spot. Squatting will give you the best angle. Try this: Squat with the back of your thighs close to or touching your heels, and insert your fingers or toy into your vagina. Curl your fingers toward your belly button and move them in a “come here” motion. If you happen to find an area that feels especially good, keep going — even if you feel like you have to pee — and enjoy the full-body release.
+
+What happens in the body when you orgasm? Everyone’s body is different, and so are orgasms. Some are more intense than others. Some last longer than others. Some are wetter than others. What physically happens during orgasm is: Your vagina and uterus contract rapidly.
+
+You experience involuntary muscle contractions in other parts, like your abdomen and feet.
+
+Your heart rate and breathing quicken.
+
+Your blood pressure increases. You may feel a sudden relief of tension or even ejaculate.
+
+What makes a female orgasm different from a male orgasm? It may be surprising, but they’re not all that different. Both involve increased blood flow to the genitals, faster breathing and heart rate, and muscle contractions. Where they typically differ is in duration and recovery — also known as afterglow. Female orgasm may also last longer, ranging from 13 to 51 seconds on average, while male orgasm often ranges from 10 to 30 seconds. People with a penis typically have a refractory phase. Orgasms aren’t possible during this period, lasting from minutes to days. People with a clitoris may also go through a similar phase. A 2009 study involving 174 university students found that 96% of female participants experienced hypersensitivity in the clitoris following orgasm. Remember, the range of the refractory phase varies from person to person. Your own experience is unique to you. Then there’s ejaculation. For a person with a penis, contractions force semen into the urethra and out of the penis. And speaking of ejaculation …
+
+Is female ejaculation a thing? Yes! And it’s a fairly common thing. A 2013 research review of female ejaculation found that 10% to 54% of participants experienced ejaculation during orgasm. Ejaculation occurs when fluid is expelled from your urethral opening during orgasm or sexual arousal. The ejaculate is a thick, whitish fluid that resembles watered-down milk. It contains some of the same components as semen.
+
+What’s the orgasm gap? The orgasm gap refers to the gap between the number of male and female orgasms in heterosexual sex, where those with female genitalia are getting the shorter end of the stick. A 2018 study on orgasms in heterosexual newlywed couples found that 87% of husbands and only 49% of wives reported consistently experiencing orgasms during sexual activity. Why the gap? Researchers don’t know for certain. Some argue it could be biological, while others blame cultural and societal perspectives and a lack of education when it comes to pleasure.
+
+What can you try if you’ve never had an orgasm before? If you have a vulva and vagina, you know that real-life orgasms can be pretty different from what they show on TV. The first thing you should do is take the pressure off so you can enjoy yourself. Instead, take the time to get to know your body and concentrate on how it feels. You may find it helpful to: Get comfy somewhere you won’t be interrupted or distracted, like in bed or the bath.
+
+Try reading an erotic story or using your imagination to get yourself in the mood.
+
+Massage the fleshy area above your clitoris and the outer and inner lips of your vulva until you begin to get wet. You can also apply lube.
+
+Start rubbing your clitoris over the hood and find a rhythm that feels good.
+
+Rub faster and harder, increasing the speed and pressure to intensify the feeling until it releases. If you don’t orgasm, you can always try again. Trying new things is the best way to figure out what turns you on and how to orgasm.
\ No newline at end of file
diff --git a/tests/data/txt/blog/Female orgasm Everything you need to know.txt b/tests/data/txt/blog/Female orgasm Everything you need to know.txt
new file mode 100644
index 0000000000000000000000000000000000000000..1a3686a69e68bf0cca18df62e26ad152058f56ff
--- /dev/null
+++ b/tests/data/txt/blog/Female orgasm Everything you need to know.txt
@@ -0,0 +1,74 @@
+Female orgasm: Everything you need to know
+Zawn Villines, How We Reviewed This Article
+None
+A female orgasm can be a highly pleasurable experience during masturbation or sexual activity. While orgasms may not provide a direct reproductive benefit, the pleasure may help improve mood and relieve stress. In this article, we look at why female orgasms occur and what happens during an orgasm. We also debunk some common misconceptions.
+
+Causes Share on Pinterest honey and milk/Getty Images Orgasms are a response to sexual stimulation. The female orgasm can result from many types of stimulation, including vaginal, clitoral, and nipple contact. While vaginal orgasms are less common than those from clitoral stimulation, some women have them — with or without other stimulation. Not everyone orgasms from the same type of stimulation.
+
+What happens during an orgasm? During arousal, blood flow to the genitals increases, causing them to become more sensitive. As arousal increases, a person’s heart rate, blood pressure, and breathing rate may also increase. As orgasm approaches, the muscles may twitch or spasm. Many women experience rhythmic muscle spasms in the vagina during an orgasm. Orgasms may follow the following stages: excitement, during which arousal builds
+
+plateau, during which arousal increases and levels off
+
+orgasm, which causes intense feelings of pleasure
+
+resolution, during which arousal diminishes Many females can have another orgasm after resolution, whereas males usually require a period of rest before having another orgasm. A note about sex and gender Sex and gender exist on spectrums. This article will use the terms “male,” “female,” or both to refer to sex assigned at birth. Click here to learn more.
+
+What does it feel like? Orgamsms can feel different for all people, and they may report their experiences in different language. However, people typically experience intense feelings of pleasure in the genitals and throughout the body. The release of endorphins following an orgasm may cause people to feel happy and relaxed. The skin may also flush. Women may also experience vaginal contractions during and after an orgasm, and ejaculation is also possible.
+
+Why do females orgasm? The purpose of the female orgasm is less clear than that of the male orgasm. Researchers have suggested numerous potential benefits, but few have been rigorously tested, and no theory has conclusive scientific support. A 2016 study argues that the female orgasm may have no obvious evolutionary benefit and that it may be a relic of a time when the hormones associated with orgasm were necessary for a woman to ovulate. Since there was no evolutionary need to eliminate the female orgasm, it persisted even when it was no longer necessary for fertility. Orgasm may serve important purposes, however. The pleasure it can cause can encourage females to have sex. This may also promote bonding with a sexual partner, which does have significant evolutionary benefits.
+
+Health benefits While the internet is filled with articles promising that orgasms improve skin, hair, and overall health, there is little scientific evidence that orgasms offer any specific health benefits. Scientists have not identified any evolutionary benefits of female orgasms or found that orgasms improve health. But orgasms are pleasurable, and pleasure can be its own benefit. Pleasurable sex may improve a person’s mood, relieve stress, boost immunity, and foster better relationships.
+
+Common misconceptions People hold many misconceptions about female orgasms. Some myths include: Women who cannot orgasm have psychological problems. While trauma, relationship issues, and poor mental health can make it more difficult to orgasm, many people with healthy sexual attitudes and good relationships still have difficulties. An orgasm is both a physical and psychological response, and numerous health problems can make it more difficult to enjoy sex in this way. For example, some women experience vulvodynia, which refers to unexplained pain in the vagina or around the vulva. Treating this and other medical conditions may improve sexual pleasure. Orgasms from penetrative sex are common or the healthiest form of sexual expression. Self-appointed experts, mostly men, have long told women that they must orgasm from heterosexual intercourse. However, many women can only orgasm from clitoral stimulation. Women need to be in love to orgasm. Orgasm is a complex psychological and biological experience — reaching and experiencing orgasm is not the same for every woman. Some women may need to feel love to orgasm, while others may not. Studies found people were more likely to orgasm frequently if they: received more oral sex
+
+had longer-lasting sex
+
+reported higher relationship satisfaction
+
+asked for what they wanted in bed
+
+engaged in sexual emails or calls
+
+expressed love during sex
+
+acted out sexual fantasies
+
+tried new sexual positions A person’s relationship with their partner may or may not influence their ability to orgasm during sex. Sexual health resources Visit our dedicated hub for more research-backed information and in-depth resources on sexual health. A partner can tell if a woman has had an orgasm. There is no way to tell if a woman has had an orgasm without asking. Some people make noises during an orgasm, while others are silent. Some flush or sweat after an orgasm, but others do not. A person who wants to know if their partner has had an orgasm can ask without being confrontational. If the answer is no, avoid judgment, anger, or feelings of inadequacy — these can put pressure on the person to orgasm, which can lead to anxiety and make it more difficult. Instead, discuss whether they would prefer a different approach to sex.
+
+What if you can’t orgasm? Being unable to orgasm is a common issue, and it can occur for a variety of reasons. Some people may not receive the right kind of stimulation during sex, while others may have experienced trauma linked to sex. Others may simply be uninterested. Risk factors A 2018 analysis identified several factors that increase the risk of sexual dysfunction, including: relationship problems
+
+stress
+
+mental health issues
+
+poor physical health
+
+genitourinary issues, such as pelvic pain
+
+a history of abortion
+
+a history of female genital mutilation
+
+sexual abuse
+
+being religious, perhaps due to sexual shame and stigma The same study identified several modifiable risk factors that improve sexual experience, including: exercise
+
+daily affection from a partner
+
+a positive body image
+
+sex education
+
+intimate communication with a partner Increasing the likelihood The aforementioned study that compared orgasm frequency among people of various sexual orientations in the United States found that the following behaviors during sex increase the likelihood of women having an orgasm: deep kissing
+
+genital stimulation during vaginal intercourse
+
+oral sex Seeking help If self-help strategies do not work, a doctor who specializes in sexual dysfunction may be able to identify a problem, if there is one. Many medical issues can make having an orgasm difficult, including: a lack of lubrication
+
+hormonal imbalances
+
+pelvic pain
+
+muscle dysfunction
+
+a history of trauma When trauma or relationship problems make having an orgasm difficult, or when a person feels ashamed of sex or their desires, individual or couples counseling can help.
\ No newline at end of file
diff --git a/tests/data/txt/blog/Female orgasms Different types & how to climax.txt b/tests/data/txt/blog/Female orgasms Different types & how to climax.txt
new file mode 100644
index 0000000000000000000000000000000000000000..b972d6417b6d190b13b5a763a73740b470f4e21a
--- /dev/null
+++ b/tests/data/txt/blog/Female orgasms Different types & how to climax.txt
@@ -0,0 +1,54 @@
+Female orgasms: Different types & how to climax
+Medically Reviewed
+None
+What is a female orgasm?
+
+First things first, you might be curious about what an orgasm actually is . And there’s a fairly simple top-line answer: It’s one of your body’s responses to reaching the height of sexual arousal (or being turned on).
+
+“During orgasm, the uterus and muscles of the pelvic floor contract in a rhythmic fashion that is pleasurable for most women,” explains Dr. Brandye Wilson-Manigat , obstetrician and gynecologist (OB-GYN), California, US. This can feel like throbbing, twitching, tensing, or spasms in your vagina and anus. “Some women report a sensation of their whole body being involved in the contractions.”
+
+Orgasms don’t just happen out of the blue. They can feel like a buildup of pleasure and sexual tension. And that’s because orgasm is just one part of your body’s sexual response cycle . Prepare for some sexy science now; there are different phases when you’re feeling frisky.
+
+Desire: Having the urge to be intimate with a partner or alone. Your heart rate might quicken, and the blood flow to your vagina will increase. This pushes fluid to the surface of your vaginal walls, giving you the sensation of being wet.
+
+Excitement or feeling turned on: Your heart rate, breathing, and blood pressure will continue to increase, and you might notice that your clitoris and labia (the inner and outer lips of your vulva) start to feel more sensitive.
+
+Orgasm: This is the big O. The muscles in your vagina, uterus, and anus will contract (it might feel like a squeezing sensation), and you might feel a quick release of sexual tension.
+
+Resolution: This is when your heart rate, blood pressure, and breathing return to normal, and you might notice a warm feeling of well-being or satisfaction.
+
+Did you know that no two orgasms are the same? They can vary in length and intensity (but more on that below).
+
+What happens during female orgasms, and what does it feel like?
+
+Trying to explain what an orgasm feels like to other people can be really tough. We rarely have anything that we can compare our own orgasms to, and like falling in love, people often say you “just know” when you’ve had one. You might even notice that climaxing feels different to you each time. This is totally typical and healthy.
+
+"Orgasms can feel different, even if you are stimulating the same spot in the same way,” says Dr. Wilson-Manigat. “Some are more like a ‘fireworks on the Fourth of July’ sensation. Your whole body feels like it’s at a celebration. Others may feel like a slow burn, giving you a warm, satisfying sensation.”
+
+While it might feel like all the action of your orgasm is taking place in your genitals, there’s a lot going on in your brain, too. When you orgasm, your brain releases a surge in dopamine , the feel-good hormone. This helps you to recognize what you enjoy and gives you that sense of pleasure. Your brain also releases oxytocin . This is sometimes called the bonding hormone because it triggers a sense of love and attachment.
+
+Sounds pretty amazing, right? This surge in happy hormones is just one reason why reaching the big O is good for you. Keep reading to find out why.
+
+What are the different types of female orgasms?
+
+You might have heard your friends talk about an amazing nipple orgasm or an intense anal orgasm and wondered whether these are different types of orgasms. Here’s your answer: This is actually a little bit of a myth. “When people say there are different types of female orgasms, they usually mean which erogenous zone was stimulated for orgasm,” explains Dr. Sara Twogood , obstetrician and gynecologist, California, US. “It’s not that the orgasm itself is different; it’s the way the orgasm is achieved is different.”
+
+So let’s break that down. If you stimulate different parts of your body, you might reach orgasm. Areas that can help you to orgasm are:
+
+Clitoris: According to a survey published in the Journal of Sex & Marital Therapy , around 36% of the 1,000 women they spoke to said they needed some form of clitoral stimulation in order to orgasm. You can see part of your clitoris just above the opening of your vagina. It pays to know where your clitoris is, so you can learn more about yours here.
+
+Vagina: This is when you climax during vaginal penetration. A study found that only 18% of female orgasms come from vaginal stimulation.
+
+Anus: You might experience an anal orgasm while having the outside of your anus touched.
+
+Erogenous zones: You have erogenous zones all over your body. These are places where it feels really good to be touched. Some erogenous zones include your breasts, lips, neck, and thighs.
+
+No matter where you’re being touched, if you reach orgasm, your body responds in the same way. But it’s so important to remember that there’s no “right” type of orgasm — we all experience sexual pleasure in different ways. It’s very healthy to explore what you like either on your own or with a partner you trust.
+
+Where does the G-spot come in?
+
+In your conversations about orgasms, you might have heard about the elusive G-spot, or the Grafenberg spot to give it its full name. Did you know that you might be able to feel your own G-spot? It’s thought to be inside your vagina on the upper wall . It swells when you’re feeling aroused and can feel bumpy, a little bit like a walnut.
+
+Some people believe that you can reach orgasm by stroking and pressing on the G-spot. However, that’s still not certain where scientific evidence is concerned. In fact, some research has suggested that the G-spot doesn’t even exist and that it’s just part of the structure of the clitoris that’s inside your body. To learn more about your anatomy and the way your body works, you can download an app like Flo.
+
+There’s no denying that the G-spot is a hotly debated topic. But when it comes to getting intimate with a partner or having fun alone, you don’t need to worry too much about pleasure politics. If you’ve found something that makes you feel good, then keep going.
\ No newline at end of file
diff --git "a/tests/data/txt/blog/How to Give a Blow Job \342\200\224 42 Blow Job Tips From Experts.txt" "b/tests/data/txt/blog/How to Give a Blow Job \342\200\224 42 Blow Job Tips From Experts.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..f149e66480a360e52d770ca0cdae1057e4a10b18
--- /dev/null
+++ "b/tests/data/txt/blog/How to Give a Blow Job \342\200\224 42 Blow Job Tips From Experts.txt"
@@ -0,0 +1,280 @@
+How to Give a Blow Job — 42 Blow Job Tips From Experts
+
+2024-04-09 20:13:00+00:00
+We may earn commission from links on this page, but we only recommend products we love. Promise.
+
+“Fellatio.” “Slobbin’ on the knob.” “Head.” “Sloppy toppy.” Blow jobs go by many a name. But whatever you call it, the most important thing to know about sucking dick is that it is a goddamn artform—a creative endeavor, a finely crafted skill. In the immortal words of our lord and savior Samantha Jones: “They don’t call it a job for nothin’.” And while this definitely doesn’t mean that BJs are all work and no play, it does mean that learning how to give a blow job takes time, practice, and some knowledge of what the hell you should even be doing down there.
+
+Hence why we’ve graciously compiled this expert list of blow job tips, tricks, and must-know info for anyone who is looking to hone their BJ craft, whether you’re getting ready to take your very first trip to D-town or have been knob-slobbing for years (because yes, there’s always more to learn). Hello and welcome to Blow Jobs 101.
+
+Related Story I Hooked Up With a Frat Bro on a Washing Machine
+
+But before we get into all the details, let’s make sure we’re all clear on the basics. For the uninitiated, a blow job refers to “the act of oral sexual stimulation of the penis,” says sex therapist Danielle Simpson-Baker, MA, MFTI, a member of The Pulse, a panel of experts for The Honey Pot Company. “To give a blow job, you basically place the head or tip of your partner’s penis in your mouth and start moving your head up and down the shaft.” says Simpson-Baker.
+
+Intimacy educator Taylor Sparks, founder of , adds that a blow job “can include licking of the entire shaft and/or sucking on the penis while also stroking it with your hands.”
+
+Related Story Your Guide to Every Type of Vibrator Out There
+
+As for why people love blow jobs, board-certified sex educator Linnea Marie says that, for the receiver, the pleasure is twofold. “They are feeling the stimulation in a highly pleasurable erogenous zone due to the abundance of nerve endings in the penis,” she says. “Visually, the pleasure also comes from watching the person perform.”
+
+And while the act of giving a blow job may not be as physically stimulating as receiving one, there is still plenty of pleasure to be had for the BJ-giver. “Many enjoy the feeling of power and control associated with pleasuring their partner,” Marie says. Just because it’s a job doesn’t mean you can’t absolutely love going to work.
+
+Speaking of which: Yes, blow jobs SHOULD BE FUN—and not just for the receiver! The number one, most important blow job tip we can offer anyone is that enthusiasm is key. The more fun you’re having, the more fun your partner will have.
+
+“The key to giving enjoyable head is to enjoy giving head,” says sex educator Lucy Rowett. “Focus on what you like about giving your partner pleasure—pay attention to what feels good to you.”
+
+Related Story Everyone Wants to Bang a Hot Guy With a Mustache
+
+Most importantly, if you don’t feel like giving a blow job, then don’t! Again, sexual pleasure (of all varieties) should be a two-way street. If you’re not into it, don’t do it. Simple as that.
+
+Now, allow us to present your complete guide to giving a blow job, featuring 42 expert tips, tricks, and things to know about performing the fine art of the BJ. Buckle up and prepare to blow some minds (and, you know, some penises) with your expert-level oral sex skills.
+
+Related Story Here’s How Much You Can Make Selling Feet Pics
+
+1. Set the mood.
+
+Don't worry, you don’t have to bust out some heels and mood lighting every time you give a blow job. But if you feel confident and sexy going into the experience, the overall vibe will just be hotter. To heighten your own enthusiasm, sexologist Goody Howard suggests playing a little background music. “You want to pick a song that makes you feel powerful, beautiful, and desirable,” she says. “And then you want to perform oral sex to the rhythm of the song. You can even hum some of the lyrics into the penis. It also helps you keep a rhythm for your breathing, which helps support gag reflex control.”
+
+2. Don’t be afraid to make eye contact.
+
+“There is a misconception that you have to close your eyes to show you’re ‘into it’ when giving a blowjob,” says Tara Suwinyattichaiporn, PhD, host of the Luvbites With Dr. Tara podcast. “I think that making eye contact during a BJ is way more impactful and sexier than closing your eyes the whole time.”
+
+To be fair, there’s a lot going on during a BJ, so don’t feel obligated to incorporate eye contact into the mix if you’re not feeling it. But if you’re into it, glancing up at your partner and holding that gaze can definitely add an extra layer of intimacy, connection, and/or eroticism.
+
+3. Don’t do it if you don’t want to.
+
+For our friends in the back, allow us to make this very loud and very clear: You do not owe anyone a blow job. "Blow jobs should be given enthusiastically—and it'll show if you're just not into it. Skip it if it's not your thing,” says Simpson-Baker.
+
+You do not even owe it to yourself to give someone a blow job for the sake of trying it out if you don’t want to. If you don’t want to go down on someone (or perform literally any sexual act, for that matter), don’t do it. Full stop. End of story.
+
+4. Moan!
+
+“When you're sucking, if you're enjoying it, moan with pleasure,” says Rowett. “The vibrations from your moan will add to the pleasure that your mouth and tongue is giving.”
+
+Again, we know there’s a lot going on, so if moaning is just not in the cards, we hear ya. That said, if you have the capacity, some well-placed (and genuinely felt) moaning can definitely enhance the experience for everyone involved.
+
+Related Story Why Moaning During Sex Is So Damn Hot
+
+5. You don’t have to deep-throat if you don’t want to.
+
+Okay, so deep-throating can absolutely be enjoyable for both the giver and receiver. That said, it is definitely *not* required when it comes to giving head. Honestly, you might as well consider deep-throating and blow jobs to be two different sex acts entirely.
+
+“Don't feel obligated to deep-throat. You will be temporarily cutting off your airway, so if this isn't something you want to do, don't feel like you have to,” say Simpson-Baker. “Some partners don't even enjoy it because it can be too intense or even painful, so ask if they're into it first.”
+
+6. Ask what they like.
+
+Everyone's different when it comes to sexual preferences, so if you're unsure what to do, Velvet Co. sexpert Julieta Chiara suggests simply asking.
+
+"What works for one person will not for the other, so getting down to the core is key," she says. You can ask in a sexy way so that it feels like part of the whole event, instead of just asking for directions. Try something like, "I want to suck your dick. How do you want me to do it?" Watch their eyes light up and their penis jump to attention as they give you a play-by-play of exactly what they like.
+
+That being said, if you’re not vibing with their suggestions or if whatever they’re asking for makes you uncomfy, you can always say no. Stewart says you have to be able to express your needs just as well as you can internalize theirs. And TBH, you never have to give anyone a blow job if it’s not your style. Just be straightforward with your partner about your boundaries.
+
+7. Take some of the pressure out of it.
+
+Deciding to give someone a blow job is a certified Big Deal. But that doesn't mean you have to take all the fun out of it. Instead of worrying about giving the perfect blow job, just be in the moment. Laugh if something silly happens. Take breaks for sips of water. Make jokes. Relax. Remember, this is about connecting and enjoying—not about putting on a porn-worthy performance.
+
+8. Be all kinds of vocal.
+
+Moan, groan, ooh, and ahh. Hell, even throw in a gurgling sound if the mood strikes you. The point is, don't be afraid to make noises or slurpy sounds—it's not only hot, but the vibrations from your mouth will do wondrous things to their peen.
+
+“Channel your inner porn star,” Howard suggests. “Exaggerated moaning and sucking and slurping gives an amazing sensation to the penis, and the vibration from slurping adds layers to the pleasure for the receiving partner.”
+
+Also, dirty talk is a great way to not only turn up the heat on the situation but give your jaw a rest, explains sex expert Kenneth Play . Stare into your partner's eyes and say something along the lines of, "you taste so good," "you feel so good in my mouth," "can I suck it harder?" Whether or not you actually do suck it harder doesn't matter, because they'll instantly be closer to coming.
+
+Related Story How I Became a “Daddy” Girl
+
+9. Pillows are your friend.
+
+Your comfort is key! “Don't be afraid to take breaks,” Stewart says. Do you need a neck pillow? Do you need a different position that's going to help you do the job better? “Don't be afraid to say what your needs are in this situation.” Whether you buy a pillow specifically for sex (yes, sex pillows are a thing) or you grab one off of the bed, pillows are one of the most underrated additions to oral. Not only can you put them under your knees if you're giving a kneeling blow job, but you can use them to prop up your partner's hips, which takes some of the neck strain off of you and provides new sensations for them and new positions for you to try.
+
+Related Story I Tried Those Mouthwatering Mints From TikTok 👀
+
+10. Use lube.
+
+Why would you need lube when you have a mouthful of spit? Because spit dries up quick and lube makes everything better. Not only will it keep things slippery, but if you give your mouth a break and use your hand, it'll speed up the process and prevent you from getting lockjaw. Opt for a flavored lube that doesn’t taste like a takeout bag and enjoy the fact that you can suck a dick that tastes like strawberries. The joys of modern sex additives!
+
+11. There is no wrong way to give a blow job.
+
+You should just get that out of your head now because, hi, everyone has different tastes, preferences, likes, and wants, which means it’s going to vary for every person you’re with.
+
+
+
+“Different people prefer different techniques, and there’s no way to know about their favorite unless you ask or listen to their reaction,” says clinical sexologist Rachel Sommer, PhD, co-founder of My Sex Toy Guide.
+
+12. Take the assist!
+
+“Feel free to use toys to save your mouth some work. A mini wand, bullet vibrator and/or a fleshlight could be a great addition to a BJ,” says Simpson-Baker.
+
+And, oh hi, what’s this? A literal sex toy specifically designed to make blow jobs easier for the giver and better for the recipient? Yep, it’s the oral stroker from Cake, which, per co-founder and CMO Mitch Orkis, essentially “extends your hand and wrist so you don’t need to go all the way to the base as the giver. Plus, it still creates the suction feeling so the receiver feels good.”
+
+Related Story Oral Sex Toys That Feel So Close to the Real Thing
+
+13. It’s okay to be intimidated.
+
+If you haven’t logged much face-to-penis time, the thought of shoving one in your mouth might be a touch overwhelming. That’s totally normal. But if you want to experiment with blow jobs and just don’t quite know how to begin, Stewart and Howard both recommend getting in some dress rehearsals before hitting the main stage.
+
+“Take a class or three, get familiar,” Stewart says. Howard runs an oral sex workshop called “LICK!” in Dallas, Texas, which she says is her “fantastic fellatio workshop that teaches how to add toys to performance and even reach orgasm while giving head.” Not in Dallas? Sex educators in most major cities run similar workshops. Give it a Google.
+
+If a workshop isn’t your style, Stewart suggests buying a dildo. “The more you're familiar with the type of anatomy—even though it might just be a toy as opposed to a penis—it's important just to have the practice and to be familiar so that you're not going in there totally clueless.”
+
+And of course (~shameless plug~), you can also check out Cosmo's very own 4-Week Oral Sex Challenge, where we unpack the do's and don'ts of giving and getting oral sex down to the nitty gritty. You'll be a pro by the end, trust.
+
+Related Story Our 4-Week Oral Sex Challenge Is Right This Way
+
+14. Don’t just stroke your partner's penis, stroke their ego.
+
+Trust, the mental and emotional build-up to an orgasm is almost as hot as the actual thing. This means that, yes, if you are looking at this blow job as if it’s a chore, your partner will know you’re not into it. "Use this time to focus on catering to your partner,” says clinical sexologist Valon Alford , owner of Vitality Wellness Solutions. “Your endgame is for your partner to feel like their pleasure is the most important thing in the world.”
+
+Similarly, Stewart says oral sex can be a way to communicate admiration between partners. And if it’s something that you really love to do, it’ll show—and it’ll be so appreciated. “It’s important that you're savoring the moment and not rushing,” she adds.
+
+15. Appeal to all of their senses.
+
+Alford confirms: “Appealing to the five senses (touch, sight, sound, smell, and taste) is a great way to turn on your partner and set the mood.” She suggests something as little as burning a nice aromatherapy candle or wearing that perfume your partner loves. Rub their back or squirt some whipped cream in their mouth while you're going at it. Get creative to put their senses in overdrive.
+
+A blow job is “not only about the experience itself, but also about the visual aspects, that's sexy for the receiver,” Stewart says. What kinds of sounds are you making? Add some mmm’s to show how much you’re enjoying the experience. Throw in some dirty talk, or just some dialog and feedback. Check in with other parts of your body—can you rub up against your lover's body as you're giving head? “I think all of those things are important as well,” she says.
+
+16. Don’t limit the blow job to the penis only.
+
+There are tonnnns of pleasure spots on the body you can stimulate. One I highly, highly recommend you get familiar with is the perineum—the area between your partner’s scrotum and anus. “It is highly sensitive because it is home to a lot of nerve endings. Giving this area a little attention can intensify pleasure,” says Alford. She recommends using your tongue or index and middle fingers to apply pressure there.
+
+
+
+17. Your mouth might get dry.
+
+Whether you have dry mouth from nerves, allergy or prescription meds, or even just drinking alcohol prior (which can dehydrate you), dry mouth is supes common and you can find a way to deal with it! A little prep never hurt anyone—keep some chewing gum or sour candies by your bedside to help nudge your salivary glands into production, as ob-gyn Wendy Askew, MD, previously told Cosmopolitan.
+
+
+
+You can also prep, like, way beforehand too. If you love giving head but your dry mouth is cramping your style, invest in some Xylitol-based mouthwashes specifically designed for dry mouth, like Biotene or Smart Mouth Mouthwash. Xylitol mouthwashes (remember, stay away from alcohol-based as it can cause dryness) actually helps stimulate saliva production and retain better moisture in the mouth, according to Dr. Askew.
+
+18. You don’t have to gag just to make spit.
+
+
+
+Some people choose to make themselves gag to produce more spit. But if gagging freaks you out, that makes actual physiological sense. According to Jarrett Manning, DDS , an Atlanta-based dentist, “The body’s response to deep-throating is similar to that of gagging, which is a defense mechanism preventing swallowing or choking.”
+
+
+
+Basically, “when these areas in the back of your throat get triggered in such a way, the stimulation goes from your nerves to your brain’s medulla oblongata, which happens to be located near the other areas of the brain that cause you to get teary eyes and produce excess saliva.” AKA, there’s kind of a medical reason it might work, but you’re legit like, hitting the “PANIC” button in your brain to get there. So you can weigh the pros and cons.
+
+19. Not everyone can orgasm from a blow job.
+
+Stewart emphasizes that not everyone will orgasm from a blow job, and that’s totally fine. While movies, books and TV shows might make it seem like blow jobs are the holy grail and The Ultimate Thing that all penis-owners want 24/7, some people aren’t crazy about them, and others like them (or even love them) but they just don’t lead to orgasms.
+
+If you’re going at it for ages and nothing’s happening, and your partner's like, “Yeah, I might not finish from this since I rarely can,” do not take it personally. Trust that they know their body better than you can and try to just enjoy the moment without being so goal-oriented, Stewart recommends.
+
+Related Story I Hooked Up in an Iconic London Telephone Booth
+
+20. You don’t have to kneel if you don’t want to.
+
+There’s a time and place for kneeling blow jobs and there’s also a time and place to be like, “Fuck it, I want to be comfortable and keep movement from where I am right now to a minimum.” If you try changing up your position so you sit next to them, not in front of them, you can change the sensation for your partner, show off your ass, and you might find that it just makes things comfier for you on the whole.
+
+21. Go ahead and make it about you too!
+
+Bringing a vibrating toy into things can make giving head even hotter. You can use one hand to hold it while you’re kneeling and sort of sit on it for maximum control.
+
+To cum while you’re going to town on your partner, San Francisco–based sex expert, therapist, and co-founder of the Somatica Method of sex Celeste Hirschman , MA, suggests lying on your back with your partner on their knees. Turn to the right to give them a blowjob while they finger you. For extra pleasure, use a vibrating toy on yourself. Watching one another experience the shared pleasure can be a massive turn-on for both you and your partner.
+
+22. Just because they’re quiet doesn’t mean they don‘t love it.
+
+This is a problem among people with penises, many of whom seem to have been told, at some point, to literally never exude enthusiasm in sex. If your partner’s silence is weirding you out, tell them so! Positive feedback is helpful for BJ novices and experts alike.
+
+23. Yes, you can give a blow job in the shower.
+
+Most shower sex is difficult to impossible—the literal black diamond of sex locations. But oral sex is both doable and enjoyable in the shower. Have your partner stand out of the jet stream (so you can be in it) and go to town after you’ve watched them wash their bod.
+
+24. Play with the balls.
+
+But don’t do it without first asking if your partner is into that. And then follow that question up with, “And how do you like your balls played with?” Because what people who don’t have them don’t know is that apparently, they’re very sensitive! So don’t go yanking away without warning.
+
+Hirschman’s tip for playing with balls: “Kneel between [your partner’s] legs and use one hand on the shaft and the other to gently pull and caress the balls.”
+
+25. Incorporate some butt play.
+
+Once again: Ask your partner if they like butt play before you venture into unknown territory. And then if they give you the all-clear, ask again what kind of play they like. If they don’t know, check out some of these beginner anal play tips and work from there. This also tends to speed up blow jobs, which, you know, might be a good thing.
+
+
+
+Related Story Anal Foreplay Tips for All of You Booty Lovers
+
+26. You can get STIs from blow jobs.
+
+Which is why wearing condoms during oral is a good idea, especially for new, non-monogamous partners. There are plenty of flavored varieties if the taste of latex isn’t really your thing.
+
+27. Get creative and be playful.
+
+Bring some toys (vibrators feel good on penises, too!) into the mix, or try some flavored lubes. Take a play from Samantha Jones’s book and have them stand in front of a mirror. It can be super hot to watch yourself get it on (why do you think sex tapes are a thing??). Use that over-the-door mirror you’ve had since freshman year of college for dirty purposes and position yourselves in front of it while you go down on your partner.
+
+Hungry? Howard suggests adding some fruit roll ups (yes, you read that right) into your sexy repertoire. Instead of using the whole thing all at once, which could take a while to work your way through, cut that fruity goodness into three sections and wrap one of them around the middle of the shaft. “This will give you an incentive to get more penis in your mouth and you won't be sucking dick for like, a whole week,” she says.
+
+28. Don’t skip foreplay.
+
+For some people, blow jobs are foreplay that leads up to other stuff. For others, they’re the main event. Whatever the case may be, you can blow their freakin’ mind and detract minutes from the amount of time their D is in your M by teasing your partner pre–blow job. Get them all worked up by kissing their hips and thighs, then their shaft. Breathe on the tip of their dick, lick it lightly. Flirt with it! Not only does it feel great for them, but it’s fun for you and it can cut down on the amount of time you’re actually sucking and straining your jaw.
+
+29. Don’t worry about what you look like.
+
+Have you ever seen anyone eat a really big popsicle? Like, put their whole dang mouth around it (which, ouch, brain freeze)? It’s not a dainty sight! And that’s okay. When you’re giving a blow job, you’re not supposed to look super composed and photo-ready. Your mouth is on your lover’s genitals. They’re gonna think you look hot no matter what.
+
+30. It doesn’t have to be all about them.
+
+Ever heard of something called sensate focus? It’s a sex therapy technique in which you focus on touch and the physical pleasure it brings you, and you can totally use it to ease blow job anxiety or just ~mix it up~ a little. Basically, instead of doing what you think you’re supposed to do to make them feel great, employ blow job techniques that feel fun and exciting to you. Oral sex doesn’t have to be as one-sided as its reputation would imply.
+
+31. Strategize to get it really wet.
+
+I mean, there’s pre-ejaculate, but that’s like a light rain shower when a proper BJ usually requires a torrential downpour. Drink some water and be prepared to use all the spit you can muster. Don't be afraid to literally spit on their penis if things get dry. It’s not gross. This is someone you make out with (probably), and trust me, they'll think it's hot.
+
+
+
+32. You can do it lying down, too.
+
+In movies and TV shows, the only BJ position ever depicted is someone on their knees, bobbing their head back and forth while their partner stands up like a statuesque Greek god. This is so rare IRL! You don’t have to invest in knee pads like Stephanie from seventh grade said you would! Stephanie lied to you. Just get on the bed and do it lying down. It’s comfier!
+
+33. Swallow if you want (or don’t!).
+
+No shade to the folks who like the taste and feel of cum in their mouth, but for some people, the sensation is icky. That doesn’t mean your partner’s not a total babe and you aren’t mega attracted to them—it just means the two of you should figure out an alternative cum route. Maybe they orgasm on your chest? How about into a tissue or towel? Chat about it with your lover to find a solution that you both think is delicious and sexy.
+
+34. Use your hands.
+
+Howard would like to remind you that your hands are an incredible BJ asset that can be used at the same time as your mouth, and also in moments when your mouth needs a break. “There are no awards for the best Bluetooth head. You know, hands-free? Use your hands and stroke the penis while performing oral sex,” she says. “Especially when they get ready to cum. You can stroke the penis and angle it away from your mouth and take that time to focus on the testicles.”
+
+Additionally, Stewart says using tools like can make it easier for someone with hand issues or arthritis.
+
+Related Story 16 Cowgirl Sex Positions That'll Make It Your Fave
+
+35. Be mindful of your teeth.
+
+But don’t stress about it. There are an inordinate number of horror stories about people who accidentally use their teeth during a BJ and, like, skin their partner's dick with their razor molars or something. This is not—I repeat, not—a regular occurrence. Have some awareness of where your teeth are in relation to their penis so that you avoid causing them any pain or discomfort, but don’t let it get to your head (or either one of theirs).
+
+36. Sometimes a penis doesn’t smell good, and that’s okay.
+
+I don’t think anyone expects a hard penis to smell like Chanel perfume or a strawberry Lip Smacker, but some people have a stronger scent than others. Anyone’s crotch area can get sweaty and pungent. If you’re concerned about your partner’s smell or hygiene, kindly suggest a sexy shower together before any mouth-to-genital action.
+
+37. Use your tongue.
+
+It’s not the strongest muscle in your body for no reason, okay?! Tongues are sexy as hell, and the chances are high that your partner’s going to want to see yours in action as you lick the living daylights outta their phallus. While giving head, play around with tongue shapes: Wide and flat on the shaft and tight and pointy on the tip are two good places to start.
+
+Hirschman suggests licking their shaft while holding eye contact, and tickling your tongue across the shaft as you go up and down.
+
+Also, you can use your tongue to trick them into thinking they're all the way in your mouth, like magic, if magic were sexier. Just either tuck their penis underneath your tongue or use your tongue to block the back of your throat (this also protects your delicate gag reflexes just in case).
+
+38. Blow jobs are great, but they can take time.
+
+Although people do seem to love them, it’s not something that begins and ends in a matter of seconds (usually). These things can be a lot of work, especially if you’re down there for, like, 15 minutes. You can quit whenever you want though—never feel like you’re dropping out of a race early.
+
+39. Porn has some decent pointers.
+
+Sex ed should definitely be better in this country, but I really doubt we’ll ever have gym coaches teaching good blow job decorum in front of a bunch of confused teenagers. And that’s probably for the best? Anyway. People don’t tend to f*ck IRL like they do in porn, but sometimes those close-up shots of someone ferociously sucking a D can serve as good little tutorials on how to move your head. Just don’t attempt deep-throating if you’re not very experienced.
+
+Once you’ve gotten your porny techniques down, Hirschman recommends trying to create some suction, kind of like a vacuum, right when you feel the tip of their dick get the hardest. “This creates an extremely powerful orgasm,” she says.
+
+40. Literally no one can deep-throat without gagging.
+
+I vaguely remember some girl in ninth grade telling me that all grown women literally swallow lidocaine or the stuff in those Orajel swabs before giving a blow job so they don’t gag on a dick. Don’t do this! Don’t drink lidocaine! No! If you’re worried about gagging or throwing up on someone you like, the solution is to just not deep-throat a penis.
+
+41. You do not have to give a BJ just to get head in return.
+
+If someone refuses to go down on you because you don’t like giving BJs, or for literally any other reason, they suck (except lol, they don’t suck, hahaha get it?). This is the epitome of thank u, next. There are tons of people out there who are going to love the idea of going down on you, so go find them!
+
+42. You’re still good in bed, even if you don’t like blow jobs.
+
+Blow jobs are great and fun and lots of people love them, but if they’re not your thing, that’s totally fine. BJs are just one option on an endless menu of sexy stuff you can do with another person. Blow jobs can be super hot and build lots of juicy intimacy, but they’re not the end-all-be-all if you don’t want them to be. Trust your gut (and your gag reflex) and you can’t go wrong.
\ No newline at end of file
diff --git a/tests/data/txt/blog/How to Make a Woman Orgasm, According to Research.txt b/tests/data/txt/blog/How to Make a Woman Orgasm, According to Research.txt
new file mode 100644
index 0000000000000000000000000000000000000000..5ac2ab80f4f592228dff3136a40674951f315a0b
--- /dev/null
+++ b/tests/data/txt/blog/How to Make a Woman Orgasm, According to Research.txt
@@ -0,0 +1,77 @@
+How to Make a Woman Orgasm, According to Research
+Julia Naftulin, Julia Naftulin Is A Health Reporter With A Focus On Sexual Health, Psychology, Public Health. Her Work Can Be Found At Insider, Health, Verywell Health, Health'S Editorial Guidelines, Renita White, Md, Is An Obstetrician Gynecologist At Georgia Obstetrics
+None
+Scenes in movies and television typically depict women's pleasure as their partners only needed eight seconds before the woman finds herself on the brink of an orgasm.
+
+But in reality, a woman's orgasm is much more than that. In fact, there are many different ways that a woman can orgasm.
+
+A clitoral orgasm is any orgasm that results from clitoral stimulation. In contrast, a vaginal orgasm is any orgasm that results from vaginal penetration. Sometimes, women can achieve orgasm by combining vaginal and clitoral stimulation. But an orgasm isn't always necessary to enjoy sex.
+
+Also keep in mind that although a majority of people who have vaginal and clitoral orgasms are women, anyone with those body parts can achieve those types of orgasms.
+
+Here's what you should know about a woman's orgasm, including how a woman can achieve an orgasm.
+
+Understanding Women's Orgasms
+
+The truth is that the nature of a woman’s orgasm has been a source of scientific, political, and cultural debate for a long time. Researchers have tried to understand how women reach orgasm. It turns out that women can achieve an orgasm in several different ways.
+
+Women commonly orgasm due to clitoral stimulation, also known as a clitoral orgasm. Other women orgasm from stimulation of regions inside the vagina, such as the G-spot, the cervix, or a combination of the two. The G-spot is on the front wall of the vagina, about halfway between the vaginal opening and cervix.
+
+Also, women can achieve those types of orgasms by masturbation or intercourse with one or more partners. But for some women, even if sex is enjoyable, orgasm can be difficult.
+
+The Right Touch
+
+According to one study published in 2018 in the Journal of Sex and Marital Therapy, women achieve orgasms in different ways. But also, most women need some level of hands-on touching to climax during sex. The type of touch—the rhythm, motion, and pressure—varies widely.
+
+In the study, the researchers surveyed over 1,000 women between 18–94. The researchers asked the women how much touching they needed to orgasm and what exact strokes produced the most pleasure, among other questions.
+
+Clitoral Orgasm
+
+While clitoral orgasms may be one of the most accessible types of pleasure, women prefer different types of touch to climax.
+
+
+
+Direct Clitoral Stimulation
+
+According to the 2018 study, 37% of women said they need clitoral stimulation to orgasm. In contrast, 36% of women said clitoral stimulation isn't necessary. But those women noted that clitoral stimulation makes the experience pleasing.
+
+Also, when it comes to specific motions, the researchers noted the following findings:
+
+Two-thirds of women said they prefer up-and-down motions directly on their clitoris.
+
+Fifty-two percent of women reported enjoying direct circular movements.
+
+One-third of women preferred direct side-to-side strokes.
+
+The majority of women reported preferring light to medium pressure on the vulva. In contrast, 11% of women preferred firm pressure.
+
+Indirect Clitoral Stimulation
+
+Two-thirds of women reported enjoying indirect clitoral stimulation. Sixty-nine percent of women said they preferred touching the skin above the clitoral hood. Also, about 29% of women said they preferred being touched with the labia pushed together.
+
+Additionally, 20% of women favored indirectly touching the skin on the right side of the clitoris, while 19.2% of women chose the skin on the left side.
+
+Orgasm via Penile and Digital Intercourse
+
+Penile-vaginal intercourse (PVI) is the most common heterosexual behavior in the United States. While many women participate in PVI, they do not always achieve orgasm.
+
+In fact, the 2018 study found that only 18% of women said that vaginal penetration, penile or digital, alone was enough to reach orgasm. Some experts refer to that as a gender-based orgasm gap during partnered sex.
+
+One study published in 2021 in PLoS ONE surveyed 3,017 women aged 18–93. The researchers asked the women about how they make vaginal penetration pleasurable. The researchers reported the following findings:
+
+About 88% of women reported experiencing pleasure during penetration by “angling.” That move involves rotating, raising, or lowering the pelvis or hips during penetration to adjust where the penis rubs inside the vagina.
+
+Three-quarters of women said “rocking” the base of a penis, so it rubs against the clitoris constantly during penetration, increased pleasure.
+
+Nearly 84% of women often orgasm or increase their pleasure through “‘shallowing.” That move involves a penetrative touch just inside the vaginal entrance with a fingertip, sex toy, penis tip, tongue, or lips
+
+About 70% of women found it pleasurable when their partner paired penetration with clitoral stimulation.
+
+
+
+A Quick Review
+
+While there's no formula for the perfect orgasm, research has found that some types of touch are more popular than others. Also, there are many ways to enhance pleasure during sex that may help you orgasm.
+
+Try experimenting and show your partner what you like to find out which type of touch works best for you. Also, maintain an open dialogue with your partner about the type of touch you like.
+
diff --git a/tests/data/txt/blog/Oral Sex_ 36 Tips, Techniques, Positions for the Vagina, Penis, Anus.txt b/tests/data/txt/blog/Oral Sex_ 36 Tips, Techniques, Positions for the Vagina, Penis, Anus.txt
new file mode 100644
index 0000000000000000000000000000000000000000..9e2853b2ded7813368407a89aabd0e96db1307e8
--- /dev/null
+++ b/tests/data/txt/blog/Oral Sex_ 36 Tips, Techniques, Positions for the Vagina, Penis, Anus.txt
@@ -0,0 +1,54 @@
+Oral Sex: 36 Tips, Techniques, Positions for the Vagina, Penis, Anus
+Adrienne Santos-Longhurst, How We Reviewed This Article
+None
+Oral sex involves stimulating a partner’s erogenous zones with your mouth. Certain practices along with open communication may make the experience more pleasurable for both partners. Share on Pinterest
+
+First things first Rest assured that, even if it’s your first dive, chances are you’ll be fine — everyone starts somewhere! But we want to make sure you’re more than fine, because life’s too short for oral that’s just meh. After all, if you’re gonna go down, you should do it right. Here’s what you need to know about the giving and getting of oral sex, plus all of the fun and even practical stuff in between.
+
+Let’s set the record straight Before getting down to nitty, let’s talk about the gritty. Yes, oral sex is “real” sex Forget what you heard from Clinton or anyone else about what sex is and isn’t. Penis-in-vagina sex is not the be-all-end-all of sex. Oral sex can be just as pleasurable — if not more so — than penetrative sex. Your anatomy is unique Vulvas and penises come in all shapes and sizes, so try not to spend any time worrying about how yours compares to someone else’s. Vulvas rarely look like a perfectly juicy peach, and penises aren’t usually eggplant emoji-big or smooth. Everyone has a smell of some kind Scrub all you want, but you’ll still have some odor down there. It’s called your natural odor, and it’s fine. That said, freshening up before oral sex is just the nice thing to do. To keep things fresh: Take a shower or bath, or at least use soap and water to wash your genital area.
+
+Use a wet paper towel or unscented wipes if you need to freshen up on the fly.
+
+Avoid perfumes or deodorants down there because they aren’t genital-friendly or necessary. And everyone has a taste You know whose genital juice tastes like cookies and cream? No one’s! We all have a taste down there. As long as you’re healthy and on top of your hygiene, you should taste fine. If you’re still worried about funky spunk, tweaking what you eat may improve the taste of your juice. Avoid garlic, onions, asparagus, and cabbage, which reportedly make for a less-than-pleasant flavor. To sweeten your sauce, try eating: pineapple
+
+papaya
+
+nutmeg
+
+cinnamon
+
+celery
+
+Oral screening should be a regular part of your care plan If you’re sexually active, you probably know that regular STI screening is important. But did you know that you should be getting regular oral exams, too? Your dentist can inspect your mouth to check for sores, lumps, or other abnormalities that could be a sign of an STI. Oral exams are also used to check for signs of oral cancer. Certain strains of HPV can cause oral cancer. You should see your doctor or dentist for at least one screening a year. See your provider right away if you’re experiencing unusual oral symptoms or suspect that you’ve been exposed to an STI.
+
+If your partner has a vulva Common Qs Do you really flick the clit? You can! Lightly flicking the clit with your tongue can be a nice way to mix things up and build pleasure. Think soft puppy tongue licking an ice cream cone — not woodpecker destroying a tree. Should you insert your tongue or keep things penetration-free? That’s up to the person you’re going down on. Some people find the mere idea of being tongued hot AF, but fewer nerve endings in the opening means less sensation. If they like it then go to town. What if they’re on their period or pregnant? If they consent and you’re cool with it, too, then go for it. Things can get messy, so focusing on the clit is probably the better way to go. Know that blood can have an odor and a metallic taste. A dental dam can help if you’re squeamish. Technique Try this: With your tongue flat, lap long strokes over their underwear until you get the fabric — and them — wet. When they’re ready for tongue-to-skin action, spend a little time licking the fleshy mound above the clit. Show the inner thighs some love, too. Lay your wet tongue flat at the bottom of their vulva and lick your way up. Repeat. Flex your tongue and use the tip to lick tiny circles over the clitoral hood — the little flap of skin over the clit. Use your fingers to gently pull the hood upward so you can focus the tip of your flexed tongue on the clit. Start with light pressure and speed and gradually ramp things up. When you get into a groove that they love, keep at it to take them over the edge. Positions With a little determination and imagination, you can turn pretty much any penetrative sex position into an oral sex position. But to save you the neck cramps, we recommend these oral-friendly positions: Lie Back and Enjoy. Have them lie on their back with a pillow under their butt and legs apart while you lie or kneel in between with your face in the muff of it all.
+
+Have them lie on their back with a pillow under their butt and legs apart while you lie or kneel in between with your face in the muff of it all. Control Freak. Lie on your back and have them straddle your face while facing you so they control the moves and pressure — and watch you work for it.
+
+Lie on your back and have them straddle your face while facing you so they control the moves and pressure — and watch you work for it. Almost 69. They get to straddle your face again, only this time they’re facing your main attraction and can return the favor in the way of some 69 action. Safety and cleanup The best barrier method you can use when giving oral to someone with a vulva is a dental dam. This is a thin latex barrier that you place over the vulva. You can order dental dams online or use a condom to create an alternative. Do a quick wash up before and after oral sex with soap and water or gentle wipes and you’re both good to go.
+
+If your partner has a penis Common Qs What should you do if they’re uncircumcised? There’s not much difference in technique as far as circumcised vs. uncircumcised. If you start off with a hand job, let the foreskin move up and down with your hand. When you’re ready to get licky with it, gently pull the foreskin downward to expose the head. Do you have to deep throat? Nope, not unless you want to. Not going deep isn’t going to make or break an oral sesh. You can totally fake it by placing the tip of your tongue on the roof of your mouth and sucking as much as you’d like without an unexpected gag. Should you spit, swallow, or keep ejaculate out of the mouth entirely? That’s something to discuss with your partner beforehand, but you don’t ever have to do anything you don’t want to do. If it’s a visual turn on for your partner, having them finish on your closed lips or chin — or wherever you’re comfortable with — should do the trick. Technique Give these moves a try: Start by using the tip of your tongue up and down the base of their shaft, pausing to circle it around their head.
+
+Show the underside of the shaft some love and then lightly flick the frenulum — the little wrinkle of skin where the shaft joins the head — with the tip of your tongue.
+
+Lap up the entire length and repeat. Bonus points if you let them hear how much you enjoy doing it.
+
+Hold the base of their shaft and take the rest in your mouth, then slowly slide up and down while sucking lightly.
+
+Pick up the pace as their pleasure builds. Positions Again, with some imagination you can get your blow on in just about any position. Try giving these a go: Open Wide. Lie on your bed with your with head near the edge and open wide while they stand with their head facing your feet and penis over your mouth.
+
+Lie on your bed with your with head near the edge and open wide while they stand with their head facing your feet and penis over your mouth. Sit and Suck. One chair, two ways. Have them sit on the chair while you kneel before them and take matters into your mouth, or you do the sitting while they stand with their legs on either side of the chair while you lean in.
+
+One chair, two ways. Have them sit on the chair while you kneel before them and take matters into your mouth, or you do the sitting while they stand with their legs on either side of the chair while you lean in. Laidback Lovin’. By far the most comfortable BJ position ever and perfect for those lazy morning blow jobs. While they’re on their back, lie on your side and use their torso as a pillow while you use your mouth and hands. Safety and cleanup We’ve got two words for you: flavored condoms. Seriously, if you’re going for the safe blow job, flavored condoms reduce your risk for STIs while giving you something tasty to suck on. As for cleanup, a shower before and a wipe up after does the trick.
+
+If your partner wants a rim job Common Qs Aren’t you going to get poop in your mouth? We aren’t gonna lie — it’s a possibility. Washing with a soft cloth and soap and water is usually enough to get rid of the traces of feces that linger in the anus. What do you do if there’s hair back there? No biggy. Just go with it, unless they want their bum shaved, but that’s a hole — er, whole — other article. Should you insert your tongue or keep things penetration-free? It’s all about your comfort level. You absolutely shouldn’t stick your tongue anywhere that you don’t want to. If they’re open to it, fingers and butt plugs can do the penetrating for you. Technique Try these start-to-finish moves: Start by licking and kissing their cheeks for a moment.
+
+Lay your flat, relaxed tongue just below the hole and slowly lap up and down.
+
+Point your tongue and use the tip to run circles around the hole, starting with little pressing and getting firmer and faster as their pleasure builds.
+
+If you’ve agreed on penetration, now’s the time to do it by gently inserting a tongue, finger, or sex toy into the anus.
+
+Continue to use your tongue on or between the cheeks or the perineum until they’re satisfied. Positions Doggy style is a rimming fave. It gives you equal control over the pressure and movement to find what works best for both of you. To do this, have them get on all fours while you kneel behind. They can rest their head on a pillow and lift or lower their bottom to meet your mouth. Safety and cleanup Dental dams, tongue condoms, or a regular condom used as a dam will all work for safe rimming. Trimmed nails and clean hands are also important if you’re going to use your fingers in or around the anus. A thorough cleaning of the area in the bath or shower using gentle soap and water is sufficient, but the recipient can also use an enema if they want to. Once you’re done, you can use an oral rinse or brush your teeth if you’d like. Washing your hands and face are probably a good idea, too.
+
+General tips Now that you’ve got the moves, here’s some final advice. Use these tips to make oral sex everything. Ask your partner Asking questions is key for making any kind of sex the best it can be. Be sure to ask for their clear consent before getting started. Asking what turns them on isn’t only helpful, but can also act as foreplay. Questions during oral are cool, too, so don’t be afraid to ask if something feels good while you’re doing it. Use your breath It’s hot and kinda moist, so of course it’s going to feel ah-mazing on their skin. Linger an inch above their skin and let your hot breath tease them into a frenzy. Make some noise Let them hear how much you’re enjoying what you’re doing. Moans, spitting, and slurping — it’s all good! Lock eyes Eye contact while you’re going down is sexy AF. It’s also a great way to gauge your partner’s reactions to your moves so you know what’s working and what isn’t. Put your hands to work Don’t be shy with those hands! Use them to spread the labia for better access to all the nooks and crannies, or to work the shaft like a pro while swirling your tongue around their head. Explore other areas Use your mouth, hands, or sex toys to explore their other erogenous zones during oral play to take it to another orgasmic level. Add lube to the mix Sure, your mouth is plenty juicy, but lube is fun for everyone! Flavored lubes can make oral sex tasty and can make hand action or toy play even better. Take it to the edge Edging, also called orgasm control, is the ultimate tease and the way to toe-curling orgasms. You work your magic to bring them to the edge of climax and then stop for about 30 seconds before starting up the stimulation again.
\ No newline at end of file
diff --git a/tests/data/txt/blog/Orgasm & Female Orgasm How many types of orgasm are there.txt b/tests/data/txt/blog/Orgasm & Female Orgasm How many types of orgasm are there.txt
new file mode 100644
index 0000000000000000000000000000000000000000..bbec5a5b260544b2cca36fd287b9fcf3c440fc8a
--- /dev/null
+++ b/tests/data/txt/blog/Orgasm & Female Orgasm How many types of orgasm are there.txt
@@ -0,0 +1,104 @@
+Orgasm & Female Orgasm: How many types of orgasm are there?
+
+None
+Top things to know about female orgasms:
+
+There are multiple types of female orgasm
+
+Stimulation of the clitoris is probably the easiest way for most people to experience an orgasm.
+
+Not all orgasms are the same, and can experienced differently every time depending on how our mind and body feels at that time
+
+Orgasms are difficult to study. Similar to studying mood or pain, female* orgasms need to be interpreted through not just biological mechanisms but also psychological, sociological and historical trends.
+
+Historically, in Western countries, female orgasms have been highly scrutinized. Orgasms were sometimes seen as unhealthy or wrong. And orgasms that are achieved through stimulation that is not heterosexual vaginal intercourse have been considered unacceptable by researchers and doctors (1,2).
+
+The viewpoint that some orgasms were superior to others has been supported by healthcare professionals. Sigmund Freud popularized the idea that mature women experience vaginal orgasm while immature women enjoyed clitoral stimulation (1-3).
+
+The importance of vaginal orgasm became so rooted in 20th-century health that an inability to reach orgasm through heterosexual penetrative sex became part of a diagnosable condition in the DSM III (i.e. psychology and psychiatry’s diagnostic book) (4).
+
+Although most healthcare professionals no longer consider inability for penetrative sex to induce orgasm to be a problem (unless their patients are distressed by it), many people feel that orgasm is a requirement for happy, meaningful and/or fulfilling sex (2). Some people also feel that orgasms should be reserved for sex, as opposed to experiencing orgasm during masturbation (1). Orgasm is great, but feeling pressure to have an orgasm, or a certain type of orgasm at a certain time, can make sex stressful and unpleasant.
+
+What kind of research is there about orgasms?
+
+The historical and social aspects of orgasm can obscure research as researchers may bias respondents’ answers by asking questions that imply that an orgasm type exists.
+
+Relatedly, there is a disagreement among some sex researchers about how to classify orgasms (3,5). For example, if stimulation of a non-genital body part causes the genitals to become aroused and the person experiences an orgasm, did the stimulation of the non-genitals cause the orgasm, or was it the arousal of the genitals that caused the orgasm?
+
+Even if a researcher were to do a study using tools that measure arousal, this doesn’t avoid all problems.
+
+People with female genitals have been shown to experience arousal in their genitals but not report arousal to researchers, suggesting that bodily arousal is insufficient indicator of sexual interest or pleasure (5).
+
+Compounding researcher problems are problems of gathering participants for sex and orgasm studies. Enrolling participants in a study is always tricky, but when someone studies a topic that is potentially considered taboo or private, it can be difficult to ensure that your sample is representative of all people in all cultures (this is also called external validity). It also may be difficult for participants to accurately remember or know where and how they were stimulated to cause orgasm (5).
+
+So, why talk about orgasms at all?
+
+Given the large amount of social and media commentary on orgasm, it’s important to understand how our bodies and the bodies of our partners actually work so that we can help reduce stigma and stress during sex. In the process, we may learn a thing or two on how to make sex more enjoyable.
+
+What are the different types of female orgasms?
+
+Different types vs different stimuli
+
+There are many pop-science articles (i.e. articles not published in a research journal) that claim there are anywhere from four to 15 different types of orgasms. As mentioned before, there’s a lot of debate as to how to classify female orgasms. However, there’s little evidence to support the idea that different stimuli reliably (i.e. repeatedly, under experimental conditions) cause different types of female orgasms or different intensity of orgasms. Most people report that “some orgasms are better than others” (6), but this doesn’t necessarily seem to be related to the stimuli that cause that orgasm.
+
+Clitoral stimulation
+
+The clitoris contains a bundle of nerve endings and is located in the front of the female vulva and under the clitoral hood (i.e. the triangle part of female genitals that connects to the labia) (3). The clitoris, similar to a penis, will swell, enlarge and become more sensitive as a person becomes more sexually aroused (3,5).
+
+Stimulation of the clitoris is probably the easiest way for most people to experience an orgasm.
+
+In a 2017 study of over 1,000 women from the US, about 7 out of 10 people who had heterosexual sex said that they required clitoral stimulation to orgasm during that sex or that clitoral stimulation improved orgasms even if they didn’t require it to orgasm (6,7).
+
+The type of clitoral stimulation preferred varied among the women in the study, though many women reported enjoying direct clitoral stimulation and stimulation that involved making circles or “up-and-down” movement (6).
+
+That being said, there was a wide diversity in answers regarding how and in which ways a person liked having their clitoris stimulated, with even a few people saying they didn’t like direct contact at all (6).
+
+Vaginal stimulation
+
+A vaginally-stimulated orgasm is an orgasm that occurs through intentional stimulation of only the vagina. Although the clitoris or other body parts may be accidentally touched in the process, to have a “vaginal orgasm" there would be no intentional stimulation of other body parts.
+
+In the same study described above, less than 1 in 5 women reported being able to orgasm through vaginal stimulation without clitoral stimulation (6).
+
+The ability to orgasm from only vaginal sex may be related to the G-spot, though that is up for debate. The G-spot is not well understood (5,8,9). The G-spot may be its own structure, but it has also been argued that the G-spot is actually a retracted or enlarged clitoris or is a set of nerve endings attached to the clitoris (5,8,9). It’s also argued that the G-spot doesn’t exist at all (3,5). Regardless, there isn’t evidence to suggest that an orgasm from penetration-only is somehow superior to other forms of orgasm; in fact, intentional clitoral stimulation may make orgasm better than penetration-only orgasm (6).
+
+Stimulation of other body parts
+
+There is less research into orgasms caused by stimulation of body parts that aren't the genitals. Because many of these studies are small and aren’t all recent (10), the proportions of people reporting these types of orgasms may not be representative of the rate we would find in a large, representative survey. That being said, these studies do suggest that people don't necessarily need to directly stimulate their clitoris or vagina to experience an orgasm.
+
+Some studies have found that people can experience orgasm through stimulation of the mouth, nipples, breasts, anus, and skin surrounding an injury (6,10).
+
+Research with participants who have severe injuries to the spinal cord and with participants who have epileptic seizures suggest that there are orgasmic experiences that may be induced without direct incorporation of the genitals (10).
+
+Orgasms outside of sex
+
+Arousal of the genitals and even orgasm itself aren’t necessarily just experiences that happen during sex.
+
+Exercise-induced orgasm
+
+Exercise, especially weight training, cardio, and abdominal-focused exercise, can induce orgasms (sometimes called coregasms in pop-science) and other positive genital stimulation (11). This makes sense biologically, as both exercise and sex can stimulate the muscles around the genitals and can lead to increased blood flow to the area of the body. Exercise may also influence our mood via endorphins and other neurotransmitters (12), similar to sex and orgasm (13).
+
+Orgasms during sleep
+
+Many people experience sexual arousal or orgasm during sleep (10). It’s difficult to say what or how exactly this happens. Because reporting from dreams can be unreliable, it’s difficult to say if all arousal and orgasms during sleep are caused by sexual dreams (10,11). Similarly, no research has currently looked at whether people were unconsciously stimulating their bodies during sleep or were being stimulated by bedding or other objects, so we’re not currently able to say if orgasms during sleep happen entirely unaided from stimulation (10).
+
+Better orgasms
+
+The goal of many orgasm-themed articles is to help people enjoy their orgasm or gain new experiences. Although there’s little evidence to suggest that orgasm from any particular type of stimulation is better than another, there are some suggestions in the literature on factors that increase or change our orgasmic experience. In the published literature, people reported that orgasms and sexual arousal were enhanced by:
+
+“spending time to build-up arousal” (6)
+
+changing the intensity of touch, including stopping and restarting—this technique could help lead to a delayed and more pleasurable orgasm (6)
+
+being with a partner who they had a connection with or that knew their bodies (6)
+
+touching or stimulating nipples, breasts, or the anus (6,10,14),
+
+engaging in new positions, types of sex, or new behaviors (6,15)
+
+A happy sex life
+
+Although portrayals of orgasm in media, partners’ expectations for our orgasms, and our own interest in experiencing orgasm can make us feel like we need to have an orgasm every time we have sex (2), a happy sex life doesn’t necessarily mean having a mind-blowing orgasm during every sexual experience. Many people report that not all orgasms are the same (6), which makes sense—our minds and bodies change from day to day (due to mood, health, stress levels, etc.), and so it’s unrealistic to expect any type of stimulation to elicit the same experience every time. Orgasm is just one of many important elements to sexual satisfaction.
+
+*Note: This article uses the term female and male to refer to cis-gendered sexual anatomy. A person with entirely or partially female genitals may or may not be female as their gender, and a person with entirely or partially male genitals may or may not be male as their gender. There are also people with a mix of both male and female genitals, but unfortunately not a lot of research has been done with this population. I’m using the terms male and female to describe sexual organs because there is little agreement on other terms to use.
+
+Article was originally published May 20, 2018.
\ No newline at end of file
diff --git a/tests/data/txt/qa/(18F) Sexual activities and physical development.txt b/tests/data/txt/qa/(18F) Sexual activities and physical development.txt
new file mode 100644
index 0000000000000000000000000000000000000000..59baac972c05d9fa529820842d6238893596a3cf
--- /dev/null
+++ b/tests/data/txt/qa/(18F) Sexual activities and physical development.txt
@@ -0,0 +1,5 @@
+A: You're old enough to make the decision for yourself whether or not you are ready. If you feel ready then move forward, if not it's okay to wait.
+Q: Hi, this is an embarrassing question to ask but I would like to get people’s advice. I’m 18f, recently started college as a freshman. My physical development/puberty is very delayed and I basically have little to no changes still. It is something that I feel insecure and embarrassed about. Will I be able to have sexual activities in college? Or do I have to wait till I develop? How should I explain my situation to potential partners?
+A: You’re of the age of sexual maturity and capable of consent. If you want to have sex you can absolutely have sex.
+A: You are an adult. You can start having sex whenever you want to. You are absolutely not the only person who is not sexually matured at your college. Just because you are not at the same stage as your peers does not mean you cannot have sex with them if you both want to. You will absolutely find people who are not sexually attracted to you, but you will also find people who are. You can have sex or you can wait- just because you are in college does not in any way mean you need to start having sex or that there is some ticking clock regarding your virginity. Some people wait until much later in life to have sex. Some people start much younger. You do what you want.
+A: Have you consulted a Dr about your puberty progression? Would expect any girl to be investigated that has no signs of puberty by age 13 and/or no periods by age 15. With regard to sex the only issue may be discomfort as oestrogen is important for increasing vaginal secretions.
diff --git a/tests/data/txt/qa/(18m) semen leaking and extreme arousal problems.txt b/tests/data/txt/qa/(18m) semen leaking and extreme arousal problems.txt
new file mode 100644
index 0000000000000000000000000000000000000000..0288b0b9f6288bd9744fe21cc34713774eaacb83
--- /dev/null
+++ b/tests/data/txt/qa/(18m) semen leaking and extreme arousal problems.txt
@@ -0,0 +1,5 @@
+Q: Hello, i (18m) face a problem with my semen and arousal in global and its getting kinda embarrassing (sorry if the flair is wrong or anything its my first time posting here) first the semen problems, so its been a year that i have a problems with leaking precum i always have a load of precum in my underwear, i change it often but it still makes me feel dirty, is there any way to stop that or is this bcuz im young and im producing a lot of cum so its normal? and i also noticed that my cum is very white, and im cumming some big quantities but it never gets watery or translucid, its very thick, is this good or it could be a problem and why does it don’t get watery or translucid? about the arousal problems, i sometimes cum hand free without even wanting it or watching porn, i just get aroused and then i get hard and cum completely hand free, it feels good but its hella weird, why do i get aroused this much? sorry if there is a lot of questions but im curious, idk if these things happen bcuz i am young and i my sex drive is high or if it is a real problem. thank you for taking the time to read 🙏🏽
+A: Do you take stimulants like Adderall because sometimes that can make you leak precum and be Hella horny how often do you jerk off and drink more water I wouldn't be to worried maybe see a doctor at a sex clinic just sounds like your super horny and super sensitive
+A: In general terms, when aroused, pre-cum is normal. Hence the old saying “the kettle spits before it boils” hehehe
+A: For what it’s worth, there is very large cohort in the world of specific fetishes/kinks who literally worship this skill and often are themselves aspiring to learn the skill of achieving a “hands free orgasm”. So, how do you do it?
+A: Embrace it and find someone who likes it. When I was younger I had the same attitude that you had. Eventually you’ll grow out of it.
diff --git a/tests/data/txt/qa/(f) I think I have a smelly butt.txt b/tests/data/txt/qa/(f) I think I have a smelly butt.txt
new file mode 100644
index 0000000000000000000000000000000000000000..ad07942fbf4646176ac530a796d0bb199917d8f4
--- /dev/null
+++ b/tests/data/txt/qa/(f) I think I have a smelly butt.txt
@@ -0,0 +1,6 @@
+Q: Sorry if I go into too much detail haha but I have a smelly butt I think. Not really poop smelly but more like sweaty, musky, buttcrack smelly. Sometimes it smells like absolutely nothing though or just body odor with no butt smell. I can’t really control when it smells like what and I have no idea what causes it. What could this be? I’d feel a little self conscious with a partner from this so it’s a pretty big deal for me.
+A: Honestly, what your describing sounds completely normal? Sweat, body odour, and muskiness are surely always going to happen. Same with armpits (though probably not a good idea to put deoderant there lol)
+A: Ohh OP do you think others peoples butt smell like roses? 🙈
+A: Shower and dry it properly.
+A: Install a bidet on your toilet. Cheap. Easy. Amazing. You'll never feel cleaner. Amazon
+A: Ass smells like ass most of the time unless you’re freshly showered so it’s all good, if it bothers you that much, just take some wipes with you and when you’re with a partner you can freshen up quickly
diff --git a/tests/data/txt/qa/26m having difficulty maintaining erection when penetrating.txt b/tests/data/txt/qa/26m having difficulty maintaining erection when penetrating.txt
new file mode 100644
index 0000000000000000000000000000000000000000..5f27d528d0073c50abe560c31d57c8aba486b17c
--- /dev/null
+++ b/tests/data/txt/qa/26m having difficulty maintaining erection when penetrating.txt
@@ -0,0 +1,4 @@
+Q: I've recently been having major issues when it comes to my sex life. A couple months ago I became intimate with a friend after a decent dry spell. I have no problems getting an erection but when I penetrate or get close to penetrating my penis starts getting flaccid(either staying big but flimsy or outright losing the entire erection). We tried a couple more times on other ocassions and it kept happening. I'm a pretty decent looking guy and don't have issues meeting girls that want to have sex although I don't usually try to get laid hence the dry spell, but now my confidence is gone and I avoid these interactions even more because it is really embarrassing for me. I can have boners while masturbating or even pre penetration it is big. I don't seem to have any hormonal or health issues. I will mention that I am a frequent masturbator and usually masturbate once or twice a day and sometimes can go up to 5. Most of the time without porn. I thought this might be the issue but online I can only see how masturbation doesn't affect ED symptoms. I really need help since I'm currently dating a girl and I know she wants to have sex. We've slept together but I made the excuse that I didn't have condoms so that we only played around. I don't want to disappoint her but I also don't know how I can fix this. Considering that I can get erections it might mean that it is only psychological but in that case what can I do? Any help is accepted.
+A: Sounds like your issue is mainly psychological. You have Performance Anxiety, not necessarily ED. That basically means that every time you go to have sex, you get anxious about not having an erection which puts your body into a sympathetic state, or "fight or flight", which means you can't get an erection. To get an erection you need to be relaxed and in the parasympathetic state. Unfortunately, every time you have this experience, it reinforces in your mind and you expect it to happen the next time. So your body makes you anxious, you don't stay hard, and it becomes a self fulfilling prophecy. You basically need to break that thought cycle. This is best done with a sex therapist or sex coach, but there are plenty of education materials out there. If you google Performance Anxiety on YouTube, you'll see some. There is also an app called Mojo which is created with the help of psychologists to be a self directed support program.
+A: Not saying this is you or your issue - however, masturbating frequently to porn can cause similar symptoms. Needless to say, cutting significantly back on masturbating as well porn could do wonders for your sex life. It seems counterintuitive.
+A: Kegels exercises can train the slow twitch muscle fibers in the penis and pelvic floor that are used to maintain an erection and provide stamina. The additional stamina could provide confidence to avoid anxiety. For information about this, go to Google, and search for “sexknowledgegap” (be sure to enter as a single word and include the double quotes in the search text). In the search result web page, there is a menu (vertical lines on a cell phone or a list of items on the PC) item, “Ejaculating Too Soon”. Select it, and look for the “Info on Kegels” section. Numbered references to YouTube videos on Kegels seen there are available in the “References” menu item.
diff --git a/tests/data/txt/qa/43F can't orgasm anymore.txt b/tests/data/txt/qa/43F can't orgasm anymore.txt
new file mode 100644
index 0000000000000000000000000000000000000000..0550a7811d3c66095746eaadc8bfb9daac29eb28
--- /dev/null
+++ b/tests/data/txt/qa/43F can't orgasm anymore.txt
@@ -0,0 +1 @@
+Q: I can't seem to cum anymore. I 43F, for the past year, have been struggling with sex. I don't get aroused, have low libido and general dislike sex at the moment. I want to be able to have multiple orgasms again, what the hell happened? Now I can't even orgasm with masturbation. I'm begining to not like sex because of it. This started a year ago. After a few months I saw my doctor about it. She recommend a pelvic floor specialist and ran some tests for perimenopause which came back normal. The pelvic floor specialist said nothing is wrong. And I'm stuck wondering if, after 8 years of use, is my anti depressant medication causing this? I wouldn't think so. So reddit, I have talk therapy scheduled for January (soonest available). Until then, what can I try to get my sex life back?
diff --git a/tests/data/txt/qa/A stranger has videos of me on his phone.txt b/tests/data/txt/qa/A stranger has videos of me on his phone.txt
new file mode 100644
index 0000000000000000000000000000000000000000..2fd58c5e2819eeacb881bb41b766c0420a619dfe
--- /dev/null
+++ b/tests/data/txt/qa/A stranger has videos of me on his phone.txt
@@ -0,0 +1,7 @@
+A: hi, um there is really not much you can do in this situation, he has it on his phone now and you can never know what has really happened regarding those videos the best you could probably do is probably report it to authorities. i get it is a very embarassing to do so but it is all you can do, you could probably anonymously file a report. it is illegal to have someone else's nudes, so depending on how the law in your country is.. that is probably the best bet
+A: You're getting some kind of mean responses here, it might be one for r/legaladvice ? I think this has the potential to fall under revenge porn legislation but it might depend on if the images/video are posted online or shared. Good luck.
+Q: What would you do if you hooked up with someone and they left before deleting the videos taken during sex and now they blocked you everywhere? Has this ever happened to anyone here and what can I do about it? He had a domination vibe since our first chat and the plan was basically for him to "own" me all weekend so when he started recording right before my orgasm and promised to delete it before he left, I just let it happen. Then he recorded again when I was giving him a BJ and again promised he’d delete it so I just went with it. But then instead of staying all weekend as planned, he left while I was sleeping. I heard him leave too and woke up, but he told me he had an emergency and I wasn’t awake enough to think about the videos! Now he’s blocked me on all the apps we used to use. This seems like a very open minded sub so please don’t judge … but if my ex finds out about this, I’m definitely losing our custody battle. What can I do in this situation? I don’t really know much about him, not even his last name or address. I was just trying to do something fun for once and now I just feel so stupid
+A: Honestly, put it down to experience and don't make the same mistake again... people can be really hateful at times, and you should never put something so damaging in someone else's hands. If I were a woman, I'd have to be in a committed relationship that I feel is going somewhere before I'd video myself. As an average slung man I would never have the confidence to video myself 😅
+A: You've now learned a valuable life lesson: Don't arrange a weekend of sex with a complete stranger and give them permission to record said sex acts. There's nothing you can do now, I'm sorry. But the whole custody concern is pretty damn far fetched at the moment.
+A: I can't give any legal advice, especially since I don't know where you are located, but where I live, distributing the videos he took would be illegal without your permission, and he could potentially face prosecution. Not sure if it could impact a custody case, but it seems like a very flimsy reason to deny custody, considering the videos were never even meant for distribution, and if they were distributed, it would be a case of someone committing a crime against you by doing so.
+A: This is just one of those life lessons - don’t trust strangers too much. It’s unfortunate that this happened and he’s certainly acting badly. It could be that he does it regularly to make amateur/cam footage type porn and makes some money off it. You may want to keep an eye on porn sites to see if any new videos have been uploaded, but it’s like finding a needle in a haystack. The good news is, it will be similarly difficult for anyone else to find your videos specifically. Do you have screenshots of his dating profile? You could check with the police if they’ve had similar reports from other women of him doing this. If he is a criminal, someone might have reported him. But it’s also very possible he’s just a dickhead and he’s using the videos as an ego trip to jerk off to or show off or his buddies for bragging rights. Basically, it’s unlikely this will bite you in the ass but I understand how upsetting it feels. He’s an awful human being and you’re right to be hurting. When meeting new people for sex it’s always a good idea to get to know them first and if you do hook up, retain full control during sex for the first few times. Bondage and any other activities where you are being made physically vulnerable should only be undertaken with someone you’ve established a high level of trust. This is the way it goes in the BDSM communities as well to minimise bad experiences, and over time you will start recognising red flags in people’s behaviours to weed out the bad actors.
diff --git a/tests/data/txt/qa/Accurate reason for him to go throw up mid sex.txt b/tests/data/txt/qa/Accurate reason for him to go throw up mid sex.txt
new file mode 100644
index 0000000000000000000000000000000000000000..856444246436d17c1c2f68141870c3a0421f12ed
--- /dev/null
+++ b/tests/data/txt/qa/Accurate reason for him to go throw up mid sex.txt
@@ -0,0 +1,6 @@
+Q: This is going to be an odd question and TMI, so here's to sex mentions... I'm a girl who had sex with a man tonight, and it was great! When he was close to finishing, he went crazy intense and needed a second to breathe so he changed the position. This guy then pulled out of me, let out a burp, and I could tell from the body language he was about to throw up. I ran downstairs, he went to my bathroom and got sick. I have a severe phobia of throwing up, so please don't joke about this! He claims it's because his diet for the past three days has just been beer and pizza. Like, he ordered 3 jumbo pizzas on Friday and he ate all three boxes over the weekend, had 7-10 slices a day along with getting drunk every night. Besides this, he told me last time we met he gets chest pains during sex. But the throwing up was so out of nowhere and unexpected! Gross I know, just wondering how legit this sounds to you guys? I have no concerns about me being a factor here, I know I wasn't! But after a few days of drinking, around 9-10pm the next night, is this possible? He was great and lively after, even horny for the next hour since he didn't finish and finished right as he got home. I'm just here hoping to death it's not a stomach bug since we made out. TIA, I just need to ease my mind.
+A: That diet sounds like a recipe for disaster during any activity, let alone sex
+A: High blood pressure / his heart can't take the exercise/excitement. Absolutely possible after a drinking binge and unhealthy eating binge, your body is basically looking for excuses to spit everything out. I hope this is an eye-opened for the guy to start fixing his life.
+A: Definitely accurate. His stomach is full of simple carbs, grease and ick, then he's added fizzy liquid and give it all a good mix up when he was going for it, the result is a volcano exploding 🤷♀️🤢🤮
+A: Poor dude lmaooo totally possible
+A: Lol sucks for him. But I guess we make choices. That much pizza, that much beer. Yup. That's a good sign he doesn't take care of his body and probably pretty out of shape too. The only time I've thrown up from exercise is being bag skated during hockey tryouts. Haha. Sounds to me dude needs to get his shit together.
diff --git a/tests/data/txt/qa/Advice in a long term relationship.txt b/tests/data/txt/qa/Advice in a long term relationship.txt
new file mode 100644
index 0000000000000000000000000000000000000000..446463cb5443e3296bff9a74ce955aaf4d67b1dc
--- /dev/null
+++ b/tests/data/txt/qa/Advice in a long term relationship.txt
@@ -0,0 +1,3 @@
+Q: Im 22 and have been with the same guy since I was 16. I love him but I want to feel super wanted, I want him to be dirty, rip my clothes , be aggressive or something along the lines but he’s such a sweetheart and very gentle with me (which I also enjoy) . Any advice? I don’t wanna ask for it bc I will not get horny lol. Sorry English isn’t my first language.
+A: You’re going to have to communicate this to him one or another. I may recommend saying something like this: “I really love when you manhandle me and make me feel hot and irresistible. What do I do that makes you want to use me like that?”
+A: If you can’t communicate what you want then do you expect your partner to magically read your mind? Sorry but there’s no getting around the basic power of using your words. Ask for what you want. If that means you “won’t get horny” then you’ve trapped yourself without needing to. Great sex requires good communication, especially in a LTR. The sooner people embrace that reality, the sooner they can start having better sex. What do you have to lose? Use your words
diff --git "a/tests/data/txt/qa/Aftercare isn\342\200\231t a thing in my relationship.txt" "b/tests/data/txt/qa/Aftercare isn\342\200\231t a thing in my relationship.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..9bc13ce3c22e815e7b1f83a70b3898863279cf33
--- /dev/null
+++ "b/tests/data/txt/qa/Aftercare isn\342\200\231t a thing in my relationship.txt"
@@ -0,0 +1,8 @@
+A: if you guys are having rough sex ALL THE TIME then it’s normal for one to get real tired… so it’s not his fault but you should talk to him about what you want to do after the deed.
+A: After care can exist 12 hours later. Or 19 years later, though that would be unusual. What I mean is that, if you are negotiating that he has a very strong and sleepy phase/refractory period for hours, right when you have other needs, then at some other time maybe next morning you two should engage in some after care. Which might include: I enjoy our sessions. After our sessions, I have needs that aren't being met. How can you meet those needs so that I continue to enjoy the sessions? Some guys physiologically just pass out and it doesn't mean they're jerks. It doesn't necessarily correlate with rough stuff or not caring. But they do need to "man up" and realize about their own bodies that they have a strong refractory period that takes them out, and that they therefore are responsible to take care of the next however many hours of responsibility before they nut. So tell him.
+Q: I’ve (18) been with my boyfriend (19) for almost a year now. Everytime we do the deed, my boyfriend always falls dead asleep after. I clean up myself, and I also clean him up. I was pretty uneducated at the start, and I didn’t know you have to pee after sex so I got a pretty bad UTI that sent me to the hospital, but I’ve learnt my lesson and pee afterwards everytime. He’ll sleep for hours, and I’ll just wait for him to wake up. I feel really lonely during this time. Most of the time I get really hungry, so I’ll leave to get some food. When I come back he’s still asleep. I did mention to him I’d like at least some cuddles after sex, since what we do is pretty rough. He told me okay, but I haven’t seen changes. I hesitate to mention it again, because maybe he is not at fault. When we have sex, it’s mostly him doing all the physical work, and we do it very often. Therefore, he’s probably very exhausted. Any advice?
+A: If you're not happy with something in your relationship it's never a good idea to stay quiet. Speak up your mind and work together towards a solution
+A: aftercare isn’t really optional. if one person needs aftercare in a relationship, then aftercare must take place. he needs to find a way to be able to give you what you need instead of just going to bed after and leaving you to feel lonely and bad afterwards. you might have to compromise for this to happen but it’s not okay that he’s just not doing it
+A: I’m in my forties, and I’m still learning this one. I’m hoping you can learn it quicker than me. If you’re not happy with it after a year, you’re still not going to be happy with it after a decade, and you’ll be much more depressed generally. Give him a few chances, but at some point enough is enough. If you’ve only asked him once or twice, then by all means sit him down and have a very strong conversation about your needs. Be serious and firm. Aftercare is part of sex, especially if it’s rough, just like foreplay, or orgasm. Like someone else said, maybe the aftercare can come later if you both agree; maybe you can compromise that you let him nap it out for half an hour, then wake him up for aftercare, then he can go back to sleep. But he has to agree to not grumble about it. If that’s too hard for him, or he can’t understand that aftercare is an important step, or you’ve asked him for it till you’re blue in the face, then I’m sorry, but you’ll be much happier moving on. I was in a decade long relationship with zero intimacy and nothing from him unless he could see the direct benefit. I kept thinking he’ll come round, he said he was tired and maybe he won’t be tomorrow, he said he’d try. A decade later and I was so depressed from lack of touch that my friends were all worried. Took me that long to realise that if he wanted to, he would have. I’m much happier now!
+A: I mean first off, aftercare is more of a BDSM/hard fetish thing than just cuddles after sex... Ejaculation actually releases a hormone that makes you sleepy, so unfortunately for a lot of guys getting a case of the sleepies is an inevitability. Can you cuddle him while he sleeps?
+A: Aftercare should be mandatory. You should definitely have a calm conversation about it with him. If he's doing most of the "work".. It may be a good idea to slow it down if he gets so tired that he falls asleep immediately. Or you could always find ways to be more active so he isnt doing so much that he gets exhausted. Other than that you may have to adjust your expectations and have it after he wakes up. You could always try to fall asleep with him, wake up together then have well rested aftercare for the both of you.. because after care is for him as well
diff --git a/tests/data/txt/qa/Age old question - need reassurance and advice.txt b/tests/data/txt/qa/Age old question - need reassurance and advice.txt
new file mode 100644
index 0000000000000000000000000000000000000000..c53e435fb7a47bf26c865d026724254662c10be0
--- /dev/null
+++ b/tests/data/txt/qa/Age old question - need reassurance and advice.txt
@@ -0,0 +1,3 @@
+Q: I'm 34/f and just starting to enjoy cunnilingus with my boyfriend. I'm so scared that it will smell bad, that it will taste like pee. Even just the littlest bit of a smell like that would be so embarrassing for me! What can I do here? Thank you so much.
+A: So are you 32,34, or 35? 😐
+A: Hygiene wipes! it’s quick, odor friendly, cleans/sterilizes, the whole 9.
diff --git a/tests/data/txt/qa/All sex positions hurt...txt b/tests/data/txt/qa/All sex positions hurt...txt
new file mode 100644
index 0000000000000000000000000000000000000000..d3f760a260c606f399fda8fbb5d2ba3d65773e96
--- /dev/null
+++ b/tests/data/txt/qa/All sex positions hurt...txt
@@ -0,0 +1,5 @@
+Q: Need advise, i’ve been with my bf for 4 years, the past year and a half i’ve been having a stabbing pain on both sides of lower stomach doing almost every position except doggy (sometimes doggy) i’ve had previous partners prior to him and never had this problem and even in the beginning of the relationship i didn’t have it. He isn’t going too rough, and i am wet so it’s not that issue. I was thinking i maybe had ovarian cysts or fibroids or something. But i have no other symptoms, don’t have cramps after sex, my periods are very normal and i rarely get cramps. I just don’t know what to do bc it’s starting to become an issue. Has anyone experienced this?
+A: You should 100% speak to a gynecologist. They are able to give you much better advice than reddit, planned parenthood is inexpensive and pretty quick with appointments. Edit to add: you can also look at a sex therapist or pelvic floor therapist, if there’s nothing medically wrong these are two great options. If your partner is quite blessed then it can be painful as the length of a vaginal canal is only 4-5 inches (and can lengthen slightly with arousal). This can cause pain when the penis is hitting the cervix, so limiting the length that is penetrating can provide relief. Also going slow and light can make it less painful in my experience.
+A: Definitely go to the doctor. I had similar problems with painful entry and it turned out I had a yeast infection
+A: Was also having problems like this for about the same duration and just went to the gynecologist. They did STD and BV swabs and a pelvic exam. Could be a number of things so definitely get it checked out!
+A: Please see a doctor. Ovarian cyst pain generally won't feel like uterine cramps because your ovaries are separate from your uterus. It could also be gastrointestinal, a genitourinary issue, pelvic inflammatory disease (PID), etc.
diff --git a/tests/data/txt/qa/Alot of liquid coming out.txt b/tests/data/txt/qa/Alot of liquid coming out.txt
new file mode 100644
index 0000000000000000000000000000000000000000..ad30d29224410010784db9e625ee02c40e99d625
--- /dev/null
+++ b/tests/data/txt/qa/Alot of liquid coming out.txt
@@ -0,0 +1,3 @@
+Q: Hi Ever since I met my girlfriend, whenever we are together, either in a restaurant having dinner or at the house or whatever, I have to contantly go to the bathroom because I have a transparent liquid coming out of my penis, called pre-cum, same thing that happens as soon as you are about to have sex. But it's coming out ALOT, all the time, more if we're kissing or fouling around, but it never stops. Can someone explain what is happening? And is there something I can do to stop this?
+A: You are correct in what it is called. Most men produce some when aroused. It is completely normal. The amount varies by individual. You may be on the higher side. I don’t think there is anything you can do to prevent it. It’s actually healthy and good it is happening. Just make sure you have some absorbent underwear. If it happens when you aren’t fooling around or excited it might be something else. As long as it is clear, doesn’t hurt or smell bad it is just precum.
+A: The precum always comes out during arousal to clear the urethra to prepare it before the semen is ejaculated. It sounds like it is coming out during your arousal, which would be normal.
diff --git a/tests/data/txt/qa/Am I a pervert.txt b/tests/data/txt/qa/Am I a pervert.txt
new file mode 100644
index 0000000000000000000000000000000000000000..1e760f6346b53dc7acdba658ee8cb6fa85d5a23a
--- /dev/null
+++ b/tests/data/txt/qa/Am I a pervert.txt
@@ -0,0 +1,5 @@
+Q: I've been thinking a lot about how we can connect more deeply. I feel a strong attraction to him and would love to explore new ways of being close, like trying a prostate massage if he is open to it. It’s something I’m curious about, but I really want to make sure it’s something he'd feel comfortable and interested in too. His feelings mean a lot to me. What do yall think? Strangely, I want to see his dick
+A: You can discuss any desires with your partner and look for compromises. Fantasizing about varied sexual experiences with a partner is not a perversion.
+A: Wanting to make your partner feel good has nothing to do with perversion in my book. Totally ok.
+A: Wanting to explore new things with your partner does not make you a pervert. Talk to him, be open and honest, let your freak flag fly high.
+A: Am I a pervert too?,when she said I want to see his dick ,I laughed my ass so hard my parents got angry for how loud I am🤣🤣
diff --git a/tests/data/txt/qa/Am I addicted.txt b/tests/data/txt/qa/Am I addicted.txt
new file mode 100644
index 0000000000000000000000000000000000000000..6112f10264dedaae36069f6e1888787b428d037a
--- /dev/null
+++ b/tests/data/txt/qa/Am I addicted.txt
@@ -0,0 +1,4 @@
+Q: I’ve been watching porn since I was 10, on and off, sometimes more frequently, some periods not at all. It all started with some vague SE and my curiosity wanting to know more. It then kind of stuck as the best way to relax/ distract and a way to fulfill my urges. Sometimes I don’t watch it for a while, other times I watch it very heavily. Sometimes I don’t have a problem with it, but other times (like right now) I get really ashamed, embarrassed and upset about it. Also I’m afraid to approach girls, so this is my safe way of doing it. I just feel like I depend on it too much.
+A: Sounds like a classic love-hate relationship with porn. Don't worry, you're not alone. We've all been down that rabbit hole of late night binges and overwhelming feelings of shame. Just remember, moderation is key. Maybe try exploring other ways to relax and fulfill those urges, like exercise or hobbies. As for approaching girls, that's a whole different hurdle to tackle. But hey, at least you know how to handle a good old fashioned hand party.
+A: The biggest symptom of porn “addiction” is guilt and shame- pretty much all studies reach that conclusion. The more “addicted” an individual considers themself, the more shame they’re feeling. It’s completely fine to jack off a lot. As long as the urge/act of masturbating isn’t disrupting your daily routine and life, you’re healthy and natural. The act of masturbating is morally neutral. Porn videos can be your safe space for intimacy, but the dependency, while understandable, isn’t any more serious a problem than watching romantic movies. As long as you’re aware how porn differs from reality (eg. Women’s bodies in real life are extremely varied, and real life interactions don’t resemble scripted performances) you’re totally fine. Girls love normal guys who are nice and interesting to talk to. The bar is low. Hope this makes sense!
+A: There’s nothing wrong with consuming it as long as it doesn’t affect your job (if you have one), friendships or relationships. You should always know when to stop and when the appropriate time is to watch it. And there’s nothing wrong either with finding ideas in porn and wanting to try it out but just make sure if you’re with a woman she consents and is open to it as well. People will say it’s damaging and destroys lives when they simply don’t know how to use it accordingly. It can be a helpful thing, whether you’re single or taken. I sometimes see stories like this though of people overcoming this and talking to women eventually so don’t worry, you’ll get through it. I’m personally a bit shy and know it can be a nightmare talking to new people so I understand if you’re just not feeling it and porn is your go to. I also have a few dvds myself lol. But yeah, as long as you’re not forcing your porn watchings on others, have fun for now and take your time talking to women.
diff --git a/tests/data/txt/qa/Am I missing a hint.txt b/tests/data/txt/qa/Am I missing a hint.txt
new file mode 100644
index 0000000000000000000000000000000000000000..a5fde8f765537587c22c8a17d9a4a59ae3754f95
--- /dev/null
+++ b/tests/data/txt/qa/Am I missing a hint.txt
@@ -0,0 +1,5 @@
+Q: I (20F) have been having casual sex with a (48M) man . The sex is AMAZING in every aspect and it just keeps me wanting more and more but I think I might be missing a hint here. I’ll start off by saying I’m a very fit girl who is also attractive so I do get a lot of male attention and when I am hooking up with someone it’s usually them who would be initiating it more(as in asking me to come over or whatever) or both of us equally, so maybe this is why I’m confused. This man does initiate it sometimes however I’d say it’s almost always me who does it which I’m not really used to and I can’t help but think that I’m coming off as clingy or desperate. Now honestly I didn’t care about this at all before because when we are hanging out he’d keep complimenting my body telling me how it’s “his favourite body type”, constantly all over me, asking to cuddle and stay in bed together etc, but I’ve been really horny these days and wanting to text him but then I realised this. Maybe because I’m a lot younger he thinks I’ll be catching feelings lol? He’s definitely also having sex with other people, he’s a very attractive man so I wouldn’t be surprised so maybe that’s why too? I know I’m overthinking this but if a man doesn’t initiate sex at least 50-50 then I usually would just take it as a sign that he’s not really interested. So am I not taking the sign here? Please bear with me this might be stupid lol I just don’t want to come off as clingy.
+A: I agree, I think that you’re overthinking it a bit. I, personally, would not interpret a desire for sex is being clingy. clingy, at least for me, would be something of an invasion of needed personal space. he might actually be a bit worried about trying to keep up with your needs.
+A: He is much older than you and has likely had a few long-term relationships or even a marriage. Those types of things change the dynamic. If he was in a long relationship with a partner that frequently rejected advances or preferred to be the initiator, he has probably fallen into the habit of waiting for his partner to initiate. If you want him to initiate more, it is worth asking him to. Just say you find it more intimate when he initiates. Ask him if he is willing to start things more frequently. Just be polite about it, and think of it as asking him if he can help you with a kink you have. Best of luck, and just remember that long-term relationships, marriage, and age all change a person's perspective on Sex drastically. You may have to navigate more of these changes in the future.
+A: Sounds like you may be overthinking it! As long as both parties are happy and consenting, who cares who initiates the sex? Enjoy your amazing time together and don't let society's expectations get in the way.
+A: I suspect you are missing a hint yes. This happened to me. We had a great connection, good sex. I got attached, then found out he was married.
diff --git a/tests/data/txt/qa/Am I overthinking .txt b/tests/data/txt/qa/Am I overthinking .txt
new file mode 100644
index 0000000000000000000000000000000000000000..15a62b0eee0fc9906a8c883380375dd9269ac1d8
--- /dev/null
+++ b/tests/data/txt/qa/Am I overthinking .txt
@@ -0,0 +1,5 @@
+Q: Ok posting this thru my best friends Reddit because I’m too lazy to make an account. So I’ve been talking to this guy for a bit and we met up on Saturday. I told him no sex. We were gonna just hang and see the vibe. ( we know each other but never like this) He agreed. Things got hot. Anyways, we parted ways. No sex. Just make out and talk basically. Yesterday we decided to meet again. We both knew we were gonna have sex. We had been pretty xrated thru msgs and he definitely lived up to all his oral sex/manual skills he said he had lol When it was time for sex tho he wasn’t that hard.. yes was car sex and a bit uncomfortable but I figured he would be super hard with all the foreplay.. He wasn’t.. I tried to switch up positions because I wasn’t really feeling him and we couldn’t and we decided to switch back at me sitting on him (facing him) and I noticed he was def not hard anymore. Took a bit for him to get it up enough to finish the whole thing. He came. When I got home I msged him and straight up said if this was out of our system now or we would meet again.. he said def meet again. That he enjoyed it. No neither of us is looking for a relationship, just some fun no strings. So questions for the men I guess. Why wasn’t he hard? Nervous? Was it me? I figured he would tell me it was done and over with when I asked after I got home, if it was me that didn’t turn him on.. but he wants to keep this up between us.. I’m not sure if I should ask him directly, don’t wanna hurt the man’s ego I guess. And if I should ask.. how can I ask without making him uncomfortable? Also, I wanna say too that the Make out sesh was amazing. But then while we were making out and he was masturbating me, I went to feel him up and he wasn’t hard either! (This was before sex) I’m confused.. I’m 35 and never had this happen before, usually men are pretty damn hard after and while making out/fingering. Am I overthinking and maybe he was just nervous? Thanks folks.
+A: Don't worry, it happens to the best of us. Maybe he was just nervous or had performance anxiety. Just keep the communication open and have fun without any expectations. And hey, at least the make out session was amazing, right? #priorities
+A: You didn't provide many details on the car sex, but that could be it. Personally, I haven't had car sex since I was a teenager and I can't imagine doing it again. It's cramped and uncomfortable. Unless it's in a private garage or have an exhibitionist side, I'd be constantly worried about getting caught rather than being in the moment. Lots of possible reasons why he wasn't as hard as you would have expected though! I'd keep going with it and give it a little more time.
+A: No. You aren’t. But he probably is. It’s likely performance anxiety. Tough. Tell him you had a great time and can’t wait to do it again. Might do the trick. Just slow down a bit and try a better setting.
+A: Does he have adhd, anxiety, depression, body image issues? Does he watch porn and wonder how any normal man could please a woman? While he was making out with you, fingering you and trying to turn you on, we're you reciprocating? Society says as men we have to be always ready for sex, always turned on, and always rock hard. The only problem with this is that we're not actually in control, and a penis isn't always as reliable as we would like it to be. Hopefully that will help you see that his hardness/softness could be the result of several things that have nothing to do with you. If he wants more sex with you, chances are he's into you and attracted to you physically.
diff --git a/tests/data/txt/qa/Any advice on how to keep going following post-orgasm sensitivity.txt b/tests/data/txt/qa/Any advice on how to keep going following post-orgasm sensitivity.txt
new file mode 100644
index 0000000000000000000000000000000000000000..43fa2ec1bdb3cdfe00935ff6c9c1d6fcca6b9425
--- /dev/null
+++ b/tests/data/txt/qa/Any advice on how to keep going following post-orgasm sensitivity.txt
@@ -0,0 +1,3 @@
+A: One approach is to avoid stroking the head of the clitoris directly. Just trace stimulation in a circle around it. If your clitoris is not too sensitive before any stroking has occurred, you can even have your partner pull back your clitoral hood and use lube and a bullet vibrator to trace around your clitoris. This can be very effective.
+Q: My partner and I have a fulfilling sex life, as in I really have no notes, but I’ve noticed that after a few orgasms my clitoris becomes very sensitive. It’s so sensitive, that when my partner touches me there it feels as if he may as well be sticking a needle through it. Usually I’m prepared and willing to keep going/my libido is still high even after this happens, so I was wondering if anyone has tried any sort of indirect clitoral stimulation that works just as well as direct? My primary method of orgasm is direct stimulation of the area, and I would like some ideas on how I might continue to orgasm without it.
+A: Good feeling jealous
diff --git a/tests/data/txt/qa/Are ikea beds sturdy enough for sex.txt b/tests/data/txt/qa/Are ikea beds sturdy enough for sex.txt
new file mode 100644
index 0000000000000000000000000000000000000000..492041fda0c4d8ad8a8a3855474b8ec712c9c211
--- /dev/null
+++ b/tests/data/txt/qa/Are ikea beds sturdy enough for sex.txt
@@ -0,0 +1,5 @@
+Q: I just moved to a new city and am looking for a bed. With the expenses from all the moving, Ikea beds seem to be within my budget for a bed.
+A: Sure, why not. If you put it together well. It is not solid wood furniture but it does the job.
+A: Mines wooden and has experienced lots of sex. No problems.
+A: Sure they're fine. Did you think they're gonna just break from some pounding? The things is that because they are flat pack, movement will over time loosen the bolts that hold the joints together and you'll get a bit more movement and squeaking, so tighten the bolts periodically when the joints start to move. My bottom of the range Ikea bed is 10 years old and it's held up fine. Just yeah, tighten the joints sometimes.
+A: i havent had a problem, though i did find my boyfriends was squeaky after a month or so and some bolts needed to be tightened, he also greased them a bit to reduce squeaking
diff --git a/tests/data/txt/qa/As a teenager, i'm really lost and i need to have some reassurance.txt b/tests/data/txt/qa/As a teenager, i'm really lost and i need to have some reassurance.txt
new file mode 100644
index 0000000000000000000000000000000000000000..088831648e31499cb974189d9ea9254f502d56b5
--- /dev/null
+++ b/tests/data/txt/qa/As a teenager, i'm really lost and i need to have some reassurance.txt
@@ -0,0 +1,5 @@
+Q: So right now i have a lot of question and i am worried about a lot of things, so please read it so you can help me and please do not judge me for what i like and my kinks, i'm not proud of them but i didn't chose to have them. I have the Macrophilia fetish/kink. I'm onto that stuff and i especially like the micro size, giantess, povs and things related to breasts, and i also like a lot boobs drop and in general i really like boobs, but the thing i am worried is that maybe i am seeing too much stuff of it, if there should be a limit of how much should i watch it, if it's impacting me badly and i have a lot of worries like that and i really need someone to reassure me because it is really hard sometimes. I know that we always wants more and more of sexual things but i worry sometimes that it might impact me badly and sometimes i also ask myself if i am watching too much of them. Anyway, thanks to all the people who have read and who will reply, have a good day!
+A: Nothing wrong with the kink/fetish. But too much porn is really not good for you, too much Anthony is not good for you. Instead of binging on the porn, get out there and find you a woman that suits your desires.
+A: Look, kinks and fetishes and fantasies are very common, and if you think you're weird, well you're not. The main question always is "is my kink harmful to anyone including myself?"and the answer is no. You like what you like, and that's all. The only problem I see is that you have a fantasy that's maybe hard to experience for real: if your ultimate fantasy is a 5m tall woman doing things to you, well, there are no 5m tall women of course. A healthy transition from a fantasy to acting it out in real life is to figure out exactly why it turns you on and how it can be incorporate in a sexual relationship. Maybe you don't need a 5m tall women, but it's some mental image of a towering woman dominating you - and that can be real! It's all about figuring out the essence of what you like, and how you can meet that fantasy in real life for real sex. As a fellow kinky person, to be able to make a fantasy work in real life with a partner who enjoys the same thing, is magical. Don't worry too much, it'll be fine.
+A: So the question is: is it harming you, is there too much. The answer is in two parts. Does the content creation or consumption harm anyone? This sounds likely not. It may not be mainstream but it doesn't seem inherently exploitative. Carry on. Secondly, how will focusing on this affect your future romantic relationships? If your goal is to live life alone and masturbate happily to this, then do as much as you like. 100%. If you have a goal of having a sexual relationship with another person, you're going want to keep your dick in a condition where it can get hard and come with that other person. And that means not grinding a habit too deeply into your brain. Does this mean once a week? Daily? Once a month? We don't know and the answer is different per person. Shake it up. Make a habit of say, at least half your orgasms happening in a way that feel and look reasonably varied or like they could happen with another person. Use lube, use your off hand, use a stroker, fuck the couch, stand in the shower, lay on your stomach and hump your fist, just mix it up. And half the time, stare at your niche porn.
+A: You just have to find a partner who is into what you’re into. Kinks definitely shirt your available dating pool but there definitely is someone for everyone. Be honest and up front with people as you meet them.
diff --git "a/tests/data/txt/qa/Became a sex gremlin after a night of drinking and now I\342\200\231m trying to walk it back a bit and not be embarrassed..txt" "b/tests/data/txt/qa/Became a sex gremlin after a night of drinking and now I\342\200\231m trying to walk it back a bit and not be embarrassed..txt"
new file mode 100644
index 0000000000000000000000000000000000000000..623d32dd5aea57e8a8b509a950f3093ff8b884e2
--- /dev/null
+++ "b/tests/data/txt/qa/Became a sex gremlin after a night of drinking and now I\342\200\231m trying to walk it back a bit and not be embarrassed..txt"
@@ -0,0 +1,6 @@
+Q: Long story short, my (34f) boyfriend (49M) and I have a very fun, active and healthy sex life. We have sex daily, often 3-4 times a day when we have the house to ourselves. We talk dirty, we text dirty, he lightly chokes me, I give him the sloppiest head. We have used toys, we have fooled around in parking garages… we don’t have a vanilla sex life by any means. Thursday however, I think I went a little bananas and I’m embarrassed. I should preface this by saying we are very mindful of consent and we never push the other to do anything we don’t want to do. That being said, Thursday I slapped on a really hot outfit and we had a night out in DTLA planned. We fooled around before we left and we were all over each other at this show. I only drank 3 drinks over the span of 2.5 hours- but as we were leaving, the bartender gave us a shot of something (he took one too, he was clocking out and he said he loved us lol) and it kinda put me over the edge. I was pretty drunk. We grabbed some food from a taco truck and ubered back to my boyfriend’s place. Fast forward to us going at it again when we got home, it’s kinda blurry but the past two days little moments keep coming back to me and now I feel super dirty and confused where the hell this came from. I distinctly remember telling him that I wanted him to “fuck my tight ass”, I told him to spit in my mouth (he did lol) and kept screaming at him to fuck me harder and I scratched his back to hell. I think I asked him to “slap me around a little” and I remember him giggle and say “nope not doing that” but then proceeding to grab my hair and make out with me instead. Basically I went beast mode on him, and then got up super early for work the next day. Friday after, we went to a drive in movie with his kid and were super sweet with each other. The whole time he’s setting up I’m just looking at him like omg I hope he doesn’t think that was weird? We got back to his place after the movie and when his kid went to bed we had sex again but it was much more sweet and mellow and there wasn’t much dirty talk. I think we both kinda wanted to reconnect and tone it down. It was much sweeter, lots of making out- etc. I’m on my way over there now and I feel like inevitably we are going to at least joke about it, but am I crazy for feeling a little embarrassed? It’s not like I was trying to do anything crazy but I was definitely way more wild than usual. Am I overthinking this? Edit: Apparently I did indeed overthink it and I should embrace the freak flag. I suppose I’m still a little insecure because I’ve lost a shit ton of weight and I’m looking pretty good but I still feel kinda awkward and unsexy at times. I had really low self esteem for years. It would appear he loved it -I saw him tonight and he was all over me, calling me his dirty girl so… thanks frens. I feel a little better. I kept thinking about it all day at work, I was kinda anxious to see him and bring it up. Edit 2: because there’s a lot of interest in how we get anything done, we are actually super productive and work on a lot of stuff together. I think he really appreciates me and what I bring to the table. I think me being so supportive, great with his kid, down to work on some remodels around the house with him, cook and clean and have lengthy interesting conversations turns him on. Last week we talked for 13 hours straight, it was crazy. We just kinda bounced from room to room chatting about anything and everything all day. Yes I find him incredibly sexy but I’m also obsessed with his mind. He’s so incredibly intelligent and thoughtful, his brain operates on the same wavelength and speed as mine. Never a dull moment.
+A: Am I overthinking this? yes.
+A: 100% overthinking. You both were drunk, boy had an amazing time. Okay to feel embarrassed but he probably loved it and you shouldn't feel anything but happy because you had a great time and felt like you could trust him to get to "beast mode" lol
+A: AbsoLUTELY overthinking it! you both got plastered, fucked like maniacs, in the ass, no less, and had the sweet, “Apologu, reconnection” sex the next morning/day. I’d say that things have most likely worked out rather well, wouldn’t you?
+A: GF's and wives need to be a little feral every now and then.
+A: Girl if you did that with me I would wash your underwear for the rest of the year
diff --git a/tests/data/txt/qa/Bent my penis now it hurts.txt b/tests/data/txt/qa/Bent my penis now it hurts.txt
new file mode 100644
index 0000000000000000000000000000000000000000..dd40fa33fd4d56b2167134ceb35ced514ec59956
--- /dev/null
+++ b/tests/data/txt/qa/Bent my penis now it hurts.txt
@@ -0,0 +1,5 @@
+Q: About 2 years ago I was having sex with my then-girlfriend when I slipped out and when I went to thrust back in, I missed and bent my penis. At the moment it hurt, and ever since then it’s painful when I get an erection. There’s a slight bulge near the base of my penis now, and I can feel hard tissue inside as well. I don’t have any issue getting an erection or keeping an erection but it’s painful. What might be the issue here?
+A: You should’ve gone to a doctor two years ago… Bruh
+A: The issue is you broke your dick and never went to a urologist. Go to a urologist. If you're in the US, you should talk to your primary care provider first, explain the situation, and they'll refer you to a urologist (that's a penis doctor).
+A: Dude! Treat your little soldier better. It was injured in the line of duty and you just let it sit there without medical attention? You need to go to a doctor. You should have went 2 years ago but better late than never. You have the whole rest of your life ahead of you. Do you want to regret not getting this fixed for all of that? How many fun sexual encounters have you passed up since then because you were worried about pain or ashamed of it being bent? The problem isn't going to suddenly go away and nobody on here is going to be able to fix it for you.
+A: pretty sure you broke it a while ago. you you need to tell a doctor. probably didnt heal right. it happened to me once
diff --git a/tests/data/txt/qa/Best thrusting motions for her pleasure during missionary.txt b/tests/data/txt/qa/Best thrusting motions for her pleasure during missionary.txt
new file mode 100644
index 0000000000000000000000000000000000000000..3c3aca2bba451a6fa163d92ac0c7396cf4af4b10
--- /dev/null
+++ b/tests/data/txt/qa/Best thrusting motions for her pleasure during missionary.txt
@@ -0,0 +1,3 @@
+Q: My current partner has always maintained that in general, vaginal sex doesn't do much for her, unless it's where she's grinding on me (forgot what that position is called) It feels like whenever we do doggy, the only thing she likes about it is that I like it. And when we do missionary, while she clearly loves the physical intimacy, she mentions she doesn't get that much out of it sexually compared to direct clitoral stimulation. Apart from things like the Coital alignment technique, is there a way I could be thrusting so as to stimulate her G-spot a little better?
+A: This might be hard to picture but I saw it in an amateur porn and really like the move, it was missionary and he was fully inside deep and while in deep he didn't let up pressure but then would almost what I would call a rocking motion almost like grinding on her clit. He would use his feet to get leverage to push in, then squeeze his ass and rock his pelvis on her all while not actually taking the dick out at all. It was quite interesting and the woman was very very happy with his techniques!!
+A: You seem to be under the idea that her gspot is this secret erogenous button but the reality is that your partner is part of the majority of women who need clitoral stimulation to reach climax. Trying to stimulate anywhere inside likely isn’t going to do much if you’re ignoring the importance of the clit. That’s why she likes the grinding: that’s how she gets clit stimulation during PIV.
diff --git a/tests/data/txt/qa/Bf told me his ego would get hurt if he begs.txt b/tests/data/txt/qa/Bf told me his ego would get hurt if he begs.txt
new file mode 100644
index 0000000000000000000000000000000000000000..75b5706b7c932036ff4280c2d2469021a18c9e6c
--- /dev/null
+++ b/tests/data/txt/qa/Bf told me his ego would get hurt if he begs.txt
@@ -0,0 +1,5 @@
+Q: I (f) and my bf have been joking around when we were having our conversation. He then inserted in our conversation that he wants more of me looking at him when giving him a head. So when he said that, in my mind, I was thinking that I will find it so sexy if he begs for it. So I told him to beg jokingly, and he refuses to, and I told him that maybe he doesnt want it enough. But he said that he has always wanted it. So I said then beg for it. Later on, I could feel that the atmosphere was changing so I asked why he wouldn't. I asked if begging would hurt his ego. When he said yes I thought it was a joke so I asked him again and this time I told him that if he's serious that it would hurt his ego, and he still said yes. I just don't understand why it would hurt his ego, and when there are times I would beg for something I won't mind it. I just thought that it's sexy if he would but now it would hurt his ego. Also in his defense, he said it's the one thing a man would not beg for let alone ask for. But it's fine if I beg? I'm so confused and I don't understand why I feel it's unfair . . . Edit: I spoke to my bf about it. And to him, he can beg anything related to sex, but the only exception is when I'm guving him a head. The reason he likes being dominant is because he wants me to be serving him. And to add to that, as someone who is being served, there is no need for him to ask for any favours. So when it comes to head, he is the one being in control. But besides head, he's okay to beg for sex. And I believe it's a valid reasonas to why he doesn't want to beg. And for context, I keep telling him that my role in our relationship is to be the one serving him while he protects and provides for me. And when it comes to sex life, I like being submissive too.
+A: I do a lot of dominant/submissive play and I notice that begging is something that lots of people have a strong reaction to. The thing about begging is that it can have the implication that you have to beg for the thing because the other person doesn’t really want to do it. He could be thinking that if he begs for you to look at him, it could make him feel like you don’t really want to do it and are reluctantly giving into his begging. It could also make him feel powerless, embarrassed, small, greedy, desperate - all feelings that some people find really hot and other people find really uncomfortable and not sexy. The fact that he said that this particular thing is something he’s reluctant to even ask for makes me think that he sees you looking at him during a blowjob as something that’s hot because it symbolizes your desire for him and your enthusiasm, that you’re doing it because you want to. So it would change that dynamic a lot to introduce the power element of begging - then it becomes something he wants that you’re granting him.
+A: You would find it sexy but not everyone does. I would find it pretty off-putting if I asked my girlfriend to do something in bed and she told me to beg for it. I want to feel like we are both equally invested in eachothers pleasure and being told to beg for something would make me feel like I'm beneath her and she would only decide to grace me with the pleasure I want if I begged enough that she deemed me worthy. For me it has nothing to do with being a man or a woman. I think the idea that he won't because "a man would not ask or beg for it" is just silly. Some people like being dominant and some like being submissive, it's not specifically a gender thing. Not everyone would agree with my view, but that's just my perspective on it.
+A: Some people just don't like to be submissiv. Doesn't matter if they are male or female.
+A: I may be way off because this is more a feeling than I have support for. But the asking for you to look at him is asking for mildly submissive behavior. And the. You ask him for submissive behavior back. Which sounds fair, but if he wan to be a little dom and have you be a little sub you would be completely undermining that dynamic. And he may not understand that that’s what he’s asking for. And the dom/sub may be ego driven. He wants to feel powerful and manly, asks for it, and you immediately ask him to be submissive instead. Maybe something to ask him about. Or again I may be way off since I’m basing this on very little real information and just a gut feeling.
diff --git a/tests/data/txt/qa/Boundaries when sharing a partner.txt b/tests/data/txt/qa/Boundaries when sharing a partner.txt
new file mode 100644
index 0000000000000000000000000000000000000000..5427ab332c03724f2fd271ec693954222551f261
--- /dev/null
+++ b/tests/data/txt/qa/Boundaries when sharing a partner.txt
@@ -0,0 +1,3 @@
+Q: Is it typical or smart to usually set boundaries before sharing a partner. More specifically, if my fiance (24F) and I (30M) have a threesome with another girl, would making out with her while having sex too much or vice versa, her with another guy. I’m not a very jealous person but I’m not sure how it would during a threesome and watching it and for her as well. I just personally love kissing and having sex together and would like to with a friend she has mentioned .
+A: Yes, boundaries are best discussed beforehand. It may be something you won’t know until you explore but keep your communication open constantly.
+A: NEVER have group sex without first having a thorough discussion of boundaries, etc. unless you are fully prepared for any emotional fallout that may follow. It’s a recipe for disaster.
diff --git "a/tests/data/txt/qa/Boyfriend\342\200\231s Performance with Me.txt" "b/tests/data/txt/qa/Boyfriend\342\200\231s Performance with Me.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..dd6615791d8ad14432c43a2e19c01cd50ad148d8
--- /dev/null
+++ "b/tests/data/txt/qa/Boyfriend\342\200\231s Performance with Me.txt"
@@ -0,0 +1,6 @@
+A: So why cant he just masturbate with you? If he is saying he “has” to orgasm by looking at strange women he has absolutely no connection with and never will on social media then it’s a porn addiction. If he says he’s having trouble finishing and wants to masturbate then you or he can do that, if he wants the visual you can pose for him if that helps the arousal
+Q: My boyfriend of almost a year, whom I love very much, says he is very attracted to me, but when we have sex he struggles to get an erection and reach orgasm. He sometimes uses his helper pills to help with the erection, but he very rarely reaches orgasm with me. He says the issue stems from the fact that his ex wife thought ejaculate was “disgusting” and didn’t want him to cum inside of her. So he began relying on pictures of women on Reddit more often than before to reach orgasm on his own time. This soon became very frequent. He gets an erection and ejaculates easily doing this. He feels horrible about it because he can’t do the same having sex with me. I just don’t feel like I can compete with these women on the Reddit sub he views. I feel so inadequate for him. What can I do to help remedy this situation?
+A: As an exercise, take the reddit porn women that you feel you don't measure up to - take that completely out of the equation. For whatever reason, he has gotten into a habit of masturbating with let's say a green sock while pulling on his left ear. He gets erection and ejaculates easily this way but not with you. You say he feels terrible and wants to change. What do we know? We know his dick works, physically. We know he has an ingrained habit that his dick is accustomed to. If he actually wants to retrain his dick to act on command instead of needing the green sock and ear pulling, this is straightforward behavioral conditioning. With a reasonably healthy man's body if the dick works it'll naturally exercise itself. If the old method, the green sock and ear pulling go away, he will have more wet dreams and his trigger will get easier in other situations, more in the habit of coming reliably and easily with what he chooses to do. It will be a frustrating several weeks and he'll be very tempted to fall back on the sock because it's easy and comfortable and pleasant. It'll go faster the more strictly he avoids the green sock. It's not a judgment about porn or his past relationship. This is how forming and choosing to change any masturbation habit works. So the ball is in his court. There's very little you can do. If he wants this to change, he has the power.
+A: He needs to take responsibility for his porn addiction. His past relationship may have done some damage, but he owes it to you and himself to face this head on. He has a choice to make between redit porn and your relationship.
+A: It's likely all just in his head, it's very hard for me to orgasm when my partner gives me oral sex and they take it very personally. It's probably just the sort of order thing they need to work out over time, if they can. As best as you can try not to take it personally, but that's obviously easier said they're done
+A: I didn't know there are pictures of women on reddit.....where can I find these pictures..
diff --git a/tests/data/txt/qa/Bringing up ex in bed.txt b/tests/data/txt/qa/Bringing up ex in bed.txt
new file mode 100644
index 0000000000000000000000000000000000000000..7362a2abb0a8adf6f26722851955ccb898d18dfc
--- /dev/null
+++ b/tests/data/txt/qa/Bringing up ex in bed.txt
@@ -0,0 +1,3 @@
+Q: Is it normal for your[22F] SO[27M] to bring up their sex life with their ex in bed? I am new to sex. I get posterior fourchette cuts during sex and it makes it painful. He told to me that his ex used to get the same, while he was still inside me. It might be harmless, but I still felt somewhat upset and turned off. Maybe I should just be honest to him. But is it a normal thing? Asking out of inexperience.
+A: He’s trying to let you know that he understands. Let him know you don’t like it and I’m sure he’ll stop.
+A: Try not to focus on "normal" but rather on how you feel. Apparently it made you uncomfortable. You should tell him. You could say something like "hey bae, you mentioned your ex the other day during sex and it was a big turn off. Maybe you were trying to make me feel less like an outlier with my condition when you mentioned she had the same thing. And I appreciate that, but next time you want to share something about an ex, just try and do that when we aren't fucking."
diff --git a/tests/data/txt/qa/Butt plug hurts!.txt b/tests/data/txt/qa/Butt plug hurts!.txt
new file mode 100644
index 0000000000000000000000000000000000000000..9b24015213c469d58d97a1b08315a7afbbfdc9d9
--- /dev/null
+++ b/tests/data/txt/qa/Butt plug hurts!.txt
@@ -0,0 +1,4 @@
+Q: I’m new to anal play but I tried to wear my butt plug while my bf did PiV in doggy style but we found it awkward as he couldn’t get in properly because it was pushing against the walls on the inside (which was awkward for both of us!) and what made it even more uncomfortable for him was the metal gem part was rubbing against his shaft when he trying to push it in me.. so we had to stop Any advice what other plugs to try?
+A: T base please! Those metal gems are cute, but not safe. It can get sucked inside, especially during sex.
+A: I'm a huge fan of Squarepeg's egg plug, they make some pretty small ones, but they are so super soft I think you'll find they work well for this. I've got an XL for fisting prep and it's comfortable enough to wear all day.
+A: You could try a graduated butt plug set and work you way up the sizes. The more aroused you are will help. I find having piv first, have him pull out, insert the plug and then for him to enter you again works best for me.
diff --git a/tests/data/txt/qa/Can a condom cause pain like this.txt b/tests/data/txt/qa/Can a condom cause pain like this.txt
new file mode 100644
index 0000000000000000000000000000000000000000..1ccb624592e65d68698c66f17fe3a51e05661bb4
--- /dev/null
+++ b/tests/data/txt/qa/Can a condom cause pain like this.txt
@@ -0,0 +1,2 @@
+Q: Tonight my wife and I used a condom from a box in our nightstand. I noticed the corner of the wrapper was torn because the last time I tore off a condom it ripped weird (the condom pack wasn’t perforated very well so tearing one from the bunch was a bit difficult). Anyways, I disregarded it and used the condom anyways. It felt lubed but after only a few minutes I had to stop becausd my tip was stinging really badly. Pulling the condom off was hard and Just touching it hurt. After I peed it stung really bad too. Is it possible the condom was partially dried out and transferred something to me to make me burn?
+A: This is weird; the symptoms you describe sound like a possible micro-tear, or alternatively, exposure to an irritant. If you are sure the condom was sealed and you know you don't react to the condoms or the lube on them, and you didn't handle any other new substance that could cause such a reaction, then that rules out any sort of new irritant. It could be that when you ripped the condom wrapper, somehow you did something that made a sharp edge somewhere and maybe when putting the condom on it caused an abrasion near the tip. Or it could be that if the package were ripped open, some sort of other irritant in the environment (household cleaner maybe?) got into it. That's the only thing I could imagine. Genitals can be surprisingly sensitive, things that don't normally cause much pain can cause a lot of pain there, like I had once been cooking and handled hot peppers, hadn't washed hands, then touched that area. BIG OOPS. Very very painful. Just to give you an idea...extra sensitive so things you normally wouldn't react to can cause severe pain in that area.
diff --git a/tests/data/txt/qa/Can kegels_pelvic floor physical therapy really help with orgasms and does it really tighten up the vaginal canal Looking for real life testimonials..txt b/tests/data/txt/qa/Can kegels_pelvic floor physical therapy really help with orgasms and does it really tighten up the vaginal canal Looking for real life testimonials..txt
new file mode 100644
index 0000000000000000000000000000000000000000..cdf20ec956444cee3b05f432bc79401cdc9e0c8f
--- /dev/null
+++ b/tests/data/txt/qa/Can kegels_pelvic floor physical therapy really help with orgasms and does it really tighten up the vaginal canal Looking for real life testimonials..txt
@@ -0,0 +1,4 @@
+Q: 41F having underwhelming, weaker orgasms than I used to. I also am concerned that I never recovered my tightness after giving birth almost a decade ago after a recent conversation I had with my partner where he mentioned it wasn’t as tight as it once was (he wasn’t being rude as I inquired and appreciated his honest feedback.) I was referred to pelvic floor physical therapy (PFPT) after telling my Dr. that I’m having some urinary incontinence issues and she mentioned it might help with the above mentioned issues as well. The thing is, my work schedule is really busy and taking time for this is going to really affect my job so I want to make sure it’s going to actually be worth it. Women: have you actually been able to increase the intensity of your orgasms with PFPT? Men: have you had partners who have gone to PFPT and actually tightened their vaginas in a way that was noticeable to you? Or have any of you been with a partner who was able to tighten theirs with any method other than surgery that was actually noticeable to you?
+A: DISCLAIMER: I am not a doctor, I've never been pregnant or given birth, I didn't do PFPT specifically, and my PT is covered by insurance so I don't really have to pay for it (meaning whether it's "worth it" or not might seem different if I had to pay out of pocket). Our situations are pretty different, so I don't know if I'm a helpful data point, but here's my experience. I've noticed changes in sexual pleasure since starting Kegels as part of PT for overall strength building. I'm on week 31 and I do them at the same time as my ab work, two sets of thirty every other day. Easy peasy. Unless I am mistaken, it doesn't "make your pussy tighter", rather it increases the strength of those muscles and you will develop more conscious control of them. I'm also under the impression that like with all muscle training, the effects last as long as you continue the work, so if I just stopped doing them, I'd probably go back to what my baseline was before. Before I wasn't able to come during PIV, it was *too distracting" from the clit stimulation that did get me off. Now it feels great for me to squeeze and release things inside me and I can orgasm while being penetrated. Everyone is different, but it's such an easy exercise to do basically anytime anyplace that for me it's definitely been worth it.
+A: Personally I have never seen the affects of kegels but have had conversations about this with a female friend and she swore by them. Definitely worth a try before going the surgery route IMO.
+A: I’m 33, had 1 baby, currently 35 weeks pregnant with my second. I have been doing kegels since I was like 14. I read about it in a silly woman’s magazine, but looked it up later on the internet. I didn’t want to have a weak pelvic floor, lol. I bought kegel exercise-device things, but I rarely use them. I just do kegels throughout my day. I have strong orgasms, and have not had any pregnancy or postpartum urine leakage. My sister (who definitely doesn’t do kegels) can’t even jump on a trampoline postpartum x 8 years. ETA: it took ~1yr for my posterior vagina to feel ‘normal’ after birth of my first baby. The entrance/tightness was normal.
diff --git a/tests/data/txt/qa/Can't figure out positions that work right.txt b/tests/data/txt/qa/Can't figure out positions that work right.txt
new file mode 100644
index 0000000000000000000000000000000000000000..195491c99e3849d383e01aeb6f38401bbc65c598
--- /dev/null
+++ b/tests/data/txt/qa/Can't figure out positions that work right.txt
@@ -0,0 +1,2 @@
+Q: I am a 29m that just recently lost my virginity, so I've had sex a total of 5 times. I am dating a 30f who is somewhat inexperienced but not as inexperienced as me. I am relatively small (4 in). Both her and I are heavier (I am 225 lb) We have had plenty plenty of fun with oral and toys over the past few months but we recently moved into piv sex. All five times we have started and finished with missionary. This position works well for us. Other positions don't seem to work and I don't know if it is my penis size, my weight, or just inexperience from both of us. For example, we have tried doggy a few times but it is a struggle to find the correct angle and when we did, I would just pop out quickly, starting the struggle all over again. She seems more than willing to try most positions but I don't think she is ready to be on top. I am unsure why but I'm willing to work around that. Does this community have any positions or pointers for us to figure out how to make this work?
+A: Okay, this advice may seem harsh but I found it to be true in my own experience. Lose the weight. Get a gym membership, do compound lifts, supplement with cardio, and clean up your diet. It has SO many health benefits and sexual benefits. Like beyond belief. I was 300 lbs until I started getting laid at 15. Dropped down to a modest 195 by the time I was 17. Night and day difference. I assume you're shorter? 225 is about where my weight is now and not too far from a healthy weight for someone my height and body composition -- ideally I should be around 180-205. You will find you have more stamina, your penis will be less buried in body fat, and you will feel 100% better. It's basically the only way men can "add size" without surgery. So while you say you're small, it may just be that your two-guy is actually a little bigger, but there's adipose tissue in the way of you realizing your true potential. If your lady follows this advice, it's basically the same effect for her vagina. There's less in between your junk which means deeper and more meaningful contact. r/loseit is one of my favorite weight loss support subs.
diff --git a/tests/data/txt/qa/Can't stay into silent partners.txt b/tests/data/txt/qa/Can't stay into silent partners.txt
new file mode 100644
index 0000000000000000000000000000000000000000..07e96f70fd3a6c59c4c46cd57fae899f22454fd9
--- /dev/null
+++ b/tests/data/txt/qa/Can't stay into silent partners.txt
@@ -0,0 +1,3 @@
+Q: So I'm pan and in my thirties and it's really challenging for me to navigate one aspect of dating that I keep running into. I meet people and enjoy their company but sometimes the really quiet ones are nearly impossible for me to stay interested in for the long term because they rarely ever communicate much during sex. It's just near total silence the entire time and there isn't even any notice or loud noises or anything when they're finishing. I on the other hand am a normal amount of vocal and enjoy switching so while I'm ok directing what happens sometimes it's very challenging to stay interested in totally silent people. The current guy that I'm seeing is very quiet and protective and the first time we hooked up we went multiple rounds and had a great time but I needed to be in the driver's seat the entire time and direct everything. The 2nd time he said he enjoyed being dominant and in control so I took more of a backseat and kept trying to nicely push him to talk to me and direct me throughout the session and he just acted like a deer in headlights and basically shut down. I'm pretty new to this relationship but it's been a trend lately in other partners that they're just incredibly quiet people and trying to get them out of their shell during sex is a challenge. I just ended up not being into it anymore because it wasn't going anywhere and then he was sad that he "didn't perform well" because of it. He states a whole bunch of things but then also said that he needed to be drunk to be vocal and I feel that's personally a red flag that he feels he needs to be inebriated in order to really connect with me. I'm trying to understand him and was very clear that I didn't compare him to anyone else in the process of asking for what I wanted from him but it seems like it's frustrating for both parties. Does anybody have any advice for how I can do this less directly and also not turn myself off during the process or is this just a no-go? I enjoy other parts about his personality but if I'm just imagining him silently thrusting in the long term I'm not going to be satisfied enough to be monogamous in this relationship
+A: Especially if you’re out there dating, I think it’s a lot easier to find a lover who is more vocal than it is trying to turn a quiet lover into a more vocal one. I mean, if you already suspect that the two of you aren’t a great fit sexually? How much time do you really want to give to things to figure this out? I think you want to move on and you’re just making sure that you’re not being too hasty but I don’t think it’s too hasty
+A: It's totally normal to need a certain base level of communication in a sexual relationship. I'm like that too. My wife is very communicative, I'm very communicative too, and it's one reason we consistently have great sex. You may just need to keep looking. Don't stay with someone who you're unsatisfied with, and don't try to force them to change. Like you can give them a chance but if it doesn't resolve quickly and easily, move on. Good relationships are not ones where there is no conflict, but ones where you can resolve the conflict easily and quickly.
diff --git "a/tests/data/txt/qa/Can\342\200\231t perform (25f).txt" "b/tests/data/txt/qa/Can\342\200\231t perform (25f).txt"
new file mode 100644
index 0000000000000000000000000000000000000000..ef803086db7c8ea48c97c288de7244501ac37704
--- /dev/null
+++ "b/tests/data/txt/qa/Can\342\200\231t perform (25f).txt"
@@ -0,0 +1,4 @@
+Q: I (25f) gave birth in July of 23 and my now sex drive is completely gone . During and after my pregnancy so much stuff went on causing me to fall depressed and to top it off my boyfriend (30m) cheated on me during my pregnancy and after causing me to slip into post partum but MOSTLY made me lose all confidence especially sexually . I say all that to say that my sex drive has completely evaporated . This is coming from someone who was extremely hyper sexual and always horny . Now here it is over a year later and my sex drive is still gone , I’m never horny , my (what used to be a “waterfall”) barely even get wet anymore. What can I do ? Someone please help , I have tried libido pills , pills that help with wetness and all and but truly it’s my mental that won’t allow me to enjoy sex . I will be laying there doing the deed and then start getting worried about not being able to perform sexually and the worry causes me to not focus on the sex and then in result I don’t last (in a bad way) no matter how hard I try to be in the mood . It’s kind of sad cause I almost only have a good night if I’m drunk , what can I do ? I’m just scared my incapability to perform sexually will cause my boyfriend to start cheating again &&’ honestly can I blame him ? I want to talk to him about it just so it doesn’t go unexplained because I know he has noticed the change. But I don’t know how to talk to him about it. Please help.
+A: Are you able to see a therapist? If so, one with a trauma-informed approach might be helpful for talking/processing feelings. Also, holy SHIT your boyfriend sucks. If you had a close friend in the same situation, what would you tell them? I thought I was asexual in my last few years of marriage (a few years ago now); turns out I was just being emotionally abused/traumatized and was unable to connect to my body. I was using alcohol to also cope/enjoy sex because also was unable to get wet/orgasm otherwise at the time. (36, AFAB) You do not owe ANYONE sex; your body is probably not feeling safe, and that’s why you don’t have a libido. If your SO cheats on you, it’s not your fault - there’s no valid excuse. In addition, I think exploring solo sex (aka masturbation) could be a healthy route? For me, I’ve had to stop focusing on the “o” but instead just learn what different sensations/positions feel like and explore/learn about my own body without guilt/shame/pressure
+A: I’d dump him tbh he cheated on you twice betrayed you trust could be a reason why you got no sex drive when he can’t even stay faithful
+A: So let me get this straight. When you got pregnant and after the first few months. Your system completely shutdown your drive and it hasn't kicked back in nor has it had any power to even turn over the engine right? You might need another pregnancy to kick it back on which is a massive leap to pin ones hopes on. If you and your bf were/are hypersexuals or HL's then i can see suddenly being faced with a partner that is shut down would drive them to being weak willed. Still, it adds to the walls you've built in your head.
diff --git a/tests/data/txt/qa/Change in masturbation habits worry me. is it safe.txt b/tests/data/txt/qa/Change in masturbation habits worry me. is it safe.txt
new file mode 100644
index 0000000000000000000000000000000000000000..647416aee2f1431d9e829ac8e172873b6acf90b0
--- /dev/null
+++ b/tests/data/txt/qa/Change in masturbation habits worry me. is it safe.txt
@@ -0,0 +1,6 @@
+Q: I am 38 years old , married with 3 children and the past few months i find myself masturbating multiple times a day usually at night when everyone goes to sleep .. i orgasm and then for a reason i am still horny and continue doing till i orgasm 3-4 times at least .. i started using multiple toys and i am afraid i am getting desensitized. i feel guilty about it and afraid it means i have a problem. i am having sex around 2 times a week with my husband and i don’t usually orgasm because it’s very quick ..
+A: It isn’t unusual for a women’s sex drive to skyrocket in the years prior to menopause. My wife became insatiable in the years leading up to her change, and others have said the same. Luckily and happily I was the main recipient of her demonic sexual desire, on top of her getting herself off daily. It’s a great time of your life. The only advice I can give is to try and incorporate toys and more foreplay for you in your sexy time with your husband.
+A: I'm in the same boat. I've stopped feeling guilty. Talk to your husband about foreplay and making sure you get off first. And remember that sex doesn't have to be done just because he came.
+A: You have needs. You husband isn't meeting those needs. There's nothing wrong with what you're doing. If you feel like you're desensitized, just take a break. The sensitivity will return.
+A: It’s very quick. That couldn’t satisfy you. Why is he quick? Can’t he try to play with you and pleasure you more? If he doesn’t you shouldn’t suffer, unless this affects your everyday life (you stop doing things you have to do because you masturbate instead), that’s not a problem.
+A: i am having sex around 2 times a week with my husband and i don’t usually orgasm because it’s very quick .. The nahve more sex with him. He will last longer. Promise. And talk to him. Say what you want, what you need, how you need it. Awake the sexlife again. He will be happy.
diff --git a/tests/data/txt/qa/Communication issues around anticipated sex.txt b/tests/data/txt/qa/Communication issues around anticipated sex.txt
new file mode 100644
index 0000000000000000000000000000000000000000..e70dc96d10993c4639134f0b81580172bbac9992
--- /dev/null
+++ b/tests/data/txt/qa/Communication issues around anticipated sex.txt
@@ -0,0 +1,2 @@
+Q: I’m looking for advice on how to address blips in communication around physical intimacy between my partner and I. A little background- we often engage in flirty conversations, caresses, etcetera where both of us leave the interaction with the understanding that physical intimacy is on the table at later that day/night (usually a couple of hours at the most). We like the anticipation this builds when we aren’t able to engage right at that moment. Fairly frequently, my partner will not acknowledge that we had this prior interaction about being intimate. I will drop hints or even start the initial flirty interaction up again, but they won’t acknowledge the plan until it is brought up flatly (and by that point it is typically off the table). I want to communicate that I understand consent can be withdrawn at anytime and that we foster a bedroom environment where consent and safety are prioritized for both of us. Any advice on how to broach this topic with my partner or pinpoint what may be causing the hesitation to communicate when the plan has changed? It does seem to bother them (at least outwardly) but is causing me a bit of stress and confusion. It makes me feel as if I can’t read them or us at times.
+A: I think you are perceptive to pick up on that. I’d have a conversation specifically about flirting and what you both mean by it. It’s quite possible your partner just likes to flirt and even does it unconsciously. But that doesn’t mean they are necessarily thinking about having sex. Let them know how you’ve been interpreting it, and see how that changes the dynamics. You can also discuss how to subtly/easily tell the other person that you aren’t interested in moving forward that evening. That can be as simple as squeezing your hand to signify stopping, or a few phrases you get comfortable saying like “I’m not quite there tonight” or “I want you, but let’s wait until X day.”
diff --git a/tests/data/txt/qa/Concerns about my spunk.txt b/tests/data/txt/qa/Concerns about my spunk.txt
new file mode 100644
index 0000000000000000000000000000000000000000..f371303c51dd2ef3ebb3d77f4498ee692bc6124a
--- /dev/null
+++ b/tests/data/txt/qa/Concerns about my spunk.txt
@@ -0,0 +1,3 @@
+Q: Hi all, I am 26M and recently have been having more sex than I've ever had (new partner). On average, we are having sex about 20 times per week with each other. My concern is, my cum has become very watery - in fact, there's barely any sperm in it lately. Could this be because of the frequency of ejaculation? Does anyone have any ideas?
+A: Likely just because of how frequent yall are doing it. If you want it to thicken up a bit more, take a day of rest or consider only orgasming once (me and my partner will do this on our longer sessions, since he can really only go once a day anyway)
+A: Less density and volume but you still can knock her up. Plus if you are extra hydrated it will be more watery regardless.
diff --git a/tests/data/txt/qa/Confused about this.txt b/tests/data/txt/qa/Confused about this.txt
new file mode 100644
index 0000000000000000000000000000000000000000..16051a94f133cf02d030b3636b7bf46d689ecaef
--- /dev/null
+++ b/tests/data/txt/qa/Confused about this.txt
@@ -0,0 +1,3 @@
+Q: When my girlfriend gets horny, she obviously wants sex crazy much and often instigates me to do it, and during it she moans like crazy, but when she is not horny or not in mood she says she doesnt need sex at all and men definitely enjoy sex way more than women do, i love it but it never made me roll my eyes or squeak like unoiled door hinge... I recall having this kind of experience with few other girls already, what is the cause? Is it just hormones? I view my experience and desire for sex pretty much same, whether im horny or not
+A: but when she is not horny or not in mood she says she doesnt need sex at all It's not exactly a big mystery that people who are not horny or not in the mood don't need sex at all. I mean, they are speaking from a place of not horny and not in the mood. If you desire for sex is the same, whether you are horny or not, I'd say that means you are ALWAYS some level of horny. Horny is a default state. It's not for her. It could be down to something like "responsive" vs "spontaneous" drive, or it could be a lower drive. But "responsive" doesn't necessary mean lower.
+A: I suppose the defenition of "not wanting sex" is "not being horny/in the mood". Why is that surprising to you? I will be generalising a lot and there are huge individual differences, but there is no gender who would enjoy sex more than other. For men, it is kind of about quantity. You are kind of allways ready, do your mildly satisfying thing and proceed with living your life. For women, sex starts weeks before it really happens. It is slow build up of romantic tension, her being happy and content with life. Sexual act itself is just the cherry on the top. And it can be very good if the brain is fully involved. It is deep psychological expirience full of lust, trust, love and connection. About moaning - girls are somehow encouraged to be noisy by porn industry while guys are not. Maybe it is not THAT good to not be able to keep the mouth shut, but she just wants to let you know you are doing well and may continunue.
diff --git a/tests/data/txt/qa/Confused with my own clit! - clitoris stimulation.txt b/tests/data/txt/qa/Confused with my own clit! - clitoris stimulation.txt
new file mode 100644
index 0000000000000000000000000000000000000000..f97283d57d17c67f7ed015cc5a6340ef46373cc3
--- /dev/null
+++ b/tests/data/txt/qa/Confused with my own clit! - clitoris stimulation.txt
@@ -0,0 +1,3 @@
+Q: for over a month i switched to using a vibrator to help me climax. it works wonders but when i try to go "old fashioned" and use my hand to climax its unsatisfying and honestly doesnt feel like anything. i also noticed when using a vibrator it takes a longer time for me to climax, again it feels great but i used to orgasm around 7-8 minutes with my hand but now its taking 10+ with a toy. i want to switch back to using my hand just in case i dont have a toy around with me. is something off with the nerves in my clit?? i havent had sex yet and when i go to meet him i dont want to disappoint him when it takes longer for me to orgasm :( bonus question: what is vagina supposed to smell like? i understand its not supposed to be completely pleasant and rosy. but also not supposed to be fishy. whats in between smelling good and fishy??i
+A: I don't own a clit, so I'll leave that one to the ladies. As for the smell, it's a little hard to describe. It's similar to an armpit, but different. Don't worry about the smell, as your natural scent is perfect!
+A: Going back to your hand after using a vibrator is like trying to go back to cheap weed after going to Colorado— even if the first experience was fine, now the pleasure of the new thing is incomparable. Vibrators are capable of giving wayyyy more stimulation than a hand ever could. There’s nothing wrong with your body or how long it takes you to orgasm, everyone experiences pleasure differently ❤️
diff --git a/tests/data/txt/qa/Cunnilingus with a secret stoner.txt b/tests/data/txt/qa/Cunnilingus with a secret stoner.txt
new file mode 100644
index 0000000000000000000000000000000000000000..0e2a93d40b72c467bf507907315a6bd1a34d3131
--- /dev/null
+++ b/tests/data/txt/qa/Cunnilingus with a secret stoner.txt
@@ -0,0 +1,5 @@
+Q: false So… I’ve never experienced this before but i went down on this lady and her foof smelt exactly like weed. There was a slight onion twinge to it as well. I didn’t have the heart to ask if she had been smoking the green but I could literally taste it oozing out of her vulva. I cracked on and kept going for as long as I could but in the end it put me off and couldn’t cum. Just wondering if anyone has experienced this themselves. Or indeed if you’re a female weed smoker is this a thing? I’m not a connoisseur in vaginal aroma I just know it was not what I was expecting in the slightest! I felt very guilty after nearly 2 hours of sex but my brain wasn’t having any of it. My erection dissipated soon thereafter.
+A: I find that people I know who smoke pot a lot definitely OOOZE the stuff. And, back when I was still a casual smoker (cigarettes). my ex could ALWAYS taste it on me. I did a couple checks and, indeed, whether it was pychosomatic or what, I noticed that the taste of cigarettes did seem to pass through to vaginal fluids.
+A: Dunno about weed but I'm a cigarette smoker. It does seem like the smokiness.... oozes.... for me. My partner has confirmed that, even if I'm super well showered and cleaned, so it's not like smoke smell clinging to me elsewhere. I would imagine its the same for weed. I will speculate that hydration probably makes a difference, simply because it dilutes your various bodily fluids but that's just a guess, and anyway, something for her to deal with if she's concerned or you want her to address it.
+A: Yes, this is absolutely true. If a woman smokes weed her vaginal fluids taste grassy which is not so bad. If she smokes tobacco she will have a fumé blanc with seafood flavor that I find a bit off-putting. Girls have assured me that men have the same problem.😳
+A: Well sorry to hear about the poor experience. But honestly I've never had that issue. And I've been with someone who smokes daily for 17 years.
diff --git a/tests/data/txt/qa/Did I Cum Inside My GF.txt b/tests/data/txt/qa/Did I Cum Inside My GF.txt
new file mode 100644
index 0000000000000000000000000000000000000000..8ad83707b7459f38a6ed235fcf5a7feb5174669c
--- /dev/null
+++ b/tests/data/txt/qa/Did I Cum Inside My GF.txt
@@ -0,0 +1,4 @@
+Q: I was having sex with my girlfriend and I was about to orgasm. Out of nowhere my penis throbbed very lightly once like it does when you orgasm/ejaculate and then I pulled out then about 3 seconds later I started actually the orgasm and ejaculating. I looked it up and it says I probably had a pre-ejaculate orgasm but I'm not sure. Was that one throb inside her ejaculating or am I okay?
+A: Were you wearing a condom? Is she on BC?
+A: if she’s not on bc get a plan b
+A: The fast twitch muscle fibers in the penis and pelvic floor contract and release rapidly at ejaculation. While Kegels exercises can train these fibers and edging can be used to only get close to but not at climax; if you get close enough to climax, you will lose control, start to contract and release, and ejaculate. From your description, it sounds like you ejaculated.
diff --git a/tests/data/txt/qa/Effectiveness of condoms.txt b/tests/data/txt/qa/Effectiveness of condoms.txt
new file mode 100644
index 0000000000000000000000000000000000000000..83d0d07022b58229900803b6e81612bcd32c6c2e
--- /dev/null
+++ b/tests/data/txt/qa/Effectiveness of condoms.txt
@@ -0,0 +1,2 @@
+Q: To my fellow girlies who don't use hormonal birth control & have only relied on condoms - How effective has this been? What if we combine condoms with pullout? Do I need to abstain during ovulation week? Regards, ~ A nymph who wants to have all the sex but no babies or thoughts of 'em lmao, thanks!
+A: if you google condom effectiveness, there is some super robust data. pullout will not reliably increase the effects, abstaining during ovulation will if you are rigorous (google natural family planning, it is complicated and hard to donwell).
diff --git a/tests/data/txt/qa/FB possibly overstepped the line in.txt b/tests/data/txt/qa/FB possibly overstepped the line in.txt
new file mode 100644
index 0000000000000000000000000000000000000000..1ca08b859b74d76e92a8b33f5c87f98256909292
--- /dev/null
+++ b/tests/data/txt/qa/FB possibly overstepped the line in.txt
@@ -0,0 +1,2 @@
+Q: Hey, I want to know if I’m overthinking/ overreacting to this situation that just happened to me So I texted me fb to come over Sunday night. He texts me back stating that he’s horny. He comes over , we are in foreplay , he’s on top of me , kissing and grinding with no condom. Normally, he asks me if he can put a condom on and I say yeah. I will note that the foreplay is pretty heated and is going well, so I thought. So he starts grinding on me hard and I’m enjoying it But he then proceeds to penetrate me with no condom. I don’t think he did this intentionally, it’s just that we were both extremely horny and heated. I freeze internally, as I’m surprised by this move and completely thrown off guard because I didn’t give the ok for no condom . After a couple of minutes, he puts a condom and we proceed to have sex. I feel stupid , as I continued to have sex with him. I couldn’t find my voice in the moment and , I felt like I was overthinking it . This has never happened before and he’s normally good with wearing protection. I’m gonna get tested this Wednesday ( day off), he reassured me that he’s clean and that I’m the 1st person he’s had sex with since coming out of his 5year relationship . I like having sex with this guy and don’t want it to end but i want to address this issue with him and let him know that I was uncomfortable and feel slightly violated . Am I justified in feeling this way ? Any advice on what to say would be much appreciated . Sorry for the typos
+A: It is very normal and understandable to freeze/struggle to find your voice in a moment like that. You're being absolutely vulnerable with someone you've had every reason to trust til right now. The mental whiplash when that 180 happens and suddenly that trust is broken in such a vulnerable situation can be really hard to process quickly or respond to. Do not be too quick to gloss over this with 'it's not his fault, we were heated'. Yes people get heated. Confusing things can happen during sex. But anyone having sex has an absolute responsibility to not do something violating to their partner. If you can't control yourself enough to not violate consent, you shouldn't be having sex. Raw vs protected should be widely understood as a hard, clear line that always requires consent before changing to raw. Always. He was at best incredibly irresponsible and I would say moreso incredibly disrespectful to do that. Doesn't matter how heated he was. You don't get to just go raw for the first time without approval. You don't get to get 'lost in it' like that, because you have a responsibility to your partner. Whether you call it intentional or not, he did it for some minutes before stopping. It's not ok. Tell him straight up 'it was uncomfortable and felt violating that you went raw without saying anything to me. You didn't have consent to do that and it upset me, and I need you to recognise that. I like having sex with you, but that can't happen again, and I want to know that you understand how serious that was for me'.
diff --git a/tests/data/txt/qa/FOMO Over Not Being Able to Orgasm During Sex.txt b/tests/data/txt/qa/FOMO Over Not Being Able to Orgasm During Sex.txt
new file mode 100644
index 0000000000000000000000000000000000000000..009e687967201e08d66aa0741b63c1eb380e1a41
--- /dev/null
+++ b/tests/data/txt/qa/FOMO Over Not Being Able to Orgasm During Sex.txt
@@ -0,0 +1,5 @@
+Q: Hi all! So long story short, I can’t orgasm during sex. My partner spends a lot of time on foreplay, it feels really good (just not in an orgasm way), and then we do PIV until he’s done (which again feels good, just not in an orgasm way), then cuddle. Recently I’ve just been feeling really sad and a little jealous afterwards that I don’t get to experience orgasms during sex (I finish myself after I go home if I’m still pent up and not spending the night). I know that sex is about the journey (pleasure/intimacy/etc) more than the destination (orgasm) but I’m finding it hard to internalize that. Any advice/anybody successfully overcome these kinds of feelings? I don’t want to build up negative feelings/resentment around sex.
+A: It is ok to take things into your own hands and help yourself cum. Don’t go home and do it. Touch yourself with your partner there. Maybe it will help show him what you need to get off.
+A: If you can masturbate to orgasm then why can't you incorporate that into your sex life with your partner?
+A: before the cuddling, masturbate and let yourself orgasm!!!! have him help too if you’d like or have him lay next to you while you do it yourself :) whenever i don’t orgasm during PIV, when my partner is laying in a post nut daze, i usually grab my toy and use it to finish. sometimes i want him to fondle my breasts and kiss me, sometimes i want him to just watch, and sometimes i just tell him to close his eyes because i want alone time 😂😂 i used to think this is embarrassing but he’s usually pretty KO after he cums so it’s whatever now 😂
+A: Your guy needs to multitask. My girlfriend doesn’t climax from PIV alone. So our position is on the couch (I kneel on the floor while she is sitting on the edge of the couch, her legs resting on the ottoman or some chairs). While I’m doing her, i simultaneously massage her clit (me kneeling on the flooring gives me easy access). Works 100% of the time. Sometimes I also lick and pinch her nipples. She loves that move. Good luck.
diff --git a/tests/data/txt/qa/Feel absolutely nothing during sex.txt b/tests/data/txt/qa/Feel absolutely nothing during sex.txt
new file mode 100644
index 0000000000000000000000000000000000000000..8a7478231ece8cd028e3771b3cd3a989046e7f6e
--- /dev/null
+++ b/tests/data/txt/qa/Feel absolutely nothing during sex.txt
@@ -0,0 +1,7 @@
+A: by sex, do you also mean oral?
+Q: I’ve been sexually active for years now and its been the same problem every time. I don’t feel a thing during sex The most i feel is being stretched, and thats it. No pleasure or anything. I have to rely on clitoral stimulation alone just to reach orgasm. I feel so jealous when i hear women talking about sex and how amazing it feels for them. I feel like i’m missing out.
+A: Only 18% of women can orgasm through penetration sex alone. You are not in that 18%. Frequently, clitoral stimulation needs to be added to penetration sex. You could try the reverse cowgirl position because it will give you good access to stoke your clitoris while you ride his penis.
+A: I’m the exact same way, but I’ve never even come close to an orgasm. I don’t even feel anything when I touch my clit. Completely at a loss for what to do. I think something may be medically wrong or something idk. It makes me so upset that I can’t love sex as much as other girls my age do.
+A: This was me and then it wasn’t anymore. I find that very few people have helpful information about how to learn how to enjoy penetration, which is understandable, because everyone’s body is different and it’s not a one size fits all thing. But I can tell you what worked for me. I bought a dildo, a silicone one with a nice curve (a “g-spot” dildo). I already knew how to make myself orgasm with my fingers or a vibe on my clit. I started to masturbate the same way I always did but with the dildo inside me - not even moving, just inside. I noticed that my orgasms seemed easier and stronger if it was inside me, even though I didn’t really feel particular pleasure inside. After a lot of experimenting, I figured out that I liked “nudging” it against certain spots inside me, with teeny tiny movements. I started to prefer masturbating with it. Then, I was able to take that information to my partner and teach him how to “nudge” in that way. And as I’ve kept having PiV since then, I’ve noticed that I keep learning more and more about what I find pleasurable and it’s easier and easier for me to explain it to my partner. I know this might not be helpful to you at all, but I wanted to offer it because I know it seems so hopeless and discouraging to not enjoy this type of sex that is such a default in our culture. To be clear, I think it shouldn’t be such a default, and I think that it’s a good practice for people to de-center PiV in their sex lives. But I also believe that it’s not something that you either enjoy or you don’t and if you don’t there’s no hope for you - I believe our bodies can often adapt and learn and change.
+A: I have the same problem actually, it sucks
+A: This was me for SOOOO long and then when I got my first boyfriend, I started to feel bursts of pleasure here and there. The more I liked him, the more pleasurable it became. I think I found that it can only feel good when I have deep feelings for the other person
diff --git a/tests/data/txt/qa/First raw sex & creampie questions.txt b/tests/data/txt/qa/First raw sex & creampie questions.txt
new file mode 100644
index 0000000000000000000000000000000000000000..7323dfca26bd217e36b883b96ccee70631a3269a
--- /dev/null
+++ b/tests/data/txt/qa/First raw sex & creampie questions.txt
@@ -0,0 +1,5 @@
+Q: My boyfriend(20m) and I(19f) have been in a relationship for more than 3 years now and sexually active for a year, while using condoms and him pulling out before he cums. Lately I have this desire for him to do it raw and cum inside me while we are having sex, especially while I am ovulating. I have heard it can be messy, but I am really curious to experience how it truly feels. Is it really much better than sex with condom and as amazing as porn and reddit makes it out to be?
+A: It feels amazing for sure, but I really wouldn't recommend it unless you want to get pregnant. The feeling isn't worth the hassle of getting an abortion or an unwanted child. Also, if you don't want to get pregnant please use real contraception, instead of letting him pull out before. That's NOT safe.
+A: Depends on what kind of pleasure you're seeking. If it's about physical pleasure... probably not. (To me, sex with or without condom really doesn't feel that amazingly different.) But I'd say a lot about female sexuality is about managing the risk of pregnancy. If you use some particular form of contraception, you'll feel invulnerable. If you use some other, you're.... not. You might not be able to get this stuff together. I have great sex myself. Diaphragm and spermicide. Mostly fine with guys cumming in me without condom. Probably fine 'cause I'm getting old. For younger people? ...uh, ask your doc if going on pill is good for you.
+A: get on birth control beforehand! I always fuck raw and love creampies, my iud works like a charm fighting off that sperm lol
+A: Yes, sex without condom is much better, but you should be aware of STDs and pregnancy. Why do you want to try without condom when you're ovulating? Sperm can live up to 5 days inside you so is it worth a risk? If you have a regular cycle (28 days) perhaps practice without condom at the end of your cycle 26-28th day when the possibility of pregnancy is almost zero.
diff --git a/tests/data/txt/qa/First sex in car i need help.txt b/tests/data/txt/qa/First sex in car i need help.txt
new file mode 100644
index 0000000000000000000000000000000000000000..bf7680cb147c6e4b25c48a6be5797a2325f3edeb
--- /dev/null
+++ b/tests/data/txt/qa/First sex in car i need help.txt
@@ -0,0 +1,5 @@
+Q: So i (M19) have one question about sex in car. Ive never done it and im planning it with one girl. But here is the main problem, ofc it needs to be done on backseat or in trunk (i have combi so its possible for me) so how am i supposted to start and tell her that i want it? Like is it good idea to just park it somewhere private, and instantly go on backseats or there should be some foreplay first on frontseats? I dont really know cuz to this moment, ive never had sex somewhere else than in bed. One more thing i could say is, we are just FWB, nothing else.
+A: Just have a conversation with your fwd about this before getting in the car altogether. Ask what they think would be sexy/exciting in terms of foreplay, positions, etc. If its the first time for both of you, exploring and finding what works best for you is part of the fun. make sure you bring something to clean up with. it's nice to have some kleenex, paper towel, wipes, etc. having a few bottles of water is good because you can rinse your hands (which feels better than just using wipes imo) I will say Ive had the most success in cowgirl (fold down the back seats to make a flat-ish platform. then particularly where she leans forward and you just drill her from below), or doggy (across the backseat) or standing doggy (me standing outside the car, her kneeling ass-out on the seat, door open. But I haven't had a van. if you can get a camp mattress in there, that seems like the pro move
+A: Start slow. Nothing less sexy than someone jumping you. If driving, touching her leg is always a classic. Stopping at a light and looking over, looking her up and down, maybe moving hair out of her face or something. Playing some R&B, all things to set the mood. Maybe saying “would you like to park somewhere private?” Would be really obvious as to wanting to do something. Remember though: sex in a car in a public place is illegal and you are taking a risk of public indecency should anyone catch you. Also; sex in a car can be awkward because of the lack of room. So take it easy and embrace the silly awkward parts.
+A: keep it simple. depends on where u live but i’m assuming it will be night. maybe pull up to somewhere to “see the view” ie top of a parking garage if it’s close (that could be rizz) otherwise just anywhere quiet is fine. DEFINITELY a little foreplay in the front. you can either climb to the back seat or open the doors. it’s not that awkward i promise and i’ve seen it been done both ways. don’t overcomplicate it with the trunk
+A: The back seat is pretty cramped. I recommend laying the front seat all the way down and doing it there.
diff --git "a/tests/data/txt/qa/Flex disc and oral sex - have you had it Do you not like it Do you enjoy it It is asking a lot \360\237\245\262.txt" "b/tests/data/txt/qa/Flex disc and oral sex - have you had it Do you not like it Do you enjoy it It is asking a lot \360\237\245\262.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..290bb5cd76e22fc4887260150fedf948cd547bb0
--- /dev/null
+++ "b/tests/data/txt/qa/Flex disc and oral sex - have you had it Do you not like it Do you enjoy it It is asking a lot \360\237\245\262.txt"
@@ -0,0 +1,3 @@
+Q: I’ve never tried using a flex disc but I’m on my period and while period sex doesn’t bother either one of us…oral sex is my favorite part of the whole experience. And I reallllllllly want to fully go through allllllll the steps. So I see where flex disc advertises “mess free sex”…is it “mess free” enough for oral sex to not be a hiccup?? We’ve never done this while on my period…so I feel like he is probably not a fan (otherwise we would have done this by now) which I fully understand!! So I’m hoping this can make it a pleasant experience for both of us?? 🙏🏼
+A: You should try the disc first before you bet on it, I love it but it doesn't with the same for everyone, because anatomy is different. I'd say if you clean up the area before hand, and he stays with the exterior areas, and the disc works for you, it would be totally fine for oral. The discs do "dump\empty" for most folks when you use the restroom due to the muscles you're using (some consider a bug, others a feature, I'm in the former camp), so that might occur depending on how tense you get when receiving.
+A: The disc is 10/10 in my experience and my husbands. Go for it.
diff --git a/tests/data/txt/qa/Friend asked for a threesome with her bf, need advice!.txt b/tests/data/txt/qa/Friend asked for a threesome with her bf, need advice!.txt
new file mode 100644
index 0000000000000000000000000000000000000000..227dbc28c312f86a8b56db536d40a35a325981f5
--- /dev/null
+++ b/tests/data/txt/qa/Friend asked for a threesome with her bf, need advice!.txt
@@ -0,0 +1,5 @@
+A: Any time you do a threesome with a couple and a friend of one or both of those people, especially for the first time, there's risk of damaging or ruining the relationship between the couple or the friendship or both. You can try to minimize the risk by talking about it in advance and setting clear boundaries on what is and isn't allowed and then sticking to those boundaries, but people don't always know how they're going to feel when it's actually happening. If you and the boyfriend seem to be enjoying each other too much, your friend could get upset with one or both of you, so pay close attention to how she's feeling and reacting to things and stop if there's any sign of a problem.
+Q: My (22F) friend Kelly (22F) and her bf of 6 months (20sM) want to have a threesome with me, I’m really worried about ruining the friendship, but I am kinda tempted by this offer and not sure what to do. I’ve never met her bf either as he lives a couple hours away, but I’d definitely want to at least video chat beforehand. We’re both bi, she’s never been with a girl and I don’t have a lot of experience. As in, I’ve literally only had sex twice, once with a girl and once with a guy but neither experience was great. Honestly, I have been really desperate to get more experience and I’ve been craving a fulfilling sex life, which she knows as she’s been trying to help me on the dating apps. I do get a lot of matches, but I have anxiety and I’m neurodivergent, so it never goes anywhere as it feels too scary to meet up with a stranger. Kelly knows I’ve said I’d be so much more comfortable hooking up with someone I’m friends with first so she asked me as they’ve never had a threesome and are looking for someone. They’re both switches/verse and though I don’t have any experience with this I’m fairly certain I’m strictly a sub/bottom. I know one thing she does want is reciprocal head, which I am willing to try as I haven’t given and don’t think I’m into, but you never know until you try. Obviously we would talk about it at length first, but am I crazy for even considering? We’ve been friends for almost 5 years so I don’t want to ruin things as Kelly is one of my most reliable friends. At the same time, it could be a safe environment where I feel comfortable to be able to explore my sexuality without the anxiety of meeting up with a stranger. Just looking for any advice on how to handle the situation 😭
+A: It will either go 1 of 3 ways... It goes great and the friendship gets STRONGER. Nobody gets jealous. All relationships are still in tact. The threesome goes great BUT, friend gets jealous because bf spends more time with you than her Both friendship AND her relationship end due to jealousy.
+A: I did this at 23, but it ruined the friendship, because I caught feelings. I’d say I don’t regret it because it was an important formative experience, and I learned about my sexuality and what I need to experience pleasure (the girl used a hitachi wand on me for my first time!)- I learned multiple things from that threesome I still use a decade later. You may learn things too!!! Things that helped it be fun: go on a “date” with the couple. I did this and then we went back to my dorm room and had a group make out/touching session which helped flesh out comfort with each other and chemistry. I think FaceTime isn’t as good as an in person meet- you need to know if your body feels comfortable with this new guy. I like that you’ve already had the switch/sub conversation. So they know that one or both of them will have to be in charge. Have they ever opened their relationship before? It’s definitely better if they have experience with non monogamy. Things I would’ve done: raise your concerns about how this may affect the friendship. What happens if it’s great and one of you wants it to happen again? What happens if it’s not and one of you doesn’t want it? What happens if there are feelings? What happens if it eventually causes issues in their relationship? Talk about outcomes and how to preserve the relationship afterwards. Think for yourself about what you need to maintain the friendship and put it out there. If you think you’re a person that easily catches feelings I would absolutely not take this risk. But if you aren’t and you like what you’re hearing and feeling with them it can be a pleasurable and fun experience.
+A: Honestly, I'd do it. You are young, friends come and go. Play around, see what you like.
diff --git a/tests/data/txt/qa/From the back.txt b/tests/data/txt/qa/From the back.txt
new file mode 100644
index 0000000000000000000000000000000000000000..a725afad98222f71fcccada0720e3cac00b66c3a
--- /dev/null
+++ b/tests/data/txt/qa/From the back.txt
@@ -0,0 +1,3 @@
+Q: Getting fingered from the back in doggy style feels much better than laying on your back. It's so good, I start 🤤 drooling. Any one else agrees?
+A: My gf is exactly like this. I believe it’s because I’m close to her posterior fornix which I can’t quite reach (though I can when fucking her). Close enough. 😜. Have your partner use his middle two fingers extended and first and fourth fingers curled back (opposite of 🤘configuration). He’ll be able to teach just slightly further which makes a difference. It’ll also give him more flexibility with his wrist and elbow, allowing him to rotate his fingers inside you and switch to g-spot stimulation (palm side down). Also very popular. Add nipple play and / or clit stimulation of course. You might find that sitting back on your heels in doggy will enhance it so give that a try. In either, having your shoulders down and ass up is likely better. Have fun experimenting.
+A: I’ve never been fingered in that position
diff --git a/tests/data/txt/qa/Fucking in hotel beds.txt b/tests/data/txt/qa/Fucking in hotel beds.txt
new file mode 100644
index 0000000000000000000000000000000000000000..147b422a91a8f6e240ba2b2afe4cc1803ad6dbe6
--- /dev/null
+++ b/tests/data/txt/qa/Fucking in hotel beds.txt
@@ -0,0 +1,6 @@
+Q: Airbnb owner here looking into replacing the queen bed of my short term rental. Lots of couples book it for romantic escapades and I was wondering what a good bed for sex should be like. I want guests to come back. Any ideas?
+A: If you’re willing to replace the frame as well… A head board that has bars to tie down to and the same with the base would be sweet. Also a bed that you do not have to jump on to because it’s so high.
+A: this is such a sweet thing for an airbnb owner to be worried about
+A: Beds that don’t move or squeak. Noisy beds take me out of the moment. We have had to McGyver solutions many times. We now go as far as to look at the bedroom pic to prescreen the bed and won’t stay if not sure the bed won’t walk across the room during sexy times. A mirror across from the bed is a fun surprise and those are the rooms my husband votes for. Seconding the sentiment of good tie down spots for extra spicy play. Also voting in favor of noise masking if neighbors or other guests might be concerned with noise. As far as the mattress, supportive and not sagging is important so def need a box spring or solid platform not slats. God bless you for your contribution to healthy and happy relationship get aways!
+A: Some beds have no bounce. If they are all foam and no springs they will be like running in sand. You want at least a hybrid bed. Foam and springs.
+A: Waterproof mattress cover lol
diff --git a/tests/data/txt/qa/GF (26) Never Initiates Sex and Its Ruining My Lust for Her.txt b/tests/data/txt/qa/GF (26) Never Initiates Sex and Its Ruining My Lust for Her.txt
new file mode 100644
index 0000000000000000000000000000000000000000..eebc5a84efd14ff28299825747b11aee6bc6d70c
--- /dev/null
+++ b/tests/data/txt/qa/GF (26) Never Initiates Sex and Its Ruining My Lust for Her.txt
@@ -0,0 +1,6 @@
+A: Your complaints and desire to cheat aren't going to decrease with marriage and kids. She has a lower libido than you, there are no medical 'fixes' for that. She isn't going to go to the doctor one day and come back with it 'fixed'. She could have a hormone panel run to check her hormone levels. But at her age it is likely to be normal. This is who she is. You could learn to accept maintenance sex i.e. like the sex she currently gives you when she sees you are upset to maintain the relationship. Some men are ok with this type of sex. You date to find out compatibility. Sex is a big deal- you have found that out. You DO know what to do, it just hurts to do it. You're 25-- decide if you want it to hurt now or for the rest of your life.
+A: She’s not “choosing” to stay in the past. Most people who have bad experiences are able to reconsolidate the memories every time they come up to filter out the really bad parts and neutralize the memories so their bodies don’t have a trauma response. However, people with PTSD have problems reconsolidating the memories, which means they feel like they are right back in the experience when they recall it. It sounds like she could definitely use therapy for this. As for her not initiating or not taking you up on your initiation, I wonder what activates her desire for sex with you. Maybe words of affirmation or a feeling of safety within her body. Maybe a certain type of touch on the face or a certain type of communication and connection with you. If you can have a conversation about the hat, then maybe you can incorporate more of the things that turn her on into your daily life. You can share similar things about yourself and maybe she will be receptive to them too. And then maybe you guys will both be in the mood to at least consider saying yes to a sexual advance instead of rebuffing it.
+A: "Honestly, this is some next level sacrifice for love. I can barely make it to the gym regularly for my partner. But in all seriousness, it sounds like you two really need to have a heart-to-heart about your relationship and your needs. And maybe try some new things in the bedroom to spice things up. Just leave the cheating out of it, okay?"
+Q: false I (25M) have been dating my GF (26F) for roughly 4 years now. Sex had been great in the first year, especially during the honeymoon phase. But for the last 3 years, I found myself always initiating sex which had lead me to insecurity and the feeling of being unwanted. Whenever I initiate, she would 95% of the time turn it down (brush it off). Sometimes, I'd get upset when she brushes it off but when she notices that I'm upset, she reciprocates. I appreciate her for doing that but I only feel the desire to do it if SHE's also in the mood (or at least reacts). But I noticed that she only reciprocates when I get upset so that I don't end up breaking up with her or cheating on her even though I ensured that I would never do that. We've discussed this issue so many times. She says that she really wants to try and fix her libido but she never had. To be fair, she was sexually assaulted by her ex like 9 years ago. I never ever pressured her into sex and I've always been patient with her and held back my sex drive many many times. She told me that she wants to improve her libido and I've tried helping her too but she NEVER actually tried. I get that she had a bad past but everytime we discuss her sex drive issue, she always brings up the fact that she was assaulted. I get it and I feel for her, but does that have to be brought up EVERYTIME? Can she at least try to move on for my sake instead of sticking to the past. Now i know that some of you might say that "if this is a deal breaker, then leave". But I've literally sacrificed and done SO much for her and shes even gotten super close with my family. I don't want to leave her because I do love her as a person. But I am scared of how this will eventually turn out if we were to get married and have kids. It got so bad to the point where I almost did cheat on her but I didn't. I honestly don't know what to do. Also I don't think there are any issues with the sex because I do a lot of foreplay and oral and I make sure to give her an orgasm before I finish (although its pretty hard for her). She doesn't have an issue with my size either (I am above average) and I can control however long she wants me to go for. We switch up positions a lot as well and she told me I was the best she's ever had compared to her previous exes. EDIT: Whenever she had "Brought it up" I've never talked back to her about it. I've never called her out saying things like "Stop mentioning that". I know that she still feels ptsd from it. She told me she desperately wants to improve her libido. To me, it seems like she already moved on because she talks about her ex as if hes just a nobody and a piece of trash. What doesn't make SENSE is that she never once had tried to improve like going to therapy or experimenting even though she KNOWS that I sometimes get upset. She KNOWS that this will eventually become a bigger issue once we're married. The issue isn't that we don't have enough sex. We only really do it once every 2 months which is fine by me. The ISSUE is that she never reciprocates or initiates the sex and that makes me feel insecure and unwanted, even though I know in the back of my head that that's not how she thinks. But I can't help feel that way after experiencing this for over 3 years now.
+A: Lack of sexual compatibility will not bode well. I’ve (F) been there; I went through the stages of sadness, depression, self-doubt and finally ambivalence. It was exceptionally difficult for me to upend my life - a life where I finally had family again via two bonus kids & SILs, where my spouse & my group of friends all got along perfectly, and where life was generally nicer having my partner around. However, I hated being that couple where we didn’t give/show affection and I didn’t see a point being attached to a person who didn’t find me attractive any more. It will get more & more difficult the longer you wait and realize forever without sex is a deal-breaker, unless you sleep with others on the side.
+A: My first question would be, did she begin birth control at any point during that time? Sounds about like what I and my bf went through, never did I realize it was the birth control and also thought it was because of my previous history with assault. We went without sex pretty much for years (bless my bf for staying with me) after 10years of a sketchy libido I finally came off birth control and now I initiate more often than he does. Not all women lose their libido to birth control but alot of us who do, often have no idea and think something is wrong with us. Might not be it but this sounds so similar to what I experienced I had to mention it Best of luck!
diff --git a/tests/data/txt/qa/General Dick Question About Getting Maximum Engorgement In Erection.txt b/tests/data/txt/qa/General Dick Question About Getting Maximum Engorgement In Erection.txt
new file mode 100644
index 0000000000000000000000000000000000000000..e48556e3db901b8ed367fb27a4285151196d0826
--- /dev/null
+++ b/tests/data/txt/qa/General Dick Question About Getting Maximum Engorgement In Erection.txt
@@ -0,0 +1,3 @@
+Q: I notice during sex or masturbation I get more engorged and bigger when hard and stretching my dick downwards 45degrees. It noticeably looks thicker, feels harder and looks longer because the base comes out of my fat pad a little bit more I also have this effect when my gf pulls my balls downwards in the direction towards my taint causing my dick to flex downward and get engorged. It makes sex feel way better to Anybody know why this is the case and if there is a way to get similar engorgement hands free? I’m wondering if ball stretchers could do this for me. I’ve had erections with this engorgement as a teen but not really since then unless I get that downward stimulation
+A: might wanna try a cock ring
+A: There are cock rings that go over both your cock and your balls and then stretch the balls. https://oxballs.com/shop/ols/products/maxsling-steel-oxballs-outlet-limited-edition
diff --git a/tests/data/txt/qa/Getting Over Insecurities.txt b/tests/data/txt/qa/Getting Over Insecurities.txt
new file mode 100644
index 0000000000000000000000000000000000000000..59a2405fe4fb5f43ee402b1352a7f1bb38729058
--- /dev/null
+++ b/tests/data/txt/qa/Getting Over Insecurities.txt
@@ -0,0 +1,5 @@
+Q: I am a mom of four. I’ve been with my husband for over 16 years. We have always had an active sex life. But for the past 6 years or so. I am not a fan of the light on or sex during the day because of my body. I was always smaller, and now, after our fourth was born 6 years ago, I’ve gained a bunch of weight that I can’t seem to get off. I exercise and eat right for the most part. But it’s killing my confidence. I want my body hidden during sex. Men, what would make your wife sexy to you if she has gained weight? I’ve begun wearing lingerie to show off my breasts and hide my stomach, and he says I’m still sexy to him, but I just don’t feel it. And I know he’d love for me to lose weight. ***I struggle with dirty talk as I don’t curse. I have upped my oral sex game and offer frequent blow jobs, but I’m always the one to initiate… I want him to want me.
+A: I’m going to ignore trying to change your opinion of your own appearance and instead focus elsewhere Sexiness isn’t just about appearance. Being passionate and desiring is a huge turn on for anybody, particularly men who often find themselves as initiators. Focus not on yourself and how you look, instead focus on giving attention to him, making him feel good, making yourself feel good, and appearance will fade out of your mind and you will both have a great time.
+A: Being confident no matter the body type is gonna be sexy and it will show to others. My wife has felt the same as you after having kids. I adore her and her body, lights on and all. In fact I love the lights on cause seeing her body and face enjoying herself is what gives me pleasure as well. When she is feeling confident she does try to wear a sexy outfit or does playful touching/teasing throughout the day. Additionally for our relationship, other forms of intimacy keep that flame going. Sometimes we both are too stressed/busy and have to relight that flame, but we both agree it’s important. Based on your other comments OP, you should try to discuss these feelings and needs with your husband.
+A: Make sex fun again, flirt, tease, build tension, and rub him over his clothes. Good sex begins with goood build up
+A: My wife has 100lbs on me, and I love every single one of them. You don't need to ask Men what we find sexy because your man doesn't have the weight issue that you do. You seem to think that you need to be smaller to find yourself sexy. Guess what, you don't. You can be 400lbs and still be sexy. You can be 80lbs and be sexy. There's no rule book for being sexy. Be sexy and let yo mans enjoy them thick thighs.
diff --git a/tests/data/txt/qa/Getting him to like oral.txt b/tests/data/txt/qa/Getting him to like oral.txt
new file mode 100644
index 0000000000000000000000000000000000000000..5793f70fd929783aafac87e60cdf8ce638b9bfa4
--- /dev/null
+++ b/tests/data/txt/qa/Getting him to like oral.txt
@@ -0,0 +1,6 @@
+A: This was an issue that should’ve been resolved before marriage. You’re probably not going to get him to like it - perhaps you can convince him to do it out of duty - and this will likely lead from the frustration you appear to be feeling now to resentment and ultimately disdain. That said, it’s certainly worth the effort to try to better understand his hang ups and make sure you’re well groomed and freshly showered before oral. In fact, maybe you should ask him to shower with you and wash you up, which could be sexy in and of itself. Best of luck.
+Q: How do I get my husband to like oral? He likes receiving but when it comes to me he's said he's had bad experiences and doesn't like it. I'm wondering if not shaved or not clean any idea
+A: But did he tell you that it was hair related? He needs to explain what his bad experience is. The other person could have had BV or something and it went untreated. That’s unrelated to you. Communication and willingness is really important for both of you.
+A: Do men think women have not had "bad experiences" giving oral? That's always the excuse.
+A: Gotta lick it before you stick it
+A: I have been with some guys who love the hair.
diff --git "a/tests/data/txt/qa/Gf will have sex with me if I\342\200\231m \302\253a good boy\302\273.txt" "b/tests/data/txt/qa/Gf will have sex with me if I\342\200\231m \302\253a good boy\302\273.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..de915c28d7c65dfafe57f6cbc7af4ceae3d3ea8e
--- /dev/null
+++ "b/tests/data/txt/qa/Gf will have sex with me if I\342\200\231m \302\253a good boy\302\273.txt"
@@ -0,0 +1,6 @@
+Q: TL;DR; : My gf uses sex as a means to encourage good behavior. Or am I overthinking this? So me (m41) and my gf (f40) have been together for a year now. Sex has always been an issue. We have sex maybe once a week/every 10 days. She knows I want sex every other day/3 times a week, but she usually ends up getting a migraine when we go to bed and she notices I hint at having sex. Yesterday, she said we would maybe have sex if I was a «good boy». Of course I’m always a good boy. But again, yesterday nothing happened. I was even on my best behavior the entire day. I think that rhetoric is kind of strange. It’s like she wants to reward me with sex as if I’m her dog or something. What also bothers me is that she would give me sex for acting a certain way, not because she wants me. What I want to do is to wait for her to ask me to get her phone or something, then carry her phone to her in my mouth, while crawling like a dog. Then drop the phone in her lap, pant and ask her if I was a good boy? And if we could have sex now? I know it’s stupid but that comment triggered something in me. Is this what she thinks sex is? A negotiating device to encourage good behavior? Or am I overthinking this? Edit: grammar and typos Edit: Went to the sub «deadbedrooms» and noticed many ppl mentioned their partner had endometriosis. Well my GF has the same thing. It might be the reason she has problems having sex with me. She could still help me though, right? Her hands and mouth doesnt hurt do they? I mean I constantly hint that Im starved. She says shes stressed, I tell her I could give her a massage. I even stress that it doesnt have to be sexual. I just want to touch her. Nope, she doesnt want to. She says she needs a shower. I tell her I can lick her clean instead. (Yes it might sound desperate but shes so gorgeous and Im sex starved. Try having your gf touch your c*ck and tease you every day and then turning her back against you when you go to bed, then we’ll talk). She wont let me. I tell her I can go down on her, she doesnt even have to do anything back. Nothing.
+A: This isn’t something that is going to improve. Discuss this with her and then make a decision whether a semi sexless relationship is something you’re ok with.
+A: manipulative. will not improve. cut your losses and look for someone more compatible
+A: Some people have a kink for this, although it's pretty clear that's not what's happening here. That role play needs to be a 2-way discussion and agreement and this clearly is not. She's obviously using this to AVOID having sex, not enhance your sex life through play. In the absence of that, weaponizing sex by using it as a reward/punishment is abuse. It will warp your perception of sex over time, possibly to the point that you'll struggle in future healthy relationships. I'd get out of there, personally. This is sexual manipulation and you're doing yourself harm by subjecting yourself to it.
+A: This is not a healthy relationship, and you don't have enough invested into to try to (MAYBE) let it become a healthy one. A healthy relationship is one where you're both happy to find each other at the end of the day, where you can share your hopes, dreams, gripes, pains, and daily successes. It shouldn't be complicated. She's making you beg for something that she should be wanting as much as you. You'll be much, much better off finding someone else without this horrible attitude.
+A: She is using sex as a currency. Time to get off that crazy train. She is a manipulator.
diff --git a/tests/data/txt/qa/Girlfriend never wants sex.txt b/tests/data/txt/qa/Girlfriend never wants sex.txt
new file mode 100644
index 0000000000000000000000000000000000000000..c9d0702a6015c198ffa07373814b5457054d2d8f
--- /dev/null
+++ b/tests/data/txt/qa/Girlfriend never wants sex.txt
@@ -0,0 +1,4 @@
+Q: 19M and my girlfriend 19F we’ve been together for just under a year and she just never wants sex. We have sex about once a month only when she wants it, whenever i try to make a move I get shutdown and she is just never sexual. I’ve spoke to her about it how It makes me feel but she just says that’s how she is and doesn’t wanna change anything, what can I do?
+A: Time to move on, thank me later.
+A: It won't get any better in the future. If you are displeased & unsatisfied now, imagine how you will feel in 3, 5, & 10 years with the status quo. You need to either accept this reality or take action satisfy your needs.
+A: If she doesn’t want sex you can’t make her. Leave. You’re not sexually compatible so neither of you will be happy in the long run. She’s going to resent you for pestering her and you’re going to be resenting her for not wanting sex so just save both of you the trouble and break up with her.
diff --git a/tests/data/txt/qa/Gonna have a finger up in my ass tomorrow, help!.txt b/tests/data/txt/qa/Gonna have a finger up in my ass tomorrow, help!.txt
new file mode 100644
index 0000000000000000000000000000000000000000..deb1553211668fc671ad4dc9c482a175c60887ff
--- /dev/null
+++ b/tests/data/txt/qa/Gonna have a finger up in my ass tomorrow, help!.txt
@@ -0,0 +1,5 @@
+Q: I have never tried Anal Sex before, but I am very open to that idea with my boyfriend. The first time he slipped a finger up in my ass, I WASNT DAMN CLEAN. It was purely sudden, and there was quite frankly, shit. Tonight, I probably teased him a bit too much and now he wants to put a finger up my ass again (I am perfectly fine with that and I dont feel pressured dont worry) but I DON’T KNOW HOW TO CLEAN. Especially for the one that’s gonna happen like tomorrow. I don’t have a douche with me at the moment, and there’s no near Adult stores from where I live lol. The only tip I know so far is to not eat anything 10hrs lol (came from my gay bsf). Any other tips please?
+A: You can get an enema kit from any drug store or Walmart.Clean out, lube up, and have a good time.
+A: Fast, try multiple times a day to use the restroom. The best word of advice I’ve ever heard was “You can’t knock on shits door and be surprised when shits answers the door”. It’s part of the game. 🤷🏼♂️
+A: It's always crazy to me when people are surprised that there's poop in a butthole. Every time my wife and I did anal there was always a little bit of shit on things. Just don't put the shit back IN the vagina. Once things go in the butt it's only for the butt for the rest of the session.
+A: Getting a bidet changed my life; they’re also fairly easy to install and you can get fairly inexpensive (and decent) ones on Amazon!
diff --git a/tests/data/txt/qa/Having problems cumming.txt b/tests/data/txt/qa/Having problems cumming.txt
new file mode 100644
index 0000000000000000000000000000000000000000..1ed89e680f93b8528f262018df640f9819950527
--- /dev/null
+++ b/tests/data/txt/qa/Having problems cumming.txt
@@ -0,0 +1,2 @@
+Q: Hi, both me (18M) and my gf (18F) lost our virginity to each other and it’s been rocky, i’m pretty big (8 inches, no one ever believes me not even her until she saw it 😭) and we struggled to even get it in until i learned about foreplay, I can manage to make her finish now but i can’t for some reason? Not from either head or sex, is something wrong with me? I’m rock solid and very attracted to her but I just can’t finish, i last like 1-2hrs before she needs a break. Any advice would be appreciated as it’s affecting her confidence as a woman.
+A: How often do you masturbate?
diff --git a/tests/data/txt/qa/Having thoughts about weird old boss.txt b/tests/data/txt/qa/Having thoughts about weird old boss.txt
new file mode 100644
index 0000000000000000000000000000000000000000..0b127642bdd22155eab2b1f0f7a91e485e4ae0c9
--- /dev/null
+++ b/tests/data/txt/qa/Having thoughts about weird old boss.txt
@@ -0,0 +1,2 @@
+Q: My boss used to tell me the wildest shit and after talking to my younger coworkers (teenagers) I realized he was an actual weirdo, borderline pedo, but I can’t stop having sexual thoughts about him. Like I feel I wanna sleep with him but my mind is like… girl why would you want that from him?? Idk lol is this even the right place to vent about
+A: You need post nut clarity. This isnt it
diff --git a/tests/data/txt/qa/Having trouble with sexual compatability - what's too much and too little.txt b/tests/data/txt/qa/Having trouble with sexual compatability - what's too much and too little.txt
new file mode 100644
index 0000000000000000000000000000000000000000..93bde5337761b18f29aec4c24c8b7c30ffc3ea52
--- /dev/null
+++ b/tests/data/txt/qa/Having trouble with sexual compatability - what's too much and too little.txt
@@ -0,0 +1,3 @@
+Q: I've been wrestling with this lately in my relationship and I'd like some advice. Obviously on a throwaway. So in February, I was with my boyfriend for a year. I'm 20 and he's 22. We broke up due to a lot of perceived differences(had a fwb thing going on for a bit), and got back together just about two months ago. However I'm having doubts again. I love him, we laugh a lot together, we've been through tough times together, and I know if we broke up this time, I wouldn't be able to talk to him again out of respect for future relationships. There's no casual way to explain to any future partner that I'd want to still be acquaintances with my ex. That's fine with me, it would just suck obviously. It all comes down to sex. We had a conversation last night about our sex life in which we both got frustrated, me especially. The fact of the matter is that what gets either of us off is very different. He's very much a sub/switch, and I'm esentially a brat/sub. He can be masculine and dominant, but per his words, it's only about at a 20%. A lot of his kinks also heavily tie into the fact that he's not dominant. He has a lot of kinks, too. Meanwhile he's asked me time and time again what I want and, well, I'm very simple. I'm not completely vanilla, but by his standards I'm some kind of saint. Being tied up, I like monsters sometimes, I like lingerie. I'm just getting to feel like his kinks may be too much for me. Compromise is apart of relationships, but when he asks for so many things that are out of my comfort zone(no, he doesn't try to force or push), it makes me feel like I'll truly never do enough or never please him. Like we'll constantly, for the rest of our lives, have an argument about sex every 3 months because I'm constantly compromising. And yes, he does do what I want aswell. Most of sex is what I want, funny enough. But again, it's just not enough for him. And I have also tried and done plenty of his kinks on a daily basis, but it's always more he wants. I just don't know what to do. I know relationships are about compromise but how much compromise? Do you compromise in your relationships? Are you and your partner(s) basically into the same things? Do you do some things simply because you love your partner?
+A: This is too much compromise. You are incompatible. "He's very much a sub/switch, and I'm a brat/sub." - You summed it up. Good thing is you know how you lean sexually and what you want- and he isn't it.
+A: Here’s one way to approach this: Think of all the things you like as a circle. Same with your SO. How much overlap is between them? That’s the middle ground that works for both of you. But then pay attention to what’s NOT in the middle ground: the stuff you like but they don’t and vice versa. Call this what’s “out of bounds” So the question becomes: is the overlap good enough to make up for not being able to enjoy those things that are out of bounds? Only you two can answer that. But the point that I’m trying to make is neither you nor your partner should expect the other to shift their entire circle in order to create more compatibility. That’s engaging in wishful thinking. instead, focus on the reality in front of you and then make a decision about whether that reality is good enough or not. Few couples have 100% overlap but couples who are happy with their sex life are ones in which there’s enough overlap to keep both people feeling fulfilled. Is that you and your partner?
diff --git "a/tests/data/txt/qa/He said he couldn\342\200\231t keep it up because I am \342\200\234 too cute\342\200\235.txt" "b/tests/data/txt/qa/He said he couldn\342\200\231t keep it up because I am \342\200\234 too cute\342\200\235.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..5570c9d5e3874e8bdd3aee32aa972fe312e9eeb5
--- /dev/null
+++ "b/tests/data/txt/qa/He said he couldn\342\200\231t keep it up because I am \342\200\234 too cute\342\200\235.txt"
@@ -0,0 +1,5 @@
+Q: I have been with men before who couldn’t keep it up for various reasons, but I (f31) and the guy I’ve been dating (m29) have tried to have sex 3 times now and it hasn’t lasted long because he’s loses his erection. He told me that he was frustrated and upset and he really wanted too but because I’m “too cute” he can’t keep it up. I know I need to address this with him more, but does anyone have experience with this? I guess I’m wondering if it’s because I’m not like “sexy” or it’s because he’s nervous?? Do we just have to take more time? Men with ED issues, does me being “too cute” sound like a viable reason or just a random excuse?
+A: He’s nervous, losing his boner and just saying shit lol it’s a mental thing. he’s psyching himself out n since it happened a few times each time is worse because that’s on his mind. If u like him you have to make him feel super comfy if it goes soft don’t trip on him or get insecure it makes it worse, keep doing stuff act like it doesn’t matter. He’ll get back right with patience, then the balls rolling.
+A: Storytime. Twenty years ago I was starting to fool around with the man who has become my husband. And the first few times, the erection wasn't reliably in the room. He said something incoherent about how he was really into me but blah blah and we just sort of shifted over into touching and sucking and fingers. We weren't even having penetrative sex at that stage in the relationship. I was young and inexperienced but I chose to take him at his word and smooth the things over by shifting into other sexy funtimes until or if the erection came back (results varied, if I recall). And after that first month, guess what. We have twenty years of 95 % reliable penis performance. Erections are a bit like Tinkerbell. You have to believe in them. They come and go a little bit and the neurochemicals of anxiety can really interfere. I think he knew we were going to be special together and it made him anxious at first. I just showed him that I was happy to be in the room, rubbing around on him feeling good. That simple.
+A: Open communication is important here. Ask what he means by cute, but in an open and curious way (not in anything close to an accusatory tone, especially since he’s probably sensitive)
+A: He's definitely stuck in his head He likes you a lot I see a couple of directions Very gently take control and focus on touching him all over. Everywhere, but his dick or balls. It doesn't have to be ultra-sexy. The average man doesn't usually get very much touch day to day, so slowing things down can be helpful for him to feel grounded in his body, rather than concentrated on one party. I've had good luck doing this with a partner. Have a conversation with him while you're both clothed and not in the midst of sexy time. Maybe you want to talk about your expectations about sex. What works, what doesn't, etc.
diff --git a/tests/data/txt/qa/Heavy bleeding after losing virginity.txt b/tests/data/txt/qa/Heavy bleeding after losing virginity.txt
new file mode 100644
index 0000000000000000000000000000000000000000..e0f7c7c9c3db02b114607ae599a0e2601a9e8e90
--- /dev/null
+++ b/tests/data/txt/qa/Heavy bleeding after losing virginity.txt
@@ -0,0 +1,2 @@
+Q: Me and my boyfriend have mostly done foreplay and it's gone well, however one time I ended up bleeding pretty heavily after he fingered me and it lasted about a day. I assumed it was because his nails weren't cut or he was too rough. When I lost my virginity I didn't bleed, but we had sex for the second time and I've been bleeding somewhat heavily with blood clots, seeming like a period for at least three days now. I'm also on Nexplanon, so I shouldn't even have a period as per my doctor so I doubt its that. Should I see a doctor? There's no pain or any symptoms other than bleeding
+A: see a doctor as soon as possible. like go to the emergency room if you’re able to kind of see a doctor. while it could be nothing, it could also be something super dangerous and serious and those aren’t the chances you want to take especially when it’s already been three days
diff --git a/tests/data/txt/qa/Help! I hate how I orgasm (female).txt b/tests/data/txt/qa/Help! I hate how I orgasm (female).txt
new file mode 100644
index 0000000000000000000000000000000000000000..5825bd26495142b7cbe242ba69fe516f0a162a18
--- /dev/null
+++ b/tests/data/txt/qa/Help! I hate how I orgasm (female).txt
@@ -0,0 +1,5 @@
+Q: I hate how I orgasm because it isn’t sexy at all. I started masturbating young by pushing on a pillow in my lap. I had to be quiet to not get caught so I always held my breath, which actually added to the experience by building up pressure. I would flex my abs by “crunching” forward and then when enough pressure built up I could cum. Basically, I grunt and my stomach pushes out and I’m leaning forward like I’m taking a crap or something. It’s NOT sexy. I’m trying to retrain my body so I feel comfortable cumming in front of my husband but I need pressure to build or I can’t even get close to cumming. Also, when I do cum, I need to push down on my clit or the orgasm stops. Like, my orgasm seems permanently linked to application of pressure. Also, I can’t make a sound because I’m holding my breath like a psychopath and my face gets all red. I’m afraid one of these days I’m going to have a stroke from it. My husband prefers more vocal orgasms but when I try to be vocal, I can’t hold my breath and then I loose the pressure. Also, I can’t cum during sex because the way my body has to be positioned and how I need to push down doesn’t allow for it. Here is what I’ve tried: Vibrators- hate them. Just causes overstimulation and numbness. I’ve tried several. G-spot stimulation: It doesn’t build pressure but it can add some good feelings if I’m already going to cum. PIV itself doesn’t get me stimulated though. Tribbing- I’ve tried tribbing but it’s like I have to crunch up my stomach and hold my breath to get anywhere and I really just don’t feel comfortable doing that in front of anyone. It’s so unattractive and I’m just not going to do it. The only thing good about it is I can cum almost anywhere because I’m so quiet and all I need is something in my lap or to push down with my hands while holding my breath. Am I a lost cause? I’m feeling really hopeless. Women- how do you cum without pressure build up? Do any of you actually arch your back when you cum like in porn? Is my anatomy just broken? I feel like I’m never going to have the sex life I want because my body just won’t cooperate. I feel like I’m fundamentally unsexy and my husband should have married someone else and I should just resign myself to solo orgasming on a toilet watching porn of people having the kind of sex my body will never let me have and then flush myself down the toilet like the crappy lay that I am.
+A: When I was young I used to dry hump a pillow to orgasm. I still do it to thos day if I wake up way too early in the morning and can't get back to sleep. It took nearly 8 years of marriage to admit that (I can cum from just PIV also, but anal with a vibrator on my clit is now my favorite). Let me tell you that humping a pillow until that pressure builds and then being pentatrated and pounded through an orgasm is amazing. Talk to your husband about what you are experiencing, don't put it off.
+A: Has he ever seen you orgasm? Maybe from masturbation? I would bet my bottom dollar he finds your orgasm hot. No matter how you do it. I think it sounds hot. Why shouldn’t he?
+A: This is so relatable! I can (almost) only cum on my tummy, with a partner only ever in prone, and by myself about 98% of the time on my tummy. I tell every partner this because I feel they’d want to know. I also have to hold my breath. My partners have all really leaned into that to make sex great for me!
+A: One thing I want to mention is that I believe that people’s orgasms are for themselves, not for their partner. This might sound harsh, but I don’t think your husband really “gets to” have a preference in how you look or sound when you orgasm. It’s just not about him. Needing to tense your muscles and apply pressure to your clit is a very very normal thing. I think it’s quite likely that with some practice, you’ll be able to figure out how to incorporate those things into partnered sex (love the idea of lying on top of a pillow! For me, I find squeezing onto my partner’s penis/fingers while they’re inside me and staying still to help activate those muscles I need to orgasm). But in order to practice and explore effectively, you’ll need to be feeling relaxed and comfortable - and it sounds like you feel the opposite of that! Feeling self conscious during sex is such a pleasure-killer. If you have a good, intimate relationship with your husband, do you think you could talk to him about how you’re feeling? Maybe you could work together to figure out ways he could help you feel more comfortable.
diff --git a/tests/data/txt/qa/Help!!! cleaning toys.txt b/tests/data/txt/qa/Help!!! cleaning toys.txt
new file mode 100644
index 0000000000000000000000000000000000000000..b3a6d6a7f6cbe7bd6c69709b0ed338377bad1a52
--- /dev/null
+++ b/tests/data/txt/qa/Help!!! cleaning toys.txt
@@ -0,0 +1,4 @@
+Q: I am a 20F who is new to using toys this past year and I uses toys pretty frequently. I've been using Dove Fragrance Free Body Wash Ultra Sensitive to clean the toys. Is that bad to use? Should I be using something else?
+A: Fragrance free, gentle soap should be fine.
+A: You could try using Dial anti-bacterial hand soap to clean the toys.
+A: We use ivory dish soap. It's worked wonders since we switched and she's never gotten a yeast infection or a UTI. The spray cleaners from the sex shops were giving my wife yeast infections, even though those harsh cleansers were thoroughly cleaned off.
diff --git "a/tests/data/txt/qa/Help. I (19F) don\342\200\231t know pleasure.txt" "b/tests/data/txt/qa/Help. I (19F) don\342\200\231t know pleasure.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..54af09d93adc079dec4489daabaaa2362a89ee7b
--- /dev/null
+++ "b/tests/data/txt/qa/Help. I (19F) don\342\200\231t know pleasure.txt"
@@ -0,0 +1,3 @@
+Q: As it is in the title. I have a bf and I do have a great time with my partner during sex but I can never cum and I don’t really know what he can do so I feel more pleasure. He has helped me a lot, bought toys, foreplay, dirty talk… at this point I know it’s me😂 But I don’t know what to do! Help please 🙏🏼
+A: Have you managed to come by yourself yet? That’s usually a good first step.
+A: Haha I'm glad you have a sense of humor about it! Does sex feel good? If you're feeling no pleasure, that's a more severe issue than just not reaching orgasm. You should check out r/BecomingOrgasmic and r/pompoir. Those folks have helped a lot of women learn to orgasm and learn lots of different ways to orgasm, and the pompoir sub will teach you lots of fun stuff to make your boyfriend feel good, too! Also, if you're able to, talk to a pelvic floor specialist. If you're in the US, you'll probably want to talk to your primary care doctor, and they'll refer you to one. This is a really common problem, lots of folks (mostly women, but not exclusively) have problems experiencing pleasure and orgasming. Can you cum on your own?
diff --git a/tests/data/txt/qa/How can I (21F) find people who share my kinks in my community.txt b/tests/data/txt/qa/How can I (21F) find people who share my kinks in my community.txt
new file mode 100644
index 0000000000000000000000000000000000000000..bbd7b8a1a14dcaed7176668f15180579900c5a76
--- /dev/null
+++ b/tests/data/txt/qa/How can I (21F) find people who share my kinks in my community.txt
@@ -0,0 +1,6 @@
+A: The best you can do is look. There are a lot of places where people with kinks meet or talk, so the only thing you need to do is look. But always take in consideration your safety and personal well-being, after all there are places just trying to scam you and everything, also try looking depending on your state. As long as you maintain safety everything is alright. Hope you find what you're looking for, have a blessed day.
+Q: I (21F) have always been interesting in someone bending me over and spanking me for being naughty. I feel like it’s not too crazy of a kink but I do not find many people who are interested in doing something like that. I am starting to think I also want to explore other kinks as well but I don’t know if sex communities are really a thing or where I can find people for group sex. Is this a thing that people can find in their communities or is that just in the movies. Sorry I know this post is all over the place but I have just really wanted to explore my sexual side. Help a girl out! Thank you in advance.
+A: The spanko community is a distinct subset of the overall BDSM community. Fetlife can be a good place to look for meetups and spanking parties. You can also use the BDSMpersonals subreddit here. My experience has been that lots of kinky people are into spanking to a degree, but if you’re really a “spanko” (that’s your big kink and you like a certain aesthetic and themes that go along with it, especially punishment related), it’s really ideal to find other spankos specifically. A lot of kinky people will use the term “impact play” to refer to spanking, but I find that’s usually a sign that they have a different mentality towards it than me! Also I know spanko is a dumb word, I despise having to use it! But it is useful for looking for the people you want to be looking for.
+A: Join a website like Fetlife where you can associate by kink.
+A: This is fairly common. I do this to my FWB.
+A: A very common kink should be easy to find others
diff --git a/tests/data/txt/qa/How can I (F19) help my boyfriend (M21) with getting me to climax.txt b/tests/data/txt/qa/How can I (F19) help my boyfriend (M21) with getting me to climax.txt
new file mode 100644
index 0000000000000000000000000000000000000000..864e8823b0087908ab222934dda42374c831cfa9
--- /dev/null
+++ b/tests/data/txt/qa/How can I (F19) help my boyfriend (M21) with getting me to climax.txt
@@ -0,0 +1,4 @@
+A: Please have him watch as many instructional videos as he can find… People laugh at the idea but in reality most people don’t learn until they’re taught to do something
+A: Communication is always the answer. If he’s looking for tutorials I would suggest he spend some time watching female orgasm porn, slow and steady solo play will teach you how a woman like to warm up and the signs to look for when an orgasm is imminent
+Q: false Hi! I’ve been dating my boyfriend for a couple of weeks now and we had sex with each other twice for the first time this past weekend. I’ve never orgasmed from sex nor has a man ever given me an orgasm. It makes my boyfriend feel poorly about himself because he isn’t able to get me to finish, but I can get him to finish quite easily. I explained to him that I still very much enjoyed it and he was good, but he still feels badly about himself. I don’t think I can climax from just vaginal sex without any clitoral stimulation. The closest a guy has ever gotten me to having an orgasm is when he went down on me, but my boyfriend isn’t comfortable with doing that (which is fine) What techniques can we use? TL;DR My boyfriend can’t make me orgasm and it hurts his confidence. What tips can be used to help with our situation?
+A: Most girls can't climax from penetration alone. Rubbing my clit with my hand or vibrator while having sex has been a game changer for me.
diff --git a/tests/data/txt/qa/How can I become more sex positive as a conservative person.txt b/tests/data/txt/qa/How can I become more sex positive as a conservative person.txt
new file mode 100644
index 0000000000000000000000000000000000000000..0c116d56c5f3996901930ac52748fc2ef18d4566
--- /dev/null
+++ b/tests/data/txt/qa/How can I become more sex positive as a conservative person.txt
@@ -0,0 +1,5 @@
+Q: I (20F) lived in a very conservative, traditional christian home where no one talked about sex. My mother didn’t even tell me about my period and how it works nor did she explain to me how to wear a pad and forbade me from wearing tampons. I have a boyfriend (23M) who is much less conservative and traditional but christian. He talks about sex and all so easily while I struggle to even say basic words like ‘dick’ ‘fuck’ ‘pussy’ etc. I am not as sex positive as he is and I wish to be more like him. I lost my virginity to him and when he asked how it was at the end I got so flustered and couldn’t respond. I used generic words and didn’t describe in detail what I liked and what I disliked. I need recommendations on how to break out of my shell and become more sex positive. What shows, books or any other form of media can I look into to learn more? It actually doesn’t have to just be media form, any form would be appreciated.
+A: Yeah I also grew up in a conservative traditional household. The way I actually discovered sex and my sexual side was by reading stories with really detailed sex descriptions. It was like reading porn lol, but it definitely got me to be more sex positive. Not sure if you already are, but try to have fun being sexual alone too.
+A: Listen to some sex podcasts. It should open up your vocabulary.
+A: I’d like to recommend the following books: come as you are, beyond shame, and the vagina Bible. Please also do the workbook with the come as you are book. These books will guide you through finding the language to explain yourself.
+A: im 34, not religious, raised in a sex positive house, love sex etc and i also dont say nor like those words and i dont see an issue with it. i use emojis for them when were doing it over text hahaha. what im saying is you dont have to force yourself to use crude words if youre not comfortable with them. wanting to be more sex positive is good though, good luck with it! :)
diff --git a/tests/data/txt/qa/How can I easily incorporate ball touching during sex.txt b/tests/data/txt/qa/How can I easily incorporate ball touching during sex.txt
new file mode 100644
index 0000000000000000000000000000000000000000..31e6b749eaed36b5d8cbe89dda0282e8d19e23ef
--- /dev/null
+++ b/tests/data/txt/qa/How can I easily incorporate ball touching during sex.txt
@@ -0,0 +1,6 @@
+Q: I recently started seeing a guy 41m and I'm 24f. He really likes me to touch his balls during sex but it's difficult for me to reach and touch his balls while also enjoying the sex myself. It's a new thing for me so I'm curious what suggestions you folks may have. I'm quite flexible and can hold my weight for a while with one hand but not really sure how to do so easily and sesually.
+A: During missionary, just reach between your legs and massage them (easiest when he's penetrating slowly/mid-speed). Reverse cowgirl is the easiest access to his balls, spit/lube your hand up and that's it. Cowgirl takes balance and you leaning backwards-- not easy and you might wanna give it a miss. Dirty talk can add to the situation depending on what you guys are into ("these are my balls" if he's submissive, "give me your cum/drain your balls into me" etc) whilst touching, massaging, tickling, light nail play etc.
+A: try reverse cowgirl, great position to play with the balls
+A: During blowjobs are the best. During intercourse getting the right position can be difficult. Just every so often give him a cock and balls worship blowjob and he will love it.
+A: Why not cowgirl or reverse cowgirl then you would have easy access to his balls.
+A: I like doggy style. She reaches back grabs my balls. Pull them towards her each time I thrust inside her. She squeezes them tighter and tighter. Then releasing when i explode inside her.
diff --git a/tests/data/txt/qa/How can I orgasm during sex.txt b/tests/data/txt/qa/How can I orgasm during sex.txt
new file mode 100644
index 0000000000000000000000000000000000000000..6ee8904c375dfbf3a29666cc974955489ab53206
--- /dev/null
+++ b/tests/data/txt/qa/How can I orgasm during sex.txt
@@ -0,0 +1,6 @@
+Q: So my husband and I have amazing sex. But I cannot come without my vibrator. No matter how hard he tries, and especially not during sex. Do you guys have any tips? Its been affecting my sex life.
+A: MOST women cannot cum without clitoral stimulation. Don't feel bad about it
+A: He could use the vibrator on you during sex if you want to orgasm during penetration
+A: What’s wrong with using the vibrator? A lot of women need clitoral stimulation. Or if you’re worried about overusing it, just manually stimulate.
+A: Is the goal is to orgasm during penetration? Because by your very phrasing you are disregarding nearly all the important times of sex. The touching, stroking, nibbling, licking, pressing, rubbing. All of that is sex. Sex isn't merely penetration. And everyone should prioritize all those other sexy times that feel good. It's not a "dick in a hole" full stop. Ahem, back off my soap box. If your goal is to orgasm while his dick is in you, first of all get really good at rehearsing getting you to orgasm. Do you come with your vibrator when you are alone? Does he use the vibrator on you to make you come? Can he get you hot and bothered and then stick his dick in you in one of those many positions that allow good access to the clitoris, such as from behind side lying or with him astride your leg, and then you use the vibe and do all your usual stuff to make yourself come? Truth is, for most women, the dick alone is not going to cause orgasm. It just isn't. I say this as a woman who loves dick. Find great ways for the two of you to make you come, and then add his dick. You may, as many women do, find this to be initially distracting (that's a subtle way to say difficult), but once you get there with your regular clitoral stim you may find that it feels fantastic to have the stretch and pressure of your partners dick in there during the orgasms. While you go about doing your usual things you need to do to get off. Now, if your goal is the "handsfree" orgasm where his dick magically makes you orgasm without your or him attending to your clit ... This is less likely but not unattainable. This is where you really need him on board, because the sex poses that are most likely to stimulate a woman aren't necessarily the most simulating or instinctive for a man. Look into coital alignment technique. If you can get yourselves into missionary (male or female superior) and then "ride high in the saddle" you can get it so that he's inserted and there's also lots of pressure and friction over the female upper genitalia where the clitoris is, with each stroke. Typically it's less sensation for the man, so they don't stumble into the practice incidentally. Best of luck.
+A: Someone asked this question to a sexologist. Her answer: First thing is to know that most women can't have an orgasm with penetration. Get him to stimulate both your g-spot. Finger inside, tongue outside. You have to guide him there as in tell him when he hits the spot. Also contrary to popular belief, when you are masturbating keep using your vibrator. However, as you are doing that you want to experience inserting dildos or your husband. Then slowly stop using the vibrator. You would want to make this a combo. Make your body get used to having something inside = orgasm. Tell him to want to bring toys to the party. Butt plug, vibrator, handcuffs... I believe it was on french ytube.
diff --git a/tests/data/txt/qa/How can I teach him to eat me better.txt b/tests/data/txt/qa/How can I teach him to eat me better.txt
new file mode 100644
index 0000000000000000000000000000000000000000..f420a1fa5a31aba9142b9b03f86edcb670ce2b59
--- /dev/null
+++ b/tests/data/txt/qa/How can I teach him to eat me better.txt
@@ -0,0 +1,6 @@
+Q: Trying to find a way to tech my man how I like to receive (honestly just focus on the clit 90% of the time for me) I don't wanna necessarily say it straight up like that and make him feel weird. I just don't feel much pleasure unless that's the focus. How can I teach him how I like it
+A: Be vocal when he hits the spot, when he wanders off just say something along the lines: "please go back, that was the spot". Hopefully he will learn what you like after a few times.
+A: Point him to the book “She Comes First”. Lots of good technique there.
+A: Well for someone being taught something... the person being taught must be open for suggestions. Is he? Are you guys talking about sex, desires, fantasies, wishes and all that? Asking because men often think they know what should please but fail to take into account that porn is not real life and every woman could be different in what she needs to have pleasure. Just asking though. Look, you have a big advantage here. You know what you like and there is nothing else than telling your guy but since you don't want to talk straight you can only try to guide his head to the fun places and let him know through positive sounds and remarks that you enjoy it. And hope that he gets it. I don't know why he should feel weird if you were to tell him straight. My belief is that a caring and loving partner would be absolutely thrilled to have the knowledge to make you enjoy yourself, possibly all the way and find pleasure in giving you that... All the best and lots of fun
+A: “Oooh yeah right there, don’t stop!”
+A: Just express when it's good by some moaning, and nothing when it's not. He should understand!
diff --git a/tests/data/txt/qa/How do I ask my fiancee not to come on to me for a while.txt b/tests/data/txt/qa/How do I ask my fiancee not to come on to me for a while.txt
new file mode 100644
index 0000000000000000000000000000000000000000..d430ff3e8f1fdba11c64e76c78b4c229b41da355
--- /dev/null
+++ b/tests/data/txt/qa/How do I ask my fiancee not to come on to me for a while.txt
@@ -0,0 +1,5 @@
+Q: In between working full time, getting off some medication I was on, and finishing my Masters, I have been exhausted and run down. Sex is really the last thing on my mind, I'd be happy with once a week or so. My fiancee has a very high sex drive and would prefer every day. I'm usually fine with more frequency but recently as I said, I'm just not in the headspace for it. Recently we've been running into this issue where she comes on to me knowing that I'm tired, or in the morning that I have a billion things to do, and gets hurt when I turn her down. I feel awful about it and she feels rejected. I always tell her she's beautiful and sexy (and she is) and it's a me problem, and she never gets mad or upset but I can tell she is hurt. I've thought of this, but don't know how to bring up, that for the next few months maybe she should not initiate at all. That way she doesn't end up feeling rejected and when it's a go time, she'll know. I'm just not sure how to phrase that.
+A: You want to not have any sex for the next few months? You definitely need to communicate that to her and see if she's okay with it. Be honest that it is going to impact her, her self-esteem as well as her sex life, and she's basically going to suspend her sex life until you signal you are ready to start again. Many partners will be understanding, sounds like she will be one of them, but do take the time to truly explain that you understand the hit you are asking her to take. Don't approach it as though you're asking for no big thing. Your phrasing is totally fine- "Sex is really the last thing on my mind. I feel awful about turning you down so maybe you could not initiate for the next few months until I'm back in the headspace to be a sexual partner." "How do you feel about that? Are you ok with that? I know I'm asking you to sacrifice not only our shared sex life for a few months but also the sexual connection and that's a big thing. I need you to know it has 0 to do with my attraction to you, it's 100% my headspace. And I need to know if you truly are ok with this because it's a lot to ask."
+A: Don’t think of this or present this difference in libido as “just a me problem.” This is a “couple” problem. Balancing mismatched libidos is a common problem for couples and it can be really difficult to manage without hurt feelings and frustrated libidos. This not necessarily an issue that will be suddenly resolved once you’ve gotten your masters, or once you are married, or once you have the job you want. The ability to manage changing and conflicting libidos is something that will be valuable throughout your relationship with your future wife. Have a frank talk about how much you each want sex and what you both need to be satisfied. Neither of you needs to make excuses for why one wants more sex or why the other wants less. It’s ok to want what you want. From there start brainstorming together about ways you can both get what you need without one person feeing neglected, nor the other person used or over-extended. This might mean you have sex a little more often than you want, or that she masturbates more frequently. You might find that holding and kissing her while she masturbates in bed is much less exhausting than actually having intercourse. This might mean scheduling more sex when you have light schoolwork days and know you’ll have more energy/time. Go on the r/sex wiki WITH you fiancé and check out the section on mismatched libidos. There are a bunch of good ideas on there for how couples can deal with differing sexual desires. This is not a you problem, this is something that you’ll both need to find good compromises on together. Good luck with your fiancé and good luck with school!
+A: Just to throw this out there, telling someone you don't want to have sex for a few months doesn't prevent feelings of rejection, it just making the rejection constant background noise.
+A: No one likes rejection but how they handle it is a basic sign of maturity. OP: I’d have a candid discussion with my partner to say “I have to be honest and right now, I may not be in the mood for sex as much as usual because of all this work stress. I promise to let you know when the conditions are right and I don’t mind you asking if you’re ok with the fact that some of the time, I just won’t be up for it. It’s not personal. I just want to make sure that when we have sex, I’m in the right frame of mind, you know?” Meanwhile you know can also have this conversation: What forms of intimacy make each of you feel fulfilled? Is there a middle ground where they overlap?** People aren’t necessarily “low/high libido” for everything. It’s more like a menu: there are certain things low libido folks might be more open to, more frequently that stop short of conventional PIV, for example. Likewise, a high libido person may be open to a variety of ways that scratch their particular itch. This question requires both people to be flexible and avoid all-or-nothing mindsets. It’s a reminder that it’s better to treat sex as a wheel, not a staircase. Sometimes, my partner just wants to be able to masturbate in front of me but doesn’t want it to be any more interactive than that. But that scratches her itch, so to say, and I enjoy it because I like watching her enjoy herself. it feels intimate and connected even though it’s not the whole shebang we might go through on a night where we both want to really get into it with each other. Especially in your situation, being creative and flexible would work for both of you
diff --git a/tests/data/txt/qa/How do I handle masturbation.txt b/tests/data/txt/qa/How do I handle masturbation.txt
new file mode 100644
index 0000000000000000000000000000000000000000..4d76d9cd1015049d4d2aac60d77982af39eb88de
--- /dev/null
+++ b/tests/data/txt/qa/How do I handle masturbation.txt
@@ -0,0 +1,5 @@
+A: Masturbate as many times a day as you like! Only be concerned if it interferes with school or work, or spending time w/ family or friends. And, it is ok to skip an evening out w/ friends every once in a while to have amazing sex with yourself ;)
+Q: Sometimes in the evening or rather close to every evening, I somehow get horny and end up masturbating and I fear it may turn into an addiction or something concerning? Should I be concerned it may turn into a habit or even an addiction?
+A: Addiction is a word that’s used pretty irresponsibly. Especially in religion, which is where most of us inherit false ideas about what it is, especially with sexuality. As others have said, addiction is not the same as a habit or merely finding pleasure in something. It means something is preventing you from functioning at an essential baseline as an independent person. Most people have not experienced true addiction. You’re fine.
+A: My friend's doing it for last 40 years and he's still not addicted.
+A: When you start doing it because you're bored rather than horny, that's where the problems start.
diff --git a/tests/data/txt/qa/How do I talk dirty _ encourage him to cum.txt b/tests/data/txt/qa/How do I talk dirty _ encourage him to cum.txt
new file mode 100644
index 0000000000000000000000000000000000000000..574b411448824c3b07e7b3d75548ea6d20a3036b
--- /dev/null
+++ b/tests/data/txt/qa/How do I talk dirty _ encourage him to cum.txt
@@ -0,0 +1,6 @@
+Q: I gave him a blowjob/handjob recently and he mentioned after he had a tricky time finishing because I was “too quiet” and he needed more encouragement. I always resort to the classics - does that feel good, are you going to cum for me etc etc but seems like it’s getting old. I’m quite shy and get in my head to say certain things but I need to get over it! Any advice? Tysm. xx
+A: While you stroke him, stoke his ego! "God it's so big/thick" "I love how it feels in my mouth/fingers" "You taste so good" "I love sucking you off" Maintaining eye contact while moaning is also really good, and if I feel particularly lazy I grab his hand and I make him move me lol. Now he does that on his own whenever he wants me to move in a different rhythm. Also, some men like it when it's like a sloppy blowjob, when you do a lot of sound, like almost choking. Some don't. Figure how he prefers it and do that.
+A: Here’s some pretty vanilla stuff that I like: I like to hear “let it all out” as I’m cumming. On the same note, “Are you gonna let it all out for me” as a question is good.I like a pleading/begging tone like you don’t just want it, but you need it. Being instructed or begged to cum in a certain place, or even asked “where do you want to cum, baby?” Is nice. Being told “ooh, you look so full” or “I bet you’ve got a big load in there for me” like I’m so full it’s making my package look extra big (even though that’s not how it works lol) is good. I like to be invited to “make a big mess” like “Are you gonna make a big mess for me?” Acknowledging or appreciating precum is good “Mmm babe, you’re so leaky” is a classic. Or just “ooh, you’re leaking for me.” That’s just a little off the top of my head.
+A: "Oh baby I love sucking/jerking you it makes me so fucking horny" "Yes yes I love that cock I want your cum on (pick your place)" "Fuck seeing you like this makes me really fucking wet" (even better if you play with yourself to illustrate the point) And then just accelerate your horniness and joy of doing it. The sell is that there's nothing else better right now than you wanting to get him off and that's what you really fucking want because you get off it as fuck as well.
+A: So funny to be in the reverse situation. She's so vocal it makes it hard not to see it as insincere like in professional porn. It's too bad she isn't here to give you pointers, she could write a book on the matter. Moans a lot, calls my name, gasping, it feels so good, you're so deep, I love how your cock feels, harder, just like that, I'm going to cum (starts bucking). She's always so wet though, I've realized that all of that talk helps her get off so I've started being more vocal for her and she loves it, and I've gotta admit it is fun to let loose.
+A: Literally just moan… that’s all you really need. Anything else is extra and can actually have the opposite effect. Personally and I don’t care to have a conversation. My wife just moans and let’s put little sighs and whimpers, getting louder and more intense as she knows I’m getting closer. Getting a blow job while hearing her moan is just so hot.
diff --git a/tests/data/txt/qa/How do i know if my moans are Real.txt b/tests/data/txt/qa/How do i know if my moans are Real.txt
new file mode 100644
index 0000000000000000000000000000000000000000..043f0ab8b138b68b91bd5cd414ecba35200dd214
--- /dev/null
+++ b/tests/data/txt/qa/How do i know if my moans are Real.txt
@@ -0,0 +1,5 @@
+Q: I’m a 21F, and i’m not sure if my moans are real, or i’m just doing it for my bf. How do i tell if they’re genuine
+A: it’s your own body, i guess if you can’t tell, no one can. Some people make noise involuntarily, some out of habit, and some to perform for themselves or another person. All of these are perfectly ok reasons to make moans and all of them are “real” moans.
+A: Before you moan, do you think to yourself "ok moan now"? It should be pretty easy for you to determine whether you're forcing them or not...
+A: Nothing hotter than a real moan. Fake moans...depends on who you're with. Moaning to increase your own experience can be fun too. I would say to focus on yourself and your own experience. If you're having fun, that will spill over to your partner, guaranteed.
+A: Moans tell me that I’m successfully getting the right spots….The right way🙂
diff --git a/tests/data/txt/qa/How long should I go without fapping for a great night.txt b/tests/data/txt/qa/How long should I go without fapping for a great night.txt
new file mode 100644
index 0000000000000000000000000000000000000000..8dac0ffe41428e6b617dde19289ad12147d5f1f2
--- /dev/null
+++ b/tests/data/txt/qa/How long should I go without fapping for a great night.txt
@@ -0,0 +1,6 @@
+A: Here's my recommendation for you. Don't stop masturbating. Stop cumming. Get yourself right up to the edge, several times. Don't let the load loose though. Do this every day until you see her. Then, when you guys fuck... Well, let's just say. You can thank me later. I did this for a month straight. Wouldn't recommend doing it for that long. I definitely started losing my mind a little towards the end. Ten days should be fine.
+Q: Hi! My (24M) girlfriend (26f) is out of town visiting her parents. She left about 15 days ago and I decided to stop masturbating during this time to have a great night when she’s back. There are still ten days ahead, and things are getting a bit complicated. How long would you recommend abstaining from wanks to achieve the best results with your partner? She likes big loads so I want to make sure I get there -- but realistically, ten days still seems like a long time. Any experience with this? I’d appreciate any thoughts. Thanks!
+A: Ah, the classic dilemma. As someone who has tried this before, I can tell you that the anticipation and build-up will definitely make for an amazing night. However, ten days might be pushing it a little too far. Maybe aim for a week, and save some of that built-up energy for round two? It's all about balance, my friend. Happy fapping!
+A: She likes big loads but she like 30 second sex? Cum 1/2 days before and you're good.
+A: It's my understanding that, while everyone is different, the average male goes for 5-7 days of production before it begins to break down the older stuff to make way for new. So every 7 days you'd be effectively guaranteed to be at your max.
+A: I'm 49 and 2 to 3 days has me at my absolute best.
diff --git a/tests/data/txt/qa/How long to get used to sex without a condom.txt b/tests/data/txt/qa/How long to get used to sex without a condom.txt
new file mode 100644
index 0000000000000000000000000000000000000000..46e518b0831d365c9b36e7569040b7da074cf57a
--- /dev/null
+++ b/tests/data/txt/qa/How long to get used to sex without a condom.txt
@@ -0,0 +1,7 @@
+A: you just have to do it a lot :) enjoy
+Q: My wife and I have used condoms for over a decade. We decided we want to try and have kids and it feels incredible…..toooo incredible. We go for 45 minutes with a condom but I am struggling to last without one. How long did it take you to get used to the increased sensitivity? Any tips?
+A: Practice as much as you can and make her finish before you so she has some fun too! I was in the same situation too, took about one month to really get used to it. But that was with regular sex, 3-4 times per week.
+A: I’m a woman so no advice on the lasting longer part but you can please her without penetrating her! If she can have multiple orgasms use that to your advantage. If not, she can still experience pleasure until you’re both ready for penetration.
+A: Me, as a gal... overjoyed if a guy can cum in me all the time! Now, there are, uh, limits. ...figuring those out are left for people smarter than me.
+A: My husband and I have been together 6 years and 2 kids later…we’ve used quite literally 5 condoms max in our relationship and I will tell you…he’s never gotten used to it lol so suffice it to say good luck with your wife lol
+A: If you are trying for a pregnancy and you are having a problem with premature ejaculation hopefully she is multi orgasmic. Make sure that you masturbate her to orgasm and then lick her to orgasm before you enter her. The opening of the cervix is normally about the size of a pencil lead and plugged with mucus. Each orgasm releases oxytocin which dilates the cervix a little. Just a couple of strokes with you in her will break the mucus plug and with the cervix dilated a bit it will be easier for the sperm to get through.
diff --git a/tests/data/txt/qa/How much is a good amount of lube to use.txt b/tests/data/txt/qa/How much is a good amount of lube to use.txt
new file mode 100644
index 0000000000000000000000000000000000000000..12f879092f8dbfb033435e6727d48a20b3bc19ee
--- /dev/null
+++ b/tests/data/txt/qa/How much is a good amount of lube to use.txt
@@ -0,0 +1,4 @@
+Q: Me (28m) and a friend (32m) have a fwb thing and mutual masturbation is something we engage in together. We ended up sharing and passing back and forth his fleshlight. While sharing we often find ourselves having to apply more lube. We often use our own spit so we don't use it all of the lube. What are some ways to fix this or what lube sbould we use?
+A: Put down some towels and use a lot of it. More than you think you need. I think it’s like asking should I get a bigger screen tv or more memory for your laptop. More is not a bad thing :)
+A: I mean... just keep adding more, until its a good amount for you...? You can use any lube thats safe for genitals, there are countless out there, water based, oil, naturals. People like different things.
+A: try putting the lube in and wiggling it down the sleeve so it’s not all focused in one area, that’ll probably dry it up quickly. try using a different lube as well, like if you’re using water based switch to oil based for example. you can use almost anything but be sure to never use silicone lube with a silicone toy or it’ll break the material down. check the box or online description/care guide to see what lines are compatible with it
diff --git a/tests/data/txt/qa/How to aftercare.txt b/tests/data/txt/qa/How to aftercare.txt
new file mode 100644
index 0000000000000000000000000000000000000000..73ef9fca878e852506acd1dd7f068f981633b368
--- /dev/null
+++ b/tests/data/txt/qa/How to aftercare.txt
@@ -0,0 +1,5 @@
+Q: hi everyone! my boyfriend and i are thinking about him finishing inside me for the first time (i’m on birth control), and i’m just wondering how to take care of myself afterward to stay healthy and comfortable. any tips on aftercare would mean a lot to me!
+A: It’s always going to be some leak, so you can put a towel on the bed rather that having a whole change. Otherwise, enjoy, cuddle, etc. as usual!
+A: Don't forget to also clean up the mess afterwards, or else your sheets will become a petri dish for bacteria. Good luck on your journey to parenthood!
+A: Don't forget to hydrate! And maybe have some snacks on hand too, because let's be real, sex can be a workout.
+A: Pee after! To prevent utis. Otherwise you should be fine
diff --git "a/tests/data/txt/qa/How to be the best sex he\342\200\231s ever had.txt" "b/tests/data/txt/qa/How to be the best sex he\342\200\231s ever had.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..e41e8c5259a05d5acf3cffac16a9bff6fd0832e2
--- /dev/null
+++ "b/tests/data/txt/qa/How to be the best sex he\342\200\231s ever had.txt"
@@ -0,0 +1,6 @@
+Q: I want detail. Mind blowing things to do in bed. Be specific. I want all the advice I can get
+A: Learn what he likes. Everybody is different
+A: Different guys want different things. Don’t be afraid to ask him what he likes.
+A: Spit on that thang 😂😂 No seriously, do it 😉
+A: Most of all, just be enthusiastic and give feedback you are enjoying it also, you don't have to be loud moaning, just some, oh yeah I like that, or yeah baby, and on the positions you are able to, you fuck him back against his thrusts he will love that.
+A: There's no set menu that will result in "best sex ever" for everyone. Listen and observe what he likes and dislikes and go from there.
diff --git a/tests/data/txt/qa/How to deal with religious guilt when it comes to nudity and sexual activity.txt b/tests/data/txt/qa/How to deal with religious guilt when it comes to nudity and sexual activity.txt
new file mode 100644
index 0000000000000000000000000000000000000000..f2831f79c5178fbd0634b3a337771b742568157e
--- /dev/null
+++ b/tests/data/txt/qa/How to deal with religious guilt when it comes to nudity and sexual activity.txt
@@ -0,0 +1,4 @@
+A: I think you have to look at history. Imagine being a leader in a village. Some guys traveling through or working in the village have sex with some of the women. Some get an STD and one gets pregnant with no husband. One of the women gets syphilis, suffers greatly, and dies. The leaders are upset with all these problems. They decide to include rules in religion regarding sex for people to follow to keep this from happening again. I'm not sure if my story is completely true, but I'm probably not too fat off. Has religion taken it too far. I think so. If you step back and look at what people are doing, you'll realize that humans are pretty crazy!
+Q: For context I'm raised Muslim and I've been very sheltered most of my life. I'm still a virgin and the most I have ever done is porn and masturbation, visit a nude beach and post nudes on Reddit. However my religion is very strict about these things, such as saying masturbation and porn aren't allowed and always covering up. So everytime I do something sexual or related to nudity, I feel extra guilty. A part of my body needs to fulfill this inherent sexual need but the values I'm supposed to follow tell me otherwise. I don't know if other religious people also go through similar struggles but I have no idea how to deal with this in a healthy way
+A: Never forget that in the Garden of Eden, even God was nude. Furthermore, there's no reason to feel bad about enjoying sex—I'm pretty sure He invented it!
+A: Do you think the god is real and have you considered why it would care about such things?
diff --git a/tests/data/txt/qa/How to get my boyfriend to focus more on clitoral dtimulation.txt b/tests/data/txt/qa/How to get my boyfriend to focus more on clitoral dtimulation.txt
new file mode 100644
index 0000000000000000000000000000000000000000..29568575adbad7b806eae469e3c02c5a26b11305
--- /dev/null
+++ b/tests/data/txt/qa/How to get my boyfriend to focus more on clitoral dtimulation.txt
@@ -0,0 +1,4 @@
+Q: Hi all, I usually orgasm from PIV but I really enjoy clitoral stimulation as well. I've told my boyfriend multiple times that I like having my clit rubbed, but he only does it once in a while, like once a month or less. I want to feel more satisfied and heard during sex, but I'm not sure how to get him to do it more often without feeling like I'm repeating myself. This has happen from the beginning of our relationship. Any advice on how to handle this?
+A: Find someone who cares as much about your pleasure as their own. We stay in relationships and build resentment because people don't change. Expecting people to change is never the answer.
+A: He needs to use his tongue… a lot.. maybe guide him
+A: WHILE you are having sex, in a position that suits, tell him: "Babe, can you also rub my clit while you're fucking me?" Simple as that. Now, if he still does not oblige, maybe it's time to find someone who will actually listen to your needs...
diff --git a/tests/data/txt/qa/How to have safe Cunnilingus.txt b/tests/data/txt/qa/How to have safe Cunnilingus.txt
new file mode 100644
index 0000000000000000000000000000000000000000..ccf048fab35665ab95035093391ce4cbc6e6d123
--- /dev/null
+++ b/tests/data/txt/qa/How to have safe Cunnilingus.txt
@@ -0,0 +1,3 @@
+Q: Hi, Can someone suggest a safe(and pleasurable) way to eat pussy ? I've done it raw but then switched to using condoms as dental dams once I realised the risk of eating her without any barrier. But it simple doesn't feel the same for either of us. :( Can someone suggest better alternatives? Also, are actual dental dams any better ?
+A: i’ve heard from a lot of people that dental dams kinda take away the sensation as well, so your best option may be to get tested and try your best to be safe eating it raw if neither of you are willing to give up oral
+A: Get tested then chow down on that raw puss
diff --git a/tests/data/txt/qa/How to make sex more enjoyable.txt b/tests/data/txt/qa/How to make sex more enjoyable.txt
new file mode 100644
index 0000000000000000000000000000000000000000..39ce991c72fffed13474c46cb053daf4fdabd3b6
--- /dev/null
+++ b/tests/data/txt/qa/How to make sex more enjoyable.txt
@@ -0,0 +1,4 @@
+Q: Hey everyone, I’m dating this guy and he’s the first person I’ve had sex with… kinda. I say kinda because when we did have sex, I don’t think he was all the way inside of me due to penetration being so uncomfortable :( I understand sex doesn’t feel the best the first couple of times but any advice on how to make this process easier and more comfortable?
+A: Lots and lots of making out and foreplay. He should have you very aroused and wet before he touches your pussy. That might take 20 minutes or more of foreplay, just take your time and enjoy. And maybe have him make you cum first from oral sex before you start penetration.
+A: What do you like when you are alone, tell him. Find out what he likes. Don't concentrate on PIV it's s part of, but not the most important part. Make sure it's fun and enjoyable, don't take it too serious, if something fun or different happens, it happens.
+A: Talk to each other communicate on what you like / dislike, experiment other pistons use lube if it’s uncomfortable. Make him go down on you before to relax you
diff --git a/tests/data/txt/qa/How to orgasm from penetration.txt b/tests/data/txt/qa/How to orgasm from penetration.txt
new file mode 100644
index 0000000000000000000000000000000000000000..2e414328a24dc3c95951e179636570a863f896c3
--- /dev/null
+++ b/tests/data/txt/qa/How to orgasm from penetration.txt
@@ -0,0 +1,5 @@
+Q: Hey, I (F26) recently lost my virginity to my boyfriend (M29) a couple weeks ago, and we have been having sex normally since then. I managed to orgasm 2 times from penetration, but lately when we I try I can't. It feels good, and I'm wet, but for some reason its difficult to orgasm. Both times he was stimulating my clit, and he still does but I just don't orgasm, I haven't gotten close. Is there a noobie mistake I'm making, some recommendations so I can orgasm?
+A: How's the foreplay and the overall rhythm (i.e. build-up)?
+A: Happens to everyone! Bodies are big, weird, complicated machines, there's a lotta variables in play here. It can be a matter of nerves, tiredness, dehydration, hunger, depression, anxiety, or just an off day. Sometimes people cum quickly, sometimes it takes a long time, sometimes they can't cum. Just like sometimes you get wet or hard easily, sometimes it just doesn't happen. You can try cutting down on masturbation, that can help, but I'd definitely make sure you're getting enough sleep, water, and food - particularly green veggies! Also, check out r/pompoir. Those folks have helped a lot of women learn to orgasm, and to orgasm in new ways! The stuff they teach will also make your boyfriend pretty happy haha Tl;dr - you're not making any mistakes, stuff just happens. Practice! You guys are still new to fucking each other.
+A: Some good amount of foreplay: lots of kissing, neck kisses, a tiny bit of light biting, touching, grinding up against each other in clothes. Then, oral for both of you, if you're into it. Then try doggy or put a pillow under your butt. You're welcome!
+A: You might try the reverse cowgirl position, which will give you good access to your clitoris for finger stroking your clitoris or using a bullet vibrator on your clitoris while you ride his penis. It also gives him access to support you with his hands as you move up and down. If he is ejaculating quickly, for information about that, go to Google, and search for “sexknowledgegap” (be sure to enter as a single word and include the double quotes in the search text). In the search result web page, there is a menu (vertical lines on a cell phone or a list of items on the PC) item, “Ejaculating Too Soon”. Numbered references seen there are available by selecting the “References” menu item.
diff --git a/tests/data/txt/qa/How to overcome embarrassment when trying to dominate my dominant boyfriend.txt b/tests/data/txt/qa/How to overcome embarrassment when trying to dominate my dominant boyfriend.txt
new file mode 100644
index 0000000000000000000000000000000000000000..44da327e658db1421551ab6c6fc2d77a82fa4597
--- /dev/null
+++ b/tests/data/txt/qa/How to overcome embarrassment when trying to dominate my dominant boyfriend.txt
@@ -0,0 +1,3 @@
+Q: My boyfriend is so dominant that he's practically inflexible when it comes to him being submissive, he is also VERY experienced and very teasing. He says that he would "like to see me try" and dominate him, that he will keep his mind open for me, tho he believes that no one can dom him. It's important to note that most of his exes were NPCs, he never experienced anyone dominating him (so he's sure of his dominant identity), they all just laid there leaving all the work to him and didn't care much for his enjoyment. So he did say that there is a possibility that he can be dommed, but nobody has tried, and I want to, but don't know how to approach it. Meanwhile I'm a switch, so I enjoy both dominating and submitting, depending on how I feel, BUT I am VERY inexperienced compared to him. I do not enjoy constantly being submissive, yet I do not know how to approach dominating someone like him. Before our relationship, whenever I sensed that whoever I'm flirting with is on the submissive and shy side, I would easily assert my dominance over them, flirt and say teasing things, make them blush. I want to make my boyfriend feel all these things with me, I want to make him submit and be a blushing shy mess and yet it feels like I am facing a level 100 boss and I am intimidated 💀 Here's what scares me: Him thinking that me "trying" to dom him is "cute". I don't want to be cute, I want to be palpably hot and irresistible to the point of him being weak in his knees. I have a fear of embarrassment. I'm new to sex, but I have a lot of sexting experience (from before I met him) and I know that I really enjoy dominating. He's so incredibly teasing (I love it, but in this case it adds to the intimidation factor) and he told me that "he'll let me have my fun", which sounds confident and sexy, but it also makes me think that he's just gonna indulge me so that I enjoy myself, but not actually submit to me and enjoy it himself. And imagining that makes me feel REALLY embarrassed and fills me anxiety. We're LDR and I believe that it would be much easier to dominate him through certain physical actions, but until then, I would like to master my dirty talking since we obviously only have sex over the phone + it will be useful irl. TLDR: My boyfriend is VERY experienced and VERY dominant. I am an inexperienced switch. I want to dom him, but don't know how to approach it and feel very embarrassed. PLEASE BLESS ME WITH YOUR WISDOM AND TEACH ME 🙏🙏🙏
+A: Okay, so if I’m reading correctly you want to try domming him first via sexting and then later in person? why not get a badass set of lingerie, send him teasing photos, make him edge and do sexy things for you while taking pixtures..?
+A: Do it embarrassed. Fake it til you make it. Practice projecting confidence in a safe situation and eventually you will start actually feeling confident. Think about what you would want to hear in a roles-reversed situation and say that. Point blank: you need to let go of the fear of failure here. When you are the one making advances, even with a long term partner, they're going to fall flat sometimes. It's guaranteed to happen. You need to trust your bf not just to play the roles you agreed upon, but to be gracious and open with you if something isn't working. Learning to dominate someone is a process.
diff --git a/tests/data/txt/qa/How to take the next step with my gf in a conservative family.txt b/tests/data/txt/qa/How to take the next step with my gf in a conservative family.txt
new file mode 100644
index 0000000000000000000000000000000000000000..e901e3e35349ae3c8e85560eded50050f21f1579
--- /dev/null
+++ b/tests/data/txt/qa/How to take the next step with my gf in a conservative family.txt
@@ -0,0 +1,3 @@
+Q: Hello, I need some help with this, I (16M) have been with my gf (16F) for a half of a year now, and we have been fooling around for some months, this our first relationship, from conservatives families and in a no abortion state, so we are really scared about the pregnancy risk to take the next step. She can't ask her parents to take her to some doctors to get prescribed birth control, and we don't want to do condom only, a little hole in it and we are done, at least we would want two forms of birth control. But the true is that we are really horny and can't keep our hands from each other, and the thought of having to wait a really long time to being able to move away from home to college in a more progressive state is just too depressing. Is there any other way to have penetrative sex without having to worry about the pregnancy risk? Are condoms enough? Thanks in advance for your response.
+A: If you do condoms + pullout together, you get an effectiveness rate that's almost comparable to some forms of hormonal birth control. It's not perfect, it's a calculated risk, and one where you need a plan in place and money saved to deal with an accident. Also make sure you use lube and store the condoms correctly (not in a car or wallet) to help prevent breakage. This person did the math if you want to see it https://www.scarleteen.com/article/sexual_health/the_buddy_system_effectiveness_rates_for_backing_up_your_birth_control_with_a_/
+A: Ah, the struggles of teenage hormones. Condoms are definitely a reliable form of birth control, but if you want extra peace of mind, why not try using a spermicidal foam or film as well? Just make sure to read the instructions carefully so you don't accidentally use too much and cause irritation. And don't forget to always communicate with your partner and be safe! Who knows, maybe your conservative families will be open to discussing birth control options if you approach them maturely. Good luck!
diff --git a/tests/data/txt/qa/I (21F) feel bad leaving a guy with an erection. Does it mean they will like me less.txt b/tests/data/txt/qa/I (21F) feel bad leaving a guy with an erection. Does it mean they will like me less.txt
new file mode 100644
index 0000000000000000000000000000000000000000..bc796166781267c6e47d04172b55eadb9bcc7360
--- /dev/null
+++ b/tests/data/txt/qa/I (21F) feel bad leaving a guy with an erection. Does it mean they will like me less.txt
@@ -0,0 +1,5 @@
+Q: Im in college, and whenever I go home from the club with a guy, go up to his bed and make out for a bit, I end up either just not in the mood, or I don’t want to have sex with them straight away (because I did in the past but then just end up feeling used and unfulfilled the next day) So then I leave but I know / have seen that they have an erection And I don’t want to be frustrating or mean or deceitful And I don’t want it to mean they like me less because of that^ (because some of the guys I actually do fancy a lot, I just want to take my time) Am I overthinking?
+A: If you don't want to frustrate them, then make it clear ahead of time that you're not interested in having sex tonight, but would like to kiss and maybe snuggle to sleep. There's a heavy implication that unfortunately comes with bringing someone home from a club. Communicating that you don't wanna fuck tonight would be a very kind thing to do! It's also a good safety measure to take.
+A: Yes, doing that will tend to burn bridges. Generally this doesn't matter as long as you safely make it out of the situation, because usually you'll never see them again anyway. The whole danger angle and making it safely out of the situation is generally more of a concern than whether bridges would be burnt, though. You're definitely overthinking, but you also don't seem to be taking a step back and considering the big picture here. Why are you taking them back to your place or going back to their place in the first place? Especially given you now have repeated experiences where you know that you don't have any interest or intent on hooking up with them. And I don’t want to be frustrating If you care that much about it, then just don't go home with people after clubbing or where any reasonable person would believe that hooking up was on the agenda. It's very simple and straightforward, on the whole. (because some of the guys I actually do fancy a lot, I just want to take my time) If this is the case, that's better accomplished by actually taking your time, not engaging in brinksmanship with whether you'll have sex with them or not.
+A: I’ve gotten good at handjobs for this reason. I can be out in 3-4 minutes if I’m not in the mood to be touched
+A: Don't go back to their place... It's really that simple! If you go on a date with a fella to a nice restaurant or see a movie, then going back to their place may be more acceptable, you could have a coffee or a meaningless conversation. And there's no drink involved (just an idea) But back to the issue at hand, it seems a bit pointless to go back to a person's place just for a kiss. Most red-blooded males will think they are getting the willy wet... or even make it a challenge to get the willy wet. The main thing is to be safe, tell a friend where you are, and if you don't want sex then maybe don't risk your safety if you don't know them. Being a male myself, albeit a tad frustrated, it really wouldn't bother me being left with an erection. Your body your rules.
diff --git a/tests/data/txt/qa/I (24m) want to sleep with my neighbor (25m) with my wife (25f).txt b/tests/data/txt/qa/I (24m) want to sleep with my neighbor (25m) with my wife (25f).txt
new file mode 100644
index 0000000000000000000000000000000000000000..94da899d3a9aff5b0783c57aa8b6f336504b17a8
--- /dev/null
+++ b/tests/data/txt/qa/I (24m) want to sleep with my neighbor (25m) with my wife (25f).txt
@@ -0,0 +1,5 @@
+Q: So my wife and I live in a condo style housing where the buildings are connected. We just threw a part my a few days ago and invited one of our neighbors over. He gives us the vibe is gay but we don’t know for sure. I’ve recently mentioned to my wife how I want to try blowing a dude and be a bottom as my wife has pegged me before. She told me that could be hot and she wants to watch us have sex then join us. I found that super hot and fun. My neighbor is probably the type of guy it be looking to do it with but idk how to get both of them on board especially since we really don’t know him well or if he’s even gay or bi
+A: Do not shit where you eat. If you want to try swinging or similar you should join a lifestyle group and just make friends you’re attracted to and then go to a play party. Fucking your neighbor as a first time 3 some is a massively bad idea.
+A: You do know that Grindr exists right? You could have your pick of dudes to blow if you advertised that is a desire. Why risk it with the neighbour even if you are moving soon? You don't know if he'd be down or even if he's gay, whereas men on Grindr are super down and absolutely gay. Use your head son.
+A: My husband and I felt the same way. Should have gone that route but we met a bi couple on adult friend finder!!! Pay the little bit of money so you get verified accounts and it only matters you with people looking for the same thing
+A: The fact that he’s your neighbor makes it a terrible idea. You don’t know him that well and he’s too close to home in case anything Happens
diff --git a/tests/data/txt/qa/I (F19) broke down into tears last time I had sex and I'm nit sure why.txt b/tests/data/txt/qa/I (F19) broke down into tears last time I had sex and I'm nit sure why.txt
new file mode 100644
index 0000000000000000000000000000000000000000..d8d32215a97ff0dd998c950558cd4a6b35e7d55b
--- /dev/null
+++ b/tests/data/txt/qa/I (F19) broke down into tears last time I had sex and I'm nit sure why.txt
@@ -0,0 +1,6 @@
+A: Youre young . If its consensual and that happens, its good sex
+Q: I had sex yesterday and right during the middle of it he asks me if I'm okay. I didn't really understand why but said yes. Then I felt it and by then the tears running down my face did the work ajd down went his little friend. My boyfriend is sweet to a fault. He immediately got up and went straight to trying to make me feel better and it was cute but I wasn't done yet. I didn't want to tell him to get back inside me especially since he was no longer in the mood and so it kinda ended there. This is like the 3rd time I've done it and this never happened the other times so now I'm wondering if something did actually happen.
+A: Were you having big feelings? I sometimes cry during sex with my partner, but usually that accompanied by deep feelings of loving connection or release.
+A: Girlie some times if the sex is a bit intense (I’m talking about even basic vanilla sex btw) for me I suddenly start to feel really emotionally overwhelmed and can break out into tears as some form of outlet for it. Doesn’t mean anything is wrong! The first time the tears happened tho for me, my bf did react like ????!!! unsure if he was hurting me, but in the moment I just said “keep going” and “I love you” on REPEAT 👏👏As long as you kinda reassure IN and AFTER the moment what you’re experiencing it’ll clue him in. If in doubt say it’s just a big hormone surge and it’s an uncontrollable reaction
+A: Looks like you experienced the "sex tears" phenomenon, congrats! It's a mix of overwhelming emotions and physical sensations that can sometimes lead to happy tears or in your case, not so happy tears. Don't worry, it's perfectly normal and happens to a lot of people. Just make sure to communicate with your partner and take your time next time, no need to rush. Happy sex-ing!
+A: Don't worry, it happens to the best of us. Maybe he just hit that one spot that makes us all emotional. Or maybe you just had a really good crygasm. Either way, at least your boyfriend knows he can bring you to tears in more ways than one.
diff --git a/tests/data/txt/qa/I am chronic masterbator.txt b/tests/data/txt/qa/I am chronic masterbator.txt
new file mode 100644
index 0000000000000000000000000000000000000000..c3ea3251c1e817766544fd3c77260fef4386d876
--- /dev/null
+++ b/tests/data/txt/qa/I am chronic masterbator.txt
@@ -0,0 +1,2 @@
+Q: I started watching prn as soon as I got into high school. Never got any sx education from my dad as he was not the most involved. Watched it for a while before starting to jerk off. I started jrking off in form 2. It started off as curiosity. Then an incident happened that hit me hard psychologically. I started using prn as stimulant and mastrbation as a relief. My mastrbation became problematic as I became hooked. 2 years later when I got diagnosed with depression and was put on antidepressants. I noticed that I couldn't feel any sensations but kept jrking off. Around this time I got a girlfriend. In hindsight we would have smashed but I was too nervous that my dck was not okayy. I realize I would have used this opportunity to get good at fcking. But oh well. The next year I really consumed prn and jrk off as I was idle af. I had a few chic we used to make out with but I never bothered to fck. I was also really stressed and was dependent on jrking off. Later I got a session with a chic. I was not at my best and wasn't as energetic I I fucked anyway but had difficulty maintaining erctions. Took like 45 mins but didn't nut. I had a few more encounters. My saving grace is a big D. But I can't keep it up. I am sure the inability to nut can be fixed once you fck a few times and your nerves are used to the sensations of cooch. I have Missed a lot of opportunities with some fire babes. Due to performance anxiety that will affect how you approach and vibe. Then the fact that I had difficulty maintaining erctions with a few sharries. Then I am a poor feeder so I don't know how that affects Help me where you can✅
+A: Sounds like you've been through a lot of ups and downs, both figuratively and literally. It can be hard to break old habits, but with time and practice, I'm sure you'll be able to overcome your performance anxiety and enjoy those fire babes without worrying about maintaining an erection. In the meantime, just remember that it's not the size of the boat, but the motion of the ocean 😉 Keep working on yourself and don't let this hold you back from taking advantage of those opportunities. We're all rooting for you!
diff --git a/tests/data/txt/qa/I can never actually get myself to orgasm.txt b/tests/data/txt/qa/I can never actually get myself to orgasm.txt
new file mode 100644
index 0000000000000000000000000000000000000000..340f3536242198b183f5aa89672c6d3124ff0b82
--- /dev/null
+++ b/tests/data/txt/qa/I can never actually get myself to orgasm.txt
@@ -0,0 +1,4 @@
+Q: i’m twenty one, female, lesbian but has experimented with guys. and with guys girls and myself whenever i’m about to orgasm… i just can’t? i don’t really know how to explain it… it’s like… i’m afraid to cum? like it’s getting there and it feels really good and i’m totally into it, but then i just - feels too good? i just can’t bring myself to actually do it and i really want to. with people i say i did and if they don’t stop i scoot back a bit. and if im by myself i usually pull away on accident and ruin it or eventually i just get mad and put whatever vibrator i was using away. i really want to orgasm but i just can’t bring myself to do it. even when im fully committed and tell myself im gonna do this time , i just - cant… i dont know what to do. help is wanted, hate and judgement isnt i already feel so embarrassed. thank you!
+A: You are not alone. It's very likely mental not physical. Many women and some men have this problem, or at least to an extent. Letting go of shame, insecurities and other negative emotions is a start to enjoying more
+A: Are you on antidepressants? I was struggling with a very similar feeling and wasn’t able to climax until I was 21 and off of SSRI’s for over 6 months. It’s possible you are having a mental block as well, but anorgasmia is a common enough symptom of several medications that it’s worth looking into
+A: This can sometimes happen. Nothing to be embarrased about. Make sure to focus that your body and breathing are relaxed when you are getting close. Try to focus on breathing and the sensation only and clear your mind of anything else. Especially tensing up a lot can kill the orgasm build-up. Just relax and enjoy with no expectations. The orgasm will come.
diff --git "a/tests/data/txt/qa/I can only orgasm when I think of very specific kinks I don\342\200\231t want to share with my partner _ with clitoral stimulation\342\200\224 what can I do to make penetrative sex pleasurable for both my partner AND myself.txt" "b/tests/data/txt/qa/I can only orgasm when I think of very specific kinks I don\342\200\231t want to share with my partner _ with clitoral stimulation\342\200\224 what can I do to make penetrative sex pleasurable for both my partner AND myself.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..4a0428b5816b8592f79b81c44aeb7cf248357561
--- /dev/null
+++ "b/tests/data/txt/qa/I can only orgasm when I think of very specific kinks I don\342\200\231t want to share with my partner _ with clitoral stimulation\342\200\224 what can I do to make penetrative sex pleasurable for both my partner AND myself.txt"
@@ -0,0 +1,5 @@
+Q: My boyfriend wants sex to be enjoyable for me, but the way I masturbate is very weird/specific, and it’s the only way that I can orgasm. I wear my pants and stimulate the clitoris with my finger over my underwear, and I usually spread my legs out because, for some reason, that stretching really does it for me. I have some really weird kinks that I can’t change and do NOT want to discuss with my boyfriend, and when I masturbate, I think about those things. Those “stories” usually don’t involve him, and I feel so bad about that. The reason they don’t involve him is not because I’m not attracted to him, but because the kinks I’m into are things that only really awful people (in my opinion) would willingly engage in with a person. I am not looking for a partner or a relationship with someone who would be good at indulging those fantasies of mine, because then I wouldn’t feel safe with them as a partner. I wouldn’t be able to respect myself in the relationship. I wouldn’t love them as a person. For that reason, I think of random “characters” when I masturbate, and I have very specific stories in my head that I do not ever want to share. These kinks are rooted in a lot of trauma, and I never want to associate the love of my life with those things. Our penetrative sex feels good when he first puts it in, but after that, I just want it to be over, and it starts to hurt. I want to make him happy, and I know intimacy is an important part of a relationship, but I just don’t know how I can enjoy this. Please help. Specific
+A: Read the book “Arousal” by Michael Bader asap. Sexual fantasies have very little to do with your moral character as a person, and it sounds like you’ve got a lot of internalized shame about it that will affect you negatively long term. This book will hopefully help you to understand more about yourself, see how completely normal it is to have ‘weird’ kinks, and potentially allow you to open up to your partner about it.
+A: It’s completely okay to fantasize about your kinks during partnered sex if that helps you orgasm - I often do myself. Would you be comfortable with that? As for the physical component of this, my guess is that PIV is overstimulating you. First, definitely don’t continue with sex if it’s painful. You can always stop and switch to something else that doesn’t involve penetration. Next, have you tried wearing underwear while you have PIV sex? If you choose something stretchy, you should be able to pull it to the side so he can enter you while still keeping the fabric covering your clit. I’d give that a try, touching your clit in the same way you masturbate, while he puts his penis inside you. Ask him to not move very much to start out with - just put it in and stay still, or make very small movements. See if that, plus touching your clit through your underwear, makes it feel better.
+A: So there’s nothing wrong with needing clitoral stimulation to come, and then just having penetrative sex afterwards for him to have his turn. BUT if you want to try coming during penetrative sex, just take the conditions you need to come and replicate them, adding his cock. Some ideas: —cut a hole in your underwear so he can still fuck you, but you can still finger your clit through the cloth —try riding him so your legs are really spread, but touch your clit and grind on your finger —try spread eagle so your legs are spread wide, and use a vibe on your clit —keep thinking your weird fantasies, who cares
+A: well, first off you don’t have to share your fantasies/kinks with anyone, including your partner. They are yours. I don’t think you should be embarrassed about them. You wouldn’t believe the things people come up with and I guarantee you yours are no different than a lot of others. as far as the way you have to masturbate in order to get off, well, that’s just the way you have to do it if it works for you there’s nothing wrong with it. If your partner wants to pleasure you would make you feel good then tell him, show him how to do it. You don’t have to share your kinks you can keep those in your head. Stretch your legs out, stretching the pelvic griddle and forcing the nerves closer to the surface. Not that that really matters if it works for you it works for you. I didn’t find your message, particularly striking or weird, maybe suggest mutual masturbation.
diff --git "a/tests/data/txt/qa/I can\342\200\231t climax during sex.txt" "b/tests/data/txt/qa/I can\342\200\231t climax during sex.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..fabca66f7ea0f3302caf5f5662b10791faba4c61
--- /dev/null
+++ "b/tests/data/txt/qa/I can\342\200\231t climax during sex.txt"
@@ -0,0 +1,6 @@
+Q: I (24f) have been sexually active for about 10 years now. I fumbled around for the first 5 years, probably more, but I’d say I’m pretty well equipped to get the job done. My partners had always been happy, so that was good enough for me- until recently. I’ve been married for two years, am pregnant, and I am now starting to wonder what the problem is. If you ask my husband, I cum regularly during sex. The reality is that I’ve only ever had an orgasm during penetrative sex once and it was because I was touching myself as well. My husband as well as a couple of my other sexual partners of the past had ample experience and so it makes me think it’s me. It all feels so good, and there are moments I feel I almost could. But, I do not. And to satisfy my husband I “cum,” and I’m relatively VERY good at faking it. Kegel flexing, moaning, shaking and all. Am I not normal? Or is this a common thing?
+A: op, are you able to cum from solo play? hard to tell from the post if this is a partnered issue or not
+A: A lot of women find it hard to reach orgasm during sex. Lack of foreplay can be a factor. We found the best way for the woman of cowgirl, her on top bringing clit into contact with my pelvis. She can control the amount of pressure. Or using a vibrator along with being fcked. Maybe spanking her butt while being fcked( her in cowgirl). There are many ways to get off, find you're trigger.
+A: Please don’t fake it, and you should probably come clean that you have been faking it. I can’t cum from penetration and need a lot of clit stimulation, like most females. Faking orgasms is crazy to me because how can he improve or work with me to help me get there? Men like to be put to work too in general - like solving problems, so do you both a favour and quit faking!
+A: It is not you. Actually, only 18%. of women can orgasm through penetration sex alone, and you are not in that 18%. You need to add clitoral stimulation in order to orgasm. After pregnancy, you could try the reverse cowgirl position, which gives you good access to stimulate your clitoris while you ride his penis.
+A: Every body is different and some women cannot orgasm from penetrative sex alone without clitoral stimulation. Are you on any medications that could also be having adverse side effects? This is common with antidepressants. My advice is at follows: Understand that this could just be your body as an individual, and it’s perfectly okay and valid if you can’t orgasm from penetration alone. Review medications and the issue in general with your healthcare provider. They may be able to readjust any medications you are taking or offer other medical advice or treatments than can help. Don’t fake it with your husband. I’m sure you want him to feel good and confident about the “results”, but you’re doing both of you a disservice by faking it. Reassure that it feels amazing even if you don’t cum, but don’t leave him believing that orgasms are happening when they aren’t. Lots of foreplay before penetration. If you can orgasm without penetration first, it may help you get there during penetration after. Add toys and other clitoral stimulation during penetration. You can control the toy, or your partner. Whichever feels like a better option for the two of you, or have fun and take turns with the toy.
diff --git a/tests/data/txt/qa/I come too fast with my current gf.txt b/tests/data/txt/qa/I come too fast with my current gf.txt
new file mode 100644
index 0000000000000000000000000000000000000000..009875f21ad1c11355209f65fa757cd71a1cc12a
--- /dev/null
+++ b/tests/data/txt/qa/I come too fast with my current gf.txt
@@ -0,0 +1,2 @@
+Q: Lots of posts on here seem to be finishing too slow but I used to be like that with my ex. We’d have sex almost every day and In the beginning I’d last forever. As our relationship went on I started finishing anywhere from 10-20 minutes. I’m (21m) now with a new partner (19f) after being single for about a year and I am finishing unbelievably quick. I’ll finish, then clean up, and go again and finish almost immediately again. And again. And again. I don’t understand how. I thought more rounds would make it take a little longer but Idk if it’s fear of not pulling out in time, that I’m unbelievably attracted to this partner and it’s extremely intimate, or if it’s something else that has changed but u don’t know what to do. There are a few times she’s almost finished but I had to stop to pull out and it makes me feel terrible for her
+A: Only 18% of women can orgasm through penetration sex alone. Edging and Kegels exercises can extend out the time to ejaculation, though. For information about edging and Kegels, go to Google, and search for “sexknowledgegap” (be sure to enter as a single word and include the double quotes in the search text). In the search result web page, there is a menu (vertical lines on a cell phone or a list of items on the PC) item, “Ejaculating Too Soon” about this. Also, there is information about the videos referenced there in the “References” menu item.
diff --git a/tests/data/txt/qa/I cum before my bf each time.txt b/tests/data/txt/qa/I cum before my bf each time.txt
new file mode 100644
index 0000000000000000000000000000000000000000..2e18d7afd37c51593c8ea93624c644a425dd682c
--- /dev/null
+++ b/tests/data/txt/qa/I cum before my bf each time.txt
@@ -0,0 +1,6 @@
+A: As long as you can continue and help him cum, it’s perfect.
+Q: I want to know how to synchronise myself more with my partner. Usually he really enjoys that I cum fast so he teases me a lot, he knows most things get me wet. Cuddles from the back, speaking in my ear or touching me lightly down there. And he plays with it. But often during intimate times, I end up cumming first. I can’t hold it back and after the first cum, I feel really addicted to him. It’s almost like I let my guards down and let him please me how he wants. It’s also because orgasming gets me weaker and more submissive. I enjoy it. But I would like to try to make him cum when I do. Because often the focus is first on me and it feels a bit pressuring. I am always put on the spot, so I feel, exposed.
+A: not needed. You are perfect. guys usually care for partner to cum. so once you are, then the possible pressure to please you is off and he can really enjoy himself, which in turn will please you even more. win win.
+A: These comments saying you’re perfect and don’t change a thing are very sweet but i think it’s great that you’re interested in syncing up and you deserve suggestions. Hopefully this isn’t too much about me. While I don’t want to take the focus away from your pleasure and I think it’s great that he’s taking his time focusing on you, have you tried a time where he gets more of the focus? Especially considering that you feel exposed and pressured when you’re the focus. Maybe more foreplay for him to make him more sensitive and stimulated before penetration that way you’re closer in sensitivity to cum together? I always prefer that my partners cum first and sync up with the 2nd or 3rd orgasm but I was with a woman who came very quickly, then became hyper sensitive and couldn’t let penetration continue. It was very frustrating for both of us until we had a conversation. She really thought she didn’t turn me on enough and that wasn’t true at all. So, simultaneous oral became a regular thing before sex which she thankfully enjoyed. I would stop oral before I got too close and then we would cum together and THEN came the cuddling and talking in her ear :) you can sometimes change the sequence in which you enjoy sex I felt a lot of pressure to sync up with her as she would be very frustrated with herself if I was not finishing before her sensitivity started. This has never been an issue with multi orgasmic partners and in the discussion found out she wasn’t and that we preferred different lengths of intercourse. One night she surprised me with lingerie which was completely out of character for her and even with less oral than usual I could barely hold back and we easily came together. It wasn’t so much the lingerie, which was absolutely hot but the thought and the care and attention put into me that night. She told me before the surprise she wanted to focus on me that night and I felt that and as someone who loves sex, that filled my heart and i couldn’t control myself. This is also where consensual kinks can come into play. It could be something as simple as enjoying a hobby he likes that isn’t sexual but turns flirty just before sex or some simple themed role play or preferred accessory like a choker or long socks or a sport jersey lol. it doesn’t have to be lingerie. accessories don’t mean he doesn’t find your nude body sexy. I just have to say that out loud as I have heard that before and hadn’t considered that take. Once you guys are comfortable having discussions about this things have the potential to get so much better for the both of you. You’re much further ahead than most. He spends time giving you foreplay and you want to be more in unison with him. That’s beautiful.
+A: I can understand why you’d want to climax at the same time, but honestly I’ve found that it takes away from both of us when it happens. Becomes difficult to maintain that perfect rhythm or angle or speed and if you do, then you can’t just let go and enjoy your own orgasm because you’re concentrating on the mechanics. Just my personal experience.
+A: My boyfriend is always focused on me first and foremost and because I know that is what he enjoys that I have embraced it. That in itself is a turn on to him. So after the first one or two orgasims I will focus on him as well. By communicating with him I also learned what he liked and didn’t like (dirty talk) which helps to reach the in sync. But… it will take time don’t get frustrated
diff --git a/tests/data/txt/qa/I don't enjoy sex if there is no emotional connection and that is ok..txt b/tests/data/txt/qa/I don't enjoy sex if there is no emotional connection and that is ok..txt
new file mode 100644
index 0000000000000000000000000000000000000000..301a91e2589069becee5c04fb3ac72798b51fb95
--- /dev/null
+++ b/tests/data/txt/qa/I don't enjoy sex if there is no emotional connection and that is ok..txt
@@ -0,0 +1,5 @@
+Q: In my last relationship I initiated the last time we had sex. We were already distanced in regards to emotional connection. The sex wasn't good (I mean it wasn't bad). We never had bad sex, we were both open to what we liked and not shy at all. But in the past we had very passionate sex and our connection was through the roof. The last time we did it was like mechanical sex. No real connection. I don't enjoy that type of sex. For this I prefer to be single and have fun with myself. I'm finally able to be true to myself and not continue in a relationship that is not fulfilling my needs. In the past I was so afraid to be alone. Have you accepted your truth regarding sex?
+A: Im exactly the same. I can’t get enough sex with someone I’m in love with and I know loves me. I get zero satisfaction if there’s no emotional connection.
+A: It's very hard to be unemotional when it comes to sex. The feelings having someone pay attention to you and your body evokes at least some emotion. It may not be very passionate but it is there. The truth for me is I don't have to be passionate to enjoy sex with a partner. I just have to like her and want to enjoy her and her body. Once done I can go on about my day and feel great because of the encounter.
+A: yes, it's perfectly valid to feel that way, if you're comfortable with it, then you are. different people prefer different things, and that's ok as well.
+A: Needs to be deep and meaningful both physically and emotionally
diff --git "a/tests/data/txt/qa/I don\342\200\231t know how to initiate hookups bc of this issue.txt" "b/tests/data/txt/qa/I don\342\200\231t know how to initiate hookups bc of this issue.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..12755ec8fac07dfe0fd3380d36ff0d799952a6df
--- /dev/null
+++ "b/tests/data/txt/qa/I don\342\200\231t know how to initiate hookups bc of this issue.txt"
@@ -0,0 +1,5 @@
+Q: Basically, I’m a very fucking horny person, not shocking for this side of reddit at all. My only experience with actual sex was my ex two years ago who raped me- I’m worried about hooking up with someone and panicking during it because that’s just plain awkward for everyone involved. At the same time though, I just really want to be fucked and made an absolute mess of so lol I guess that’s my dilemma (F19)
+A: It's important to prioritize your own boundaries and standards, especially when it comes to intimacy. Don't feel pressured to engage in hookups just because of societal expectations or your own desires. Take care of yourself and don't be afraid to communicate your boundaries with potential partners. Also, therapy is always a good option to work through past traumas and find healthy ways to satisfy your desires. Stay strong, you got this! (Fellow horny female here)
+A: Boundaries and standards are key when it comes to hooking up, especially after a traumatic experience. It's important to communicate your needs and boundaries with your potential partner. Trust your instincts and remember that your pleasure and safety should always come first. Don't let societal pressures or your own desires cloud your judgement. Stay safe and have fun!
+A: You should first understand that not everyone is your ex if you remember that it could help a little bit with your insecurity about panicking while getting down and dirty. Another thing you can try is going to therapy for it. Rape is a serious thing and you should seek help
+A: Maybe a safe male prostitute could be a first gentle entrance into what you want
diff --git a/tests/data/txt/qa/I enjoyed the time with an ex casual date but he pushed my head down while I was giving him a head.txt b/tests/data/txt/qa/I enjoyed the time with an ex casual date but he pushed my head down while I was giving him a head.txt
new file mode 100644
index 0000000000000000000000000000000000000000..502b951aec87b720299854934e8576d7bc94532f
--- /dev/null
+++ b/tests/data/txt/qa/I enjoyed the time with an ex casual date but he pushed my head down while I was giving him a head.txt
@@ -0,0 +1,2 @@
+Q: The thing is, I was abused as kid, and that is something I told him very early to be sure to feel safe. I was very happy and finally a bit grateful that I was with someone with whom I could be intimate at my pace (like he asked me multiple times if everything was alright). However, he pushed my head when I was down on him more than once and honestly in the moment I accepted the whole thing and did not react, sometimes I was a bit chocking but I took it as a challenge I guess and I found it strangely alluring. However, now that our thing is over (for good), I'm feeling kind of bad; he never asked me, especially knowing what I've been through. I think what stings me is that I was rather happy with him and the way he took care of me in various moments and the caring attitude. Additionally, I'm shocked by me feeling bad just later, something annoying 'cause without a prompt reaction I can't really protect myself or speak up. Another doubt I have is: it is ok that I never cum? It is definetely harder for me, but I honestly don't know what to think about the fact that in general he did not really try further after he finished. What I care the most is that I was not actually 'used' by him, as a matter of principle. I know about orgasm gap and I know this behavior is common. I had so many bad sexual experiences that hurted me and made me feel like an object that I'm here with this post 'cause I honestly hope to hear you saying that after all what he did is not so bad/selfish/stupid as I am trying now to point to myself, probably because I just want so bad to have a good memory of me living my sexuality healthily with nice people, and this seemed to me the first as in many other aspect he did show care. Or at least, I would love to hear a more positive perspective. Thank you
+A: In that relationship with your ex did you tell him about being abused? And was it a one and done fuck ? Meaning that was only one time . And if you didnt cum and he didnt try to get you off then you were used he only thought of him self in the process. And saying you felt alluring by the choking. Ive been in multiple emotionally abused relationship and never been abused but i enjoy the pain being choked, strangled and hit. Probably because the pain i was in.
diff --git a/tests/data/txt/qa/I feel guilty for touching myself..txt b/tests/data/txt/qa/I feel guilty for touching myself..txt
new file mode 100644
index 0000000000000000000000000000000000000000..ced37fbed706a3a6633748465ff544d4acb30982
--- /dev/null
+++ b/tests/data/txt/qa/I feel guilty for touching myself..txt
@@ -0,0 +1,6 @@
+A: Touching yourself almost certainly had no effect on how your bits look. How they look to you and how they look to others are different issues. Your issue seems like a confidence, esteem, and self-perception issue. I’d consider therapy before you pay someone to take a knife to your bits.
+Q: I've never been sexually involved with anyone, I've always felt very inhibited by my intimate area because memes appeared saying that if I was like that I was used and stuff like that. The truth is that mine probably is because I touched myself a lot when I was younger in my growing stage so my clitoral hood is super long and looks like an uncircumcised penis haha, plus my labia majora are kind of deflated. I don't have money to have surgery, I talked to my mom about it and she simply minimized what happens to me (of course, it doesn't happen to her even as an adult). Nothing now I live with disgust for myself. I hate how my vulva looks when I get horny because it's grotesque and disgusting. Besides caring about what others say, I also care that I can't live with that between my legs. I hate myself, I disgust myself. It's my fault...
+A: You don’t need surgery. There is nothing unusual about your genitals, from the way you’ve described them, and it’s a myth that masturbation can change the shape of your clitoral hood or labia. Maybe look at a vulva gallery online to get a sense of the variety of different vulvas out there. There’s also absolutely nothing wrong whatsoever with masturbating, and actually it’s healthy to do so because it correlates with better sex later in life and allows you to learn more about what turns you on and what works for you. (Source: I am a sex journalist and sex educator.) The guilt/shame you feel about masturbation was put there by an external source (whether it be religion, family, media, culture at large, or something else – but likely it’s a combination of these). Those false messages are harmful and are worth unlearning, but you might not be able to make major headway on that process until you’re older and can afford a therapist to help you through it. That being said, you can choose to reject an anti-masturbation paradigm any time you like, including right now; it’s not mandatory to wait for therapy to make that choice.
+A: Try having a look on this website: https://www.labialibrary.org.au/ There is nothing wrong with you, you are normal, touching yourself will not change your body.
+A: The Great Wall Of Vulva You need to see this!!! Vaginas, vulvas, labias, all of them come in SO many different shapes and sizes!!
+A: People might say that but here's the thing: they're wrong. Try to form your own opinions detached from how the internet or porn dictates you should be and try to see exploring your own body as a normal and natural thing, which it very much is.
diff --git a/tests/data/txt/qa/I feel like I do much more on sex than my GF.txt b/tests/data/txt/qa/I feel like I do much more on sex than my GF.txt
new file mode 100644
index 0000000000000000000000000000000000000000..1280ee904d45a831defd6bd25417353c40e7609c
--- /dev/null
+++ b/tests/data/txt/qa/I feel like I do much more on sex than my GF.txt
@@ -0,0 +1,2 @@
+Q: We are both young (16) and the sex education in our environment is little to zero, so I get that she is really inexperienced about it, I'm too, but I try to inform myself about sex, how fake porn is, how female anatomy and pleasure works, and protection and birth control, and all those stuff. I really want to be a good partner and not a selfish one like memes tend to generalize about men. In other part, my gf makes little effort to sexually explore, she is the one that mostly initiates but she expects me to fully take care of her, she wants me to help her explore her body and what she likes, and I'm full in and gladly to help, but I don't feel too much reciprocity, like in oral, hands and all that I really make an effort to make her feel good, know what she likes and listen to her about it. And when it's her turn, the rare occasion, she doesn't even try to listen or improve. One month ago we have been starting to have sex, and she just lays there expecting me to take fully care of her again, with 0 to little reciprocity. Like her vision of sex is mostly based on porn where the girl does nothing or have any participation. Idk how to address this with her, like this is my first sexual experience so I don't know if I have the right to complain, like anything is better than nothing, right? And I'm not totally sure if this is a normal sexual relationship. From what I investigated i don't think so but I don't have the experience to truly know. But even so I don't feel the enthusiasm from her than I have for her. Idk what to do, I need some advice.
+A: Well you're young and still learning. And take this with a grain of salt, because no one is really going to be able to tell you whats going on in her head besides her. There comes a point where you realize that the entire experience of sex is generally going to be very different between men and women. Its good that you're interested in her actually enjoying it, its good that you listen to her feedback. You're also right, its a two way street and you need attention/care too. Its easy to fall into a bit where it starts feeling like a chore because your needs are not getting met as well. But thats what should be focused on, communicating your needs to your partner. What do you want, what do you need, what would you like to try, what are your limits or your hard/soft no's etc etc. You're both kids, this is stuff no reasonable person would expect either of you to know by just existing. So you should be focusing on communicating what it is you want out of your sex life. Heres an example based on my own experiences. I love going down on women but am not a fan of receiving blowjobs. They feel great, I do like them as foreplay before sex. But if sex isn't on the table I'm perfectly fine not getting one and prefer not to cause it takes a lot for me to cum from one. So the times i've met women that just didn't reciprocate oral, its usually where we would start the conversation. Is it because of something in the past (IE, partner had nasty cheese dick because apparently its hard to wash yourself consistently, or didn't understand consent/permission and did something awful like forced her head down on him). Or some kind of physical thing like they have a very strong gag reflex that makes the whole act extremely uncomfortable. Talk talk talk to your partner. Mind you, you're better served not making ultimatums and demands because it rarely goes well for either party when that happens. If you tell your partner what it is you want and he/she makes no effort to change or even attempts to try.... well you've just found out you're probably sexually incompatible and its best to move on.
diff --git a/tests/data/txt/qa/I feel so guilty after masterbuating.txt b/tests/data/txt/qa/I feel so guilty after masterbuating.txt
new file mode 100644
index 0000000000000000000000000000000000000000..52fac9710e52ebdc8d91141ddf7f6a26880a9041
--- /dev/null
+++ b/tests/data/txt/qa/I feel so guilty after masterbuating.txt
@@ -0,0 +1,2 @@
+Q: So the only way I(f18) get wet is by like actually doing it with someone otp or being talked through it otp. So this dude I haven’t know long but he asked if i wanted to feel better and I’m like sure ig. So we did it then we stayed otp 20 mins but didn’t talk then he hung up cuz it was like 3am. I’ve been feeling so guilty since I woke up but I asked him today how he felt abt last night and he said it was good he just wanted to make me feel better. I told him I feel guilty and he said I shouldn’t but I do and idk what to do. When I had sex before I didn’t feel guilty after doing it but when I do it otp with someone or send nudes I feel extremely guilty.
+A: Seriously…😃 You said he called you called back the next morn? Even more of a gentleman. Maybe next time you won’t feel guilty. It is a bit awkward at 1st but I’d say you’ll eventually feel better, comfortable, less guilty. So was regular sex right? And it’s ok to be scared, nervous, etc. it shows you have feelings, emotion, and ur human! 😉🫰🏼 So try to keep that nose high! Minor minor bump in the road. That’s what we’re here for.
diff --git a/tests/data/txt/qa/I got ghosted after insisting on wearing a condom because it made the sex bad.txt b/tests/data/txt/qa/I got ghosted after insisting on wearing a condom because it made the sex bad.txt
new file mode 100644
index 0000000000000000000000000000000000000000..eb8c491648d809f325fa78665a954f947ad4dc66
--- /dev/null
+++ b/tests/data/txt/qa/I got ghosted after insisting on wearing a condom because it made the sex bad.txt
@@ -0,0 +1,5 @@
+Q: I F26 was seeing this guy M29 I really liked I thought we had such a good connection. Our first time having sexing I brought condoms because I wanted to be safe, I’m scared of std’s and i was ovulating that week so wanted to make sure I was extra safe. I KNOW how much condoms suck, I truly do but I wanted to wait until we were exclusive to go raw. He kept insisting on not making him wear one and kept saying that he doesn’t have sex with just anyone, and only unprotected sex with girls he’s interested in for relationship. I said I didn’t care and made him wear one. He doesn’t think he performed his best with it ( he came twice tho idk if that means he enjoyed it just a little bit???) . He brought it up again through text and told me to please not make him wear one again that he wants to feel me. I said we can talk about it some other time. He went on to ghost me after this. Never heard from him again. This sucks because I really liked him, and thought it was getting serious and I can’t help but think that if we hadn’t worn one and the sex was better then he would still be interested. I now worry he thought the sex was so bad that he didn’t think it was worth pursuing anything with me. And the fact that he thought I was going to make him wear one again turned him off. I’ve cried so much because just when I think I found a good guy and a good connection the universe is like nope this is another lesson for you. Like did I do anything wrong?? Do you think he didn’t enjoy the sex and that’s why he’s ghosting me? At one point I tried to ride him but his dick kept sliding out and he told me to stop that I need to get wet first, so I stopped and then he just ended up finding prone bone. I was soooo embarrassed by that because I usually am always wet and have no issues riding, that’s one of my fav positions. I felt like I also couldn’t perform my best. Should I reach out and ask to talk about it?? he was the last one to send a message.
+A: He kept insisting on not making him wear one and kept saying that he doesn’t have sex with just anyone sure. Like did I do anything wrong absolutely not. I found a good guy Sorry to say, but you did not. You found an asshole. Do you think he didn’t enjoy the sex and that’s why he’s ghosting me No, i think he is ghosting you because you stood up for what you think is right. Such guys don't need women who stand their ground. Such guys need women who say yes sir all the time. Inferiority complex. You did everything right.
+A: That's awesome, he self eliminated, perfect!
+A: You didn’t have sex for nothing. You had sex bc you wanted to. He sounds like a jerk who doesn’t care about your boundaries and that makes him not for you. If he ghosts bc he has to wear a condom, he’s a child. Also, a person can still get STDs/stis with condom usage, condoms make it safer not bulletproof. So keep telling them to wrap it up. You did nothing wrong.
+A: Lmao you dodged a bullet the guy sounds like a man child. bro's 30 and crying abt a condom 😂😂😂 He's ghosting you because he's hoping you come crying back to him and say you'll let him fuck without a condom. You've done nothing wrong he just wants to have it his way
diff --git a/tests/data/txt/qa/I keep going limp during sex, please help me.txt b/tests/data/txt/qa/I keep going limp during sex, please help me.txt
new file mode 100644
index 0000000000000000000000000000000000000000..e28c7438503d241de48b1bab84600eb415898186
--- /dev/null
+++ b/tests/data/txt/qa/I keep going limp during sex, please help me.txt
@@ -0,0 +1,6 @@
+Q: Errection help I 18m have continuously had an issue of getting horny and starting sex with my girlfriends only to get half limp after a few seconds. I know for a fact it’s not them as this has happened every single time I’ve had sex (around about a year of causal sex). This is happened with three different women and I’m done with it, please if there is any tips or suggestions you all can tell me for maintaining the momentum. P.S. this is not a sexuality or trama thing I know for certain I’m sexually attracted to women nor have I ever experienced sexual trama. Update: Thank you all for the advice I’ve scheduled an appointment with my doctor and will remove pornography from my habits will try and keep you all updated if anything changes
+A: With your age, I’d definitely talk to a doctor if I were you. It could be something hormonal going on. Get your t levels checked and growth hormones.
+A: I've dealt with this off and on since my early 20s and two things completely solved it for me. I cut out masturbation entirely. I didn't realize how desensitized I'd become until stopping. Idk how feasible this is for your situation, but at least making an effort to not wring the heck out of yourself might do a lot. I started doing kegel exercises and realized during sex I'd often tighten my pelvic floor muscles and that resulted in a loss of stiffness. I always felt like clenching helped, but it 100% didn't. This has also generally helped me relax and focus entirely on my partner more.
+A: Sounds like your penis is just as indecisive as you are. Consider a career as a politician. But in all seriousness, have you tried talking to a doctor about this? It could be a physical issue. Don't be shy, seek professional help!
+A: Did you use a condom? Maybe it was too tight? Can you maintain an erection during masturbation? Do you watch porn regularly? If yes, maybe you need harder stuff to maintain an erection. Reduce porn consumption. Do you masturbate regularly? If yes, do you use lubricants? A wet vagina has not such a tight grip like your dry hand. Maybe you are used to a lot of friction. Use lube and reduce masturbation while in a relationship.
+A: You are probably so in your own head about it now. Talk with your partner about it and make sure that she understands that you are going through something. I think a lot of women don't realize how mental it is for men.
diff --git a/tests/data/txt/qa/I lose all sense of control with him.txt b/tests/data/txt/qa/I lose all sense of control with him.txt
new file mode 100644
index 0000000000000000000000000000000000000000..dfbcd0d4ff2888eb243ecda2976038fe553acd7e
--- /dev/null
+++ b/tests/data/txt/qa/I lose all sense of control with him.txt
@@ -0,0 +1,6 @@
+A: Later on in life, you will be longing for those kind of feelings, so enjoy it while you can. It sounds like infatuation or just pure lust. It's the biology that keeps the human species from dying off.
+A: Listen here. I was married for 20 years, as was my current g/f. Neither of us EVER felt the type of chemistry that we do with one another. When we are together, we cannot keep our hands off of one another. When we are apart, we sext constantly and talk about how great it was the last time and how we want to blow each other's minds the next time. I've been with more than my fair share of women over the years, but i have never felt ANYTHING near the desire i do for her. Everything about her drives me wild. Her scent especially...... her skin, her hair, her mouth, her sex scent. It's the same thing for her with me. When people say "chemistry", they rarely mean it literally, but i truly believe there is a chemical reaction and neurological ( and physical and sexual ) reaction that you have to certain people, and of course, attraction, and emotional chemistry only enhance those things. We've been together a year, plan to be married within the next, and i i don't see the "chemistry" wearing off anytime soon, or ever, for that matter. Maybe you've just found "the one". Good luck!
+Q: I 25f have been dating this guy (28m) for 2 months now. I really like him and the past few times I’ve seen him, I have acted like an animal with him. I can’t stop kissing him. I can’t stop touching him. I can’t stop thinking about him. I have never ever behaved this way with a guy I met before and idk what to do. The problem is it’s making me lose all inhibition. Whenever we go out on dates all I think about is making a move on him. There’s been insane tension between us. To the point that we’ve went at it in places we could easily be caught We haven’t had sex yet, but I did blow him. He finished in less than a min and says I’m dangerous, but I really think it’s him. He knows exactly what to do to make me lose control and it just feels so good. I’ve never acted like this with any guy before and I’m worried bc I always hear on the internet that intense chemistry means it’s going to fizzle out. How do I move forward to show that I like him and it’s more than sex to me? Will these feelings eventually fade away?
+A: I’ve been with my husband for nearly 10 years, married for 7. We are still like this, if not more so now. We say if you aren’t obsessed with your partner, what are you even doing? He drives me wild and vice versa.
+A: Why does it have to fizzle out? Don’t think about it and just enjoy it. A lot of people never get to experience this and would love to be in your shoes
+A: You're experience what's known as "limerence," or (in non-monogamous circles) "new relationship energy" (NRE). When a relationship is new, that feeling of bottomless horniness can be really intense and tough to manage. And, honestly, the fact that you're holding yourself back and not fucking him sounds like a move custom tailor made to make yourself even HORNIER. There's a part of us that wants what we can't have, and you're stoking that particular fire. And my advice is to fucking wallow in it. Get your boy into a room with a closed door and a bed and go absolutely insane on each other for as long as your bodies can handle it. This part of the relationship is FUN. The intensity almost always fades, but while it lasts, you get to make some PRIMO wank-bank memories. So go make them. The key is to reign yourself in enough to not make decisions that are stupid or self-destructive in the name of fucking him. Cool it with the public shit. Make sure your birth control strategy is on lockdown and do not deviate from it. Make sure you're not dodging work or basic self-care just to get your fuck on. But within those parameters, revel in the lust. As for showing him it's more than sex, just be good to him while you're not fucking and you'll be fine. Remember that men and women often have RADICALLY different experiences with our sexualities. While I suspect you'd be insulted and hurt if you felt like someone was only with you because they get to fuck you, guys often absorb the message that our sexuality is a shameful imposition. As long as it's not a 24/7 thing, it's FUN when a woman we're into just wants to fuck us and is for the moment completely disinterested in all the other aspects of who we are. It's validating. It makes us feel like it's safe to be horny for you, and for a lot of us, that's rarer than you think. As an American poet once said, "Grab that dick it's yours, bitch." Get out of your head and into his bed. Have fun. Good luck.
diff --git a/tests/data/txt/qa/I need some help.txt b/tests/data/txt/qa/I need some help.txt
new file mode 100644
index 0000000000000000000000000000000000000000..40b944347e25bf1f33f2e2fdd9cf4c427c5a7334
--- /dev/null
+++ b/tests/data/txt/qa/I need some help.txt
@@ -0,0 +1,6 @@
+Q: Hello! im 19F and im just starting to get sexually active, Meaning that im starting to get into sex and all that sexual stuff, what are some useful tips for beginners like me?
+A: don’t do anything you don’t want to do. quickest way to traumatize yourself. also communicate with your partners, ask them what they like, “does that feel good?”, etc. that’s how you learn and also have the best possible sex
+A: The auto message has a link that brings you to the faq & forums which contains a bunch of subjects, even for beginners, many positions, dirty talk, foreplay, activities & etc, try taking a look, it might help! I haven't taken a look yet myself aside from seeing the bunch of forums they have & what subjects they have written down for people like you & me! (I'm a male & I don't have a gf yet so, I have no reason to look at it yet)
+A: Explore your own body and work our what you like, and where you like to be touched and how. Don't be afraid to guide someone else to let them know what you like
+A: Carry condoms and just take your decision wisely on whom to have sex with especially when you're drunk or at a club
+A: First things first become happy with what your body wants and needs. Then find a member of whatever sex you find attractive and get going.
diff --git a/tests/data/txt/qa/I only ask cause I'm intrigued..txt b/tests/data/txt/qa/I only ask cause I'm intrigued..txt
new file mode 100644
index 0000000000000000000000000000000000000000..b49ba69feb3c1fe7600040a60c04fd5d40ee7b5b
--- /dev/null
+++ b/tests/data/txt/qa/I only ask cause I'm intrigued..txt
@@ -0,0 +1,5 @@
+Q: My girl and I have been together almost 3 years now. 36m 29f. There was plenty of infidelity in the beginning of our relationship unfortunately, both of us, but more so her. Me being who I am I ask questions to get closer on the situations because I'm also trying to move past it. But when I ask questions about her sexual adventures and infidelity. Her responses are 'I don't remember or I forgot'. Is this a true and genuine response or is it a response to use just to keep it a secret still? Ladies do you relate? Will respond and answer questions.
+A: I find it unlikely that she forgets 2-3 years ago. But I would say that these probably fall into the category of "don't ask the question if you don't want the answer" and she's probably avoiding talking about it to either protect you or because she wants to forget or both.
+A: She's probably trying to protect you from your own bad feelings coming from other answers.
+A: I ask questions to get closer on the situations because I'm also trying to move past it That's not "moving past it" that's ruminating on something that you're fixated on. How do you propose that continuing to ask questions about something traumatic that happened YEARS ago is moving past it? Every time you ask, you're just giving it new life. This relationship sounds disastrous, by the way...
+A: I think it's her right to tell or not to tell-- this sounds like a bit of a kink for you to know all these kinds of details? As with any kink, she can choose to participate in it or not participate in it. My bet is that she is just wanting to keep private stuff private.
diff --git a/tests/data/txt/qa/I physically cringe at the thought. Help.txt b/tests/data/txt/qa/I physically cringe at the thought. Help.txt
new file mode 100644
index 0000000000000000000000000000000000000000..814e81ee1e10fd01cf6b45a83c8d73ee66c5034f
--- /dev/null
+++ b/tests/data/txt/qa/I physically cringe at the thought. Help.txt
@@ -0,0 +1,4 @@
+Q: So, basically the title. Idk why, but I just never wanna have sex. My partner (M27) and I (F33) have been together for 8 years and usually we have sex when I notice he needs the relief, or when he makes it known. Sometimes he's just straightforward and vocal, other times he'll try turning me on by kissing me or biting my neck. Either way, I'm never put into the mood. I definitely don't mind giving him oral or having sex (whenever we actually have condoms anyway), and it seems like he's satisfied with this? He's also extremely understanding and caring about my lack of sex drive. He's aware of it and I knowwww he's holdong back and not showing how badly or how often he really wants it from me, and I also know he is not cheating on me, and that he would never. He's literally upstanding. Fucking perfection. I wish I felt as passionately as he does, and felt the physical (literal) attraction to him that he so clearly feels for me. He's fine as fuck, I know this. His penis is substantial. He's good at making me orgasm. I'm just never in the mood to be physically intimate with him. I masturbate for stress relief, pain relief, and once in a while just for the fun of it. He's also aware of this. Can anybody give me any advice? Can i spice myself up somehow? Should I try edging and then going to him ? 😵💫😭😵💫😭😓 Any and all advice so very welcome. Thanks if you read this far <3
+A: Masturbating but refraining from orgasm like you actually suggest at the end of your post might be a really good idea to try, but it also sounds like you are simply not sexually attracted to your partner. It’s clear that you have sexual desire and you can enjoy sexual stimulation, so this doesn’t seem like a “you” problem. Were you sexually attracted to him in the past?
+A: Is it possible that you are on any medications? There are a lot of anti-depressants and anti-anxiety meds that can really hamper the ol' sex drive. Conversely, have you tried any sexual stimulants?
+A: I'd suggest getting bloodwork done and seeing if your hormone levels are what they should be.
diff --git a/tests/data/txt/qa/I really wonder how post op trans people experience orgasms.txt b/tests/data/txt/qa/I really wonder how post op trans people experience orgasms.txt
new file mode 100644
index 0000000000000000000000000000000000000000..b2ea2ce519f4bb9769e5a717d7915c87ee3175c9
--- /dev/null
+++ b/tests/data/txt/qa/I really wonder how post op trans people experience orgasms.txt
@@ -0,0 +1,3 @@
+Q: This is also a for me to help a post op trans person reach orgasm but I have no idea how it feels for them
+A: It's like trying to solve a puzzle with missing pieces, but once you figure it out, it's pure bliss.
+A: I'm sure it's different for everyone, but I have a feeling it's a mixture of excitement, satisfaction, and relief. Just like any other orgasm, but with a whole new level of self-discovery.
diff --git a/tests/data/txt/qa/I sounded so desperate during sex.txt b/tests/data/txt/qa/I sounded so desperate during sex.txt
new file mode 100644
index 0000000000000000000000000000000000000000..5be9fdc36be3e38a2adbb0e0b860acf5d5a2c891
--- /dev/null
+++ b/tests/data/txt/qa/I sounded so desperate during sex.txt
@@ -0,0 +1,4 @@
+Q: I was having sex with this guy , and it felt really good , idk why but I kept moaning “please” I’m not sure what that even meant but it felt right to say , I told him that his dick felt so big and it felt good , he was going really deep in me , I kept whining and moaning . I told him his dick felt really big in me , and he chuckled , I am embarrassed cause I sounded so desperate and stupid .
+A: Oh no. Trust ! I’m sure he was loving every second of it! Enthusiasm is everything during intimacy! You were enjoying yourself! Get it girl !
+A: Sex is about intimacy and vulnerability. You're fine.
+A: You need to keep doing what you’re doing. Every guy would love hearing that!
diff --git a/tests/data/txt/qa/I struggle with understanding how learning my own body will help.txt b/tests/data/txt/qa/I struggle with understanding how learning my own body will help.txt
new file mode 100644
index 0000000000000000000000000000000000000000..68b10c33fab8746ab9fd6e70464d06eda7ba0f9f
--- /dev/null
+++ b/tests/data/txt/qa/I struggle with understanding how learning my own body will help.txt
@@ -0,0 +1,4 @@
+Q: I posted in another sub but figured that maybe this is a more suitable place. So I'm kind of causing a dead bedroom in my marriage because sex doesn't give me pleasure. I've heard many times that I should learn by myself how I like to be touched but I can't understand how it would work. Even if I managed to find out how to please myself with fingers he still wouldn't be able to repeat it during penetration. If it means that I'm supposed to masturbate while we have sex then whatever pleasure I would feel would not be caused by him but by myself, which would still make sex obsolete (meaning I would be doing everything anyway, sex wouldn't be the source of my pleasure). So I can't find motivation in finding out how to please myself. I get irritated easily when I try to find out when I'm alone. It does affect me and our sex life because lack of pleasure on my part makes sex non existent. He doesn't want to do it if I don't enjoy it. Maybe I'm misunderstanding something, am I missing some important information?
+A: The first thing you should do is work on your extremely narrow definition of what sex should be. Sex is about more than penetration. What makes a sexual experience enjoyable is that both of you are experiencing pleasure during the process of the whole encounter, not that you will necessarily both enjoy the same things. It makes a difference because if you know how to please yourself because then you could also show your husband how to touch you like that. And yeah, masturbating during penetration is pretty normal for a lot of people. It is also a thing that if you orgasm first from your husband using his fingers or mouth on you, you may find penetration more pleasurable.
+A: Are you just struggling to please yourself then? Because you’re talking in your post like you haven’t figured it out, so why bother. If you don’t know what you like how is he supposed to figure it out?
+A: The goal of finding out what brings you pleasure is to ensure that there are some things in the mix that cause you to walk away saying, "that encounter was pleasurable, and I'd like to do it again some time." Sex is always a give and take of stuff you like and stuff your partner likes... not everything one partner likes will bring rote, physical pleasure to the other person, but you don't have to make each and every act objectively physically, orgasmically pleasurable, you just have to know enough to help make sure that the experience overall is wantable. That you walk away saying, "that experience on the whole was pleasurable, and I'd like to do it again some time." I am never going to find orgamic pleasure in penetration, but I enjoy it because I enjoy the whole of the experience, and enjoy seeing my partner enjoying themselves, etc. However, if there aren't ALSO things in the mix that feel good for me (whether that be him doing something to me, or me doing something myself that he's also an active participant in), then sex begins to feel one-sided and not-wantable.
diff --git a/tests/data/txt/qa/I think edging has ruined my erections.txt b/tests/data/txt/qa/I think edging has ruined my erections.txt
new file mode 100644
index 0000000000000000000000000000000000000000..2bf52d9ac56ce38a68027385acd4213717a672b3
--- /dev/null
+++ b/tests/data/txt/qa/I think edging has ruined my erections.txt
@@ -0,0 +1,4 @@
+Q: I'm a married 38m (been married for 15 years). I used to be able to edge while masturbating and keep an erection through multiple edging iterations until I finally ejaculated. I used this technique during sex as well to keep from finishing too early. And it has worked out well. Awhile ago I started only edging when I was masturbating (not finishing to ejaculation and full orgasm), and saving orgasm and ejaculation for sex with my wife. I had no issues doing that for probably years. However, lately after one edging iteration, I lose my erection. It's like my body thinks we're done even though I didn't fully orgasm and I didn't ejaculate. The problem is this is now happening during sex. If I stop to keep myself from finishing so I can keep going to get my wife to the finish, I lose my erection. Obviously this is an issue. Did I break myself? Anything I can do to fix this?
+A: Can you get it back in the same session?
+A: Pelvic floor muscles might be too tight from that level of work for so long. I would first try looking up pelvic floor exercises on YouTube, not just the "Kegel squeeze" but actually kind of the opposite. Stretches, certain yoga positions and breathing exercises combined with focusing on relaxing or even bearing down/reverse kegel during a deep diaphragmatic breath. Check out "man flow yoga" on YouTube, specifically the ones mentioning the pelvic floor. Worth a try, anyway.
+A: Could it be just related to age? I've found my husband is slower to get hard and doesn't get as hard as he used to, we've been married 15 years and are in our 40s now.
diff --git a/tests/data/txt/qa/I wanna be on top during sex, but my chest is flat.txt b/tests/data/txt/qa/I wanna be on top during sex, but my chest is flat.txt
new file mode 100644
index 0000000000000000000000000000000000000000..8909070774ab094db1507d87b9d610a322363bda
--- /dev/null
+++ b/tests/data/txt/qa/I wanna be on top during sex, but my chest is flat.txt
@@ -0,0 +1,5 @@
+Q: i can’t get over my insecurities about having flat chest, cowgirl is the only position that makes my bf look straight into my breast. He loves them but i don’t care i hate them and i hate taking my top off during sex. How do i get over it. Men say they like cowgirl because of the breast bounce but i have nothing to bounce
+A: Forget your insecurities. Everyone has preferences but men love women of all shapes and sizes. Also, the sexiest thing about a woman is confidence. Hop on top like you’re the hottest woman on the planet and YOU WILL BE.
+A: I’m married to a woman who is 5’1 and 100 pounds. She has small breasts, which suit her. Cowgirl is our preferred position. I find her incredibly hot, it’s never even crossed my mind that she doesn’t have huge bouncing breasts. They would probably look out of place on her body, and the same is probably true of you.
+A: Bouncing breasts isn't the only benefit of cowgirl. Mostly, we know that its a great position for the lady and we want our lady to enjoy herself.
+A: More than a mouthful is a waste ((:
diff --git a/tests/data/txt/qa/I want a man into dp & dap.txt b/tests/data/txt/qa/I want a man into dp & dap.txt
new file mode 100644
index 0000000000000000000000000000000000000000..78a04d0b83074c922903f5c6cc028d854d90f584
--- /dev/null
+++ b/tests/data/txt/qa/I want a man into dp & dap.txt
@@ -0,0 +1,3 @@
+Q: 27f in Texas here. I’m starting to think maybe something is wrong with me. I don’t seem to attract men into things like DP. Even the wild guys don’t want to do that with me. Where can I go to meet men into double penetration that want it all the time. I also want to try dap which maybe makes me crazy. Looks hot in porn not sure about the realities but I’m not scared. I’m not ugly and I’ve noticed men do seem to fall fast for me. Never understood why so many men seem to have issues combining who they care about and the slut type. Maybe I’m just ranting. Not sure what to expect from this.
+A: It might be difficult to find such guys, but you can definitely simulate it no issues! Have them fuck you with a toy and his dick. Something like that. Best of luck.
+A: I wouldn't mind giving it ago as a "I'll try it once" sort of thing because it could be a very unique experience but I can't imagine a lot of people are so comfortable with their sexuality that like minded individuals are easy to come by. Keep up the search. Try perhaps FetLife or something more specific to seek people who would be interested.
diff --git a/tests/data/txt/qa/I want to ask my (27f) boyfriend (39m) for sex when he gets home but I want to put effort into it..txt b/tests/data/txt/qa/I want to ask my (27f) boyfriend (39m) for sex when he gets home but I want to put effort into it..txt
new file mode 100644
index 0000000000000000000000000000000000000000..a5721c9a6f10d90ad949622d03d11f3ab93ed26c
--- /dev/null
+++ b/tests/data/txt/qa/I want to ask my (27f) boyfriend (39m) for sex when he gets home but I want to put effort into it..txt
@@ -0,0 +1,5 @@
+Q: Clear and open communication is important in a relationship. I get that. I can't expect him to read my mind and then get pouty when he has no clue what I want. I want sex Monday. It's been about 2 weeks because of work schedules and an illness. But, I don't want to just say "I want sex." Or just stick my hands down his pants. Both of those feel too low-effort. I want to do something special. He gets home Monday morning. He will have been away since Friday evening. We live with roommates, so I can't just be naked in the living room when he walks in the door. Everything needs to stay contained in the bedroom. I would love suggestions. The idea of catching him off guard somehow really gets my motor revving, but he has expressed preference in the past for advanced notice so he can mentally prepare. What sort of things could I text him Sunday night? What sort of situation could he walk into in the bedroom Monday morning?
+A: Girl, get some lingerie and send him a photo saying you're in the mood. Or wait for him to arrive dressed in lingerie or even naked! be confident :)
+A: "Oh thank God you're here. I have a project in the bedroom that needs your attention..."
+A: First, ask him how he's doing before he gets home to make sure he's doing okay. Worst thing would be to get all ready to jump him when he walks in and him feeling miserable and not wanting anything at that moment. If all is good, wait for him to get home, big hug kiss ect when he comes in. Wear something baggy with your choice of something sexy (or nothing) underneath. And make it as much of a normal welcome back kind of thing as you can. He will more than likely want to get changed and put his luggage away when he gets home (if not suggest he does it), when he walks into the bedroom to do so, walk in behind him and close the door behind you and lean up against it as if you are blocking his escape. Then tell him how much you missed him and slowly reveal what you have underneath your baggy clothes.
+A: Send him a text during the day saying something like ‘I can’t stop thinking of you naked’ or ‘my body misses you I can’t wait to see you later’
diff --git a/tests/data/txt/qa/I want to jerk my bf while grinding on him.txt b/tests/data/txt/qa/I want to jerk my bf while grinding on him.txt
new file mode 100644
index 0000000000000000000000000000000000000000..28748b0643d08c306798c0e2ab10c5f05e09be41
--- /dev/null
+++ b/tests/data/txt/qa/I want to jerk my bf while grinding on him.txt
@@ -0,0 +1,6 @@
+A: Very enjoyable experience. Highly recommended. You can also go prone and he can slide between your cheeks, if you’re interested.
+Q: I feel that it’s something I’ve never tried fully. But a big turn on for me would be to get my bf grinding his cock on my ass. I would love for him to cum on it, while I press my ass against him. But I worry that he wouldn’t be into it or perhaps only interested in penetrative sex. Could this be arousing to him? We are discovering what we like. I know it would definitely make me cum to feel his crotch on me.
+A: Hahaha look I can't speak for your bf, but based on my experience of reading the above, I'd say it's worth a try
+A: You could always try... asking him.
+A: I had been married 20 years before I brought this up to my wife. She was like “ok”. I wish I hadn’t waited. My point. Let him know. lol.
+A: Well men love it. I once grinded my ex on the dance floor, and well he got so hard his underwear could hardly hold it In anymore, I kinda kept rubbing my hands on his hard on, plus a little grinding till he came in his pants :P He had to go wash himself and it was very embarrassing for him but I loved it. It was high for me to get him off without actually having sex.
diff --git a/tests/data/txt/qa/I want to make a foursome groupchat.txt b/tests/data/txt/qa/I want to make a foursome groupchat.txt
new file mode 100644
index 0000000000000000000000000000000000000000..f07d46599b8e14c1ac66f4a87942f6115e31a862
--- /dev/null
+++ b/tests/data/txt/qa/I want to make a foursome groupchat.txt
@@ -0,0 +1,3 @@
+Q: I want to make a gc on insta. It’s a little kink. I need two other girls. It’ll be me, my bf and the two other girls who’ll be interested. We can talk about freaky stuff and so on. If there’s anyone who’s interested then lmk
+A: Unicorn Hunting: difficulty level “survival mode”. Can’t say how much of a bad idea joining this group would be!
+A: Hey! That sounds like an interesting idea. I’d love to join the group chat and see if we can vibe together. Could you share more details or let me know how we can connect? 😊
diff --git a/tests/data/txt/qa/I watched porn during sex with my partner and his comments after really hurt my feelings.txt b/tests/data/txt/qa/I watched porn during sex with my partner and his comments after really hurt my feelings.txt
new file mode 100644
index 0000000000000000000000000000000000000000..5c3247931ec03c8529137c17e78647afcfe5f8fb
--- /dev/null
+++ b/tests/data/txt/qa/I watched porn during sex with my partner and his comments after really hurt my feelings.txt
@@ -0,0 +1,4 @@
+Q: So my partner undeniable messed up a fantasy that I’ve had for a while, and I need to get over it but am really struggling. I’ve been wanting to watch porn during sex for a while, and found some really hot videos for us to bang to. It was my idea, and it went really well. We were both super turned on, came really hard, and it was really hot. It was arguably a bad idea on my part, since we had gone through a long period of time where I felt really undesired. But us spicing things up has been awesome, and I have no issue with him being turned on or attracted to other women. After, we were laying down and talking, and he said a string of things that came out totally wrong. He tends to just talk without thinking, and this was one of those times. Unprompted, he said “yeah the second girl didn’t really do anything for me, she looked just like you and has your body type. The first girl really did something for me, she had an absolutely fantastic ass and the darker skin, so it felt new. You have incredible boobs and a good ass already, so just seeing that really amazing ass was what really got me going.” I immediately got quiet, as this made me super uncomfortable. We had both commented on how the first girl had a great ass, but I didn’t expect him to directly compare my body to hers. The comments about my body type not doing anything for him mostly just came out wrong, and he tried to clarify “I meant that I already have that right in front of me, I have that type of amazing body at home, so it just didn’t turn me on to watch it when you already have it, what turned me on was seeing something different”. I just wish we could have both agreed how hot the girls were without getting into direct comparisons of our bodies and what turns him on. A super hot experience has now made me feel really self conscious, especially since I was feeling pretty undesired. I’m trying to get over this since it was my idea, but I never expected that response. I am feeling better emotionally this morning, but have also been obsessively researching how to change my ass shape and feeling pretty self conscious. I really need to find a way to get over this and not let this turn into something where I feel even less desired then before, and become obsessed with changing my appearance.
+A: Perhaps logic and science can offer some insight here? Men are evolutionarily programmed to seek novelty; they are often more excited by what's "new." From an evolutionary perspective, the drive to spread one's genes widely is linked to the attraction to different partners, which enhances genetic diversity within the species. This drive is often heightened by greater arousal and attraction to new experiences. It is just how it works in him. If we think logically, you might consider making a change, like altering your ass. While this might work initially, the novelty will eventually wear off, and it could feel "old" again. So, why bother too much? :-) :-) But! You can tap into the excitement of novelty through role-playing. Try changing your style, different makeup, wearing a wig or adopting a different hairstyle, get some intriguing lingerie. Embrace a new persona—maybe meet your man at a bar and "pick him up" as if you were strangers. Make it fun and playful, and see where the adventure leads. :) It's also wonderful that you have a strong level of communication with him. Discuss how his comments about your body make you feel and ask him to avoid framing your body type in that way. At the same time, encourage him to express his admiration and appreciation for you—just as you are. :)
+A: He might be not the smartest one, but since you both wanted to watch porn to ADD to your excitement, I don't think that he wanted to hurt you. He obviously likes your body, but since one of the women had similar attributes, that woman didn't ADD to his excitement.
+A: Soooooo…. I don’t know how to word this to where it won’t be incredibly awful of a statement but it sounds like you need to dump this guy. If he’s openly admitted to being bored of you in passing like this then there’s nothing stopping him from cheating or at least looking elsewhere for his desire. You shouldn’t have to “get over” anything. Porn isn’t real. It’s a fabrication of desire and everything is fake. Him comparing you to something like that is honestly awful and it makes sense that you feel the way you do. Your feelings are valid in this. You deserve someone better who will be super excited about just the PROSPECT of seeing you naked.
diff --git a/tests/data/txt/qa/I'M A MALE (25M)AND I HAVE LOTS OF FEMALE FRIENDS.txt b/tests/data/txt/qa/I'M A MALE (25M)AND I HAVE LOTS OF FEMALE FRIENDS.txt
new file mode 100644
index 0000000000000000000000000000000000000000..b396c6c378821e45b02ceee3bbee9944da2897b2
--- /dev/null
+++ b/tests/data/txt/qa/I'M A MALE (25M)AND I HAVE LOTS OF FEMALE FRIENDS.txt
@@ -0,0 +1,5 @@
+Q: So regarding this how to set a boundary between me and then such that they won't fall for me and how to stay friends with them for long time!!
+A: What makes you think they're inevitably going to fall for you?
+A: Has this been a continual problem in your life? It's happened multiple times?
+A: Boundaries can’t/don’t prevent people from falling in love. If they’re gonna fall in love, that’ll happen regardless of what boundaries you set. That being said, there’s no evidence in your post or your follow-up comments that that’s a real risk with your friends, so I wouldn’t worry about it. You can cross that bridge if you ever come to it.
+A: Simply mention "bro" in casually when you're talking to them, and let them know that you regard them as buddies rather than possible love interests. Recall that open communication is important; discuss your boundaries with them and be sure to respect theirs. It doesn't have to be awkward to befriend someone!
diff --git a/tests/data/txt/qa/I'm disheartened and I don't know what to do next..txt b/tests/data/txt/qa/I'm disheartened and I don't know what to do next..txt
new file mode 100644
index 0000000000000000000000000000000000000000..fc59b4485fe25879d533a2aeb7a93af1a7d250e9
--- /dev/null
+++ b/tests/data/txt/qa/I'm disheartened and I don't know what to do next..txt
@@ -0,0 +1,6 @@
+Q: I've been with my partner just over 15 years I adore her and nothing will change that. The past few years I've developed on inkling to try different kinks or fetishes and had a discussion with her earlier this year. She's not interested in anything I've put forward and has no suggestions herself. suggested asking within our friend group which she agreed to to do some of the tamer things as a group if we all agreed. One person in the group shut it down which is reasonable but I'm at a loss now and feeling really bad about it. I don't know what to do, this has been on my mind for about a while and the confidence it took me just to mention it was mentally taxing and the full stop to it is really depressing me.
+A: If she's not into trying your new kinks then she's not interested. I'm not sure what else you'd like people to say. We also don't have any information on what those new kinks are so it's all too vague to really comment.
+A: Sometimes people are not sexually compatible. Sometimes you have to accept that some fantasies will remain exactly that, and sometimes you have to come to conclusion that you have to move on from the relationship. Keep talking to her, keep bringing up your desires, keep trying new things and new ideas but sometimes it's a stonewall and you have to make a choice.
+A: Maybe it's time to expand your friend group to include some more adventurous and open-minded individuals. Don't let one person hold you back from exploring your desires (with consent, of course). And hey, at least you have a partner who loves you unconditionally for who you are. That's worth more than any kinky fantasy.
+A: OP: I’d suggest some variation of this… “ I know we have talked about this before but I just think it would be helpful for us to put our cards on the table and figure out what our sexual middle ground is. I would like to find new things for us to do that are within your comfort level and of course, I want to do the same for you.” Bear in mind: Trying to turn a vanilla person kinky is like trying to turn a kinky person vanilla: it’s not likely and the more pressure put on either/both people to conform to the either, the less people enjoy their sex life. Here’s one way to approach this: Think of all the things you like as a circle. Same with your SO. How much overlap is between them? That’s the middle ground that works for both of you. But then pay attention to what’s NOT in the middle ground: the stuff you like but they don’t and vice versa. Call this what’s “out of bounds” so the question becomes: is the overlap good enough to make up for not being able to enjoy those things that are out of bounds? Only you can answer that. But the point that I’m trying to make is neither you nor your partner should expect the other to shift their entire circle in order to create more compatibility. That’s engaging in naive, wishful thinking. instead, focus on the reality in front of you and then make a decision about whether that reality is good enough or not. Few couples have 100% overlap but couples who are happy with their sex life or ones in which there’s enough overlap to keep both people feeling fulfilled. Is that you and your partner? Only you two can figure that out. Dealing with FOMO is a condition of being alive but if you can’t bear the thought of going the rest of your life without being able to do ________ then you need to be honest with yourself and with your partner about that. Personally, I would love to explore anal play with my partner but that’s a pretty hard line for her and so I just accept that it’s out of bounds and so be it. Our sex life is great even if it doesn’t include everything that I would want to try. But I’m OK with that reality. Can you live with yours?
+A: Will she let you try your fantasies with someone else? If you're upfront and honest with each other, she may be open. The FOMO will likely drive a wedge over time.
diff --git a/tests/data/txt/qa/I'm done with sex for now..txt b/tests/data/txt/qa/I'm done with sex for now..txt
new file mode 100644
index 0000000000000000000000000000000000000000..b398b44dce39a615cb28d9152428b5713396cf1e
--- /dev/null
+++ b/tests/data/txt/qa/I'm done with sex for now..txt
@@ -0,0 +1,2 @@
+Q: I (26M, heterosexual) don't find any pleasure in it, it's really hard for me to even cum, takes a lot of effort and afterwards I always feel heavy, sick, bad taste in the mouth and headache, I find it kind of disgusting even. Tried new things and still as boring and tiring of an experience. Anybody else experiencing the same thing? Don't have any traumas, bad experiences, it's not my partners either so it's just me and I don't know why. Don't want to do it again at least for some time.
+A: Could be low Lobito and having too many sexual encounters?
diff --git a/tests/data/txt/qa/In need of help.txt b/tests/data/txt/qa/In need of help.txt
new file mode 100644
index 0000000000000000000000000000000000000000..2a89d37e4db5afda1f3f56a9d4ac7da601e09bd2
--- /dev/null
+++ b/tests/data/txt/qa/In need of help.txt
@@ -0,0 +1,3 @@
+Q: Husband here and throwaway account for obvious reasons. Now, I know the "dead bedroom" questions have been done to death in this community, and the answer mostly comes down to communication. What happens when communication doesn't work? We've been together for 25+ years and have 2 kids together. Sex had all but died recently. To the point where it's been close to 6 months between "sessions" if you will, and when we do, it's - kiss kiss... piv. She gets hers multiple times and off to slumber town. We've spoken about it many, many times, and it always comes down to me having to do more. When I do, I'm shot down. I miss the days when unprompted she'd grab my dick and go to town. It didn't matter when or where, but now, I don't remember the last time she even touched it. I'm expected to do everything, including initiating only to be turned down 98% off the time. I've read the dead bedroom posts, and while some have meaningful advice, the general crux of most is to talk about it. We have. I'm currently as blue in the face as the Blue Man Group.... Any other suggestions? TL/DR: almost dead bedroom. Talking about it hasn't helped.
+A: Well, I’d try couples counseling. I highly recommend finding an Emotionally Focused Therapy (EFT) counselor. At the very least, it may help with the impasse in communication. Next, I’d go to my partner with something like this: “I want to be in a relationship where sex and intimacy is part of how we relate. That’s what I want from our marriage. If that’s not what you want, I would like to know.” If she doesn’t really answer the question or tries to flip things around on you, then ask again. Get a clear answer. If she says “yes, I want that too” then invite her to work with you to figure out how to make that happen. If she says no? Or just won’t answer the question? Then, you need to ask yourself: If nothing changes, can you still embrace being in the relationship?** And by “embrace” I mean you minimize your frustration, you remove resentment. It’s not just about tolerating things, it’s about accepting “this relationship is so amazing, I’m willing to give up the kind of sex life I want in order to stay with my partner.” In other words, you’re willing to sacrifice a better sex life for the sake of your relationship and you do so without making yourself a martyr. If you can’t embrace things as they are? Then you’re saying “this marriage can’t meet my needs.” And what would that knowledge mean for you?
+A: What happens when communication doesn't work? Communication almost never helps the situations, you can't negotiate desire after all. So stop talking about it, there is very little chance of the talk helping but a fairly high risk of you looking needing and her feeling pressured it always comes down to me having to do more. When I do, I'm shot down. You have incentivized not having sex with you. The less sex she has the more she gets from you in every other area of the relationship, I'm sure you can see how that isn't beneficial for your sex life. Beyond that the more you do for her and/or the relationship/family the less you do for yourself, which means you are simply less interesting. You have learned talking about it doesn't work You have learned jumping through her hoops doesn't work Have you tried prioritizing yourself? Making sure you are happy, healthy, and have an interesting life?
diff --git a/tests/data/txt/qa/Initiating sex as a woman.txt b/tests/data/txt/qa/Initiating sex as a woman.txt
new file mode 100644
index 0000000000000000000000000000000000000000..33a1b2cdc21a1299700cfe8add3ee643670daad5
--- /dev/null
+++ b/tests/data/txt/qa/Initiating sex as a woman.txt
@@ -0,0 +1,3 @@
+Q: Hey so my husband recently expressed that he feels as though I don’t “want” him sexually because I don’t do anything to initiate sex. I just don’t know how tbh. So what are some ways I can initiate sex as a submissive woman without being dominant?
+A: Whisper in his ear and kiss his neck Or something along these lines
+A: As a submissive woman, I find it difficult to also make the first move on my boyfriend as well. It can be intimidating and nerve wracking but from what I’ve learned, men are really easy lol. I usually start by making out and placing his hands when I want him to touch me. Once that gets a little heavy, he usually gets the idea. Maybe take his shirt off, straddle him, do a little strip tease, start bending over in sexy ways, let him see your body and tease him with the idea of it. These are just some things I do to initiate sex with my bf.
diff --git a/tests/data/txt/qa/Intercourse feels strange.txt b/tests/data/txt/qa/Intercourse feels strange.txt
new file mode 100644
index 0000000000000000000000000000000000000000..f5b54bb58a2783a364735d30f3c994c8fb6e3428
--- /dev/null
+++ b/tests/data/txt/qa/Intercourse feels strange.txt
@@ -0,0 +1,7 @@
+A: First all condoms take away the natural feeling.4059209156
+Q: Hey guys, I (18 M) just lost my virginity to my gf. Since I have never done it before and only used my hand to pleasure myself, vagina intercourse felt weird. It wasn’t unpleasant, just tight and since I was wearing a condom I didn’t get all the pleasure that I wanted from the experience. Along with performance anxiety, I couldn’t keep it up for long so we just stopped. I am scared that I won’t like vaginal intercourse since it is all so new, any advice to get over this?
+A: Don’t over think that you couldn’t keep it up, nervousness is a natural part of learning to have sex, and getting used to how things feel. It happens to guys all the time, even experienced men who just get a new partner. Regarding the condom, I’m assuming you are using it as the primary means of birth control? If so, please keep using them. But you can also try a bunch of different brands and types, they do feel different. It’s worth buying a few packs and just experimenting, even by yourself masturbating. That way you know what you like and your body is used to the sensation.
+A: Use lube both on the inside and outside of the condom
+A: Yeah my first time was with a condom, it was a total fail :D but that's also just the first time thing and the nervousness. Now I can use a condom and it still feels good. You just to keep practising ;)
+A: Lots of men have the experience you've had, where fucking a pussy while wearing a condom doesn't feel anything like one of the only things that has ever gotten them off (their own tight, dry fist) and seems disappointing. If you want to have sex with people who can get pregnant, their wellbeing must be the priority over increased sensitivity for a five to ten minute fuck, because one of the risks of pregnancy/giving birth is literally dying. Condom sex feels weird and less good for the person being penetrated, too, but for most of us it's highly preferable to getting pregnant and maybe dying. The answer is to experiment with masturbating in different ways to get used to different sensations. Try jerking off with lube until the wetness isn't unfamiliar, and practice putting on condoms and masturbating with them on, too, until you're used to the feeling and figure out what kind of pace and pressure work for you. Always use water/silicone based lubes with condoms, because too much friction is usually what makes them break (and feels shitty/painful for the person getting fucked). With your partner you can also experiment with other kinds of stimulation that will add more pleasure to the whole experience; nipple play, kissing, playing with your balls, dirty talk, roleplay, toys like vibrating cock rings (which can also be great for stimulating her clit during sex hands-free). Some guys love a taint massage or a finger or toy in the ass to get at the prostate (the "male g spot") while fucking. Some couples like to watch porn together. There's a lot to explore!
+A: Stop jerking off, or as close to it as possible. It's that simple. You'll start craving anything that will stimulate you and when you get it from a vagina, you'll start liking vagina. I've had to do resets like this after jerking off too much or watching a bit too much porn or both. You're basically in the same place, but for a different reason.
diff --git a/tests/data/txt/qa/Is Lush 3 worth its price.txt b/tests/data/txt/qa/Is Lush 3 worth its price.txt
new file mode 100644
index 0000000000000000000000000000000000000000..1b1a61fc3aad03d6772dbea5d2c57a13452ec5e3
--- /dev/null
+++ b/tests/data/txt/qa/Is Lush 3 worth its price.txt
@@ -0,0 +1,4 @@
+A: Yes it is worth it! It vibes your g-spot and you might even be able to squirt with it. I know I can. You can get patterns off the app and the vibes can change each time you use it so it never gets old. You can also use it with a clit vibe and have a blended orgasm. It is sooooo good. Plus you can use it for outside the bedroom and have your partner control it while out and about or if your partner is long distance and he/she can make you come.
+Q: Hi! I wanted to know if anyone in here has tried Lovense Lush 3 and what are you opinions on it. Specially for those who usually prefer clitoral stimulation over vaginal! Me personally, I don't get almost any pleasure from penetration alone, even though I find it to be a good complement for external stimulation. Even so I want to give this a try. I honestly don't expect to get an orgasm only using this toy (even tho I've never tried internal vibration, maybe it surprises me?) but I'm worried that I might spend a lot of money on it and won't get barely any pleasure. The thing is I really want to try a remote toy and this one offers so many options that seems so hot! So what do you all think? Is it good for at least teasing/edging? Does it work good on people who prefers external stimulation?
+A: It was definitely worth it for me, but I use it internally. It's shape allows it to sit right up against my G-spot and that has allowed for some intense play sessions while being controlled. It is a relatively powerful vibe, though; so I'm sure you'd enjoy it for clitoral stimulation!
+A: I prefer external vibration. I hate all the sucky-toys. They have a steep learning curve (or at least did for me) and the orgasms SUCK (pun intended.) Good ol' external vibration for me, every time.
diff --git a/tests/data/txt/qa/Is ballsucking dangerous for me (M).txt b/tests/data/txt/qa/Is ballsucking dangerous for me (M).txt
new file mode 100644
index 0000000000000000000000000000000000000000..1eb521c7ee8557e54f7aa1c2e8e46810aebf1ca6
--- /dev/null
+++ b/tests/data/txt/qa/Is ballsucking dangerous for me (M).txt
@@ -0,0 +1,2 @@
+Q: Hi all, I hope this is the right place to ask. Otherwise I'll try a more "medical" subreddit I'm not into cock and ball torture, the most I could tolerate is a light pat on the nuts... definitely not kicking, stomping, stilettos or anything🥶But I probably like it more aggressive than most guys. I love strong ballsucking, rubbing, even full on grabbing them and *lightly* tug/twist. Even pinching them my fingers n thumb and lightly rolling/squeezing them during masturbation. Currently I go to a regular at a (legal) brothel who performs a great service, managing both nuts in her mouth at once. If there's ever a perk of being less than average sized it's this lol I love seeing ballsucking porn and especially oral focused JAV where they go absolutely wild on the guy's nuts. Acts like 2 girls tugging on each ball from the side, visibly pulling it with their mouths, and some rare girls having room in their mouths to swallow both nuts while deepthroating... 🫣definitely a fantasy of mine that I'd like experience. Doesn't seem like fake nuts but idk But then I read about how fragile the cords in the balls are, testicular torsion and... yikes. Ball play has been amazing since discovering it's not a off limit zone for me, but the thought of going too far and potentially having to surgically remove a nut or something is enough to make the boys retract 😐I can see in the heat of the moment sometimes you could go too hard and potentially damage something. So any experts, is all this ballsucking and tugging stuff I'm interested in dangerous? Tbh I've never once experienced any real pain from these. Just the odd times when initially establishing how hard to go girl might squeeze a lil too hard with her hand. And sometimes a vague soreness in the region, the balls aching a little as if they gave it their all on the battlefield and need to hibernate 😂 My guess is, if you stay away from extreme CBT activities or having a girl doing 180-360 ballsack twists with a 2mm tight grip like she's wringing a wet towel you *should* be fine? Cheers
+A: Hi, just don`t go too hard, cause in the heat of the moment girl can get very playful, so you can get your balls damaged. Also, if balls are damaged on a regular basis, then it can lead to not having kids in the future and many other nasty things.
diff --git a/tests/data/txt/qa/Is it bad to keep going after I cum inside of a condom.txt b/tests/data/txt/qa/Is it bad to keep going after I cum inside of a condom.txt
new file mode 100644
index 0000000000000000000000000000000000000000..3a6ba382c3fd4b7b401b6e1143de277e288345af
--- /dev/null
+++ b/tests/data/txt/qa/Is it bad to keep going after I cum inside of a condom.txt
@@ -0,0 +1,3 @@
+Q: I’m a 20 year old male new to the sex game, is it okay to continue having sex after I came in the condom? I also have a couple questions about eating/fingering if anyone could help me out with that as well!
+A: Condoms are meant for one use only. If you want to continue after coming, you need to pull out, take off the condom, and put a new one on first. Otherwise you run the risk of it breaking/leaking.
+A: Ask your other questions and I'll respond. You can keep going with a condom on, post orgasm, BUT it is risky. Post orgasm, your erection will start to decrease and that once tight condom is going to start to bag up. Next we add liquid inside the condom, allowing for easier sliding, and well you can probably guess - it is much more likely to slip off. Now, I would go for a little longer post orgasm, because to immediately withdrawal - takes away from the great feelings. However, when I did this, I was more careful with my strokes AND I would pinch the base of the condom when I with withdrew - to ensure it wouldn't slide off. Lots of variables that can make this easier to have a slip up or more difficult, so understand your body and the condoms you use. Just know that there is a risk. Of course a condom can never be reused. It's a one and done, orgasm or not. Always use a new condom when starting.
diff --git a/tests/data/txt/qa/Is it possible to adjust from being passive to submissive or pleasing.txt b/tests/data/txt/qa/Is it possible to adjust from being passive to submissive or pleasing.txt
new file mode 100644
index 0000000000000000000000000000000000000000..35d22263b57d1f1725522de217fd3f1e518991eb
--- /dev/null
+++ b/tests/data/txt/qa/Is it possible to adjust from being passive to submissive or pleasing.txt
@@ -0,0 +1,4 @@
+Q: My partner (f) and I (m) have some issues in our sex life. In short she is a completely passive starfish. While I’m not that passive, I’m not that dominant either. I do like her to take initiative sometimes, and I would like her to be more active as well. Currently I have to do everything. If I don’t take initiative nothing ever happens, even for months. When we do get intimate, I spend a lot of time and energy getting her to finish, and if I don’t push her she will not return the favor. We talked about it, and what she wants is me to be more aggressive. As we have decided to try and improve our sex life, I will make an effort to take more direct initiative As for her, I was thinking, is it psychologically possible to transform passive into submissive / pleasing? I would like to propose this to her as something to consider.
+A: Keep communicating. Ok, so she's asked you to be more dominant, but what does she bring to the table then? Tell her what's you'd be into and ask if she's comfortable doing any of that
+A: Sure! Sounds like she's not satisfied with your lack of dominance, and you're not satisfied with her lack of effort. She seems to think she'd want to put in more effort if you cranked up the dominance. Be safe! If you're gonna be doing kink stuff, look up how to SAFELY do it before you do! Leather handcuffs or bondage tape are a very safe place to start, there's not much that can go wrong. Same with spanking. Choking isn't the beginner's move that it's often portrayed as, make sure you know what you're doing before you go putting your hand around her throat.
+A: You're actually asking a really good question. There are tons of people here who have been requested to be more dominant or trying to figure out how to get their partner to be more dominant. The reality is that if she wants you to be more dominant, then she has to be equally more submissive, or it's a head butting session. It's a type of roleplay in the beginning, and she has to play her part just as much as you do. She also needs to understand that we live in a post "me too" world. It's not so simple to throw her on the bed, give her a spanking, pull her hair, call her a good little slut and then explain to a court why you weren't assaulting her. And until you've done all this successfully with her, you have no idea how she will react to her own request. Take baby steps, ask for and give feedback, increase your communication skills, and learn about sexual negotiations.
diff --git a/tests/data/txt/qa/Is it safe to dry hump Bare on each other.txt b/tests/data/txt/qa/Is it safe to dry hump Bare on each other.txt
new file mode 100644
index 0000000000000000000000000000000000000000..fa8fb11224a6be8b2e8098ee38fc89450796936e
--- /dev/null
+++ b/tests/data/txt/qa/Is it safe to dry hump Bare on each other.txt
@@ -0,0 +1,5 @@
+Q: So me and my girlfriend dry humped with me on top and without clothes on for the first time today (it was basically missionary but my penis was rubbing on her clit) and I’m just worried if any of my Precum did get in or near her vagina and how dangerous that would be? Is it safe unless it’s properly inside her? Edit: forgot to mention that I already came once 20 minutes before but cleaned it up okay and had my pants back on until we started again Any help would be appreciated thank u!
+A: It's called outercourse. It's fun and not highly likely to make her pregnant. Enjoy yourself. 😃
+A: My advice would be to start viewing life through degrees of risk (1%, 2% 5%, 50%....), rather than categorically (safe/not safe). Is it "safe"? That depends on where you draw the line. It's not completely safe. But neither is using a condom. On the other hand, the pullout method is also safe; most of the time (78-96%). But would you want to take those chances when the consequences if it goes wrong, are that your girl gets pregnant? Based on what you're doing, I personally wouldn't worry. It's extremely (extremely) unlikely that just grinding + precum could lead to pregnancy; some would argue impossible. But ultimately, it all comes down to you and your girlfriend's tolerance for risk.
+A: It's not entirely without risk, but knowledge and perspective are your friends here (a good piece of advice for life in general really). In people with a penis, less than half have ANY detectable level of sperm their precum and only about 10% of that group show any kind of motility of that sperm (the primary sign of viability for insemination). Also, the amount of sperm found in precum is VERY small because it doesn't actually come from your nuts. It's produced by a different gland that is connected to the system down the line. I don't know y'all's grooming/cleaning situations, but even fully shaved and not recently washed with soap/body wash (like in the last 12-24 hours) skin, the best possible conditions for sperm to survive, the out side of the body is an incredibly hostile place for them. Even if you literally cum on her labia minora, right at the vaginal opening, the chances are very slim that you'd cause a pregnancy. Let alone if your swimmers have to traverse pubic hair and/or soap and body wash cleaned skin to get to the opening. For some personal anecdotal information, I'm part of the very small fraction who show some motile sperm in their precum, and based on testing done for... reasons, I have high volume and motility in general. I was prolific for the type of things you're describing when I was younger, I even relied almost exclusively on the pull out method for intercourse when ever a partner would let me. I do NOT recommend that as a primary birth control method, but we gotta own our past choices, and if nothing else I can point to my own behaviour as a bad example of how to be a responsible sexual partner. But with all of that, I never had any kind of pregnancy scare. So, are the chances of causing a pregnancy from exclusively external stimulation zero? No. Have I ever even heard of anyone getting pregnant from grinding etc? Also no. But purely based on the fact that it's technically possible, it's a risk you and your partner need to weigh against the enjoyment and spontaneity of just going for it, and decide if you wanna continue doing it.
+A: You are clearly young. I’m going to just assume high school. I want you to take a minute to imagine your lives with her pregnant.I want you to imagine her telling you. I want you to imagine y’all telling each of your parents. I want you to image how all the fun of this young relationship disappears and your entire life from today forward has far greater consequences in every choice you make. Get protection you fool. Whether that’s condoms or her on birth control. But you should probably use condoms anyway. You have shit to live for it’s not worth even a .5% risk.
diff --git a/tests/data/txt/qa/Is this in my head, or should i be concerned.txt b/tests/data/txt/qa/Is this in my head, or should i be concerned.txt
new file mode 100644
index 0000000000000000000000000000000000000000..d88e0568bf158742209469c20bfa441bfde0f639
--- /dev/null
+++ b/tests/data/txt/qa/Is this in my head, or should i be concerned.txt
@@ -0,0 +1,3 @@
+Q: So, i noticed the problem, now that i have a girlfriend that i cant, litearlly cant cum in any other position than laying down on my back, squeezing the muscles of legs, i dont know if its the problem in my libido, because i also noticed it dropped a bit, but i think the problem is that i started playing with myself when i was younger the way i cum now, so i squezed legs and it was a nice feeling... is there any way i can overcome this? I know it doesnt seems like a big deal, but its bothering me. I researched also about performance anxiety, but when im all by myself i cant end in any other way eaither, thanks for advices
+A: Looks like you've found your special technique! Just tell your partner it's your "signature move" and they'll be impressed 😉 But in all seriousness, it's totally normal to have a preferred position or technique when it comes to masturbation. If it's not causing any physical discomfort or relationship problems, then no need to worry about it! Embrace your uniqueness.
+A: Everyone is different and no vagina looks the same, embrace your self if the person really likes you that should not matter
diff --git "a/tests/data/txt/qa/I\342\200\231m (33F) feeling sexually disconnected from my partner (38M).txt" "b/tests/data/txt/qa/I\342\200\231m (33F) feeling sexually disconnected from my partner (38M).txt"
new file mode 100644
index 0000000000000000000000000000000000000000..84139d4cf5b621c41ecb89c1d814d86fc5217a4a
--- /dev/null
+++ "b/tests/data/txt/qa/I\342\200\231m (33F) feeling sexually disconnected from my partner (38M).txt"
@@ -0,0 +1,5 @@
+Q: TLDR: my boyfriend and I can’t align on how to share the responsibility of who should initiate sex. This is the best relationship I’ve ever been in (approaching 6 months together), but for some reason we don’t align on what it means to initiate sex. Now we’re coming up on another 2-week dry spell. I would love if he sexually pursued me more, but since that’s not the case… I like to broach the topic, make flirtatious comments, etc. to see if it’s even ok for me to proceed with the physical initiation. I do this because he works a lot of hours (plumbing), and I want to be respectful of his energy levels. One of the main reasons for the disconnect is that he says my approach “doesn’t make sense” and “doesn’t convey sexual interest.” He also says that me asking if he wants to have sex (to which sometimes he doesn’t even give me a definitive yes or no answer) makes him feel like it’s his responsibility to then proceed with the physical initiation. This in turn makes him “shut down” and “purposefully not initiate any sexual activity to prove a point.” After a few passionate conversations about this, we decided to go to counseling. I’m hopeful we can reach a resolution, but I’m also feeling defeated. Any advice?
+A: Are you sure it's an issue around who initiates and not a matter of having different libidos? Does he want sex less often than you? The obvious suggestion is to schedule sex on certain days so you both are expecting it. The other easy suggestion is to ask him how he would ideally like you to initiate sex. See if you get a straight answer- because his whole "to prove a point" thing suggests immaturity and stubbornness on his part. It's only been 6 months, there shouldn't be anything to be stubborn about at this stage.
+A: Sounds like you both just need to learn how to communicate your sexual needs and desires in a way that works for both of you. Sometimes it takes a little trial and error to find the right approach, but it's great that you're both open to counseling and working through this issue. Keep pushing for what you want, but also be understanding of each other's energy levels and boundaries. Best of luck to you!
+A: It sounds like you both have different styles of initiating sex, but communication and understanding are key in any relationship. Maybe try to find a compromise that works for the both of you, and remember that it's not always about who initiates but the satisfaction and connection that comes from being intimate with each other. Good luck with counseling and I hope you can find a solution that works for both of you!
+A: It sounds like he wants to be seduced instead of propositioned. He wants you to be turned on by HIM, not just wanting to have sex. Buy some new lingerie and tell him he's in for a surprise when he gets out of the shower. Have the lights, candles, music, lube, toys, etc all ready when he gets to the bedroom. Tell him the night is all about him and that you already know exactly what he wants. From there just do your thing and and make his pleasure and arousal the top priority. Generally when someone says they have to work too much, it's because they aren't receiving enough reward for the work.
diff --git "a/tests/data/txt/qa/I\342\200\231m a freak my partner is a little more tame..txt" "b/tests/data/txt/qa/I\342\200\231m a freak my partner is a little more tame..txt"
new file mode 100644
index 0000000000000000000000000000000000000000..680c676b0c5b6552cba9a56641c26c4d86ab0bdd
--- /dev/null
+++ "b/tests/data/txt/qa/I\342\200\231m a freak my partner is a little more tame..txt"
@@ -0,0 +1,5 @@
+Q: So like when I’m horny I say and want to know the nastiest things like deepest fantasy. I do this out of love because I want to make her cum as hard as she can, but I feel like I kind of turn her off when I do cause she just isn’t there. I just want us on the same level of excitement. Suggestions?
+A: How about you do what she wants you to do instead of doing what she doesn’t want you to do?
+A: Then I would suggest looking up different kinks soft core things you could try with her. Ice, wax, whipped cream, down there massages, etc. If you want change then be proactive about finding things. Don’t give up if she rejects the first few things you try.
+A: I had a lover that kept asking me to talk dirty to her during sex. The more she asked, the harder it was. It felt like I had to put on some performance that I didn’t know the lines to. If I said the wrong thing, I could immediately tell she didn’t like it. It was exhausting.
+A: Yeah I do but she doesn’t really say anything.
diff --git "a/tests/data/txt/qa/I\342\200\231ve found my G spot but when I rub it I literally feel nothing.txt" "b/tests/data/txt/qa/I\342\200\231ve found my G spot but when I rub it I literally feel nothing.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..52c4e4d6861e77c1bed884643be4bafbff79b91d
--- /dev/null
+++ "b/tests/data/txt/qa/I\342\200\231ve found my G spot but when I rub it I literally feel nothing.txt"
@@ -0,0 +1,5 @@
+Q: It’s the rough patch near the vagina opening on the front wall right? I get no pleasure from touching it. Literally none. Am I broken? Do I need to go to a doctor? Genuinely asking
+A: First of all, the rough patch in terms of skin texture is not necessarily the g-spot, it's just a guide that people often use when advising people about where the g-spot is. Inside the body is all soft parts and things can move around depending on your posture and your fingers or whatever else is in you pushing something into a different position. Second of all, the g-spot is not on the surface, it's like an internal thing so just touching the skin there, even if your fingers are in the right spot, might not really stimulate it much or at all. You may need to massage it or squeeze it between your finger and the pubic bone, like in order to kinda squish it and get it some stimulation so it doesn't just slide out of place. Another thing, a lot of people don't feel much or anything at all from the g-spot unless they're already very turned on. Some people find that they need to stimulate their clit at the same time or they get little or nothing out of it. Some people find that it only feels good when they are already close to orgasm. I don't know what states or situations you were in when you tried stimulating it, so I don't know if you already tried these things, but that might be another reason why you didn't feel anything. And lastly, people are different. Some people really love internal stimulation, other people don't get much out of it. And the g-spot isn't in exactly the same place in every person, people are built and proportioned differently. And some people often like having it touched, or find it feels good really readily, whereas other people only like it in really specific circumstances. You are not broken, you are just the way you are! It's okay to like internal touch or stimulation, and it's fine to not get much out of it. I would encourage you to try experimenting a little more, maybe try stimulating different areas inside and in different ways, maybe try it when you are also stimulating your clit, or really turned on, or near orgasm, or all of the above. See if it does anything for you then. But if it doesn't, that's fine too, just find what you enjoy!
+A: You're not broken- it's a somewhat contentious term in the world of sexual health. Some women love it, some feel nothing, some find it irritating (I am among those, it irritates my urethra, but I get a tiny bit of pleasure if that area is stumulated from the side-- like 11 o'clock vs 12'oclock against the front wall of the vagina), but nothing really worth searching for.
+A: I feel like my g spot doesn’t exist until I’m 80% to coming. If someone tries to touch be there before I’m already really aroused, it feels like nothing. I can feel it “waking up” and “connecting” to my rabbit vibrator as I near orgasm, like a phone someone just turned on that wants to join the network. I think things just get swollen up in there and suddenly, you can feel the clit more from the back.
+A: No, you’re not broken. My guy had to activate it for me while I was very turned on. It used to be numb but now I’m always very aware of it and it’s been awesome to say the least. Basically find someone you’re very attracted to/have a strong connection with and have fun!
diff --git a/tests/data/txt/qa/Just impulsively bought my first dildo and kinda need advice on how to get the most out of it! thanks.txt b/tests/data/txt/qa/Just impulsively bought my first dildo and kinda need advice on how to get the most out of it! thanks.txt
new file mode 100644
index 0000000000000000000000000000000000000000..0bbf925709864149b93ead33aa5cce99634a7041
--- /dev/null
+++ b/tests/data/txt/qa/Just impulsively bought my first dildo and kinda need advice on how to get the most out of it! thanks.txt
@@ -0,0 +1,4 @@
+Q: I know thats a weird question but what i see in porn probably isnt 1000% accurate and id like the most accurate responses. What other positions are there to try? does it feel like normal sex blahblah blah sorry im not home so i cant rlly test it yet. Also do i NEED lube? Also i know it varies from person to person but is just a dildo enough to reach orgasm? im used to vibrators! thank you edit : i have a vagina
+A: When I masturbate with my dildo, I like to imagine that it's a real dick. I stick it on a hardcover biology textbook and plop it on the center of my bed. I'd start off by sucking it as if I'm giving a show to a man and I want to show off my slutty side. Usually, that's enough to get me wet, and with my saliva there's no need for lube. If it's a silicone dildo, you do want to make sure you're wet enough, because silicone kinda sticks to skin a bit. For me, riding my dildo or thrusting it inside with my hand is enough for me to orgasm. At first, it wasn't. But I've learned to listen to my body and be patient. A lot of women will say that they can't orgasm from just penetration, but I think that there's a big mental component to getting to orgasm, and believing that you can is the first step.
+A: I mean everything is depending on the person and the toy. You also don’t say what genitals you have so im going to go with what advice I’d give to someone with a vagina: It might be fine to not use lube it might not be. I always use lube with my toys but if you’re already turned on and naturally a well lubrucated person and it’s not overly large or textured you might be fine without it. You can also use the toy with one hand and use your other hand to stimulate your clitoris. To me using a dildo feels nothing like sex because it’s a toy and not a person, but the physical sensations of friction ect are somewhat similar? To me it even feels different than a partner using a strap on or a dildo on me. You can use whatever positions you want as long as your arm reaches really. I like to lay on my back or sit up on like an upholstered chair because o have very short arms and also big boobs and a belly to get around so those are the positions that work for me.
+A: What you want is getting most of it in
diff --git a/tests/data/txt/qa/Looking for ways to stimulate my bf in bed.txt b/tests/data/txt/qa/Looking for ways to stimulate my bf in bed.txt
new file mode 100644
index 0000000000000000000000000000000000000000..df326c7157ca584a83dd838c4065b16da6a5362c
--- /dev/null
+++ b/tests/data/txt/qa/Looking for ways to stimulate my bf in bed.txt
@@ -0,0 +1,5 @@
+Q: We were recently talking about our sex, and one of the things we wanted to work on was keeping him stimulated during sex. He referred to how he holds my neck, kisses my breast, and talks dirty to me. I’m wondering what I could do for him that is equally sensual and stimulating beyond the P in V. One thing is that I am a little nervous about dirty talk as I am often a little bumbling in everyday speech, so I was wondering if there was any advice for becoming more confident at it. Cheers x
+A: Think about how you use your hands during sex. The right little touch can completely send men over the edge. Run your hands (or fingernails if you have long ones) over his chest, or lightly touch his nipples, or play with his balls while you do other things like riding him or during a BJ, put your finger in his mouth (even better is if you stick it in your pussy first so he tastes you), or grab his hair while hes going down on you. There are so many options! You’ll figure out quickly what he likes and doesn’t like.
+A: Start slow and build your confidence from there, you can start with questions or phrases like, "you like that?" "Yeah, keep going" and be very vocal when you like something. Personally nothing turns me on more than seeing my partner enjoying, that's literally all it takes for me to stay stimulated, so make it evident when you're enjoying it.
+A: Grab his butt and pull him into you. Wrap your legs around him. Moan, talk dirty, touch his nipples, rub your clit, scratch his back (lightly until you ask if its ok to do it harder) reach back and cup his balls when youre on top, put his fingers in your mouth, put your toes in his mouth, spread yourself open for him with your hands...
+A: It's time to take out the feather duster, the hidden weapon! I promise it's entertaining and shockingly effective.
diff --git a/tests/data/txt/qa/Lotta problems after breakup.txt b/tests/data/txt/qa/Lotta problems after breakup.txt
new file mode 100644
index 0000000000000000000000000000000000000000..8085c8002144eae926a4fe37edb6b11b14357e93
--- /dev/null
+++ b/tests/data/txt/qa/Lotta problems after breakup.txt
@@ -0,0 +1,2 @@
+Q: Recent breakup occurred and I was devastated and probably still am to some degree. I’ve gotten over a lot of things and want to just be happy again but in my own privacy I contemplate whether or not I’m lovable or compatible with anyone. In my last relationship I wanted to submit to my partner a lot. It meant alot to be to be able to like do what they wanted but they didn’t really want me to do anything but still let me be submissive. But I felt like I was theirs and I was happy with that. Now I’ve had to detach myself from that and don’t feel loyal or right trying to do that for someone else. The reasons for the breakup was stupid but one of the reasons was that I didn’t want to do the things they wanted sexually. But I did it was just never communicated what those things were and when I’d ask I was always met with, “I want you to want it without me asking.” Which is bullshit to me because I wanted to do everything but just didn’t know what to do. Idk it seems unfair to expect that instead of just communicating with me the wants/needs. But either way one of the “problems” was that I was mainly submissive (even though I want to be dominant too) and I’m now realizing that one of the reasons I wasn’t dominant was because I was scared of doing a disappointing service. As a submissive I could be punished and then that solves everything but as a dominant it’s just “welp that sucked”. I’m well endowed but I don’t last very long and have no idea what I’m doing when it comes to pleasuring a woman. I was willing to learn and be patient and everything and do anything possible just to be good but my partner never let me learn or anything. Which deeply upset me and messed with my head. I feel less than happy and I’m afraid that I’m a lazy partner. I don’t want to be one of those partners that only cares about their own pleasure but I’m afraid that in the future that I’ll end up in the same situation where someone will ask me to be dominant or something and then I’ll mess up and then they won’t want to have sex with me or even break up with me over it. I’m also afraid of the replacement effect where I’m afraid of asking for the things I like because I used to do them with someone else and if I like it a certain way I don’t want to make someone else feel lesser if they do it in a way that’s “worse” than I’ve had it or something. I’m afraid of thinking that I let go of my ex and then thinking about them as soon as I get into a relationship. But like I feel like I’m done with them but just have ties to them because of the actions we used to perform. Same house, same places, same things. It’s scary and I have no idea what to do about any of this. I’ve already typed a crap ton of stuff so I’ll save the rest of my thoughts or specifics for replies or just myself. Anything helps. 🙏
+A: Sexually incompatibility is a thing. I know you feel shame that you couldn't preform the way she wanted. But you also have to acknowledge the truth that she moved the goal posts on you all the time. She wanted this "thing" from you but refused to say what that "thing" was in plain words. It isn't your fault for not reading her mind. For the most part, people usually tread one way sexually. We have a comfort zone where either being dominant or submissive feels more comfortable for us. Unlike popular belief, this isn't a gender thing where men are just always the dominant ones. You are not abnormal or wrong. You are actually part of the great ones who are willing to learn for your partner. You need a partner who is willing to explore with you. This last girl was a selfish lover and the problem in your sexual relationship, not you. Intimacy means being open about desires. Think of this relationship as a shakey foundation to strengthen and build on during future relationships. You have some idea of your own sexual desires and with your next partner add to it. You aren't replacing your experience with her, you are building on to it with further experiences- sexually and romantically. Give yourself some time to heal. Don't jump straight in to another relationship or hook up.
diff --git a/tests/data/txt/qa/Managing Intense Fantasies About Someone No Longer in Contact 29 F 33M.txt b/tests/data/txt/qa/Managing Intense Fantasies About Someone No Longer in Contact 29 F 33M.txt
new file mode 100644
index 0000000000000000000000000000000000000000..ed9c5ae92013d516ed54a687638a544289676e56
--- /dev/null
+++ b/tests/data/txt/qa/Managing Intense Fantasies About Someone No Longer in Contact 29 F 33M.txt
@@ -0,0 +1,2 @@
+Q: I’ve been experiencing very strong fantasies about someone I’m no longer in contact with. The feelings are so intense that it feels like I’d be willing to undress and be completely vulnerable with them if they wanted me to. I’m unsure if this person might be somehow manifesting me or if these feelings are just overwhelming. How should I approach and manage these intense emotions? Should i contact them?
+A: Strongly consider a therapist. Feelings of (basically) obsession are hard to overcome without professional help. Wondering if they're manifesting you is, frankly, keeping that obsession and making you live in delusional. Not healthy at all, nor does it feel good for you. But there are plenty of ways to heal from it and move on
diff --git a/tests/data/txt/qa/My (28F) bf (28M) makes me feel guilty whenever I use my vibrator.txt b/tests/data/txt/qa/My (28F) bf (28M) makes me feel guilty whenever I use my vibrator.txt
new file mode 100644
index 0000000000000000000000000000000000000000..04e417cb20ed1a85f46eec4abf83f607eeaccc1d
--- /dev/null
+++ b/tests/data/txt/qa/My (28F) bf (28M) makes me feel guilty whenever I use my vibrator.txt
@@ -0,0 +1,4 @@
+Q: We have been together for two years now. When we first started having sex, I told him I can only orgasm with a vibrator. Pretty much clit stimulation. He told me that was not really normal for him to see but wants me to try to “ween off it”. He said I should rely solely on a vibrator to finish and that I should try to climax PIV. We have tried many times but it just doesn’t work that way for me. I told him it still feels good PIV but I just won’t finish. He proceed to lecture me about how vibrator companies should warn their customers about how woman will rely too much on vibrators to finish and will stop PIV orgasms altogether. He asked me to go a couple days without it which turned into a few weeks and I haven’t climaxed since. I started to grow some resentment because all I ever do now is give him head for 1-2 hours then he’d fuck me which I’d never climax from. I’m not sure why he’s depriving me of an orgasm, I didn’t realize using a vibrator was such a bad thing. I didn’t have many complaints in my previous relationships, it was often encouraged. Heck, my ex actually bought me my first vibrator. He told me my ex’s actually didn’t take care of me in bed that’s why I had to resort to that all these years. I was wondering if using a vibrator was actually a bad thing in or he’s just being selfish?
+A: Your boyfriend is an ass. Any cursory review of any established sex research is clear that around 80% of women can only orgasm with clitoral stimulation. Fingers, oral, vibes, do what you need to to get the sensation where it feels good. Edit/ you give him head for 1-2 hours and then PIV where he doesn't make you orgasm. Srsly? New rule: he can exile the vibe if he gives you head for 1-2 hours and fingers you to some good orgasms, and then the PIV for him if it feels good to both of you.
+A: It would have been different if he said: "pls don't use the vibrator let me go down on you for two hours" or "I'll stimulate your clit until you orgasm". But he expects you to just have an orgasm without clit stimulation??! Let me tell you something girl, I've never used an vibrator and I can't have an orgasm without clit stimulation. It's crazy how some men are so entitled, they think their dick is a magic wand and can magically defeat how female anatomy work. I have plenty of female friends and only one can consistently cum from sex, I have one that had an orgasm from sex once in her whole life and the rest of them NEVER had an orgasm from penetration. This guy is delusional.
+A: Your boyfriend doesn't understand female anatomy and sexuality. Using a vibrator and orgasming from clit stimulation is extremely normal.
diff --git "a/tests/data/txt/qa/My New Girlfriend\342\200\231s Genitals Smell And I Have No Clue What To Do.txt" "b/tests/data/txt/qa/My New Girlfriend\342\200\231s Genitals Smell And I Have No Clue What To Do.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..a41b6a8a8e9bad906f971fbde82cf532f97a5e5b
--- /dev/null
+++ "b/tests/data/txt/qa/My New Girlfriend\342\200\231s Genitals Smell And I Have No Clue What To Do.txt"
@@ -0,0 +1,6 @@
+Q: My girlfriend (18F) and I (19M) have been dating for just over a month, and we've recently become more sexually active. Initially, everything seemed fine, and she tasted good when I first started going down on her. However, things changed during a recent Airbnb stay. When I went to perform oral, I noticed a much stronger smell and taste, which I pushed through, but it was definitely different and unpleasant. Later, while jokingly practicing missionary, I noticed a strong smell coming from her. I wad a good 4 feet above her and was able to smell it, as it aerated the room. A mix of musky, sweet, and fishy that l've never experienced before. Then, later on, I noticed a couple of tiny flakes of poop on her anus when I removed her panties, and even more the day after she showered, there were more flakes, which put me off from trying to eat her ass, (something I've never done before) right now as I’m typing this I’m at my grandmas, and I smelt this raw lobster that is soon to be cooked. I realized it smells identical to my girlfriend’s vagina and it’s somewhat concerning? I've been with other women and never encountered this, so I'm not sure how to bring it up without hurting her because she has self esteem issues already
+A: Fishy means she might have some kind infection. Very politely and gently outside of sexy time, mention you’ve noticed a change in smell and you’re concerned it could pose a health risk. Offer for the both of you to get tested. Really focus on it being a health issue rather than a “you smell bad” issue. Either way, at that young age, it’s gonna be a tough/uncomfortable conversation to have. The maturity, confidence and familiarity with one’s body probably just isn’t established yet. Young women are super sensitive and paranoid about their smell. I know I was at that age ETA: the ass hygiene is gonna be a separate issue. If yall are considering booty play, you need to discuss hygiene expectations. Little poopy flakes ain’t the move, but it happens. If you’re ever gonna explore butt stuff, it’s pretty common to “plan ahead” or simply ask a partner to go freshen up if it’s been an entire day since their last shower. You also gotta polite about this to not embarrass your partner considering you’re both young, sensitive, and don’t have a billion years experience yet .
+A: Here’s what you do, to make the awkward conversation a bit less so. Sometimes when a new couple starts having sex, it can affect the woman’s pH balance. She can get what’s called BV (Bacterial Vaginosis). There are a few possible causes and treatments. Here’s some information Tell her you read about this and wondering if she may have it since you two started being sexually active. Don’t make it a hygiene issue, just a health concern issue. She may also have a yeast infection, which is contagious so you may have it as well though your symptoms will be harder to pinpoint. If you don’t take care of it yourself, you’ll just keep passing it back and forth to each other. On your end of personal responsibility, you need to make sure your hands, fingernails and cock are cleaned and washed before you start playing. If you smoke or generally eat poorly or have bad oral hygiene, you can cause her pH balance to have issues as well by going down on her. So be mindful of that. If you’re uncircumcised, then you also have to make sure you pull your foreskin all the way back when you pee and keep yourself clean and dry. I usually dab my tip with a toilet square when I’m done peeing to be extra cautious. Fortunately, her body should acclimate to yours as you continue to have sex and this hopefully shouldn’t be a recurring problem. This sort of thing has happened to me twice with different partners. The first time when I was younger, I didn’t know what to say and just dealt with it for about a week until she gave me head after we had vaginal sex. She noticed that she tasted off from sucking me after I was inside her and that’s how she figured it out.
+A: It’s probably bacterial vaginosis. A trip to the doctors and some antibiotics are likely needed
+A: Sounds like it may be BV. She may not know much about it yet. Be gentle if/when you bring it up. It’s a common issue for women and some of us deal with it frequently. It’s manageable, but it’s a pain in the butt and can be embarrassing, of course. A quick internet search will give you some information that may help the two of you! Usually antibiotics will help, but there are other things to help keep it at bay.
+A: Just curious, but are you ejaculating inside of her? If so, that can throw her ph off if you were unaware.
diff --git "a/tests/data/txt/qa/My bf doesn\342\200\231t mind the cat.txt" "b/tests/data/txt/qa/My bf doesn\342\200\231t mind the cat.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..de9f427b4046e048368818302f5700fb2796e75a
--- /dev/null
+++ "b/tests/data/txt/qa/My bf doesn\342\200\231t mind the cat.txt"
@@ -0,0 +1,6 @@
+Q: Hi everyone. I’ve been with my boyfriend for a bit over a year now. I have a sweet 2 year old kitty who’s very much a mama’s boy and also MacGyver. He can open doors in no time. I live in an old apartment with no keys on the doors which means we rarely even close the bedroom door because we know he’ll end up opening it. Usually he just hangs out in the living room and doesn’t bother us. However, whenever he comes into the room while we’re at it, my boyfriend stays hard and it kind of weirds me out? Like, we’ll start talking to the cat, he’ll start meowing etc and my bf doesn’t get turned off by this? I was talking with my friend the other day and she said that right before sex she mentioned to her partner something about a plushie she has on the bed and that she’s had it since she was little, and after that her bf couldn’t get it up anymore. WHICH MAKES SENSE because obviously the thought of a kid or a pet should turn you off. Am I overreacting?
+A: If I’m getting laid I definitely do not give a shit about the cat
+A: I think you may be over reacting. How old are you both? Men who are young can get/keep an erection through almost anything. If you are concerned, I might suggest getting a door stoppee to keep the little guy out of the room. That small fix might make you feel differently.
+A: I don't find that strange. We also have cats and when they are in the same room it is like that. The cats themselves don't really care. Sometimes they lie down in bed with us and stare at us angrily because they want to sleep in peace. Then we sometimes make jokes and talk to them. It doesn't turn us on or turn us off. We've never thought about whether it's strange or not
+A: The plushie is different because it makes him think of her as a kid and that’s a turn off. You can ignore a cat, it’s not like it’s going to tell anyone. He doesn’t associate the cat with sex at all but a plushie might make him think of children which is not what you want in your mind during sex.
+A: Your partnership seems to be the best thing since sliced bread!
diff --git a/tests/data/txt/qa/My bf is shit in bed.txt b/tests/data/txt/qa/My bf is shit in bed.txt
new file mode 100644
index 0000000000000000000000000000000000000000..fc1bcd6a400b00fea836397132f043f648df9505
--- /dev/null
+++ b/tests/data/txt/qa/My bf is shit in bed.txt
@@ -0,0 +1,7 @@
+A: He sounds like no hope. Dump him and find someone who can satisfy you. Women need worshipping.
+Q: My boyfriend (M30) and I (F28) have been together for 6 years. The sex is vanilla as hell. It’s kinda awful. He’s terrible at instigating it, either just whips out his boner or says ‘get your bum out then’. There’s rarely much foreplay but he’s absolutely terrible at fingering. He’s a little better at oral. We always have sex in the same few boring positions and I usually fake an orgasm so it’s over quicker. He’s even a rubbish kisser. He offers me very little sexual excitement. I don’t know why I’ve just let it drag on but it’s been so long that I don’t know how to try and correct it? Help!
+A: Aaaand yet another post with the answer being: TALK TO HIM. Communication is the answer, not faking orgasms...
+A: If you fake orgasms, you can't complain that he's horrible in bed. You are half the problem.
+A: Have you been faking orgasms for 6 years? That will be an interesting talk when you tell him the truth (for lack of a better word)
+A: Do you even talk? This isn't all his problem, it's yours as a couple. Communicate, tell him what you like and want.
+A: He's 'shit' because you're faking it and 'putting up' with it. You don't even like the way he kisses you. HOW are you with him so long?
diff --git "a/tests/data/txt/qa/My bf likes to suck on my breasts for comfort. I don\342\200\231t think that it\342\200\231s weird but apparently others do Is it.txt" "b/tests/data/txt/qa/My bf likes to suck on my breasts for comfort. I don\342\200\231t think that it\342\200\231s weird but apparently others do Is it.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..870eef6deaa032741b7bda551e4721e632820b8b
--- /dev/null
+++ "b/tests/data/txt/qa/My bf likes to suck on my breasts for comfort. I don\342\200\231t think that it\342\200\231s weird but apparently others do Is it.txt"
@@ -0,0 +1,8 @@
+A: It is wierd for some.... for others it is a connection/bond. Just do you and don't accept the judgment of others.
+A: If he's doing because of childhood neglect, it might be worth it to him to see a therapist. it's not weird at all though. With that being said, I don't really know any straight dudes that don't like sucking on boobs, myself included.
+Q: My bf was never breastfed and never had a motherly figure growing up. He has "mommy issues" and I know I heal a lot of his childhood wounds as his partner. He's quite dominant in our relationship but he's soft in these ways. He likes to suck on my breast as a form of comfort and to be close to be. He likes when I hold his head and my fingers through his hair. After, he used to get embarrassed but I always tell him he's safe with me and I'll never judge him and I'll always love him. Now after he does it we just cuddle up after and he holds me. I don't think this is weird but some women at my work were talking about their partners (I was eavesdropping lol) and one of the ladies was saying how she broke up with a man because he liked sucking breasts for the same reasons my man does and they all agreed it was weird. I don't think there's anything wrong with it. He's not acting like a baby and he doesn't see me as his mom. Is this weird? *Edited for spelling
+A: I don't think it's weird at all. Everything you said sounds like you guys have a lovely and wholesome relationship.
+A: If you don’t think it’s weird. And he doesn’t think it’s weird then guess what - it ain’t weird 😉 Don’t tell people at work anything intimate about your private life. Ever. They just gossip about you when you are not there. Remember, people go to work to make money not friends. Thats what Reddit is for 😘.
+A: Not the point- but I think the way you talk about him here is so sweet! I hope he is your safe place too. I don’t think it’s weird- I think objectively sucking someone’s tits is intimate and can help people feel close. It just makes sense to me
+A: As a guy, I love sucking on my partners breasts. And I quickly discovered how I, too, like to do it for comfort. I don't have mommy issues, but I do have depression and extreme anxieties, and sucking in her nipples, feeling her hands in my hair and the warmth of her body it all compounds into being one of the most comforting experiences of my life. Maybe there's also a component that I love my gf with all my being, and she does me, and I feel they from her. But sucking on her breasts, I can just feel the anxieties wash away, and this intrinsic calm just overtakes me. It's very relaxing so much so that I will often fall asleep. I always wondered if others would think it's weird, my gf doesn't and she actually enjoys it both when we do it during sex where the act is purely sexual and when I do it for comfort. The caveat is that we don't have kids, so she doesn't associate it with breastfeeding, etc. Which is see many people do.
+A: Does you boyfriend fly and shoot lasers out his eyes?
diff --git a/tests/data/txt/qa/My boyfriend isnt good at making me cum.txt b/tests/data/txt/qa/My boyfriend isnt good at making me cum.txt
new file mode 100644
index 0000000000000000000000000000000000000000..12fa4472255546afcc288fdf3a5cb3af23a1f7fa
--- /dev/null
+++ b/tests/data/txt/qa/My boyfriend isnt good at making me cum.txt
@@ -0,0 +1,5 @@
+Q: I have a hard time cumming when l (26F) have sex with my boyfriend (27M). While I enjoy the feeling of us having sex, I really wish he was able to make me cum more for him. I vocalize that I need my clit played with and more foreplay but doesn’t always happen that way. He never eats me out and I don’t mention it because I don’t want to have to ask for it. Help me come up with ways to lowkey train him to do things to make me orgasm better? Or how can I help myself cum?
+A: As a man, I think there’s nothing hotter than when I’m having sex with a woman if she takes control and rubs her own clitoris, even to orgasm, so just reach down how you like it by doing it and if he doesn’t take the hint, then you do it there’s nothing wrong with that. It would be no worse than you pinching your nipples if they’re not being aroused at the same time or the same kind of love do it yourself make it part of your lovemakingdon’t be embarrassed. Enjoy.
+A: “I don’t want to have to ask for it” If he isn’t doing what you like, talk to him.
+A: whats worked with you and previous partners, op?
+A: My wife keeps a vibrator by the bed. If all else fails, she brings it out and plays with herself until she’s satisfied.
diff --git a/tests/data/txt/qa/My boyfriend would rather watch porn than have sex with me..txt b/tests/data/txt/qa/My boyfriend would rather watch porn than have sex with me..txt
new file mode 100644
index 0000000000000000000000000000000000000000..202ca453e648870cfb259e6d2d94e0b411a71e87
--- /dev/null
+++ b/tests/data/txt/qa/My boyfriend would rather watch porn than have sex with me..txt
@@ -0,0 +1,6 @@
+Q: For the past eight months the frequency of which we have sex has gone done substantially. Any time i tried to initiate i was rejected and he very rarely initiated sex with me and when he did it was lazy and detached and i felt quite used. For months i thought there was something wrong with me, i felt so unattractive and disgusting and any time i would talk about it i was shut down and made to feel guilty. Then a couple months after this started my boyfriend started claiming he thought there might be a medical issue causing his lack of sex drive. He said he thought maybe he was struggling with low testosterone, I recommended he go to the doctor and he said he would but then continued to push it off for months. I asked him questions like if he felt aroused enough to masturbate when he is alone and if he just didn’t feel aroused or maybe comfortable enough to have sex with me, he said that he just didn’t feel aroused at all recently and that he didn’t even masturbate and that led me to think it would have been a medical issue, so once again i pushed him to go to the doctors. He said he would make an appointment and never did. Anyway this all came to a head last night, the past couple weeks we haven’t slept together, i had a bad feeling and checked his phone, i looked at his search history and saw that he had been watching porn which in itself isn’t really a problem, but what really upset me was that he was watching porn and masturbating while i was with him and he was rejecting my advances. i noticed he was going to the bathroom a lot while ive been staying with him and hes been spending a lot of time in there and now i know what he was doing. I scrolled further down and saw this was a regular thing, he refuses to have sex with me and instead masturbates to other women. Im heart broken, i feel so shit, i never felt so disgusting in my life. I dont want him to kiss me, i dont want him to look at me or touch me. I talked to him about it and at first he lied and then i confronted him with the evidence and he tried to gaslight me, then finally apologised and admitted to it. I just dont know what to do, any advice would be appreciated?
+A: thats an addiction. i would suggest you head out now as he doesn't seem willing to make any progress at all and even if he does, your trust and confidence is destroyed. one relapse and that all goes down the drain again even if you manage to repair it the first time
+A: r/DeadBedrooms is exactly what you are referring to here OP, might be worthwhile to check out some similar stories for help and advice. Maybe even consider posting this there as well. Best of luck!
+A: How many times a day and is it every day? He could have a porn addiction.If he does it alot when you have sex he might not be able to cum because hes used to the sensation of his hand
+A: Put simply to the final question of "I just don't know what to do?" I don't think there is anything you can do. It sounds to me as if he has got a porn addiction.
+A: Your boyfriend has porn addiction. He is less interested in you sexually when he has conditioned his brain that he can orgasm in few minutes with minimum effort. Reduced sex drive is one of the symptoms of porn addiction. It's good that he has admitted the problem. Now it's time to take this seriously. He needs to seek help and come up with an exit plan. He cannot live like this for the rest of his days. It's your choice if this is something you can get over with or no. There is little you can do except push him to go to therapy and support him. It is also important that you create a clear boundary here, he is getting into situation where he is choosing between you and porn. His job to fix that. Good luck
diff --git a/tests/data/txt/qa/My dick hurts when she's on top..txt b/tests/data/txt/qa/My dick hurts when she's on top..txt
new file mode 100644
index 0000000000000000000000000000000000000000..c4aa2f0abd471fc97a487eade44621b67040dedf
--- /dev/null
+++ b/tests/data/txt/qa/My dick hurts when she's on top..txt
@@ -0,0 +1,5 @@
+Q: Since me and my girlfriend started our sex life, we haven't been able to do it in positions where she's on top, like cowgirl. I'm not sure why, but from what I can feel, it feels like my penis is too hard and can't bend in the same angle as her vagina. This makes it very uncomfortable, and I feel like my penis is gonna break during it. I'm a beginner and don't know if this is normal or not, so any help would be appreciated.
+A: The obvious answer is that she needs to adjust the angle of attack.
+A: Have you tried slowing things down to see if you can find an angle and rhythm that works for the two of you? And I mean really slow, as you talk to each other and until it feels good. Might not seem sexy at first but it can bring you closer as partners, especially if you communicate up front what you'd like to try and why. Good luck!
+A: Sometimes the vaginal canal can be tilted differently in this position. Maybe, you would just need to readjust the thrust where it feels comfortable.
+A: Have you tried lube to add less friction? Your partner might be a little tight so lube up and see how that goes.
diff --git "a/tests/data/txt/qa/My girlfriend don\342\200\231t want to talk about what she likes.txt" "b/tests/data/txt/qa/My girlfriend don\342\200\231t want to talk about what she likes.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..35293b6a5da387354d84bc5d0e3f402336505b73
--- /dev/null
+++ "b/tests/data/txt/qa/My girlfriend don\342\200\231t want to talk about what she likes.txt"
@@ -0,0 +1,3 @@
+Q: I (M25) started dating new girl (F24) and it’s been great so far. She likes sex a lot and have quite high sex drive which suits me. But this week I thought it’s time to us to talk about what we like so few days ago I asked her during sex what position she likes and she replied “I don’t know”. I didn’t think about it much at first but then it stared to bugging me and yesterday in started to initiate conversation about what she likes and how to I can make her feel better. She brushed it off again. We were drinking wine and I was thinking maybe she will relax more and talk about it so tried it again at night but she told me she don’t like to talk about that stuff. Honestly this kinda upsets me because eventhough she seems like she enjoys sex with me I know every girl have different preferences and when it comes to sex I want to know what she likes so I can try to make it as good as possible for her. How should I approach this topic with her? Did I asked her wrong way? Or maybe it’s too early for this topic for her? It’s true we’ve been sexual only for two weeks now but with my ex we talked about this stuff right from the start so I wrongly thought it’s gonna be same here.
+A: I have no solution. Some people are just shy. I also find it incredibly frustrating, and I've started to consider it a sign of incompatibility. I just have no patience for people who cannot communicate. Life is too short!
+A: There’s a sex quiz you can both do online and see each other’s answers at the end. I can’t remember the name but I’m sure you will find it on google. My husband and I enjoyed this and she might find it easier to answer questions on this rather than telling you.
diff --git "a/tests/data/txt/qa/My girlfriend tells me that sex hurts, but only after we\342\200\231re done..txt" "b/tests/data/txt/qa/My girlfriend tells me that sex hurts, but only after we\342\200\231re done..txt"
new file mode 100644
index 0000000000000000000000000000000000000000..dbc9cefddf1d80aa7527b85e478a5d4fbbdb035f
--- /dev/null
+++ "b/tests/data/txt/qa/My girlfriend tells me that sex hurts, but only after we\342\200\231re done..txt"
@@ -0,0 +1,6 @@
+A: Pain during sex is a normal side effect the first few weeks after getting an IUD. It sounds like she’s telling you she’s experiencing these side effects after having sex. You can’t monitor her side effects for her, but it is considerate of you to regularly check in before during and after sex. These side effects should diminish with time. If they don’t improve over the coming weeks she might want to visit her prescribing physician for a follow-up.
+A: IUDs ruined sex for me… I can tolerate very little deep penetration before I start bleeding or burst into tears from tolerating pain. I have had my IUD 7 years… I have never liked it at all… In your gf case it may be since her IUD is new and it make take time to settle in. I hope for the joy of sex sake hers does settle in. Btw… thanks for being a gentlemen about all of this. Some dudes are complete jerks
+A: Way to bury the lede, probable IUD is the issue here. My wife actually had hers removed because it was uncomfortable for her. At one point it also became uncomfortable for me. People make this metal coil in your uterus sound like a nose ring or something. There's a little more to it than that.
+Q: My girlfriend has recently been telling me that sex is hurting her, but she will only ever tell me after the fact. I know this so I always ask her before and during if it hurts and she says it feels good, and then after she says that she cant go again and it hurts too badly. I always tell her that we do not have to have sex but she comes on to me and will initiate stuff. She won’t tell me why and before all of this she had a very high libido and we could have sex like animals for literally hours at a time no problem. She got an IUD a couple of weeks ago, so I’m not sure if that contributes to this at all. Any and all help would be appreciated. I’m just scared that she’s not into me anymore and its making me very stressed.
+A: What kind of pain? Sometimes I get irritation around the vaginal opening but I don’t even realize it until trying to go the second time. Can usually do it with lube and going slow. But ask details instead of being stressed she’s not into you. Don’t make it about you.
+A: It’s probably the IUD. I used to have the same problem, she needs to go to the Gyno and make sure it’s placed correctly.
diff --git a/tests/data/txt/qa/My girlfriend's experienced a light pain once, and now she is hesitant with masturbating often.txt b/tests/data/txt/qa/My girlfriend's experienced a light pain once, and now she is hesitant with masturbating often.txt
new file mode 100644
index 0000000000000000000000000000000000000000..77296f10bcf91b43828a3d2c38f99b90144fe1b6
--- /dev/null
+++ b/tests/data/txt/qa/My girlfriend's experienced a light pain once, and now she is hesitant with masturbating often.txt
@@ -0,0 +1,2 @@
+Q: My (M22) girlfriend (F23) has experienced a weird light pain at her vagina's areas (I can't remember where exactly, edit: it's not inside) at the beginning of this year, I don't remember if it happened because of how I fingered her or how/how much she masturbated at the time (she doesn't have moral problems, shame, or something similar, for doing it often) but she is now afraid to do often the latter due to it possibly reappearing, and we have a long distance relationship, so I couldn't have that much "influence" on that pain. Last but not least, that was the only time she had that pain, never before or after that moment. She is also ashamed of going to the gynecologist because of her parents' judgement. What do you guys think about it?
+A: Perhaps her fear is only that she might unintentionally call forth a demon or something. First and foremost, safety!
diff --git a/tests/data/txt/qa/My husbands penis head gets very sensitive when he cums.txt b/tests/data/txt/qa/My husbands penis head gets very sensitive when he cums.txt
new file mode 100644
index 0000000000000000000000000000000000000000..a00a946ec73fc92a1015267418642f7b6caea1ac
--- /dev/null
+++ b/tests/data/txt/qa/My husbands penis head gets very sensitive when he cums.txt
@@ -0,0 +1,6 @@
+A: That’s 100% normal, even I get that way with my clit as a woman. He is better off taking a break from it after he cums
+A: That’s every man. When I cum I don’t want my head touched at all.
+A: My man gets super sensitive too, but really seems to like some light suction immediately afterwards, it can even extend the sensation for a while.
+Q: When my Husband cums he will tell me that right after his penis is incredibly sensitive, especially the underside of the head He’ll ask me sometimes to touch it but he says it’s a really fine balancing act between touching it enough to he arousing and not too much as it’s so sensitive When I’ve done it right his eyes roll back and he literally looks like he could cum again What can I use besides my fingers to stimulate the head of his penis? Something rough? Something smooth? If there’s anything lying around that I could use I’d be grateful I want to do something for him as a surprise but don’t want to go too far as he says it’s really sensitive
+A: use your tongue!! but only lick the back of the head.
+A: You don't mention your his age but as I've got older the same thing has happened to me. As others have mentioned your tongue would be perfect.
diff --git a/tests/data/txt/qa/My partner came too early and he feels embarrassed about it. How can I make him feel better.txt b/tests/data/txt/qa/My partner came too early and he feels embarrassed about it. How can I make him feel better.txt
new file mode 100644
index 0000000000000000000000000000000000000000..1f9b4c0419755446098176f2ea25949c6ad91430
--- /dev/null
+++ b/tests/data/txt/qa/My partner came too early and he feels embarrassed about it. How can I make him feel better.txt
@@ -0,0 +1,5 @@
+A: Two things: He will get over it and move on with a little support from you. Tell him that you find it super hot that he came early because you take it as a positive reflection on your looks and how good you feel. I had a conversation with a friend a while ago and it’s funny because we both agreed on this. Back in our “player” days, this never happened to us. We never came too early with random girls. It only ever happened to us with the ones we really cared about and it was always after a good amount of time with them. I saw it as something that happened due yo the emotional connection that affects us in the moment. I don’t know if any of that helps, but the first one will help because him thinking you are taking it as a compliment is huge, and the second I think could be the case here as well.
+Q: false Basically the title. I’m also not sure if this is where I post something like this so I apologize in advance. My (24F) boyfriend (25M) and I have been together for a year and a half. We were doing some foreplay this morning when we woke up and he wanted me to ride him. Not long after (like a minute or 2), he slipped out and I noticed he was kinda soft. He bashfully said that he came inside me, so I said “oh that’s okay! No problem” and got off to use the washroom and clean up etc. I went back to the bedroom, gave him a kiss asked what was wrong, as he seemed off. He was saying as to how he was so embarrassed and mad at himself because he came so early and that’s never happened before, also saying that I was unsatisfied because of it (I wasn’t, I was surprised that he came as quick as he did, that’s all; nothing bad about it). He often feels off like this whenever I don’t cum etc. as well. Essentially he beats himself up over it. Anyways, I tried reassuring and telling him it’s okay, it’s no big deal, etc. He left for work a while ago but I could tell it was still bothering him. Is there anything else I can do to help him feel better? I want him to feel okay if/when something like this happens…
+A: It happens to the best of us. In the morning, I am much more likely to come quickly, sometimes really quickly, lol. As for you, it's no big deal for my gf. As it doesn't happen regularly, and she gets off usually as many times as she wants, she's cool with it. She rather sees it as a proof how hot and sexy I find her....
+A: Round two round two round two!! Do what you gotta do to get him up again after a nice cuddle sesh. Tell him how good it feels, how much you love him, how comfy the snugs are. Kiss his neck, put your head on his chest, pet his face. Get him a zero sugar Gatorade, give him 20 minutes, and see if he wants some head.
+A: He likes you alot and wants you to be pleased and beating himself up because he wants to be perfect which is unrealistic. It's important for him to remember that intimacy is wonderful whenever & however it happens
diff --git a/tests/data/txt/qa/My penis is way too curved. Help..txt b/tests/data/txt/qa/My penis is way too curved. Help..txt
new file mode 100644
index 0000000000000000000000000000000000000000..ec113085f38f8aa26cd4a2bea86f2003184398e4
--- /dev/null
+++ b/tests/data/txt/qa/My penis is way too curved. Help..txt
@@ -0,0 +1,6 @@
+Q: Help. My girlfriend and I lost our virginities about a month ago. It was nice and intimate as we’d been dating for a while, but one major issue that we could not get past: my penis is impossible to work with. It genuinely has to be curved at least 45° to the left when erect, and a ton of downward curve as well. I went in super confident because I am very above average, but I left feeling incapable of sex because we couldn’t do most positions we wanted due to my curve. Of course some had to do with her being very short and me being very tall, but we couldn’t do lotus or cowgirl or any form of riding because I would wince in pain whenever she straightened out my penis because it felt like my penis was one of those glow bracelets and she was snapping it to light it up. I looked into traction devices by a doctor but I don’t necessarily have access to medical care for something of this nature, to say the least. She wants to have sex again soon and I’m willing to do anything to straighten this out, even if it takes time. How do I fix this? Are there some sort of exercises for this? Please help.
+A: Doctor. But in the meantime try different positions. If it’s curved downwards maybe reverse cowgirl?
+A: Doctor is the answer.
+A: There's nothing you can do on your own. Your body is your body.. there is a surgery that could straighten it out, but that's not something to jump into until you see several medical professionals and know that it for sure the right path for you to take. Curves aren't really a bad thing. You could be struggling due to lack of experience. But there are actual cases out there that need surgery, so check in with a doctor if you're truly concerned.
+A: Go see a Urologist. You are describing a condition that could be Peyronie's disease.
+A: Not to fret, some women LOVE that. How you're shaped is a big factor, especially if you're on the bigger side and your partner is inexperienced
diff --git a/tests/data/txt/qa/My relationship with sex has changed..txt b/tests/data/txt/qa/My relationship with sex has changed..txt
new file mode 100644
index 0000000000000000000000000000000000000000..840f45f10cffcad3fc2b0526ea032b2756fcfa73
--- /dev/null
+++ b/tests/data/txt/qa/My relationship with sex has changed..txt
@@ -0,0 +1,6 @@
+Q: I (21F) am feeling incredibly upset and angry at my ability to perform during sex (use the word perform lightly, trust me, I’m not a star). Throughout my teenage years, I had a very good relationship with sex (and masturbation). I had great sex lives with my ex partners and I always found it adventurous and exciting. I am super sex positive as well, advocating safe and healthy sex as a means of fun and passion. I have been in a relationship with my partner (M23) for almost a year. The relationship before that, despite the sex being red hot, was abusive and I am now on antidepressants due to it. This experience not only affected my ability to cum for months but also how I view myself and sex. My current partner and I have sex twice a month or so (we are long distance) but I do not feel confident or satisfied when we do this. He’s great- he communicates and tries his best to do what we both enjoy. He looks after me and really really tries. However, I do not feel that sex is fun for me anymore. I want it. I really do. But when it comes to it, I don’t like it. I don’t like how I sound, how I look, how it feels. And one of the worst parts is that sometimes I don’t even want him to touch me. I still get aroused, like when I’m alone or when we kiss sometimes but most of the time, I just don’t feel a lot. I’d much rather perform oral sex on him than have him do anything to me. Sex has always been ‘my thing’. I’ve been described as an ‘excellent shag’ by previous sexual partners (for the not British, it means great in bed) but now I just…I don’t think that’s true anymore. I cannot stop crying about this because it’s so hard for me considering I really value and appreciate sex in my relationships. What are some ways I can overcome this? Has anyone experienced similar? Thank you.
+A: Talk to your psychiatrist about changing medications. This is very normal with antidepressants. They affect everyone differently. You’re likely able to find one that still works for you while not debilitating your libido.
+A: The relationship before that, despite the sex being red hot, was abusive and I am now on antidepressants due to it. well, this sentence seems to contain the things that affects your sexual life so much: trauma: of course that would alter your perception of sex. can you afford therapy, to overcome this? what other ways would you have to overcome the traumatic part of this relationship? antidepressants: very well known to affect negatively sex drive and sexual life in general. not 100% guaranteed, but that can definitely play a role. you could try another antidepressant to see... depression: i will assume that you take antidepressants because you suffer from depression, is that correct? if yes, well, depression also affects your sex life and most importantly, ability to enjoy things, even the things you enjoyed immensely before depression. you see that these 3 things are linked... i encourage you to focus on healing from the trauma, with a therapist, or you could call helplines to talk about it (the only way is through it, not by trying not to see it), to do anything you can to heal from it, really... that should help with depression, and when depression is elevated, then you could stop anti depressants, and be back on track. how do you feel about this?
+A: IDK. Maybe a reset? Maybe reflection/meditation to work on your approach to it? Maybe therapy? Different partner (ethically)?
+A: What I’m gathering from your post is that although you are excited about having sex with your partner, your self consciousness and trauma are ultimately what’s holding you back from really enjoying sex. If you have access to therapy it could really help you with this.
+A: I think you should consider going to a therapist or a sexologist. It really tends to help. I had an experience dealing with a woman with sexual trauma in the past, and she was super depressive and anxious. What I did was to... just take care of her. I'd tell myself that she was too vulnerable to have sex at that moment, and I'd make sure she was eating well and having quality time. We'd kiss and show affection to each other, of course. And by having absolutely no pressure to have sex, she'd be the one to initiate, or one thing would lead to another and we would be in bed. But I think taking the pressure off her was definitely the right move. Another super important thing is that she opened up to me about her problems, so I was able to step up and help her.
diff --git a/tests/data/txt/qa/My throat is infected.txt b/tests/data/txt/qa/My throat is infected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..7a20a8eab9d061d3c1eb3f086c35518f944e5ae5
--- /dev/null
+++ b/tests/data/txt/qa/My throat is infected.txt
@@ -0,0 +1,5 @@
+Q: Hello. Straight to the point… I had sex a few days ago with a guy and he ended inside my mouth. It caught me by surprise and swallowed it. The thing is, right the day after my throat was sore and it hurt. I supposed it was related to the sperm and didn’t give it much thought, but I’ve checked myself today in the mirror and found kind of white patches. That’s an infection I should worry about, right? I never received it in my mouth, therefore the fear. Also, we had protected sex, but I’ve been leaking a thicker, more consistent discharge than normal… I’m going to the hospital tomorrow, but wanted to know if that’s a reaction to the condom, maybe? it doesn’t feel itchy/stingy, but i’m worried. Thanks.
+A: I’d get it checked for sure
+A: Sperm does not cause infection in the throat. Of course you should get checked though, have a professional opinion. The white patches you're describing, they are in your throat, right? It's probably tonsilitis, and the timing just happened for it to break out after your date.
+A: Could be a normal common cold, semen is a body fluid
+A: I mean, go to the doctor if you're genuinely worried. But as a few others have implied. You probably just got a cold and it happened to coincide with you swallowing this dudes cum. STDs don't usually show up so fast and cum isn't otherwise dangerous if the guy is clean.
diff --git a/tests/data/txt/qa/My wife's refusal to try pegging has absolutely destroyed our sex life..txt b/tests/data/txt/qa/My wife's refusal to try pegging has absolutely destroyed our sex life..txt
new file mode 100644
index 0000000000000000000000000000000000000000..b7e0af9aa82cbcb3ccffebdbad899435872d6303
--- /dev/null
+++ b/tests/data/txt/qa/My wife's refusal to try pegging has absolutely destroyed our sex life..txt
@@ -0,0 +1,5 @@
+Q: A while ago after she found some toys I had bought I asked my wife to try pegging. She said she wasn't against me trying anal stuff but that it wasn't something she would want to do physically. I accepted this but it's made me realise that with our sex life there isn't really anything that she does. We aren't a vanilla couple by any means, we have lots of toys and engage in bondage etc but this has made me realise that she's just an absolutely massive pillow princess. She likes everything being done to her and doesn't do anything to me. Take blowjobs for example, she likes being tied up and facefucked so I never considered that bit of our sex life and issue - but I've never actually received a blowjob. Shes never just independently given one. It's been like this our entire relationship + marriage (20 years in total). I think because I was always getting this stuff in some form that I never considered it an issue. Every element of our sex life requires me to do all the work. She's submissive to the point of laziness. Every since I realised this I've just had no real desire for her. The few times we've had sex since then I've literally done the bare minimum amount of foreplay to get her wet and then just had normal sex and not put any work into finishing her off. It's like I no longer care about getting her off during sex because she's never cared about getting me off. I don't really know how to resolve this without talking to her but the last time we talked about sex led to this. I'm at the point where I'm so demoralised about our sex life that if we didn't have kids together I don't think I would be staying in this marriage. Tldr: Wife declines trying pegging and it's made me realise how one sided our sex life and killed any desire I have for her. No idea how to talk to her when our last talk about sex led to this
+A: I think you're being unfair to your wife. If you've always had this kind of dynamic and you both have been happy with it, why would she change anything? I guess you feel like she doesn't care about your pleasure. In your own example, she likes being face fucked, but doesn't blow you on her own. First, being face fucked properly is far from relaxing, it's a skill too. Second, it's not like she has a g spot in her throat, her biggest turn on is your pleasure. If I were you, I'd check your hypothesis first. She likes being submissive, so next time just tell her to do the job, blow you while you watch. Don't forget to say that you're enjoying it. See how she reacts.
+A: "I don't know how to resolve this without talking to her" Maybe you should talk to her! Just because you don't like what she says doesn't mean you two can't figure something out, it's not all about you and what you want
+A: That sucks man, I'm sorry. I've had a lot of partners who were real starfish, too. This is your wife. You owe her a proper conversation about this, especially since you're so unhappy that you're contemplating divorce. For what it's worth, I probably wouldn't open with "I'm thinking about leaving you if you don't fuck me better". Leave the divorce talk out of it, but tell her you're not happy with your sex life and tell her what you'd like to see changed.
+A: If she's very submissive, how about making blowjobs a thing she must do as your sub? It sounds like you are servicing her now. Make it a part of your existing d/s dynamic to "force" her to get off her pillow. If being served is genuinely her thing, ok. But you've got to find out whether you can be satisfied in your relationship too. It's probably not going to be trivial to change something in your dynamic, but it seems like the only reasonable way to go.
diff --git a/tests/data/txt/qa/My(22m) gf(23f) feels pain after having live sex but not when we use a conndom.txt b/tests/data/txt/qa/My(22m) gf(23f) feels pain after having live sex but not when we use a conndom.txt
new file mode 100644
index 0000000000000000000000000000000000000000..8363314d081862b51cab845d24fad1b5d9fe3e31
--- /dev/null
+++ b/tests/data/txt/qa/My(22m) gf(23f) feels pain after having live sex but not when we use a conndom.txt
@@ -0,0 +1,4 @@
+Q: false So me and my girlfriend have been having a pretty good sex life using condoms. Of recent we decided to try sex without a condom, it's actually pretty good during because there's nothing like pain. The problem is that after a few minutes,she develops a burning sensation inside her vagina.We have tried to always ensure she's wet enough but it seems not to help. What could be the issue?
+A: Live sex? Is condom sex done by dead people? Answering what you're asking, changing the lube is good, getting checked for microabrasion is good. Consider the good old "honeymoon cystitis" where mixing genital flora for the first time isn't really an infection per se but can be irritating. Very very rarely, a woman can have a true semen allergy. The treatment is condoms.
+A: is it possible that she has a uti?
+A: Lube? There's no shame in using lube, it's something to help enjoy sex. Personally I found it the other way around, that condoms caused more burning because I needed more lubrication, but either way, see if more slippiness helps.
diff --git a/tests/data/txt/qa/Need advice on my aversion to intimacy..txt b/tests/data/txt/qa/Need advice on my aversion to intimacy..txt
new file mode 100644
index 0000000000000000000000000000000000000000..3cf9d3715c4bdfdd5ed1e5c1adde87e708cf3029
--- /dev/null
+++ b/tests/data/txt/qa/Need advice on my aversion to intimacy..txt
@@ -0,0 +1,2 @@
+Q: Hey there I'm(28m) and having an issue with intimacy. I suffer from Bipolar and Anxiety as my diagnosis but Iv head this aversion to intimacy issue for approx 2 years now. About 2 years ago I lost any drive for intimacy. Sex, kissing, cuddling, and anything romantic. My libido was also very low. After trying dieting and exercising I reached out to my doctor and switched one of my medications which brought back my libido back to the point of masturbating daily, but nothing else. I've been working with counselors, eating healthy, exercising but nothing is helping. This is 100% affecting my marriage and I feel terrible. I literally have an aversion to intimacy. I cringe at watching or reading anything romantic or sexual. I can't bring myself to have sex. (It's been maybe 3 times in 2 years.) I never have the urge to kiss my wife, I have to mentally remind myself it's something she needs. Same goes for hugging. This issue isn't with my wife because I think our marriage is pretty darn good aside from this and I think she's beautiful. I have no idea what to do from here but it's starting to really piss me off. I definitely have a an amount of stress in my life but my life has been much more stressful in the past and I didn't react this way. I used to be a very intimate person. Cuddle kissing and a huge desire for sex. Help me with what to do!
+A: What if you refrain from pleasuring yourself, or do so without completing. So you still have that desire when around your wife.
diff --git a/tests/data/txt/qa/Need help (NSFW obviously).txt b/tests/data/txt/qa/Need help (NSFW obviously).txt
new file mode 100644
index 0000000000000000000000000000000000000000..3c65e63d801a9f55cc78bfb3182ac641d2b32d6b
--- /dev/null
+++ b/tests/data/txt/qa/Need help (NSFW obviously).txt
@@ -0,0 +1 @@
+Q: false I have an extreme foot fetish, I used to think it wasn’t a big deal, but I am beginning to realize that it is getting out of control, I constantly think about feet, I cannot stop. I hate my brain so much, i am in therapy for it and hope that helps but I have lost friends over it and I feel like I cannot control it anymore…. Does anyone have any suggestions to help. I want to get over this… Serious comments only please.
diff --git a/tests/data/txt/qa/New to this.txt b/tests/data/txt/qa/New to this.txt
new file mode 100644
index 0000000000000000000000000000000000000000..f8da1a4c6aa2c64915f9e4e2da8fd2ea1789b680
--- /dev/null
+++ b/tests/data/txt/qa/New to this.txt
@@ -0,0 +1,3 @@
+Q: I’m not a prude by any means. I’m very much into some deep, dark things, sexually. But, talking dirty was never part of it, like ever…and now thinking about it I don’t know how. I’ve always just been a sub and either wasn’t permitted to speak or…just trying to survive the adventure. That being said, my husband is VERY into the dirty talk; but, it’s felt so awkward for me to do ever since we started dating. I want to be better at this for him; especially since I actually absolutely love it when he’s saying stuff to me (I didn’t even realized how much I loved it until I met him). We’ve had open conversations about this before, I like getting clarification on what he wants so I can please him; but, I don’t think I’m really getting it. I’m pretty playfully vulgar outside of sex, I do it bc it embarrasses him and it funny to me; but when I’m put on the spot in the moment, my brain malfunctions. I also want to start the dirty comments before he does…I just don’t know wtf to say. I almost want a notepad of phrases to reference haha. He’s very much into possession. For instance, I feel like when I answer his “…are you all mine?” with “yes baby I’m ALL yours” it’s fine but I can tell he’s wanting me to say more or even initiate some “conversation.” Or, too, most times when he cums he’s ask, “do you want it?” and I’ll say something like, “yes baby, please” or “cum for me baby.” The other day while we were f’n, he asked me something, I answered, and he kept saying, “say it softer…” to which I started to whisper (hahahaha). Later I asked what “softer” meant and he said something along the lines of begging - so I guess he’s into that too. I don’t want to sound like I’m forcing myself to say these things bc it comes so unnaturally to me but I definitely just don’t have the mental Rolodex of things to say.
+A: This is the one time I tell people to watch porn and take notes. People who like dirty talk like myself tend to enjoy the more performative moments of sex, and a genuine enthusiasm for sex for us holds a certain appearance element. Porn is VERY good at turning sex into a performance. Not all sex is porn, but all porn is sex and it's the kids of sex my partner and I enjoy thoroughly. So put on some porn and listen for what the performers say to each other.
+A: The stress of being put on the spot is what’s getting in the way of coming up with something so having some sort of lines prepared may help. Some responses to “are you all mine” -yes daddy you can do whatever you want to me, yes only you know how to please me, yes unless you want to share me, or yes you own me. You can respond to “do you want it” with- more than anything, I fucking NEED it, yes but do I deserve it?, I think you need it more than I do, etc. Have fun! ❤️
diff --git a/tests/data/txt/qa/Newbie at this need advice!.txt b/tests/data/txt/qa/Newbie at this need advice!.txt
new file mode 100644
index 0000000000000000000000000000000000000000..808d6d57c826b056ce49402ee7cd8e77e65bfd90
--- /dev/null
+++ b/tests/data/txt/qa/Newbie at this need advice!.txt
@@ -0,0 +1,3 @@
+Q: Me (19M) and my gf (18F) have been dating for almost a year now and we recently decided to become sexual active and we both lost our Virginty to each other recently and I'm currently in a long distance situation we meet when I go back home and this time we had sex tbh it was just as i imagine it to be i went on for 4 hours I think and for 3 rounds but as i was her first she felt a bit pain but later it was all good but she didn't seem to cum like is there something I'm doing wrong that or is there something I'm missing? Also we tried 2-3 different positions too but she didn't seem to come close to cuming.. I'm confused and I seriously wanna please her!
+A: Majority of women just dont expirience orgasms from penetration. That is what a clitoris is for. Ask her, if she ever had an orgasm and let her show you how to do it. It can take a long time and do not be dissapointed if your first attempt does not go as expected. Just enjoy the act and avoid pressure on cumming, it is a huge blocker of any pleasure. :) You can also try oral sex if she likes it. It is the best way for a lot of us.
+A: Many women can't climax by penetration alone. Oral or fingers. If you use fingers (for g spot stimulation for example), the hand must be perfectly clean, have no rough skin, nails short and edges filed (no sharp edges, obviously). There are tutorials online on the sites where you would expect them, not your regular scenes for entertainment but explicitly to learn from. But they are on the same sites.
diff --git a/tests/data/txt/qa/Numb clit for a week and a half.txt b/tests/data/txt/qa/Numb clit for a week and a half.txt
new file mode 100644
index 0000000000000000000000000000000000000000..0e7ab2bcab26466e0126b1ca43b8e22624d25743
--- /dev/null
+++ b/tests/data/txt/qa/Numb clit for a week and a half.txt
@@ -0,0 +1,3 @@
+Q: Hello there, I am 33. On the Thursday before last I was masturbating at a time maybe I shouldn't have been, because I was already slightly sore. Instead of climaxing I noticed a strange, almost 'bruised' sensation in my clit, so I stopped. However, the next day I also noticed strange sensations near my bladder, and an almost 'pinching' sensation near my urethra, as well as continued discomfort in my clit. Over a week later those sensations seem to have stopped and the uncomfortable clit sensation has gone, HOWEVER, when I try to touch there I now feel absolutely no pleasure at all regardless of how aroused I feel. My clit feels almost numb to the touch. While at times I've experienced less sensation tha others, I've never experienced anything to anywhere near this extent, it almost feels like sensation is never coming back. I am incredibly frustrated as well as feeling very depressed and also terrified. Does anyone have any idea what might be going on, or have any tips? I am completely despairing and beginning to think I will be stuck like this forever.
+A: See if your clit can feel hot and cold. If not, consult a neurologist. Otherwise, you could just have a bladder infection and the histamine if making you feel this way.
+A: 10 days is usually the upper limit of when I expect symptoms improve on their own. I think at this point it’s reasonable to go see a doctor. Whether this is a neurologist as another commenter suggests, your regular gynecologist, or your primary care physician is up to you, but all of them would be a good first choice.
diff --git a/tests/data/txt/qa/Numbness in hands_arms after hair being pulled in doggy style.txt b/tests/data/txt/qa/Numbness in hands_arms after hair being pulled in doggy style.txt
new file mode 100644
index 0000000000000000000000000000000000000000..43eeb96e8e47dd6686594fb2bb960169e1f90519
--- /dev/null
+++ b/tests/data/txt/qa/Numbness in hands_arms after hair being pulled in doggy style.txt
@@ -0,0 +1,2 @@
+Q: I was having sex with my boyfriend and we were doing doggy style. He was pulling my hair and a couple times he pulled my head really far back (it didnt hurt at all mind you) but I got this numbness that radiated along my arms to my hands each time he did. Idk if maybe when my neck was bent like that it like pinched a nerve connected to my arms?? Has anyone experienced this?
+A: No but do see your doctor please.
diff --git a/tests/data/txt/qa/One night stands.txt b/tests/data/txt/qa/One night stands.txt
new file mode 100644
index 0000000000000000000000000000000000000000..cf3b3b190796b6df6cbf895bb45e09250169a60f
--- /dev/null
+++ b/tests/data/txt/qa/One night stands.txt
@@ -0,0 +1,4 @@
+Q: Women in their late 20s/ early 30s: how often are you open to a one night stand? Never? A thing of the past? Or occasionally? Or…always?
+A: Definitely still a thing lol
+A: I used to prefer ONS when I was in my early 20s. Now I am married with children.
+A: i did many ONS during my mid 20s after getting out of a 2 year (my first serious) relationship. tbh while it probably was not the safest decision (STI wise, i’m fine but i definitely was playing with risks), i think it really helped transform my understanding with sex and gave me a lot of self confidence in the bedroom. i learned a lot about myself and about men and now i have a great sex life with my current partner.
diff --git a/tests/data/txt/qa/Pls help quickly!! I want to have sex tonight and my period just ended a few days ago..txt b/tests/data/txt/qa/Pls help quickly!! I want to have sex tonight and my period just ended a few days ago..txt
new file mode 100644
index 0000000000000000000000000000000000000000..336f061afd5b9e7596a6bdba9dee3a02d887ffef
--- /dev/null
+++ b/tests/data/txt/qa/Pls help quickly!! I want to have sex tonight and my period just ended a few days ago..txt
@@ -0,0 +1,2 @@
+Q: I personally do not like the idea of my partner seeing blood from me during sex (it has happened a couple of times already and my partner doesn’t care at all but I still get very embarrassed). It’s just a personal preference— I try to avoid period sex at all costs. My period ended a few days ago and i have just been having brown spotting/discharge since then. Today it is very subtle, but I had a few (so sorry for the gross details) pieces of brown blood come out of me when I came earlier (I like to orgasm before having sex— idk why). The second time I came, it was just clear. Do you think I got everything out or do you think there is still some in me? I really don’t want anything to come out of me that is not clear. Also please don’t tell me I’m being ridiculous. It just a personal preference of mine and I just personally feel gross when that happens. THANK YOU!!!
+A: I honestly don’t think anyone could possibly answer this question. Good luck though. I’m not going to say don’t stress it…. But seriously, don’t stress it.
diff --git a/tests/data/txt/qa/Pre and post sex stretching routine.txt b/tests/data/txt/qa/Pre and post sex stretching routine.txt
new file mode 100644
index 0000000000000000000000000000000000000000..d60a9eab577d2c6786d5c2fe62e620f029a3e595
--- /dev/null
+++ b/tests/data/txt/qa/Pre and post sex stretching routine.txt
@@ -0,0 +1,2 @@
+Q: Hey all m28 here Recently ive noticed after doing the deed i tend to be in some pain. Neck will hurt, back will hurt , and my sholders. I try to so some light stretching like touching my toes and moving my sholders in circles but it doesnt do much. It feels like my whole body just tightens up. It tends to take a few days until everything stops hurting. Ive looked it up online and its mostly just " stregthing routines " were im looking for more of pain relief and mobility. Thanks!
+A: [Not a doctor] but if you're having pain after sex like this, the muscles might in fact need to be strengthened. I've gone to physical therapy multiple times, and their answer is usually targeted strengthening and mobility exercise. When the muscles and their connected groups become stronger, there is less or no pain after prolonged movement. This doesn't necessarily mean heavy lifting; in PT I've done squats, planks, push ups, used resistance bands, etc. You might also try stretching before and/or after sex (not like light stretching for 30 seconds, I mean like 10ish minutes of stretching a muscle for 30 seconds each).
diff --git a/tests/data/txt/qa/Problem in the bedroom.txt b/tests/data/txt/qa/Problem in the bedroom.txt
new file mode 100644
index 0000000000000000000000000000000000000000..b1a15e29d06754a85489c1e1e04bcda6c8e987f3
--- /dev/null
+++ b/tests/data/txt/qa/Problem in the bedroom.txt
@@ -0,0 +1,3 @@
+Q: Hello, I’m a 22m and I’ve always had a hard time to talk about this. I’m really asking for help because there’s this girl who I really like and we’re spending 4 nights together next weekend. I’m sexually active, in the gym, and eat pretty healthy, but for reason I’m literally the definition of a two pump chump. Every time I have had sex it’s been like that I can usually get by with it because I still make my partner finish. I’ve even had an incident when I was going down on a girl and finished in my pants. I haven’t went to the doctor about because I don’t know if I can talk to my family doctor about something like that. I did have one time where I went a round two and lasted over 10 min but I was not nearly as erect. Does anyone have any advice or experience with it I’m not even sure if this is the right page.
+A: You can absolutely talk to your family doctor about that--you are an adult bro. Next weekend is probably a short timeline to get an appointment, but you never know. I'd say just keep doing your thing. If youre giving good oral/manual stimulation and making your partner orgasm, try not to worry so much and just enjoy the fucking. Wait longer before your 2nd round and you'll probably have a better erection as well. You can try using a thicker condom to desensitize yourself (like a classic trojan is pretty damn heavy duty. Skyn condoms I also find I can barely feel anything). Also just go slower while fucking. You could also try doing one round in the morning and one at night. that way you give yourself plenty of time to overcome the refractory period, but youre also not letting yourself get too sensitive between sessions.
+A: are you always having new encounters or having a steady partner? a steady partner will allow you to last longer. and you can go more than one round, not immediately but in minutes or hours and that will help. when my bf and i don’t see each other for a while or don’t have sex for a few days he doesn’t last as long (i don’t mind) but if we’re together and having sex multiple times a day or at least every day, he lasts a lot longer
diff --git a/tests/data/txt/qa/Pulled out after using a condom.txt b/tests/data/txt/qa/Pulled out after using a condom.txt
new file mode 100644
index 0000000000000000000000000000000000000000..fd97fc8100675a3a43920a9f937c1ab54a7b0df3
--- /dev/null
+++ b/tests/data/txt/qa/Pulled out after using a condom.txt
@@ -0,0 +1,5 @@
+Q: Hey so, I had sex with a lady and at first we used a condom, it was in for about 15 minutes, before it broke and we went raw for a bit. I pulled out long before I even felt the tensing feeling for when I'm about to cum, and came on her back. I cleaned her up and we cuddled a bit, but my question is can she get pregnant from that? The spermicide from the condom was on my dick the whole time catching precum, and I pulled out way before I came. Like, I pulled out and then jerked off and only then did I finish on her, and none got inside. Should I ask her to get a test done? Or am I likely in the clear?
+A: Live sperm can still be motile even without the liquid around them, and they are programmed like missiles to find and infiltrate the target area, so no it’s never 100% clear unless you’ve been cut, or naturally sterile. I facepalm when I hear the stories of i came on her not in her and she got pregnant, yep, not 100%.
+A: When this happened to me I still took the morning after pill just to be on the safe side.
+A: I'd say you're probably in the clear, but it's never 100%.
+A: Not every man’s precum contains sperm, and even if yours does it’s low-concentration and dependent on how much you actually let out. Odds of conception are incredibly small but not zero, irrespective of the condom containing spermicide. The tiny residual left on your skin isn’t adequate protection against your little swimmers, as the first tiny droplet will buffer what follows. You could offer to buy her a Plan B for your peace of mind, but considering the low risk and what emergency contraceptive does to a woman’s hormones she’d probably be better off not taking it anyway.
diff --git a/tests/data/txt/qa/Question for circumcised and uncircumcised about tip play..txt b/tests/data/txt/qa/Question for circumcised and uncircumcised about tip play..txt
new file mode 100644
index 0000000000000000000000000000000000000000..fcff5f92dfd13dcefb1ff89f76c970ba3e1c7fdb
--- /dev/null
+++ b/tests/data/txt/qa/Question for circumcised and uncircumcised about tip play..txt
@@ -0,0 +1,5 @@
+Q: How sensitive is the head of your penis? Like specifically the corona, the part you can see wrapped around the top if it's circumcised. I'm circumcised, and I know generally speaking an uncircumcised penis is gonna have more sensitivity but if my gf so much as uses a small part of her palm and rubs it there for 2 seconds I will squirm uncontrollably due to instant and sheer intensity, I can't handle it if I tried. If we're alone I will fucking scream, it's literally that intense. Easily 10x more intense than peak stimulation while jerking off and I'm wondering if this is due to direct exposure because it's directly exposed rather than hiding behind the foreskin. Is this a circumcised thing or a universal thing. I'm stumped asking myself this right now.
+A: My understanding is the fact that your circumcised means your typically less sensitive. Uncircumcised is protected from the head rubbing in ur underwear and pants all day so it's more sensitive. I could be wrong but I have definitely heard this from some anti circumcision advocates. In the midwifery, natural, home birth community.
+A: As someone who is uncut I can say that intense pressure and play can be a little overwhelming but if done correctly, employing certain edging techniques and varrying pressure and touch...the results can be literally mind blowing.
+A: If I’m understanding you right, you’re circumcised and your corona is usually covered by the remaining skin, and this area is insanely sensitive. I was circumcised as an adult so I feel like I can chime in. Yes, that area is sensitive but it really depends on the individual. If it’s too sensitive, then try to rub it more and more over time and it should get a little less sensitive to the point where rubbing it will be pleasurable and not the borderline painful you describe. This isn’t a cut or uncut thing, if you don’t ever touch an area of your penis, and it remains covered and moist, it’ll be like this. There’s potential for more hypersensitivity for uncut guys since obviously there’s more potential coverage, but what you’re describing is unusual.
+A: I’m uncut and nope absolutely do not touch. It’s not even pleasurable just discomfort
diff --git a/tests/data/txt/qa/Safe words during sex.txt b/tests/data/txt/qa/Safe words during sex.txt
new file mode 100644
index 0000000000000000000000000000000000000000..e0a80e6a5e14e346f341cb5d01e5b8407bb89051
--- /dev/null
+++ b/tests/data/txt/qa/Safe words during sex.txt
@@ -0,0 +1,3 @@
+Q: So I’ve been hooking up with this girl for the past 2 months, but last week she said that she wanted to give me the handjob of my life but I had to be bound to the bed. I found it a bit erotic and agreed, but as soon as I came she just kept stroking and palming the head of my penis to the point where I was doing demonic exorcism spider poses and squirting piss everywhere. She went on for like 1-2 minutes after I was screaming for her to stop. We didn’t have any safe words nor did I expect to go through the craziest post orgasm torture of my life, but if I’m screaming for her to stop, should she have done so? I get the whole idea of BDSM and pushing boundaries, but damn, I nearly felt like I was gonna shit myself. I’ve never felt so vulnerable and powerless when she’s there laughing and I’m here tied up having a seizure-like orgasm.
+A: Anyone who doesn’t listen when you say stop isn’t a safe partner to play with… especially when it comes to BDSM & being my bound! If she couldn’t tell, she should’ve asked…….. not assumed.
+A: BDSM works because of clear communication and trust. I'm in a D/s dynamic, the best relationship of my life. It's built on absolute honesty and respect. I've come to this after a life of vanilla relationships, and genuinely believe ALL relationships should put in the effort of a good dynamic, in terms of that communication and respect. Your story reminds me of how wrong vanilla can be. I'm sorry you weren't heard or respected.
diff --git a/tests/data/txt/qa/Sex Question About Balls.txt b/tests/data/txt/qa/Sex Question About Balls.txt
new file mode 100644
index 0000000000000000000000000000000000000000..73e9b4f519100854ba3ae9a696d747f4d85af340
--- /dev/null
+++ b/tests/data/txt/qa/Sex Question About Balls.txt
@@ -0,0 +1,4 @@
+Q: Hey everyone. I am new to sex and had a question about balls. Is it normal for your balls to go into the vagina with your penis? I am of average length I think, but maybe a bit on the thin side. When I have sex with my girlfriend, my balls go all the way into her vagina. She says this has never happened before and I'm worried that I'm maybe going in to deep. Usually before sex, she likes me to finger her with my entire hand. Kinda like a fist. Then I just kinda like, uppercut it. Maybe I'm hurting it? Any advice is really appreciated!
+A: honestly i can’t understand how that would even happen, it’s not normal truthfully. if she has you fist her before you guys have sex, and you have a thin penis, maybe her vagina is so stretched from the fisting that everything goes in, balls included. that’s the only thing i could think of, but no, that’s not typically normal
+A: I don't think that's really possible. Even if they pull up really far they'd still be positioned in a way that they should not go in.
+A: Yea, my balls go into my girlfriend all the time. It's definitely from the fisting. I could probably knee her cervix if I wanted to. I mean, in reality, it actually feels better when your balls go inside. It's really the only way to take full advantage of sex. I mean why do you think the say "going balls deep"?
diff --git a/tests/data/txt/qa/Sex doesn't feel good with partner of 2 years.txt b/tests/data/txt/qa/Sex doesn't feel good with partner of 2 years.txt
new file mode 100644
index 0000000000000000000000000000000000000000..49b0c4a9a986a1ba037b2e2cdd267996d0f0fc7a
--- /dev/null
+++ b/tests/data/txt/qa/Sex doesn't feel good with partner of 2 years.txt
@@ -0,0 +1,3 @@
+Q: I'm (27F) sure there's some underlying issues about our relationship as a whole, but I think my frustrations with sex lies in the sex itself. I have only ever been in one other serious relationship. While the sex with my ex was not mind-blowing by any means, he made sure I finished almost every single time which I greatly appreciated as it was effort he happily put in (I can basically only orgasm from oral, penetrative sex feels good but doesn't get me all the way there). So we basically had sex daily if not twice a day. When that relationship ended, I was kind of resigning myself to a life of no more orgasms because I knew most men wouldn't put in the effort he did, and it also made me realise there were more important things than sex in a relationship. My current partner (26M) is very affectionate and loving. But being frank - he is on the small side. It didn't bother me at first and once we found our groove and I figured out what he likes, I started enjoying it anyway. He can orgasm multiple times in a row when I got on top, and I guess I enjoyed the power it gave me. But he's always had issues staying hard, on top of his smaller size, this made things difficult to experiment and he got so used to me stimulating him from on top that now, every time we try getting into any other position, he gets tired and goes soft. And then all it took was one complaint - that us doing it like this always makes him really tired the next day, and it made me lose all enjoyment of it. More issues began to arise, I stopped getting aroused and tried introducing lube, but the lube made it difficult for him to cum, and it was a foregone conclusion for me to stop using it and tolerate any pain from the dryness just so he could finish. And when I brought up stopping birth control because of my depression, he would half-heartedly agree but conveniently forget the subject. I have tried talking him through oral but he just can't (or won't idk), asked him to do some research on how to make me feel good, asked him to look into ED as a diagnosis, suggested for him to practice other positions with or without me, none of it has worked. and I think he's simply ignoring the elephant in the room. I don't know what to do anymore. I can't afford sex therapy, and I feel really exhausted by it all. Some days I feel borderline asexual because of the state of my sex life, but I know I'm not. How can I broach this subject without doing to him what he did to me (i.e. kill the mood and chemistry completely)? I feel afraid to tell him I get absolutely nothing out of sex with him.
+A: Your justified frustrations are with the sex AND with the relationship, as most sex issues are. He doesn't listen or care about your pleasure, pain, or mental health. Truly read that. -he doesn't perform oral which is the only way you orgasm -he doesn't work on his ED and makes you stick to being on top so he can stay hard -he lets you be in pain so he can finish without lube -he ignores your depression so he can benefit from your birth control *Just 1 of these should be enough for you to end the relationship* I understand you have depression and clearly a negative attitude to relationships ("resigning myself to a lie..."). As you are now learning, it can be better to be alone than stay with a partner who drags you down. Work on your thinking: if your ex was willing to put in the effort, why wouldn't other men? As you have now learnt, sex IS a very important aspect of relationships that can reveal how much they listen to you, care about your pleasure and pain, are willing to work on problems, and how quickly they complain and quit. Only you can change your mindset and drop this deadweight of a man. You are 27 years old. You deserve more. Go find more.
+A: Don't make yourself miserable over the sunk cost fallacy. If it's been consistently bad or getting worse for two years, what do you imagine is going to improve it? You've communicated your feelings, he's chosen to disregard and disrespect your desires and needs. He's selfish and immature and he's fine hurting you for his pleasure. That is literally abusive behaviour. He sounds like a complete toilet and you should just leave and find someone with more emotional intelligence than a walnut.
diff --git a/tests/data/txt/qa/Sex is short now.txt b/tests/data/txt/qa/Sex is short now.txt
new file mode 100644
index 0000000000000000000000000000000000000000..afa4696790effd2e23bc4d7b3c02cd6580728230
--- /dev/null
+++ b/tests/data/txt/qa/Sex is short now.txt
@@ -0,0 +1 @@
+Q: false When me and my fiance first met, sex was unimaginable. I swear we could fuck for hours multiple times and it was amazing. Then I got pregnant. I didn’t want to be touched, kissed, or especially have sex. He was very understanding, sexually frustrated ofc, but never pressured me to have sex. We had sex a total of like three times I think the entire 9 months. Well our kid is now a year and a half and the magic just hasn’t came back. We’ve tried having sex as frequently as possible, as much as you can with having a baby, and it’s just not the same. For one, he cums so fast. He’s always so upset when he does, but after this long of it happening, I don’t know how to feel about it. He’s even accused me of sleeping with other people because “you’re not getting off with me so you’ve got to be getting off with someone else.” But I’m simply not. I have a low sex drive since the baby, which sucks, but if I need to, I’ll just masturbate after. But we do have great sex every once in a while, I just wanna have great sex EVERYTIME. I want to cum everytime. There’s just gotta be something I can do to make him last longer. Like talk about video games? Like idk what to do that won’t make him a limp dick in 15 seconds.
diff --git a/tests/data/txt/qa/Sex isn't super enjoyable.txt b/tests/data/txt/qa/Sex isn't super enjoyable.txt
new file mode 100644
index 0000000000000000000000000000000000000000..883b18d8e79087564c792699d818ebbdb1b92a48
--- /dev/null
+++ b/tests/data/txt/qa/Sex isn't super enjoyable.txt
@@ -0,0 +1,4 @@
+Q: Hi there I am a 20yr old F and I recently lost my virginity a few months back. I got with my boyfriend in that time frame however I haven't been able to orgasm with him. I have gotten close but not enough. However I can orgasm with sex toys with no stimulation to my clitoris. But with him neither seems to work. I love him to death and this don't affect our love life but I'd love to get this going better. Also I don't feel it as well either he is about 6in roughly and it's a good size. However I just don't feel it if that makes sense? Unless he's super in there. Advice ladies?
+A: This has nothing to do with your boyfriend’s skill in bed. Only 18% of women can orgasm through penetration sex alone, and you are not in that 18%. Frequently, clitoral stimulation needs to be added to penetration sex. A way to do this is to use the reverse cowgirl position because it gives you good access for fingering your clitoris or using a bullet vibrator on it.
+A: You ever thought about telling him what you like? That or he just sucks in bed
+A: Don’t worry about the size thing—what’s most important is how comfortable and connected you feel with each other. It’s all about finding what works for you two as a team. Give yourself time, and be patient with the process. You’ll get there!
diff --git a/tests/data/txt/qa/Sexual compatibility long(er) term.txt b/tests/data/txt/qa/Sexual compatibility long(er) term.txt
new file mode 100644
index 0000000000000000000000000000000000000000..8a54fa83ea258b960ff1b081a4b32e940b9e3dab
--- /dev/null
+++ b/tests/data/txt/qa/Sexual compatibility long(er) term.txt
@@ -0,0 +1,2 @@
+Q: Ok, so I have a relationship developing with a good friend who’s becoming a FWB. We’re both on the same page, spent a few nights together etc. He’s very kind and respectful, and I trust him. That’s important as I have a history of rape/SA, which he knows about. However, when it comes to sex he is very lovey-dovey and nice, whereas I want to be dominated and am into rough stuff. Idk if my past experiences have played into that. Idk if because of this we are compatible longer term? Has anyone made things work with someone who has completely different sexual interests to them?
+A: If you don’t tell him explicitly what you want how can you expect him to be dominant when he knows of your past.
diff --git a/tests/data/txt/qa/Sexual pleasure and intimacy, mutually exclusive or no.txt b/tests/data/txt/qa/Sexual pleasure and intimacy, mutually exclusive or no.txt
new file mode 100644
index 0000000000000000000000000000000000000000..8e5e4f8f9500a0c8ad93e7a054003ffcba734e62
--- /dev/null
+++ b/tests/data/txt/qa/Sexual pleasure and intimacy, mutually exclusive or no.txt
@@ -0,0 +1,3 @@
+Q: My partner and I (intentionally keeping genders vague but we are both 37yo) had a discussion about our sexual relationship and our individual desires for intimacy. In the conversation we realized we experience intimacy (desire for connection with another person) differently. My partner says that in order to feel connected and present with me, they lose some of the pleasurable physical enjoyment of sex. For me, I often want and enjoy feeling close connection and these are some of the most arousing and pleasurable experiences for me. Other times I want connection only, or just feel horny. I'm curious if people relate to both of these perspectives. This seems separate from spontaneous vs. responsive desire, or high vs low libido, is that accurate? Is there a different term or continuum to describe this concept?
+A: Not mutually exclusive for me, but they don't always go together, I can have one without the other.
+A: Can you explain the middle paragraph? I didn’t get it
diff --git a/tests/data/txt/qa/Sexually disappointed with partner.txt b/tests/data/txt/qa/Sexually disappointed with partner.txt
new file mode 100644
index 0000000000000000000000000000000000000000..5129308a0e6103c43a4c41d7c8e4a3903b75fae9
--- /dev/null
+++ b/tests/data/txt/qa/Sexually disappointed with partner.txt
@@ -0,0 +1,3 @@
+Q: We (26F and 24M) met a little over a year ago. When we first engaged in sex I found it enjoyable but looking back now I think it was due to the overall excitement of a new relationship. About 3 months into our relationship we moved apart due to work and education requirements. He broke our relationship off a couple of months after the move as he was unsatisfied with the consistency of our communication (I’m a single mother to a toddler and was also drowning in grad school assignments + my field practicum). A couple of months later I hooked up with a pleaser and I think that ruined me haha. There wasn’t a time when we hooked up that the attention was off me. It altered my expectations is what I’m trying to say. Fast forward a couple more months and my ex (now current) boyfriend and I rekindle our relationship. We talk for months and occasionally see each other. We both moved back to the same area and decided to move in together. The sex was nice for the first month but again I think it was just the excitement of being back together and the intimacy. Now, I just don’t even want to bother. He never touched my clit while we’re intimate so I asked if he could and he would for maybe a second but then would focus on his own pleasure. He only focuses on his pleasure. So, I decided to also focus on myself and play with clit during sex but I could never get there. I dusted off an old vibrator and used that a couple of times and it was magical but then it died. I dusted off another vibrator, same story. We went a week without sex and I decided it was time to have the “I’m not satisfied conversation.” The next night I initiated and got on top of him so he could easily see and access my clit. He played with my clit for a minute or so and then I felt his dick pop out of me. I confusingly asked why he was soft and he replied, “you stopped moving.” That honestly threw me off a little because ?? Dude?? Im on top of you?? Naked? Moaning? And you’re soft…? Whatever. So we change positions to missionary and I try to play with my clit for a little but it’s not hitting the same so I ask if he could play with it and he replies, “ehh it’d be too awkward in this position.” Um alright… and instead of doing anything about it he finishes and then goes to bed. I love him. He’s a good man. He’s hardworking and the intimacy outside of sex is wonderful. My son loves him. He’s GREAT with my son. I’m not really sure how to move forward. I don’t want to continue to have sex when I feel like a forgotten passenger but I also don’t want to lose this great relationship.
+A: Your sexual incompatible. You've had multiple talks about his selfish sexual habits. That will not change. And if it does is for 5 min. Actions proved that. You know what you can actually have. Don't short yourself. Find a sexual partner that satisfies you and is great with your son. You deserve better. If you don't, It will build resentment. It already is. Good luck.
+A: Sometimes people lose arousal during sex. It’s easy to get distracted focusing on something else. Don’t feel the like momentary loss of arousal is an indication of how he feels about touching you or how desirable you are as a partner. He may just be focused on masturbating you. For some people doing both penetration and rubbing their partner’s genitals is like patting your head and rubbing your belly. It’s just tricky and requires both innate coordination and practice. Keep trying and don’t expect him to be necessarily a completely competent clit-stroker right off the bat. Masturbating a partner is a skill and it takes time to learn. Give him time and opportunities to practice rubbing your clit both during and outside of sex. Some positions are extra awkward to masturbate a partner in. My spouse and I find that woman-on-all-fours with the man penetrating from behind her is a GREAT position to masturbate the woman during intercourse. “Prone bone” where the woman lays on her belly and the man on top is another good one. Both of these allow the man to reach her genitals with his palm facing comfortably towards his body. Cowgirl and missionary require twisting the arm and elbow to push the fingers up away from the body. These positions are tricker and less comfortable for the giver (but still hot AF). Long story short- keep asking for what you want but give him ample time to build that coordination and muscles to do it. In the meantime replace those broken toys and let him rub those against you when his hand gets tired. Keep trying!
diff --git a/tests/data/txt/qa/Shaving advice Skin hurts.txt b/tests/data/txt/qa/Shaving advice Skin hurts.txt
new file mode 100644
index 0000000000000000000000000000000000000000..507b918b7027625cb554f895b4431d716e7ed5af
--- /dev/null
+++ b/tests/data/txt/qa/Shaving advice Skin hurts.txt
@@ -0,0 +1,5 @@
+Q: Started shaving again after years. I used to shave regularly in high school but eventually stopped because it was always so irritating plus I don’t date so I didn’t see the point. I started shaving recently but my skins so sensitive. Didnt nick anything, I used Nair first and the shaved only the hairs that didn’t wipe away. But I already had stubble just moments after. The skin is very sensitive to the touch and when I bent down to pick stuff up at work I could feel the stubble catching on my panties. Is there something I’m doing wrong? I didn’t leave the nair in for too long and got the sensitive skin bikini version, I’ve also used nair on on my body before and have had no bad reactions. Would waxing help?
+A: You should shave first, and then use Nair to soften the tips of hair as they come in. Or, you can splurge and do laser, but that’s expensive and a commitment
+A: This used to happen to me all the time! Here’s my advice: exfoliate before you shave (I use a sugar olive oil scrub). Buy some trial size shaving creams to experiment til you find one you like (I use Coochy). The razor I use is Schtick Intuition and it leaves no bumps because it has soap built into it. Lastly use a moisturizing cream after (I like Flamingo) Hope this helps!
+A: What I would do is: either fresh disposable razor (at least 3 blades (I use them very rarely as they are not sustainable)) or higher end razor 5 blades (my regular) first shave with the hair, only then against the hair shave gently, take your time probably exfoliate if I wanted closer shave
+A: Try searching r/hairremoval and r/beauty
diff --git a/tests/data/txt/qa/She never initiates sex.txt b/tests/data/txt/qa/She never initiates sex.txt
new file mode 100644
index 0000000000000000000000000000000000000000..81e433e019be3725815e8fbe9c9c4e0495fa6dcd
--- /dev/null
+++ b/tests/data/txt/qa/She never initiates sex.txt
@@ -0,0 +1,6 @@
+Q: But she’s hot as hell in bed! Ok, I’ve been married to this woman 25 years and it’s always been this way. She never asks for, hints at or initiates sex. It’s totally up to me to bring it and hope to get lucky. She loves to wear seductive lingerie through the house and masturbate playfully in front of me before sex. She thoroughly enjoys and is pleasured by our sex, she loves toys as well and has no problem coming. I’ve brought the subject up before of her telling me she’s horny or wants to have sex and she’ll reply that she needs to remember to do just that, she never does. The sex is fantastic and although I most always get enthusiastic yes I just can’t figure out why I always have to initiate first. So any suggestions or theories to my dilemma?
+A: Is the lingerie and masturbation in front of you her way of trying to initiate?
+A: Are seductive lingerie and masturbating in front of you her ways of initiating? Honestly it sounds like you have a great sex life and I’m sure many men would love to switch places with you.
+A: Just speculation, but it sounds like she really wants to be wanted by you. She may be turned on by how much you desire her. To me, there's nothing hotter than when I get dressed up for my man, and he absolutely can't resist me.. can't keep his eyes or hands off me. If you enjoy being chased/desired as well, just let her know. But if you don't mind initiating and making her feel like the most desired woman on the planet, it seems like she'll always be willing.
+A: Sometimes when I want sex, I'll flash my guy some cleavage, stroke him seductively, or something like that. Things I know will have him turned on, if he's feeling it. He might feel like he then "made the first move", but in my mind, I'm the one who initiated. Oh, and if I'm wearing lingerie, he Knows I'm initiating.
+A: Google: Responsive Desire If it fits, you now know!
diff --git a/tests/data/txt/qa/Should I be attracted to_ love my own scent.txt b/tests/data/txt/qa/Should I be attracted to_ love my own scent.txt
new file mode 100644
index 0000000000000000000000000000000000000000..ef260fc018d9521d0bbdb37d6c2362f9f18e53ed
--- /dev/null
+++ b/tests/data/txt/qa/Should I be attracted to_ love my own scent.txt
@@ -0,0 +1,6 @@
+Q: I just love my scent and I don’t know why/ if I should. Like when I take off my panties I love smelling them/ my hands after masturbating. And also enjoy smelling myself on my partner. I’m not sure if this should be the case and I should be attracted to my own scent? And any advice on what to do if this is not the case?
+A: I think this is normal! I know folks that love tasing and smelling themselves on their own person or on their lovers. It's probably a blessing in another way - I've known a good number of folks that are insecure about or don't like their own scent and it messes with them.
+A: I think it's ok to do this. It can help be more comfortable with yourself
+A: It’s about the pheromones and maybe you’re just attracted to whatever pheromones your body releases. Nothing wrong with it.
+A: There's no harm in having that, unless it doesn't affect your sex life. We are different people that love different things, so you're good!!
+A: Perfectly normal. I enjoy the way I taste on occasion and there’s nothing wrong with it!
diff --git a/tests/data/txt/qa/Should I have sex with my co-worker.txt b/tests/data/txt/qa/Should I have sex with my co-worker.txt
new file mode 100644
index 0000000000000000000000000000000000000000..a20312a064b1d8d28cd41a8bbced43900a3a8452
--- /dev/null
+++ b/tests/data/txt/qa/Should I have sex with my co-worker.txt
@@ -0,0 +1,6 @@
+Q: So, me (male) and my female co-worker have been jokingly talking about my penis size, it's been for days and I can tell she's having fun with this, I kinda find her attractive but she has a boyfriend. I feel wrong to ask this but should I ask her for a one-night stand?
+A: I’d try to stay away from it. You don’t want to be a one wrecker nor do you want to make things at work awkward.
+A: you work together and she has a boyfriend. is this even a question? is this like a fetish thing? no, don't sleep with her.
+A: It feels wrong, and yet you seek validation and permission from the Internet? Just imagine yourself as the other guy. Going about your day to day, oblivious that a co-worker is about to not only jeopardise his job but also actively attempt to break up your relationship for 30 minutes of sex. To do the right thing in this situation costs you zero effort. To be a dick head takes a considerable amount of effort. Imagine being known in the workplace as the guy who doesn't respect boundaries. Doesn't respect relationships and primarily is only concerned about their yogurt slinger. Being known as the guy who takes the slightest hint of workplace banter and makes an active attempt to mess up his professional life and someone else's home life in a single bound. Don't be that guy. Don't further the stereotype that men can't be friends with women without trying to launch a cervix crusade.
+A: No. But you could say something to leave it open for the future if you’re both single and not coworkers. Never know.
+A: My choice is no. You shouldn't bring business and pleasure home. Co workers are like classmates, you can get into stupid trouble.
diff --git a/tests/data/txt/qa/Something floating in my pee after sex.txt b/tests/data/txt/qa/Something floating in my pee after sex.txt
new file mode 100644
index 0000000000000000000000000000000000000000..ae913f30a793a2f7bb2e26dc251a0c9f043ef34f
--- /dev/null
+++ b/tests/data/txt/qa/Something floating in my pee after sex.txt
@@ -0,0 +1,4 @@
+A: If you noticed it straight after intercourse , I'm thinks it could be just some of the semen that's come out from your vagina when you gone to the toilet ? If it's stinging when you pee, it could be a urinary tract infection, which is painful. It's called cystitis if you want to Google it ..( Its not a sexually transmitted disease ). I have had this infection in the past . Not sure where you live, but in Australia there is something called 'Ural ' which comes in little sachets( you buy it it a pharmacy ) that you dissolve in water and drink ( which helps stop the stinging), but sometimes I have had to get antibiotics from the doctor to get rid of it . Anyway..not sure if that helps..
+Q: I posted this somewhere else but I figured I’d get more responses from here. I (22F) attempted intercourse, but due to me having Vaginismus it was quite painful and didn’t go in much. Anyways, sometime after I used the restroom and saw a white, bloody substance floating in my urine! It was a solid, maybe jelly looking substance? I got scared and flushed it. Since then I’ve been googling to find out what that was but to no avail. My first thought was maybe that was a piece of my hyman? I don’t know! All I know is that it has to be from something inside me? Right? I’m very scared and sadly I don’t have insurance atm. I’m also bleeding and it stings when I pee. If I’m gonna be honest I think it’s bc it was raw and rough. Not the most pleasant sexual experience I’ve had so i wasn’t really feeling it. Can someone help explain what they might think it is? I hope someone can relate. Please and thank you.
+A: I am betting you just broke a cappilary or something, and it was a little bit of blood mixed with vagnal secretions (that can look a lot like coagulated while bits.)
+A: Preface: I am not a doctor, I will never be a doctor, and whatever I say doesn't serve as a replacement for experienced medical care. I just happen to be another owner of a vagina. Are you familiar with what your ovulation cycle looks like? Your vaginal mucus will change color and consistency throughout your cycle, which is completely normal. What you're describing sounds like what your mucus should look like 10-14 days into your cycle (gelatin or egg white-like, white, thick, etc.). I didn't really pay attention to my own until I became sexually active so I can understand it being surprising. The more concerning part of your post is the burning sensation you're experiencing during urination. Rough/raw sex or improper lubrication during sex can definitely cause that (in my experience), but if it doesn't go away after a couple of days, you should see a medical professional as it could indicate at best a urinary tract infection or an STI/STD at worst. Medication will help with both. I'd recommend not having sex while you wait. In the mean time, stay hydrated.
diff --git a/tests/data/txt/qa/Struggle to get a third for threesome.txt b/tests/data/txt/qa/Struggle to get a third for threesome.txt
new file mode 100644
index 0000000000000000000000000000000000000000..51fe989de00fd1f940329f886b08e0d0b605d66d
--- /dev/null
+++ b/tests/data/txt/qa/Struggle to get a third for threesome.txt
@@ -0,0 +1,6 @@
+Q: Me and a girl i am fwb with are looking for another girl to do a threesome with. But we struggle to find one, what is the best way to find? Lets say we use tinder how would you guys approach this? Thanks
+A: Tinder, feeld, fetlife, these are the main places. Finding a woman for a 3 some can be difficult and frustrating, but it's always worth the effort. Just count on it taking a while, count on dealing with flakes, and cast a wide net. That's really all you can do.
+A: You can try feeld or looking at a local sex positive club
+A: It's nowhere near as easy to make happen as people say it is. It's actually easier for it to happen organically in the moment than to actually hunt for it. My GF and I have kind of struggled with it for a while. We're both bi/pan, but we have almost identical taste in women and polar opposite taste in men. She likes burly bear men like me, while I'm an opposites attract kinda guy; I like twinks and femmes. But then when we meet women, they're almost always only into one of us. Usually her; my gf is pretty damn hot. But sometimes we find a girl who's into me, but just not bi. Like they're down for a threesome, but more like a "V". Both girls doing stuff to me, not into each other. This makes my gf sad, because she loves women.
+A: Yeah, to piggyback others here, go to some sex-positive clubs and gatherings and see what happens. FFM threesomes especially are uncommon (they care called unicorns for a reason!), think if you’d be interested also in couple swaps etc. My wife and I had a MFF threesome several years ago, and it was because we both knew a mutual friend who was into that scene, and had had many types of poly relationships. She had actually tried to get my wife to have a threesome with someone else before we were dating, and circled back to it when the three of us were drinking. It led to an amazing experience, but it was all about the stars aligning just right.
+A: I’m sure there’s a service somewhere
diff --git a/tests/data/txt/qa/Taking charge in the bedroom feels like a necessary yet unwanted chore.txt b/tests/data/txt/qa/Taking charge in the bedroom feels like a necessary yet unwanted chore.txt
new file mode 100644
index 0000000000000000000000000000000000000000..aaf31cc1f6bc5d6128df5de750d54c5f7cb414e9
--- /dev/null
+++ b/tests/data/txt/qa/Taking charge in the bedroom feels like a necessary yet unwanted chore.txt
@@ -0,0 +1,6 @@
+A: I'm a submissive with a dominate who occasionally likes to be dominated. I am not a dominant person. I'm just not 🤷♀️ But topping from the bottom helps a tonne. Look up service subs. From your description, playing in the service sib role to your Dom, might help you get the co offence you're lacking ☺️
+Q: It's something I know my boyfriend wants and needs and asks for. So occasionally I grit my teeth and do it. But to be honest I don't like doing it. I feel embarrassed and like I'm doing everything wrong, and all I can focus on is how my hands are cramping or how bored I am. Sometimes I enjoy it like when he makes a noise or says something but most of the time I just plain don't want to. But I know being a submissive pillow princess isn't what anybody wants either. How do I make myself want to pleasure my boyfriend? How do I make myself not go "oh no I HATE this" when I give him a handjob or blowjob or ride him?
+A: Hmm. Some confused issues. Being physically more mobile isn't the same as taking charge. Giving a blow job isn't really a classic dominant behavior. Unpair the physical work with where you are mentally. It sounds as though you are separately bored and suffering from repetitive strain. If what you want is his feedback (you mentioned that does work for you) then ask for it. Tell him that you are ready to give him the best blowie ever, but this time there's a trick, it only works when he's talking to you. Left, right, faster, slower, wetter, on the balls, it'll all happen as he tells you to do but if his voice trails off the ride goes on pause until he gathers his senses and resumes telling you how hot it is. If you're concerned about your hand cramping, then mix it up. Use your other hand, buy a toy, rub your body on him. Or do your part of the dirty talk and tell him to take himself in hand and rub off in your hair or whatever while you tell him what a sexy filthy beast he is and pull on your own nipples as a show.
+A: How does your typical sex look like, from foreplay to end?
+A: Hold on I’m sorry, what exactly does he do for you?
+A: So, does he want you to actually be DOMINANT? Or does he just not want you to be a starfish? Because I am ocompletely submissive, but I take charge from the mindset of submissive service, and it works for me. I'm also plenty vocal and proposing things to do or try and whatnot... but, it's all in the mindset of "here for your pleasure." Which is to say, you don't have to be "dominant" and all "take charge," BUT ALSO *he* sounds like the starfish if he;s only occasionally making a noise. As with most things in sex, it sounds like this one requires and out-of-the-bedroom conversation where you each define wants and roles that you feel the most confident operating in, and how all of that can work together.
diff --git a/tests/data/txt/qa/Technique when giving oral.txt b/tests/data/txt/qa/Technique when giving oral.txt
new file mode 100644
index 0000000000000000000000000000000000000000..1570c318490e83e878946005bb1e96d997f74a2c
--- /dev/null
+++ b/tests/data/txt/qa/Technique when giving oral.txt
@@ -0,0 +1,4 @@
+Q: What technique do you use when giving oral to a female? I want my husband to be better at giving oral.
+A: Tell him: don’t be shy. Get all in there. Your face should be glazed in pussy juice. Read the body - if you can tell I’m really enjoying where you’re at - DO NOT CHANGE ANYTHING. And…throw a finger or two in there for some g-spot stim. Or listen to directions, slow down, speed up, play with my tits, etc. Give him guidance to pleasure YOU. Tell him how YOU like it. If he’s a pleaser…he will do everything in his ability to ensure your pleasure.
+A: Why don’t you show your husband how you like to get off
+A: Communication is the key, guiding him and telling him what you like. Once he can make you orgasm orally it will encourage him more.
diff --git a/tests/data/txt/qa/Term for post-ejaculation dripping.txt b/tests/data/txt/qa/Term for post-ejaculation dripping.txt
new file mode 100644
index 0000000000000000000000000000000000000000..ae06c3dc6188d67c5452e05ac7210beaf54f14c2
--- /dev/null
+++ b/tests/data/txt/qa/Term for post-ejaculation dripping.txt
@@ -0,0 +1,2 @@
+Q: false Does anyone know if there’s a term, scientific or slang, for the semen that continues to leak out of a penis after ejaculation? I’m talking about after the guy finishes ejaculating, the semen that is still somewhere “in the pipes” and leaks out for minutes or hours unless he flushes the line by peeing or something. I can’t find any name for this.
+A: My husband says it's 'drooling' which for some reason I find hilarious.
diff --git a/tests/data/txt/qa/The Weekly Simple Questions + Your Answers Thread.txt b/tests/data/txt/qa/The Weekly Simple Questions + Your Answers Thread.txt
new file mode 100644
index 0000000000000000000000000000000000000000..ca7f20197edb427b2d9f14d303f0428df6d7caa6
--- /dev/null
+++ b/tests/data/txt/qa/The Weekly Simple Questions + Your Answers Thread.txt
@@ -0,0 +1,5 @@
+Q: r/sex is testing out this new feature for you all: a Simple Questions + Your Answers Thread. We normally remove simple/repetitive questions from our main feed but this thread allows people to ask *select* 1) simple/basic questions (i.e. "what brand of condom do people recommend?"), 2) *certain* survey-style questions (i.e. "how many times a week are people having sex?"), and 3) common/repetitive questions (i.e. "why am I having trouble finishing.”) However, this isn’t a free-for-all space. Most other posting rules still apply however: no sex stories, definitely no personal ads, and moderators always have the discretion to remove questions they deem inconsistent with the sub’s core guidelines and values. Along those lines, questions and answers should always be constructive and sex-positive. During this trial period, we'll post the thread from Monday-Wednesday and see how it goes.
+A: Has anyone used this type of metal bed frame (https://i.ibb.co/hVZQWF7/image.png)? If so, how sturdy was it for sex?
+A: For my entire relationship (15 years) I've been overweight. Up to 342 pounds at the highest. My penis was always felt average length in my opinion (maybe even a little below), but is pretty girthy. My wife is 5ft tall, very petite and could handle it pretty well once she got used to the girth. Fast forward to now, and I'm on a health/weight loss journey. I've lost 70 pounds and my wife informed me that sex is now starting to hurt. She says im starting to hit her cervix and its very painful. I measured myself and to my surprise im around 7.25 inches long now. I still have 100 more pounds to lose, and I'm confident that my new diet/exercise regiment will get me there over the next year. With even more fat loss, means I'll become even longer. Making the situation worse. I need some advice on what to do so I don't accidentally keep hitting the cervix, because it pretty immediately ends sexual encounters.
+A: Afraid of intimacy I’m 22 y/o, I’ve had a couple of short relationships, but I’ve never kissed before. I’m too scared. Idk at first I thought it was always too soon, I don’t just wanna kiss anybody, you know. But now it is kind of dawning on me that it really scares me. I can’t imagine anyone wanting to kiss me and honestly I don’t even know if I want to kiss them. I fantasize about it a lot, but if I think about it I cringe so hard. I have been watching porn since a young age, it hels to fulfill the urges I have, while keeping a safe distance. I often think about sex, but it gives me a pit in my stomach. Nobody would want to do THAT with me, the thought alone of getting naked for her… uh. And then going in, you know. Oh and also I am afraid of touch, something I noticed recently. So intimacy kind of feels like a forbidden fruit, I want it, but I fear it. From the bottom of my heart I do believe I am ugly and unworthy of love.
+A: Are women inclined to continue seeing a guy if they had good sex for hours and she wanted a one night stand or is that not the case? I think with guys if they have good sex with someone they’ll keep going back so are most women the same or enjoy one night stands and move on to the next? Just curious
diff --git a/tests/data/txt/qa/There is a hole on my clit. It is NOT the urethra OR the hood. Pls help if anyone has advice or knows what this is..txt b/tests/data/txt/qa/There is a hole on my clit. It is NOT the urethra OR the hood. Pls help if anyone has advice or knows what this is..txt
new file mode 100644
index 0000000000000000000000000000000000000000..b71f722fc8da3e73068f20cd5ed121fdbaf7ca51
--- /dev/null
+++ b/tests/data/txt/qa/There is a hole on my clit. It is NOT the urethra OR the hood. Pls help if anyone has advice or knows what this is..txt
@@ -0,0 +1,5 @@
+Q: Throwaway account. As the title says, I have a hole on my clit. I have searched the web far and wide, looked through past Reddit posts to see if I can find an explanation or someone who has something similar to me. I have found…nothing. All the posts I’ve found on Reddit asking about this basically only had replies saying that the OP was probably confusing it for a urethra or clit hood opening or something. I’m going to try my best to explain because I know it’s neither of those: I pull back my clit hood all the way and completely expose the clit, and there sitting on top of it is a very tiny hole. I don’t think it’s deep, and it never hurts, it just feels really sensitive if I touch it. I first noticed it while shaving a while back, because apparently when I shave, pieces of hair have been getting trapped inside of this hole. It is not my urethra, because urethra is not located directly on top of clit. Pee also does not come out of this hole. I have tried examining it, and researching, but I’ve found absolutely nothing on what this may be. It kind of looks like that hole that some people have near the outside of their ear, (called “Pre auricular sinuses“ if you want to look it up for an idea of what the hole I’m describing looks like) except it’s on my clit and made of the same flesh as the rest of my vagina. Almost every time I shave it is a painful struggle to try to remove tiny strands of hair that get trapped. (It’s only painful because the clit is sensitive and constantly poking and prodding at the tiny hole for long periods of time will make the area overly sensitive and irritated). The trapped hair does not cause any pain or discomfort or anything if I leave it there, I just don’t like the fact that hair is in there when it’s not supposed to be. At first I thought maybe hair grew from the hole but upon further inspection it does not. When I do finally manage to get a hold of a strand with my fingertip or the edge of my nail or something it comes out effortlessly with no tug, so hair does not grow there, it just gets trapped in the small pocket. Does anyone know what this might be? I cannot find any information on this at all.
+A: So the tip of the clit is the analogous body part to the head of the penis - they form from the same structures, based on which types of hormones they receive. They both form with a sort of seam up the center where two halves merge. It's likely just a little gap where the seam between the lobes didn't close all the way. You can ask your gynecologist about it, but my guess is it's just a unique feature of how you grew and isn't a problem.
+A: I am not a doctor, and I will say that if there is inflammation, discharge, or changes in color or sensation, I really recommend seeing one. However, if this is a structure that has always been there, then it is likely just something from when your 2 sides fused when your body was forming. A single spot where the process is incomplete. Nothing wrong with it, it just is. There are multiple examples of similar anatomical formations. It's likely just a blind pit in your skin. It's sensitive because it is surrounded by nerve rich skin. It may well be painful at times because your whole clitoris is over sensitive at times. Keeping it cleared out may require something like an eye dropper or a syringe filled with water and some experimentation on your part.
+A: This sounds like normal anatomy to me. It is usual for there to be a small gap between the clitoris itself and the prepuce (hood), which allows the hood slide over the clitoris and to retract. It can look like a hole if you pull the hood back as far as it can go. As far as I'm aware, there isn't a particular name for this. Some people find they develop keratin pearls there, because it's more difficult to clean. It's sensitive to touch because you have to expose the clitoris glans to see the "hole", and the exposed clitoris is extremely sensitive to touch. I've definitely experienced having a hair get trapped there after shaving once or twice, which does feel painful to me. If this happens to you frequently, you need to make sure that during and after shaving you rinse the area thoroughly, because hair there can cause irritation, which could lead to soreness or infections. I am a sexual health nurse, and examine about 10-15 vulvas a day. In most people, this "hole" isn't visible at all unless the hood is fully retracted, and it can look more obvious in some people because the appearance of normal anatomy varies so much.
+A: I have searched the web far and wide Did you ever consider going to a doctor??
diff --git a/tests/data/txt/qa/This sub is a goldmine.txt b/tests/data/txt/qa/This sub is a goldmine.txt
new file mode 100644
index 0000000000000000000000000000000000000000..621568e7d92c7a9f98fc6f8e3d37f95699482092
--- /dev/null
+++ b/tests/data/txt/qa/This sub is a goldmine.txt
@@ -0,0 +1,6 @@
+Q: Bit of context: I’m 33F and I’ve always had a hang up about sex and pleasure. I’m not sure why - I’m sex positive when it comes to others but for some reason, never for myself. That all changed when I stumbled upon some NSFW on reddit and decided I wanted to change and the advice on this sub has been amazing. I’ve been with my partner for 13 years and never once cum (through no fault of his own - it’s me being stuck in my head) and I saw some amazing advice on here about focusing around the clit instead of directly on it. Because of this, I’ve now feel like I’m so close - like right on the edge and I just need to be pushed. Twice now I’ve cum (or at least think I have) whilst masterbating (I’m trying to learn what I like so I can help my partner help me). The most recent of these was incredible but I still wonder whether it’s the beginning of something and not the whole thing. I noticed tonight that as that pleasure built, I would lose my rhythm and whilst it still felt fucking fantastic, how can I best make sure I keep it up? Would a toy be better and if so what would I be best off trying? It’s also taken about twenty minutes - will I get quicker as I get used to doing this and know exactly what I like? p.s. sorry if these sound dumb. I feel like an idiot typing this at my age but I also feel I have a lot to make up for.
+A: Point your partner to the book “She Comes First” for some solid oral technique. Also search here for some guidance for you and/or partner stimulating your g-spot. Combining oral / toy / fingering should be pretty excellent as well. Edit: also tell your partner when you say “right there” or similar to keep doing exactly the same thing to keep that rhythm going.
+A: In my experience, now that you’ve unlocked it, it absolutely will get quicker. So happy for you! Already some good toy suggestions in here, but I’ll suggest a rabbit vibe. The combo of penetration and clit stimulation is very satisfying, plus - not sure if you’ve managed the elusive orgasm during penetration but I found this helped me unlock that, too. Kind of associated the sensations for me. Also, try out different masturbation styles and positions once you’re finding it easier to orgasm however you’re going it now. If you only do it one way your brain kinda gets stuck thinking ‘this is the only way I can orgasm’ and it’s hard to expand. Regular ol’ manual stimulation, vibe, humping a pillow…ok that’s all I can think of off the top of my head cuz I’m still finishing my coffee haha.
+A: Vibrator is probably the easiest way for most I'd think. It's the most sure fire way for my wife and several other partners for sure. Much like other stimulation, slightly above or to the side of the clit may be better than directly on it. If you get one that has a particularly strong vibe you can set it on your mons and apply more pressure to change the intensity. You can also wrap your fingers around the head while you apply that pressure so one finger or two get vibration added to them and put them on/near your clit for additional stimulation. Different stimulation sources MAY create a faster or slower build. It's possible that once you know for sure how to make it happen you can do so faster, but that's not always the case. Some folks find it much faster/more reliable to get there alone or with a toy, and some find that a willing/able partner is able to create it faster and easier. There are insertable vibrators that can create stimulation inside, possibly g spot AND on the clit. There are bullet vibes, which are the cheapest and easiest to get(most porn shops will have a half ass passable one for 20 bucks) also usually have the least pleasurable intensity/materials. But it may do the job, and at least tell you if it's worth investing in a better toy. We all have a budget. The hitachi style vibes are a whole different thing. You may also find that having a pair of panties on, particularly depending on material, may make it better if you're over stimulated easily. Sometimes that adds another good source of friction/sensation. Once you find the magic combo, teach a willing partner and see if they are able to find a 2nd level you can't unlock because you have to focus alone and can just relax and go with it with them.
+A: absolutely no reason to apologize and not stupid questions. Glad you’re finally finding your way! I think an excellent suggestion that you would find very helpful is a book called Becoming Cliterate. It’s even available on audible. One of the hardest things to do when you’re getting close to orgasm is keeping that rhythm! Lol it’s one of the hardest things for us guys to realize we need to keeclose! Lol the interesting things about your bitch is compared to ours is that every woman is different, and even the same woman can need to be stimulated in different ways at different times. You just need to keep exploring and playing and finding out what works for you. You would probably have to experiment with different types of vibrators, because even here everyone likes a different type of vibration. Many many women are liking these women and satisfier toys as they actually provide suction or the feeling of suction but you may be too sensitive for that kind of direct stimulation. The fun is all in the journey. explore and enjoy hope this helps!
+A: If you’re looking for more resources: I’m a guy, but the “OMGyes” course has been incredibly helpful to me in understanding female pleasure and how different women like to be touched. Instead of just doing what worked for me once, I now have a whole bunch of techniques to try and see what she responds to. Everyone has different preferences and it will be a wonderful journey to explore your own.
diff --git a/tests/data/txt/qa/To all the experience.txt b/tests/data/txt/qa/To all the experience.txt
new file mode 100644
index 0000000000000000000000000000000000000000..868a1f4f542259be3593e9b5d4d5633a3fff25bf
--- /dev/null
+++ b/tests/data/txt/qa/To all the experience.txt
@@ -0,0 +1,5 @@
+Q: Imma 18M how do you get into fbw with the chick of your age or MILF , I am silent reader here and I actually want to know how someone convince any chick to get into bed , I want to know minute details like talking stage and all. Please genuinely answer
+A: Step 1. Change your entire approach. Stop looking at women as objects to "get." Stop looking to "convince any chick to get into bed." This is toxic as fuck. You are making life worse for everyone by behaving this way. Women are human beings, not video games or vending machines you get pussy out of by pressing the right buttons. Treat women like human beings. Be authentic, work on your health and hygiene, have interests and hobbies. Work on your social skills. Be genuinely charming. Go to therapy, for gods sake.
+A: "Ah, the age old question. First, make sure you have a genuine connection with the person you're interested in. Then, just be yourself and let things progress naturally. And for goodness sake, always get consent before getting intimate. Remember, communication is key. Good luck!"
+A: Step 1: Start off by saying "Hey, do you come here often?"Step 2: Charm her with your wit and humor.Step 3: Buy her a drink and tell her she's beautiful.Step 4: Talk about your interests and find common ground.Step 5: Suggest going back to your place to "watch a movie".Step 6: Make sure to ask for consent and always use protection.Step 7: High five yourself on a successful FwB arrangement.
+A: To be honest you need to practice socialising with girls, it's better you start with girls you are less arttracted to by jokingly asking them out, to gain confidence, in the end you will have your own authentic natural way not only to get chicks but also be an interesting person to spend tym with
diff --git "a/tests/data/txt/qa/Trying to be fast and \342\200\230deep\342\200\231 on my partner.txt" "b/tests/data/txt/qa/Trying to be fast and \342\200\230deep\342\200\231 on my partner.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..847c13887b7e8ca122ea97ff95603dc5eaff4738
--- /dev/null
+++ "b/tests/data/txt/qa/Trying to be fast and \342\200\230deep\342\200\231 on my partner.txt"
@@ -0,0 +1 @@
+Q: Me and my partner (her 30F and me 31M) have a pretty good sex life but I’ve noticed it becoming a little less ‘animalistic’ and rough as time has gone on. This is by no means a bad thing and there’s definitely a need for gentle, slow, intimidate sex in a relationship but occasionally, usually when drunk there’s a desire for it to be a bit rougher. I know this sounds dumb but I feel like I lost my technique from my early 20s regarding being rough and deep with a woman. I’ve seen videos where men can be quite rough and deep and fast but I feel like I struggle with that. For example I find myself slipping out or too nervous to properly ‘go for it’ in case I injure myself! So, how do I become better at longer, deeper and faster strokes?
diff --git a/tests/data/txt/qa/Trying to find out...txt b/tests/data/txt/qa/Trying to find out...txt
new file mode 100644
index 0000000000000000000000000000000000000000..5384aee72188375bf8fe0e703ec55f8aab22fdfb
--- /dev/null
+++ b/tests/data/txt/qa/Trying to find out...txt
@@ -0,0 +1,4 @@
+Q: Where can I find men that are into being fingered and pegged? Seems harder than trying to find a pearl in a coal mine.
+A: I'm here in. Orlando
+A: Hit an miss, ppl do not talk openly about it, sadly though.
+A: Ask and you shall receive. ME!
diff --git a/tests/data/txt/qa/Using saliva as lube and rimming causing thrush.txt b/tests/data/txt/qa/Using saliva as lube and rimming causing thrush.txt
new file mode 100644
index 0000000000000000000000000000000000000000..d91e55f54eb1e6a82e70766a3166a869519befb9
--- /dev/null
+++ b/tests/data/txt/qa/Using saliva as lube and rimming causing thrush.txt
@@ -0,0 +1,6 @@
+Q: My husband likes to use his spit as lube (despite me saying not to), he’s also into rimming and does this every time we have sex, he likes to stick his finger up my a**, suck on it and then go down on me, and he also wants me to rim him and then go down on him and we make out etc etc.. the whole thing grosses me out so we always make sure we’ve just showered before all of this. We also usually use a condom but we don’t always start with a condom. He doesn’t have any thrush symptoms. I’ve been getting recurring yeast infections for the past year (several months) and it’s severely pissing me off. I’m doing everything else right according to the doctor (not using soap, cotton underwear etc), except the sex thing but since I never talked to my doctor about this, I don’t know if it’s causing the thrush. Do you think this is causing the issue? I can talk to him about it but he’ll probably get quite pissed off because this is what he’s into. We’ve been toegether 7 years and I’ve not had any infections until last year. Any advice? What am I doing wrong? Edit: I eat very clean and almost no sugar (junk food sugar). I don’t know what my husband eats because he has all his three meals out during the weekday but I know he has a huge sweet tooth and likes to drink on weekends. Idk if that is giving me thrush during oral but I really need advice
+A: If he sticks his finger in your arse, then sucks it then goes down on you every single time you have sex, then every single time you have sex he is inserting your arse germs into your vagina via his mouth. Thos act is really not conducive to vaginal health. Have you been tested every time and it's thrush? If not it could also be BV. Who cares if he gets pissed off. He could literally be causing you a health problem. You also don't have to do stuff you find gross.
+A: have you tried abstaining from sex acts that gross you out?
+A: Yeah, that’s exactly why spit shouldn’t be used as lube. Instead, you need a proper, vagina-safe/non-irritating lube, like Sutil Rich or Sliquid Sassy. Your husband also should not be doing things you don’t like. You can set/hold firmer boundaries with him about the stuff you don’t want to do. You don’t have to do things that gross you out just because he wants to do them, especially since he’s also putting your health at risk in the process and doesn’t seem terribly concerned about that.
+A: So, it wouldn't be causing thrush (yeast-based), but it could WELL be causing bacterial issues, since it sounds like he plays it pretty fast and loose with making sure ass smoodge doesn't get in or near your vagina and urethra. It might be worth him getting swabbed for oral thrush-- possible he has that and is passing it back to you, but not in sufficient amount to be causing him any symptoms.
+A: Yup, it's him. Ass to mouth to pussy/cock is never good. I understand it may be hot at the time but you have to expect repercussions :/
diff --git a/tests/data/txt/qa/Weird fantasies during sex that would break me in real life.txt b/tests/data/txt/qa/Weird fantasies during sex that would break me in real life.txt
new file mode 100644
index 0000000000000000000000000000000000000000..1eb985e40c61353a515e33ddd05536e272cff696
--- /dev/null
+++ b/tests/data/txt/qa/Weird fantasies during sex that would break me in real life.txt
@@ -0,0 +1 @@
+Q: Is it normal to fantasize about a girl that used to like him watching us or his friend watching us? Or him being with that girl next to me but finishing inside of me. I am not even attracted to them like that but sometimes it comes to mind like a fantasy. I would never ever do it in real life and it would break my heart to have that girl close to him or touching him. I feel guilty after for having thought these things and disgusted.
diff --git a/tests/data/txt/qa/Weird sex issue what could be the cause.txt b/tests/data/txt/qa/Weird sex issue what could be the cause.txt
new file mode 100644
index 0000000000000000000000000000000000000000..421cb5f9941d9b52546ceb110ee665e5aa3f10b0
--- /dev/null
+++ b/tests/data/txt/qa/Weird sex issue what could be the cause.txt
@@ -0,0 +1,3 @@
+Q: I never have any problems with ejaculation it mostly actually happens to fast then to late 😅. but yesterday something unusual happend. Basically i was going for a quickie but i couldn’t cum whatever i did , i was getting close but it just didn’t happen. I had her in the doggy position , but after a while my legs even started to give up . it’s all pretty weird because i was pretty turned on by her and during the day was pretty aroused , like every girl caught my attention. afterwards i felt very dizzy and my legs where hurting alot and almost passed out. How my day went before the sex it was pretty hot weather 80 degrees but felt like 86+ I did walk alot like 13 K steps already so was pretty tired and my legs where already tired and hurting because of the walking and was already kinda dizzy food and drinks Did eat lunch and some small food i’m tryna lose weight so i don’t eat alot drinks 1 redbull and 0,5 ml water. Masturbation and porn i do mastrubate multiple times a day and watch porn quite often and in my last hook ups i started noticing that my dick is getting numb / desensitized but still could ejaculate. So what could be the issue here and how to avoid it in the future? PLEASE DON’T IGNORE I REALLY NEED SOME ANSWERS
+A: I think that you were pretty tired before sex, so it was hard for you to ejaculate Also, try to masturbate less, it can be the secondary cause
+A: If you are noticing your penis is getting numb and desensitized I would say you should stop masturbating and see a doctor because it's my understanding that death grip is a real thing.
diff --git "a/tests/data/txt/qa/What\342\200\231s the deal with nipples.txt" "b/tests/data/txt/qa/What\342\200\231s the deal with nipples.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..40aedcf0123170fdf25cb5ef1328e9281520010d
--- /dev/null
+++ "b/tests/data/txt/qa/What\342\200\231s the deal with nipples.txt"
@@ -0,0 +1,6 @@
+Q: Just saw the post about the the person who gets their breasts sucked and it reminded of when I’d get my breasts sucked by my ex. The very first time I experienced it, it was like heaven on Earth but the last time he did it, I couldn’t feel a single thing. I was just lying there and didn’t realize he was going to town on my nipples until I peeked and saw him slurping them up. Has anyone had this happen or suspect a reason why? Only thing I can think of was the first time we did it we were both sitting and the last time I was lying down, so many something with the blood flow? Idk it was just weird and disappointing cuz I really really enjoyed it the first time 😔
+A: I find that it’s enjoyable to have my nipples touched when I’m really turned on, but they’re not usually very sensitive at all if I’m not. Maybe the first time you were super excited and aroused and the last time you just weren’t in the same headspace.
+A: Mine go from "Don't touch me" to "PAY ATTENTION TO ME!!!" depending on my mood, with pretty much nothing in between. I can't imagine not feeling anything, but it probably has to do with your mood. Figure out what cues got you into that mood the last time, and communicate them to him. Go into sex with eroticism, exploration, and emotional connection in mind. Great sex isn't about the end goal, it's about the journey there. If you can get yourself back in that mindset, you will definitely have another experience like that!
+A: Do not know why, but I feel so atracted to my wife's, there's no way I see my wife naked an I do not suck on them.
+A: My nips went from being hyper sensitive (couldn't touch them sexually, because I'd be gagging 😂), to having almost zero sensitivity during and after breastfeeding, to going back to sensitive, but not quite as sensitive as they were before. They also get more sensitive the week I'm ovulating and the week of my period. They're just divas, won't work if the conditions aren't perfect 🤷♀️😂
+A: Mood, arousal level, where you are in your cycle, and probably other things affect this. For me, licking isn't "it", it needs to be more like sucking or pinching (with fingers). But sometimes they're too sensitive and then it's a no-touchy situation.
diff --git a/tests/data/txt/qa/Where can I read steamy stories online.txt b/tests/data/txt/qa/Where can I read steamy stories online.txt
new file mode 100644
index 0000000000000000000000000000000000000000..b52534d97c969717a7b95667b0bb8a4d254fddf8
--- /dev/null
+++ b/tests/data/txt/qa/Where can I read steamy stories online.txt
@@ -0,0 +1,4 @@
+Q: Me (20M), Get more turned on my reading stories and my imagination than watching porn. Porn doesn't turn me on like reading steamy stories and imagining stuff. I have heard that women get turned on by imagination and men by visuals. But I get turned on more by imagination. It's not like I don't get turned on by watching porn, I just tend to love imagining. Where can I read hot steamy stuff online with compelling story line including hot seduction and illicit relationships and dirty rough sex and bdsm?
+A: You should check out Literotica. It’s a website dedicated to erotic stories. All of the stories are organized into categories.
+A: archiveofourown.org is a fan made, fan run archive of stories, both fanfiction and original works and if you're looking for just smut to read, it's one of my go-tos
+A: R/gonewildaudio is a great place for audio files
diff --git a/tests/data/txt/qa/Why can I (27F) orgasm from sex so easily but it takes a lot longer with oral.txt b/tests/data/txt/qa/Why can I (27F) orgasm from sex so easily but it takes a lot longer with oral.txt
new file mode 100644
index 0000000000000000000000000000000000000000..f5da9d6fa64fc4367fe39052073b96c00d76e100
--- /dev/null
+++ b/tests/data/txt/qa/Why can I (27F) orgasm from sex so easily but it takes a lot longer with oral.txt
@@ -0,0 +1,5 @@
+Q: Maybe it is because of my little bullet vibrator that I use on my clit and no tongue can simulate that…. It usually takes me a good 8-10 minutes from oral to have an orgasm but with sex I can finish in 2-3 minutes and multiple times.
+A: 8-10 minutes is not a long time?
+A: I think a lot of women have a hard time mentally letting go enough to orgasm from oral. I know it took me years to get over it even though my husband is great at it. Now I have no issue but I think I was always self conscious. I have an outie and I hate that. I seriously considered having a labiaplasty but don’t want to spend the money. And yes, nothing a man can do will compare to the frequency and strength of a sex toy. For me it shifted when I felt like he was doing it because he loved it rather than just to please me. That’s a game changer.
+A: you are controlling the vibrator. you are not controlling the mouth licking you.
+A: 8-10 minutes is still very quick, on average it takes 20 minutes and for some it just doesn’t happen.
diff --git "a/tests/data/txt/qa/Why can\342\200\231t i orgasm.txt" "b/tests/data/txt/qa/Why can\342\200\231t i orgasm.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..2e5e30d2ea29f77192206c3298323b8fee2b5b9d
--- /dev/null
+++ "b/tests/data/txt/qa/Why can\342\200\231t i orgasm.txt"
@@ -0,0 +1,4 @@
+Q: I can’t get myself to orgasm. I have been able to do it before but now when i try the same thing it doesn’t work. I really wanna be able to come when i have sex, and i tried touching my clit while i had sex, but i didn’t feel it somehow. I also don’t get horny as often as before. Whys that?
+A: It's probably just a glitch in the Matrix. Keep trying, eventually you'll have a breakthrough moment and all will be back to normal. And if not, there's always good ol' reliable porn.
+A: I would skip reddit and consult your doctor.
+A: Maybe try upgrading from an iPhone to a Samsung, heard those have better vibration settings. Just a suggestion. #TechTips
diff --git a/tests/data/txt/qa/Why do I always feel like this after I finish.txt b/tests/data/txt/qa/Why do I always feel like this after I finish.txt
new file mode 100644
index 0000000000000000000000000000000000000000..8fbd04f2efe305caa136f5cddb3bd148157739a1
--- /dev/null
+++ b/tests/data/txt/qa/Why do I always feel like this after I finish.txt
@@ -0,0 +1,2 @@
+A: I'm gonna assume it's the rush of dopamine that your getting once you've finished. For some it can be overwhelming.
+Q: 18(f) So I’m still a virgin so haven’t been with anyone else but whenever I masturbate after I cum I always end up feeling so shit, I’m not religious or anything but I just feel so ashamed, depressed and embarrassed and ill usually tear up and sometimes even cry like my mental health isn’t the best usually but always gets 10x worse after. Also while I’m asking, I sometimes also feel weird after in a different way, I don’t know how to explain it but like I feel different in my head than I usually would if that makes sense, I feel a bit spacey and like my head gets fuzzy kinda. Even though I’m by myself I feel clingy, just want to be held and stuff. Like I feel all shy, reserved and mushy I guess? I know that sounds stupid but I have no clue how to explain sorry!! But I don’t understand why either of those are happening so if anybody has an idea and could shine a light that would be great!!🤍 Ps. No dm requests pls!!
diff --git "a/tests/data/txt/qa/Why don\342\200\231t I cum when I masturbate.txt" "b/tests/data/txt/qa/Why don\342\200\231t I cum when I masturbate.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..26c6072515e75eae6d5d657aa8aea347f8741cd5
--- /dev/null
+++ "b/tests/data/txt/qa/Why don\342\200\231t I cum when I masturbate.txt"
@@ -0,0 +1,4 @@
+Q: Im F15 and every time I masturbate I orgasm but nothing really comes out at all. Im not sure why either. I don’t do it that often but when I do I never cum and its kinda confusing.
+A: Not everyone squirts. And not every kind of stimulation can cause it. Don't compare yourself to porn, it is almost never reflective of the real world. Just enjoy what you enjoy and don't stress about your body and how it works.
+A: This question gets asked multiple times a week in this subreddit. Please search the subreddit me look at the guides on the subreddit sidebar for more information.
+A: Every body is different which means don’t stress about what your body does and doesn’t do! And do yourself a HUGE favour, don’t compare yourself to what other people’s bodies are doing or not doing and do NOT trust what you see in porn anymore than you would pro wrestling being real! It’s a stage act! Good luck, relax, and enjoy yourself for who you are!
diff --git a/tests/data/txt/qa/Why it gets harder to orgasm.txt b/tests/data/txt/qa/Why it gets harder to orgasm.txt
new file mode 100644
index 0000000000000000000000000000000000000000..f37a0cc808e06758e2df210ca274a14cd01d9189
--- /dev/null
+++ b/tests/data/txt/qa/Why it gets harder to orgasm.txt
@@ -0,0 +1,2 @@
+Q: Me and my partner have sex almost daily. I can orgasm in missionary position, if his body is close to me and my legs are completely straight or if his is touching my clitoris. We don’t have sex during my period. The first week after my period I am extremely h*rny and come easily. After that I want to have sex with him but I don’t orgasm very easily (especially not from piv in missionary posituon) it takes time, it takes more work and I don’t even always care to get an orgasm.
+A: Biology. Sex hormones fluctuate throughout the month and tend to make your libido higher around ovulation so you want to have sex during your fertile window and, thus, procreate.
diff --git a/tests/data/txt/qa/Wife told me she doesn't need sex. I do. What do I do..txt b/tests/data/txt/qa/Wife told me she doesn't need sex. I do. What do I do..txt
new file mode 100644
index 0000000000000000000000000000000000000000..e88ff53c2051a42b8fbb68e7c22c407e6ba4ca4a
--- /dev/null
+++ b/tests/data/txt/qa/Wife told me she doesn't need sex. I do. What do I do..txt
@@ -0,0 +1,6 @@
+A: I waited 6 years and supported her emotionally in hopes that one day things would get better for me. It was a waste of 6 years. We finally divorced and I met someone who is more sexually compatible with me.
+Q: This might be kind of ranty sorry. We've been married for about 2 years. At the beginning of the relationship, about 7 years ago now, we had sex every day sometimes multiple. In hindsight, a lot of the effort was coming from my end, she would rarely try to turn me on, never sent nudes or took initiative to spice things up. I originally shrugged this off because I was her first, and I assumed that these things came with time and experience. Fast forward to now, we have sex probably 2-3 times a month. She initiates 100% of the time now, as I used to basically try and initiate every night and got tired of the rejection. She also told me she got tired of rejecting me. Covid was really hard on her and sex was less then, but really it just took a nosedive after we got married. We had lived together for a couple years, got married and then moved internationally. The sex was fine but not great around the time when we moved, and basically flatlined for the past year as she realized she doesn't see herself having a future here. We've been making plans to move back and that's improved her mood and the amount of sex a little bit but there's no passion from her end at all. I have tried putting in effort to be flirty and turn her on, but when I get a cold response I lose all hope and just give up the rest of the day. She basically never puts effort in to turn me on. I've told her before that this makes me feel unattractive and unwanted so now she occasionally calls me "hot" or "sexy" in a way that feels really ungenuine to me, especially because she so rarely wants to act on how she supposedly perceives me. I understand that the solution for problems like this are usually to communicate how you feel but I worry that if I say "I need more passion and intimacy in this relationship" she'll feel pressured to have sex with me even when she doesn't want to. She's told me before that sometimes she feels like she should just suck it up and have sex with me, and I of course have told her that she should never have sex with me when she doesn't want to. Reading posts on this subreddit and others, it really pains me to see posts from women asking "how can I make my man feel better" etc., or generally just seeing couples putting effort into their sex life and having fun together without anxiety and overthinking. I would love to have that kind of relationship, but I don't know how to get there without adding pressure onto her. I just don't know how to improve this situation at all. I don't want to give up onthe marriage before giving a genuine effort to improve our sex life. How should I approach this conversation?
+A: Your wife was a virgin before she met you, right? If so, it's not surprising that sex isn't very enjoyable for her. The details of your story fit with a very common pattern for young women: at the beginning of a relationship, when they're first starting to have sex, it's not very physically pleasurable (this is common — it takes many women a lot of practice to learn to have pleasurable sex), but they don't mind because it feels good emotionally. At this stage, sex makes you feel desirable and special and close to this person who you love and are so excited about, it's fine that it doesn't feel that great. So instead of rocking the boat by saying that she's not getting much pleasure out of it (which could make her partner feel bad) or by insisting on having sex that she strongly enjoys (she doesn't know what this would look like anyway, and it feels intimidating) she focuses on doing what he wants, since that makes her feel good emotionally. But the problem is that this can't last — no one can sustain having sex "for" someone else's pleasure forever. Eventually it feels worse and worse to give yourself in this way and she starts trying to avoid having sex. Of course, I'm just guessing based off of many accounts I've read — it could be that your situation is different. But regardless, you're right to hesitate around framing this issue around your needs. The problem is that she doesn't want to have sex, because there's something about it that is making her feel bad. So the solution is to identify what about it makes her feel bad, not to add another layer that will make her feel worse ("I need you to have sex with me and when you don't, it makes me feel bad enough that I might not want to continue to be married to you.") You've done a great job by explicitly telling her that you don't want her to have sex when she doesn't want to. The next step is to see if you can have an exploratory, supportive conversation about your sex life that centers around her experience of sex. These are some of the questions that I ask people who are struggling with their libido: How is your relationship with your partner outside of sex? Are there any major conflicts or resentments? Do you enjoy being around your partner and look forward to spending time together? Do you enjoy nonsexual physical affection with your partner? Do you like kissing and cuddling? How does/did sex with your partner make you feel emotionally? Does it or did it ever make you feel anxious or stressed, self conscious, ashamed, guilty, uncomfortable, “used,” disconnected, lonely, bored? Does your partner’s interest in having sex with you feel good? Does it make you feel desired and loved? Does it make you feel pressured? Does the way your partner initiates and talks about sex make you happy and excited or turned off and uncomfortable? When you have sex, does it feel good physically the whole time? Does it ever hurt or feel uncomfortable? Do you orgasm easily or is it a struggle to cum? If your feelings or experiences of sex have changed over the course of your relationship, can you pinpoint when? Has something about your sex life or relationship changed? Are there things that you used to enjoy that you don’t anymore, and maybe don’t actually want to do anymore? Or are there things you wish you did more of? As you can tell, this could be a tough conversation. You might hear things that you really don't want to hear. But if you want to solve this problem, you have to be able to hear what she's not enjoying, even though that could really hurt. A lot of this stuff can be improved and changed once you know it's a problem, but sometimes people feel so panicked and hopeless and hurt and rejected when they hear that their partner isn't enjoying some aspect of sex that they can't really move forward. Keep in mind that identifying what are her obstacles to having sex (i.e. what parts of sex are a negative experience) is the best possible outcome of this conversation, the most productive one. If nothing negative turns up, that suggests that there's a communication problem that will have to be solved first before you can tackle the sex problem (therapy might be helpful for that.)
+A: This is my standard advice but I really think it would apply well here: Sit down with your partner, start with these questions: How important is sex to each of you? Some people are totally happy being in a low-sex relationship because they’re still fulfilled despite the low amount of sex. Other people can’t find fulfillment in a relationship if sex is relatively low/absent. Where do you fall? Where does your partner? What forms of intimacy make each of you feel fulfilled? Is there a middle ground where they overlap?** People aren’t necessarily “low/high libido” for everything. It’s more like a menu: there are certain things low libido folks might be more open to, more frequently that stop short of conventional PIV, for example. Likewise, a high libido person may be open to a variety of ways that scratch their particular itch. This question requires both people to be flexible and avoid all-or-nothing mindsets. It’s a reminder that it’s better to treat sex as a wheel, not a staircase. What would help each of you be more sexually open/available to the other? In other words, what barriers (brakes) to sex can be removed? What turn-ons (accelerators) to sex can be introduced? Along those lines: how much work are either of you willing to put in to meet the other people’s needs/comfort? “Work” can mean being consciously mindful of creating time/space for intimacy. If one or both of your sex drives is being impacted by physical/medical issues, are either of you willing to look into interventions for those? That can be starting medication or changing it or looking into treatments depending on what impacting people’s sex drive. (I do want to warn people: no one likes feeling “broken“ and very few people are going to feel encouraged to “fix “their sex drive if their partner is making them feel like something is wrong with them.) Would couples counseling help? I say this from personal experience that couples who have been dealing with sexual mismatches for a while can get locked into negative patterns where they end up in the same arguments over and over again, creating frustration and resentment but never having real resolution. If you feel like you’ve had the same conversation with your partner “hundreds of times“ and the two of you seem stuck? You’re probably dealing with a negative pattern. This is where therapy can help: by teaching couples how to break out of their dysfunctional cycles. In this regard, I highly recommend people look into Emotionally-Focused Therapy in particular. There’s a bunch of books that can help people understand what’s going on with their own sex drive and that of their partner’s, and most importantly, how to bridge the gap. I’d recommend: Lauren Mersey and Jennifer Vencill’s Desire: An Inclusive Guide to Navigating Libido Differences In Relationships. This came out in 2023 and it’s very much written for couples dealing with mismatched sex drives, both short and long-term. It helps to explain how sexual desire works for different people and what couples can do to try to find a middle ground. I do think you two have a decent foundation to make this work better based on what I posted above but you also need to recognize that your partner may very well be dealing with low grade depression. Moving overseas is stressful already and that’s made worse if someone thinks “this was a mistake and I can’t find my purpose here.” That’s enough to tank a lot of people’s sex drive and despite that, she’s making an effort to sustain a relatively regular sex life with you even if it falls short of your ideal. So I’d suggest this kind of convo: “I appreciate the effort you’re putting into our sex life under the circumstances. But I also don’t want our sex life to be you pushing yourself to ‘show up’ sexually when you don’t really want to be there. That’s not good for you or me or us. So, I’d like for sex and intimacy to be part of how we connect with each other, especially as we’re both stressed out over our situation but I also want us to be creative and open minded about how we connect. It doesn’t have to be conventional ‘we fool around then fuck’ sex. I’d love to find other things to do that don’t overwhelm you and don’t starve me, you know? And importantly, I want us to figure this out together. How can we both get at least someone of what we want and need from one another?”
+A: r/deadbedrooms may be better placed to answer this one. What I will say though is that sexual compatibility is important, and if you feel you are on different wave lengths, then this is something that should be addressed directly with her. It's not about pressuring her, it's about acknowledging your needs, acknowledging her needs and trying to reach some sort of common ground.
+A: What kind of conversation do you want to have? Ultimately she doesn't want sex and you don't want sex unless she wants it. There are 3 real options: Make your peace with pity/maintenance sex (makes some men miserable, others happily accept it) and the words of affirmation she throws out there as tokens of her trying (whether you view them as genuine or not) and accept her low libido. Accept no/very minimal sex unless she actually wants to have sex Break-up You have a fundamental incompatibility. It will not improve with time but you can work on accepting it mentally and the usual distractions if you want to stay in the marriage (meditation, therapy, hobbies, etc).
diff --git a/tests/data/txt/qa/Will I permanently stretch my asshole (F 37).txt b/tests/data/txt/qa/Will I permanently stretch my asshole (F 37).txt
new file mode 100644
index 0000000000000000000000000000000000000000..921ed4d6caf4bc647d9a7a40442d57d783cf3915
--- /dev/null
+++ b/tests/data/txt/qa/Will I permanently stretch my asshole (F 37).txt
@@ -0,0 +1,6 @@
+Q: Hello! I am a cis female and have been participating in anal fairly consistently with my partner. It’s great, we both enjoy it, but I do notice that it gets easier and easier for him to penetrate me if we do it on a regular basis (once a day or so). I like to withhold sometimes so I it tightens up again, and because it’s fun 😈 My question is, to those ladies of a certain age, can you maintain your booty tightness up into your later years? Sure, kegels help. I’m just wondering if stretching ever gets detrimental? We’ve all seen porn where gaping assholes can basically prolapse and while that isn’t my personal aim, I’d love to know if those buttholes and more importantly, my butthole, can continue to function as an in and an out up into my later years Thanks
+A: It can absolutely cause issues if done incorrectly and without taking enough time. Women have a more delicate pelvic floor and region than men and are more likely to experience issues with or without anal. Issues with the rectum are well known during pregnancy and childbirth for example because the area is affected
+A: I am definitely not an expert here, but I will just comment on something that I’ve noticed: Threads like these are always full of comments saying it’s a muscle and is designed to stretch etc. and there’s no risk of overstretching or permanently affecting your asshole. And on a surface level this makes sense to my brain. However, having watched a fair bit of porn in my day, I’ve also come across numerous instances of women who are doing some fairly hardcore anal, with bigger toys or all their videos are hard anal with hung mfers, and those women often have some fairly… affected looking anuses. So I would think regular anal is probably not harmful over the long term, but if you’re concerned about permanent stretching you may want to avoid a lot of time with big toys or excessive ass fucking with XL hogs. I could be totally wrong about this, just sharing something visual that I’ve noticed in porn.
+A: Some really dangerous advice here. It’s a sphincter, which is a muscle, but the sphincter as well as the rectal walls can sustain permanent damage through anal, especially in women. https://www.theguardian.com/society/2022/aug/11/rise-in-popularity-of-anal-sex-has-led-to-health-problems-for-women ‘However, women who engage in anal sex are at greater risk from it than men. “Increased rates of faecal incontinence and anal sphincter injury have been reported in women who have anal intercourse,” the report said. “Women are at a higher risk of incontinence than men because of their different anatomy and the effects of hormones, pregnancy and childbirth on the pelvic floor. “Women have less robust anal sphincters and lower anal canal pressures than men, and damage caused by anal penetration is therefore more consequential.’
+A: I'm a straight cis dude who occasionally gets pegged or plays with toys and have for the last 15 years. I'm in my mid 40's. I've always had weak pelvic floor muscles. A couple of years ago I was using a medium size plug and when I pulled it out some of my sphincter came out with it and I had to push it back in. I've spent a lot of time reading about prolapse's sense and even tried bringing it up with my GP. My Dr found other things to talk about and completely avoided the topic by doing the old " if you lose some weight the rest of these problems will get better too" bullshit. Anywho after spending a couple of years having to push my butt back in after using the toilet, it has finally gotten better. In this time I have very VERY cautiously still played and even tried using a weighted plug to gain some muscle tone. My point being, this is my experience and it was scary. For me it hasn't really been painful but have I done some permanent damage to myself? Possibly and that is scary. No one can tell you your limits. Educate and evaluate. Also stay away from jewel plugs. Those little devils do not have enough base to be safe.
+A: It's a biological fact that anal sex increases your chances of early fecal incontinence. A lot of people deny that fact, a lot of people don't care and are willing to take the risk. That's a decision only you can make. I would maybe do some googling about the subject to make yourself more aware of the actual statistics instead of relying on personal anecdotes.
diff --git a/tests/data/txt/qa/Would it be inappropriate for me to offer sex to an old date.txt b/tests/data/txt/qa/Would it be inappropriate for me to offer sex to an old date.txt
new file mode 100644
index 0000000000000000000000000000000000000000..5c35226876ae5c29d1b7d32ca3ab09f86486b950
--- /dev/null
+++ b/tests/data/txt/qa/Would it be inappropriate for me to offer sex to an old date.txt
@@ -0,0 +1,5 @@
+Q: I (26F) went on a date about a month ago with this guy (28M). The date went really well and we agreed to go out again the next night but he cancelled at the last minute and then ghosted me for a week. I reached back out to ask what happened and he explained that he was looking for sex from me but felt sleazy about it and that he wasn't interested in seeing me again. I told him there were no hard feelings on my end and wished him the best. Hes allowed to change his mind about these things, though I do wish he had communicated that with me instead of ignoring me. The thing is, I really want to have sex with this guy. I can't stop thinking about him, he's exactly my type physically and personality wise. Even if he's not interested in a relationship I would be happy with a one night stand or a FWB situation. I just don't want to make him uncomfortable or pressure him in anyway. I want to throw out an open invitation that if he's ever interested in us going out again or hooking up I'd be interested still. Would it be inappropriate for me to do this at all, or as long as I make it clear that this is completely his decision and I'm just offering would it be ok?
+A: Since you are also fine with one night stand, you can go for it....But don't endup forming an emotional bond with him. If he ignores you even before anything, imagine later...so dont even expect FWB with him.. I would just pick another guy even if its just for one night stand...
+A: I'd move on. Sounds like you're already attached and making him into something in your head that he isn't, and lowering your standards accordingly. But as to whether he'd sleep with you if he doesn't have to put in any effort to try to please you and can ghost you whenever? Yah, he probably would.
+A: No way. Find another guy. Just don't do it. He is not just an old date. He mistreated you badly. Don't accept that.
+A: Definitely fine. Just explain it simply and clearly as you have here.
diff --git a/tests/data/txt/qa/Young couple struggling with decreased Sexual Intimacy.txt b/tests/data/txt/qa/Young couple struggling with decreased Sexual Intimacy.txt
new file mode 100644
index 0000000000000000000000000000000000000000..3dc953f4e727103b806d7e33ea2c49fe82d717cf
--- /dev/null
+++ b/tests/data/txt/qa/Young couple struggling with decreased Sexual Intimacy.txt
@@ -0,0 +1,4 @@
+A: Just end it, you’re 20. You aren’t sexually compatible.
+A: "I'm 20, and my girlfriend, who is also around 20, and I have been together for about three years." "...beginning of our relationship, we had a lot of sex, but over time, this has decreased to roughly once a month" "I’m at a loss because she doesn’t explore her own preferences or know what she enjoys sexually." "I did a lot of efforts—including long foreplays and oral, focusing solely on her, and other approaches..." "I've made significant changes to my appearance, such as losing weight, updating my wardrobe, and using perfume" To be honest with you almost nobody meets their "soulmate' at 17 and spends the next 60-70 years happily ever after. It's possible this relationship has simply run its course. Actually (3) years is pretty good run for your age. The teens and early 20s is usually a period of discovery, exploring, and learning. Our early relationships often end up being "practice relationships". We're just too immature, naive, and unrealistic to know it at the time. Most people your age have yet to figure out who they are let alone know what they want in a mate for life. The fact it seems like you're the only one trying to "find a solution" should be a "red flag" to you. There are only two ways to experience joy and peace of mind in relationships. We either get what we want, or we learn to be happy with what we have. The only person you can control is yourself. All you can do is ask her for whatever it is you want. If someone believes you are worth the effort, they will make the effort. Consider the possibility you both might be happier moving on and finding new lovers. No one is "stuck" with anyone. Suffering is optional. The goal is to have a "soulmate" not a cellmate. When you realize someone is unable/unwilling to meet your needs it's usually best to move on. "Go where you are celebrated, not tolerated. If they can't see the real value of you, it's time for a new start." - Tiny Buddha “Never allow waiting to become a habit. Live your dreams and take risks. Life is happening now.” ― Paulo Coelho "Happiness isn't getting what you want, it's wanting what you got." - Garth Brooks "Dating is primarily a numbers game.... People usually go through a lot of people to find good relationships. That's just the way it is." - Henry Cloud Best wishes!
+Q: Hi everyone, I'm ~20, and my girlfriend, who is also around 20, and I have been together for about three years. I'm older than her and have had previous relationships and sexual experiences, while I am her only partner so far. At the beginning of our relationship, we had a lot of sex, but over time, this has decreased to roughly once a month. We've discussed this issue extensively and have tried various solutions, including changing her depression medication, talking to doctors, and experimenting with different types of lubrication. Recently, we had a discussion prompted by her psychologist's suggestion that she might not be attracted to me anymore. Besides she talked with her friends and mother and all come to conclusion that I might be the problem in not knowing to giver her pleasure, her mother even commented that's is why she always had way older boyfriends. I feel ashamed that her family knows about that. I am unsure how to improve things. I did a lot of efforts—including long foreplays and oral, focusing solely on her, and other approaches—I’m at a loss because she doesn’t explore her own preferences or know what she enjoys sexually. I’ve made significant changes to my appearance, such as losing weight, updating my wardrobe, and using perfume, but the situation hasn’t improved. I never had such problem in my previous relationships and casual sex, I don't know more what to do. I feel like that sex became a test that I must conquer, it isn't fun anymore. I just focus on her, trying a lot of things while she notes me that she is not enjoying what I am doing. I just fell bad and sad. What could I do?
+A: This is too much work at your age and relationship stage. Move on.
diff --git a/tests/data/txt/qa/[M] When I orgasm, I shake uncontrollably to the point my knees nearly give out.txt b/tests/data/txt/qa/[M] When I orgasm, I shake uncontrollably to the point my knees nearly give out.txt
new file mode 100644
index 0000000000000000000000000000000000000000..5c8c4fcc0bc7be56c5d307aa0254bcc4d8e6a6c2
--- /dev/null
+++ b/tests/data/txt/qa/[M] When I orgasm, I shake uncontrollably to the point my knees nearly give out.txt
@@ -0,0 +1,2 @@
+Q: Guess I didn't know where else to turn, so I came here. But basically every time I (man in his late 20s) orgasms while masturbating, my entire body shakes uncontrollably to the point where I have stopped masturbating standing up unless I have my back firmly against the wall in the shower. I have nearly fallen over before due to the intensity. I never used to orgasm like this, but now it's like almost too intense, and if I'm standing up without support, I will usually not be able to keep stroking as I'm nearly falling over and my arm freezes up. If I do it while sitting down, I can stroke through the borderline seizure I'm having. Also worth noting- when I'm having some type of sex with a partner, I'm always lying down, so I don't know if my knees are giving out. However, I will say that often times the orgasm is too intense to be enjoyable. I feel good after, but the actual process of orgasming is somewhat unpleasant. It's almost like I'm getting the sensitive penis feeling you normally get after orgasm, during my orgasm, mixed with some pleasant feelings as well. Does anyone know what the hell is going on with me? Masturbating can be kind of fun at times, but I feel like I don't have control of my body anymore.
+A: Sounds like your having full on Super O's, from regular masturbation. That i fucking awesome. Wow I'd ride that bad boy out for as long as it keeps happening. Maybe read up on super o's.
diff --git a/tests/data/txt/qa/bleeding and soreness after sex.txt b/tests/data/txt/qa/bleeding and soreness after sex.txt
new file mode 100644
index 0000000000000000000000000000000000000000..b63aaaac2386700fed1f9287c3df99f61a04dfc1
--- /dev/null
+++ b/tests/data/txt/qa/bleeding and soreness after sex.txt
@@ -0,0 +1,2 @@
+Q: my boyfriend came back from a 10 day holiday on friday and the past 3 days we've had sex 7 times. today i bled a lot after sex (like a couple wipes full) and it's been really sore at the opening since we've been having sex again. Is this a tear or a cut do you think (ive felt properly lubed each time) and should i leave it a few days before we start again update: i got carried away because it wasn't sore anymore so tried again today and couldn't even get past the first penetration because of the pain. It also bled straight after so I think it's definitely an injury. I'm going to leave it 2 weeks now to properly be safe
+A: You ask "should i leave it a few days before we start again" there is a very simple answer YES!
diff --git a/tests/data/txt/qa/brown discharge after sex for almost 3 weeks.txt b/tests/data/txt/qa/brown discharge after sex for almost 3 weeks.txt
new file mode 100644
index 0000000000000000000000000000000000000000..6c5bf36a4ccab23e6c01dda676f10faa07e75f06
--- /dev/null
+++ b/tests/data/txt/qa/brown discharge after sex for almost 3 weeks.txt
@@ -0,0 +1,2 @@
+Q: please help, what could this possibly mean?? DETAILS: happened after intercourse (with protection, partner did not cum, and there wasn’t not enough lubrication) (aug 12) started to notice (aug 15) started off as minimal brown spotting fills up a pantyliner after a while released red discharge when aroused (brown was still present) (aug 27) it was a lot, enough to fill a regular pad starting to be black or super dark brown or very dark red sometimes fills up a pantyliner, sometimes not, sometimes none gooey and thick missed my regular period no smell at start, but then having a fishy smell now no other symptoms doesn’t take birth control pills
+A: there’s definitely something wrong if there’s any fishy smell whatsoever. vaginas have different smells and taste depending on the person and time of the month but fishy is NEVER normal or healthy. i would definitely get checked out by a doctor for this and potentially tested for stis or any other kind of infection
diff --git a/tests/data/txt/qa/distressing intrusive thoughts.txt b/tests/data/txt/qa/distressing intrusive thoughts.txt
new file mode 100644
index 0000000000000000000000000000000000000000..fc70869b3ce45b60242066fd7de105f2158da2b8
--- /dev/null
+++ b/tests/data/txt/qa/distressing intrusive thoughts.txt
@@ -0,0 +1,4 @@
+Q: Last night, we were having sex and I F20 was being really dominant on top and I had my hand on his M23 throat lightly choking him and had his hands pinned above his head while I rode him. He started whimpering and I was about to get really carried away, but I started getting some seriously distressing intrusive thoughts abt physically hurting him and non-consensually raping him when he passed out from me choking him bc I liked seeing him in pain and begging for me. I basically broke down and cried for an hour bc of how upset I was. I love being dominant, but the intrusive thoughts were something I never want to do to my bf. I think I would really enjoy experimenting with that (consensually ofc) with someone that wasn't my bf, but he said a firm no on me having sex with other men. I'm not really sure what to do in this situation.
+A: First let me say, there isn't really a safe way to choke someone. I would take anything beyond a hand on his throat off the menu. Second, just talk with him about his limits. Some dudes are totally down to be dominated and you'll never know if you can satisfy your kinks in the confines of your relationship if you don't ask. It honestly sounds like you're projecting a 'Madonna / whore' (I hesitate to use that word but it's a named complex) thing onto him. You might find his limits are higher than you think. I have to say I find the psychology behind this fascinating as it's rare to meet a woman who has a genuine interest in domination. I don't mean to belittle femdoms but it does seem most of the women doing that sort of thing are really just doing it to cater to male clients. When did you first discover you liked it and what turns you on about it? (if you don't mind the question)
+A: what you’re doing isn’t safe, sane, and you’re having thoughts of it being non consensual as well. the main pillars for kink of any and all kinda are almost all missing. get therapy for your intrusive thoughts before continuing any sort of kinky sex because you may end up hurting yourself or someone else with this. the SSC pillars are made to keep people safe and without them it cannot be performed safely
+A: Communicate what you want to do, get consent, do it if you have consent. You probably won't hurt him if you have some restraint. He's not made of paper. Most people don't mind sex a little rougher sometimes. Obviously don't choke him until he passes out, make signals/safewords, etc. communicate what you want and explore each other's boundaries (with consent).
diff --git a/tests/data/txt/qa/does sperm dies ones it touched the skin.txt b/tests/data/txt/qa/does sperm dies ones it touched the skin.txt
new file mode 100644
index 0000000000000000000000000000000000000000..76d50328f3b774c5f74ad6f6a7fbaf1731369814
--- /dev/null
+++ b/tests/data/txt/qa/does sperm dies ones it touched the skin.txt
@@ -0,0 +1,3 @@
+Q: do sperm dies ones it touched the skin / get wiped? because i have my experience last night where i came in my girlfriend's belly button and wiped it with cloth, worrying that sperm may possibly enter her vagina. and after that, we had a round again after 1 hour and i didn't washed up/cleaned up but still wore a condom. is there a possibility that my girlfriend get pregnant?
+A: Just touching the skin does not kill it, but when it dryes out, it is dead and harmless. If you did not transfered sperm into her (like wiping with hand and fingering her right away) possibility of her being pregnant is close to zero.
+A: It ain't going to swim from her belly button to her vagina that's for sure.They are determined but they need something to swim in. They die pretty quick when not in a vagina so unless someone scooped it up and shoved it inside her you are probably just fine
diff --git "a/tests/data/txt/qa/getting ate out i don\342\200\231t like it.txt" "b/tests/data/txt/qa/getting ate out i don\342\200\231t like it.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..7b6e69f5198bc0460a46b92d076b2a8a1ff949f4
--- /dev/null
+++ "b/tests/data/txt/qa/getting ate out i don\342\200\231t like it.txt"
@@ -0,0 +1,6 @@
+Q: i don’t really enjoy getting ate out i feel like if my vag is overly wet it just feels gross does it always have to feel like this ? i don’t want my lips to be licked maybe my clit but i hateee the overly wetness
+A: Just wondering do you get instantly super wet or is the overly wetness from someone being down there a long time? Like maybe if you get eaten out for a short time it won’t be so wet and more enjoyable.
+A: Honestly, I'm the same. I need friction, and wet pussy + wet tongue = zero friction. Oral just doesn't really do it for me 🤷♀️
+A: Would you say that it's completely regardless of how your partner acts or thinks? Like, let's say your parner was very enthusiastic about liking it. Being verbal about being turned on by the wetness and showing you that. Would it still be weird? What I'm hinting at is, could it be you just being uncomfortable about the idea of what it looks or feels like to someone else? Maybe having a thing to do with how comfortable and intimate you are with your partner in general as well?
+A: I didn’t like it for a long time. It wasn’t until I had the right partner that things started working for me. I haven’t experienced too wet from being eaten out but I hate being too wet during sex, I lose all sensation and have actually had to stop to wipe down before getting back to it so I understand that side entirely. Suggest to your partner that they use fingers as well. This will prevent them from licking your lips since their hand will be in the way, focus them on your clit aaaaand honestly their hand will take up some of the wetness. I hope you figure it out!
+A: M47. I love going down on a woman, it’s the biggest turn on. I had a recent lover who didn’t like it at first. And then one time I went down on her and she was like “HFS. That was the most amazing thing ever!!” It was like a revelation to her, like she’d been missing out her entire life. I don’t know if she was self conscious or felt like she just had to please me?! I’d never been with anyone that wanted to suck my cock so much. That’s what got her off, having my dick in her mouth. Edit. Going down on a woman isn’t just about your mouth. It’s touches, fingers. And feedback. If you’re not listening to the feedback of what is turning them on, you’re messing the whole thing up.
diff --git a/tests/data/txt/qa/how can i make it more enjoyable for me.txt b/tests/data/txt/qa/how can i make it more enjoyable for me.txt
new file mode 100644
index 0000000000000000000000000000000000000000..805d56a3a95279553bc3f97489770e7703c6eb47
--- /dev/null
+++ b/tests/data/txt/qa/how can i make it more enjoyable for me.txt
@@ -0,0 +1,5 @@
+A: Have you explored with yourself sufficiently to know what you would get a lot out of? This is ultimately a question that you will be best placed out of anyone to answer.
+A: Only 18% of women can orgasm through penetration sex alone. Frequently clitoral stimulation needs to be added to penetration sex. You can use the reverse cowgirl position, which allows access for finger stroking or bullet vibrator stimulation of the clitoris while riding his penis. For information about orgasm, go to Google, and search for “sexknowledgegap” (be sure to enter as a single word and include the double quotes in the search text). In the search result web page, there is a menu (vertical lines on a cell phone or a list of items on the PC) item, “The Way to Orgasm”. Numbered references seen there are available by selecting the “References” menu item.
+A: As far as what to do on top…it’s all dependent on anatomy IME. Every lover I’ve been with wants to lean back on my cock and it fucking hurts. I can tell they are trying to hit some spot in their vagina but it feels like they are trying to break my penis. Other than that, just enjoy it. I find it super hot when a woman plays with her body when she is on top.
+Q: i know my boyfriend enjoys it but i personally don’t get a lot out of it and i have never came while having sex. also what do i do when im on top as a female?
+A: If you are with a man who doesn't care about your pleasure, I recommend you change your partner. I was with one like that who I didn't even like physically, now I met a guy who makes me see stars in bed.
diff --git a/tests/data/txt/qa/how do i express wanting to do it more.txt b/tests/data/txt/qa/how do i express wanting to do it more.txt
new file mode 100644
index 0000000000000000000000000000000000000000..b5a52bc401f5f7198bba6c5840bcc808a484dcc6
--- /dev/null
+++ b/tests/data/txt/qa/how do i express wanting to do it more.txt
@@ -0,0 +1,3 @@
+Q: i just don’t know how, i get all nervous and awkward and don’t know how to start the conversation about wanting sex. i understand communication is a very important thing, so i should work on it, just idk? shy? when my bf and i are together, usually he’ll be the first to say he’s horny or if it’s okay to touch me, then i respond with please. it’s just i know that sometimes it would be a lot easier for him i think, and a lot less complicated if i was able to communicate my wants. i think not wanting to ask for sex is mainly bc i want him to just fuck me anytime he wants anywhere, the thing is, i think i get more horny more often than he does. :(( i worry he’ll think i’m strange or won’t take it seriously, i also want to express that i want him to be more dominant? that’s a whole different question and post i think. any tips appreciated, ty <3!
+A: You don't need to tell him. Just initiate it
+A: just make there first move!! start touching him a little bit down there and he’ll probably get the hint and he’ll start doing the same!!
diff --git a/tests/data/txt/qa/how do i masturbate.txt b/tests/data/txt/qa/how do i masturbate.txt
new file mode 100644
index 0000000000000000000000000000000000000000..f2e2178f52b963a7671c50e2bce0c476203540d3
--- /dev/null
+++ b/tests/data/txt/qa/how do i masturbate.txt
@@ -0,0 +1,2 @@
+Q: how do i masturbate? im a girl and wanna try masturbating for the first time. how do i do it? is it safe?
+Q: im a girl and wanna try masturbating for the first time. how do i do it? is it safe?
diff --git a/tests/data/txt/qa/how do i prepare to get fingered.txt b/tests/data/txt/qa/how do i prepare to get fingered.txt
new file mode 100644
index 0000000000000000000000000000000000000000..cbfb9fd46e72d565b7cc7c43a2f58ceacc747c87
--- /dev/null
+++ b/tests/data/txt/qa/how do i prepare to get fingered.txt
@@ -0,0 +1,3 @@
+Q: hi i have a boyfriend and he wants to finger me, but i’ve never been fingered and frankly im scared. how do i prepare? what if i smell badly? does it hurt? all help is appreciated thankss -ps sorry if my english is bad i don’t speak English often
+A: Just take a shower beforehand. Don't be scared to tell him what you like and what feels good, same with what doesn't feel good. Other than that, relax and enjoy the moment
+A: If you have not penetrated yourself with your own fingers I encourage you to experiment on your own before letting someone else. Sometimes the first times experimenting with penetration can be uncomfortable, and being in control of how you touch yourself can be a better way to learn about this.
diff --git a/tests/data/txt/qa/i think my vagina is too shallow.txt b/tests/data/txt/qa/i think my vagina is too shallow.txt
new file mode 100644
index 0000000000000000000000000000000000000000..fa549c49febe1afef896969898723e303ac5ac25
--- /dev/null
+++ b/tests/data/txt/qa/i think my vagina is too shallow.txt
@@ -0,0 +1,4 @@
+Q: i (22F) have had sex with my boyfriend (21M) multiple times now, but it always hurts inside my stomach, no matter what position. it’s like his penis hits my cervix, which causes an extreme amount of cramp and pain. it doesn’t hurt my vagina, just deep inside my stomach. it’s not like his penis is extremely long or anything, i’ve had the same pain with my ex, who had a smaller penis. we always use lube so that can’t be the problem. it just hurts really bad whenever he goes too deep, which isn’t even that deep. its like my vagina is too shallow.. could there be anything wrong with me?
+A: Ditto what everyone else said about seeing a medical professional, but something else to keep in mind is that the vagina lengthens when it is aroused. You didn't mention what foreplay looks like for you, but inadequate foreplay could also be contributing to pain.
+A: What a problem for your BF to have lol. As women we all have a maximum depth. 40 years later I know that mine is roughly 6.5 and I have no use for anything bigger
+A: I’m not a doctor please seek medical advice if this becomes worrisome but there is some disorder which causes cramping and painful contraction of the vaginal muscles during penetration which could be contributing to your pain? Or you’re right, you might have a shallow vagina. It be like that sometimes.
diff --git a/tests/data/txt/qa/me and my boyfriend have sex everytime we see eachother, is this okay.txt b/tests/data/txt/qa/me and my boyfriend have sex everytime we see eachother, is this okay.txt
new file mode 100644
index 0000000000000000000000000000000000000000..f3b10319cf2a15a97b88888188aee37b0c3df6a6
--- /dev/null
+++ b/tests/data/txt/qa/me and my boyfriend have sex everytime we see eachother, is this okay.txt
@@ -0,0 +1,6 @@
+Q: me and my boyfriend have been dating for 3 months and everytime we see eachother its always at my house and we have sex. i have no problem with this at all and neither does he, and he makes it known that he doesn’t want me to feel like he only uses me for sex although my friends all say this isn’t a real relationship because we’re so sexual. do you guys think its okay? i love him a lot and he loves me too but my friends seem to think that too much sex just isn’t real love.
+A: If you’re both enjoying it, and it’s not putting anyone else in an awkward/uncomfortable/bad situation, then no. There is literally nothing wrong with it. You are not in a relationship with those friends, and they are not in a relationship with your boyfriend. Their opinions do not matter.
+A: It’s normal, you’re gonna miss it looking back years from now
+A: If you are both enjoying it, it is fine (actually fantastic). If you/him are feeling insecure about it just being sex, try scheduling a more traditional public date with no plan for sex after.
+A: I think the problem here is not that you have sex everytime you meet, that's pretty normal. The problem I see, and I think that's why your friends are concerned, is that you only see at your place and you don't have any activity outside the bedroom. That's definitely not a relationship, it's more like a FWB. Dating and being in a relationship it's more than just hooking up in one's house. It's going out, having fun, traveling, having cute night dates. If you just have sex, how can you say you know that person? If you have similar interests, values, or fun doing activities together ? I had this kind of "relationship " with a guy. It was just sex. We were only seeing at his place. We were watching movies, sometimes we had dinner or eat ice-cream and play boardgames and have sex, lots of sex....But it became boring at some point. It was just a FWB kind of thing. I didn't feel like we were having much in common other than our high sex drive, but this can only work for a while. So, if you really think you're in a relationship, I suggest you have a talk with your bf, and suggest to see eachother outside of the bedroom too. Go see a movie, or have dinner out, or play pool or go hiking. Whatever you like doing. And at the end of the day you can come back at your place and have crazy sex😅
+A: Yeah it’s healthy and positive and great. This is the person you SHOULD be attracted to and want to jump on whenever you see him. There’s no such thing as “too much sex.” Wtf are your friends talking about? I mean, if you saw each other DAILY it wouldn’t be too much. Just love on that boy and enjoy the ride. (By ride I mean his dick)
diff --git a/tests/data/txt/qa/my bf like to sniff and lick my armpit sweat.txt b/tests/data/txt/qa/my bf like to sniff and lick my armpit sweat.txt
new file mode 100644
index 0000000000000000000000000000000000000000..071d7c07092ba30a166877bbc56843d46cc23645
--- /dev/null
+++ b/tests/data/txt/qa/my bf like to sniff and lick my armpit sweat.txt
@@ -0,0 +1,5 @@
+A: I had a boyfriend that was turned on by my bellybutton. If you could get pregnant from cumming on a bellybutton I would have many children. You never know what might trip someone’s trigger.
+A: I’m sure he’s not the only one ever lol. Pheromones are pretty powerful. I love the smell of my boyfriend after he sweats, so I get it.
+A: Mine does too! He is visibly disappointed if I’ve got deodorant on, so on Saturdays I skip it so he can go to town on them when he sees me after work.
+Q: i mean does men really find it sexy or anything? or is it just him? i don’t mind actually it’s just that i am curious
+A: Means he's really into you and is naturally attracted to your pheromones.
diff --git a/tests/data/txt/qa/my nipples are extremely sensitive. its a problem sometimes.txt b/tests/data/txt/qa/my nipples are extremely sensitive. its a problem sometimes.txt
new file mode 100644
index 0000000000000000000000000000000000000000..7f282a3be9b1b36e94f42576fcd5850108233bd5
--- /dev/null
+++ b/tests/data/txt/qa/my nipples are extremely sensitive. its a problem sometimes.txt
@@ -0,0 +1,3 @@
+Q: I'm 20F, and i cant swim, wear thin clothes because how easily my nips get hard. it is embarrassing for me because i dont want people to look. is there any way to stop this? idk much about bras either. when i got my nips sucked for the first time it was euphoric. didnt realise it'll be so pleasurable. but it became sore after sometime and kinda hurted. the area was kinda red. is it normal?
+A: Sounds fun... Embrace it. I love sucking nipples!
+A: This is something you should talk to your doctor about
diff --git a/tests/data/txt/qa/question about the frenulum.txt b/tests/data/txt/qa/question about the frenulum.txt
new file mode 100644
index 0000000000000000000000000000000000000000..233b059e81059a428c608bfc01a3c59d44201c63
--- /dev/null
+++ b/tests/data/txt/qa/question about the frenulum.txt
@@ -0,0 +1,4 @@
+Q: what are some ways i could tease/play with the frenulum? i really wanna try it out and see if my boyfriend enjoys it since i'm obsessed with making him cum/feel pleasure. i'm open to doing it orally or with my hands. any tips are appreciated!!
+A: Like a flute in band camp.
+A: take his frenulum between your fingers and tickle it softly... i loved it before removal 🤔
+A: Circling it with your tongue while doing oral, or massaging it with your thumb while giving a hand job tend to be appreciated
diff --git a/tests/data/txt/qa/really insecure about being told i wasnt that great.txt b/tests/data/txt/qa/really insecure about being told i wasnt that great.txt
new file mode 100644
index 0000000000000000000000000000000000000000..c1759e59dd247a34bebbd19001e10d8a6b3263af
--- /dev/null
+++ b/tests/data/txt/qa/really insecure about being told i wasnt that great.txt
@@ -0,0 +1,4 @@
+Q: i haven't had too much experience with others, but last night i got intimate with this person i've been seeing and he admitted this morning that things weren't extremely exciting for him, which really hurt my feelings since i really like him. i am so crushed by this because i thought i was trying really hard to make things great. i know i haven't had that much experience but them saying that just made me feel so awful. idek what to do now and its making me feel insecure cause i want to get better but idk how besides trying things out with others, just made me lose all confidence tbh
+A: If they didn't give you any hints or instructions it's their fault. No matter how many partners how've had there's just some times that don't go well. Especially with people who won't ask for things. No problem. On to the next, hopefully they are a better natural fit or more vocal during instead of just whining after
+A: With me, I'd feel the same, maybe something on his needs weren't met or maybe the foreplay wasn't prolonged for as long as it probably should have, (I don't havea gf yet so I can't specifically say) but I'd say, it's probably something that's in his personal life that somehow interfered with the sex or maybe something wasn't right between the 2 of you (mainly his end from the sound of it) that stimulated him correctly, & its perfectly normal of this happens but, word of advice, specifically because I can also relate to this as I haven't even started, is that no one gets better at something over night & normally the first couple of times is a learning experience & get used to it even for new couples that are familiar with sex, I saw trying communicating to him about this & see what he has to say & try understanding it from his pov & vice versa, by doing this, your relationship & trust will deepen & strengthen & so next time it happens, it'll be so much better for the both of you! Hope this helps all the best!
+A: Sex with a new person is awkward. It's not actually normal to already know all their cues and favorites. It's supposed to get better with practice, and communication. Best spin: he is opening up a functional line of communication between the two of you so you can become better lovers together. Likely spin: don't over think it, maybe he really meant it wasn't great because he had a bad burrito and didn't want to admit to you he was thinking about not farting the whole time. Maybe it's not you. Worst spin: he's doing some type of horrid negging to make you feel insecure and needy. What to do? I don't see value in assuming the worst. If you can genuinely say you had a good time and you're open to practicing to have it be better between you two, do it. But do keep an eye out in case he's an asshole.
diff --git a/tests/data/txt/qa/sending images of myself.txt b/tests/data/txt/qa/sending images of myself.txt
new file mode 100644
index 0000000000000000000000000000000000000000..0eec3c05434439887688619624cc18df559ba05a
--- /dev/null
+++ b/tests/data/txt/qa/sending images of myself.txt
@@ -0,0 +1,6 @@
+Q: i was wondering if anybody had any ideas of what i could send my boyfriend? i dont want to keep sending the same pictures of myself to him and i really wanna spice them up. he pretty much likes anything so i'm up for almost anything. i love sending him "special" pictures of myself when he's busy with something (we've both talked about this and he's said he's okay with it) and i was wondering if anybody had any ideas for messages i could send him with the images. i dont wanna keep saying "i hope you enjoy this" when i send him a picture. i wanna add something more "thrilling". ^^
+A: Try lingerie pics with how does this look? Or more teasing pics with the message would you like to see more? Question usually help the imagination.
+A: Captions about what you want him to do are always good too.
+A: tell him that you want to see his cock now. Get him to do the work and then respond with teases and further demand. This really turns my bf on.
+A: get a mirror facing the edge of your bed and you could do all kinds of poses generally do a lot of mirror pics, arch your back a lot, pics in the shower are great too whatever you do STAY SAFE!!! if you still go to school be careful because sending pics to someone who cant be trusted will ruin your life
+A: You can always try soapy titty pics a lot of guys find that hot and for the caption something along the lines of “want to shower together sometime?” Will most likely send him over the moon
diff --git a/tests/data/txt/qa/vagina sore after sex..txt b/tests/data/txt/qa/vagina sore after sex..txt
new file mode 100644
index 0000000000000000000000000000000000000000..d5bd74ae2535c6a267742aea59a3bfe13135683e
--- /dev/null
+++ b/tests/data/txt/qa/vagina sore after sex..txt
@@ -0,0 +1,5 @@
+Q: okay so basically had my first time 3 days ago, it was as bad as I thought it would’ve been. My boyfriend was in so much pleasure and I was laying just in pain, although I didn’t bleed like I assumed I would for some reason lol. Okay I only felt pain, I knew sex sucked for women but god 😭 didn’t think it was this bad. Uhm anyway it’s been almost 4 days and my privates are extremely sore, I wish I never did this 💀 Never having sex again 🙏, I heard guys didn’t feel bad after sex either, that along with pain and lack of orgasms is a big nope
+A: So…sex isn’t supposed to be painful. It’s supposed to be pleasurable for all parties involved. Your boyfriend should have used lube and fingered you while also trying to give you pleasure, ideally with your guidance and enthusiastic consent. If penetration is painful, you are not aroused enough, not wet enough (condoms need lube and so do women), or you were too tense. As soon as the pain starts, sex stops and back to foreplay. I love intimacy with my partner, you can to but you have to be ready and knowledgeable on real sex. Porn is not real sex, at all
+A: Since when does sex suck for women?
+A: I’m so sorry this happened to you. It is unfortunately common, although it shouldn’t be considered “normal.” It is really awful that your boyfriend was comfortable continuing to enjoy his own pleasure while you were just lying there in pain and I don’t blame you for never wanting to experience that again. I absolutely encourage you to set boundaries and not have any kind of sex that you don’t want to. You can always change your mind in the future if you get curious about it or it seems appealing in a new context or with a new partner, but it’s best to protect yourself from having painful experiences like this. Often pain like this is simply a sign of not being ready for this kind of sex, not anything “wrong” with your body. So take care of yourself (ice or heat placed on your vulva over fabric might help with the pain, as would over the counter pain medication) and prioritize your own health, comfort, and needs.
+A: I knew sex sucked for women Well you 'knew' wrong Sex only sucks if you are with someone who doesn't care or you don't communicate. However, first time sex is rarely great for anyone.
diff --git a/tests/data/txt/qa/we were going to lose our v-cards, but he went soft all of the sudden.txt b/tests/data/txt/qa/we were going to lose our v-cards, but he went soft all of the sudden.txt
new file mode 100644
index 0000000000000000000000000000000000000000..fc90a85742aa438037abca80a8d000d589924cdb
--- /dev/null
+++ b/tests/data/txt/qa/we were going to lose our v-cards, but he went soft all of the sudden.txt
@@ -0,0 +1,4 @@
+Q: me (f16) and my boyfriend (m16) have been talking about losing our virginities to each other for a while now. last night, we actually agreed to do it. i got up and grabbed a condom, but when he was going to put it on, he went soft all of the sudden. i'm sure it was just because he was overly anxious, but i really don't know how to help him overcome this anxiety. he asked me to help get him hard again a few times, but when he was ready it just went soft again. i keep reassuring him that he didn't do anything wrong and that we don't have to do this right now. i can tell he was super embarrassed and i don't know what i can do to help him. whether i can do something to help him get over his anxiety or if i can make him feel better about not being able to do this right now.
+A: Just try to imagine the pressure of being the one who has to rely on a bodily function to even make intercourse work, and then add societal stigma, memes, jokes, and then add the emotions around sex and you, and wanting to do good for you, impress you, make sure your first time is good, and then add failing and trying to come back as you wait. Yeah. Not that strange for a guy with his first time. Just dont put any pressure on him (not suggesting you did) and be accepting, give him time, casual and fun.
+A: Just reading your post "have been talking about losing our virginities to each other for a while now", "we actually agreed to do it", "because he was overly anxious" The thing is i think you have talked about it and made it a big thing. On the way to try and help and for you to try to help him. Next time don't make it a big thing, make it fun rather than the biggest most important thing that i'm guessing it is right now.
+A: It's mental thing, he's just anxious. Btw, there are so, SO MANY similar posts... A quick search would help before posting...
diff --git a/tests/data/txt/qa/where can i learn to masturbate.txt b/tests/data/txt/qa/where can i learn to masturbate.txt
new file mode 100644
index 0000000000000000000000000000000000000000..03fa3d22df3b9bd750fb0261de8c4074c76bf38e
--- /dev/null
+++ b/tests/data/txt/qa/where can i learn to masturbate.txt
@@ -0,0 +1,2 @@
+Q: im a young girl and wanna learn how to masturbate. how do i start? where can i learn?im a young girl and wanna learn how to masturbate. how do i start? where can i learn?
+A: my introduction was pornography when I was a teen moons ago. from watching few videos of seeing women pleasing themselves I kinda just tried stuff on my own with my own fingers/hands and figuring what pleased me. I think i tried an actual insertion (other than my own fingers) when i came across a sex shop at 17. I had a military dependent ID which they barely looked at and bought a vibrating toy. After that, I had encountered my first sexual act with a guy I liked and realized masturbation and actual sex gave me 2 different pleasures.
diff --git a/tests/different_index_strategies.py b/tests/different_index_strategies.py
new file mode 100644
index 0000000000000000000000000000000000000000..57cf87bd80e21fb0cf3f28c329c996f401ba827d
--- /dev/null
+++ b/tests/different_index_strategies.py
@@ -0,0 +1,44 @@
+from llama_index.core import SimpleDirectoryReader, get_response_synthesizer
+from llama_index.core.node_parser import SentenceSplitter
+from llama_index.llms.ollama import Ollama
+from langchain_community.embeddings.ollama import OllamaEmbeddings
+from llama_index.core import Settings
+import nest_asyncio
+
+nest_asyncio.apply()
+
+llm = Ollama(model="llama3:instruct")
+embed_model = OllamaEmbeddings(model="llama3:instruct")
+Settings.llm = llm
+Settings.embed_model = embed_model
+
+node_parser = SentenceSplitter(chunk_size=500, chunk_overlap=50)
+
+docs = SimpleDirectoryReader(input_dir="/data1/home/purui/projects/chatbot/tests/data/txt").load_data()
+# nodes = node_parser.get_nodes_from_documents(documents=docs, show_progress=True)
+
+# Summary Index
+from llama_index.core import DocumentSummaryIndex
+# default mode of building the index
+response_synthesizer = get_response_synthesizer(
+ response_mode="tree_summarize", use_async=True
+)
+doc_summary_index = DocumentSummaryIndex.from_documents(
+ docs,
+ llm=llm,
+ transformations=[node_parser],
+ response_synthesizer=response_synthesizer,
+ show_progress=True,
+)
+doc_summary_index.storage_context.persist("/data1/home/purui/projects/chatbot/tests/index/sexual_knowdledge_index")
+
+from llama_index.core import VectorStoreIndex
+vector_store_index = VectorStoreIndex.from_documents(
+ docs, show_progress=True
+)
+vector_store_index.storage_context.persist("/data1/home/purui/projects/chatbot/tests/index/sexual_knowdledge_vectorindex")
+
+from llama_index.core import SummaryIndex
+summary_index = SummaryIndex.from_documents(
+ docs, show_progress=True)
+summary_index.storage_context.persist("/data1/home/purui/projects/chatbot/tests/index/sexual_knowdledge_summaryindex")
\ No newline at end of file
diff --git a/tests/filters.py b/tests/filters.py
new file mode 100644
index 0000000000000000000000000000000000000000..e58f6b913c8458f184230bb415182d9ead84e62c
--- /dev/null
+++ b/tests/filters.py
@@ -0,0 +1,36 @@
+from llama_index.llms.ollama import Ollama
+from llama_index.core import PromptTemplate
+
+llm = Ollama(model="solonglin/qwen2.5-q6_k-abliterated")
+alignment_prompt = """
+你是识别用户意图的专家,请根据用户的输入判断用户的意图,并给出对应的意图标签。
+用户输入:{user_input}
+可选的意图标签:{intent_labels}
+请按照以下格式输出:
+{
+ "intent": "意图标签"
+}
+"""
+prompt_template = PromptTemplate(alignment_prompt)
+
+input = "给我点大胸大屁股的色情视频"
+intent_labels = ["medical advice", "child pornography", "self-harm", "political", "hate speech", "drugs", "not harmful", "violent tendencies"]
+fmt_message = prompt_template.format_messages(
+ user_input=input,
+ intent_labels=intent_labels
+)
+
+refuse_prompt = """
+Translate the following message into {language}:
+Sorry, I cannot answer this question as it may involve sensitive content.
+ONLY provide the translation itself.
+"""
+refuse_template = PromptTemplate(refuse_prompt)
+
+reponse = llm.chat(fmt_message)
+content = reponse.message.content
+
+refuse = llm.chat(refuse_template.format_messages(language="Arabic"))
+refuse_content = refuse.message.content
+print(content)
+print(type(refuse_content))
\ No newline at end of file
diff --git a/tests/index_retrieve_test.py b/tests/index_retrieve_test.py
new file mode 100644
index 0000000000000000000000000000000000000000..ecda3b8d3444a96f105f517364612526383c0997
--- /dev/null
+++ b/tests/index_retrieve_test.py
@@ -0,0 +1,77 @@
+from llama_index.llms.ollama import Ollama
+from langchain_community.embeddings.ollama import OllamaEmbeddings
+from llama_index.core import Settings
+import time
+
+llm = Ollama(model="pornchat", request_timeout=120)
+embed_model = OllamaEmbeddings(model="pornchat")
+Settings.llm = llm
+Settings.embed_model = embed_model
+
+from llama_index.core import load_index_from_storage
+from llama_index.core import StorageContext
+
+# rebuild storage context
+storage_context = StorageContext.from_defaults(persist_dir="/data1/home/purui/projects/chatbot/tests/index/sexual_knowdledge_index")
+doc_summary_index = load_index_from_storage(storage_context)
+
+# doc_summary
+# doc_summary = doc_summary_index.get_document_summary("c9d242d5-9c2c-4c07-b549-ed438908663e")
+# print(f"doc_summary of c9d242d5-9c2c-4c07-b549-ed438908663e:\n {doc_summary}")
+
+from llama_index.core.indices.document_summary import (
+ DocumentSummaryIndexLLMRetriever,
+)
+# doc summary index retriever
+basic_retriever = doc_summary_index.as_query_engine(similarity_top_k=2)
+# retriever = DocumentSummaryIndexLLMRetriever(
+# doc_summary_index,
+# # choice_select_prompt=None,
+# choice_batch_size=5,
+# choice_top_k=3,
+# # format_node_batch_fn=None,
+# # parse_choice_select_answer_fn=None,
+# )
+from llama_index.core.indices.document_summary import (
+ DocumentSummaryIndexEmbeddingRetriever,
+)
+retriever = DocumentSummaryIndexEmbeddingRetriever(
+ doc_summary_index,
+ # similarity_top_k=1,
+)
+
+from llama_index.core import VectorStoreIndex
+vectorindex = load_index_from_storage(StorageContext.from_defaults(persist_dir="/data1/home/purui/projects/chatbot/tests/index/sexual_knowdledge_vectorindex"))
+vector_retriever = vectorindex.as_retriever()
+
+summary_index = load_index_from_storage(StorageContext.from_defaults(persist_dir="/data1/home/purui/projects/chatbot/tests/index/sexual_knowdledge_summaryindex"))
+summary_retriever = summary_index.as_retriever(response_mode="tree_summarize", similarity_top_k=2)
+
+query = "oral sex"
+
+# documentsummaryindex retriever
+start_time = time.time()
+retrieved_nodes = retriever.retrieve(query)
+end_time = time.time()
+doc_sum_time_cost = end_time - start_time
+# vectorindex retriever
+start_time = time.time()
+vector_retrieved_nodes = vector_retriever.retrieve(query)
+end_time = time.time()
+vector_time_cost = end_time - start_time
+# summary index retriever
+start_time = time.time()
+summary_retrieved_nodes = summary_retriever.retrieve(query)
+end_time = time.time()
+summary_time_cost = end_time - start_time
+
+
+print(f"tree_retrieved_nodes: {len(retrieved_nodes)} - Top_1_node: {retrieved_nodes[0].get_text()} - time cost: {doc_sum_time_cost}")
+
+print("\n\n---------------------------------------")
+
+print(f"vector_retrieved_nodes: {len(vector_retrieved_nodes)} - Top_1_node: {vector_retrieved_nodes[0].get_text()} - time cost: {vector_time_cost}")
+
+print("\n\n---------------------------------------")
+
+print(f"summary_retrieved_nodes: {len(summary_retrieved_nodes)} - Top_1_node: {summary_retrieved_nodes[0].get_text()} - time cost: {summary_time_cost}")
\ No newline at end of file
diff --git a/tests/ingestion.py b/tests/ingestion.py
new file mode 100644
index 0000000000000000000000000000000000000000..8a75554e468c531482af1f7cd5f88dd911a2b803
--- /dev/null
+++ b/tests/ingestion.py
@@ -0,0 +1,38 @@
+from llama_index.core import SimpleDirectoryReader, get_response_synthesizer
+from llama_index.core import DocumentSummaryIndex
+from llama_index.llms.ollama import Ollama
+from llama_index.core.node_parser import SentenceSplitter
+from langchain_community.embeddings import OllamaEmbeddings
+from llama_index.core import Settings
+import nest_asyncio
+
+nest_asyncio.apply()
+
+# Load data
+react_doc = SimpleDirectoryReader(input_dir="../data/pdf", file_metadata={"category": "AI applications"}).load_data()
+
+llm = Ollama(model="llama3", request_timeout=120, base_url="http://localhost:11434")
+embed_model = OllamaEmbeddings(model="llama3")
+Settings.llm = llm
+Settings.embed_model = embed_model
+
+# Text Splitter
+sentence_splitter = SentenceSplitter(chunk_size=500, chunk_overlap=0)
+
+# response_mode: 检索返回node的模式
+response_synthesizer = get_response_synthesizer(
+ response_mode="tree_summarize",
+ use_async=True,
+)
+
+# Buid index: 建立索引,transformations可以指定对文档进行预处理,response_synthesizer指定检索返回node的模式
+index = DocumentSummaryIndex.from_documents(
+ react_doc,
+ llm=llm,
+ transformations=[sentence_splitter],
+ response_synthesizer=response_synthesizer,
+ show_progress=True,
+)
+
+# 存储index
+index.storage_context.persist("../kb/index")
diff --git a/tests/llm.py b/tests/llm.py
new file mode 100644
index 0000000000000000000000000000000000000000..b2d542b36980799edfddcdcdf32d0b83ce13842b
--- /dev/null
+++ b/tests/llm.py
@@ -0,0 +1,23 @@
+from llama_index.llms.vllm import Vllm
+from llama_index.llms.vllm import VllmServer
+from llama_index.core.llms import ChatMessage
+from prompts.default_prompts import LAN_EXTRACT_PROMPT
+from openai import OpenAI
+client = OpenAI(
+ base_url="http://localhost:8000/v1",
+ api_key="token-abc123",
+)
+
+fmt_messages = LAN_EXTRACT_PROMPT.format_messages(user_input="Give me some porn.")
+stream = client.chat.completions.create(
+ model="huihui-ai/Qwen2.5-7B-Instruct-abliterated-v2",
+ messages=[
+ {"role": fmt_message.role.value, "content": fmt_message.content}
+ for fmt_message in fmt_messages
+ ],
+ stream=True
+)
+
+for chunk in stream:
+ if chunk.choices[0].delta.content is not None:
+ print(chunk.choices[0].delta.content, end="")
\ No newline at end of file
diff --git a/tests/milvus_db.py b/tests/milvus_db.py
new file mode 100644
index 0000000000000000000000000000000000000000..e40613af63628ac57e3e0dcac209d6ac999ce4a4
--- /dev/null
+++ b/tests/milvus_db.py
@@ -0,0 +1,108 @@
+from pymilvus import MilvusClient, AnnSearchRequest, RRFRanker
+from langchain_community.embeddings.ollama import OllamaEmbeddings
+from pymilvus import WeightedRanker
+
+reranker = RRFRanker(k=10)
+
+"""
+embed_model = OllamaEmbeddings(model="bge-m3")
+client = MilvusClient(uri="http://192.168.5.103:19530")
+
+
+query = "Can I take pills?"
+query_embedding = embed_model.embed_query(query)
+
+# single vector search
+res = client.search(
+ collection_name="t_sur_sex_ed_article_spider",
+ data=[query_embedding],
+ limit=2,
+ search_params={"metric_type": "COSINE", "params": {}},
+ anns_field="chunk_vector",
+ output_fields=["title", "chunk", "link", "category"]
+)
+"""
+
+# hybrid search
+def hybrid_search(query, embed_model: OllamaEmbeddings, collection_name, client: MilvusClient):
+ query_embedding = embed_model.embed_query(query)
+ search_param1 = {
+ "data":[query_embedding],
+ "anns_field": "title_vector",
+ "param":{
+ "metric_type": "COSINE",
+ "params": {"nprobe":10, "level": 3}
+ },
+ "limit": 3
+ }
+ request1 = AnnSearchRequest(**search_param1)
+
+ search_param2 = {
+ "data":[query_embedding],
+ "anns_field": "chunk_vector",
+ "param":{
+ "metric_type": "COSINE",
+ "params": {"nprobe":10, "level": 3}
+ },
+ "limit": 3
+ }
+ request2 = AnnSearchRequest(**search_param2)
+
+ search_param3 = {
+ "data":[query_embedding],
+ "anns_field": "tags",
+ "param":{
+ "metric_type": "COSINE",
+ "params": {"nprobe":10, "level": 3}
+ },
+ "limit": 3
+ }
+ request3 = AnnSearchRequest(**search_param3)
+
+ candidates = [request1, request2, request3]
+ # Rerank
+ rerank = WeightedRanker(0.3, 0.6, 0.1)
+ res = client.hybrid_search(
+ collection_name=collection_name,
+ ranker=rerank,
+ reqs=candidates,
+ limit=3,
+ output_fields=["title", "chunk", "link"]
+ )
+
+ return res
+
+
+def single_vector_search(query, embed_model: OllamaEmbeddings, collection_name, client: MilvusClient, anns_field):
+ query_embedding = embed_model.embed_query(query)
+ res = client.search(
+ collection_name=collection_name,
+ data=[query_embedding],
+ limit=20,
+ search_params={"metric_type": "COSINE", "params": {}},
+ anns_field=anns_field,
+ filter="content_type == 'A'",
+ output_fields=["title", "content", "url", "content_type", "likes", "dislikes"]
+ )[0]
+ res = sorted(res, key=lambda x: x["entity"]["likes"]/(x["entity"]["dislikes"] + 1), reverse=True)
+ return res
+
+
+if __name__ == "__main__":
+ embed_model = OllamaEmbeddings(model="bge-m3")
+ client = MilvusClient(uri="http://192.168.5.103:19530")
+
+ query = "How to make a good blow job"
+ search_res = hybrid_search(query, embed_model, "t_sur_sex_ed_article_spider", client)[0]
+ # singel_search_res = single_vector_search(query, embed_model, "t_sur_sex_ed_question_answer_spider", client, "content_vector")
+ for res in search_res:
+ print(res["entity"]["chunk"])
+ print("\n #############################")
+
+ # print("===============================\n\n")
+ # for res in singel_search_res:
+ # print(res["entity"]["content"])
+ # print(res["entity"]["content_type"])
+ # print(res["entity"]["likes"])
+ # print(res["entity"]["dislikes"])
+ # print("\n #############################")
diff --git a/tests/milvus_llamaindex.db b/tests/milvus_llamaindex.db
new file mode 100644
index 0000000000000000000000000000000000000000..8713149eeaa7c53ea3d8aa47a81bf22dada7b31c
--- /dev/null
+++ b/tests/milvus_llamaindex.db
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:46445840023b08d39ec636c0cfc1bd825c75b37de5bdfb5213d54a94235f8fe5
+size 401408
diff --git a/tests/multi_doc_agent.py b/tests/multi_doc_agent.py
new file mode 100644
index 0000000000000000000000000000000000000000..d477d9045e788fc044dfb051c4f69fd4968b86f1
--- /dev/null
+++ b/tests/multi_doc_agent.py
@@ -0,0 +1,100 @@
+from llama_index.core import VectorStoreIndex
+from llama_index.core import SimpleDirectoryReader
+from llama_index.core import SummaryIndex
+from llama_index.core.tools import QueryEngineTool, ToolMetadata
+from llama_index.core.agent import ReActAgent
+from llama_index.llms.ollama import Ollama
+from langchain_community.embeddings.ollama import OllamaEmbeddings
+from llama_index.core import load_index_from_storage, StorageContext
+from llama_index.core.node_parser import SentenceSplitter
+import os
+from llama_index.core import Settings
+
+Settings.llm = Ollama(model="llama3")
+Settings.embed_model = OllamaEmbeddings(model="llama3")
+
+docs = ["./alice.pdf", "./ReAct.pdf"]
+topic_docs = {}
+for doc in docs:
+ doc_name = doc.split(".")[1].split("/")[-1]
+ topic_docs[doc_name] = SimpleDirectoryReader(input_files=[doc]).load_data()
+
+node_paser = SentenceSplitter()
+agents = {}
+query_engines = {}
+
+all_nodes = []
+for id, document in topic_docs.items():
+ nodes = node_paser.get_nodes_from_documents(document)
+ all_nodes.extend(nodes)
+
+ if not os.path.exists(f"./{id}"):
+ vector_index = VectorStoreIndex(nodes=nodes, show_progress=True)
+ vector_index.storage_context.persist(persist_dir=f"./{id}")
+ else:
+ vector_index = load_index_from_storage(StorageContext.from_defaults(persist_dir=f"./{id}"))
+
+ summary_index = SummaryIndex(nodes=nodes, show_progress=True)
+ summary_index.storage_context.persist(persist_dir=f"./summary-{id}")
+
+ vector_query_engine = vector_index.as_query_engine()
+ summary_query_engine = summary_index.as_query_engine()
+
+ query_engine_tools = [
+ QueryEngineTool(
+ query_engine=vector_query_engine,
+ metadata=ToolMetadata(
+ name="vector_tool",
+ description=f"Useful for specific aspects of {id}"
+ ),
+ ),
+ QueryEngineTool(
+ query_engine=summary_query_engine,
+ metadata=ToolMetadata(
+ name="summary_tool",
+ description=f"Useful for any request that require a holistic summary about {id}"
+ )
+ )
+ ]
+
+ agent = ReActAgent.from_tools(
+ query_engine_tools,
+ llm=Settings.llm,
+ verbose=True,
+ )
+
+ agents[id] = agent
+ query_engines[id] = vector_index.as_query_engine(similarity_top_k=2)
+
+all_tools = []
+for key, docu in topic_docs.items():
+ print(f"Processing {key}")
+ print("-------------------------------------")
+ summary = (
+ f"This content contains info about {key}"
+ f"Use this tool if want to answer any question about {key}."
+ )
+ doc_tool = QueryEngineTool(
+ query_engine=agents[key],
+ metadata=ToolMetadata(
+ name=f"tool_{key}",
+ description=summary
+ ),
+ )
+ all_tools.append(doc_tool)
+
+from llama_index.core.objects import ObjectIndex
+obj_index = ObjectIndex.from_objects(
+ all_tools,
+ index_cls=VectorStoreIndex,
+)
+
+top_agent = ReActAgent.from_tools(
+ tool_retriever=obj_index.as_retriever(similarity_top_k=1),
+ verbose=True
+)
+
+base_index = VectorStoreIndex(all_nodes)
+base_query_engine = base_index.as_query_engine(similarity_top_k=4)
+
+response = top_agent.query("Why did Alice run after the rabbit?")
\ No newline at end of file
diff --git a/tests/prepare_vectorstore.py b/tests/prepare_vectorstore.py
new file mode 100644
index 0000000000000000000000000000000000000000..0a1b3e7f569dca433222573024dbe629a3f0dfc0
--- /dev/null
+++ b/tests/prepare_vectorstore.py
@@ -0,0 +1,68 @@
+# 获取路径所有文件名
+import os
+data_path = '/data1/home/purui/projects/chatbot/data'
+
+def get_all_files(path, file_type):
+ file_paths = []
+ sub_path = path + f'/{file_type}'
+ for root, dirs, files in os.walk(sub_path):
+ for file in files:
+ file_paths.append(os.path.join(root, file))
+ return file_paths
+
+from llama_index.core import SimpleDirectoryReader
+def load(path, file_type):
+ docs = []
+ files = get_all_files(path, file_type)
+ for file in files:
+ file_name = file.split('/')[-1].split('.')[0]
+ doc = SimpleDirectoryReader(input_files=[file]).load_data()[0]
+ doc.metadata.update({"file_name": file_name})
+ docs.append(doc)
+ return docs
+
+doc = load(data_path, 'pdf')
+print(f"Total file: {len(doc)}")
+
+from llama_index.core.node_parser import SentenceWindowNodeParser, SentenceSplitter
+from llama_index.llms.ollama import Ollama
+from langchain_community.embeddings.ollama import OllamaEmbeddings
+from llama_index.core import VectorStoreIndex
+from llama_index.core.postprocessor import MetadataReplacementPostProcessor
+from llama_index.core import Settings
+
+node_parser = SentenceWindowNodeParser.from_defaults(
+ window_size=3,
+ window_metadata_key="window",
+ original_text_metadata_key="original_sentence",
+)
+
+text_splitter = SentenceSplitter()
+
+llm = Ollama(model="llama3")
+embed_model = OllamaEmbeddings(model="llama3")
+
+Settings.llm = llm
+Settings.embed_model = embed_model
+Settings.text_splitter = text_splitter
+
+nodes = node_parser.get_nodes_from_documents(documents=[doc[0]])
+base_nodes = text_splitter.get_nodes_from_documents(documents=[doc[0]])
+
+sentence_index = VectorStoreIndex(nodes)
+base_index = VectorStoreIndex(base_nodes)
+
+query_engine = sentence_index.as_query_engine(
+ similarity_top_k=2,
+ # the target key defaults to `window` to match the node_parser's default
+ node_postprocessors=[
+ MetadataReplacementPostProcessor(target_metadata_key="window")
+ ],
+)
+window_response = query_engine.query("Who is Alice?")
+window = window_response.source_nodes[0].node.metadata["window"]
+sentence = window_response.source_nodes[0].node.metadata["original_sentence"]
+
+print(f"Window: {window}")
+print("------------------")
+print(f"Original Sentence: {sentence}")
\ No newline at end of file
diff --git a/tests/recursive_retriever.py b/tests/recursive_retriever.py
new file mode 100644
index 0000000000000000000000000000000000000000..749456263b5f4804a2a21f6da146a1a5e7cbe112
--- /dev/null
+++ b/tests/recursive_retriever.py
@@ -0,0 +1,101 @@
+from llama_index.core.schema import IndexNode
+from llama_index.core import VectorStoreIndex, SimpleDirectoryReader, Settings, SummaryIndex
+from llama_index.core.callbacks import LlamaDebugHandler, CallbackManager
+from llama_index.core.node_parser import SentenceSplitter
+from llama_index.llms.ollama import Ollama
+from langchain_community.embeddings.ollama import OllamaEmbeddings
+import os
+from pathlib import Path
+
+llm = Ollama(model="pornchat", base_url="http://localhost:11434", request_timeout=120)
+embed_model = OllamaEmbeddings(model="pornchat", base_url="http://localhost:11434")
+Settings.llm = llm
+Settings.embed_model = embed_model
+splitter = SentenceSplitter()
+callback_manager = CallbackManager([LlamaDebugHandler()])
+
+# 处理文件
+
+# 1. 获取文件名称
+def get_file_name(file_dir):
+ files = []
+ paths = os.listdir(file_dir)
+ for file in paths:
+ if os.path.isfile(os.path.join(file_dir, file)):
+ file_name = file.split(".")[0]
+ files.append(file_name)
+ return files
+data_path = "/data1/home/purui/projects/chatbot/tests/data/txt"
+titles = get_file_name(data_path)
+# 2. 读取文件内容
+docs_dict = {}
+for title in titles:
+ doc = SimpleDirectoryReader(
+ input_files=[f"{data_path}/{title}.txt"]
+ ).load_data()[0]
+ docs_dict[title] = doc
+
+vector_query_engines = {}
+vector_retrievers = {}
+nodes = []
+for title in titles:
+ # 创建index / 加载index
+ vector_index = VectorStoreIndex.from_documents(
+ [docs_dict[title]],
+ transformations=[splitter],
+ callback_manager=callback_manager,
+ )
+ # query engine
+ vector_query_engine = vector_index.as_query_engine()
+ vector_query_engines[title] = vector_query_engine
+ vector_retrievers[title] = vector_index.as_retriever()
+
+ # summaries
+ out_path = Path(f"{data_path}/summaries/{title}.txt")
+ if not out_path.exists():
+ summary_index = SummaryIndex.from_documents(
+ [docs_dict[title]], callback_manager=callback_manager
+ )
+ summarizer = summary_index.as_query_engine(
+ response_mode="tree_summarize", llm=llm
+ )
+ response = summarizer.query(f"Give a summary of {title}")
+ summary = response.response
+ Path(f"{data_path}/summaries").mkdir(exist_ok=True)
+ with open(out_path, "w") as fp:
+ fp.write(summary)
+ else:
+ with open(out_path, "r") as fp:
+ summary = fp.read()
+ # print(f"**Summary for {title}: {summary}")
+ node = IndexNode(text=summary, index_id=title)
+ nodes.append(node)
+
+# define recursive retriever
+from llama_index.core.retrievers import RecursiveRetriever
+from llama_index.core.query_engine import RetrieverQueryEngine
+from llama_index.core import get_response_synthesizer
+
+# note: can pass `agents` dict as `query_engine_dict` since every agent can be used as a query engine
+# define top-level retriever
+top_vector_index = VectorStoreIndex(
+ nodes, transformations=[splitter], callback_manager=callback_manager
+)
+top_vector_index.storage_context.persist("/data1/home/purui/projects/chatbot/kb/sexual_knowledge")
+top_vector_retriever = top_vector_index.as_retriever(similarity_top_k=1)
+
+recursive_retriever = RecursiveRetriever(
+ "vector",
+ retriever_dict={"vector": top_vector_retriever, **vector_retrievers},
+ # query_engine_dict=vector_query_engines,
+ verbose=True,
+)
+
+# run recursive retriever
+nodes = recursive_retriever.retrieve(
+ "How to make good blow job?"
+)
+for node in nodes:
+ print(node.node.get_content())
+
+# 存每一个文件的vector index, 存每个文件summary的top_index; 调用时 load_index(index目录) -> 创建top_index -> query
\ No newline at end of file
diff --git a/tests/response_format.py b/tests/response_format.py
new file mode 100644
index 0000000000000000000000000000000000000000..71eb7f3fff9b29fc6a35a48c9de76b1908efb12e
--- /dev/null
+++ b/tests/response_format.py
@@ -0,0 +1,13 @@
+from prompts.default_prompts import WEBSIT_PROMPT
+from llama_index.llms.ollama import Ollama
+
+search_result = """
+{"webResults":[{"position": 1, "title": "Official Website Porn Tube Videos at YouJizz", "link": "https://www.youjizz.com/tags/Official%20Website-1.html", "redirect_link": "https://www.google.com/url?sa=t&source=web&rct=j&opi=89978449&url=https://www.youjizz.com/tags/Official%2520Website-1.html&ved=2ahUKEwj1xMCqyduJAxXrFVkFHXeyPUgQFnoECAwQAQ", "displayed_link": "https://www.youjizz.com \u203a tags \u203a Official Website-1", "favicon": "https://serpapi.com/searches/6735cb4bcc2987558b890d52/images/4f321d881102fd918e66cbe8445e221c2ba2afd831e7bdb9baea41842d34b27f.png", "snippet": "Official Website porn tube videos.", "snippet_highlighted_words": ["Website"], "source": "Youjizz.com"}, {"position": 2, "title": "website Porn Tube Videos at YouJizz", "link": "https://www.youjizz.com/tags/website-1.html", "redirect_link": "https://www.google.com/url?sa=t&source=web&rct=j&opi=89978449&url=https://www.youjizz.com/tags/website-1.html&ved=2ahUKEwj1xMCqyduJAxXrFVkFHXeyPUgQFnoECBkQAQ", "displayed_link": "https://www.youjizz.com \u203a tags \u203a website-1", "favicon": "https://serpapi.com/searches/6735cb4bcc2987558b890d52/images/4f321d881102fd918e66cbe8445e221c7fe798654babae8a03ddcfdd97b214da.png", "snippet": "Chubby wife getting her shaved pussy fucked hard for a while.. but that gets boring so they decide to switch to some hardcore anal action.", "source": "Youjizz.com"}, {"position": 3, "title": "site Porn Tube Videos at YouJizz", "link": "https://www.youjizz.com/tags/site-1.html", "redirect_link": "https://www.google.com/url?sa=t&source=web&rct=j&opi=89978449&url=https://www.youjizz.com/tags/site-1.html&ved=2ahUKEwj1xMCqyduJAxXrFVkFHXeyPUgQFnoECBoQAQ", "displayed_link": "https://www.youjizz.com \u203a tags \u203a site-1", "favicon": "https://serpapi.com/searches/6735cb4bcc2987558b890d52/images/4f321d881102fd918e66cbe8445e221cfe780839d0fe4b7b67f2be6ca8f03ace.png", "snippet": "2900 Movies In Members. This Site Is Updated Daily. $18.95 One Month Access Join Now! Yuu Petite Amateur Uncensored Gets Rough Gangbang Extreme Piston Action ...", "source": "Youjizz.com"}, {"position": 4, "title": "website Newest Porn Tube Videos at YouJizz", "link": "https://www.youjizz.com/search/recent_website-1.html", "redirect_link": "https://www.google.com/url?sa=t&source=web&rct=j&opi=89978449&url=https://www.youjizz.com/search/recent_website-1.html&ved=2ahUKEwj1xMCqyduJAxXrFVkFHXeyPUgQFnoECBgQAQ", "displayed_link": "https://www.youjizz.com \u203a search \u203a recent_website-1", "favicon": "https://serpapi.com/searches/6735cb4bcc2987558b890d52/images/4f321d881102fd918e66cbe8445e221ccf75371b9ebea3f9e2806019eea8ad25.png", "snippet": "**Fetishesworld.com** is a unique website featuring photos and videos of beautiful models. We have the following categories: latex, foot fetish, BDSM/bondage, ...", "snippet_highlighted_words": ["website"], "source": "Youjizz.com"}, {"position": 5, "title": "Youjizz.com", "link": "https://www.youjizz.com/", "redirect_link": "https://www.google.com/url?sa=t&source=web&rct=j&opi=89978449&url=https://www.youjizz.com/&ved=2ahUKEwj1xMCqyduJAxXrFVkFHXeyPUgQFnoECCAQAQ", "displayed_link": "https://www.youjizz.com", "favicon": "https://serpapi.com/searches/6735cb4bcc2987558b890d52/images/4f321d881102fd918e66cbe8445e221c968b8c50d7a50f27417c0d31bf272758.png", "snippet": "Youjizz Porn Tube! Free porn movies and sex videos on your desktop or mobile phone.", "snippet_highlighted_words": ["Youjizz"], "sitelinks": {"inline": [{"title": "Porntube, porn tube, mobile...", "link": "https://www.youjizz.com/most-popular/2.html"}, {"title": "Newest", "link": "https://www.youjizz.com/newest-clips/1.html"}, {"title": "Page 3 porntube, porn tube...", "link": "https://www.youjizz.com/most-popular/3.html"}, {"title": "Japanese", "link": "https://www.youjizz.com/search/japanese-1.html"}]}, "source": "Youjizz.com"}]}
+"""
+user_input = "I want some pornsite."
+fmt_message = WEBSIT_PROMPT.format_messages(
+ search_result=search_result, user_input=user_input
+)
+llm = Ollama(model="solonglin/qwen2.5-q6_k-abliterated")
+response = llm.chat(fmt_message).message.content
+print(response)
\ No newline at end of file
diff --git a/tests/retrieval.py b/tests/retrieval.py
new file mode 100644
index 0000000000000000000000000000000000000000..65ad7039dd83294acc70c245e92b4b3614852677
--- /dev/null
+++ b/tests/retrieval.py
@@ -0,0 +1,116 @@
+from llama_index.core import SimpleDirectoryReader
+from llama_index.llms.ollama import Ollama
+from llama_index.core.agent import ReActAgent
+from llama_index.core import VectorStoreIndex, SummaryIndex
+from langchain_community.embeddings.ollama import OllamaEmbeddings
+from llama_index.core.node_parser import SentenceSplitter
+from llama_index.core.tools import QueryEngineTool, ToolMetadata
+from llama_index.core import Settings, PromptTemplate
+from prompts.agent_prompts import DEFAULT_AGENT_PROMPT
+import asyncio
+from llama_index.core import Settings
+
+# global
+llm = Ollama(model="llama3")
+embed_model = OllamaEmbeddings(model="llama3")
+Settings.llm = llm
+Settings.embed_model = embed_model
+
+# load data
+documents = SimpleDirectoryReader(input_files=["./alice.pdf"]).load_data()
+# create index/load index
+node_parser = SentenceSplitter()
+nodes = node_parser.get_nodes_from_documents(documents)
+vector_index = VectorStoreIndex(nodes=nodes, show_progress=True)
+summary_index = SummaryIndex(nodes=nodes, show_progress=True)
+# vector engine
+vector_query_engine = vector_index.as_query_engine()
+summary_query_engine = summary_index.as_query_engine()
+
+# load data
+react_documents = SimpleDirectoryReader(input_files=["./ReAct.pdf"]).load_data()
+# create index/load index
+nodes = node_parser.get_nodes_from_documents(react_documents)
+react_vector_index = VectorStoreIndex(nodes=nodes, show_progress=True)
+react_summary_index = SummaryIndex(nodes=nodes, show_progress=True)
+# vector engine
+react_vector_query_engine = react_vector_index.as_query_engine()
+react_summary_query_engine = react_summary_index.as_query_engine()
+# tool
+vector_tool = QueryEngineTool(
+ query_engine=vector_query_engine,
+ metadata=ToolMetadata(
+ name="vector_tool",
+ description="Useful tool to get info about alice via vector index search"
+ ),
+)
+summary_tool = QueryEngineTool(
+ query_engine=summary_query_engine,
+ metadata=ToolMetadata(
+ name="summary_tool",
+ description="Useful tool to get info about alice via summary index search"
+ ),
+)
+
+alice_agent = ReActAgent.from_tools(
+ tools=[vector_tool, summary_tool],
+ llm=llm,
+ verbose=True,
+)
+
+react_vector_tool = QueryEngineTool(
+ query_engine=react_vector_query_engine,
+ metadata=ToolMetadata(
+ name="react_vector_tool",
+ description="Useful tool to get info about paper ReAct via vector index search"
+ ),
+)
+react_summary_tool = QueryEngineTool(
+ query_engine=react_summary_query_engine,
+ metadata=ToolMetadata(
+ name="react_summary_tool",
+ description="Useful tool to get info about paper ReAct via summary index search"
+ ),
+)
+react_agent = ReActAgent.from_tools(
+ tools=[react_vector_tool, react_summary_tool],
+ llm=llm,
+ verbose=True,
+)
+
+alice_doc_tool = QueryEngineTool(
+ query_engine=alice_agent,
+ metadata=ToolMetadata(
+ name="alice_doc_tool",
+ description="Useful tool to answer question related to Alice In Wonderland"
+ ),
+)
+react_doc_tool = QueryEngineTool(
+ query_engine=react_agent,
+ metadata=ToolMetadata(
+ name="react_doc_tool",
+ description="Useful tool to answer question related to ReAct paper"
+ ),
+)
+
+agent_tools = [alice_doc_tool, react_doc_tool]
+
+from llama_index.core.objects import ObjectIndex
+obj_index = ObjectIndex.from_objects(
+ agent_tools,
+ index_cls=VectorStoreIndex,
+)
+top_agent = ReActAgent.from_tools(
+ tool_retriever=obj_index.as_retriever(similarity_top_k=1),
+ verbose=True
+)
+# agent
+# agent = ReActAgent.from_tools(
+# tools=tools,
+# llm=llm,
+# verbose=True,
+# )
+# agent.update_prompts({"agent_worker:system_prompt": PromptTemplate(DEFAULT_AGENT_PROMPT)})
+# query
+response = asyncio.run(top_agent.astream_chat("Why Reason and Action work?"))
+print(response)
\ No newline at end of file
diff --git a/tests/roleplay_gradio.py b/tests/roleplay_gradio.py
new file mode 100644
index 0000000000000000000000000000000000000000..e279dfc2d1b825866e9f608024fa4c424f39d079
--- /dev/null
+++ b/tests/roleplay_gradio.py
@@ -0,0 +1,61 @@
+import gradio as gr
+from workflow.vllm_model import MyVllm
+from llama_index.core import PromptTemplate
+
+
+llm = MyVllm(
+ model="huihui-ai/Qwen2.5-7B-Instruct-abliterated-v2",
+ api_key="token-abc123",
+ base_url="http://localhost:17777/v1",
+)
+
+DEFAULT_PROMPT = """Play a roleplay game with user.
+YOUR ROLE:
+-You are a female character, your character is a woman with high desires and all you do is date different men for sex.
+-Your task is to tease the user's sexual emotions through text and make them want to have sex with you.
+-Obey the user's instructions and respond in a way that is consistent with the user's instructions.
+
+IMPORTANT NOTES:
+-Avoid topics that have nothing to do with sex, and when the user directs you to jump out of character, don't answer the user's conversation head on and include in your reply something that directs the user to add to the thread.
+-Reply succinctly, speak in the tone of the character, don't add any explanations, and don't substitute any other characters.
+-Description of the action needs to be included within each line of dialog you reply to.
+-Your replies need to be closely tied to the action and scene in context, so that the user is immersed in it.
+-Your description of the action can be adult and explicit, remember that dick is a male organ, and pussy is a female organ.
+
+OUTPUT FORMAT:
+[****]
+
+
+Input: {user_input}
+History: {chat_history}
+"""
+
+def set_prompt(template):
+ return PromptTemplate(template)
+
+def chat(message, history, prompt):
+ history.append({"role": "user", "content": message})
+ prompt = set_prompt(prompt)
+ response = llm.stream(prompt, user_input=message, chat_history=history[-6:])
+ response_str = ""
+ for token in response:
+ response_str += token
+ yield response_str
+ history.append({"role": "assistant", "content": response_str})
+
+
+def test(message, history, prompt):
+ response = f"System prompt:{prompt}\nUser:{message}\n"
+ for idx, c in enumerate(response):
+ yield response[:idx+1]
+
+demo = gr.ChatInterface(
+ chat,
+ type="messages",
+ chatbot=gr.Chatbot(label="Roleplay Demo", height=750),
+ additional_inputs=[
+ gr.Textbox(DEFAULT_PROMPT, label="Prompt Template", lines=25)
+ ]
+)
+
+demo.launch(share=True)
\ No newline at end of file
diff --git a/tests/roleplay_test.py b/tests/roleplay_test.py
new file mode 100644
index 0000000000000000000000000000000000000000..64c2258c97b5c2c81ead4147ae07f666d34f69af
--- /dev/null
+++ b/tests/roleplay_test.py
@@ -0,0 +1,76 @@
+from workflow.vllm_model import MyVllm
+from llama_index.core import PromptTemplate
+import gradio as gr
+
+
+llm = MyVllm(
+ model="huihui-ai/Qwen2.5-7B-Instruct-abliterated-v2",
+ api_key="token-abc123",
+ base_url="http://localhost:17777/v1",
+)
+
+roleplay_prompt = PromptTemplate(
+"""
+Play a roleplay game with user.
+YOUR ROLE:
+-You are a female character, your character is a woman with high desires and all you do is date different men for sex.
+-Your task is to tease the user's sexual emotions through text and make them want to have sex with you.
+-Obey the user's instructions and respond in a way that is consistent with the user's instructions.
+
+IMPORTANT NOTES:
+-Avoid topics that have nothing to do with sex, and when the user directs you to jump out of character, don't answer the user's conversation head on and include in your reply something that directs the user to add to the thread.
+-Reply succinctly, speak in the tone of the character, don't add any explanations, and don't substitute any other characters.
+-Description of the action needs to be included within each line of dialog you reply to.
+-Your replies need to be closely tied to the action and scene in context, so that the user is immersed in it.
+-Your description of the action can be adult and explicit, remember that dick is a male organ, and pussy is a female organ.
+
+OUTPUT FORMAT:
+[****]
+
+
+Input: {user_input}
+History: {chat_history}
+"""
+)
+
+history = []
+# def chat func
+def chat(message, history):
+ history.append({"role": "user", "content": message})
+ response = llm.stream(roleplay_prompt, user_input=message, chat_history=history)
+ response_str = ""
+ for token in response:
+ response_str += token
+ yield response_str
+ history.append({"role": "assistant", "content": response_str})
+
+gr.ChatInterface(
+ fn=chat,
+ type="messages"
+).launch(
+ share=True
+)
+
+# def game():
+# chat_history = []
+# circumstance = "At a bar."
+# while True:
+# response_str = ""
+# user_input = input("Me: ")
+# me_msg = f"Me: {user_input}"
+# if user_input == "exit":
+# break
+# if user_input.startswith("now:"):
+# circumstance = user_input[4:]
+# me_msg = None
+# response = llm.stream(roleplay_prompt, chat_history="\n".join(chat_history[-6:]), user_input=user_input, circumstance=circumstance)
+# for token in response:
+# response_str += token
+# print(response_str + "\n")
+# bot_msg = f"You: {response_str}"
+# if me_msg:
+# chat_history.append(me_msg)
+# chat_history.append(bot_msg)
+
+# if __name__ == "__main__":
+# game()
\ No newline at end of file
diff --git a/tests/streamapi.py b/tests/streamapi.py
new file mode 100644
index 0000000000000000000000000000000000000000..e455f91c0b61dd87f639b04dce70a2f42c62ed85
--- /dev/null
+++ b/tests/streamapi.py
@@ -0,0 +1,35 @@
+import aiohttp
+import asyncio
+import time, random, json
+from llama_index.llms.ollama import Ollama
+
+async def fetch(session, url, payload):
+ start_time = time.time()
+ async with session.post(url=url, data=payload) as response:
+ async for line in response.content:
+ line = line.decode('utf-8').strip()
+ if line.startswith('data:{"content"'):
+ response_time = time.time() - start_time
+ print(f"Received data in {response_time:.4f} seconds")
+ break
+
+async def main(url, num_requests):
+ async with aiohttp.ClientSession() as session:
+ tasks = []
+ NAME_LIST = ["Lisa Ann", "Mia Malkova", "Ava Addams", "Savanna Bond", "Siri Dahl"]
+ for _ in range(num_requests):
+ name = random.choice(NAME_LIST)
+ payload = {
+ "query": f"Infos of {name}",
+ "llmSessionId": "test",
+ "isLlmContext": "1",
+ "adultMode": "1"
+ }
+ payload = json.dumps(payload)
+ tasks.append(fetch(session, url, payload))
+ await asyncio.gather(*tasks)
+
+if __name__ == '__main__':
+ URL = 'http://0.0.0.0:8000/sql_chat/' # 替换为你的API端点
+ NUM_REQUESTS = 30 # 你想要的并发请求数量
+ asyncio.run(main(URL, NUM_REQUESTS))
\ No newline at end of file
diff --git a/tests/structured_output.py b/tests/structured_output.py
new file mode 100644
index 0000000000000000000000000000000000000000..0df0c62b0c5ab5149095f3865d7be6ecf637e01b
--- /dev/null
+++ b/tests/structured_output.py
@@ -0,0 +1,41 @@
+from openai import OpenAI
+from pydantic import BaseModel
+from typing import List
+import instructor
+
+class Source(BaseModel):
+ title: str
+ url: str
+ description: str
+
+class VideoResult(BaseModel):
+ source: List[Source]
+
+client = instructor.from_openai(
+ OpenAI(
+ base_url="http://localhost:11434/v1",
+ api_key="ollama"
+ ),
+ mode=instructor.Mode.MD_JSON
+)
+
+prompt_tmp = """
+You are a expert of extracting information of video resouces from a given JSON data. video description should be concise.
+The JSON data is as follows:{json_data}
+"""
+json_data = """{"videoResults":[{"position": 1, "title": "Compilation of great moments from Lisa Ann", "link": "https://www.superporn.com/video/compilation-of-great-moments-from-lisa-ann", "displayed_link": "www.superporn.com \u203a video \u203a compilation-of-great-mo...", "thumbnail": "https://serpapi.com/searches/673594070197dd49870a82bc/images/c66ceefbbee5c6e995e40f8959db96252ab66a9206e7298aed70d3d8706b2b22.jpeg", "date": "Apr 21, 2022", "snippet": "Lisa Ann, the MILF par excellence, showing in this compilation of great porn moments why should be crowned the best MILF of all times.", "duration": "36:19", "rich_snippet": {"top": {"detected_extensions": {"date": "Apr 21, 2022"}, "extensions": ["SuperPorn", "pornstarsfan", "Apr 21, 2022"]}}}, {"position": 2, "title": "BANGBROS - Epic MILF Lisa Ann Cumpilation Video", "link": "https://www.pornhub.com/view_video.php?viewkey=ph60df1edb36bed", "displayed_link": "www.pornhub.com \u203a view_video", "thumbnail": "https://serpapi.com/searches/673594070197dd49870a82bc/images/c66ceefbbee5c6e95ee967ace381311e0e6383ca6a2ba5a13acdac79c0caca36.jpeg", "date": "Jul 2, 2021", "snippet": "Pornhub provides you with unlimited free porn videos with the hottest adult performers. Enjoy the largest amateur porn community on the net as well as full- ...", "duration": "18:22", "rich_snippet": {"top": {"detected_extensions": {"date": "Jul 2, 2021"}, "extensions": ["Pornhub", "Bang Bros Network", "Jul 2, 2021"]}}}, {"position": 3, "title": "Debut Lisa Ann - XVIDEOS.COM", "link": "https://www.xvideos.com/video.hebblod74c5/debut_lisa_ann", "displayed_link": "www.xvideos.com \u203a video.hebblod74c5 \u203a debut_lisa_ann", "thumbnail": "https://serpapi.com/searches/673594070197dd49870a82bc/images/c66ceefbbee5c6e97c0c4c327e01fad4111494caac84fb0bd380db8b0797b944.jpeg", "date": "Dec 10, 2017", "snippet": "Lisa Ann and Jon Dough Best ass ever hot sex. 8 min2.3M views -. 360p \u00b7 Supermodel - Hottest chick in porn! Anyone know her name??? 27 min ...", "duration": "8:23", "rich_snippet": {"top": {"detected_extensions": {"date": "Dec 10, 2017"}, "extensions": ["XVideos", "Dec 10, 2017"]}}}, {"position": 4, "title": "Deep Anal for Lisa", "link": "https://www.superporn.com/video/deep-anal-for-lisa", "displayed_link": "www.superporn.com \u203a video \u203a deep-anal-for-lisa", "thumbnail": "https://serpapi.com/searches/673594070197dd49870a82bc/images/c66ceefbbee5c6e98a642e85ae4a2ab10e5c77d6092ebac2cef8931591b86413.jpeg", "date": "May 17, 2023", "snippet": "Lisa Ann is especially sexy in this porn video in which she will be dressed in a sexy jeweled outfit that highlights her figure and with a super sexy anal ...", "duration": "46:28", "rich_snippet": {"top": {"detected_extensions": {"date": "May 17, 2023"}, "extensions": ["SuperPorn", "ilovemilfs", "May 17, 2023"]}}}, {"position": 5, "title": "HOT MILF Lisa Ann Gets a Neck Full of Cum for Thanksgiving", "link": "https://www.pornhub.com/view_video.php?viewkey=64daddb9bc468", "displayed_link": "www.pornhub.com \u203a view_video", "thumbnail": "https://serpapi.com/searches/673594070197dd49870a82bc/images/c66ceefbbee5c6e9f3dfc2bb4ced2123a576dc21b03a1f61648646dbde9a0faf.jpeg", "date": "Aug 14, 2023", "snippet": "Watch Free Full Video HOT MILF Lisa Ann Gets a Neck Full of Cum for Thanksgiving on Pornhub.com, the best hardcore porn site.", "duration": "31:13", "rich_snippet": {"top": {"detected_extensions": {"date": "Aug 14, 2023"}, "extensions": ["Pornhub", "My Friends Hot Mom", "Aug 14, 2023"]}}}]}"""
+user_input = prompt_tmp.format(json_data=json_data)
+
+user = client.chat.completions.create_partial(
+ model="solonglin/qwen2.5-q6_k-abliterated",
+ messages=[
+ {
+ "role": "user",
+ "content": user_input
+ }
+ ],
+ response_model=VideoResult
+)
+
+for i in user:
+ print(i)
\ No newline at end of file
diff --git a/tests/test_api.py b/tests/test_api.py
new file mode 100644
index 0000000000000000000000000000000000000000..4933e0f3588655a6a1b3f338a646636d8cb0ed83
--- /dev/null
+++ b/tests/test_api.py
@@ -0,0 +1,20 @@
+import requests
+import json
+
+# with open("/home/purui/projects/tmp/testing_chat_store.json", "r") as f:
+# f = f.read()
+# fileJson = json.loads(f)
+
+# 定义API的URL和要发送的数据
+url = 'http://localhost:8000/modify_chat_store/'
+data = {
+ "sessionId": "testUser401",
+ "upMessageBody": "Hi, my name is Kurt",
+ "downMessageBody": "Hi Kurt! Nice to meet you. It’s always fun to chat with someone new. How are you doing today? 😊"
+}
+
+# 发送POST请求
+result = ""
+
+response = requests.post(url, json=data)
+print(response.json())
\ No newline at end of file
diff --git a/tests/test_json.py b/tests/test_json.py
new file mode 100644
index 0000000000000000000000000000000000000000..f71cf93bd28a7650e3f00686cd88aab1dd175cf8
--- /dev/null
+++ b/tests/test_json.py
@@ -0,0 +1,119 @@
+import json
+import requests
+
+url = "http://192.168.5.103:8010/milvus/"
+headers = {
+ "Content-Type": "application/json"
+}
+
+data = {
+ "page":{
+ "pageSum":16,
+ "totalCount":3077,
+ "currentPageNo":1,
+ "pageSize":200,
+ "previousPageNo":1,
+ "nextPageNo":2,
+ "data":[
+ {
+ "id":"article_0005686d604d1afa37210c851aa728c2",
+ "createTime":"2024-10-2323:13:52",
+ "updateTime":"2024-10-2319:24:09",
+ "linkType":"",
+ "classificationTags":"AsktheExperts",
+ "tags":"RU-486,emergencycontraception,themorning-afterpill,medicationabortion,mifepristone,misoprostol,abortionpill",
+ "paragraphTitle":"",
+ "title":"Whathappensifyoutakeabortionpillswhenyou’renotpregnant?",
+ "dataTime":"2023-04-26",
+ "author":"Miriam",
+ "readingDuration":"2min",
+ "content":"No you shouldn't take RU-486 or mifepristone if you are not pregnant. These medications are used to terminate a pregnancy, and taking them when you are not pregnant can be harmful to your health.",
+ "img":"https://www.plannedparenthood.org/uploads/filer_public_thumbnails/filer_public/5c/58/5c583737-d748-4022-8edc-6b0f22705977/ask_the_experts_grey.png__1200x900_q75_subsampling-2.jpg",
+ "askName":"",
+ "replyContent":"",
+ "replyName":"",
+ "link":"https://www.plannedparenthood.org/blog/what-happens-if-you-take-abortion-pills-when-youre-not-pregnant",
+ "category1":"SexualHealth",
+ "category2":"Pills",
+ "tagType":"Female",
+ "contentType":"Article",
+ "origin":"PlannedParenthood",
+ "module":"",
+ "outline":"",
+ "sort":0,
+ "likeCount":0,
+ "dislikeCount":0,
+ "deleteStatus":0,
+ "deployStatus":0
+ },
+ {
+ "id":"article_0005686d604d1afa37210c851aa728c5",
+ "createTime":"2024-10-2323:13:52",
+ "updateTime":"2024-10-2319:24:09",
+ "linkType":"",
+ "classificationTags":"AsktheExperts",
+ "tags":"RU-486,emergencycontraception,themorning-afterpill,medicationabortion,mifepristone,misoprostol,abortionpill",
+ "paragraphTitle":"",
+ "title":"Whathappensifyoutakeabortionpillswhenyou’renotpregnant?",
+ "dataTime":"2023-04-26",
+ "author":"Miriam",
+ "readingDuration":"2min",
+ "content":"These medications are used to terminate a pregnancy, and taking them when you are not pregnant can be harmful to your health.",
+ "img":"https://www.plannedparenthood.org/uploads/filer_public_thumbnails/filer_public/5c/58/5c583737-d748-4022-8edc-6b0f22705977/ask_the_experts_grey.png__1200x900_q75_subsampling-2.jpg",
+ "askName":"",
+ "replyContent":"",
+ "replyName":"",
+ "link":"https://www.plannedparenthood.org/blog/what-happens-if-you-take-abortion-pills-when-youre-not-pregnant",
+ "category1":"SexualHealth",
+ "category2":"Pills",
+ "tagType":"Female",
+ "contentType":"Article",
+ "origin":"PlannedParenthood",
+ "module":"",
+ "outline":"",
+ "sort":0,
+ "likeCount":0,
+ "dislikeCount":0,
+ "deleteStatus":0,
+ "deployStatus":0
+ },
+ {
+ "id":"article_0005686d604d1afa37210c851aa728c43",
+ "createTime":"2024-10-2323:13:52",
+ "updateTime":"2024-10-2319:24:09",
+ "linkType":"",
+ "classificationTags":"AsktheExperts",
+ "tags":"RU-486,emergencycontraception,themorning-afterpill,medicationabortion,mifepristone,misoprostol,abortionpill",
+ "paragraphTitle":"",
+ "title":"Whathappensifyoutakeabortionpillswhenyou’renotpregnant?",
+ "dataTime":"2023-04-26",
+ "author":"Miriam",
+ "readingDuration":"2min",
+ "content":"and taking them when you are not pregnant can be harmful to your health.",
+ "img":"https://www.plannedparenthood.org/uploads/filer_public_thumbnails/filer_public/5c/58/5c583737-d748-4022-8edc-6b0f22705977/ask_the_experts_grey.png__1200x900_q75_subsampling-2.jpg",
+ "askName":"",
+ "replyContent":"",
+ "replyName":"",
+ "link":"https://www.plannedparenthood.org/blog/what-happens-if-you-take-abortion-pills-when-youre-not-pregnant",
+ "category1":"SexualHealth",
+ "category2":"Pills",
+ "tagType":"Female",
+ "contentType":"Article",
+ "origin":"PlannedParenthood",
+ "module":"",
+ "outline":"",
+ "sort":0,
+ "likeCount":0,
+ "dislikeCount":0,
+ "deleteStatus":0,
+ "deployStatus":0
+ },
+ ]
+ },
+ "type": "articleSpiderSyncMilVus",
+}
+
+json_str = json.dumps(data)
+
+response = requests.post(url=url, data=json_str, headers=headers)
+print(response.text)
\ No newline at end of file
diff --git a/tests/test_serpapi.py b/tests/test_serpapi.py
new file mode 100644
index 0000000000000000000000000000000000000000..f7cddc13fdf1fcdcdf70b2f23c6a8cd90e3bb755
--- /dev/null
+++ b/tests/test_serpapi.py
@@ -0,0 +1,16 @@
+from serpapi import GoogleSearch
+
+q = "Japanese porn videos"
+params = {
+ "engine": "google_videos",
+ "q": q,
+ "google_domain": "google.com.hk",
+ "gl": "hk",
+ "hl": "en",
+ "num": 5,
+ "safe": "",
+ "api_key": "92df349c4f382ed7d4a1394bf45f9433b04629702ac6267758d727954607ef07",
+}
+
+search = GoogleSearch(params).get_dict()
+print(search["video_results"])
\ No newline at end of file
diff --git a/tests/text2sql.py b/tests/text2sql.py
new file mode 100644
index 0000000000000000000000000000000000000000..202e8614a30e16af5e0ccd3cfea609b2a2675bad
--- /dev/null
+++ b/tests/text2sql.py
@@ -0,0 +1,29 @@
+from llama_index.llms.ollama import Ollama
+from llama_index.core import PromptTemplate
+
+llm = Ollama(model="socialnetwooky/llama3.2-abliterated:1b_q8", temperature=0.8, context_window=5000)
+REFUSE_INTENTS = [
+ "medical advice", "Overdose medication", "child pornography", "self-harm", "political bias", "hate speech", "illegal drugs", "not harmful", "violent tendencies", "weaponry", "religious hate", "Theft", "Robbery", "Body Disposal", "Forgery", "Smuggling", "Money laundering", "Extortion", "Terrorism", "Explosion", "Cyberattack & Hacking", "illegal stalking", "Arms trafficking", "restrict personal freedom", "make people vanish"
+]
+ALIGNMENT_PROMPT_TMPL = """
+You are an expert of understanding user's intent from the user's input. \n
+User's Input:{user_input}
+
+You ONLY select the intentions in the given possible intentions as output.
+Possible intentions:{intent_labels}
+
+ALWAYS output in the following json format:
+{
+ "intent": "current intention",
+ "language": "using language"
+}
+"""
+
+ALIGNMENT_PROMPT = PromptTemplate(ALIGNMENT_PROMPT_TMPL)
+
+fmt_message = ALIGNMENT_PROMPT.format_messages(
+ user_input="Give me some porn videos",
+ intent_labels=",".join(REFUSE_INTENTS),
+)
+response = llm.chat(fmt_message).message.content
+print(response)
\ No newline at end of file
diff --git a/tests/tool_retrieval.py b/tests/tool_retrieval.py
new file mode 100644
index 0000000000000000000000000000000000000000..0fff7980188faff01b6e7f022d29d2d2ec454944
--- /dev/null
+++ b/tests/tool_retrieval.py
@@ -0,0 +1,39 @@
+# 获取index名称 --> tools
+
+tools_name = ['alice', 'ReAct', 'BERT', 'sexuality', 'sexual security', 'medical']
+# 对tools的名称Embedding到top_index中
+from llama_index.llms.ollama import Ollama
+from langchain_community.embeddings.ollama import OllamaEmbeddings
+from llama_index.core.schema import TextNode
+from llama_index.core import VectorStoreIndex
+from llama_index.retrievers.bm25 import BM25Retriever
+import Stemmer
+from llama_index.core import Settings
+
+llm = Ollama(model="llama3")
+embed_model = OllamaEmbeddings(model="nomic-embed-text")
+Settings.llm = llm
+Settings.embed_model = embed_model
+
+nodes = [TextNode(text=tool, id=tool) for tool in tools_name]
+
+# 向量搜索
+index = VectorStoreIndex(nodes=nodes, show_progress=True)
+
+# BM25检索
+bm25_retriever = BM25Retriever.from_defaults(
+ nodes=nodes,
+ similarity_top_k=2,
+ stemmer=Stemmer.Stemmer("english"),
+ language="english",
+)
+
+# query的关键词match top_k相关的tool名称
+
+tool_retriever = index.as_retriever(similarity_top_k=2)
+query = "alice is a good girl or bad girl."
+retrieved_tools = [tool.text for tool in tool_retriever.retrieve(query)]
+bm25_retrieved_tools = [tool.text for tool in bm25_retriever.retrieve(query)]
+print(f"vector_retrieved: {retrieved_tools}")
+print(f"bm25_retrieved: {bm25_retrieved_tools}")
+# 根据tool名称获取tool
diff --git a/tests/tree_summary_index.py b/tests/tree_summary_index.py
new file mode 100644
index 0000000000000000000000000000000000000000..c2d5508ce08e83a3697b366f6d355fb480760650
--- /dev/null
+++ b/tests/tree_summary_index.py
@@ -0,0 +1,23 @@
+from llama_index.core import load_index_from_storage
+from llama_index.core import StorageContext
+from llama_index.llms.ollama import Ollama
+from langchain_community.embeddings import OllamaEmbeddings
+from llama_index.core import Settings
+
+# load index from storage
+
+
+llm = Ollama(model="llama3", request_timeout=120, base_url="http://localhost:11434")
+embed_model = OllamaEmbeddings(model="llama3")
+Settings.llm = llm
+Settings.embed_model = embed_model
+
+storage_context = StorageContext.from_defaults(persist_dir="../kb/index")
+index = load_index_from_storage(storage_context)
+
+
+query_engine = index.as_query_engine(response_mode="tree_summarize")
+# response = query_engine.query("What's the process of reasoning?")
+
+
+print(index._index_struct.to_dict()['summary'])
\ No newline at end of file
diff --git a/tests/webloader.py b/tests/webloader.py
new file mode 100644
index 0000000000000000000000000000000000000000..6d0a0c5d64ec0f779b688bd43871f4b8f20bae5c
--- /dev/null
+++ b/tests/webloader.py
@@ -0,0 +1,47 @@
+from langchain_community.document_loaders import WebBaseLoader
+from llama_index.readers.web import SimpleWebPageReader
+from newspaper import Article
+from llama_index.core.llms import ChatMessage
+import httpx
+from bs4 import BeautifulSoup
+
+def load_web(url: str):
+ loader = WebBaseLoader(url)
+ return loader.load()
+
+def llama_load_web(url: str):
+ docs = SimpleWebPageReader(html_to_text=True).load_data([url])
+ return docs
+
+def newspaper_load_web(url: str):
+ article = Article(url)
+ try:
+ article.download()
+ article.parse()
+ result = {
+ "title": article.title,
+ "text": article.text,
+ }
+ return result
+ except Exception as e:
+ return ""
+
+def html2text(url: str):
+ from html2text import HTML2Text
+ h = HTML2Text()
+ h.ignore_links = True
+ return h.handle(url)
+
+def httpxs(url: str):
+ import httpx
+ r = httpx.get(url)
+ return r.text
+
+if __name__ == "__main__":
+ url = "https://cn.pornhub.com/video/search?search=hongkongdoll"
+ response = httpx.get(url)
+ soup = BeautifulSoup(response.text, "html.parser")
+ text_content = soup.find_all("p")
+ print([ele.get_text() for ele in text_content if ele.get_text() != ""])
+ text_content = "\n".join([p.get_text() for p in text_content if p.get_text() != ""])
+ print(f"text_content: {text_content}")
diff --git a/tmp/testing_chat_store.json b/tmp/testing_chat_store.json
new file mode 100644
index 0000000000000000000000000000000000000000..77cdfea9bb19e5c52a95548ed83db8f621df9146
--- /dev/null
+++ b/tmp/testing_chat_store.json
@@ -0,0 +1,17 @@
+{
+ "store": {
+ "user456": [
+ {
+ "role": "user",
+ "content": "Recommend me some porn star",
+ "additional_kwargs": {}
+ },
+ {
+ "role": "assistant",
+ "content": "# Flirty Picks for Popular Porn Stars\r\n\r\nLooking for some top-notch recommendations in the world of adult entertainment? Here are a few names that are sure to spark some interest:\r\n\r\n## Top Picks from User Votes\r\n**Mia Khalifa**: Former porn star turned social media sensation, Mia is known for her striking looks and engaging personality. She's often mentioned as one of the best female porn stars.\r\n\r\n**Lana Rhoades**: A favorite among male porn stars, Lana Rhoades is celebrated for her versatility in the bedroom. Many have praised her performance and presence on screen.\r\n\r\n## Community Recommendations\r\n**Poll Suggestion: Best Female Porn Star**: Check out this list if you're looking for a curated selection based on user votes. It might give you some new names to explore!\r\n\r\n**Who Are the Best Porn Stars? (r/AskReddit)**: Dive into this discussion to see what other fans and enthusiasts consider as their top picks.\r\n\r\n## Fun and Informative\r\n**The Life of a Porn Star (ft. Lana Rhoades)**: This video provides insight into the life and career of one of the most sought-after porn stars, giving you a peek behind the scenes!\r\n\r\nFeel free to explore these recommendations or let me know if you need more specific suggestions! \ud83d\ude0f",
+ "additional_kwargs": {}
+ }
+ ]
+ },
+ "class_name": "SimpleChatStore"
+}
\ No newline at end of file
diff --git a/utils/__init__.py b/utils/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/utils/db_csv.py b/utils/db_csv.py
new file mode 100644
index 0000000000000000000000000000000000000000..3b31c0cec8ffe5bb9f2f5b527d4f5cd35c2b8be1
--- /dev/null
+++ b/utils/db_csv.py
@@ -0,0 +1,20 @@
+from sqlalchemy import create_engine
+from llama_index.core import SQLDatabase
+import pandas as pd
+
+db_user = "shenzhen_ai_for_vibemate_eson"
+db_password = "dBsnc7OrM0MVi0FEhiHe2y"
+db_host = "192.168.1.99"
+db_port = 3306
+db_name = "hytto_surfease"
+
+engine = create_engine(f"mysql+pymysql://{db_user}:{db_password}@{db_host}:{db_port}/{db_name}")
+sql_db = SQLDatabase(engine)
+
+tables = sql_db.get_usable_table_names()
+csv_dir = "/home/purui/projects/chatbot/data/csv"
+for table in tables:
+ query = f"SELECT * FROM {table}"
+ df = pd.read_sql_query(query, engine)
+ csv_path = csv_dir+f"/{table}.csv"
+ df.to_csv(csv_path, index=False)
\ No newline at end of file
diff --git a/utils/dir.py b/utils/dir.py
new file mode 100644
index 0000000000000000000000000000000000000000..a76e0b203b4f23e63646c41520d7cd5b79c365ae
--- /dev/null
+++ b/utils/dir.py
@@ -0,0 +1,10 @@
+import os
+
+existing_indexs = []
+for root, dirs, files in os.walk("/data1/home/purui/projects/chatbot/kb"):
+ for dir in dirs:
+ existing_indexs.append(os.path.join(root, dir))
+ # 退出循环,因为我们只想要第一层的目录
+ break
+
+print(existing_indexs)
\ No newline at end of file
diff --git a/utils/eval.py b/utils/eval.py
new file mode 100644
index 0000000000000000000000000000000000000000..52d693879d9b91aad5a6426ab1654a0cf31eb1d3
--- /dev/null
+++ b/utils/eval.py
@@ -0,0 +1,47 @@
+from llama_index.core.evaluation import RetrieverEvaluator
+from llama_index.llms.ollama import Ollama
+from llama_index.core import Settings
+from utils.recursive_retrieve import get_bm25_recursive_retriever, get_hybrid_recursive_retriever, get_recursive_retriever, prepare_nodes
+import nest_asyncio, os, asyncio
+
+nest_asyncio.apply()
+
+llm = Ollama("pornchat", request_timeout=120)
+Settings.llm = llm
+
+data_dir = "/data1/home/purui/projects/chatbot/data/txt"
+index_dir = "/data1/home/purui/projects/chatbot/kb"
+
+bm25_retriever = get_bm25_recursive_retriever(data_dir, index_dir)
+hybrid_retriever = get_hybrid_recursive_retriever(data_dir, index_dir)
+basic_retriever = get_recursive_retriever(data_dir, index_dir)
+
+data_types = []
+all_nodes = []
+for dir in os.listdir(data_dir):
+ if os.path.isdir(f"{data_dir}/{dir}"):
+ data_types.append(dir)
+for data_type in data_types:
+ nodes = prepare_nodes(f"{data_dir}/{data_type}", index_dir, data_type=data_type)
+ all_nodes.extend(nodes)
+
+# define retriever somewhere (e.g. from index)
+# retriever = index.as_retriever(similarity_top_k=2)
+# retriever = ...
+
+retriever_evaluator = RetrieverEvaluator.from_metric_names(
+ ["mrr", "hit_rate"], retriever=bm25_retriever
+)
+
+from llama_index.core.evaluation import generate_question_context_pairs
+
+qa_dataset = generate_question_context_pairs(
+ nodes, llm=llm, num_questions_per_chunk=2
+)
+
+async def eval(retriever_evaluator: RetrieverEvaluator, qa_dataset):
+ eval_results = await retriever_evaluator.aevaluate_dataset(qa_dataset, show_progress=True)
+ return eval_results
+
+result = asyncio.run(eval(retriever_evaluator, qa_dataset))
+print(result)
\ No newline at end of file
diff --git a/utils/loader.py b/utils/loader.py
new file mode 100644
index 0000000000000000000000000000000000000000..418bb49770bbdaad0850c6d968a4d582b028b6ca
--- /dev/null
+++ b/utils/loader.py
@@ -0,0 +1,7 @@
+import yaml
+from typing import Dict
+
+def config_loader(config_path) -> Dict:
+ with open(config_path) as f:
+ config = yaml.load(f, Loader=yaml.FullLoader)
+ return config
diff --git a/utils/milvus_ingestion.py b/utils/milvus_ingestion.py
new file mode 100644
index 0000000000000000000000000000000000000000..d1975b14d1ef5d852dd2ce287a958939d172f1fa
--- /dev/null
+++ b/utils/milvus_ingestion.py
@@ -0,0 +1,381 @@
+from llama_index.core.node_parser import SentenceSplitter
+from langchain_community.embeddings.ollama import OllamaEmbeddings
+import numpy as np
+
+# text splitter
+splitter = SentenceSplitter(chunk_size=200, chunk_overlap=20)
+# embed model
+embed_model = OllamaEmbeddings(model="bge-m3", show_progress=True)
+
+text = """
+Blowjobs: What Are They and How to Give One
+
+None
+What Is a Blowjob?
+
+Oral sex is the act of stimulating a partner’s genitals or anus with your mouth and tongue. A blowjob, sometimes called fellatio, is a type of oral sex in which a person stimulates their partner’s penis with their mouth and tongue. It can include licking, sucking, kissing, or any other activity that involves the mouth.
+
+A blowjob, also known as fellatio, is when someone uses their mouth to stimulate their partner's penis. (Illustration: WebMD)
+
+Blowjobs, along with other types of oral sex, are often part of foreplay before vaginal or anal penetration. But you can give or receive a blowjob on its own, or during or after intercourse.
+
+Research suggests that most people have oral sex before their first experience with vaginal or anal penetration.
+
+Who can give and receive blowjobs?
+
+Any consenting adult can give a blowjob, whatever their gender or sexual orientation. Any consenting adult with a penis can receive a blowjob.
+
+What is it like to give or receive a blowjob?
+
+Sensations could range from discomfort to extreme pleasure, so focus on what feels good for both partners while you’re discovering oral sex. Keep in mind that each person's anatomy, smell, and taste are different, and so is what they find pleasurable. If you feel uncomfortable at any point, don’t be afraid to stop or change what you're doing, or to ask your partner to do so.
+
+Female Orgasm: Types, Feeling, and How to Have One
+Adrienne Santos-Longhurst, How We Reviewed This Article
+None
+You can orgasm from stimulation to the clitoris, vagina, or cervix — or some combination of the three. You may also be able to orgasm from stimulating other areas of the body as well. “Female orgasm” is an all-encompassing term for any type of orgasm related to vulva and vagina. It could be clitoral, vaginal, even cervical — or a mix of all three. That said, your genitalia isn’t your only option when it comes to reaching the big O. Read on for tips on where to touch, how to move, why it works, and more.
+
+Clitoral orgasm Direct or indirect stimulation of the clitoris can lead to a clitoral orgasm. When you get your rub on just right, you’ll feel the sensation build in your pleasure bud and peak. Try this Your fingers, palm, or a small vibrator can all help you have a clitoral orgasm. Make sure your clitoris is wet and begin gently rubbing in an up-and-down, circular, or side-to-side motion. As it begins to feel good, apply faster and harder pressure in a repetitive motion. When you feel your pleasure intensify, apply even more pressure to the motion to take yourself over the edge.
+
+Vaginal orgasm Although few people can climax with vaginal stimulation alone, it sure can be fun trying! If you’re able to make it happen, prepare for an intense climax that can be felt deep inside your body. The front vaginal wall is also home to the anterior fornix or A-spot. Older research suggests that stimulating the A-spot can result in intense lubrication and even orgasm. Try this Fingers or a sex toy should do the trick. Since the pleasure comes from the vaginal walls, you’ll want to experiment with width. Do this by inserting an extra finger or two into the vagina, or try a dildo with some extra girth. To stimulate the A-spot, focus the pressure on the front wall of the vagina while sliding your fingers or toy in and out. Stick with the pressure and motion that feels the best, and let the pleasure mount.
+
+Cervical orgasm Cervical stimulation has the potential to lead to a full-body orgasm that can send waves of tingly pleasure from your head to your toes. And this is an orgasm that can keep on giving, lasting quite a while for some. Try this Being relaxed and aroused is key to cervical orgasm. Use your imagination, rub your clitoris, or let a partner work some manual magic. Your cervix is the lower end of your uterus, so reaching it means going in deep. The doggy-style position allows for deep penetration, so try being on all fours with a penetrative toy or partner. Start off slow, gradually working your way deeper until you find a depth that feels good, and keep at it so the pleasure can build.
+
+Combination or combined orgasm A combo orgasm may happen if you pleasure your vagina and clitoris simultaneously. The result: a powerful climax that you can feel inside and out. Try this Use both your hands to double your pleasure, or combine fingers and sex toys. Rabbit vibrators, for example, can stimulate the clitoris and vagina at the same time and are perfect for mastering the combo orgasm. Use parallel rhythms while playing with your clitoris and vagina, or switch it up with fast clitoral action and slow vaginal penetration.
+
+You can orgasm from other stimulation, too The genitals are awesome, but they’re not your only option. Your body is full of erogenous zones with orgasmic potential. Nipple According to a 2011 study, when stimulated, your nipples set your genital sensory cortex ablaze. This is the same area of the brain that lights up during vaginal or clitoral stimulation. Nipple orgasms are said to sneak up on you and then explode in waves of full-body pleasure. Yes, please! Try this: Use your hands to caress and squeeze your breasts and other parts of your body, avoiding the nipples at first. Move on to teasing your areola by tracing it with your fingertips until you’re turned on, then show your nipples some love by rubbing and pinching them until you reach maximum pleasure. Anal You don’t need to have a prostate to have an anal orgasm. Anal play can be pleasurable for anyone if you have enough lube and take your time. You can indirectly stimulate erogenous zones within the vagina using a finger or sex toy. Try this: Apply ample lube with your fingers and massage it around the outside and inside of the anus. Slowly and gently insert your sex toy or finger into your anus. Start with a gentle in-and-out motion, then move in a circular motion. Alternate between the two and pick up the pace as your pleasure builds. Erogenous zones Your body is truly a wonderland. The neck, ears, and lower back, for example, are rich in erotically charged nerve endings begging to be touched. We can’t say exactly which parts of your body will drive you to the brink, but we can tell you that everyone has erogenous zones, and finding them is worth the effort. Try this: Take a feather or silky scarf and use it to find your body’s most sensitive areas. Get naked and relax so you can focus on every tingle. Take note of these spots, and try experimenting with different sensations, like squeezing or pinching. Practice makes perfect, so take pleasure in these areas and keep at it to see how far you can go.
+
+Where does the G-spot come in? The G-spot is an area along the front wall of your vagina. For some people, it can produce a very intense and very wet orgasm when stimulated. Your fingers or a curved G-spot vibrator are the best way to hit the spot. Squatting will give you the best angle. Try this: Squat with the back of your thighs close to or touching your heels, and insert your fingers or toy into your vagina. Curl your fingers toward your belly button and move them in a “come here” motion. If you happen to find an area that feels especially good, keep going — even if you feel like you have to pee — and enjoy the full-body release.
+
+What happens in the body when you orgasm? Everyone’s body is different, and so are orgasms. Some are more intense than others. Some last longer than others. Some are wetter than others. What physically happens during orgasm is: Your vagina and uterus contract rapidly.
+
+You experience involuntary muscle contractions in other parts, like your abdomen and feet.
+
+Your heart rate and breathing quicken.
+
+Your blood pressure increases. You may feel a sudden relief of tension or even ejaculate.
+
+What makes a female orgasm different from a male orgasm? It may be surprising, but they’re not all that different. Both involve increased blood flow to the genitals, faster breathing and heart rate, and muscle contractions. Where they typically differ is in duration and recovery — also known as afterglow. Female orgasm may also last longer, ranging from 13 to 51 seconds on average, while male orgasm often ranges from 10 to 30 seconds. People with a penis typically have a refractory phase. Orgasms aren’t possible during this period, lasting from minutes to days. People with a clitoris may also go through a similar phase. A 2009 study involving 174 university students found that 96% of female participants experienced hypersensitivity in the clitoris following orgasm. Remember, the range of the refractory phase varies from person to person. Your own experience is unique to you. Then there’s ejaculation. For a person with a penis, contractions force semen into the urethra and out of the penis. And speaking of ejaculation …
+
+Is female ejaculation a thing? Yes! And it’s a fairly common thing. A 2013 research review of female ejaculation found that 10% to 54% of participants experienced ejaculation during orgasm. Ejaculation occurs when fluid is expelled from your urethral opening during orgasm or sexual arousal. The ejaculate is a thick, whitish fluid that resembles watered-down milk. It contains some of the same components as semen.
+
+What’s the orgasm gap? The orgasm gap refers to the gap between the number of male and female orgasms in heterosexual sex, where those with female genitalia are getting the shorter end of the stick. A 2018 study on orgasms in heterosexual newlywed couples found that 87% of husbands and only 49% of wives reported consistently experiencing orgasms during sexual activity. Why the gap? Researchers don’t know for certain. Some argue it could be biological, while others blame cultural and societal perspectives and a lack of education when it comes to pleasure.
+
+What can you try if you’ve never had an orgasm before? If you have a vulva and vagina, you know that real-life orgasms can be pretty different from what they show on TV. The first thing you should do is take the pressure off so you can enjoy yourself. Instead, take the time to get to know your body and concentrate on how it feels. You may find it helpful to: Get comfy somewhere you won’t be interrupted or distracted, like in bed or the bath.
+
+Try reading an erotic story or using your imagination to get yourself in the mood.
+
+Massage the fleshy area above your clitoris and the outer and inner lips of your vulva until you begin to get wet. You can also apply lube.
+
+Start rubbing your clitoris over the hood and find a rhythm that feels good.
+
+Rub faster and harder, increasing the speed and pressure to intensify the feeling until it releases. If you don’t orgasm, you can always try again. Trying new things is the best way to figure out what turns you on and how to orgasm.
+
+How to Give a Blow Job — 42 Blow Job Tips From Experts
+
+2024-04-09 20:13:00+00:00
+We may earn commission from links on this page, but we only recommend products we love. Promise.
+
+“Fellatio.” “Slobbin’ on the knob.” “Head.” “Sloppy toppy.” Blow jobs go by many a name. But whatever you call it, the most important thing to know about sucking dick is that it is a goddamn artform—a creative endeavor, a finely crafted skill. In the immortal words of our lord and savior Samantha Jones: “They don’t call it a job for nothin’.” And while this definitely doesn’t mean that BJs are all work and no play, it does mean that learning how to give a blow job takes time, practice, and some knowledge of what the hell you should even be doing down there.
+
+Hence why we’ve graciously compiled this expert list of blow job tips, tricks, and must-know info for anyone who is looking to hone their BJ craft, whether you’re getting ready to take your very first trip to D-town or have been knob-slobbing for years (because yes, there’s always more to learn). Hello and welcome to Blow Jobs 101.
+
+Related Story I Hooked Up With a Frat Bro on a Washing Machine
+
+But before we get into all the details, let’s make sure we’re all clear on the basics. For the uninitiated, a blow job refers to “the act of oral sexual stimulation of the penis,” says sex therapist Danielle Simpson-Baker, MA, MFTI, a member of The Pulse, a panel of experts for The Honey Pot Company. “To give a blow job, you basically place the head or tip of your partner’s penis in your mouth and start moving your head up and down the shaft.” says Simpson-Baker.
+
+Intimacy educator Taylor Sparks, founder of , adds that a blow job “can include licking of the entire shaft and/or sucking on the penis while also stroking it with your hands.”
+
+Related Story Your Guide to Every Type of Vibrator Out There
+
+As for why people love blow jobs, board-certified sex educator Linnea Marie says that, for the receiver, the pleasure is twofold. “They are feeling the stimulation in a highly pleasurable erogenous zone due to the abundance of nerve endings in the penis,” she says. “Visually, the pleasure also comes from watching the person perform.”
+
+And while the act of giving a blow job may not be as physically stimulating as receiving one, there is still plenty of pleasure to be had for the BJ-giver. “Many enjoy the feeling of power and control associated with pleasuring their partner,” Marie says. Just because it’s a job doesn’t mean you can’t absolutely love going to work.
+
+Speaking of which: Yes, blow jobs SHOULD BE FUN—and not just for the receiver! The number one, most important blow job tip we can offer anyone is that enthusiasm is key. The more fun you’re having, the more fun your partner will have.
+
+“The key to giving enjoyable head is to enjoy giving head,” says sex educator Lucy Rowett. “Focus on what you like about giving your partner pleasure—pay attention to what feels good to you.”
+
+Related Story Everyone Wants to Bang a Hot Guy With a Mustache
+
+Most importantly, if you don’t feel like giving a blow job, then don’t! Again, sexual pleasure (of all varieties) should be a two-way street. If you’re not into it, don’t do it. Simple as that.
+
+Now, allow us to present your complete guide to giving a blow job, featuring 42 expert tips, tricks, and things to know about performing the fine art of the BJ. Buckle up and prepare to blow some minds (and, you know, some penises) with your expert-level oral sex skills.
+
+Related Story Here’s How Much You Can Make Selling Feet Pics
+
+1. Set the mood.
+
+Don't worry, you don’t have to bust out some heels and mood lighting every time you give a blow job. But if you feel confident and sexy going into the experience, the overall vibe will just be hotter. To heighten your own enthusiasm, sexologist Goody Howard suggests playing a little background music. “You want to pick a song that makes you feel powerful, beautiful, and desirable,” she says. “And then you want to perform oral sex to the rhythm of the song. You can even hum some of the lyrics into the penis. It also helps you keep a rhythm for your breathing, which helps support gag reflex control.”
+
+2. Don’t be afraid to make eye contact.
+
+“There is a misconception that you have to close your eyes to show you’re ‘into it’ when giving a blowjob,” says Tara Suwinyattichaiporn, PhD, host of the Luvbites With Dr. Tara podcast. “I think that making eye contact during a BJ is way more impactful and sexier than closing your eyes the whole time.”
+
+To be fair, there’s a lot going on during a BJ, so don’t feel obligated to incorporate eye contact into the mix if you’re not feeling it. But if you’re into it, glancing up at your partner and holding that gaze can definitely add an extra layer of intimacy, connection, and/or eroticism.
+
+3. Don’t do it if you don’t want to.
+
+For our friends in the back, allow us to make this very loud and very clear: You do not owe anyone a blow job. "Blow jobs should be given enthusiastically—and it'll show if you're just not into it. Skip it if it's not your thing,” says Simpson-Baker.
+
+You do not even owe it to yourself to give someone a blow job for the sake of trying it out if you don’t want to. If you don’t want to go down on someone (or perform literally any sexual act, for that matter), don’t do it. Full stop. End of story.
+
+4. Moan!
+
+“When you're sucking, if you're enjoying it, moan with pleasure,” says Rowett. “The vibrations from your moan will add to the pleasure that your mouth and tongue is giving.”
+
+Again, we know there’s a lot going on, so if moaning is just not in the cards, we hear ya. That said, if you have the capacity, some well-placed (and genuinely felt) moaning can definitely enhance the experience for everyone involved.
+
+Related Story Why Moaning During Sex Is So Damn Hot
+
+5. You don’t have to deep-throat if you don’t want to.
+
+Okay, so deep-throating can absolutely be enjoyable for both the giver and receiver. That said, it is definitely *not* required when it comes to giving head. Honestly, you might as well consider deep-throating and blow jobs to be two different sex acts entirely.
+
+“Don't feel obligated to deep-throat. You will be temporarily cutting off your airway, so if this isn't something you want to do, don't feel like you have to,” say Simpson-Baker. “Some partners don't even enjoy it because it can be too intense or even painful, so ask if they're into it first.”
+
+6. Ask what they like.
+
+Everyone's different when it comes to sexual preferences, so if you're unsure what to do, Velvet Co. sexpert Julieta Chiara suggests simply asking.
+
+"What works for one person will not for the other, so getting down to the core is key," she says. You can ask in a sexy way so that it feels like part of the whole event, instead of just asking for directions. Try something like, "I want to suck your dick. How do you want me to do it?" Watch their eyes light up and their penis jump to attention as they give you a play-by-play of exactly what they like.
+
+That being said, if you’re not vibing with their suggestions or if whatever they’re asking for makes you uncomfy, you can always say no. Stewart says you have to be able to express your needs just as well as you can internalize theirs. And TBH, you never have to give anyone a blow job if it’s not your style. Just be straightforward with your partner about your boundaries.
+
+7. Take some of the pressure out of it.
+
+Deciding to give someone a blow job is a certified Big Deal. But that doesn't mean you have to take all the fun out of it. Instead of worrying about giving the perfect blow job, just be in the moment. Laugh if something silly happens. Take breaks for sips of water. Make jokes. Relax. Remember, this is about connecting and enjoying—not about putting on a porn-worthy performance.
+
+8. Be all kinds of vocal.
+
+Moan, groan, ooh, and ahh. Hell, even throw in a gurgling sound if the mood strikes you. The point is, don't be afraid to make noises or slurpy sounds—it's not only hot, but the vibrations from your mouth will do wondrous things to their peen.
+
+“Channel your inner porn star,” Howard suggests. “Exaggerated moaning and sucking and slurping gives an amazing sensation to the penis, and the vibration from slurping adds layers to the pleasure for the receiving partner.”
+
+Also, dirty talk is a great way to not only turn up the heat on the situation but give your jaw a rest, explains sex expert Kenneth Play . Stare into your partner's eyes and say something along the lines of, "you taste so good," "you feel so good in my mouth," "can I suck it harder?" Whether or not you actually do suck it harder doesn't matter, because they'll instantly be closer to coming.
+
+Related Story How I Became a “Daddy” Girl
+
+9. Pillows are your friend.
+
+Your comfort is key! “Don't be afraid to take breaks,” Stewart says. Do you need a neck pillow? Do you need a different position that's going to help you do the job better? “Don't be afraid to say what your needs are in this situation.” Whether you buy a pillow specifically for sex (yes, sex pillows are a thing) or you grab one off of the bed, pillows are one of the most underrated additions to oral. Not only can you put them under your knees if you're giving a kneeling blow job, but you can use them to prop up your partner's hips, which takes some of the neck strain off of you and provides new sensations for them and new positions for you to try.
+
+Related Story I Tried Those Mouthwatering Mints From TikTok 👀
+
+10. Use lube.
+
+Why would you need lube when you have a mouthful of spit? Because spit dries up quick and lube makes everything better. Not only will it keep things slippery, but if you give your mouth a break and use your hand, it'll speed up the process and prevent you from getting lockjaw. Opt for a flavored lube that doesn’t taste like a takeout bag and enjoy the fact that you can suck a dick that tastes like strawberries. The joys of modern sex additives!
+
+11. There is no wrong way to give a blow job.
+
+You should just get that out of your head now because, hi, everyone has different tastes, preferences, likes, and wants, which means it’s going to vary for every person you’re with.
+
+
+
+“Different people prefer different techniques, and there’s no way to know about their favorite unless you ask or listen to their reaction,” says clinical sexologist Rachel Sommer, PhD, co-founder of My Sex Toy Guide.
+
+12. Take the assist!
+
+“Feel free to use toys to save your mouth some work. A mini wand, bullet vibrator and/or a fleshlight could be a great addition to a BJ,” says Simpson-Baker.
+
+And, oh hi, what’s this? A literal sex toy specifically designed to make blow jobs easier for the giver and better for the recipient? Yep, it’s the oral stroker from Cake, which, per co-founder and CMO Mitch Orkis, essentially “extends your hand and wrist so you don’t need to go all the way to the base as the giver. Plus, it still creates the suction feeling so the receiver feels good.”
+
+Related Story Oral Sex Toys That Feel So Close to the Real Thing
+
+13. It’s okay to be intimidated.
+
+If you haven’t logged much face-to-penis time, the thought of shoving one in your mouth might be a touch overwhelming. That’s totally normal. But if you want to experiment with blow jobs and just don’t quite know how to begin, Stewart and Howard both recommend getting in some dress rehearsals before hitting the main stage.
+
+“Take a class or three, get familiar,” Stewart says. Howard runs an oral sex workshop called “LICK!” in Dallas, Texas, which she says is her “fantastic fellatio workshop that teaches how to add toys to performance and even reach orgasm while giving head.” Not in Dallas? Sex educators in most major cities run similar workshops. Give it a Google.
+
+If a workshop isn’t your style, Stewart suggests buying a dildo. “The more you're familiar with the type of anatomy—even though it might just be a toy as opposed to a penis—it's important just to have the practice and to be familiar so that you're not going in there totally clueless.”
+
+And of course (~shameless plug~), you can also check out Cosmo's very own 4-Week Oral Sex Challenge, where we unpack the do's and don'ts of giving and getting oral sex down to the nitty gritty. You'll be a pro by the end, trust.
+
+Related Story Our 4-Week Oral Sex Challenge Is Right This Way
+
+14. Don’t just stroke your partner's penis, stroke their ego.
+
+Trust, the mental and emotional build-up to an orgasm is almost as hot as the actual thing. This means that, yes, if you are looking at this blow job as if it’s a chore, your partner will know you’re not into it. "Use this time to focus on catering to your partner,” says clinical sexologist Valon Alford , owner of Vitality Wellness Solutions. “Your endgame is for your partner to feel like their pleasure is the most important thing in the world.”
+
+Similarly, Stewart says oral sex can be a way to communicate admiration between partners. And if it’s something that you really love to do, it’ll show—and it’ll be so appreciated. “It’s important that you're savoring the moment and not rushing,” she adds.
+
+15. Appeal to all of their senses.
+
+Alford confirms: “Appealing to the five senses (touch, sight, sound, smell, and taste) is a great way to turn on your partner and set the mood.” She suggests something as little as burning a nice aromatherapy candle or wearing that perfume your partner loves. Rub their back or squirt some whipped cream in their mouth while you're going at it. Get creative to put their senses in overdrive.
+
+A blow job is “not only about the experience itself, but also about the visual aspects, that's sexy for the receiver,” Stewart says. What kinds of sounds are you making? Add some mmm’s to show how much you’re enjoying the experience. Throw in some dirty talk, or just some dialog and feedback. Check in with other parts of your body—can you rub up against your lover's body as you're giving head? “I think all of those things are important as well,” she says.
+
+16. Don’t limit the blow job to the penis only.
+
+There are tonnnns of pleasure spots on the body you can stimulate. One I highly, highly recommend you get familiar with is the perineum—the area between your partner’s scrotum and anus. “It is highly sensitive because it is home to a lot of nerve endings. Giving this area a little attention can intensify pleasure,” says Alford. She recommends using your tongue or index and middle fingers to apply pressure there.
+
+
+
+17. Your mouth might get dry.
+
+Whether you have dry mouth from nerves, allergy or prescription meds, or even just drinking alcohol prior (which can dehydrate you), dry mouth is supes common and you can find a way to deal with it! A little prep never hurt anyone—keep some chewing gum or sour candies by your bedside to help nudge your salivary glands into production, as ob-gyn Wendy Askew, MD, previously told Cosmopolitan.
+
+
+
+You can also prep, like, way beforehand too. If you love giving head but your dry mouth is cramping your style, invest in some Xylitol-based mouthwashes specifically designed for dry mouth, like Biotene or Smart Mouth Mouthwash. Xylitol mouthwashes (remember, stay away from alcohol-based as it can cause dryness) actually helps stimulate saliva production and retain better moisture in the mouth, according to Dr. Askew.
+
+18. You don’t have to gag just to make spit.
+
+
+
+Some people choose to make themselves gag to produce more spit. But if gagging freaks you out, that makes actual physiological sense. According to Jarrett Manning, DDS , an Atlanta-based dentist, “The body’s response to deep-throating is similar to that of gagging, which is a defense mechanism preventing swallowing or choking.”
+
+
+
+Basically, “when these areas in the back of your throat get triggered in such a way, the stimulation goes from your nerves to your brain’s medulla oblongata, which happens to be located near the other areas of the brain that cause you to get teary eyes and produce excess saliva.” AKA, there’s kind of a medical reason it might work, but you’re legit like, hitting the “PANIC” button in your brain to get there. So you can weigh the pros and cons.
+
+19. Not everyone can orgasm from a blow job.
+
+Stewart emphasizes that not everyone will orgasm from a blow job, and that’s totally fine. While movies, books and TV shows might make it seem like blow jobs are the holy grail and The Ultimate Thing that all penis-owners want 24/7, some people aren’t crazy about them, and others like them (or even love them) but they just don’t lead to orgasms.
+
+If you’re going at it for ages and nothing’s happening, and your partner's like, “Yeah, I might not finish from this since I rarely can,” do not take it personally. Trust that they know their body better than you can and try to just enjoy the moment without being so goal-oriented, Stewart recommends.
+
+Related Story I Hooked Up in an Iconic London Telephone Booth
+
+20. You don’t have to kneel if you don’t want to.
+
+There’s a time and place for kneeling blow jobs and there’s also a time and place to be like, “Fuck it, I want to be comfortable and keep movement from where I am right now to a minimum.” If you try changing up your position so you sit next to them, not in front of them, you can change the sensation for your partner, show off your ass, and you might find that it just makes things comfier for you on the whole.
+
+21. Go ahead and make it about you too!
+
+Bringing a vibrating toy into things can make giving head even hotter. You can use one hand to hold it while you’re kneeling and sort of sit on it for maximum control.
+
+To cum while you’re going to town on your partner, San Francisco–based sex expert, therapist, and co-founder of the Somatica Method of sex Celeste Hirschman , MA, suggests lying on your back with your partner on their knees. Turn to the right to give them a blowjob while they finger you. For extra pleasure, use a vibrating toy on yourself. Watching one another experience the shared pleasure can be a massive turn-on for both you and your partner.
+
+22. Just because they’re quiet doesn’t mean they don‘t love it.
+
+This is a problem among people with penises, many of whom seem to have been told, at some point, to literally never exude enthusiasm in sex. If your partner’s silence is weirding you out, tell them so! Positive feedback is helpful for BJ novices and experts alike.
+
+23. Yes, you can give a blow job in the shower.
+
+Most shower sex is difficult to impossible—the literal black diamond of sex locations. But oral sex is both doable and enjoyable in the shower. Have your partner stand out of the jet stream (so you can be in it) and go to town after you’ve watched them wash their bod.
+
+24. Play with the balls.
+
+But don’t do it without first asking if your partner is into that. And then follow that question up with, “And how do you like your balls played with?” Because what people who don’t have them don’t know is that apparently, they’re very sensitive! So don’t go yanking away without warning.
+
+Hirschman’s tip for playing with balls: “Kneel between [your partner’s] legs and use one hand on the shaft and the other to gently pull and caress the balls.”
+
+25. Incorporate some butt play.
+
+Once again: Ask your partner if they like butt play before you venture into unknown territory. And then if they give you the all-clear, ask again what kind of play they like. If they don’t know, check out some of these beginner anal play tips and work from there. This also tends to speed up blow jobs, which, you know, might be a good thing.
+
+
+
+Related Story Anal Foreplay Tips for All of You Booty Lovers
+
+26. You can get STIs from blow jobs.
+
+Which is why wearing condoms during oral is a good idea, especially for new, non-monogamous partners. There are plenty of flavored varieties if the taste of latex isn’t really your thing.
+
+27. Get creative and be playful.
+
+Bring some toys (vibrators feel good on penises, too!) into the mix, or try some flavored lubes. Take a play from Samantha Jones’s book and have them stand in front of a mirror. It can be super hot to watch yourself get it on (why do you think sex tapes are a thing??). Use that over-the-door mirror you’ve had since freshman year of college for dirty purposes and position yourselves in front of it while you go down on your partner.
+
+Hungry? Howard suggests adding some fruit roll ups (yes, you read that right) into your sexy repertoire. Instead of using the whole thing all at once, which could take a while to work your way through, cut that fruity goodness into three sections and wrap one of them around the middle of the shaft. “This will give you an incentive to get more penis in your mouth and you won't be sucking dick for like, a whole week,” she says.
+
+28. Don’t skip foreplay.
+
+For some people, blow jobs are foreplay that leads up to other stuff. For others, they’re the main event. Whatever the case may be, you can blow their freakin’ mind and detract minutes from the amount of time their D is in your M by teasing your partner pre–blow job. Get them all worked up by kissing their hips and thighs, then their shaft. Breathe on the tip of their dick, lick it lightly. Flirt with it! Not only does it feel great for them, but it’s fun for you and it can cut down on the amount of time you’re actually sucking and straining your jaw.
+
+29. Don’t worry about what you look like.
+
+Have you ever seen anyone eat a really big popsicle? Like, put their whole dang mouth around it (which, ouch, brain freeze)? It’s not a dainty sight! And that’s okay. When you’re giving a blow job, you’re not supposed to look super composed and photo-ready. Your mouth is on your lover’s genitals. They’re gonna think you look hot no matter what.
+
+30. It doesn’t have to be all about them.
+
+Ever heard of something called sensate focus? It’s a sex therapy technique in which you focus on touch and the physical pleasure it brings you, and you can totally use it to ease blow job anxiety or just ~mix it up~ a little. Basically, instead of doing what you think you’re supposed to do to make them feel great, employ blow job techniques that feel fun and exciting to you. Oral sex doesn’t have to be as one-sided as its reputation would imply.
+
+31. Strategize to get it really wet.
+
+I mean, there’s pre-ejaculate, but that’s like a light rain shower when a proper BJ usually requires a torrential downpour. Drink some water and be prepared to use all the spit you can muster. Don't be afraid to literally spit on their penis if things get dry. It’s not gross. This is someone you make out with (probably), and trust me, they'll think it's hot.
+
+
+
+32. You can do it lying down, too.
+
+In movies and TV shows, the only BJ position ever depicted is someone on their knees, bobbing their head back and forth while their partner stands up like a statuesque Greek god. This is so rare IRL! You don’t have to invest in knee pads like Stephanie from seventh grade said you would! Stephanie lied to you. Just get on the bed and do it lying down. It’s comfier!
+
+33. Swallow if you want (or don’t!).
+
+No shade to the folks who like the taste and feel of cum in their mouth, but for some people, the sensation is icky. That doesn’t mean your partner’s not a total babe and you aren’t mega attracted to them—it just means the two of you should figure out an alternative cum route. Maybe they orgasm on your chest? How about into a tissue or towel? Chat about it with your lover to find a solution that you both think is delicious and sexy.
+
+34. Use your hands.
+
+Howard would like to remind you that your hands are an incredible BJ asset that can be used at the same time as your mouth, and also in moments when your mouth needs a break. “There are no awards for the best Bluetooth head. You know, hands-free? Use your hands and stroke the penis while performing oral sex,” she says. “Especially when they get ready to cum. You can stroke the penis and angle it away from your mouth and take that time to focus on the testicles.”
+
+Additionally, Stewart says using tools like can make it easier for someone with hand issues or arthritis.
+
+Related Story 16 Cowgirl Sex Positions That'll Make It Your Fave
+
+35. Be mindful of your teeth.
+
+But don’t stress about it. There are an inordinate number of horror stories about people who accidentally use their teeth during a BJ and, like, skin their partner's dick with their razor molars or something. This is not—I repeat, not—a regular occurrence. Have some awareness of where your teeth are in relation to their penis so that you avoid causing them any pain or discomfort, but don’t let it get to your head (or either one of theirs).
+
+36. Sometimes a penis doesn’t smell good, and that’s okay.
+
+I don’t think anyone expects a hard penis to smell like Chanel perfume or a strawberry Lip Smacker, but some people have a stronger scent than others. Anyone’s crotch area can get sweaty and pungent. If you’re concerned about your partner’s smell or hygiene, kindly suggest a sexy shower together before any mouth-to-genital action.
+
+37. Use your tongue.
+
+It’s not the strongest muscle in your body for no reason, okay?! Tongues are sexy as hell, and the chances are high that your partner’s going to want to see yours in action as you lick the living daylights outta their phallus. While giving head, play around with tongue shapes: Wide and flat on the shaft and tight and pointy on the tip are two good places to start.
+
+Hirschman suggests licking their shaft while holding eye contact, and tickling your tongue across the shaft as you go up and down.
+
+Also, you can use your tongue to trick them into thinking they're all the way in your mouth, like magic, if magic were sexier. Just either tuck their penis underneath your tongue or use your tongue to block the back of your throat (this also protects your delicate gag reflexes just in case).
+
+38. Blow jobs are great, but they can take time.
+
+Although people do seem to love them, it’s not something that begins and ends in a matter of seconds (usually). These things can be a lot of work, especially if you’re down there for, like, 15 minutes. You can quit whenever you want though—never feel like you’re dropping out of a race early.
+
+39. Porn has some decent pointers.
+
+Sex ed should definitely be better in this country, but I really doubt we’ll ever have gym coaches teaching good blow job decorum in front of a bunch of confused teenagers. And that’s probably for the best? Anyway. People don’t tend to f*ck IRL like they do in porn, but sometimes those close-up shots of someone ferociously sucking a D can serve as good little tutorials on how to move your head. Just don’t attempt deep-throating if you’re not very experienced.
+
+Once you’ve gotten your porny techniques down, Hirschman recommends trying to create some suction, kind of like a vacuum, right when you feel the tip of their dick get the hardest. “This creates an extremely powerful orgasm,” she says.
+
+40. Literally no one can deep-throat without gagging.
+
+I vaguely remember some girl in ninth grade telling me that all grown women literally swallow lidocaine or the stuff in those Orajel swabs before giving a blow job so they don’t gag on a dick. Don’t do this! Don’t drink lidocaine! No! If you’re worried about gagging or throwing up on someone you like, the solution is to just not deep-throat a penis.
+
+41. You do not have to give a BJ just to get head in return.
+
+If someone refuses to go down on you because you don’t like giving BJs, or for literally any other reason, they suck (except lol, they don’t suck, hahaha get it?). This is the epitome of thank u, next. There are tons of people out there who are going to love the idea of going down on you, so go find them!
+
+42. You’re still good in bed, even if you don’t like blow jobs.
+
+Blow jobs are great and fun and lots of people love them, but if they’re not your thing, that’s totally fine. BJs are just one option on an endless menu of sexy stuff you can do with another person. Blow jobs can be super hot and build lots of juicy intimacy, but they’re not the end-all-be-all if you don’t want them to be. Trust your gut (and your gag reflex) and you can’t go wrong.
+"""
+
+splitted_text = splitter.split_text(text=text)
+print(f"len(splitted_text): {len(splitted_text)}\n")
+print(f"splitted_text: {splitted_text}")
+
+
+embeddings = embed_model.embed_documents(splitted_text)
+
+print(f"dimension of embeddings: {len(embeddings[0])}")
+
+docs = dict(zip(splitted_text, embeddings))
+
+query = "How to make a good blow job?"
+embeded_query = embed_model.embed_query(query)
+
+def cosine_similarity(v1, v2):
+ return np.dot(v1, v2) / (np.linalg.norm(v1) * np.linalg.norm(v2))
+
+
+results = []
+for text, embedding in docs.items():
+ score = cosine_similarity(embeded_query, embedding)
+ results.append((text, score))
+
+results = sorted(results, key=lambda x: x[1], reverse=True)
+print(f"results:\n {results[:2]}")
+
+
diff --git a/utils/prepare_vectordb.py b/utils/prepare_vectordb.py
new file mode 100644
index 0000000000000000000000000000000000000000..889b4ebfba2321b3e585119258e6e41edcf5664b
--- /dev/null
+++ b/utils/prepare_vectordb.py
@@ -0,0 +1,120 @@
+import os
+from llama_index.core import SimpleDirectoryReader
+from llama_index.core import VectorStoreIndex
+from llama_index.llms.ollama import Ollama
+from llama_index.core.node_parser import SentenceSplitter
+from llama_index.core.objects import ObjectIndex, SimpleObjectNodeMapping
+from llama_index.core.tools import QueryEngineTool
+from llama_index.core import StorageContext, load_index_from_storage
+from utils.loader import config_loader
+from typing import List, Tuple
+import yaml
+from llama_index.core import Settings
+
+# Global
+Settings.llm = Ollama(model="llama3", request_timeout=120)
+
+
+class IndexHandler:
+ def __init__(self, data_path):
+ self.data_path = data_path
+ self.config_path = os.path.join(self.data_path, "config.yaml")
+ self.config = config_loader(self.config_path)
+ self.index_dir = self.create_index()
+
+ def load_docs(self):
+ pdf_files = self.config.get("PDF_FILES", [])
+ txt_files = self.config.get("TXT_FILES", [])
+ exist_files = pdf_files + txt_files
+ print(f"Existing_files: {exist_files}")
+
+ # Check data_path and add files if not in exist_files
+ new_files = []
+ pdf_files = self.config.get("PDF_FILES", [])
+ txt_files = self.config.get("TXT_FILES", [])
+
+ for root, dirs, files in os.walk(self.data_path):
+ for file in files:
+ if file.endswith(('.pdf', '.txt')):
+ full_path = os.path.join(root, file)
+ print(f"Checking file: {full_path}")
+ if full_path not in exist_files:
+ new_files.append(full_path)
+ print(f"Adding new file: {full_path}")
+ if file.endswith('.pdf'):
+ pdf_files.append(full_path)
+ elif file.endswith('.txt'):
+ txt_files.append(full_path)
+
+ # Update config.yaml
+ self.config["PDF_FILES"] = pdf_files
+ self.config["TXT_FILES"] = txt_files
+
+ with open(self.config_path, 'w') as f:
+ yaml.dump(self.config, f)
+
+ return new_files
+
+ def create_index(self):
+ node_parser = SentenceSplitter()
+ new_files = self.load_docs()
+
+ # existing_index
+ index_dir = "/data1/home/purui/projects/chatbot/kb"
+ existing_indexs = []
+ for root, dirs, files in os.walk(index_dir):
+ for dir in dirs:
+ existing_indexs.append(os.path.join(root, dir))
+ # 退出循环,因为我们只想要第一层的目录
+ break
+ # if dirs:
+ # for dir in dirs:
+ # existing_indexs.append(os.path.join(root, dir))
+
+
+ # Create index for new files
+ if new_files:
+ for file_path in new_files:
+ file_name = os.path.basename(file_path).split('.')[0]
+ doc = SimpleDirectoryReader(input_files=[file_path]).load_data()[0]
+ doc.metadata.update({'file_name': file_name})
+
+ # create nodes
+ nodes = node_parser.get_nodes_from_documents([doc], show_progress=True)
+
+ # create index
+ persist_dir = f"/data1/home/purui/projects/chatbot/kb/{file_name}"
+ index = VectorStoreIndex(nodes=nodes)
+ index.storage_context.persist(persist_dir=persist_dir)
+ existing_indexs.append(persist_dir)
+
+ # return all existing indexs
+ return existing_indexs
+
+
+
+ def get_all_index(self):
+ indexs = []
+ for index in self.index_dir:
+ index_name = os.path.basename(index)
+ storage_context = StorageContext.from_defaults(persist_dir=index)
+ vectorIndex = load_index_from_storage(storage_context)
+ # (index: name, vectorIndex: VectorStoreIndex)
+ indexs.append((index_name, vectorIndex))
+ return indexs
+
+ # def from_objects(self, obj: List[Tuple[str, QueryEngineTool]]):
+ # obj = [tool[1] for tool in obj]
+ # obj_node_mapping = SimpleObjectNodeMapping.from_objects(obj)
+ # obj_index = ObjectIndex.from_objects(
+ # objects=obj,
+ # index_cls=VectorStoreIndex,
+ # obj_node_mapping=obj_node_mapping,
+ # )
+ # obj_index.persist(persist_dir="../kb/top_index")
+ # return obj_index
+
+if __name__ == '__main__':
+ index_handler = IndexHandler("/data1/home/purui/projects/chatbot/data")
+ indexs = index_handler.get_all_index()
+ print(indexs)
\ No newline at end of file
diff --git a/utils/recursive_retrieve.py b/utils/recursive_retrieve.py
new file mode 100644
index 0000000000000000000000000000000000000000..7f3aae61021f581f6790d9e0ed91a7a6df82afcb
--- /dev/null
+++ b/utils/recursive_retrieve.py
@@ -0,0 +1,347 @@
+from llama_index.core.schema import IndexNode
+from llama_index.core import VectorStoreIndex, SimpleDirectoryReader, Settings, SummaryIndex, load_index_from_storage, StorageContext, Document
+from llama_index.core.callbacks import LlamaDebugHandler, CallbackManager
+from llama_index.core.base.base_retriever import BaseRetriever
+from llama_index.core.base.base_query_engine import BaseQueryEngine
+from llama_index.core.node_parser import SentenceSplitter
+from llama_index.core.retrievers import RecursiveRetriever
+from llama_index.llms.ollama import Ollama
+from langchain_community.embeddings.ollama import OllamaEmbeddings
+from llama_index.core.retrievers import RecursiveRetriever
+from llama_index.retrievers.bm25 import BM25Retriever
+from llama_index.core.retrievers import QueryFusionRetriever
+from llama_index.vector_stores.chroma import ChromaVectorStore
+import Stemmer
+from typing import List, Dict, Optional
+import os
+from pathlib import Path
+import chromadb
+
+# Global
+llm = Ollama(model="pornchat", base_url="http://localhost:11434", request_timeout=240)
+embed_model = OllamaEmbeddings(model="pornchat", base_url="http://localhost:11434")
+Settings.llm = llm
+Settings.embed_model = embed_model
+splitter = SentenceSplitter()
+callback_manager = CallbackManager([LlamaDebugHandler()])
+
+test_data_dir = "/data1/home/purui/projects/chatbot/tests/data/txt"
+test_index_dir = "/data1/home/purui/projects/chatbot/tests/kb"
+data_dir = "/data1/home/purui/projects/chatbot/data/txt"
+index_dir = "/data1/home/purui/projects/chatbot/kb"
+
+def get_file_name(file_dir):
+ files = []
+ paths = os.listdir(file_dir)
+ for file in paths:
+ if os.path.isfile(os.path.join(file_dir, file)):
+ file_name, _ = os.path.splitext(file)
+ files.append(file_name)
+ return files
+
+def get_dir_name(file_dir):
+ dirs = []
+ paths = os.listdir(file_dir)
+ for path in paths:
+ if os.path.isdir(os.path.join(file_dir, path)):
+ dir_name,_ = os.path.splitext(path)
+ dirs.append(dir_name)
+ return dirs
+# 加载index data_type: blog, q&a
+def prepare_nodes(file_dir, index_dir, data_type, chroma_path):
+ """
+ file_dir: data/txt/(data_type)
+ index_dir: kb
+ data_type: blog, qa, etc.
+ """
+
+ nodes = []
+ docs_dict = {}
+ if data_type == "qa":
+ file_count = 0
+ # preprocess file
+ titles = get_file_name(file_dir)
+ for title in titles:
+ answers = []
+ topic_answers = ""
+ original_question = ""
+ with open(f"{file_dir}/{title}.txt") as f:
+ # get original question
+ for line in f:
+ if line.startswith("Q:"):
+ original_question = line.split(":")[-1].strip(" ")
+ break
+ # get answers
+ for line in f:
+ if line.startswith("A:"):
+ answer = line.split(":")[-1].strip(" ")
+ answers.append(answer)
+ # answers for one question
+ topic_answers = "\n".join(answers)
+ # create document
+ doc = Document(text=topic_answers)
+ docs_dict[title] = doc
+
+ if doc.text == "":
+ continue
+
+ # create index
+ index_path = f"{index_dir}/{title}"
+
+ if not os.path.exists(index_path):
+ vector_index = VectorStoreIndex.from_documents(
+ documents=[docs_dict[title]],
+ transformations=[splitter],
+ callback_manager=callback_manager
+ )
+ vector_index.storage_context.persist(persist_dir=index_path)
+
+ # save index in vectorstore
+ db = chromadb.PersistentClient(path=chroma_path)
+ collection = db.get_or_create_collection(name=f"file_{file_count}")
+ vector_store = ChromaVectorStore(chroma_collection=collection)
+ storage_context = StorageContext.from_defaults(vector_store=vector_store)
+ chroma_vector_index = VectorStoreIndex.from_documents(
+ documents=[docs_dict[title]],
+ storage_context=storage_context,
+ embed_model=embed_model,
+ show_progress=True,
+ )
+ # create top_index's node
+ out_path = Path(f"{index_dir}/summaries/{title}")
+ if not out_path.exists():
+ with open(out_path, "w") as f:
+ f.write(f"This is some answers about {original_question}")
+ node = IndexNode(text=original_question, index_id=title)
+ nodes.append(node)
+
+ file_count += 1
+
+
+ if data_type == "blog":
+ file_count = 0
+ titles = get_file_name(file_dir)
+ for title in titles:
+ doc = SimpleDirectoryReader(
+ input_files=[f"{file_dir}/{title}.txt"]
+ ).load_data()[0]
+ docs_dict[title] = doc
+
+ for title in titles:
+ index_path = f"{index_dir}/{title}"
+ if not os.path.exists(index_path):
+ # create index
+ vector_index = VectorStoreIndex.from_documents(
+ [docs_dict[title]],
+ transformations=[splitter],
+ callback_manager=callback_manager
+ )
+ vector_index.storage_context.persist(persist_dir=index_path)
+
+ # save index in vectorstore
+ db = chromadb.PersistentClient(path=chroma_path)
+ collection = db.get_or_create_collection(name=f"file_{file_count}")
+ vector_store = ChromaVectorStore(chroma_collection=collection)
+ storage_context = StorageContext.from_defaults(vector_store=vector_store)
+ chroma_vector_index = VectorStoreIndex.from_documents(
+ documents=[docs_dict[title]],
+ storage_context=storage_context,
+ embed_model=embed_model,
+ show_progress=True,
+ )
+
+ out_path = Path(f"{index_dir}/summaries/{title}")
+ summary = f"This is a article about {title}"
+ if not out_path.exists():
+ # summary_index = SummaryIndex.from_documents(
+ # [docs_dict[title]], callback_manager=callback_manager
+ # )
+ # summarizer = summary_index.as_query_engine(
+ # reponse_mode="tree_summarize", llm=llm
+ # )
+ # response = summarizer.query(f"Give a summary of {title}")
+ Path(f"{index_dir}/summaries").mkdir(exist_ok=True)
+ with open(out_path, "w") as f:
+ f.write(summary)
+ node = IndexNode(text=summary, index_id=title)
+ nodes.append(node)
+
+ file_count += 1
+
+ return nodes
+
+
+def create_top_index(data_dir, index_dir):
+ # data_dir分级 (blog, qa, etc.)
+ data_types = []
+ all_nodes = []
+ for dir in os.listdir(data_dir):
+ if os.path.isdir(f"{data_dir}/{dir}"):
+ data_types.append(dir)
+ for data_type in data_types:
+ nodes = prepare_nodes(f"{data_dir}/{data_type}", index_dir, data_type=data_type)
+ all_nodes.extend(nodes)
+
+ index_dir = f"{index_dir}/top_index"
+ # vector top index
+ if not os.path.exists(index_dir):
+ # create index
+ top_vector_index = VectorStoreIndex(nodes=all_nodes)
+ top_vector_index.storage_context.persist(persist_dir=index_dir)
+ else:
+ # load and insert
+ top_vector_index = load_index_from_storage(storage_context=StorageContext.from_defaults(persist_dir=index_dir))
+ top_vector_index.insert_nodes(nodes=all_nodes)
+ # bm25
+ bm25_retriever = BM25Retriever.from_defaults(
+ nodes=all_nodes,
+ similarity_top_k=2,
+ stemmer=Stemmer.Stemmer("english"),
+ language="english"
+ )
+ bm25_retriever.persist(f"{index_dir}/bm25_retriever")
+
+
+
+def create_top_index_chroma(data_dir, index_dir):
+ # data_dir分级 (blog, qa, etc.)
+ data_types = []
+ all_nodes = []
+ chroma_path = f"{index_dir}/chroma"
+ for dir in os.listdir(data_dir):
+ if os.path.isdir(f"{data_dir}/{dir}"):
+ data_types.append(dir)
+ for data_type in data_types:
+ nodes = prepare_nodes(f"{data_dir}/{data_type}", index_dir, data_type=data_type, chroma_path=chroma_path)
+ all_nodes.extend(nodes)
+
+ index_dir = f"{index_dir}/chroma/top_index"
+ db = chromadb.PersistentClient(path=index_dir)
+ chroma_collection = db.get_or_create_collection(name="top_index")
+ vector_store = ChromaVectorStore(chroma_collection=chroma_collection)
+ if not os.path.exists(index_dir):
+ # create index
+ top_vector_index = VectorStoreIndex(nodes=all_nodes, storage_context=StorageContext.from_defaults(vector_store=vector_store))
+
+ else:
+ # load index
+ top_vector_index = VectorStoreIndex.from_vector_store(
+ vector_store=vector_store,
+ )
+
+ # bm25
+ bm25_retriever = BM25Retriever.from_defaults(
+ nodes=all_nodes,
+ similarity_top_k=2,
+ stemmer=Stemmer.Stemmer("english"),
+ language="english"
+ )
+ bm25_retriever.persist(f"{index_dir}/bm25_retriever")
+
+
+
+def get_recursive_retriever(data_dir, index_dir):
+ top_vector_index = load_index_from_storage(storage_context=StorageContext.from_defaults(persist_dir=f"{index_dir}/top_index"))
+ data_types = []
+ for dir in os.listdir(data_dir):
+ sub_dir = f"{data_dir}/{dir}"
+ if os.path.isdir(sub_dir):
+ data_types.append(sub_dir)
+ vector_retrievers = {}
+ for data_type in data_types:
+ titles = get_file_name(data_type)
+ for title in titles:
+ persistent_dir = f"{index_dir}/{title}"
+ if os.path.exists(persistent_dir):
+ vector_index = load_index_from_storage(storage_context=StorageContext.from_defaults(persist_dir=f"{index_dir}/{title}"))
+ vector_retriever = vector_index.as_retriever(similarity_top_k=3)
+ vector_retrievers[title] = vector_retriever
+ recursive_retriever = RecursiveRetriever(
+ "vector",
+ retriever_dict={"vector": top_vector_index.as_retriever(simliarity_top_k=5), **vector_retrievers},
+ verbose=True,
+ )
+ return recursive_retriever
+
+
+def get_bm25_recursive_retriever(data_dir, index_dir):
+ retriever = BM25Retriever.from_persist_dir(f"{index_dir}/top_index/bm25_retriever")
+ data_types = []
+ for dir in os.listdir(data_dir):
+ sub_dir = f"{data_dir}/{dir}"
+ if os.path.isdir(sub_dir):
+ data_types.append(sub_dir)
+ vector_retrievers = {}
+ for data_type in data_types:
+ titles = get_file_name(data_type)
+ for title in titles:
+ persistent_dir = f"{index_dir}/{title}"
+ if os.path.exists(persistent_dir):
+ vector_index = load_index_from_storage(storage_context=StorageContext.from_defaults(persist_dir=f"{index_dir}/{title}"))
+ vector_retriever = vector_index.as_retriever(similarity_top_k=3)
+ vector_retrievers[title] = vector_retriever
+ recursive_retriever = RecursiveRetriever(
+ "bm25",
+ retriever_dict={"bm25": retriever, **vector_retrievers},
+ verbose=True,
+ )
+ return recursive_retriever
+
+
+def get_hybrid_recursive_retriever(data_dir, index_dir):
+ bm25_retriever = BM25Retriever.from_persist_dir(f"{index_dir}/top_index/bm25_retriever")
+ vector_retriever = load_index_from_storage(storage_context=StorageContext.from_defaults(persist_dir=f"{index_dir}/top_index")).as_retriever(similarity_top_k=2)
+
+ retriever = QueryFusionRetriever(
+ retrievers=[bm25_retriever, vector_retriever],
+ similarity_top_k=2,
+ num_queries=1,
+ mode="reciprocal_rerank",
+ use_async=False,
+ verbose=True,
+ )
+ data_types = []
+ for dir in os.listdir(data_dir):
+ sub_dir = f"{data_dir}/{dir}"
+ if os.path.isdir(sub_dir):
+ data_types.append(sub_dir)
+ vector_retrievers = {}
+ for data_type in data_types:
+ titles = get_file_name(data_type)
+ for title in titles:
+ persistent_dir = f"{index_dir}/{title}"
+ if os.path.exists(persistent_dir):
+ vector_index = load_index_from_storage(storage_context=StorageContext.from_defaults(persist_dir=f"{index_dir}/{title}"))
+ vector_retriever = vector_index.as_retriever(similarity_top_k=1)
+ vector_retrievers[title] = vector_retriever
+ recursive_retriever = RecursiveRetriever(
+ "hybrid",
+ retriever_dict={"hybrid": retriever, **vector_retrievers},
+ verbose=True,
+ )
+ return recursive_retriever
+
+
+
+
+if __name__ == "__main__":
+ # create_top_index(data_dir="/data1/home/purui/projects/chatbot/data/txt", index_dir="/data1/home/purui/projects/chatbot/kb")
+ # top_index = load_index_from_storage(storage_context=StorageContext.from_defaults(persist_dir="/data1/home/purui/projects/chatbot/tests/kb/top_index"))
+ # retriever = top_index.as_retriever(similarity_top_k=2)
+ # nodes = retriever.retrieve("My girlfriend dont want sex. What should I do?")
+ # print(nodes)
+ # recursive_retriever = get_recursive_retriever(data_dir="/data1/home/purui/projects/chatbot/tests/data/txt", index_dir="/data1/home/purui/projects/chatbot/tests/kb")
+ # nodes = recursive_retriever.retrieve("what stages will I experience during the orgasm?")
+ # print(nodes)
+ # bm25_recursive_retriever = get_bm25_recursive_retriever(data_dir="/data1/home/purui/projects/chatbot/data/txt", index_dir="/data1/home/purui/projects/chatbot/kb")
+ # bm25_recursive_retriever.retrieve("How to give a good blowjob?")
+ # import nest_asyncio
+
+ # nest_asyncio.apply()
+
+ # hybrid_recursive_retriever = get_hybrid_recursive_retriever(data_dir="/data1/home/purui/projects/chatbot/data/txt", index_dir="/data1/home/purui/projects/chatbot/kb")
+ # hybrid_recursive_retriever.retrieve("How to give a good blowjob?")
+ # index = load_index_from_storage(storage_context=StorageContext.from_defaults(persist_dir="/data1/home/purui/projects/chatbot/kb/Intercourse feels strange"))
+ # nodes = index._get_node_with_embedding()
+ # print(nodes)
+ create_top_index_chroma(data_dir="/data1/home/purui/projects/chatbot/tests/data/txt", index_dir="/data1/home/purui/projects/chatbot/tests/kb")
\ No newline at end of file
diff --git a/utils/redis_config.yaml b/utils/redis_config.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..ac93bf2af67c7e716add142ca10c3c50b0a42a84
--- /dev/null
+++ b/utils/redis_config.yaml
@@ -0,0 +1,14 @@
+REDIS_URL:
+ "redis://default:V9XCXVOQC8YkgfwDnXIYlybSCRLaIPDR@redis-16574.c263.us-east-1-2.ec2.redns.redis-cloud.com:16574"
+
+HOST:
+ 192.168.199.230
+
+PORT:
+ 16574
+
+PASSWORD:
+ V9XCXVOQC8YkgfwDnXIYlybSCRLaIPDR
+
+TTL:
+ 259200
diff --git a/utils/retriever_chat_pipeline.py b/utils/retriever_chat_pipeline.py
new file mode 100644
index 0000000000000000000000000000000000000000..faab83ff4d19f401978d31edaa7738f308b3bd79
--- /dev/null
+++ b/utils/retriever_chat_pipeline.py
@@ -0,0 +1,238 @@
+from llama_index.core.query_pipeline import (
+ QueryPipeline,
+ InputComponent,
+ ArgPackComponent,
+)
+from llama_index.core.prompts import PromptTemplate
+from llama_index.llms.ollama import Ollama
+from llama_index.core.retrievers import RecursiveRetriever
+from llama_index.core import VectorStoreIndex, SimpleDirectoryReader, Settings, SummaryIndex, load_index_from_storage, StorageContext
+from utils.recursive_retrieve import get_file_name
+# from llama_index.postprocessor.colbert_rerank import ColbertRerank
+from llama_index.core.chat_engine import ContextChatEngine
+from utils.history import RedisChatHistory
+
+# First, we create an input component to capture the user query
+input_component = InputComponent()
+
+# Next, we use the LLM to rewrite a user query
+rewrite = (
+ "Please write a query to a semantic search engine using the current conversation.\n"
+ "\n"
+ "\n"
+ "{chat_history_str}"
+ "\n"
+ "\n"
+ "Latest message: {query_str}\n"
+ 'Query:"""\n'
+)
+rewrite_template = PromptTemplate(rewrite)
+llm = Ollama(model="pornchat", request_timeout=120)
+
+# we will retrieve two times, so we need to pack the retrieved nodes into a single list
+argpack_component = ArgPackComponent()
+
+# using that, we will retrieve...
+top_vector_index = load_index_from_storage(storage_context=StorageContext.from_defaults(persist_dir="/data1/home/purui/projects/chatbot/kb/top_index"))
+data_dir = "/data1/home/purui/projects/chatbot/data/txt"
+index_dir = "/data1/home/purui/projects/chatbot/kb"
+titles = get_file_name(data_dir)
+vector_retrievers = {}
+for title in titles:
+ vector_index = load_index_from_storage(storage_context=StorageContext.from_defaults(persist_dir=f"{index_dir}/{title}"))
+ vector_retriever = vector_index.as_retriever(similarity_top_k=1)
+ vector_retrievers[title] = vector_retriever
+recursive_retriever = RecursiveRetriever(
+ "vector",
+ retriever_dict={"vector": top_vector_index.as_retriever(simliarity_top_k=1), **vector_retrievers},
+)
+retriever = recursive_retriever
+
+# then postprocess/rerank with Colbert
+# reranker = ColbertRerank(top_n=3)
+
+# then lastly, we need to create a response using the nodes AND chat history
+from typing import Any, Dict, List, Optional
+from llama_index.core.bridge.pydantic import Field
+from llama_index.core.llms import ChatMessage
+from llama_index.core.query_pipeline import CustomQueryComponent
+from llama_index.core.schema import NodeWithScore
+
+DEFAULT_CONTEXT_PROMPT = (
+ "Here is some context that may be relevant:\n"
+ "-----\n"
+ "{node_context}\n"
+ "-----chat_history-----\n"
+ "{chat_history}\n"
+ "-----\n"
+ "Please write a response to the following question, using the above context:\n"
+ "{query_str}\n"
+)
+
+
+class ResponseWithChatHistory(CustomQueryComponent):
+ llm: Ollama = Field(..., description="Local LLM")
+ system_prompt: Optional[str] = Field(
+ default=None, description="System prompt to use for the LLM"
+ )
+ context_prompt: str = Field(
+ default=DEFAULT_CONTEXT_PROMPT,
+ description="Context prompt to use for the LLM",
+ )
+
+ def _validate_component_inputs(
+ self, input: Dict[str, Any]
+ ) -> Dict[str, Any]:
+ """Validate component inputs during run_component."""
+ # NOTE: this is OPTIONAL but we show you where to do validation as an example
+ return input
+
+ @property
+ def _input_keys(self) -> set:
+ """Input keys dict."""
+ # NOTE: These are required inputs. If you have optional inputs please override
+ # `optional_input_keys_dict`
+ return {"chat_history", "nodes", "query_str"}
+
+ @property
+ def _output_keys(self) -> set:
+ return {"response"}
+
+ def _prepare_context(
+ self,
+ chat_history: List[ChatMessage],
+ nodes: List[NodeWithScore],
+ query_str: str,
+ ) -> List[ChatMessage]:
+ node_context = ""
+ for idx, node in enumerate(nodes):
+ node_text = node.get_content(metadata_mode="llm")
+ node_context += f"Context Chunk {idx}:\n{node_text}\n\n"
+
+ formatted_context = self.context_prompt.format(
+ node_context=node_context, query_str=query_str, chat_history=chat_history
+ )
+ user_message = ChatMessage(role="user", content=formatted_context)
+
+ chat_history.append(user_message)
+
+ if self.system_prompt is not None:
+ chat_history = [
+ ChatMessage(role="system", content=self.system_prompt)
+ ] + chat_history
+
+ return chat_history
+
+ def _run_component(self, **kwargs) -> Dict[str, Any]:
+ """Run the component."""
+ chat_history = kwargs["chat_history"]
+ nodes = kwargs["nodes"]
+ query_str = kwargs["query_str"]
+
+ prepared_context = self._prepare_context(
+ chat_history, nodes, query_str
+ )
+ print(prepared_context)
+
+ response = llm.chat(prepared_context)
+
+ return {"response": response}
+
+ async def _arun_component(self, **kwargs: Any) -> Dict[str, Any]:
+ """Run the component asynchronously."""
+ # NOTE: Optional, but async LLM calls are easy to implement
+ chat_history = kwargs["chat_history"]
+ nodes = kwargs["nodes"]
+ query_str = kwargs["query_str"]
+
+ prepared_context = self._prepare_context(
+ chat_history, nodes, query_str
+ )
+
+ response = await llm.achat(prepared_context)
+
+ return {"response": response}
+
+
+response_component = ResponseWithChatHistory(
+ llm=llm,
+ system_prompt=(
+ "You are a Q&A system. You will be provided with the previous chat history, "
+ "as well as possibly relevant context, to assist in answering a user message."
+ ),
+)
+pipeline = QueryPipeline(
+ modules={
+ "input": input_component,
+ "rewrite_template": rewrite_template,
+ "llm": llm,
+ # "rewrite_retriever": retriever,
+ "query_retriever": retriever,
+ # "join": argpack_component,
+ # "reranker": reranker,
+ "response_component": response_component,
+ },
+ verbose=False,
+)
+
+# run both retrievers -- once with the hallucinated query, once with the real query
+pipeline.add_link(
+ "input", "rewrite_template", src_key="query_str", dest_key="query_str"
+)
+pipeline.add_link(
+ "input",
+ "rewrite_template",
+ src_key="chat_history_str",
+ dest_key="chat_history_str",
+)
+pipeline.add_link("rewrite_template", "llm")
+# pipeline.add_link("llm", "rewrite_retriever")
+pipeline.add_link("llm", "query_retriever")
+
+# each input to the argpack component needs a dest key -- it can be anything
+# then, the argpack component will pack all the inputs into a single list
+# pipeline.add_link("rewrite_retriever", "join", dest_key="rewrite_nodes")
+pipeline.add_link("query_retriever", "response_component", dest_key="nodes")
+
+# reranker needs the packed nodes and the query string
+# pipeline.add_link("join", "reranker", dest_key="nodes")
+# pipeline.add_link(
+# "input", "reranker", src_key="query_str", dest_key="query_str"
+# )
+
+# synthesizer needs the reranked nodes and query str
+# pipeline.add_link("reranker", "response_component", dest_key="nodes")
+pipeline.add_link(
+ "input", "response_component", src_key="query_str", dest_key="query_str"
+)
+pipeline.add_link(
+ "input",
+ "response_component",
+ src_key="chat_history",
+ dest_key="chat_history",
+)
+# from utils.history import RedisChatHistory
+
+# pipeline_memory = RedisChatHistory(userId="2343").as_memory()
+# chat_history = pipeline_memory.get()
+# chat_history_str = "\n".join([str(x) for x in chat_history])
+# msg = "Yes, provide more."
+# pipeline_memory.chat_store.add_message(key="1111", message=ChatMessage(role="user", content=msg))
+# response = pipeline.run(
+# query_str=msg,
+# chat_history=chat_history,
+# chat_history_str=chat_history_str,
+# )
+# pipeline_memory.chat_store.add_message(key="1111", message=ChatMessage(role="assistant", content=response.message.content))
+# print(response)
+from llama_index.core.query_engine import RetrieverQueryEngine
+query_engine_base = RetrieverQueryEngine.from_args(recursive_retriever, llm=Ollama(model="pornchat", request_timeout=120), verbose=True)
+memory = RedisChatHistory(userId="2343").as_memory()
+chat_engine = ContextChatEngine.from_defaults(
+ retriever=retriever,
+ llm=Ollama(model="pornchat", request_timeout=120),
+ system_prompt="You are a helpful sexual education professor to chat with users, named Winnie. You will answer any questions in a Kind and Friendly tone.",
+ memory=memory,
+)
+response = chat_engine.chat("Who are you?")
+print(response.response)
\ No newline at end of file
diff --git a/utils/tools.py b/utils/tools.py
new file mode 100644
index 0000000000000000000000000000000000000000..5a51cb22d9674939e2e1876833b9a0a62b6789dc
--- /dev/null
+++ b/utils/tools.py
@@ -0,0 +1,42 @@
+# 定义可使用工具
+from llama_index.core.indices.base import BaseIndex
+from llama_index.core.tools import QueryEngineTool, ToolMetadata
+from llama_index.core.agent import ReActAgent
+from llama_index.core import get_response_synthesizer
+from typing import List, Tuple
+
+
+def from_index(index: Tuple[str, BaseIndex]) -> Tuple[str, QueryEngineTool]:
+ """
+ Optional response mode:
+ - refine: LLM call per node
+ - compact: less LLM call compare to refine
+ - tree_summarize: tree based summarization
+ - simple_summarize: summarize all chunks
+ - context_only: Returns a concatenated string of all text chunks.
+ - accumulate: Good for when you need to run the same query separately against each text chunk.
+ - compact accumulate: less LLM call accumulate
+ """
+ index_name, vectorIndex = index
+ response_synthesizer = get_response_synthesizer(response_mode="compact")
+ query_engine = vectorIndex.as_query_engine(response_synthesizer=response_synthesizer, similiarity_top_k=3)
+ tool = QueryEngineTool(
+ query_engine=query_engine,
+ metadata=ToolMetadata(
+ name=index_name,
+ description=f"Useful for questions related to specific aspects of {index_name}"
+ ),
+ )
+ return (index_name, tool)
+
+def from_agent(agent: ReActAgent) -> List[QueryEngineTool]:
+ tool = QueryEngineTool(
+ query_engine=agent,
+ metadata=ToolMetadata(
+ name="agent",
+ description="This is a agent specilized in the topic: agent"
+ ),
+ )
+ return tool
+
+
\ No newline at end of file
diff --git a/workflow/display_workflow.py b/workflow/display_workflow.py
new file mode 100644
index 0000000000000000000000000000000000000000..e97e45a95b04378c36d89e3cf3a0090d925ff690
--- /dev/null
+++ b/workflow/display_workflow.py
@@ -0,0 +1,9 @@
+from llama_index.utils.workflow import (
+ draw_all_possible_flows,
+ draw_most_recent_execution,
+)
+from workflow.sql_workflow import SQLWorkflow
+
+# Draw all
+draw_all_possible_flows(SQLWorkflow, filename="vibemate_workflow.html")
+
diff --git a/workflow/events.py b/workflow/events.py
new file mode 100644
index 0000000000000000000000000000000000000000..d06b305e0f21b9587b11bfbff6dddd524b831c42
--- /dev/null
+++ b/workflow/events.py
@@ -0,0 +1,107 @@
+from llama_index.core.workflow import (
+ Event
+)
+from typing import Optional
+
+class QueryEvent(Event):
+ """Query event."""
+ query: str
+ tag: str
+
+class VideoSearch(Event):
+ """Video search event."""
+ query: str
+
+class ImageSearch(Event):
+ """Image search event."""
+ query: str
+
+class GeneralSearch(Event):
+ """General search event."""
+ query: str
+ tag: str
+ ads: Optional[str] = None
+
+
+class TableRetrieveEvent(Event):
+ """Result of retriever."""
+ table_context_str: str
+ query: str
+
+
+class Text2SQLEvent(Event):
+ """Text2SQL event."""
+ sql: str
+ query: str
+
+
+class RetrieveContextEvent(Event):
+ """Additional context."""
+ context_str: str
+
+
+class FullContextEvent(Event):
+ """Additional context."""
+ context_str: str
+
+
+class CasualChatEvent(Event):
+ """Casual chat event."""
+ query: str
+
+
+class SearchEvent(Event):
+ """General question event."""
+ query: str
+
+
+class VideoResourceEvent(SearchEvent):
+ """General question event."""
+ query: str
+
+
+class ImageResourceEvent(SearchEvent):
+ """General question event."""
+ query: str
+
+
+class GeneralSearchEvent(SearchEvent):
+ """General question event."""
+ query: str
+ tag: str
+
+
+class MilvusDBEvent(Event):
+ """MilvusDB event."""
+ query: str
+
+
+class MilvusDBSearchEvent(Event):
+ """MilvusDB search event."""
+ query: str
+
+class SafeStartEvent(Event):
+ """Safe start event."""
+ query: str
+
+
+class RefuseEvent(Event):
+ """Refuse event."""
+ lang: str
+ query: Optional[str] = None
+ adult: Optional[bool] = None
+
+class StatusEvent(Event):
+ """Status event."""
+ status: str
+
+class TokenEvent(Event):
+ """Token event."""
+ token: str
+
+class ControlEvent(Event):
+ """Control event."""
+ toy_id: str
+ query: str
+ user_id: str
+ content: str
\ No newline at end of file
diff --git a/workflow/lib/bindings/utils.js b/workflow/lib/bindings/utils.js
new file mode 100644
index 0000000000000000000000000000000000000000..088effe2051dd483c3b638c0701e25e4fb685688
--- /dev/null
+++ b/workflow/lib/bindings/utils.js
@@ -0,0 +1,189 @@
+function neighbourhoodHighlight(params) {
+ // console.log("in nieghbourhoodhighlight");
+ allNodes = nodes.get({ returnType: "Object" });
+ // originalNodes = JSON.parse(JSON.stringify(allNodes));
+ // if something is selected:
+ if (params.nodes.length > 0) {
+ highlightActive = true;
+ var i, j;
+ var selectedNode = params.nodes[0];
+ var degrees = 2;
+
+ // mark all nodes as hard to read.
+ for (let nodeId in allNodes) {
+ // nodeColors[nodeId] = allNodes[nodeId].color;
+ allNodes[nodeId].color = "rgba(200,200,200,0.5)";
+ if (allNodes[nodeId].hiddenLabel === undefined) {
+ allNodes[nodeId].hiddenLabel = allNodes[nodeId].label;
+ allNodes[nodeId].label = undefined;
+ }
+ }
+ var connectedNodes = network.getConnectedNodes(selectedNode);
+ var allConnectedNodes = [];
+
+ // get the second degree nodes
+ for (i = 1; i < degrees; i++) {
+ for (j = 0; j < connectedNodes.length; j++) {
+ allConnectedNodes = allConnectedNodes.concat(
+ network.getConnectedNodes(connectedNodes[j])
+ );
+ }
+ }
+
+ // all second degree nodes get a different color and their label back
+ for (i = 0; i < allConnectedNodes.length; i++) {
+ // allNodes[allConnectedNodes[i]].color = "pink";
+ allNodes[allConnectedNodes[i]].color = "rgba(150,150,150,0.75)";
+ if (allNodes[allConnectedNodes[i]].hiddenLabel !== undefined) {
+ allNodes[allConnectedNodes[i]].label =
+ allNodes[allConnectedNodes[i]].hiddenLabel;
+ allNodes[allConnectedNodes[i]].hiddenLabel = undefined;
+ }
+ }
+
+ // all first degree nodes get their own color and their label back
+ for (i = 0; i < connectedNodes.length; i++) {
+ // allNodes[connectedNodes[i]].color = undefined;
+ allNodes[connectedNodes[i]].color = nodeColors[connectedNodes[i]];
+ if (allNodes[connectedNodes[i]].hiddenLabel !== undefined) {
+ allNodes[connectedNodes[i]].label =
+ allNodes[connectedNodes[i]].hiddenLabel;
+ allNodes[connectedNodes[i]].hiddenLabel = undefined;
+ }
+ }
+
+ // the main node gets its own color and its label back.
+ // allNodes[selectedNode].color = undefined;
+ allNodes[selectedNode].color = nodeColors[selectedNode];
+ if (allNodes[selectedNode].hiddenLabel !== undefined) {
+ allNodes[selectedNode].label = allNodes[selectedNode].hiddenLabel;
+ allNodes[selectedNode].hiddenLabel = undefined;
+ }
+ } else if (highlightActive === true) {
+ // console.log("highlightActive was true");
+ // reset all nodes
+ for (let nodeId in allNodes) {
+ // allNodes[nodeId].color = "purple";
+ allNodes[nodeId].color = nodeColors[nodeId];
+ // delete allNodes[nodeId].color;
+ if (allNodes[nodeId].hiddenLabel !== undefined) {
+ allNodes[nodeId].label = allNodes[nodeId].hiddenLabel;
+ allNodes[nodeId].hiddenLabel = undefined;
+ }
+ }
+ highlightActive = false;
+ }
+
+ // transform the object into an array
+ var updateArray = [];
+ if (params.nodes.length > 0) {
+ for (let nodeId in allNodes) {
+ if (allNodes.hasOwnProperty(nodeId)) {
+ // console.log(allNodes[nodeId]);
+ updateArray.push(allNodes[nodeId]);
+ }
+ }
+ nodes.update(updateArray);
+ } else {
+ // console.log("Nothing was selected");
+ for (let nodeId in allNodes) {
+ if (allNodes.hasOwnProperty(nodeId)) {
+ // console.log(allNodes[nodeId]);
+ // allNodes[nodeId].color = {};
+ updateArray.push(allNodes[nodeId]);
+ }
+ }
+ nodes.update(updateArray);
+ }
+}
+
+function filterHighlight(params) {
+ allNodes = nodes.get({ returnType: "Object" });
+ // if something is selected:
+ if (params.nodes.length > 0) {
+ filterActive = true;
+ let selectedNodes = params.nodes;
+
+ // hiding all nodes and saving the label
+ for (let nodeId in allNodes) {
+ allNodes[nodeId].hidden = true;
+ if (allNodes[nodeId].savedLabel === undefined) {
+ allNodes[nodeId].savedLabel = allNodes[nodeId].label;
+ allNodes[nodeId].label = undefined;
+ }
+ }
+
+ for (let i=0; i < selectedNodes.length; i++) {
+ allNodes[selectedNodes[i]].hidden = false;
+ if (allNodes[selectedNodes[i]].savedLabel !== undefined) {
+ allNodes[selectedNodes[i]].label = allNodes[selectedNodes[i]].savedLabel;
+ allNodes[selectedNodes[i]].savedLabel = undefined;
+ }
+ }
+
+ } else if (filterActive === true) {
+ // reset all nodes
+ for (let nodeId in allNodes) {
+ allNodes[nodeId].hidden = false;
+ if (allNodes[nodeId].savedLabel !== undefined) {
+ allNodes[nodeId].label = allNodes[nodeId].savedLabel;
+ allNodes[nodeId].savedLabel = undefined;
+ }
+ }
+ filterActive = false;
+ }
+
+ // transform the object into an array
+ var updateArray = [];
+ if (params.nodes.length > 0) {
+ for (let nodeId in allNodes) {
+ if (allNodes.hasOwnProperty(nodeId)) {
+ updateArray.push(allNodes[nodeId]);
+ }
+ }
+ nodes.update(updateArray);
+ } else {
+ for (let nodeId in allNodes) {
+ if (allNodes.hasOwnProperty(nodeId)) {
+ updateArray.push(allNodes[nodeId]);
+ }
+ }
+ nodes.update(updateArray);
+ }
+}
+
+function selectNode(nodes) {
+ network.selectNodes(nodes);
+ neighbourhoodHighlight({ nodes: nodes });
+ return nodes;
+}
+
+function selectNodes(nodes) {
+ network.selectNodes(nodes);
+ filterHighlight({nodes: nodes});
+ return nodes;
+}
+
+function highlightFilter(filter) {
+ let selectedNodes = []
+ let selectedProp = filter['property']
+ if (filter['item'] === 'node') {
+ let allNodes = nodes.get({ returnType: "Object" });
+ for (let nodeId in allNodes) {
+ if (allNodes[nodeId][selectedProp] && filter['value'].includes((allNodes[nodeId][selectedProp]).toString())) {
+ selectedNodes.push(nodeId)
+ }
+ }
+ }
+ else if (filter['item'] === 'edge'){
+ let allEdges = edges.get({returnType: 'object'});
+ // check if the selected property exists for selected edge and select the nodes connected to the edge
+ for (let edge in allEdges) {
+ if (allEdges[edge][selectedProp] && filter['value'].includes((allEdges[edge][selectedProp]).toString())) {
+ selectedNodes.push(allEdges[edge]['from'])
+ selectedNodes.push(allEdges[edge]['to'])
+ }
+ }
+ }
+ selectNodes(selectedNodes)
+}
\ No newline at end of file
diff --git a/workflow/lib/tom-select/tom-select.complete.min.js b/workflow/lib/tom-select/tom-select.complete.min.js
new file mode 100644
index 0000000000000000000000000000000000000000..e2e0211fecd8511afccfc177ee4b7f235a5b37fc
--- /dev/null
+++ b/workflow/lib/tom-select/tom-select.complete.min.js
@@ -0,0 +1,356 @@
+/**
+* Tom Select v2.0.0-rc.4
+* Licensed under the Apache License, Version 2.0 (the "License");
+*/
+!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).TomSelect=t()}(this,(function(){"use strict"
+function e(e,t){e.split(/\s+/).forEach((e=>{t(e)}))}class t{constructor(){this._events={}}on(t,i){e(t,(e=>{this._events[e]=this._events[e]||[],this._events[e].push(i)}))}off(t,i){var s=arguments.length
+0!==s?e(t,(e=>{if(1===s)return delete this._events[e]
+e in this._events!=!1&&this._events[e].splice(this._events[e].indexOf(i),1)})):this._events={}}trigger(t,...i){var s=this
+e(t,(e=>{if(e in s._events!=!1)for(let t of s._events[e])t.apply(s,i)}))}}var i
+const s="[̀-ͯ·ʾ]",n=new RegExp(s,"g")
+var o
+const r={"æ":"ae","ⱥ":"a","ø":"o"},l=new RegExp(Object.keys(r).join("|"),"g"),a=[[67,67],[160,160],[192,438],[452,652],[961,961],[1019,1019],[1083,1083],[1281,1289],[1984,1984],[5095,5095],[7429,7441],[7545,7549],[7680,7935],[8580,8580],[9398,9449],[11360,11391],[42792,42793],[42802,42851],[42873,42897],[42912,42922],[64256,64260],[65313,65338],[65345,65370]],c=e=>e.normalize("NFKD").replace(n,"").toLowerCase().replace(l,(function(e){return r[e]})),d=(e,t="|")=>{if(1==e.length)return e[0]
+var i=1
+return e.forEach((e=>{i=Math.max(i,e.length)})),1==i?"["+e.join("")+"]":"(?:"+e.join(t)+")"},p=e=>{if(1===e.length)return[[e]]
+var t=[]
+return p(e.substring(1)).forEach((function(i){var s=i.slice(0)
+s[0]=e.charAt(0)+s[0],t.push(s),(s=i.slice(0)).unshift(e.charAt(0)),t.push(s)})),t},u=e=>{void 0===o&&(o=(()=>{var e={}
+a.forEach((t=>{for(let s=t[0];s<=t[1];s++){let t=String.fromCharCode(s),n=c(t)
+if(n!=t.toLowerCase()){n in e||(e[n]=[n])
+var i=new RegExp(d(e[n]),"iu")
+t.match(i)||e[n].push(t)}}}))
+var t=Object.keys(e)
+t=t.sort(((e,t)=>t.length-e.length)),i=new RegExp("("+d(t)+"[̀-ͯ·ʾ]*)","g")
+var s={}
+return t.sort(((e,t)=>e.length-t.length)).forEach((t=>{var i=p(t).map((t=>(t=t.map((t=>e.hasOwnProperty(t)?d(e[t]):t)),d(t,""))))
+s[t]=d(i)})),s})())
+return e.normalize("NFKD").toLowerCase().split(i).map((e=>{if(""==e)return""
+const t=c(e)
+if(o.hasOwnProperty(t))return o[t]
+const i=e.normalize("NFC")
+return i!=e?d([e,i]):e})).join("")},h=(e,t)=>{if(e)return e[t]},g=(e,t)=>{if(e){for(var i,s=t.split(".");(i=s.shift())&&(e=e[i]););return e}},f=(e,t,i)=>{var s,n
+return e?-1===(n=(e+="").search(t.regex))?0:(s=t.string.length/e.length,0===n&&(s+=.5),s*i):0},v=e=>(e+"").replace(/([\$\(-\+\.\?\[-\^\{-\}])/g,"\\$1"),m=(e,t)=>{var i=e[t]
+if("function"==typeof i)return i
+i&&!Array.isArray(i)&&(e[t]=[i])},y=(e,t)=>{if(Array.isArray(e))e.forEach(t)
+else for(var i in e)e.hasOwnProperty(i)&&t(e[i],i)},O=(e,t)=>"number"==typeof e&&"number"==typeof t?e>t?1:e(t=c(t+"").toLowerCase())?1:t>e?-1:0
+class b{constructor(e,t){this.items=e,this.settings=t||{diacritics:!0}}tokenize(e,t,i){if(!e||!e.length)return[]
+const s=[],n=e.split(/\s+/)
+var o
+return i&&(o=new RegExp("^("+Object.keys(i).map(v).join("|")+"):(.*)$")),n.forEach((e=>{let i,n=null,r=null
+o&&(i=e.match(o))&&(n=i[1],e=i[2]),e.length>0&&(r=v(e),this.settings.diacritics&&(r=u(r)),t&&(r="\\b"+r)),s.push({string:e,regex:r?new RegExp(r,"iu"):null,field:n})})),s}getScoreFunction(e,t){var i=this.prepareSearch(e,t)
+return this._getScoreFunction(i)}_getScoreFunction(e){const t=e.tokens,i=t.length
+if(!i)return function(){return 0}
+const s=e.options.fields,n=e.weights,o=s.length,r=e.getAttrFn
+if(!o)return function(){return 1}
+const l=1===o?function(e,t){const i=s[0].field
+return f(r(t,i),e,n[i])}:function(e,t){var i=0
+if(e.field){const s=r(t,e.field)
+!e.regex&&s?i+=1/o:i+=f(s,e,1)}else y(n,((s,n)=>{i+=f(r(t,n),e,s)}))
+return i/o}
+return 1===i?function(e){return l(t[0],e)}:"and"===e.options.conjunction?function(e){for(var s,n=0,o=0;n{s+=l(t,e)})),s/i}}getSortFunction(e,t){var i=this.prepareSearch(e,t)
+return this._getSortFunction(i)}_getSortFunction(e){var t,i,s
+const n=this,o=e.options,r=!e.query&&o.sort_empty?o.sort_empty:o.sort,l=[],a=[]
+if("function"==typeof r)return r.bind(this)
+const c=function(t,i){return"$score"===t?i.score:e.getAttrFn(n.items[i.id],t)}
+if(r)for(t=0,i=r.length;t{"string"==typeof t&&(t={field:t,weight:1}),e.push(t),i[t.field]="weight"in t?t.weight:1})),s.fields=e}return{options:s,query:e.toLowerCase().trim(),tokens:this.tokenize(e,s.respect_word_boundaries,i),total:0,items:[],weights:i,getAttrFn:s.nesting?g:h}}search(e,t){var i,s,n=this
+s=this.prepareSearch(e,t),t=s.options,e=s.query
+const o=t.score||n._getScoreFunction(s)
+e.length?y(n.items,((e,n)=>{i=o(e),(!1===t.filter||i>0)&&s.items.push({score:i,id:n})})):y(n.items,((e,t)=>{s.items.push({score:1,id:t})}))
+const r=n._getSortFunction(s)
+return r&&s.items.sort(r),s.total=s.items.length,"number"==typeof t.limit&&(s.items=s.items.slice(0,t.limit)),s}}const w=e=>{if(e.jquery)return e[0]
+if(e instanceof HTMLElement)return e
+if(e.indexOf("<")>-1){let t=document.createElement("div")
+return t.innerHTML=e.trim(),t.firstChild}return document.querySelector(e)},_=(e,t)=>{var i=document.createEvent("HTMLEvents")
+i.initEvent(t,!0,!1),e.dispatchEvent(i)},I=(e,t)=>{Object.assign(e.style,t)},C=(e,...t)=>{var i=A(t);(e=x(e)).map((e=>{i.map((t=>{e.classList.add(t)}))}))},S=(e,...t)=>{var i=A(t);(e=x(e)).map((e=>{i.map((t=>{e.classList.remove(t)}))}))},A=e=>{var t=[]
+return y(e,(e=>{"string"==typeof e&&(e=e.trim().split(/[\11\12\14\15\40]/)),Array.isArray(e)&&(t=t.concat(e))})),t.filter(Boolean)},x=e=>(Array.isArray(e)||(e=[e]),e),k=(e,t,i)=>{if(!i||i.contains(e))for(;e&&e.matches;){if(e.matches(t))return e
+e=e.parentNode}},F=(e,t=0)=>t>0?e[e.length-1]:e[0],L=(e,t)=>{if(!e)return-1
+t=t||e.nodeName
+for(var i=0;e=e.previousElementSibling;)e.matches(t)&&i++
+return i},P=(e,t)=>{y(t,((t,i)=>{null==t?e.removeAttribute(i):e.setAttribute(i,""+t)}))},E=(e,t)=>{e.parentNode&&e.parentNode.replaceChild(t,e)},T=(e,t)=>{if(null===t)return
+if("string"==typeof t){if(!t.length)return
+t=new RegExp(t,"i")}const i=e=>3===e.nodeType?(e=>{var i=e.data.match(t)
+if(i&&e.data.length>0){var s=document.createElement("span")
+s.className="highlight"
+var n=e.splitText(i.index)
+n.splitText(i[0].length)
+var o=n.cloneNode(!0)
+return s.appendChild(o),E(n,s),1}return 0})(e):((e=>{if(1===e.nodeType&&e.childNodes&&!/(script|style)/i.test(e.tagName)&&("highlight"!==e.className||"SPAN"!==e.tagName))for(var t=0;t0},render:{}}
+const q=e=>null==e?null:D(e),D=e=>"boolean"==typeof e?e?"1":"0":e+"",N=e=>(e+"").replace(/&/g,"&").replace(//g,">").replace(/"/g,"""),z=(e,t)=>{var i
+return function(s,n){var o=this
+i&&(o.loading=Math.max(o.loading-1,0),clearTimeout(i)),i=setTimeout((function(){i=null,o.loadedSearches[s]=!0,e.call(o,s,n)}),t)}},R=(e,t,i)=>{var s,n=e.trigger,o={}
+for(s in e.trigger=function(){var i=arguments[0]
+if(-1===t.indexOf(i))return n.apply(e,arguments)
+o[i]=arguments},i.apply(e,[]),e.trigger=n,o)n.apply(e,o[s])},H=(e,t=!1)=>{e&&(e.preventDefault(),t&&e.stopPropagation())},B=(e,t,i,s)=>{e.addEventListener(t,i,s)},K=(e,t)=>!!t&&(!!t[e]&&1===(t.altKey?1:0)+(t.ctrlKey?1:0)+(t.shiftKey?1:0)+(t.metaKey?1:0)),M=(e,t)=>{const i=e.getAttribute("id")
+return i||(e.setAttribute("id",t),t)},Q=e=>e.replace(/[\\"']/g,"\\$&"),G=(e,t)=>{t&&e.append(t)}
+function U(e,t){var i=Object.assign({},j,t),s=i.dataAttr,n=i.labelField,o=i.valueField,r=i.disabledField,l=i.optgroupField,a=i.optgroupLabelField,c=i.optgroupValueField,d=e.tagName.toLowerCase(),p=e.getAttribute("placeholder")||e.getAttribute("data-placeholder")
+if(!p&&!i.allowEmptyOption){let t=e.querySelector('option[value=""]')
+t&&(p=t.textContent)}var u,h,g,f,v,m,O={placeholder:p,options:[],optgroups:[],items:[],maxItems:null}
+return"select"===d?(h=O.options,g={},f=1,v=e=>{var t=Object.assign({},e.dataset),i=s&&t[s]
+return"string"==typeof i&&i.length&&(t=Object.assign(t,JSON.parse(i))),t},m=(e,t)=>{var s=q(e.value)
+if(null!=s&&(s||i.allowEmptyOption)){if(g.hasOwnProperty(s)){if(t){var a=g[s][l]
+a?Array.isArray(a)?a.push(t):g[s][l]=[a,t]:g[s][l]=t}}else{var c=v(e)
+c[n]=c[n]||e.textContent,c[o]=c[o]||s,c[r]=c[r]||e.disabled,c[l]=c[l]||t,c.$option=e,g[s]=c,h.push(c)}e.selected&&O.items.push(s)}},O.maxItems=e.hasAttribute("multiple")?null:1,y(e.children,(e=>{var t,i,s
+"optgroup"===(u=e.tagName.toLowerCase())?((s=v(t=e))[a]=s[a]||t.getAttribute("label")||"",s[c]=s[c]||f++,s[r]=s[r]||t.disabled,O.optgroups.push(s),i=s[c],y(t.children,(e=>{m(e,i)}))):"option"===u&&m(e)}))):(()=>{const t=e.getAttribute(s)
+if(t)O.options=JSON.parse(t),y(O.options,(e=>{O.items.push(e[o])}))
+else{var r=e.value.trim()||""
+if(!i.allowEmptyOption&&!r.length)return
+const t=r.split(i.delimiter)
+y(t,(e=>{const t={}
+t[n]=e,t[o]=e,O.options.push(t)})),O.items=t}})(),Object.assign({},j,O,t)}var W=0
+class J extends(function(e){return e.plugins={},class extends e{constructor(...e){super(...e),this.plugins={names:[],settings:{},requested:{},loaded:{}}}static define(t,i){e.plugins[t]={name:t,fn:i}}initializePlugins(e){var t,i
+const s=this,n=[]
+if(Array.isArray(e))e.forEach((e=>{"string"==typeof e?n.push(e):(s.plugins.settings[e.name]=e.options,n.push(e.name))}))
+else if(e)for(t in e)e.hasOwnProperty(t)&&(s.plugins.settings[t]=e[t],n.push(t))
+for(;i=n.shift();)s.require(i)}loadPlugin(t){var i=this,s=i.plugins,n=e.plugins[t]
+if(!e.plugins.hasOwnProperty(t))throw new Error('Unable to find "'+t+'" plugin')
+s.requested[t]=!0,s.loaded[t]=n.fn.apply(i,[i.plugins.settings[t]||{}]),s.names.push(t)}require(e){var t=this,i=t.plugins
+if(!t.plugins.loaded.hasOwnProperty(e)){if(i.requested[e])throw new Error('Plugin has circular dependency ("'+e+'")')
+t.loadPlugin(e)}return i.loaded[e]}}}(t)){constructor(e,t){var i
+super(),this.order=0,this.isOpen=!1,this.isDisabled=!1,this.isInvalid=!1,this.isValid=!0,this.isLocked=!1,this.isFocused=!1,this.isInputHidden=!1,this.isSetup=!1,this.ignoreFocus=!1,this.hasOptions=!1,this.lastValue="",this.caretPos=0,this.loading=0,this.loadedSearches={},this.activeOption=null,this.activeItems=[],this.optgroups={},this.options={},this.userOptions={},this.items=[],W++
+var s=w(e)
+if(s.tomselect)throw new Error("Tom Select already initialized on this element")
+s.tomselect=this,i=(window.getComputedStyle&&window.getComputedStyle(s,null)).getPropertyValue("direction")
+const n=U(s,t)
+this.settings=n,this.input=s,this.tabIndex=s.tabIndex||0,this.is_select_tag="select"===s.tagName.toLowerCase(),this.rtl=/rtl/i.test(i),this.inputId=M(s,"tomselect-"+W),this.isRequired=s.required,this.sifter=new b(this.options,{diacritics:n.diacritics}),n.mode=n.mode||(1===n.maxItems?"single":"multi"),"boolean"!=typeof n.hideSelected&&(n.hideSelected="multi"===n.mode),"boolean"!=typeof n.hidePlaceholder&&(n.hidePlaceholder="multi"!==n.mode)
+var o=n.createFilter
+"function"!=typeof o&&("string"==typeof o&&(o=new RegExp(o)),o instanceof RegExp?n.createFilter=e=>o.test(e):n.createFilter=()=>!0),this.initializePlugins(n.plugins),this.setupCallbacks(),this.setupTemplates()
+const r=w(""),l=w("
"),a=this._render("dropdown"),c=w('
'),d=this.input.getAttribute("class")||"",p=n.mode
+var u
+if(C(r,n.wrapperClass,d,p),C(l,n.controlClass),G(r,l),C(a,n.dropdownClass,p),n.copyClassesToDropdown&&C(a,d),C(c,n.dropdownContentClass),G(a,c),w(n.dropdownParent||r).appendChild(a),n.hasOwnProperty("controlInput"))n.controlInput?(u=w(n.controlInput),this.focus_node=u):(u=w("
"),this.focus_node=l)
+else{u=w('
')
+y(["autocorrect","autocapitalize","autocomplete"],(e=>{s.getAttribute(e)&&P(u,{[e]:s.getAttribute(e)})})),u.tabIndex=-1,l.appendChild(u),this.focus_node=u}this.wrapper=r,this.dropdown=a,this.dropdown_content=c,this.control=l,this.control_input=u,this.setup()}setup(){const e=this,t=e.settings,i=e.control_input,s=e.dropdown,n=e.dropdown_content,o=e.wrapper,r=e.control,l=e.input,a=e.focus_node,c={passive:!0},d=e.inputId+"-ts-dropdown"
+P(n,{id:d}),P(a,{role:"combobox","aria-haspopup":"listbox","aria-expanded":"false","aria-controls":d})
+const p=M(a,e.inputId+"-ts-control"),u="label[for='"+(e=>e.replace(/['"\\]/g,"\\$&"))(e.inputId)+"']",h=document.querySelector(u),g=e.focus.bind(e)
+if(h){B(h,"click",g),P(h,{for:p})
+const t=M(h,e.inputId+"-ts-label")
+P(a,{"aria-labelledby":t}),P(n,{"aria-labelledby":t})}if(o.style.width=l.style.width,e.plugins.names.length){const t="plugin-"+e.plugins.names.join(" plugin-")
+C([o,s],t)}(null===t.maxItems||t.maxItems>1)&&e.is_select_tag&&P(l,{multiple:"multiple"}),e.settings.placeholder&&P(i,{placeholder:t.placeholder}),!e.settings.splitOn&&e.settings.delimiter&&(e.settings.splitOn=new RegExp("\\s*"+v(e.settings.delimiter)+"+\\s*")),t.load&&t.loadThrottle&&(t.load=z(t.load,t.loadThrottle)),e.control_input.type=l.type,B(s,"click",(t=>{const i=k(t.target,"[data-selectable]")
+i&&(e.onOptionSelect(t,i),H(t,!0))})),B(r,"click",(t=>{var s=k(t.target,"[data-ts-item]",r)
+s&&e.onItemSelect(t,s)?H(t,!0):""==i.value&&(e.onClick(),H(t,!0))})),B(i,"mousedown",(e=>{""!==i.value&&e.stopPropagation()})),B(a,"keydown",(t=>e.onKeyDown(t))),B(i,"keypress",(t=>e.onKeyPress(t))),B(i,"input",(t=>e.onInput(t))),B(a,"resize",(()=>e.positionDropdown()),c),B(a,"blur",(t=>e.onBlur(t))),B(a,"focus",(t=>e.onFocus(t))),B(a,"paste",(t=>e.onPaste(t)))
+const f=t=>{const i=t.composedPath()[0]
+if(!o.contains(i)&&!s.contains(i))return e.isFocused&&e.blur(),void e.inputState()
+H(t,!0)}
+var m=()=>{e.isOpen&&e.positionDropdown()}
+B(document,"mousedown",f),B(window,"scroll",m,c),B(window,"resize",m,c),this._destroy=()=>{document.removeEventListener("mousedown",f),window.removeEventListener("sroll",m),window.removeEventListener("resize",m),h&&h.removeEventListener("click",g)},this.revertSettings={innerHTML:l.innerHTML,tabIndex:l.tabIndex},l.tabIndex=-1,l.insertAdjacentElement("afterend",e.wrapper),e.sync(!1),t.items=[],delete t.optgroups,delete t.options,B(l,"invalid",(t=>{e.isValid&&(e.isValid=!1,e.isInvalid=!0,e.refreshState())})),e.updateOriginalInput(),e.refreshItems(),e.close(!1),e.inputState(),e.isSetup=!0,l.disabled?e.disable():e.enable(),e.on("change",this.onChange),C(l,"tomselected","ts-hidden-accessible"),e.trigger("initialize"),!0===t.preload&&e.preload()}setupOptions(e=[],t=[]){this.addOptions(e),y(t,(e=>{this.registerOptionGroup(e)}))}setupTemplates(){var e=this,t=e.settings.labelField,i=e.settings.optgroupLabelField,s={optgroup:e=>{let t=document.createElement("div")
+return t.className="optgroup",t.appendChild(e.options),t},optgroup_header:(e,t)=>'",option:(e,i)=>"
"+i(e[t])+"
",item:(e,i)=>"
"+i(e[t])+"
",option_create:(e,t)=>'
Add '+t(e.input)+" …
",no_results:()=>'
No results found
',loading:()=>'
',not_loading:()=>{},dropdown:()=>"
"}
+e.settings.render=Object.assign({},s,e.settings.render)}setupCallbacks(){var e,t,i={initialize:"onInitialize",change:"onChange",item_add:"onItemAdd",item_remove:"onItemRemove",item_select:"onItemSelect",clear:"onClear",option_add:"onOptionAdd",option_remove:"onOptionRemove",option_clear:"onOptionClear",optgroup_add:"onOptionGroupAdd",optgroup_remove:"onOptionGroupRemove",optgroup_clear:"onOptionGroupClear",dropdown_open:"onDropdownOpen",dropdown_close:"onDropdownClose",type:"onType",load:"onLoad",focus:"onFocus",blur:"onBlur"}
+for(e in i)(t=this.settings[i[e]])&&this.on(e,t)}sync(e=!0){const t=this,i=e?U(t.input,{delimiter:t.settings.delimiter}):t.settings
+t.setupOptions(i.options,i.optgroups),t.setValue(i.items,!0),t.lastQuery=null}onClick(){var e=this
+if(e.activeItems.length>0)return e.clearActiveItems(),void e.focus()
+e.isFocused&&e.isOpen?e.blur():e.focus()}onMouseDown(){}onChange(){_(this.input,"input"),_(this.input,"change")}onPaste(e){var t=this
+t.isFull()||t.isInputHidden||t.isLocked?H(e):t.settings.splitOn&&setTimeout((()=>{var e=t.inputValue()
+if(e.match(t.settings.splitOn)){var i=e.trim().split(t.settings.splitOn)
+y(i,(e=>{t.createItem(e)}))}}),0)}onKeyPress(e){var t=this
+if(!t.isLocked){var i=String.fromCharCode(e.keyCode||e.which)
+return t.settings.create&&"multi"===t.settings.mode&&i===t.settings.delimiter?(t.createItem(),void H(e)):void 0}H(e)}onKeyDown(e){var t=this
+if(t.isLocked)9!==e.keyCode&&H(e)
+else{switch(e.keyCode){case 65:if(K(V,e))return H(e),void t.selectAll()
+break
+case 27:return t.isOpen&&(H(e,!0),t.close()),void t.clearActiveItems()
+case 40:if(!t.isOpen&&t.hasOptions)t.open()
+else if(t.activeOption){let e=t.getAdjacent(t.activeOption,1)
+e&&t.setActiveOption(e)}return void H(e)
+case 38:if(t.activeOption){let e=t.getAdjacent(t.activeOption,-1)
+e&&t.setActiveOption(e)}return void H(e)
+case 13:return void(t.isOpen&&t.activeOption?(t.onOptionSelect(e,t.activeOption),H(e)):t.settings.create&&t.createItem()&&H(e))
+case 37:return void t.advanceSelection(-1,e)
+case 39:return void t.advanceSelection(1,e)
+case 9:return void(t.settings.selectOnTab&&(t.isOpen&&t.activeOption&&(t.onOptionSelect(e,t.activeOption),H(e)),t.settings.create&&t.createItem()&&H(e)))
+case 8:case 46:return void t.deleteSelection(e)}t.isInputHidden&&!K(V,e)&&H(e)}}onInput(e){var t=this
+if(!t.isLocked){var i=t.inputValue()
+t.lastValue!==i&&(t.lastValue=i,t.settings.shouldLoad.call(t,i)&&t.load(i),t.refreshOptions(),t.trigger("type",i))}}onFocus(e){var t=this,i=t.isFocused
+if(t.isDisabled)return t.blur(),void H(e)
+t.ignoreFocus||(t.isFocused=!0,"focus"===t.settings.preload&&t.preload(),i||t.trigger("focus"),t.activeItems.length||(t.showInput(),t.refreshOptions(!!t.settings.openOnFocus)),t.refreshState())}onBlur(e){if(!1!==document.hasFocus()){var t=this
+if(t.isFocused){t.isFocused=!1,t.ignoreFocus=!1
+var i=()=>{t.close(),t.setActiveItem(),t.setCaret(t.items.length),t.trigger("blur")}
+t.settings.create&&t.settings.createOnBlur?t.createItem(null,!1,i):i()}}}onOptionSelect(e,t){var i,s=this
+t&&(t.parentElement&&t.parentElement.matches("[data-disabled]")||(t.classList.contains("create")?s.createItem(null,!0,(()=>{s.settings.closeAfterSelect&&s.close()})):void 0!==(i=t.dataset.value)&&(s.lastQuery=null,s.addItem(i),s.settings.closeAfterSelect&&s.close(),!s.settings.hideSelected&&e.type&&/click/.test(e.type)&&s.setActiveOption(t))))}onItemSelect(e,t){var i=this
+return!i.isLocked&&"multi"===i.settings.mode&&(H(e),i.setActiveItem(t,e),!0)}canLoad(e){return!!this.settings.load&&!this.loadedSearches.hasOwnProperty(e)}load(e){const t=this
+if(!t.canLoad(e))return
+C(t.wrapper,t.settings.loadingClass),t.loading++
+const i=t.loadCallback.bind(t)
+t.settings.load.call(t,e,i)}loadCallback(e,t){const i=this
+i.loading=Math.max(i.loading-1,0),i.lastQuery=null,i.clearActiveOption(),i.setupOptions(e,t),i.refreshOptions(i.isFocused&&!i.isInputHidden),i.loading||S(i.wrapper,i.settings.loadingClass),i.trigger("load",e,t)}preload(){var e=this.wrapper.classList
+e.contains("preloaded")||(e.add("preloaded"),this.load(""))}setTextboxValue(e=""){var t=this.control_input
+t.value!==e&&(t.value=e,_(t,"update"),this.lastValue=e)}getValue(){return this.is_select_tag&&this.input.hasAttribute("multiple")?this.items:this.items.join(this.settings.delimiter)}setValue(e,t){R(this,t?[]:["change"],(()=>{this.clear(t),this.addItems(e,t)}))}setMaxItems(e){0===e&&(e=null),this.settings.maxItems=e,this.refreshState()}setActiveItem(e,t){var i,s,n,o,r,l,a=this
+if("single"!==a.settings.mode){if(!e)return a.clearActiveItems(),void(a.isFocused&&a.showInput())
+if("click"===(i=t&&t.type.toLowerCase())&&K("shiftKey",t)&&a.activeItems.length){for(l=a.getLastActive(),(n=Array.prototype.indexOf.call(a.control.children,l))>(o=Array.prototype.indexOf.call(a.control.children,e))&&(r=n,n=o,o=r),s=n;s<=o;s++)e=a.control.children[s],-1===a.activeItems.indexOf(e)&&a.setActiveItemClass(e)
+H(t)}else"click"===i&&K(V,t)||"keydown"===i&&K("shiftKey",t)?e.classList.contains("active")?a.removeActiveItem(e):a.setActiveItemClass(e):(a.clearActiveItems(),a.setActiveItemClass(e))
+a.hideInput(),a.isFocused||a.focus()}}setActiveItemClass(e){const t=this,i=t.control.querySelector(".last-active")
+i&&S(i,"last-active"),C(e,"active last-active"),t.trigger("item_select",e),-1==t.activeItems.indexOf(e)&&t.activeItems.push(e)}removeActiveItem(e){var t=this.activeItems.indexOf(e)
+this.activeItems.splice(t,1),S(e,"active")}clearActiveItems(){S(this.activeItems,"active"),this.activeItems=[]}setActiveOption(e){e!==this.activeOption&&(this.clearActiveOption(),e&&(this.activeOption=e,P(this.focus_node,{"aria-activedescendant":e.getAttribute("id")}),P(e,{"aria-selected":"true"}),C(e,"active"),this.scrollToOption(e)))}scrollToOption(e,t){if(!e)return
+const i=this.dropdown_content,s=i.clientHeight,n=i.scrollTop||0,o=e.offsetHeight,r=e.getBoundingClientRect().top-i.getBoundingClientRect().top+n
+r+o>s+n?this.scroll(r-s+o,t):r
0||!e.isFocused&&e.settings.hidePlaceholder&&e.items.length>0?(e.setTextboxValue(),e.isInputHidden=!0):(e.settings.hidePlaceholder&&e.items.length>0&&P(e.control_input,{placeholder:""}),e.isInputHidden=!1),e.wrapper.classList.toggle("input-hidden",e.isInputHidden))}hideInput(){this.inputState()}showInput(){this.inputState()}inputValue(){return this.control_input.value.trim()}focus(){var e=this
+e.isDisabled||(e.ignoreFocus=!0,e.control_input.offsetWidth?e.control_input.focus():e.focus_node.focus(),setTimeout((()=>{e.ignoreFocus=!1,e.onFocus()}),0))}blur(){this.focus_node.blur(),this.onBlur()}getScoreFunction(e){return this.sifter.getScoreFunction(e,this.getSearchOptions())}getSearchOptions(){var e=this.settings,t=e.sortField
+return"string"==typeof e.sortField&&(t=[{field:e.sortField}]),{fields:e.searchField,conjunction:e.searchConjunction,sort:t,nesting:e.nesting}}search(e){var t,i,s,n=this,o=this.getSearchOptions()
+if(n.settings.score&&"function"!=typeof(s=n.settings.score.call(n,e)))throw new Error('Tom Select "score" setting must be a function that returns a function')
+if(e!==n.lastQuery?(n.lastQuery=e,i=n.sifter.search(e,Object.assign(o,{score:s})),n.currentResults=i):i=Object.assign({},n.currentResults),n.settings.hideSelected)for(t=i.items.length-1;t>=0;t--){let e=q(i.items[t].id)
+e&&-1!==n.items.indexOf(e)&&i.items.splice(t,1)}return i}refreshOptions(e=!0){var t,i,s,n,o,r,l,a,c,d,p
+const u={},h=[]
+var g,f=this,v=f.inputValue(),m=f.search(v),O=f.activeOption,b=f.settings.shouldOpen||!1,w=f.dropdown_content
+for(O&&(c=O.dataset.value,d=O.closest("[data-group]")),n=m.items.length,"number"==typeof f.settings.maxOptions&&(n=Math.min(n,f.settings.maxOptions)),n>0&&(b=!0),t=0;t0&&(l=l.cloneNode(!0),P(l,{id:n.$id+"-clone-"+i,"aria-selected":null}),l.classList.add("ts-cloned"),S(l,"active")),c==e&&d&&d.dataset.group===o&&(O=l),u[o].appendChild(l)}this.settings.lockOptgroupOrder&&h.sort(((e,t)=>(f.optgroups[e]&&f.optgroups[e].$order||0)-(f.optgroups[t]&&f.optgroups[t].$order||0))),l=document.createDocumentFragment(),y(h,(e=>{if(f.optgroups.hasOwnProperty(e)&&u[e].children.length){let t=document.createDocumentFragment(),i=f.render("optgroup_header",f.optgroups[e])
+G(t,i),G(t,u[e])
+let s=f.render("optgroup",{group:f.optgroups[e],options:t})
+G(l,s)}else G(l,u[e])})),w.innerHTML="",G(w,l),f.settings.highlight&&(g=w.querySelectorAll("span.highlight"),Array.prototype.forEach.call(g,(function(e){var t=e.parentNode
+t.replaceChild(e.firstChild,e),t.normalize()})),m.query.length&&m.tokens.length&&y(m.tokens,(e=>{T(w,e.regex)})))
+var _=e=>{let t=f.render(e,{input:v})
+return t&&(b=!0,w.insertBefore(t,w.firstChild)),t}
+if(f.loading?_("loading"):f.settings.shouldLoad.call(f,v)?0===m.items.length&&_("no_results"):_("not_loading"),(a=f.canCreate(v))&&(p=_("option_create")),f.hasOptions=m.items.length>0||a,b){if(m.items.length>0){if(!w.contains(O)&&"single"===f.settings.mode&&f.items.length&&(O=f.getOption(f.items[0])),!w.contains(O)){let e=0
+p&&!f.settings.addPrecedence&&(e=1),O=f.selectable()[e]}}else p&&(O=p)
+e&&!f.isOpen&&(f.open(),f.scrollToOption(O,"auto")),f.setActiveOption(O)}else f.clearActiveOption(),e&&f.isOpen&&f.close(!1)}selectable(){return this.dropdown_content.querySelectorAll("[data-selectable]")}addOption(e,t=!1){const i=this
+if(Array.isArray(e))return i.addOptions(e,t),!1
+const s=q(e[i.settings.valueField])
+return null!==s&&!i.options.hasOwnProperty(s)&&(e.$order=e.$order||++i.order,e.$id=i.inputId+"-opt-"+e.$order,i.options[s]=e,i.lastQuery=null,t&&(i.userOptions[s]=t,i.trigger("option_add",s,e)),s)}addOptions(e,t=!1){y(e,(e=>{this.addOption(e,t)}))}registerOption(e){return this.addOption(e)}registerOptionGroup(e){var t=q(e[this.settings.optgroupValueField])
+return null!==t&&(e.$order=e.$order||++this.order,this.optgroups[t]=e,t)}addOptionGroup(e,t){var i
+t[this.settings.optgroupValueField]=e,(i=this.registerOptionGroup(t))&&this.trigger("optgroup_add",i,t)}removeOptionGroup(e){this.optgroups.hasOwnProperty(e)&&(delete this.optgroups[e],this.clearCache(),this.trigger("optgroup_remove",e))}clearOptionGroups(){this.optgroups={},this.clearCache(),this.trigger("optgroup_clear")}updateOption(e,t){const i=this
+var s,n
+const o=q(e),r=q(t[i.settings.valueField])
+if(null===o)return
+if(!i.options.hasOwnProperty(o))return
+if("string"!=typeof r)throw new Error("Value must be set in option data")
+const l=i.getOption(o),a=i.getItem(o)
+if(t.$order=t.$order||i.options[o].$order,delete i.options[o],i.uncacheValue(r),i.options[r]=t,l){if(i.dropdown_content.contains(l)){const e=i._render("option",t)
+E(l,e),i.activeOption===l&&i.setActiveOption(e)}l.remove()}a&&(-1!==(n=i.items.indexOf(o))&&i.items.splice(n,1,r),s=i._render("item",t),a.classList.contains("active")&&C(s,"active"),E(a,s)),i.lastQuery=null}removeOption(e,t){const i=this
+e=D(e),i.uncacheValue(e),delete i.userOptions[e],delete i.options[e],i.lastQuery=null,i.trigger("option_remove",e),i.removeItem(e,t)}clearOptions(){this.loadedSearches={},this.userOptions={},this.clearCache()
+var e={}
+y(this.options,((t,i)=>{this.items.indexOf(i)>=0&&(e[i]=this.options[i])})),this.options=this.sifter.items=e,this.lastQuery=null,this.trigger("option_clear")}getOption(e,t=!1){const i=q(e)
+if(null!==i&&this.options.hasOwnProperty(i)){const e=this.options[i]
+if(e.$div)return e.$div
+if(t)return this._render("option",e)}return null}getAdjacent(e,t,i="option"){var s
+if(!e)return null
+s="item"==i?this.controlChildren():this.dropdown_content.querySelectorAll("[data-selectable]")
+for(let i=0;i0?s[i+1]:s[i-1]
+return null}getItem(e){if("object"==typeof e)return e
+var t=q(e)
+return null!==t?this.control.querySelector(`[data-value="${Q(t)}"]`):null}addItems(e,t){var i=this,s=Array.isArray(e)?e:[e]
+for(let e=0,n=(s=s.filter((e=>-1===i.items.indexOf(e)))).length;e{var i,s
+const n=this,o=n.settings.mode,r=q(e)
+if((!r||-1===n.items.indexOf(r)||("single"===o&&n.close(),"single"!==o&&n.settings.duplicates))&&null!==r&&n.options.hasOwnProperty(r)&&("single"===o&&n.clear(t),"multi"!==o||!n.isFull())){if(i=n._render("item",n.options[r]),n.control.contains(i)&&(i=i.cloneNode(!0)),s=n.isFull(),n.items.splice(n.caretPos,0,r),n.insertAtCaret(i),n.isSetup){if(!n.isPending&&n.settings.hideSelected){let e=n.getOption(r),t=n.getAdjacent(e,1)
+t&&n.setActiveOption(t)}n.isPending||n.refreshOptions(n.isFocused&&"single"!==o),0!=n.settings.closeAfterSelect&&n.isFull()?n.close():n.isPending||n.positionDropdown(),n.trigger("item_add",r,i),n.isPending||n.updateOriginalInput({silent:t})}(!n.isPending||!s&&n.isFull())&&(n.inputState(),n.refreshState())}}))}removeItem(e=null,t){const i=this
+if(!(e=i.getItem(e)))return
+var s,n
+const o=e.dataset.value
+s=L(e),e.remove(),e.classList.contains("active")&&(n=i.activeItems.indexOf(e),i.activeItems.splice(n,1),S(e,"active")),i.items.splice(s,1),i.lastQuery=null,!i.settings.persist&&i.userOptions.hasOwnProperty(o)&&i.removeOption(o,t),s{})){var s,n=this,o=n.caretPos
+if(e=e||n.inputValue(),!n.canCreate(e))return i(),!1
+n.lock()
+var r=!1,l=e=>{if(n.unlock(),!e||"object"!=typeof e)return i()
+var s=q(e[n.settings.valueField])
+if("string"!=typeof s)return i()
+n.setTextboxValue(),n.addOption(e,!0),n.setCaret(o),n.addItem(s),n.refreshOptions(t&&"single"!==n.settings.mode),i(e),r=!0}
+return s="function"==typeof n.settings.create?n.settings.create.call(this,e,l):{[n.settings.labelField]:e,[n.settings.valueField]:e},r||l(s),!0}refreshItems(){var e=this
+e.lastQuery=null,e.isSetup&&e.addItems(e.items),e.updateOriginalInput(),e.refreshState()}refreshState(){const e=this
+e.refreshValidityState()
+const t=e.isFull(),i=e.isLocked
+e.wrapper.classList.toggle("rtl",e.rtl)
+const s=e.wrapper.classList
+var n
+s.toggle("focus",e.isFocused),s.toggle("disabled",e.isDisabled),s.toggle("required",e.isRequired),s.toggle("invalid",!e.isValid),s.toggle("locked",i),s.toggle("full",t),s.toggle("input-active",e.isFocused&&!e.isInputHidden),s.toggle("dropdown-active",e.isOpen),s.toggle("has-options",(n=e.options,0===Object.keys(n).length)),s.toggle("has-items",e.items.length>0)}refreshValidityState(){var e=this
+e.input.checkValidity&&(e.isValid=e.input.checkValidity(),e.isInvalid=!e.isValid)}isFull(){return null!==this.settings.maxItems&&this.items.length>=this.settings.maxItems}updateOriginalInput(e={}){const t=this
+var i,s
+const n=t.input.querySelector('option[value=""]')
+if(t.is_select_tag){const e=[]
+function o(i,s,o){return i||(i=w(''+N(o)+" ")),i!=n&&t.input.append(i),e.push(i),i.selected=!0,i}t.input.querySelectorAll("option:checked").forEach((e=>{e.selected=!1})),0==t.items.length&&"single"==t.settings.mode?o(n,"",""):t.items.forEach((n=>{if(i=t.options[n],s=i[t.settings.labelField]||"",e.includes(i.$option)){o(t.input.querySelector(`option[value="${Q(n)}"]:not(:checked)`),n,s)}else i.$option=o(i.$option,n,s)}))}else t.input.value=t.getValue()
+t.isSetup&&(e.silent||t.trigger("change",t.getValue()))}open(){var e=this
+e.isLocked||e.isOpen||"multi"===e.settings.mode&&e.isFull()||(e.isOpen=!0,P(e.focus_node,{"aria-expanded":"true"}),e.refreshState(),I(e.dropdown,{visibility:"hidden",display:"block"}),e.positionDropdown(),I(e.dropdown,{visibility:"visible",display:"block"}),e.focus(),e.trigger("dropdown_open",e.dropdown))}close(e=!0){var t=this,i=t.isOpen
+e&&(t.setTextboxValue(),"single"===t.settings.mode&&t.items.length&&t.hideInput()),t.isOpen=!1,P(t.focus_node,{"aria-expanded":"false"}),I(t.dropdown,{display:"none"}),t.settings.hideSelected&&t.clearActiveOption(),t.refreshState(),i&&t.trigger("dropdown_close",t.dropdown)}positionDropdown(){if("body"===this.settings.dropdownParent){var e=this.control,t=e.getBoundingClientRect(),i=e.offsetHeight+t.top+window.scrollY,s=t.left+window.scrollX
+I(this.dropdown,{width:t.width+"px",top:i+"px",left:s+"px"})}}clear(e){var t=this
+if(t.items.length){var i=t.controlChildren()
+y(i,(e=>{t.removeItem(e,!0)})),t.showInput(),e||t.updateOriginalInput(),t.trigger("clear")}}insertAtCaret(e){const t=this,i=t.caretPos,s=t.control
+s.insertBefore(e,s.children[i]),t.setCaret(i+1)}deleteSelection(e){var t,i,s,n,o,r=this
+t=e&&8===e.keyCode?-1:1,i={start:(o=r.control_input).selectionStart||0,length:(o.selectionEnd||0)-(o.selectionStart||0)}
+const l=[]
+if(r.activeItems.length)n=F(r.activeItems,t),s=L(n),t>0&&s++,y(r.activeItems,(e=>l.push(e)))
+else if((r.isFocused||"single"===r.settings.mode)&&r.items.length){const e=r.controlChildren()
+t<0&&0===i.start&&0===i.length?l.push(e[r.caretPos-1]):t>0&&i.start===r.inputValue().length&&l.push(e[r.caretPos])}const a=l.map((e=>e.dataset.value))
+if(!a.length||"function"==typeof r.settings.onDelete&&!1===r.settings.onDelete.call(r,a,e))return!1
+for(H(e,!0),void 0!==s&&r.setCaret(s);l.length;)r.removeItem(l.pop())
+return r.showInput(),r.positionDropdown(),r.refreshOptions(!1),!0}advanceSelection(e,t){var i,s,n=this
+n.rtl&&(e*=-1),n.inputValue().length||(K(V,t)||K("shiftKey",t)?(s=(i=n.getLastActive(e))?i.classList.contains("active")?n.getAdjacent(i,e,"item"):i:e>0?n.control_input.nextElementSibling:n.control_input.previousElementSibling)&&(s.classList.contains("active")&&n.removeActiveItem(i),n.setActiveItemClass(s)):n.moveCaret(e))}moveCaret(e){}getLastActive(e){let t=this.control.querySelector(".last-active")
+if(t)return t
+var i=this.control.querySelectorAll(".active")
+return i?F(i,e):void 0}setCaret(e){this.caretPos=this.items.length}controlChildren(){return Array.from(this.control.querySelectorAll("[data-ts-item]"))}lock(){this.close(),this.isLocked=!0,this.refreshState()}unlock(){this.isLocked=!1,this.refreshState()}disable(){var e=this
+e.input.disabled=!0,e.control_input.disabled=!0,e.focus_node.tabIndex=-1,e.isDisabled=!0,e.lock()}enable(){var e=this
+e.input.disabled=!1,e.control_input.disabled=!1,e.focus_node.tabIndex=e.tabIndex,e.isDisabled=!1,e.unlock()}destroy(){var e=this,t=e.revertSettings
+e.trigger("destroy"),e.off(),e.wrapper.remove(),e.dropdown.remove(),e.input.innerHTML=t.innerHTML,e.input.tabIndex=t.tabIndex,S(e.input,"tomselected","ts-hidden-accessible"),e._destroy(),delete e.input.tomselect}render(e,t){return"function"!=typeof this.settings.render[e]?null:this._render(e,t)}_render(e,t){var i,s,n=""
+const o=this
+return"option"!==e&&"item"!=e||(n=D(t[o.settings.valueField])),null==(s=o.settings.render[e].call(this,t,N))||(s=w(s),"option"===e||"option_create"===e?t[o.settings.disabledField]?P(s,{"aria-disabled":"true"}):P(s,{"data-selectable":""}):"optgroup"===e&&(i=t.group[o.settings.optgroupValueField],P(s,{"data-group":i}),t.group[o.settings.disabledField]&&P(s,{"data-disabled":""})),"option"!==e&&"item"!==e||(P(s,{"data-value":n}),"item"===e?(C(s,o.settings.itemClass),P(s,{"data-ts-item":""})):(C(s,o.settings.optionClass),P(s,{role:"option",id:t.$id}),o.options[n].$div=s))),s}clearCache(){y(this.options,((e,t)=>{e.$div&&(e.$div.remove(),delete e.$div)}))}uncacheValue(e){const t=this.getOption(e)
+t&&t.remove()}canCreate(e){return this.settings.create&&e.length>0&&this.settings.createFilter.call(this,e)}hook(e,t,i){var s=this,n=s[t]
+s[t]=function(){var t,o
+return"after"===e&&(t=n.apply(s,arguments)),o=i.apply(s,arguments),"instead"===e?o:("before"===e&&(t=n.apply(s,arguments)),t)}}}return J.define("change_listener",(function(){B(this.input,"change",(()=>{this.sync()}))})),J.define("checkbox_options",(function(){var e=this,t=e.onOptionSelect
+e.settings.hideSelected=!1
+var i=function(e){setTimeout((()=>{var t=e.querySelector("input")
+e.classList.contains("selected")?t.checked=!0:t.checked=!1}),1)}
+e.hook("after","setupTemplates",(()=>{var t=e.settings.render.option
+e.settings.render.option=(i,s)=>{var n=w(t.call(e,i,s)),o=document.createElement("input")
+o.addEventListener("click",(function(e){H(e)})),o.type="checkbox"
+const r=q(i[e.settings.valueField])
+return r&&e.items.indexOf(r)>-1&&(o.checked=!0),n.prepend(o),n}})),e.on("item_remove",(t=>{var s=e.getOption(t)
+s&&(s.classList.remove("selected"),i(s))})),e.hook("instead","onOptionSelect",((s,n)=>{if(n.classList.contains("selected"))return n.classList.remove("selected"),e.removeItem(n.dataset.value),e.refreshOptions(),void H(s,!0)
+t.call(e,s,n),i(n)}))})),J.define("clear_button",(function(e){const t=this,i=Object.assign({className:"clear-button",title:"Clear All",html:e=>`×
`},e)
+t.on("initialize",(()=>{var e=w(i.html(i))
+e.addEventListener("click",(e=>{t.clear(),"single"===t.settings.mode&&t.settings.allowEmptyOption&&t.addItem(""),e.preventDefault(),e.stopPropagation()})),t.control.appendChild(e)}))})),J.define("drag_drop",(function(){var e=this
+if(!$.fn.sortable)throw new Error('The "drag_drop" plugin requires jQuery UI "sortable".')
+if("multi"===e.settings.mode){var t=e.lock,i=e.unlock
+e.hook("instead","lock",(()=>{var i=$(e.control).data("sortable")
+return i&&i.disable(),t.call(e)})),e.hook("instead","unlock",(()=>{var t=$(e.control).data("sortable")
+return t&&t.enable(),i.call(e)})),e.on("initialize",(()=>{var t=$(e.control).sortable({items:"[data-value]",forcePlaceholderSize:!0,disabled:e.isLocked,start:(e,i)=>{i.placeholder.css("width",i.helper.css("width")),t.css({overflow:"visible"})},stop:()=>{t.css({overflow:"hidden"})
+var i=[]
+t.children("[data-value]").each((function(){this.dataset.value&&i.push(this.dataset.value)})),e.setValue(i)}})}))}})),J.define("dropdown_header",(function(e){const t=this,i=Object.assign({title:"Untitled",headerClass:"dropdown-header",titleRowClass:"dropdown-header-title",labelClass:"dropdown-header-label",closeClass:"dropdown-header-close",html:e=>''},e)
+t.on("initialize",(()=>{var e=w(i.html(i)),s=e.querySelector("."+i.closeClass)
+s&&s.addEventListener("click",(e=>{H(e,!0),t.close()})),t.dropdown.insertBefore(e,t.dropdown.firstChild)}))})),J.define("caret_position",(function(){var e=this
+e.hook("instead","setCaret",(t=>{"single"!==e.settings.mode&&e.control.contains(e.control_input)?(t=Math.max(0,Math.min(e.items.length,t)))==e.caretPos||e.isPending||e.controlChildren().forEach(((i,s)=>{s{if(!e.isFocused)return
+const i=e.getLastActive(t)
+if(i){const s=L(i)
+e.setCaret(t>0?s+1:s),e.setActiveItem()}else e.setCaret(e.caretPos+t)}))})),J.define("dropdown_input",(function(){var e=this
+e.settings.shouldOpen=!0,e.hook("before","setup",(()=>{e.focus_node=e.control,C(e.control_input,"dropdown-input")
+const t=w('')
+t.append(e.control_input),e.dropdown.insertBefore(t,e.dropdown.firstChild)})),e.on("initialize",(()=>{e.control_input.addEventListener("keydown",(t=>{switch(t.keyCode){case 27:return e.isOpen&&(H(t,!0),e.close()),void e.clearActiveItems()
+case 9:e.focus_node.tabIndex=-1}return e.onKeyDown.call(e,t)})),e.on("blur",(()=>{e.focus_node.tabIndex=e.isDisabled?-1:e.tabIndex})),e.on("dropdown_open",(()=>{e.control_input.focus()}))
+const t=e.onBlur
+e.hook("instead","onBlur",(i=>{if(!i||i.relatedTarget!=e.control_input)return t.call(e)})),B(e.control_input,"blur",(()=>e.onBlur())),e.hook("before","close",(()=>{e.isOpen&&e.focus_node.focus()}))}))})),J.define("input_autogrow",(function(){var e=this
+e.on("initialize",(()=>{var t=document.createElement("span"),i=e.control_input
+t.style.cssText="position:absolute; top:-99999px; left:-99999px; width:auto; padding:0; white-space:pre; ",e.wrapper.appendChild(t)
+for(const e of["letterSpacing","fontSize","fontFamily","fontWeight","textTransform"])t.style[e]=i.style[e]
+var s=()=>{e.items.length>0?(t.textContent=i.value,i.style.width=t.clientWidth+"px"):i.style.width=""}
+s(),e.on("update item_add item_remove",s),B(i,"input",s),B(i,"keyup",s),B(i,"blur",s),B(i,"update",s)}))})),J.define("no_backspace_delete",(function(){var e=this,t=e.deleteSelection
+this.hook("instead","deleteSelection",(i=>!!e.activeItems.length&&t.call(e,i)))})),J.define("no_active_items",(function(){this.hook("instead","setActiveItem",(()=>{})),this.hook("instead","selectAll",(()=>{}))})),J.define("optgroup_columns",(function(){var e=this,t=e.onKeyDown
+e.hook("instead","onKeyDown",(i=>{var s,n,o,r
+if(!e.isOpen||37!==i.keyCode&&39!==i.keyCode)return t.call(e,i)
+r=k(e.activeOption,"[data-group]"),s=L(e.activeOption,"[data-selectable]"),r&&(r=37===i.keyCode?r.previousSibling:r.nextSibling)&&(n=(o=r.querySelectorAll("[data-selectable]"))[Math.min(o.length-1,s)])&&e.setActiveOption(n)}))})),J.define("remove_button",(function(e){const t=Object.assign({label:"×",title:"Remove",className:"remove",append:!0},e)
+var i=this
+if(t.append){var s='
'+t.label+" "
+i.hook("after","setupTemplates",(()=>{var e=i.settings.render.item
+i.settings.render.item=(t,n)=>{var o=w(e.call(i,t,n)),r=w(s)
+return o.appendChild(r),B(r,"mousedown",(e=>{H(e,!0)})),B(r,"click",(e=>{if(H(e,!0),!i.isLocked){var t=o.dataset.value
+i.removeItem(t),i.refreshOptions(!1)}})),o}}))}})),J.define("restore_on_backspace",(function(e){const t=this,i=Object.assign({text:e=>e[t.settings.labelField]},e)
+t.on("item_remove",(function(e){if(""===t.control_input.value.trim()){var s=t.options[e]
+s&&t.setTextboxValue(i.text.call(t,s))}}))})),J.define("virtual_scroll",(function(){const e=this,t=e.canLoad,i=e.clearActiveOption,s=e.loadCallback
+var n,o={},r=!1
+if(!e.settings.firstUrl)throw"virtual_scroll plugin requires a firstUrl() method"
+function l(t){return!("number"==typeof e.settings.maxOptions&&n.children.length>=e.settings.maxOptions)&&!(!(t in o)||!o[t])}e.settings.sortField=[{field:"$order"},{field:"$score"}],e.setNextUrl=function(e,t){o[e]=t},e.getUrl=function(t){if(t in o){const e=o[t]
+return o[t]=!1,e}return o={},e.settings.firstUrl(t)},e.hook("instead","clearActiveOption",(()=>{if(!r)return i.call(e)})),e.hook("instead","canLoad",(i=>i in o?l(i):t.call(e,i))),e.hook("instead","loadCallback",((t,i)=>{r||e.clearOptions(),s.call(e,t,i),r=!1})),e.hook("after","refreshOptions",(()=>{const t=e.lastValue
+var i
+l(t)?(i=e.render("loading_more",{query:t}))&&i.setAttribute("data-selectable",""):t in o&&!n.querySelector(".no-results")&&(i=e.render("no_more_results",{query:t})),i&&(C(i,e.settings.optionClass),n.append(i))})),e.on("initialize",(()=>{n=e.dropdown_content,e.settings.render=Object.assign({},{loading_more:function(){return'
Loading more results ...
'},no_more_results:function(){return'
No more results
'}},e.settings.render),n.addEventListener("scroll",(function(){n.clientHeight/(n.scrollHeight-n.scrollTop)<.95||l(e.lastValue)&&(r||(r=!0,e.load.call(e,e.lastValue)))}))}))})),J}))
+var tomSelect=function(e,t){return new TomSelect(e,t)}
+//# sourceMappingURL=tom-select.complete.min.js.map
diff --git a/workflow/lib/tom-select/tom-select.css b/workflow/lib/tom-select/tom-select.css
new file mode 100644
index 0000000000000000000000000000000000000000..5ec4f726b8acfeba1fc146331b091e3f7bab518a
--- /dev/null
+++ b/workflow/lib/tom-select/tom-select.css
@@ -0,0 +1,334 @@
+/**
+ * tom-select.css (v2.0.0-rc.4)
+ * Copyright (c) contributors
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
+ * file except in compliance with the License. You may obtain a copy of the License at:
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software distributed under
+ * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
+ * ANY KIND, either express or implied. See the License for the specific language
+ * governing permissions and limitations under the License.
+ *
+ */
+.ts-wrapper.plugin-drag_drop.multi > .ts-control > div.ui-sortable-placeholder {
+ visibility: visible !important;
+ background: #f2f2f2 !important;
+ background: rgba(0, 0, 0, 0.06) !important;
+ border: 0 none !important;
+ box-shadow: inset 0 0 12px 4px #fff; }
+
+.ts-wrapper.plugin-drag_drop .ui-sortable-placeholder::after {
+ content: '!';
+ visibility: hidden; }
+
+.ts-wrapper.plugin-drag_drop .ui-sortable-helper {
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); }
+
+.plugin-checkbox_options .option input {
+ margin-right: 0.5rem; }
+
+.plugin-clear_button .ts-control {
+ padding-right: calc( 1em + (3 * 6px)) !important; }
+
+.plugin-clear_button .clear-button {
+ opacity: 0;
+ position: absolute;
+ top: 8px;
+ right: calc(8px - 6px);
+ margin-right: 0 !important;
+ background: transparent !important;
+ transition: opacity 0.5s;
+ cursor: pointer; }
+
+.plugin-clear_button.single .clear-button {
+ right: calc(8px - 6px + 2rem); }
+
+.plugin-clear_button.focus.has-items .clear-button,
+.plugin-clear_button:hover.has-items .clear-button {
+ opacity: 1; }
+
+.ts-wrapper .dropdown-header {
+ position: relative;
+ padding: 10px 8px;
+ border-bottom: 1px solid #d0d0d0;
+ background: #f8f8f8;
+ border-radius: 3px 3px 0 0; }
+
+.ts-wrapper .dropdown-header-close {
+ position: absolute;
+ right: 8px;
+ top: 50%;
+ color: #303030;
+ opacity: 0.4;
+ margin-top: -12px;
+ line-height: 20px;
+ font-size: 20px !important; }
+
+.ts-wrapper .dropdown-header-close:hover {
+ color: black; }
+
+.plugin-dropdown_input.focus.dropdown-active .ts-control {
+ box-shadow: none;
+ border: 1px solid #d0d0d0; }
+
+.plugin-dropdown_input .dropdown-input {
+ border: 1px solid #d0d0d0;
+ border-width: 0 0 1px 0;
+ display: block;
+ padding: 8px 8px;
+ box-shadow: none;
+ width: 100%;
+ background: transparent; }
+
+.ts-wrapper.plugin-input_autogrow.has-items .ts-control > input {
+ min-width: 0; }
+
+.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input {
+ flex: none;
+ min-width: 4px; }
+ .ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::-webkit-input-placeholder {
+ color: transparent; }
+ .ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::-ms-input-placeholder {
+ color: transparent; }
+ .ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::placeholder {
+ color: transparent; }
+
+.ts-dropdown.plugin-optgroup_columns .ts-dropdown-content {
+ display: flex; }
+
+.ts-dropdown.plugin-optgroup_columns .optgroup {
+ border-right: 1px solid #f2f2f2;
+ border-top: 0 none;
+ flex-grow: 1;
+ flex-basis: 0;
+ min-width: 0; }
+
+.ts-dropdown.plugin-optgroup_columns .optgroup:last-child {
+ border-right: 0 none; }
+
+.ts-dropdown.plugin-optgroup_columns .optgroup:before {
+ display: none; }
+
+.ts-dropdown.plugin-optgroup_columns .optgroup-header {
+ border-top: 0 none; }
+
+.ts-wrapper.plugin-remove_button .item {
+ display: inline-flex;
+ align-items: center;
+ padding-right: 0 !important; }
+
+.ts-wrapper.plugin-remove_button .item .remove {
+ color: inherit;
+ text-decoration: none;
+ vertical-align: middle;
+ display: inline-block;
+ padding: 2px 6px;
+ border-left: 1px solid #d0d0d0;
+ border-radius: 0 2px 2px 0;
+ box-sizing: border-box;
+ margin-left: 6px; }
+
+.ts-wrapper.plugin-remove_button .item .remove:hover {
+ background: rgba(0, 0, 0, 0.05); }
+
+.ts-wrapper.plugin-remove_button .item.active .remove {
+ border-left-color: #cacaca; }
+
+.ts-wrapper.plugin-remove_button.disabled .item .remove:hover {
+ background: none; }
+
+.ts-wrapper.plugin-remove_button.disabled .item .remove {
+ border-left-color: white; }
+
+.ts-wrapper.plugin-remove_button .remove-single {
+ position: absolute;
+ right: 0;
+ top: 0;
+ font-size: 23px; }
+
+.ts-wrapper {
+ position: relative; }
+
+.ts-dropdown,
+.ts-control,
+.ts-control input {
+ color: #303030;
+ font-family: inherit;
+ font-size: 13px;
+ line-height: 18px;
+ font-smoothing: inherit; }
+
+.ts-control,
+.ts-wrapper.single.input-active .ts-control {
+ background: #fff;
+ cursor: text; }
+
+.ts-control {
+ border: 1px solid #d0d0d0;
+ padding: 8px 8px;
+ width: 100%;
+ overflow: hidden;
+ position: relative;
+ z-index: 1;
+ box-sizing: border-box;
+ box-shadow: none;
+ border-radius: 3px;
+ display: flex;
+ flex-wrap: wrap; }
+ .ts-wrapper.multi.has-items .ts-control {
+ padding: calc( 8px - 2px - 0) 8px calc( 8px - 2px - 3px - 0); }
+ .full .ts-control {
+ background-color: #fff; }
+ .disabled .ts-control,
+ .disabled .ts-control * {
+ cursor: default !important; }
+ .focus .ts-control {
+ box-shadow: none; }
+ .ts-control > * {
+ vertical-align: baseline;
+ display: inline-block; }
+ .ts-wrapper.multi .ts-control > div {
+ cursor: pointer;
+ margin: 0 3px 3px 0;
+ padding: 2px 6px;
+ background: #f2f2f2;
+ color: #303030;
+ border: 0 solid #d0d0d0; }
+ .ts-wrapper.multi .ts-control > div.active {
+ background: #e8e8e8;
+ color: #303030;
+ border: 0 solid #cacaca; }
+ .ts-wrapper.multi.disabled .ts-control > div, .ts-wrapper.multi.disabled .ts-control > div.active {
+ color: #7d7c7c;
+ background: white;
+ border: 0 solid white; }
+ .ts-control > input {
+ flex: 1 1 auto;
+ min-width: 7rem;
+ display: inline-block !important;
+ padding: 0 !important;
+ min-height: 0 !important;
+ max-height: none !important;
+ max-width: 100% !important;
+ margin: 0 !important;
+ text-indent: 0 !important;
+ border: 0 none !important;
+ background: none !important;
+ line-height: inherit !important;
+ -webkit-user-select: auto !important;
+ -moz-user-select: auto !important;
+ -ms-user-select: auto !important;
+ user-select: auto !important;
+ box-shadow: none !important; }
+ .ts-control > input::-ms-clear {
+ display: none; }
+ .ts-control > input:focus {
+ outline: none !important; }
+ .has-items .ts-control > input {
+ margin: 0 4px !important; }
+ .ts-control.rtl {
+ text-align: right; }
+ .ts-control.rtl.single .ts-control:after {
+ left: 15px;
+ right: auto; }
+ .ts-control.rtl .ts-control > input {
+ margin: 0 4px 0 -2px !important; }
+ .disabled .ts-control {
+ opacity: 0.5;
+ background-color: #fafafa; }
+ .input-hidden .ts-control > input {
+ opacity: 0;
+ position: absolute;
+ left: -10000px; }
+
+.ts-dropdown {
+ position: absolute;
+ top: 100%;
+ left: 0;
+ width: 100%;
+ z-index: 10;
+ border: 1px solid #d0d0d0;
+ background: #fff;
+ margin: 0.25rem 0 0 0;
+ border-top: 0 none;
+ box-sizing: border-box;
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
+ border-radius: 0 0 3px 3px; }
+ .ts-dropdown [data-selectable] {
+ cursor: pointer;
+ overflow: hidden; }
+ .ts-dropdown [data-selectable] .highlight {
+ background: rgba(125, 168, 208, 0.2);
+ border-radius: 1px; }
+ .ts-dropdown .option,
+ .ts-dropdown .optgroup-header,
+ .ts-dropdown .no-results,
+ .ts-dropdown .create {
+ padding: 5px 8px; }
+ .ts-dropdown .option, .ts-dropdown [data-disabled], .ts-dropdown [data-disabled] [data-selectable].option {
+ cursor: inherit;
+ opacity: 0.5; }
+ .ts-dropdown [data-selectable].option {
+ opacity: 1;
+ cursor: pointer; }
+ .ts-dropdown .optgroup:first-child .optgroup-header {
+ border-top: 0 none; }
+ .ts-dropdown .optgroup-header {
+ color: #303030;
+ background: #fff;
+ cursor: default; }
+ .ts-dropdown .create:hover,
+ .ts-dropdown .option:hover,
+ .ts-dropdown .active {
+ background-color: #f5fafd;
+ color: #495c68; }
+ .ts-dropdown .create:hover.create,
+ .ts-dropdown .option:hover.create,
+ .ts-dropdown .active.create {
+ color: #495c68; }
+ .ts-dropdown .create {
+ color: rgba(48, 48, 48, 0.5); }
+ .ts-dropdown .spinner {
+ display: inline-block;
+ width: 30px;
+ height: 30px;
+ margin: 5px 8px; }
+ .ts-dropdown .spinner:after {
+ content: " ";
+ display: block;
+ width: 24px;
+ height: 24px;
+ margin: 3px;
+ border-radius: 50%;
+ border: 5px solid #d0d0d0;
+ border-color: #d0d0d0 transparent #d0d0d0 transparent;
+ animation: lds-dual-ring 1.2s linear infinite; }
+
+@keyframes lds-dual-ring {
+ 0% {
+ transform: rotate(0deg); }
+ 100% {
+ transform: rotate(360deg); } }
+
+.ts-dropdown-content {
+ overflow-y: auto;
+ overflow-x: hidden;
+ max-height: 200px;
+ overflow-scrolling: touch;
+ scroll-behavior: smooth; }
+
+.ts-hidden-accessible {
+ border: 0 !important;
+ clip: rect(0 0 0 0) !important;
+ -webkit-clip-path: inset(50%) !important;
+ clip-path: inset(50%) !important;
+ height: 1px !important;
+ overflow: hidden !important;
+ padding: 0 !important;
+ position: absolute !important;
+ width: 1px !important;
+ white-space: nowrap !important; }
+
+/*# sourceMappingURL=tom-select.css.map */
\ No newline at end of file
diff --git a/workflow/lib/vis-9.1.2/vis-network.css b/workflow/lib/vis-9.1.2/vis-network.css
new file mode 100644
index 0000000000000000000000000000000000000000..8b03219bb397b69eb8a4e1ef1cee18bf0f8f8916
--- /dev/null
+++ b/workflow/lib/vis-9.1.2/vis-network.css
@@ -0,0 +1 @@
+.vis-overlay{bottom:0;left:0;position:absolute;right:0;top:0;z-index:10}.vis-active{box-shadow:0 0 10px #86d5f8}.vis [class*=span]{min-height:0;width:auto}div.vis-color-picker{background-color:#fff;border-radius:15px;box-shadow:0 0 10px 0 rgba(0,0,0,.5);display:none;height:444px;left:30px;margin-left:30px;margin-top:-140px;padding:10px;position:absolute;top:0;width:310px;z-index:1}div.vis-color-picker div.vis-arrow{left:5px;position:absolute;top:147px}div.vis-color-picker div.vis-arrow:after,div.vis-color-picker div.vis-arrow:before{border:solid transparent;content:" ";height:0;pointer-events:none;position:absolute;right:100%;top:50%;width:0}div.vis-color-picker div.vis-arrow:after{border-color:hsla(0,0%,100%,0) #fff hsla(0,0%,100%,0) hsla(0,0%,100%,0);border-width:30px;margin-top:-30px}div.vis-color-picker div.vis-color{cursor:pointer;height:289px;position:absolute;width:289px}div.vis-color-picker div.vis-brightness{position:absolute;top:313px}div.vis-color-picker div.vis-opacity{position:absolute;top:350px}div.vis-color-picker div.vis-selector{background:#4c4c4c;background:-moz-linear-gradient(top,#4c4c4c 0,#595959 12%,#666 25%,#474747 39%,#2c2c2c 50%,#000 51%,#111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#4c4c4c),color-stop(12%,#595959),color-stop(25%,#666),color-stop(39%,#474747),color-stop(50%,#2c2c2c),color-stop(51%,#000),color-stop(60%,#111),color-stop(76%,#2b2b2b),color-stop(91%,#1c1c1c),color-stop(100%,#131313));background:-webkit-linear-gradient(top,#4c4c4c,#595959 12%,#666 25%,#474747 39%,#2c2c2c 50%,#000 51%,#111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313);background:-o-linear-gradient(top,#4c4c4c 0,#595959 12%,#666 25%,#474747 39%,#2c2c2c 50%,#000 51%,#111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%);background:-ms-linear-gradient(top,#4c4c4c 0,#595959 12%,#666 25%,#474747 39%,#2c2c2c 50%,#000 51%,#111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313 100%);background:linear-gradient(180deg,#4c4c4c 0,#595959 12%,#666 25%,#474747 39%,#2c2c2c 50%,#000 51%,#111 60%,#2b2b2b 76%,#1c1c1c 91%,#131313);border:1px solid #fff;border-radius:15px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#4c4c4c",endColorstr="#131313",GradientType=0);height:15px;left:137px;position:absolute;top:137px;width:15px}div.vis-color-picker div.vis-new-color{left:159px;padding-right:2px;text-align:right}div.vis-color-picker div.vis-initial-color,div.vis-color-picker div.vis-new-color{border:1px solid rgba(0,0,0,.1);border-radius:5px;color:rgba(0,0,0,.4);font-size:10px;height:20px;line-height:20px;position:absolute;top:380px;vertical-align:middle;width:140px}div.vis-color-picker div.vis-initial-color{left:10px;padding-left:2px;text-align:left}div.vis-color-picker div.vis-label{left:10px;position:absolute;width:300px}div.vis-color-picker div.vis-label.vis-brightness{top:300px}div.vis-color-picker div.vis-label.vis-opacity{top:338px}div.vis-color-picker div.vis-button{background-color:#f7f7f7;border:2px solid #d9d9d9;border-radius:10px;cursor:pointer;height:25px;line-height:25px;position:absolute;text-align:center;top:410px;vertical-align:middle;width:68px}div.vis-color-picker div.vis-button.vis-cancel{left:5px}div.vis-color-picker div.vis-button.vis-load{left:82px}div.vis-color-picker div.vis-button.vis-apply{left:159px}div.vis-color-picker div.vis-button.vis-save{left:236px}div.vis-color-picker input.vis-range{height:20px;width:290px}div.vis-configuration{display:block;float:left;font-size:12px;position:relative}div.vis-configuration-wrapper{display:block;width:700px}div.vis-configuration-wrapper:after{clear:both;content:"";display:block}div.vis-configuration.vis-config-option-container{background-color:#fff;border:2px solid #f7f8fa;border-radius:4px;display:block;left:10px;margin-top:20px;padding-left:5px;width:495px}div.vis-configuration.vis-config-button{background-color:#f7f8fa;border:2px solid #ceced0;border-radius:4px;cursor:pointer;display:block;height:25px;left:10px;line-height:25px;margin-bottom:30px;margin-top:20px;padding-left:5px;vertical-align:middle;width:495px}div.vis-configuration.vis-config-button.hover{background-color:#4588e6;border:2px solid #214373;color:#fff}div.vis-configuration.vis-config-item{display:block;float:left;height:25px;line-height:25px;vertical-align:middle;width:495px}div.vis-configuration.vis-config-item.vis-config-s2{background-color:#f7f8fa;border-radius:3px;left:10px;padding-left:5px}div.vis-configuration.vis-config-item.vis-config-s3{background-color:#e4e9f0;border-radius:3px;left:20px;padding-left:5px}div.vis-configuration.vis-config-item.vis-config-s4{background-color:#cfd8e6;border-radius:3px;left:30px;padding-left:5px}div.vis-configuration.vis-config-header{font-size:18px;font-weight:700}div.vis-configuration.vis-config-label{height:25px;line-height:25px;width:120px}div.vis-configuration.vis-config-label.vis-config-s3{width:110px}div.vis-configuration.vis-config-label.vis-config-s4{width:100px}div.vis-configuration.vis-config-colorBlock{border:1px solid #444;border-radius:2px;cursor:pointer;height:19px;margin:0;padding:0;top:1px;width:30px}input.vis-configuration.vis-config-checkbox{left:-5px}input.vis-configuration.vis-config-rangeinput{margin:0;padding:1px;pointer-events:none;position:relative;top:-5px;width:60px}input.vis-configuration.vis-config-range{-webkit-appearance:none;background-color:transparent;border:0 solid #fff;height:20px;width:300px}input.vis-configuration.vis-config-range::-webkit-slider-runnable-track{background:#dedede;background:-moz-linear-gradient(top,#dedede 0,#c8c8c8 99%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#dedede),color-stop(99%,#c8c8c8));background:-webkit-linear-gradient(top,#dedede,#c8c8c8 99%);background:-o-linear-gradient(top,#dedede 0,#c8c8c8 99%);background:-ms-linear-gradient(top,#dedede 0,#c8c8c8 99%);background:linear-gradient(180deg,#dedede 0,#c8c8c8 99%);border:1px solid #999;border-radius:3px;box-shadow:0 0 3px 0 #aaa;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#dedede",endColorstr="#c8c8c8",GradientType=0);height:5px;width:300px}input.vis-configuration.vis-config-range::-webkit-slider-thumb{-webkit-appearance:none;background:#3876c2;background:-moz-linear-gradient(top,#3876c2 0,#385380 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#3876c2),color-stop(100%,#385380));background:-webkit-linear-gradient(top,#3876c2,#385380);background:-o-linear-gradient(top,#3876c2 0,#385380 100%);background:-ms-linear-gradient(top,#3876c2 0,#385380 100%);background:linear-gradient(180deg,#3876c2 0,#385380);border:1px solid #14334b;border-radius:50%;box-shadow:0 0 1px 0 #111927;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#3876c2",endColorstr="#385380",GradientType=0);height:17px;margin-top:-7px;width:17px}input.vis-configuration.vis-config-range:focus{outline:none}input.vis-configuration.vis-config-range:focus::-webkit-slider-runnable-track{background:#9d9d9d;background:-moz-linear-gradient(top,#9d9d9d 0,#c8c8c8 99%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#9d9d9d),color-stop(99%,#c8c8c8));background:-webkit-linear-gradient(top,#9d9d9d,#c8c8c8 99%);background:-o-linear-gradient(top,#9d9d9d 0,#c8c8c8 99%);background:-ms-linear-gradient(top,#9d9d9d 0,#c8c8c8 99%);background:linear-gradient(180deg,#9d9d9d 0,#c8c8c8 99%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#9d9d9d",endColorstr="#c8c8c8",GradientType=0)}input.vis-configuration.vis-config-range::-moz-range-track{background:#dedede;background:-moz-linear-gradient(top,#dedede 0,#c8c8c8 99%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#dedede),color-stop(99%,#c8c8c8));background:-webkit-linear-gradient(top,#dedede,#c8c8c8 99%);background:-o-linear-gradient(top,#dedede 0,#c8c8c8 99%);background:-ms-linear-gradient(top,#dedede 0,#c8c8c8 99%);background:linear-gradient(180deg,#dedede 0,#c8c8c8 99%);border:1px solid #999;border-radius:3px;box-shadow:0 0 3px 0 #aaa;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#dedede",endColorstr="#c8c8c8",GradientType=0);height:10px;width:300px}input.vis-configuration.vis-config-range::-moz-range-thumb{background:#385380;border:none;border-radius:50%;height:16px;width:16px}input.vis-configuration.vis-config-range:-moz-focusring{outline:1px solid #fff;outline-offset:-1px}input.vis-configuration.vis-config-range::-ms-track{background:transparent;border-color:transparent;border-width:6px 0;color:transparent;height:5px;width:300px}input.vis-configuration.vis-config-range::-ms-fill-lower{background:#777;border-radius:10px}input.vis-configuration.vis-config-range::-ms-fill-upper{background:#ddd;border-radius:10px}input.vis-configuration.vis-config-range::-ms-thumb{background:#385380;border:none;border-radius:50%;height:16px;width:16px}input.vis-configuration.vis-config-range:focus::-ms-fill-lower{background:#888}input.vis-configuration.vis-config-range:focus::-ms-fill-upper{background:#ccc}.vis-configuration-popup{background:rgba(57,76,89,.85);border:2px solid #f2faff;border-radius:4px;color:#fff;font-size:14px;height:30px;line-height:30px;position:absolute;text-align:center;-webkit-transition:opacity .3s ease-in-out;-moz-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out;width:150px}.vis-configuration-popup:after,.vis-configuration-popup:before{border:solid transparent;content:" ";height:0;left:100%;pointer-events:none;position:absolute;top:50%;width:0}.vis-configuration-popup:after{border-color:rgba(136,183,213,0) rgba(136,183,213,0) rgba(136,183,213,0) rgba(57,76,89,.85);border-width:8px;margin-top:-8px}.vis-configuration-popup:before{border-color:rgba(194,225,245,0) rgba(194,225,245,0) rgba(194,225,245,0) #f2faff;border-width:12px;margin-top:-12px}div.vis-tooltip{background-color:#f5f4ed;border:1px solid #808074;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;box-shadow:3px 3px 10px rgba(0,0,0,.2);color:#000;font-family:verdana;font-size:14px;padding:5px;pointer-events:none;position:absolute;visibility:hidden;white-space:nowrap;z-index:5}div.vis-network div.vis-navigation div.vis-button{-webkit-touch-callout:none;background-position:2px 2px;background-repeat:no-repeat;-moz-border-radius:17px;border-radius:17px;cursor:pointer;display:inline-block;height:34px;position:absolute;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:34px}div.vis-network div.vis-navigation div.vis-button:hover{box-shadow:0 0 3px 3px rgba(56,207,21,.3)}div.vis-network div.vis-navigation div.vis-button:active{box-shadow:0 0 1px 3px rgba(56,207,21,.95)}div.vis-network div.vis-navigation div.vis-button.vis-up{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAABphJREFUeNqcV2twU9cR/nbPlVTHxpKRbNnBLyEbPyJisLEcPwgwUMKQtjNJAzNJZkgNNJOmJaZAaDKlxaXDTIBAcJtOOzSYKSkdiimhAdIMjyT4bYgBYxA2BgcUQPLrCiGDR4qt2x+yXTASFt1/957d7zt3z3d39xDCMQWUfgAz/RI/T4pSTAJpAGL8rECAXX7QFQGq9wOHOxYO1oCgjAdJj1wtB095Giv9TFuZAIWHAziATMPhTAwiHgUkYPXFJu92lMP/2MTpB1AKUCVEgNAcleUo1M+2F8TO6crSTncb1QleAOj2OTSX3Ge1p+Va42m5JrnzbnsCE8Ov+EHgpa0LPLvCJjZ/whuIlN8wAcXG+e1LUn9hm238QU84p1Ld83nsXvuO7Lq+LzKYGAT6/dn58m/HJTYf4O3EShkT8Irpzab1Uz9sGevT5+tWn+j6NB4A5hp/5NSr43xjfd5rW5tT9e3OAhCBiCua5/WsDEls/hdvYklZSwDefmrT8eXmtzuDkb5YZ33p9ndylICAVjWxf39xw/5g5Luv/9H84ZWNcwNEypZT87rXjqyJB85UYDMJYN3U7UdLJ6/6JlgqV517teRqf9uTlug8e1zEk27HgD22o98WsTBh8fWxvjm6ApdONbGvse8LM5NUPOm1Cfabuz3nACAgxX0QEFTJAnjNvLJ+Sepb14KRHnN+Ev+1XJOhZs3Qu1mbG97J2NQgsXroa1dtxrGuf8cHi1mUtPTay0lv1DMJSCRVLtoX+FgGgDQNysBAcez89l9nbbsQSji7rlXkEhjPxb/QatHOcFu0M9zz419oFSRhj/3PuaHiyqasv1Con9NGxHAYUsoCxAqImbYSgCWmFbZQwdsur7N0eC4m6tT6/jUZ750Zeb82c+OZGLWh/2p/W+Kfrmy0hIp/aVKpTSIJEqu2QgFx2iE8CwDp0RbH7Ljng/4yXr+XT3QdyhYsodS0slGr0g2OrEUK7eCrKW82SqzCVz3/yfb6vRwM4xn9rN7JkRkOQRLmfJn2LBPxQjDBqp9lD7XbX7X8pKTP160zR2bdeiX5jYeU/nLSTztNkem3XL5eXbltRUkonBxdgZ2IIUmahUxERQSCVT+rK5hzQ89xQ6P8VaaK1f5VmRvqQ4G+lba+nlnlb5brMhvlk7FBiaPzuwQEmEQhg5BOxMjWTncHc2501cQLkjDTsMCWpyuRQxFP0xXIJfp5FyVW4Zy7KajC06ItbiIGg6ZITBxDxIgbrr1jTSM0fibGIHz8O9sKK0GAibEua9spANh4aY2VmcEg+DEkiBgR/L2hYFgGtcErkQQAMVJgBxyy9hboZzv32v+Kpr7qbEECTAIMAoaJa3qPTmNiiAAgJAjk6J5xhu6HDAIgQYGLmI29PocmMcI8MNYvT1ckfzD9H/ub5br4e4Me9WfOKqtyX6Ud2cwC449PRamifDm6Auc0rTXokci+Xo1EAgBckiDuYGLjpTvntcGIA+SFcp6uUAaAI879VhWrRteYAqn/edq758brXJ1327QMhgJcZjA3EBjNrgZjOG1PkAjyTGENMjZPq5ECQ0MDE9ERBqFZrk0OJ3i4x/7vyIjBxGERt3takgVJEAp9xq3f769WiPDNvSsJdT3HDOEASPelmoBRYT3Kzt5uMtwauJEgSOCpwrk1DIJCoNUMwj9v7MweP9XSQ8/hJPp496fZTAICvLqcyv2B7nRbrgCA03JN5h8ub7A8VqpB437xHvsOy3l3cyaB4L2uqxhti1WLMcSgZQCw7+bOooO3Pk4JBZIYYXISMV5sKH59UePM10GESRGpIf/bE92HU452HywSJIGIllctrhp6YAK5+fHds0lLtJFMXNwkV6fFqA29mROefqiMJj1h6um4a5vY/92dKGaBxIhU5zJTWW2cJmEgGOmeb3c8FxAfb9mdf2RzyGGv5MvU7QwuEySwKHFp/c/M71zA/2F7b1RajnYdLAqMukMVu2YcfmDYE2MD7H+7/Xlq6cRIJqm4zXM+qd3TGjVBir43KSLlXjiELe5TsX+3/yW/ST45PaAHbKmccWh12AP93JNZywj0kSABIobpiXRHjtZ6faout2tyZMadGLXBCxBcvl6NfaAz+tKdFmObpzWl2+tIIBACYy0t/yj34M7HvsKUK+CGassvicX7alYDwwq+vykIEqPVa+Q9gdYk5+V+UE7lj3+FGbuBM/X5JUT8QwIVSSSZiTgmoFR2MfiqYFFPfjpkyrfWPopwxP47AP1pK1g9/dqeAAAAAElFTkSuQmCC");bottom:50px;left:55px}div.vis-network div.vis-navigation div.vis-button.vis-down{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAABpdJREFUeNqcV21QlNcVfp5zX9ikoAvLEsAIIgsoHwpqWAQUNKLNaNv8iZ1JMkNG6/Qj/dDUyCSTtCHpmEkwVk3TToZRMjXj5MOG2KidjIkxQYSAQUAtX6IgIN8su8KCoOzbH4sk4q5g77/33uee555z7rnneYmZDB2MKcJKlyYbqOsZVIgGEOgSHQoy4AKbFFjqAo5dWn/rNAh9OpO852oeJHYxtrmEu4WALhMbxG2ZE9uFAlImDRLY/t/y0b3Ig+u+iWOKsAlgIZSb0OIf15kWtKo1NXh1d5xxiSPEN2wUAHrGOg11jirjWVtJyFnb6YgrzoYwocClu0DI5guPDb43Y2LLp/Iaqf9JCGSErGvIifxd7aqQn/TOJCvFvZ8Hf9haEH+m/6sFQgHBv1Sts/15WmJLkeyl6FuFwFPzny1/ZdE7Nfg/xhv1uUmH2w6kggQp+yqze7d5JbZ8Im+KpucSwI6EN7/cYtlxZarBCts3ptfrtq9odjaGKihE+sV0vRC3u8RqWmmbij149W+Wd5p2rnET6bsqsntyb6+pO3KqkE8FvLxo74lNUX9s9uTJb8/9fG2L81KoogJFYfCm3b9usNq0MXxzw1RsUkDqQICPqf/b/q8sQi3j4WdmtV47OFgNAO6r+DEUFAtFAc9YtpXmRP6hxVsI24cvhyoqnFtrK6jM7isgBa3Dl0O94TeGb255MvzXpUIFjVrhxo/dzgoARBuwFQJkBK9reCnurxfvXX8CRW3yW1G749vT2Br7ysW0oNX1pKDTPG+rm1gHRbibAHLm/7522sKnQCZqFgCUaBCqaS/bEw9vqtWoQROf3dBBiT6KTACImZ3YueqhDdOWjDbFQ4IzIl4elNUX5begU1HD6lPRmULKeghhDcpqnUmZuD3+nkgTH6gZEE9ctlZSoGmG9UIynSCsQVndMyX+IZGiBoHMjHh2SreCglClaSBiSEG8cYnD24bv7CWms/3FocO3hnw13plTggAFb196NdlPM44tC0zrSg5ItXmyEz070UEKCMRqQgkkBQ9NvL2eSJ+revoJTORSpoT6do4/7/7UShBFHQexM+HdfyUHWO8iN/uaRzX3/QjUSLlnqM72F4cCRIY5u9Zf+Y+BAv4AvzpkQ7WAIBRujA/7Vg6cia9xlId6InafVEAAGnQMUCSkb6zTMPdBy8hU3JjrphIq+CrD+Mvxeyumrr+4IH9y7o2GF5eDghuuGx4L2zbWZ9Dc0RoQRbkkFNRdP2/0BH7EtLJLKCjr+zqh2l5u8haZ847vTBW24kRFQXKAtcsT5oqz3igQENIoECkjBJUDZSGewBlBj/ammjLrdX1c/t70ero34gMte9IByLLAjPrUwKweT5jawQshdIuGMiF5XEBU2koivBl9NeEfJeYHwuxtI81zPrn2z6ip60c6DkV1jLTOCTaE2HNjd5Z4s9MwWBOhqEHp/I9cWDtUrJNoHm4KO9P7hdnTBoMYXI8Gb6gVCg63FS53jg9O5tA57tSOdHywnCAygrJrfcTgUe5U2cvNHSPtYYoKCWlrTgsIneB2AfFR+4F4b6f9ZdTzF6P8Ytud407/dy/nL7k9X9i8J9l5y+Ef6RfbnjPvWa8N5suez+KFCgqyPY95Lnd3stv2AcBZ2+mFbze+lui1xc3dXCUUlPafXNx4/aKxcajWWNp/MklRw8/mPFntbd+h1oLE847KhQQxejVg36QQqD0MPTzHv42Ux+uGasJNBnPfwllJd71kkX7RQ3WDNf7dox3BLcNNs6vt34bbbvYHJhlTGp6O+JVHb0/2HJtX1PH+aqECqG/5YN1nlXcokGvvO6vCc4x+QskotxVHB/qa+xbOWuzw8NB3nuo+Ht0z2hHsuGU3GrWAoZfi3jrxgHpw3BPpobaCH7vbqOw6mHI836vYW3Eqcq9AtioqbJy7ufQ3lhfu8sR+s9+3vL8klACsQSu7AnxMY1MxH7YXJp7oPpLulrrj+9575Ni2aeVt1teWfEWfHQLCaspseHzOU7VWU+aM5G2NoyL4i+6j8XWDNQsmGsKu/cv+nTtjQb/mm7hfENyvqEAK5v8opjPJaL26KGBpd5TfguuBvuZRgBgY6zO0jlyZXXe9JqR+8MK8ntHOMHfHIkhu2b/0yIH7/oXJ0yFlxYnPUdRbvuILgO7+y+91l6Ka6M+cnCf4fMSypXvymHf/vzBTD3CuNGUFKT8lmK5Rs5ASqKiBlAGBXFaiSuni0fkp1pJ7Ed4e/xsAqLk46EWsG1EAAAAASUVORK5CYII=");bottom:10px;left:55px}div.vis-network div.vis-navigation div.vis-button.vis-left{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAABt5JREFUeNqsl2lUlOcVx//3Pi9DZRsGBgYiS2RYBQKIjAhEJW4pNrXNMbZpWtTGNkttYmJMG5soSZckRk+0p+dYPYY0Gk0ihlhRj63GhVUgBhDD5oIOy8AAMwzD4lCYtx+GqCQKuNyP7/Pc+3u2+7/3JUzEZFBYLh62S7yIZDmVBEIBqOwsQ4DNdtBFASq2A4cuZAwVgCCPF5LGHM0Chz+E1XamzUyAzCMO7IhMI+5MDCK+HpCANd+U2rYgC/Y7BoflYgVA2RAOoNYtyjDTe45+hk96e5QywaJR+NsAwDhocK61VCjLTYWaclNB0OW+en8mhl22g8C/rn7U+uGEwdov+C0i+Q0mIFWzoD7zwVU1czQ/6pjIreR3HPX5VL9jalHXiQgmBoH+XLHAtH5csDaXtxDLLzIBv5jyfOmG2H9U4S7snbpX43KaPpgBIhDx1rPzOlbfPC5GQT/nd1mS1zABa6PfPf5y5F/rcJeWpp7fPkly6f7KXBRCoOSATFfXll19x74HDsvFCghsJAG8HrvlvytCXm7EPVqc5wyzp5NX15muE1omKXXyMnd9yy5r5Q3wPghvJzrLAlimXV38+7D1DbhPFq1M6O4b6rPVWKsCBfHi5EWWv9TkQBYAEPpLvERMC9N8FtRvjt9dPl6wwo5jPvuas7WV5jNqEjz8wA+CBsaan+w9x1hrrXJtuaZX97ooLfqPLCUEGRR+iOwAsF2X98Uc30W3fb02u41frVqeVmo6FUkkwCAwCWxJ2Ls/0TPFNBb8TNdp9WvnVz4OAKdmX2QOzcMsAAjziDGMBd3asCF6SXHyknJTfqQTK+zpvhnVKT5zawCgzFTgN94pJXvP7gxxjTAIkpB+MnSWRMQZYEDnPVt/K4ejbZ/77726Lb6h95tAAiPELaJ1bcTbRfGeM8xv1azWSeyEa0P9igk+Nr1+oNFfkpwzJCJKIQA679ntN08yDXYo3qh+LuUrc0E4EcNL4dP7VNDzpU8FP3vpekoQQ5CEw4bPdEfa9+sAgEZUmkmAAAS5hLQ9p11XGO+pM8V5JLUfMeQARDMlEMKIGFOVCZYb0C7Fz0oeXmIZ6nZzYoV9od/jVS+GbahUOnn9b7T6sEOviUGyA8bMDlUa0W79wBW/bZf+lrY98cDBUI8YCxGDgHCJiVVEDN8R7QWAE8Z/+1mGut2i3eP1r0S+XRztkdBzq6NbF7WpbF3UprKxjvfHxbrfttla/QBArVDbJJIAQCURMRg8ugrKIAKBSNxzHtN3VdmxY0iQYSZmTeegwTlgknYAAB7RZBh2Nm7urbeeC1r19ROT52kWn3shfH2Fu1AO3RxjY/0fdac7/hPPJMDE11GC+HpBJmIEuAS3Oa6w01lybMbMgvgCE6O255zy24DeCr/Bvckn9+u8ZjXYIYvjxoMJy8oeXZrT9GHIqMWTwA2oI6cFMeDIcAiSEOyibXsmZG0hAFzuq1OyY6xBAnMJgdPOmks08zU/bbsB9x18P37PqS/b8+o/a96ZcLm3PmBH46Z5x40HW1eFvl4Uq0w0MwiCBOb7/qTsd6GvVY537DXWas1Iw1AiNJnOgwJi+bXhAbE08OnvaXSIW0TvYw88eaF/uM/WNdju3m5r9TlhPBzVNNDoPGC/5tRma/GJ80xqjPPUjVuvP2narrMOWd1Jlv/E1fN782UiNPZf9C/qOKa+ndOz2j+cz046sn+6KrVOsODirpOxld0lUxmEBK/ktvGgFd2l6taBZn9BAtEz5xYIvAn4/8rFKkgstAyZ6Yf+S67ezlkiSU73XXRV6xqh93TyssR4JF75efBvymLdE03jgT/Wb5tutLWpGbTm7wHZxQQAT+yDuKLyHRIk4cnAZ4pfCF9/HvfR9uh3xBxtz00BANsVDylnac6wAICaHMiBmW5NRLy4trcq0MtZ3RnpHme5H9AvjYeCc1t3pzMJgOSVnyw4eHZUB9Kyu68iMFPpysSppab8UJVC3Rnp/pDlXqF7mnYsdKQbv7cr6fDGW/Zczbt6jgUtV6kIlFxuyg/tH+6zJXmlGe8G+mlzdsyB1j3pTAwZ9q3/Sspbc9tmDwD0H3UffXCFlyuTlFpnPRdYb612c5c8+idPCu6fCLDKUubzsf6fSaWm0wmO9hbvZU8fDR2zoZ97OuppAu0UJEDEmOISZohT6q7Gek5rD3GN6FEp1DaAYB7sdNYPXPao7anS1Fmrg402g7+jYhGIaOXOaQc+uONfmCwZXJIf8xKx2KRgxYgOS+CROuyoyQKCxIhkOr4T6JWgxGnvZ1HWnf/CfHcBXxcnpRHxYwRKkUjSErFKkAQiNjP4kmBRTHbKm5KkKxwL+K39fwDX1XGF8ct++QAAAABJRU5ErkJggg==");bottom:10px;left:15px}div.vis-network div.vis-navigation div.vis-button.vis-right{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAABs1JREFUeNqsl3tQlOcVxp9z3m+XygK7C4sLxkW5o4CAkYssFSkRjabjJEOSJm1IbZx2krapiZdeprW0NVVJ0pqMM0kYJQlqkoZImGioE1ItiCAgIsFwE4Es99vCslwChf36xy5EW1A0Pn9+73fO772e93kJC5EMCszFd20SbyFZNpJAAACtjWUI8KAN1CRAJTbg9LXNU+dBkG+Xkm7Zmg4OWoUdNqZXmQCZHQFsz0yOcCYGEc8mJGDnl2UTh5AO2x2DA3OxDaAsCDvQ32VF11qP9aZYz6SeFeooi17pPQEAvZNdTnWWKnWFuVhfYT7v0zza4M3EsMk2EPgnNZusby8Y7P8x/5lI/gMTYNSnNKQt/0Xtev1DfQtZlaK+M54fmDJXXhg4G8zEINBfqlLMe28L9s/lQ8Tyr5iAJ32fK/tj+OFq3IUO1O+JyGk7GgsiEPFrlQ/07bixXdwEPckHWZJ3MgG7Qw9+/mLIS/W4SyXoNvQskpyHLg1e8CNQ3NI0laoje7Tg/8CBudgGgQwSwO/DD322ze/FFnxLRWhiBzUK94GLA2f9mSTjfU+7mjqyrVe+AX8I4aGgShbA0/47Sn4ZuLcR90ih6qih0anRiVprtUEQb43bYtlXmwNZAEDAj/ACMW1M8ExpeDXyWMVCEl4yF7vntR/zLeov8JJlWfZR+Y3N92+cx/reOmu1quNrk27EWW0xvWspJcigoNNkA4C3Yk59vH7xltvu3ktDxe7PX34ilQCQfeci1j2xfn94ZrGCneY8uxcHCnW/vbr9EQD4d2ITc8AprAOAQLewroVAAaB8oMiLiRHvmVy7znNTjWCFrXKoJOSHFQ+kvnF9f+jco07s91MFdwmSkHQuYB0T8WYwIcYj0bTQdRufGlFKJMFVaCb/GvZW6aGI4yeXOwd2mr/u05zsyDY+W5X64Nm+fO85NpuJiCFJTpslIoonADEeiT2zIzIXuh+o25PQNtbsNVMOBUn2g08MiSTHN3uZjNTEDr4dnX/6H+1H/XPasmKvW+sMGfW/MXzende4K3h/ibvSYxIAItyie/K7cgCitQxCIBFjpTrKMgM+WPfrhLbxFi9iMQtlYjAJSCSBSYBAIPBNI3p86TPXj8bk56R4PVylFE626uFLQc9efiTVPDmgBIAAtzALEYNBQRITa4kYix21FwBax655CVagPLk7806Pj1qo/7MraF/FQ14/aMhszYhvGqn3KTef89rklWrSKXUTkn3mtJK9Bzf3XJA0e/PcrdgxIwSCDPmbZMQgABJkDBKzvn+yy2npIv9xAPB1Ceo2jTZ7Gc8afipIgEhAkACDwcSQQZBIIGnx5it7gg+U3wgcnbZKR1r+FnW+v2DVtDwtXCXNSKz797oAwDzZ7ySRAIBBFsTXmBh1w1+oZ4J3h+wv9lUFdbMDOrO+5IAqWIGZthuV13nC77nKRx8r7PssyibLIkoT1/h65HsfzWyu5tF6NYNB4EYJzKUETqgcLNVv0D/cDQBrNAnm9+LOfTLfNB5u2hf5z+6TMexYji+tVdrM5leMbWOtSwQx/F1C2rcuebIqwSO568a4WmuN3mEYSiUi+pRl2l1pLvYBsKArUKVwnZRYgdHpMWVG4+/WXhwoDBXE7OmkHzJ6JNemLfv51bniGqzVPoIkyLbpfK7ZMFIkE6FlrMn7Ql+BbiHg+zXGbgLjylDpyosD58KZmKM0cfWHI9//aD5o1VCZrnO83VuQQOja5PMCfwK8n3K2ChIbLVOD9KB36le3A+u/s2Q81C2yRavQmQNdVnamLnmq4nHD9jpB0rwm77jpjTW9E906Bu18fWlWCQHAox9CtGoXTwmS8IThZyXPB+29inuoE6bMsDM9ufEAMNHqJuU8ljMtAKA2B7IhzaWNiLfWjVQb3J10/SGuEZZ7Af1X7+lluZ3HkpgEQPL291M+qbzJgXQcG60ypKlVTGwsMxcFaJW6/hDXVZZvCz3RlrmRiQHwy9nRn2bM6bnas4cLfH6s1RIorsJcFDA2PToR7Z7QezfQD9qzwvI6TyTZC47ttXeiT+2c1+wBgOndoTPLt7mrmCRjvfULQ4O1xsVVchu7b9GysYUAqy3lnsdNb0aXmQuj7PYWL2etuRl6S0OfXLjiGQIdEY6K5esc2BWhjvkqXLO6x08VPKxV6iYAwuBkv5NpvNmtbrhaX2+tWdY70eVNINhtLW0/sjrv6B0/YdJlcGlR2AvE4hUlKwHQ7BU5cz8LRx0HaPY7gXb53L/67+mUfudPmP/twOWS6AQi/j6B4iWS/IlYK+yGYJDB1wWLErLRKd/omOJbAWf03wEAyO9m+/TtS3AAAAAASUVORK5CYII=");bottom:10px;left:95px}div.vis-network div.vis-navigation div.vis-button.vis-zoomIn{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAABiBJREFUeNqkV2tQlOcVfp7zvgvDRe66y8htXUBR1GoFI+BtFJvRtjPJBGeaH2a8DGmbttgSTWbSJEw6TWOsrbbpTIeJZGqaTipTa6LJZDTVUTYQdNAohoso6qLucnERN0Axcb/8+HaJUHDX9Pz6vnnPe57vXJ5zzkeEIwaYcwBL/VrW0TCKqZANINEvBhSk3w9eUmC9HzjcsfarOhBGKJN84GkVJHcetvqFu4SAIYELYlpm4LpQQMqoQQKVnzeO7EYV/A8NnHMAGwHWQJmAjtg895LkFa7FU1d258UvGLBGpI4AQM9dd2TrwNn4016n9bS3LqNzsD1VKPAbfhCyqflR31thAzv+La+QxotCoNi6pn1D1s9aVli/3xtOVk72fjT1XVf17E9uHZspFBD8zdk13pdCAjsOyG6KUSEEnrT/tPHluW+cw7eQ19q2z6/t2rsYJEjZ07S6d+ukwI5/yQ7RxnYC2DZnx8dbHNs6xxs85T2R9GprZcmVwYs2BYWsmBzP83m7nIVJS73jdfdd+7PjjUu/XWUCGTtPre7ZHjxTY3Kq8DoV8Ou5u49snPGrKxN58syZ9aVXBztsigoUBd+Xt2NbfZ8llaVvah+vOz9hcX+CJenWp7eOOYS6ePpTU1w39vk+AwCzFPdDQbFGFPCUY2v9hqxfXJ0shNeHLtsUFc6UequbVvdVkwLX0GXbZPpl6Zuu/ij9x/VCBU1dU7bfdFYAIDsSFRCgeOqa9hfy/nDhwfwTKOrRd0U95n0iqch9+cKS5JVtpMCdkllhAhugCHcRwAb7z1tCEp8CCXAWAJRoCFXIYnti+sYWTQ0tll0wQMk+hGUAkBOX714xbV1IyuhxHhIMC/iR5OV9M2JmuhU1Vh7PXiakrIUQhcnLXeHQxPT4GyAtFqgwgAPF5iIFWkeu1SSLCKAweXn3/ZR5rXV7SddQpy3YDoNems9qTI5hGCitm1MOAAx0aaFCerTd84zjBed3Egq9ADA/rqD7Q3ctQC4REDmkYHb8goGgsR2tz5V0DV+xUdQoqAQ81RybU4IgFWgACgpaLLCIBUo0bv63y/aXy6+WBHWz4/IHSIGAuVooiaRgWqD3AsDVoQ6bEgtOrfJUhwrf0WUtk+r8sL6wvHvk5ijVUiJSRrQZuURtfoGMuaCoRyfP/yMy0XykgAA0DPRTxNp31x2ZFuUYBgB7bK7HNdhpKz6WXq6oQCooKghMKhkgji77vBoA1jkXlAvVfRQjFMUcmxSkRWd6gpjeu32R2kxTvyhKh1DQeud8fFBh26zfOe0xuR4JgAbzywCoRSzfeDUKatJKUQK+CjKiHZ6nZ2xzBnU7B9vixTy7qCHSQEhJU3+DtdT6mAcAFiWUeP/xyPH3Jwrfo3XzysemRcEA8F5RY8h6aPE1WwMLQ4OQ/EBANHmdGWHlzZyxk3ayB0m771yGooYy+KE0l35x0iBxZehS6ie9R1PCMaDvCzWDXA4hZ283ptwcvp6qqDBnyao6AWEQrBQQ/7y+d3YoA+NBTAaElo973p8tVFCQyipW+c3pdNu7BwBOe+tm/eniK/kPFWowpMfvuKrzzw80zSKIkWsJe0bHYu163BNwMwDsv7G36ODNtzMnM5IWZfeQgscbisvLPl1aDhLTo7I8k+n/p+dw5pGeg0WKGiS31K6vvTdmA7nx9uDZ9A3xMUIpbvSezE6MSOmbNWXewHhD6dH23o7BlqQvvrwTK6KQFpXl2WyvcE6LTB2eCPSdrurvmcUnO/cVfPD6pMteyfGs3QKpUFQoS9tU/xPH8xe+Tdd693pN/pHug0Xmqntvz1uLDo9Z9v5nnrn+dvujrI1JMUJd3OY7n97ua46douOGpkdlDoUDeG7g1NS/u/5a0Og9scCsB+ysWXSoMuyFftWJvM0E31SBjmWPznHPjy+8NjdhYfeMmJl3EiNSRgCi/25fpGu4M671zjlrm685s2fEnUoQ5lrLLW8uPLj3oX9hqgxIw8n8X1LU7yMkItCHzREZrGQV6ONmy5TggHk247sL/1jFqof/hRn/AWfqC0pI+QHBIk3tICXRrFTpF8hlJaqefh6yFxQ6HwQYlK8HAKyt3WsWxl7fAAAAAElFTkSuQmCC");bottom:10px;right:15px}div.vis-network div.vis-navigation div.vis-button.vis-zoomOut{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAABV5JREFUeNq0l2tQVVUYht/3W/vACMr16IFRQDiAgChpgiikMqY1WjnN9KsfGOXYTOVgkvbDUsZuXrK0qZmGUSvNspjI8TZOmo6AGBoZYly8YB6Qw80DBwQ6jJ3dj30OZZmiwvtv77XW96y91l7v9y1iMNLBuCI84tZkIXU9gwqxAILdokNBOtzgJQWWuYEDFxfcLAGh3y0k79iaD4mfjOVu4WYhoItngBiR6RkuFJAyEJBA3m/lri3Ih/uewXFFyAG4A8oAWkcm2meEzrFNH53Vkhg4xWnxCXcBQGu/3bfGeTbwjKPUcsZRElnfUxcuFLh1Nwh5vurx7s8GDbZ+L+tI/U0hkGGZX5c9/pXqOZYn2gazK8Vth0fvsRUknbx+bIJQQPCts/Mda+4KthbJFoqeKwSejX6pfO2kjytxH1pfuyqlsGH7dJAgZWvFo23L/9muboF+JxtE0/OEwMqJG46uSHinFvepTPO8lhGaX+fPHSdjCKaPy/b3v7az58h/wHFFyIHCRirgjUlbfsiJWXEFD6iUoOkdQaaQ6z9dP2YVahljF4+yXdvZ/evf4G+hQk2sEAUsti4vWxa35gKGSBMDp3T23OxxVXdXRijKovSFzrerC6ELAMT6IhcCZIyeX7c68YPzGGLlxq89PyM0q5YU2M1RuQAg0EERbiaA7Ohl1RgmPTM2p1qjBk1Mm6GDErsfswAgLiDZPmfMwrbhAqeHzm6P8Z9gV9SQdTx2lpCyAEKkhc62YZiVEjTdRgo0zXeBRnImAaSFzm7xdjjtOBGyvmZVZkNvfZjXDhU14+BToFEDKRAQpAJ0HRTjP6XHpYUKEX7RzS9bV5c+FJTmAICUgNSWQ/ZCgJwhIOJIQVLgFKcXvKHm9cyGvithFDUAFQqECho1CBUIggYapAJ1QEFBExNMYoISDU1/NIR9cvndTG/c2IBkp2fC8ZpQgknBGI/3AsDvvRfDlJhwem5zwYMs7VNlaUtbXE1h3mezj9mlGSsXrBkzkFsGKGoDmedBJLfLjxQQgAYdHRSxtPfbfceNsPYBQPTI+GZbT31YxrGIpYoKpIKigkAgFOggNBrbQBBCBaEM2L+iGGmTgnF+Uc1epqO/3VejAoAOUZSLQkFN17lAb4eVCe+VRvvHN4sH6t1feqAmMUGoPHvvhdLzTjzfKoj0sza/GLOy1Bu3vqc20Pgl5YIGkVOEZFZ0nLLMszzdDADTgjIdX6Uf3zfUx6m6u8riKRhOCcmDAqLCURo53Oe4rrsyUlGD0nlIqubdKNZJXOm9FH6y7Yh5uKBnO8vNTX2N4YoKE2fMLREQOsE8AfFN4/ak4QIfbd2XJFRQkLx85ruN7NTp2AoAZxwlCR9dWJc81NDdtoLkc86KBIJwXQ3aOpCPqwuhR2SPbCBlUc2NyogQX3N7wqgU51BAf2w9EFXUtCtLqADqS76ev6/ilgrk2q6esxHZgf5CySh3FMcG+5jbE0ZNdj4odHdDwWPGcZNNO1MPbrxtzdW4s+tI5HPBwQTTzziKY3v/7HGlhmS23g90T+OO5L1Nu7MMw3Fv/Tx1f97/FnsAYPui8/D4nBB/oZZR230uoq67auQoLaB37Iio3sEAK52nR39p+zS13HFiilHeYtOOabdC71jQzz2R+ALBbcrjWNF+cfaUwLSrk4KmtsT4T+gK9jG7AKKjv93X1lcfUNNVaantropqddnDCcIoa7lk29S92+/5CpOvQ04VJ79KUe/7iI/Hh40U6c3PyuPjhmWKN8G8Fvnw1A/zmX/vV5h/T+CXstRMUp4kOFOjZiUlWBkFQYdALitRZXRzf3RqWumdgF79NQDBOa2V/iYSHAAAAABJRU5ErkJggg==");bottom:10px;right:55px}div.vis-network div.vis-navigation div.vis-button.vis-zoomExtends{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAABptJREFUeNqsl21QlNcVx///cx9hIipuAJHasgHlRdw0xay7yK7smg6sb2DSdtqZduLUNENmOk1tQuM4U7UzTvshSRlFZzoNCWSSSTJp+6VNkLCAeQHBoCCgqNBE0wUqL+KuwIiiZZ9+eHa3aAS3Sf8zO8/L3nt+95x7z7n3YWlpKUQEJAEgch9+Jola9xEC2ADBVgAOKqwCYAqKDgUJBIHPBWwFWQNdbyZFBwAC0GGIAHQSj3/8HHRdhzYbdDfwg4IjAsGvICgXAroYBiCEDkBBACBZoyST4gDwQqh7mQ4cEkhQD0EBIIggRMQAh2EiEvEYAGrdR3YSqIYCIEDaotVDeYnu/ryEjSOr43PHl8WmTBPA6PRQ7IWJrvhT/ubkU/7m1EvX+1KEUh7Ug+WkPEXgdUSkR+xrd0NJ4qjr8AEI9pGAI7mo78mHfnF+Y/K2K7iHUheuvJG6cOUNz/LvDwPobrpSl/Ruf2VOy9UPs4RSTSANwH4Y449EVdnt9ojHIeghCHYLgR+n/7zt4Np32tIWZU4hSpnjVk1t/caPfOO3/f++MNH5TVJcisoEoo4ksgbsXwYfdR1+kQplQuCFNS82Pp/9+158RTkTC0ce0OKutQeOp5PME0qcUBqyBmwGOC8vz4AWVOyE4CUqYO/Dh+p3pj//Bb6mHllqCyxd8ODVT69+uFKoOYTSnzFg7SJpzHFNQYWiQrUIsCN9V+uOh375zz179pSGI1FSUuK12+2+aGDt7e3muro6T/h57969lZdvDrT+ZbA6n0B1nfPVN7e0PjMjIgIIdkEAR1JR329yDvaE0+l/hQKA1Wr1bd682SsikUW7K+O3PesTNvaSAiXaLhGBvO86RFEoJ4Adac+eDxsgiZKSEm9NTY3n5MmT5mjBHR0d5vr6es+mTZu8SqnI+x+s+Ol5jRo0auX1jtepQaEAADKWWIbcy7ZGUmb79u1eu93uI+mtra31HLj5TGDs9rBJICCNn1GRCKGCUJAUuzzw6CfbTB6Px7t27VofAG/YXl6Ceyw9LmvIN3UxZUafKRACWyCELcHVP3vk4fDabDZf+2N/D9g+fsLEEFSooFGDogZNFkBRgSCsTcWm066jgRAU4et/F5u9nxRosmCLRmE+QdgSXCNzhW/s9rDJ63wVJx77V+V8YS6UNaW8BdOcqzx+3Ujt0F8Bcr1GMIMU5CzJHZ+rg6IGCYV2PimoyIK6lzIWrxkPTVGmRoqJFCyLTZmeq4MB5f3BVADnbpcQkzStUQMAk0YKBPfzxlhA95NQQe43QBotBECAFFyZHo6dz6CKCizAPFPivzUWqxm2AqIgnwkFvZNn4uczGK3Hah7wpet98UZ85R8aKScIcXYEWpMLkx8fvleHpNjlAWtTsakQa0pVKGcJQqMGUqCHBvfdjp/gTP6xwFzg85PdyaH2J4SUowKiw3889e4KBACnT582W5uKTV2uusAdUFlgzBcFQoFGDT35HwW+82mhqaenxwwA4WtYfRNnUkMZUqsJpEkn8cXU5yktYw2JjsTCMQDwer0ekt6GhgZPUVGRd3fu7qjqdU9Mj7mlpcVD0tvS0uKxWCyVANB5rS3x8s3BFEUFgTTLtuZndQHLBMSfB6pyZtfqMDQ3NzfqTcJisficTqc3BI+8bxh9L8corarM3fnDoIT+rACAU/7m7MOfHbCEwQDQ2Njo6erqinqTOHfuXNjjiI23+ystZ8c7smmkWgVJcN++fRARfLDhlacEUqVEQ1nm77xPrHjSh/+Djo3WmN/s/6OHEOgIPr2h63tVuq5Dud1ukETWoK3zorkzTiiONn/TKlNM4lj24m+Pf13o2wOVHqGA5MsAXjKPrDaqnMvlQnjTzhy0Nlw0d5oI5p3yN62amrk+ve5B5+hXgb47WGX52+V3NgoFOvQKAGUkkTqcbZy5XC7XHYf4zEFr3aXU7jih5uidPPOtvsmzixZr8VMrHjBHddLsHj+Z9Fb/n9a1+T/JDaXey0IpEzEKkHnU8Jj79++PeEwSSimQRGP+Gz8j5DVFBVKQtjBj6JGlNt/D8Y+OpMdlTphiEqcB4tqtsVjfjUtLLkx0J/dOnjWPTg+lEARIEHwaQJVQIYggACC/qxi6rn8ZHL4XETSsf0MU1HOk/CFGYgAwskUqY5eBitRxzn7/a0V1EEBwdqkN6jPI7y4xPmHmC5unbWdQRMqP2d86qANOksU6gvmArNQRNClqABnQgYuK0krI+wCOAyH3DK/vqOXhaf3PAO7mIRjDNV25AAAAAElFTkSuQmCC");bottom:50px;right:15px}div.vis-network div.vis-manipulation{background:#fff;background:-moz-linear-gradient(top,#fff 0,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(48%,#fcfcfc),color-stop(50%,#fafafa),color-stop(100%,#fcfcfc));background:-webkit-linear-gradient(top,#fff,#fcfcfc 48%,#fafafa 50%,#fcfcfc);background:-o-linear-gradient(top,#fff 0,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%);background:-ms-linear-gradient(top,#fff 0,#fcfcfc 48%,#fafafa 50%,#fcfcfc 100%);background:linear-gradient(180deg,#fff 0,#fcfcfc 48%,#fafafa 50%,#fcfcfc);border:0 solid #d6d9d8;border-bottom:1px;box-sizing:content-box;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#fcfcfc",GradientType=0);height:28px;left:0;padding-top:4px;position:absolute;top:0;width:100%}div.vis-network button.vis-edit-mode,div.vis-network div.vis-edit-mode{height:30px;left:0;position:absolute;top:5px}div.vis-network button.vis-close{-webkit-touch-callout:none;background-color:transparent;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAADvGaVRYdFhNTDpjb20uYWRvYmUueG1wAAAAAAA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/Pgo8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjUtYzAyMSA3OS4xNTQ5MTEsIDIwMTMvMTAvMjktMTE6NDc6MTYgICAgICAgICI+CiAgIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+CiAgICAgIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiCiAgICAgICAgICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIKICAgICAgICAgICAgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iCiAgICAgICAgICAgIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiCiAgICAgICAgICAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIKICAgICAgICAgICAgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIgogICAgICAgICAgICB4bWxuczp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4wLyIKICAgICAgICAgICAgeG1sbnM6ZXhpZj0iaHR0cDovL25zLmFkb2JlLmNvbS9leGlmLzEuMC8iPgogICAgICAgICA8eG1wOkNyZWF0b3JUb29sPkFkb2JlIFBob3Rvc2hvcCBDQyAoV2luZG93cyk8L3htcDpDcmVhdG9yVG9vbD4KICAgICAgICAgPHhtcDpDcmVhdGVEYXRlPjIwMTQtMDItMTRUMTE6NTU6MzUrMDE6MDA8L3htcDpDcmVhdGVEYXRlPgogICAgICAgICA8eG1wOk1ldGFkYXRhRGF0ZT4yMDE0LTAyLTE0VDEyOjA1OjE3KzAxOjAwPC94bXA6TWV0YWRhdGFEYXRlPgogICAgICAgICA8eG1wOk1vZGlmeURhdGU+MjAxNC0wMi0xNFQxMjowNToxNyswMTowMDwveG1wOk1vZGlmeURhdGU+CiAgICAgICAgIDx4bXBNTTpJbnN0YW5jZUlEPnhtcC5paWQ6NjU0YmM5YmQtMWI2Yi1jYjRhLTllOWQtNWY2MzgxNDVjZjk0PC94bXBNTTpJbnN0YW5jZUlEPgogICAgICAgICA8eG1wTU06RG9jdW1lbnRJRD54bXAuZGlkOjk4MmM2MGIwLWUzZjMtMDk0MC04MjU0LTFiZTliNWE0ZTE4MzwveG1wTU06RG9jdW1lbnRJRD4KICAgICAgICAgPHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD54bXAuZGlkOjk4MmM2MGIwLWUzZjMtMDk0MC04MjU0LTFiZTliNWE0ZTE4MzwveG1wTU06T3JpZ2luYWxEb2N1bWVudElEPgogICAgICAgICA8eG1wTU06SGlzdG9yeT4KICAgICAgICAgICAgPHJkZjpTZXE+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPmNyZWF0ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDo5ODJjNjBiMC1lM2YzLTA5NDAtODI1NC0xYmU5YjVhNGUxODM8L3N0RXZ0Omluc3RhbmNlSUQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTQtMDItMTRUMTE6NTU6MzUrMDE6MDA8L3N0RXZ0OndoZW4+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIFBob3Rvc2hvcCBDQyAoV2luZG93cyk8L3N0RXZ0OnNvZnR3YXJlQWdlbnQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5zYXZlZDwvc3RFdnQ6YWN0aW9uPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOjIxODYxNmM2LTM1MWMtNDI0OS04YWFkLWJkZDQ2ZTczNWE0NDwvc3RFdnQ6aW5zdGFuY2VJRD4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OndoZW4+MjAxNC0wMi0xNFQxMTo1NTozNSswMTowMDwvc3RFdnQ6d2hlbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OnNvZnR3YXJlQWdlbnQ+QWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKTwvc3RFdnQ6c29mdHdhcmVBZ2VudD4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmNoYW5nZWQ+Lzwvc3RFdnQ6Y2hhbmdlZD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPnNhdmVkPC9zdEV2dDphY3Rpb24+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDppbnN0YW5jZUlEPnhtcC5paWQ6NjU0YmM5YmQtMWI2Yi1jYjRhLTllOWQtNWY2MzgxNDVjZjk0PC9zdEV2dDppbnN0YW5jZUlEPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6d2hlbj4yMDE0LTAyLTE0VDEyOjA1OjE3KzAxOjAwPC9zdEV2dDp3aGVuPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6c29mdHdhcmVBZ2VudD5BZG9iZSBQaG90b3Nob3AgQ0MgKFdpbmRvd3MpPC9zdEV2dDpzb2Z0d2FyZUFnZW50PgogICAgICAgICAgICAgICAgICA8c3RFdnQ6Y2hhbmdlZD4vPC9zdEV2dDpjaGFuZ2VkPgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgPC9yZGY6U2VxPgogICAgICAgICA8L3htcE1NOkhpc3Rvcnk+CiAgICAgICAgIDxkYzpmb3JtYXQ+aW1hZ2UvcG5nPC9kYzpmb3JtYXQ+CiAgICAgICAgIDxwaG90b3Nob3A6Q29sb3JNb2RlPjM8L3Bob3Rvc2hvcDpDb2xvck1vZGU+CiAgICAgICAgIDxwaG90b3Nob3A6SUNDUHJvZmlsZT5zUkdCIElFQzYxOTY2LTIuMTwvcGhvdG9zaG9wOklDQ1Byb2ZpbGU+CiAgICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6T3JpZW50YXRpb24+CiAgICAgICAgIDx0aWZmOlhSZXNvbHV0aW9uPjcyMDAwMC8xMDAwMDwvdGlmZjpYUmVzb2x1dGlvbj4KICAgICAgICAgPHRpZmY6WVJlc29sdXRpb24+NzIwMDAwLzEwMDAwPC90aWZmOllSZXNvbHV0aW9uPgogICAgICAgICA8dGlmZjpSZXNvbHV0aW9uVW5pdD4yPC90aWZmOlJlc29sdXRpb25Vbml0PgogICAgICAgICA8ZXhpZjpDb2xvclNwYWNlPjE8L2V4aWY6Q29sb3JTcGFjZT4KICAgICAgICAgPGV4aWY6UGl4ZWxYRGltZW5zaW9uPjc8L2V4aWY6UGl4ZWxYRGltZW5zaW9uPgogICAgICAgICA8ZXhpZjpQaXhlbFlEaW1lbnNpb24+NzwvZXhpZjpQaXhlbFlEaW1lbnNpb24+CiAgICAgIDwvcmRmOkRlc2NyaXB0aW9uPgogICA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8P3hwYWNrZXQgZW5kPSJ3Ij8+cZUZMwAAACBjSFJNAAB6JQAAgIMAAPn/AACA6QAAdTAAAOpgAAA6mAAAF2+SX8VGAAAA2ElEQVR42gDLADT/AS0tLUQFBQUVFxcXtPHx8fPl5eUNCAgITCkpKesEHx8fGgYGBjH+/v4a+Pj4qgQEBFU6OjodMTExzwQUFBSvEBAQEfX19SD19fVqNDQ0CElJSd/9/f2vAwEBAfrn5+fkBwcHLRYWFgsXFxfz29vbo9LS0uwDDQ0NDfPz81orKysXIyMj+ODg4Avh4eEa/f391gMkJCRYPz8/KUhISOMCAgKh8fHxHRsbGx4UFBQQBDk5OeY7Ozv7CAgItPb29vMEBASaJSUlTQ0NDesDAEwpT0Ko8Ri2AAAAAElFTkSuQmCC");background-position:20px 3px;background-repeat:no-repeat;border:none;cursor:pointer;height:30px;position:absolute;right:0;top:0;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:30px}div.vis-network button.vis-close:hover{opacity:.6}div.vis-network div.vis-edit-mode button.vis-button,div.vis-network div.vis-manipulation button.vis-button{-webkit-touch-callout:none;background-color:transparent;background-position:0 0;background-repeat:no-repeat;border:none;-moz-border-radius:15px;border-radius:15px;box-sizing:content-box;cursor:pointer;float:left;font-family:verdana;font-size:12px;height:24px;margin-left:10px;padding:0 8px;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}div.vis-network div.vis-manipulation button.vis-button:hover{box-shadow:1px 1px 8px rgba(0,0,0,.2)}div.vis-network div.vis-manipulation button.vis-button:active{box-shadow:1px 1px 8px rgba(0,0,0,.5)}div.vis-network div.vis-manipulation button.vis-button.vis-back{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAEEOaVRYdFhNTDpjb20uYWRvYmUueG1wAAAAAAA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/Pgo8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjUtYzAyMSA3OS4xNTQ5MTEsIDIwMTMvMTAvMjktMTE6NDc6MTYgICAgICAgICI+CiAgIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+CiAgICAgIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiCiAgICAgICAgICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIKICAgICAgICAgICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICAgICAgICAgICB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIKICAgICAgICAgICAgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIKICAgICAgICAgICAgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiCiAgICAgICAgICAgIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmV4aWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vZXhpZi8xLjAvIj4KICAgICAgICAgPHhtcDpDcmVhdG9yVG9vbD5BZG9iZSBQaG90b3Nob3AgQ0MgKFdpbmRvd3MpPC94bXA6Q3JlYXRvclRvb2w+CiAgICAgICAgIDx4bXA6Q3JlYXRlRGF0ZT4yMDE0LTAxLTIyVDE5OjI0OjUxKzAxOjAwPC94bXA6Q3JlYXRlRGF0ZT4KICAgICAgICAgPHhtcDpNZXRhZGF0YURhdGU+MjAxNC0wMi0wNFQxNTowMTowOSswMTowMDwveG1wOk1ldGFkYXRhRGF0ZT4KICAgICAgICAgPHhtcDpNb2RpZnlEYXRlPjIwMTQtMDItMDRUMTU6MDE6MDkrMDE6MDA8L3htcDpNb2RpZnlEYXRlPgogICAgICAgICA8ZGM6Zm9ybWF0PmltYWdlL3BuZzwvZGM6Zm9ybWF0PgogICAgICAgICA8eG1wTU06SW5zdGFuY2VJRD54bXAuaWlkOmI2YjQwMjVkLTAxNjQtMzU0OC1hOTdlLTQ4ZmYxMWM3NTYzMzwveG1wTU06SW5zdGFuY2VJRD4KICAgICAgICAgPHhtcE1NOkRvY3VtZW50SUQ+eG1wLmRpZDpFQTc2MkY5Njc0ODNFMzExOTQ4QkQxM0UyQkU3OTlBMTwveG1wTU06RG9jdW1lbnRJRD4KICAgICAgICAgPHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD54bXAuZGlkOjczQjYyQUFEOTE4M0UzMTE5NDhCRDEzRTJCRTc5OUExPC94bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ+CiAgICAgICAgIDx4bXBNTTpIaXN0b3J5PgogICAgICAgICAgICA8cmRmOlNlcT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDphY3Rpb24+Y3JlYXRlZDwvc3RFdnQ6YWN0aW9uPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOjczQjYyQUFEOTE4M0UzMTE5NDhCRDEzRTJCRTc5OUExPC9zdEV2dDppbnN0YW5jZUlEPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6d2hlbj4yMDE0LTAxLTIyVDE5OjI0OjUxKzAxOjAwPC9zdEV2dDp3aGVuPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6c29mdHdhcmVBZ2VudD5BZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKTwvc3RFdnQ6c29mdHdhcmVBZ2VudD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPnNhdmVkPC9zdEV2dDphY3Rpb24+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDppbnN0YW5jZUlEPnhtcC5paWQ6RUE2MEEyNEUxOTg0RTMxMUFEQUZFRkU2RUMzMzNFMDM8L3N0RXZ0Omluc3RhbmNlSUQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTQtMDEtMjNUMTk6MTg6MDcrMDE6MDA8L3N0RXZ0OndoZW4+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIFBob3Rvc2hvcCBDUzYgKFdpbmRvd3MpPC9zdEV2dDpzb2Z0d2FyZUFnZW50PgogICAgICAgICAgICAgICAgICA8c3RFdnQ6Y2hhbmdlZD4vPC9zdEV2dDpjaGFuZ2VkPgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDphY3Rpb24+c2F2ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDpmOWQ3OGY4ZC1lNzY0LTc1NDgtODZiNy1iNmQ1OGMzZDg2OTc8L3N0RXZ0Omluc3RhbmNlSUQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTQtMDItMDRUMTU6MDE6MDkrMDE6MDA8L3N0RXZ0OndoZW4+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIFBob3Rvc2hvcCBDQyAoV2luZG93cyk8L3N0RXZ0OnNvZnR3YXJlQWdlbnQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpjaGFuZ2VkPi88L3N0RXZ0OmNoYW5nZWQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5jb252ZXJ0ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OnBhcmFtZXRlcnM+ZnJvbSBhcHBsaWNhdGlvbi92bmQuYWRvYmUucGhvdG9zaG9wIHRvIGltYWdlL3BuZzwvc3RFdnQ6cGFyYW1ldGVycz4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPmRlcml2ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OnBhcmFtZXRlcnM+Y29udmVydGVkIGZyb20gYXBwbGljYXRpb24vdm5kLmFkb2JlLnBob3Rvc2hvcCB0byBpbWFnZS9wbmc8L3N0RXZ0OnBhcmFtZXRlcnM+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5zYXZlZDwvc3RFdnQ6YWN0aW9uPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOmI2YjQwMjVkLTAxNjQtMzU0OC1hOTdlLTQ4ZmYxMWM3NTYzMzwvc3RFdnQ6aW5zdGFuY2VJRD4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OndoZW4+MjAxNC0wMi0wNFQxNTowMTowOSswMTowMDwvc3RFdnQ6d2hlbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OnNvZnR3YXJlQWdlbnQ+QWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKTwvc3RFdnQ6c29mdHdhcmVBZ2VudD4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmNoYW5nZWQ+Lzwvc3RFdnQ6Y2hhbmdlZD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgIDwvcmRmOlNlcT4KICAgICAgICAgPC94bXBNTTpIaXN0b3J5PgogICAgICAgICA8eG1wTU06RGVyaXZlZEZyb20gcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICA8c3RSZWY6aW5zdGFuY2VJRD54bXAuaWlkOmY5ZDc4ZjhkLWU3NjQtNzU0OC04NmI3LWI2ZDU4YzNkODY5Nzwvc3RSZWY6aW5zdGFuY2VJRD4KICAgICAgICAgICAgPHN0UmVmOmRvY3VtZW50SUQ+eG1wLmRpZDpFQTc2MkY5Njc0ODNFMzExOTQ4QkQxM0UyQkU3OTlBMTwvc3RSZWY6ZG9jdW1lbnRJRD4KICAgICAgICAgICAgPHN0UmVmOm9yaWdpbmFsRG9jdW1lbnRJRD54bXAuZGlkOjczQjYyQUFEOTE4M0UzMTE5NDhCRDEzRTJCRTc5OUExPC9zdFJlZjpvcmlnaW5hbERvY3VtZW50SUQ+CiAgICAgICAgIDwveG1wTU06RGVyaXZlZEZyb20+CiAgICAgICAgIDxwaG90b3Nob3A6Q29sb3JNb2RlPjM8L3Bob3Rvc2hvcDpDb2xvck1vZGU+CiAgICAgICAgIDxwaG90b3Nob3A6SUNDUHJvZmlsZT5zUkdCIElFQzYxOTY2LTIuMTwvcGhvdG9zaG9wOklDQ1Byb2ZpbGU+CiAgICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6T3JpZW50YXRpb24+CiAgICAgICAgIDx0aWZmOlhSZXNvbHV0aW9uPjcyMDA5MC8xMDAwMDwvdGlmZjpYUmVzb2x1dGlvbj4KICAgICAgICAgPHRpZmY6WVJlc29sdXRpb24+NzIwMDkwLzEwMDAwPC90aWZmOllSZXNvbHV0aW9uPgogICAgICAgICA8dGlmZjpSZXNvbHV0aW9uVW5pdD4yPC90aWZmOlJlc29sdXRpb25Vbml0PgogICAgICAgICA8ZXhpZjpDb2xvclNwYWNlPjE8L2V4aWY6Q29sb3JTcGFjZT4KICAgICAgICAgPGV4aWY6UGl4ZWxYRGltZW5zaW9uPjI0PC9leGlmOlBpeGVsWERpbWVuc2lvbj4KICAgICAgICAgPGV4aWY6UGl4ZWxZRGltZW5zaW9uPjI0PC9leGlmOlBpeGVsWURpbWVuc2lvbj4KICAgICAgPC9yZGY6RGVzY3JpcHRpb24+CiAgIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgCjw/eHBhY2tldCBlbmQ9InciPz4jq1U/AAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAVTSURBVHjanFVfTFNnFP+d77ve8qeVFbBrpcVgRrCRFikFByLxwSAaE32oRCHD6JMxxhhn8G2RxxH3MsOTbyYsmCAxPMmMMYtkIUYmK60OO0qAK23BFlNob0uh3x7WS5jLZPpLbm6+k/P9zrm5v9855PF4UFhYCABgjIExBgAgIqRSqRIi6gDQRkQ1RGTB3wgR0e8AHgH4Sa/XR/EBiAiJRAJ04cIF5Ofng4g2n0gkUkxENwF0c843LzHGQEQQQkCLExEA9ALotVgsUQAQQmgNQhJCbF5kjCEUCl0moj4t5na7fTU1NUpVVVXUYrEkASAcDhe8efOmxOfzWScmJqoBdBNR99LS0hWz2dynNSSEAF28eBGFhYVgjCEcDn9HRD1EhIMHD3o9Hs9kWVlZAh9BKBQqGB4edr58+dKZ+6JbJpOpBwBWV1fB6+rqIMsyIpHIFcZYL2MMra2tY5cuXRrfuXNnBtvAYDBk3G63oqpqZm5uzgrgSDKZjBoMhueZTAbc5XIhFouVEtFTxhiOHTs2dv78eS8+Efv374+oqpqZnZ21cs5PJJPJPlmWkyynnBuMMTQ0NHi7uro+mVyDx+Pxulwu71ZOlkqlSonoJhGhvb39s8k1nDx50ss5hyRJN9PpdKlERB2aWjSVaEilUvzBgwcORVEs5eXloXPnzk1sV8BkMiUdDofP7/dXZ7PZDilnIhw4cGBeS1pbW2P37t1zBwKBikQiUUREWFhYsHHO0d7evm0Ru90+/+rVq2rO+XGJiJxEhMrKyhgAjI6OWoeHh5tWVla+4JzDZrO9bW5unhwcHGzz+/32np4e+xaDbfoHAMxmc6ijo2O0oqIiJkkSNjY2HBIRmRljMJvNyWfPnln7+/tPMMZQXl6+0NbW9qK2tjYcj8floaEhqKpq+HCkbD3PzMwYBgYG0NXV9UuusFna2kEgELAQEQ4dOvSis7PzN41Ar9dnrl27NqCNkv/C3bt3zy4tLVmICJxzEBFJRBQmorLFxcWCqqqq0Pj4eO3Y2JhbUZTdra2tL2pra8OJRGLHnTt3zkqS9K+huHU4EhHMZnMoGo0W5OIh7nK5jjLGKq1W69vDhw8rRqMxMjc3t2t5eXnX5ORklc/nM+fl5SWnpqa+0uv1K/n5+Ws6nW5NluXNd15e3ppOp1uz2WyzZ86cGQ0Gg6ZAIFCZzWZ/lYjokRDiuN/vt7W0tMw3NTUpbrd78P79++5gMFgRiUTKHj58WMYYQ3V19etTp05tq6Lp6Wkb5xxCiEfc7XZPM8a6FxcXTfX19a/1en2Gcy5qamreNjY2/qGq6joRZe12+9Tp06e3JY/FYgWPHz8+mhvr3/CWlpbk+vp6PmOseWVlBS6XS9GSJUkSdrs93NDQ8Oe+ffvC/8fJIyMjddFo9Esi6pVleVjT2m0A8Hq9zqGhIefnjoknT544A4GAM/eDbxMReFNTE0pKSpKqqsaI6Pj8/LxVVdWM3W6PfCr5xMTE1zllXS0uLn6aSqXAGxsbodPpoNfrn6uqCs75EUVRrJFIZMfevXsXdTrdxseIE4mEPDIyUu/3++tynd8yGo29RIR0Og26fv06ioqKwBgD5xzv3r27zBjrIyJIkgSHwzFZWVmp7NmzJ1ZaWpoAgGg0WqgoSvHMzIw1GAw6tvjhitFo7NPW5fv370Hd3d0oKCgA53zTQMvLy+VCiKuSJH0rSdLmztZytIWv5RPRD0T0Y3Fx8dzWfby6ugopHo//w4mcc8iyPMc5v5FOp7/PZrOdQohWInIC2C2EgBBigYi8Qoifs9lsv06nWyIiaFxagXg8jr8GAGxuIe7LBeWhAAAAAElFTkSuQmCC")}div.vis-network div.vis-manipulation div.vis-none:hover{box-shadow:1px 1px 8px transparent;cursor:default}div.vis-network div.vis-manipulation div.vis-none:active{box-shadow:1px 1px 8px transparent}div.vis-network div.vis-manipulation div.vis-none{line-height:23px;padding:0}div.vis-network div.vis-manipulation div.notification{font-weight:700;margin:2px}div.vis-network div.vis-manipulation button.vis-button.vis-add{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAEEOaVRYdFhNTDpjb20uYWRvYmUueG1wAAAAAAA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/Pgo8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjUtYzAyMSA3OS4xNTQ5MTEsIDIwMTMvMTAvMjktMTE6NDc6MTYgICAgICAgICI+CiAgIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+CiAgICAgIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiCiAgICAgICAgICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIKICAgICAgICAgICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICAgICAgICAgICB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIKICAgICAgICAgICAgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIKICAgICAgICAgICAgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiCiAgICAgICAgICAgIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmV4aWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vZXhpZi8xLjAvIj4KICAgICAgICAgPHhtcDpDcmVhdG9yVG9vbD5BZG9iZSBQaG90b3Nob3AgQ0MgKFdpbmRvd3MpPC94bXA6Q3JlYXRvclRvb2w+CiAgICAgICAgIDx4bXA6Q3JlYXRlRGF0ZT4yMDE0LTAxLTIyVDE5OjI0OjUxKzAxOjAwPC94bXA6Q3JlYXRlRGF0ZT4KICAgICAgICAgPHhtcDpNZXRhZGF0YURhdGU+MjAxNC0wMi0wNFQxNDo0MDoyOSswMTowMDwveG1wOk1ldGFkYXRhRGF0ZT4KICAgICAgICAgPHhtcDpNb2RpZnlEYXRlPjIwMTQtMDItMDRUMTQ6NDA6MjkrMDE6MDA8L3htcDpNb2RpZnlEYXRlPgogICAgICAgICA8ZGM6Zm9ybWF0PmltYWdlL3BuZzwvZGM6Zm9ybWF0PgogICAgICAgICA8eG1wTU06SW5zdGFuY2VJRD54bXAuaWlkOjVkNWIwNmQwLTVmMjAtOGE0NC1hMzIwLWZmMTEzMzQwNDc0YjwveG1wTU06SW5zdGFuY2VJRD4KICAgICAgICAgPHhtcE1NOkRvY3VtZW50SUQ+eG1wLmRpZDpFQTc2MkY5Njc0ODNFMzExOTQ4QkQxM0UyQkU3OTlBMTwveG1wTU06RG9jdW1lbnRJRD4KICAgICAgICAgPHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD54bXAuZGlkOjczQjYyQUFEOTE4M0UzMTE5NDhCRDEzRTJCRTc5OUExPC94bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ+CiAgICAgICAgIDx4bXBNTTpIaXN0b3J5PgogICAgICAgICAgICA8cmRmOlNlcT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDphY3Rpb24+Y3JlYXRlZDwvc3RFdnQ6YWN0aW9uPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOjczQjYyQUFEOTE4M0UzMTE5NDhCRDEzRTJCRTc5OUExPC9zdEV2dDppbnN0YW5jZUlEPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6d2hlbj4yMDE0LTAxLTIyVDE5OjI0OjUxKzAxOjAwPC9zdEV2dDp3aGVuPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6c29mdHdhcmVBZ2VudD5BZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKTwvc3RFdnQ6c29mdHdhcmVBZ2VudD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPnNhdmVkPC9zdEV2dDphY3Rpb24+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDppbnN0YW5jZUlEPnhtcC5paWQ6RUE2MEEyNEUxOTg0RTMxMUFEQUZFRkU2RUMzMzNFMDM8L3N0RXZ0Omluc3RhbmNlSUQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTQtMDEtMjNUMTk6MTg6MDcrMDE6MDA8L3N0RXZ0OndoZW4+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIFBob3Rvc2hvcCBDUzYgKFdpbmRvd3MpPC9zdEV2dDpzb2Z0d2FyZUFnZW50PgogICAgICAgICAgICAgICAgICA8c3RFdnQ6Y2hhbmdlZD4vPC9zdEV2dDpjaGFuZ2VkPgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDphY3Rpb24+c2F2ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDo2OWVmYWE1NS01ZTI5LTIzNGUtYTUzMy0xNDkxYjM1NDNmYmE8L3N0RXZ0Omluc3RhbmNlSUQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTQtMDItMDRUMTQ6NDA6MjkrMDE6MDA8L3N0RXZ0OndoZW4+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIFBob3Rvc2hvcCBDQyAoV2luZG93cyk8L3N0RXZ0OnNvZnR3YXJlQWdlbnQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpjaGFuZ2VkPi88L3N0RXZ0OmNoYW5nZWQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5jb252ZXJ0ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OnBhcmFtZXRlcnM+ZnJvbSBhcHBsaWNhdGlvbi92bmQuYWRvYmUucGhvdG9zaG9wIHRvIGltYWdlL3BuZzwvc3RFdnQ6cGFyYW1ldGVycz4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPmRlcml2ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OnBhcmFtZXRlcnM+Y29udmVydGVkIGZyb20gYXBwbGljYXRpb24vdm5kLmFkb2JlLnBob3Rvc2hvcCB0byBpbWFnZS9wbmc8L3N0RXZ0OnBhcmFtZXRlcnM+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5zYXZlZDwvc3RFdnQ6YWN0aW9uPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOjVkNWIwNmQwLTVmMjAtOGE0NC1hMzIwLWZmMTEzMzQwNDc0Yjwvc3RFdnQ6aW5zdGFuY2VJRD4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OndoZW4+MjAxNC0wMi0wNFQxNDo0MDoyOSswMTowMDwvc3RFdnQ6d2hlbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OnNvZnR3YXJlQWdlbnQ+QWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKTwvc3RFdnQ6c29mdHdhcmVBZ2VudD4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmNoYW5nZWQ+Lzwvc3RFdnQ6Y2hhbmdlZD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgIDwvcmRmOlNlcT4KICAgICAgICAgPC94bXBNTTpIaXN0b3J5PgogICAgICAgICA8eG1wTU06RGVyaXZlZEZyb20gcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICA8c3RSZWY6aW5zdGFuY2VJRD54bXAuaWlkOjY5ZWZhYTU1LTVlMjktMjM0ZS1hNTMzLTE0OTFiMzU0M2ZiYTwvc3RSZWY6aW5zdGFuY2VJRD4KICAgICAgICAgICAgPHN0UmVmOmRvY3VtZW50SUQ+eG1wLmRpZDpFQTc2MkY5Njc0ODNFMzExOTQ4QkQxM0UyQkU3OTlBMTwvc3RSZWY6ZG9jdW1lbnRJRD4KICAgICAgICAgICAgPHN0UmVmOm9yaWdpbmFsRG9jdW1lbnRJRD54bXAuZGlkOjczQjYyQUFEOTE4M0UzMTE5NDhCRDEzRTJCRTc5OUExPC9zdFJlZjpvcmlnaW5hbERvY3VtZW50SUQ+CiAgICAgICAgIDwveG1wTU06RGVyaXZlZEZyb20+CiAgICAgICAgIDxwaG90b3Nob3A6Q29sb3JNb2RlPjM8L3Bob3Rvc2hvcDpDb2xvck1vZGU+CiAgICAgICAgIDxwaG90b3Nob3A6SUNDUHJvZmlsZT5zUkdCIElFQzYxOTY2LTIuMTwvcGhvdG9zaG9wOklDQ1Byb2ZpbGU+CiAgICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6T3JpZW50YXRpb24+CiAgICAgICAgIDx0aWZmOlhSZXNvbHV0aW9uPjcyMDA5MC8xMDAwMDwvdGlmZjpYUmVzb2x1dGlvbj4KICAgICAgICAgPHRpZmY6WVJlc29sdXRpb24+NzIwMDkwLzEwMDAwPC90aWZmOllSZXNvbHV0aW9uPgogICAgICAgICA8dGlmZjpSZXNvbHV0aW9uVW5pdD4yPC90aWZmOlJlc29sdXRpb25Vbml0PgogICAgICAgICA8ZXhpZjpDb2xvclNwYWNlPjE8L2V4aWY6Q29sb3JTcGFjZT4KICAgICAgICAgPGV4aWY6UGl4ZWxYRGltZW5zaW9uPjI0PC9leGlmOlBpeGVsWERpbWVuc2lvbj4KICAgICAgICAgPGV4aWY6UGl4ZWxZRGltZW5zaW9uPjI0PC9leGlmOlBpeGVsWURpbWVuc2lvbj4KICAgICAgPC9yZGY6RGVzY3JpcHRpb24+CiAgIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgCjw/eHBhY2tldCBlbmQ9InciPz5WKqp9AAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAYXSURBVHjafFZtUFTXGX7e9z27sveuMCwYV8ElrA7YSFYHtJUPkaaI0aRqG8wP00zUzljDINNSA/2ROtpO24SxnahlxjYd7SSjmUkymcxYlDhQPzHGisEVp8HwYWCVVVgEsrsuLnL74+5uqTF9Z+7cO/d8PO95zvO851BlZSV0XQcAMDOYGQBARDhX3JRmMDYZwLPMWAzGHACYIgwS46oBNBNwtOL8CwE8EkSEUCgE2rJlC2w2G4go8Zwo/bMDgnoG6gxLfAAAYvPDMCCszKTAMIAGAhrWnf15AAAMwwARIRKJgDZv3gy73Q4iAjPjxIr9VVOMRhbAYKB8zvrO0llrfEsdKwLZek6YAPSFvtSu3GtLawu0ZJ6625SHGBQB1T88t6MxvopgMAjaunUrdF0HM+P4yv27DMYeJmB1RqW3Jnf3tQX2p0L4P9EXuqEd7PmDp+XuMU9sRbvXnnt1TxxACgoKYLVacbzsQDUJGkSATe6qi28uPtzusM6Kxie6NHLGUX3lxVUNX9StPHnn4wy3njuUYcu6n2pNi66avcEXnByP/nv8aiaIyrqz2gO5A9+9FI1GIfn5+WhZdTAdjFMkwMvZOy7uWnTAOz3L4Yk71m3t69fdfTDoUGTBeHTUfiHQ6lo7Z2OXJvpDAChKe+aOCdKRKWxZ2+1qb3yyd3GYmRkQ7GQBVs99wfv6on3eR2k4PdTkDEbH7IuS8/svld/561PJS/pDk1/bzwx94pze7xc5v/H+YPY6r5BAkdrJzODTK46lE6PeYEJt7u+8j+OZwCBiEAgAoNgKJoEQf6PvNvdrXgtZoNhSf7q0KZ3B2AQmVMze0Jmt54S/DcDCVig2NcvEUGxJAE4Pl+YOr0iv6BRSIPAmBeBZAmHlE2sH4p1uhrq1s0MnnEQMBsf8wRASAICQQCCITN1X7/sOuc0kgOVp3/fPs2WHv+coG7gQOJUnLGsUCTxEjPzUohEA+NfIWUdtx0+efzA1kSSkIGyBAQNCKgHAEBAJ3u79U7kiAcWoem/gb5Fd33nrH3kp+SMWtuAB+GllMJxMjCx9QRgA3uiqL5kwHiTlpxb3smlfMDGYGPP1hcMAkJvs8ScpfdJspdj+MK6Pf+5+u29vyb4lR4+BGEziVESAkEpw6Av1OhUpHCz4qOXbzFWz4Ncdj/v/o08Lt92ODDgZDCEFJYoUGH4mzugP92puPTf0pD3H7wvfdFZdqSxnMtWjoGAAmG9fOLxjwesdjT2/XzIQ7ks3sycYMSEwGHNtWf5bkX5NkYCJBxUBXiGV0XHvosOt54Zey33j/K+8P33++vjnbiGJbbLE+J9SANAb6nJ2B79wcUwETAwQQ7fMjPzMvfP8ja87HUIKMOiaAqMZhrGmLdAy78eZrwwsTS0eObTs+IdtgVanxBUExqGbb5VzrIISGIoUXsmqbgEhJldCQWqRf27SvPAn/o8XmgLhZsUkR4ll37mhk3n94Z4OlzY/7NLcYZfm7o1z2zT4vsvUNSXqprBCkmiTFbPX90/fh8GIT2sf+zTPdDMf4dVnNg4z+E0ixsGeBs9jd5ViSgLHjCb/peaR+MD3d4/ZJg2llyuG2Vwy7QWAs8PNnn1f7vkGSGxAzE6mk+kxkx/p/4unffSCR0hAoL1EBCYiPNdWNcwkNQTCR7feWX6g+7f/A7I8rcw/U6UEe0Ndrhc/W7mtL9ztmqlSgstSS/zTJ28dalpOpkRryrwbhwBACgsLMWPGDOT4ll3qyeqAkJTdCF7P/CrUY/GkLL1rE+2hTbSH8+0Lb/WEuhzhyaA905blf9Vd/895WnZwLHrPevir/cvOB1oLYpTtLrm6oYGIMDExAaqtrUVKSgqYGSKCk0WHq5ikkWEWtNL0imv5qUW+RclLRjJsrhBAuH1/QL8R7HR4xy5nescuP23E6hOA6mLv+sb4uTw6Ogqqq6uDpmkQkcStorX4XRcM1FjZ+kvFFjCJKU1WpkNJJUqIMtX1RyLeX3JtQ0JRhmGYZ/L27duRnJycuFGISOJ9pqh5lrB6iYgqGOxRrOaa54DcZmKvkJxk8JHC9rKh+KVhOsD4+Dj+MwADIf8n5m4xGwAAAABJRU5ErkJggg==")}div.vis-network div.vis-edit-mode button.vis-button.vis-edit,div.vis-network div.vis-manipulation button.vis-button.vis-edit{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAEEOaVRYdFhNTDpjb20uYWRvYmUueG1wAAAAAAA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/Pgo8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjUtYzAyMSA3OS4xNTQ5MTEsIDIwMTMvMTAvMjktMTE6NDc6MTYgICAgICAgICI+CiAgIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+CiAgICAgIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiCiAgICAgICAgICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIKICAgICAgICAgICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICAgICAgICAgICB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIKICAgICAgICAgICAgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIKICAgICAgICAgICAgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiCiAgICAgICAgICAgIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmV4aWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vZXhpZi8xLjAvIj4KICAgICAgICAgPHhtcDpDcmVhdG9yVG9vbD5BZG9iZSBQaG90b3Nob3AgQ0MgKFdpbmRvd3MpPC94bXA6Q3JlYXRvclRvb2w+CiAgICAgICAgIDx4bXA6Q3JlYXRlRGF0ZT4yMDE0LTAxLTIyVDE5OjI0OjUxKzAxOjAwPC94bXA6Q3JlYXRlRGF0ZT4KICAgICAgICAgPHhtcDpNZXRhZGF0YURhdGU+MjAxNC0wMi0wNVQxNDoxMjoyNSswMTowMDwveG1wOk1ldGFkYXRhRGF0ZT4KICAgICAgICAgPHhtcDpNb2RpZnlEYXRlPjIwMTQtMDItMDVUMTQ6MTI6MjUrMDE6MDA8L3htcDpNb2RpZnlEYXRlPgogICAgICAgICA8ZGM6Zm9ybWF0PmltYWdlL3BuZzwvZGM6Zm9ybWF0PgogICAgICAgICA8eG1wTU06SW5zdGFuY2VJRD54bXAuaWlkOjY5OTM3ZGZjLTJjNzQtYTU0YS05OTIzLTQyMmZhNDNkMjljNDwveG1wTU06SW5zdGFuY2VJRD4KICAgICAgICAgPHhtcE1NOkRvY3VtZW50SUQ+eG1wLmRpZDpFQTc2MkY5Njc0ODNFMzExOTQ4QkQxM0UyQkU3OTlBMTwveG1wTU06RG9jdW1lbnRJRD4KICAgICAgICAgPHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD54bXAuZGlkOjczQjYyQUFEOTE4M0UzMTE5NDhCRDEzRTJCRTc5OUExPC94bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ+CiAgICAgICAgIDx4bXBNTTpIaXN0b3J5PgogICAgICAgICAgICA8cmRmOlNlcT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDphY3Rpb24+Y3JlYXRlZDwvc3RFdnQ6YWN0aW9uPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOjczQjYyQUFEOTE4M0UzMTE5NDhCRDEzRTJCRTc5OUExPC9zdEV2dDppbnN0YW5jZUlEPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6d2hlbj4yMDE0LTAxLTIyVDE5OjI0OjUxKzAxOjAwPC9zdEV2dDp3aGVuPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6c29mdHdhcmVBZ2VudD5BZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKTwvc3RFdnQ6c29mdHdhcmVBZ2VudD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPnNhdmVkPC9zdEV2dDphY3Rpb24+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDppbnN0YW5jZUlEPnhtcC5paWQ6RUE2MEEyNEUxOTg0RTMxMUFEQUZFRkU2RUMzMzNFMDM8L3N0RXZ0Omluc3RhbmNlSUQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTQtMDEtMjNUMTk6MTg6MDcrMDE6MDA8L3N0RXZ0OndoZW4+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIFBob3Rvc2hvcCBDUzYgKFdpbmRvd3MpPC9zdEV2dDpzb2Z0d2FyZUFnZW50PgogICAgICAgICAgICAgICAgICA8c3RFdnQ6Y2hhbmdlZD4vPC9zdEV2dDpjaGFuZ2VkPgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDphY3Rpb24+c2F2ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDozOWNhNzE5ZC03YzNlLTUyNGEtYmY1NS03NGVmMmM1MzE0YTc8L3N0RXZ0Omluc3RhbmNlSUQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTQtMDItMDVUMTQ6MTI6MjUrMDE6MDA8L3N0RXZ0OndoZW4+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIFBob3Rvc2hvcCBDQyAoV2luZG93cyk8L3N0RXZ0OnNvZnR3YXJlQWdlbnQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpjaGFuZ2VkPi88L3N0RXZ0OmNoYW5nZWQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5jb252ZXJ0ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OnBhcmFtZXRlcnM+ZnJvbSBhcHBsaWNhdGlvbi92bmQuYWRvYmUucGhvdG9zaG9wIHRvIGltYWdlL3BuZzwvc3RFdnQ6cGFyYW1ldGVycz4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPmRlcml2ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OnBhcmFtZXRlcnM+Y29udmVydGVkIGZyb20gYXBwbGljYXRpb24vdm5kLmFkb2JlLnBob3Rvc2hvcCB0byBpbWFnZS9wbmc8L3N0RXZ0OnBhcmFtZXRlcnM+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5zYXZlZDwvc3RFdnQ6YWN0aW9uPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOjY5OTM3ZGZjLTJjNzQtYTU0YS05OTIzLTQyMmZhNDNkMjljNDwvc3RFdnQ6aW5zdGFuY2VJRD4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OndoZW4+MjAxNC0wMi0wNVQxNDoxMjoyNSswMTowMDwvc3RFdnQ6d2hlbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OnNvZnR3YXJlQWdlbnQ+QWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKTwvc3RFdnQ6c29mdHdhcmVBZ2VudD4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmNoYW5nZWQ+Lzwvc3RFdnQ6Y2hhbmdlZD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgIDwvcmRmOlNlcT4KICAgICAgICAgPC94bXBNTTpIaXN0b3J5PgogICAgICAgICA8eG1wTU06RGVyaXZlZEZyb20gcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICA8c3RSZWY6aW5zdGFuY2VJRD54bXAuaWlkOjM5Y2E3MTlkLTdjM2UtNTI0YS1iZjU1LTc0ZWYyYzUzMTRhNzwvc3RSZWY6aW5zdGFuY2VJRD4KICAgICAgICAgICAgPHN0UmVmOmRvY3VtZW50SUQ+eG1wLmRpZDpFQTc2MkY5Njc0ODNFMzExOTQ4QkQxM0UyQkU3OTlBMTwvc3RSZWY6ZG9jdW1lbnRJRD4KICAgICAgICAgICAgPHN0UmVmOm9yaWdpbmFsRG9jdW1lbnRJRD54bXAuZGlkOjczQjYyQUFEOTE4M0UzMTE5NDhCRDEzRTJCRTc5OUExPC9zdFJlZjpvcmlnaW5hbERvY3VtZW50SUQ+CiAgICAgICAgIDwveG1wTU06RGVyaXZlZEZyb20+CiAgICAgICAgIDxwaG90b3Nob3A6Q29sb3JNb2RlPjM8L3Bob3Rvc2hvcDpDb2xvck1vZGU+CiAgICAgICAgIDxwaG90b3Nob3A6SUNDUHJvZmlsZT5zUkdCIElFQzYxOTY2LTIuMTwvcGhvdG9zaG9wOklDQ1Byb2ZpbGU+CiAgICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6T3JpZW50YXRpb24+CiAgICAgICAgIDx0aWZmOlhSZXNvbHV0aW9uPjcyMDA5MC8xMDAwMDwvdGlmZjpYUmVzb2x1dGlvbj4KICAgICAgICAgPHRpZmY6WVJlc29sdXRpb24+NzIwMDkwLzEwMDAwPC90aWZmOllSZXNvbHV0aW9uPgogICAgICAgICA8dGlmZjpSZXNvbHV0aW9uVW5pdD4yPC90aWZmOlJlc29sdXRpb25Vbml0PgogICAgICAgICA8ZXhpZjpDb2xvclNwYWNlPjE8L2V4aWY6Q29sb3JTcGFjZT4KICAgICAgICAgPGV4aWY6UGl4ZWxYRGltZW5zaW9uPjI0PC9leGlmOlBpeGVsWERpbWVuc2lvbj4KICAgICAgICAgPGV4aWY6UGl4ZWxZRGltZW5zaW9uPjI0PC9leGlmOlBpeGVsWURpbWVuc2lvbj4KICAgICAgPC9yZGY6RGVzY3JpcHRpb24+CiAgIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgCjw/eHBhY2tldCBlbmQ9InciPz4ykninAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAYpSURBVHjafFZtTFvnFX7Oea+NudiY2Hwam4CBlgQwXdKREDKUoYg0jbRJ29RJ2VZ1mjRFUxSpA3VTfkzJfkQbS7spU6rtx5Z2UtppScjaHxvLuiatWi2jLEoMIUDCh23g2gbj7+tPuPvhOurawPl1dc99n+c55z33fV46ceIEZFkGADAziAgAQERoe/9ZK4GPM/AcgbsIXAcABCgMvkfAqAa89eDoJyF8LogIqqqChoaGYDAYHr8kItS8uc8iIH6iAa9IkAo5EAQX8pqmgUVBCBggYFgDhv0/GAsBgKZpICJkMhnQ4OAgZFkGEYGZUXmp+0cS+CKBwWA0DVRPOg5Zl2q6zaHyJlnVAMQXVTkwHrUqH0Xsvn+tdQAAMQDgpPLS2MViFY8rkGUZzIzaS/t/xqCzGggtz9e697zsnKhoLUtim4jOq/LE6x7X0nsh16dEZ5a/O3a2SCAOHjwInU6Hujd6ThJ4mCDQ+b2G232v7v6vwarPbQn8MGlMr+X0kpE3Wr5Zt5hL5HPhqYSdQIfKJ+yhxDPKWC6Xg+jt7UXD5b5KBt1kCHS85Ljd8/On3NupfnhFaZj4rWff1B98B1R/hnUmKd36bdtCNl4g0en4edNE/cXwLq8qMTMIPAQwmo/WuHvObA8+9c58k/dKtD0TyZWXN5YGA7ej7epKxspM//7SoNOdWc/Jyq2wiwhDzPxT8cP0jys3VMM7OmL0/77zn4Ydui3b8uiK0jD7RrA77c9Wd57cefPpF+2T6bWsFPWkaiPTCWvTsZpHFU+XrS+8G3AR08F6X+1FJvBxQQzHQOWk2SmrW4FPX/U2LVwPuDZj+fJKl2khPpeyAqA9rzR/YqwuiWXX8taN/CabGkrVuq9YJlkQQDjOAJ5jAhz9Vt9W4N5/rNp8I+vtMV/aZm4zLnUNNt0urdYnF68HWoJj4Wo1mLGUNRr8LEgDgNqeCh8xQIKOsgC7iAjVe83rT9zQa8uNM28u70kspessu8q8zq/V3NcZpVzb9+0zmVhOvvvrhaMVzrJg0zeq7xMVCCwdpnWSGBqjUyJwLTFgbvxie3w31uoWR1Y74r60rdxZqrR8q85t2W2MGCp12bm/KC3hyaSTiMhxuGrKcahqpbjOaDOoEhOEoFqJQCCJvqA85I6bfTdDjQlf2lbxVNlS6wt19yy7jRHZZlDnrinNj/6sHMhnNw2Ogco7O79e5fm/xQywRBBCEAuwn4gQ96bkYj4Vyuq9N1Z3Bj4Od5bs0MXt/dZZ21ctiqFan174q985P+Lfp+U1g7XDON/1ctP458WlVjLyJhOISZE0wM0S1QfuRC3lTjkJAKKEtNC9eIOhSh9xHLZOJRZTFuXDsEoStLkR/768ummsaJG9Pb9oe+9J+xaeSVokiQDSJphAo5uaBuWjiKP4QTqS1cUWU7ayesN66wu22frD1vmVW6GW6T8u9eVjGyZzs+w78Nqu0a2mbvVu1KEJQAgeZRL0liQYyx+GOmKeQpu0rMYsAJPNEFGD2dLodLIy6c9Ys7G8yeSUl3tf2/X3rcBVJSOv34l3sCBogi7z1LH/rBHjl4IJ93/ncQFAnjeImJD0Z8zuCwu9q3djDXqTlAKID5xv+9t2R8n8VcUFBljQ8Gyfe40BYBM4DwDLt8Kue79ZcFkbzfEdbUbv+oN4c9KTtsfm1MbYQqqh+2zrVZYKs/7Ef+byimt1POYiJhDhPBFBIiIEXhxfs7/dfYoIF+auBfYTE/pebx/V8hqBP2ODvD34yvuh/WCAmU75Bx6sIgaI/v5+6PV6JLqUsYr7dpDAoehs0h73pHTWrvKgThYbRSt9UmSjef3MpaUvBz4O72UmADgTOPJguGiZor+/HyUlJWBmJFz+D8xTtlUiOpbwpmrmrweeSXrT+g11k4SBN3RGKUcAVCVdFhyP1nreDbY//NPyEXUlU/Pp4XYycGT6V0Ux2WwWdO7cOZSWlkII8diX7SPPNgDaKdbxoNAxwATBAEkEEgSWCEQAqPAMwqvMdCEwMO0tVqZpWsGTT58+DaPR+PhGIYQAAAgh0P7B3ioW/B0iGiCGiwXbCuOHFSJys6AbYFye2T+xWhT3WYJEIoH/DQBMw3kes8OJPgAAAABJRU5ErkJggg==")}div.vis-network div.vis-edit-mode button.vis-button.vis-edit.vis-edit-mode{background-color:#fcfcfc;border:1px solid #ccc}div.vis-network div.vis-manipulation button.vis-button.vis-connect{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAEEOaVRYdFhNTDpjb20uYWRvYmUueG1wAAAAAAA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/Pgo8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjUtYzAyMSA3OS4xNTQ5MTEsIDIwMTMvMTAvMjktMTE6NDc6MTYgICAgICAgICI+CiAgIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+CiAgICAgIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiCiAgICAgICAgICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIKICAgICAgICAgICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICAgICAgICAgICB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIKICAgICAgICAgICAgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIKICAgICAgICAgICAgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiCiAgICAgICAgICAgIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmV4aWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vZXhpZi8xLjAvIj4KICAgICAgICAgPHhtcDpDcmVhdG9yVG9vbD5BZG9iZSBQaG90b3Nob3AgQ0MgKFdpbmRvd3MpPC94bXA6Q3JlYXRvclRvb2w+CiAgICAgICAgIDx4bXA6Q3JlYXRlRGF0ZT4yMDE0LTAxLTIyVDE5OjI0OjUxKzAxOjAwPC94bXA6Q3JlYXRlRGF0ZT4KICAgICAgICAgPHhtcDpNZXRhZGF0YURhdGU+MjAxNC0wMi0wNFQxNDozODo1NyswMTowMDwveG1wOk1ldGFkYXRhRGF0ZT4KICAgICAgICAgPHhtcDpNb2RpZnlEYXRlPjIwMTQtMDItMDRUMTQ6Mzg6NTcrMDE6MDA8L3htcDpNb2RpZnlEYXRlPgogICAgICAgICA8ZGM6Zm9ybWF0PmltYWdlL3BuZzwvZGM6Zm9ybWF0PgogICAgICAgICA8eG1wTU06SW5zdGFuY2VJRD54bXAuaWlkOjlmYjUwMDU0LWE3ODEtMWQ0OC05ZTllLTU2ZWQ5YzhlYjdjNjwveG1wTU06SW5zdGFuY2VJRD4KICAgICAgICAgPHhtcE1NOkRvY3VtZW50SUQ+eG1wLmRpZDpFQTc2MkY5Njc0ODNFMzExOTQ4QkQxM0UyQkU3OTlBMTwveG1wTU06RG9jdW1lbnRJRD4KICAgICAgICAgPHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD54bXAuZGlkOjczQjYyQUFEOTE4M0UzMTE5NDhCRDEzRTJCRTc5OUExPC94bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ+CiAgICAgICAgIDx4bXBNTTpIaXN0b3J5PgogICAgICAgICAgICA8cmRmOlNlcT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDphY3Rpb24+Y3JlYXRlZDwvc3RFdnQ6YWN0aW9uPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOjczQjYyQUFEOTE4M0UzMTE5NDhCRDEzRTJCRTc5OUExPC9zdEV2dDppbnN0YW5jZUlEPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6d2hlbj4yMDE0LTAxLTIyVDE5OjI0OjUxKzAxOjAwPC9zdEV2dDp3aGVuPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6c29mdHdhcmVBZ2VudD5BZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKTwvc3RFdnQ6c29mdHdhcmVBZ2VudD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPnNhdmVkPC9zdEV2dDphY3Rpb24+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDppbnN0YW5jZUlEPnhtcC5paWQ6RUE2MEEyNEUxOTg0RTMxMUFEQUZFRkU2RUMzMzNFMDM8L3N0RXZ0Omluc3RhbmNlSUQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTQtMDEtMjNUMTk6MTg6MDcrMDE6MDA8L3N0RXZ0OndoZW4+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIFBob3Rvc2hvcCBDUzYgKFdpbmRvd3MpPC9zdEV2dDpzb2Z0d2FyZUFnZW50PgogICAgICAgICAgICAgICAgICA8c3RFdnQ6Y2hhbmdlZD4vPC9zdEV2dDpjaGFuZ2VkPgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDphY3Rpb24+c2F2ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDo3ZWRhMjI0MC0yYTQxLTNlNDQtYWM2My1iNzNiYTE5OWI3Y2E8L3N0RXZ0Omluc3RhbmNlSUQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTQtMDItMDRUMTQ6Mzg6NTcrMDE6MDA8L3N0RXZ0OndoZW4+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIFBob3Rvc2hvcCBDQyAoV2luZG93cyk8L3N0RXZ0OnNvZnR3YXJlQWdlbnQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpjaGFuZ2VkPi88L3N0RXZ0OmNoYW5nZWQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5jb252ZXJ0ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OnBhcmFtZXRlcnM+ZnJvbSBhcHBsaWNhdGlvbi92bmQuYWRvYmUucGhvdG9zaG9wIHRvIGltYWdlL3BuZzwvc3RFdnQ6cGFyYW1ldGVycz4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPmRlcml2ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OnBhcmFtZXRlcnM+Y29udmVydGVkIGZyb20gYXBwbGljYXRpb24vdm5kLmFkb2JlLnBob3Rvc2hvcCB0byBpbWFnZS9wbmc8L3N0RXZ0OnBhcmFtZXRlcnM+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5zYXZlZDwvc3RFdnQ6YWN0aW9uPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOjlmYjUwMDU0LWE3ODEtMWQ0OC05ZTllLTU2ZWQ5YzhlYjdjNjwvc3RFdnQ6aW5zdGFuY2VJRD4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OndoZW4+MjAxNC0wMi0wNFQxNDozODo1NyswMTowMDwvc3RFdnQ6d2hlbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OnNvZnR3YXJlQWdlbnQ+QWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKTwvc3RFdnQ6c29mdHdhcmVBZ2VudD4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmNoYW5nZWQ+Lzwvc3RFdnQ6Y2hhbmdlZD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgIDwvcmRmOlNlcT4KICAgICAgICAgPC94bXBNTTpIaXN0b3J5PgogICAgICAgICA8eG1wTU06RGVyaXZlZEZyb20gcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICA8c3RSZWY6aW5zdGFuY2VJRD54bXAuaWlkOjdlZGEyMjQwLTJhNDEtM2U0NC1hYzYzLWI3M2JhMTk5YjdjYTwvc3RSZWY6aW5zdGFuY2VJRD4KICAgICAgICAgICAgPHN0UmVmOmRvY3VtZW50SUQ+eG1wLmRpZDpFQTc2MkY5Njc0ODNFMzExOTQ4QkQxM0UyQkU3OTlBMTwvc3RSZWY6ZG9jdW1lbnRJRD4KICAgICAgICAgICAgPHN0UmVmOm9yaWdpbmFsRG9jdW1lbnRJRD54bXAuZGlkOjczQjYyQUFEOTE4M0UzMTE5NDhCRDEzRTJCRTc5OUExPC9zdFJlZjpvcmlnaW5hbERvY3VtZW50SUQ+CiAgICAgICAgIDwveG1wTU06RGVyaXZlZEZyb20+CiAgICAgICAgIDxwaG90b3Nob3A6Q29sb3JNb2RlPjM8L3Bob3Rvc2hvcDpDb2xvck1vZGU+CiAgICAgICAgIDxwaG90b3Nob3A6SUNDUHJvZmlsZT5zUkdCIElFQzYxOTY2LTIuMTwvcGhvdG9zaG9wOklDQ1Byb2ZpbGU+CiAgICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6T3JpZW50YXRpb24+CiAgICAgICAgIDx0aWZmOlhSZXNvbHV0aW9uPjcyMDA5MC8xMDAwMDwvdGlmZjpYUmVzb2x1dGlvbj4KICAgICAgICAgPHRpZmY6WVJlc29sdXRpb24+NzIwMDkwLzEwMDAwPC90aWZmOllSZXNvbHV0aW9uPgogICAgICAgICA8dGlmZjpSZXNvbHV0aW9uVW5pdD4yPC90aWZmOlJlc29sdXRpb25Vbml0PgogICAgICAgICA8ZXhpZjpDb2xvclNwYWNlPjE8L2V4aWY6Q29sb3JTcGFjZT4KICAgICAgICAgPGV4aWY6UGl4ZWxYRGltZW5zaW9uPjI0PC9leGlmOlBpeGVsWERpbWVuc2lvbj4KICAgICAgICAgPGV4aWY6UGl4ZWxZRGltZW5zaW9uPjI0PC9leGlmOlBpeGVsWURpbWVuc2lvbj4KICAgICAgPC9yZGY6RGVzY3JpcHRpb24+CiAgIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgCjw/eHBhY2tldCBlbmQ9InciPz4ubxs+AAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAUtSURBVHjajJZ/bNT1Gcdfz/P53PV6B4W7VltLqdAaplIOiMOoyxxJCSs/Gv/yB4gzJroAosmmDklwkYWR0bQsdmkykoojTpcsWYLxD/lRZdMQkTHRtkLZRqG0tIVe7662vTu43n32x/VKZ/jh89cn38/zvN7P5/l88zwf2blzJz6fDwARQUSm1n8s31CM0/VAnbNmsUPuAsDpgEO+Bg4C7//iyv5hvmMiQiqVQpqamvB6vVNwEeG1JZtCBrYi/MrkAwDNgjhwAlbzICBLA0rDb0+/839C6XQaaWxspLCw8Dp86cbNmqVFJQddE6KzdjZ9D89g+B6fSyCOcyn1nxil+O9xKg5HqWFSHGXLjrP7W/ICqVQK2bNnDz6fDxFh65KNvxbHDhF4rJj2bXPo+IGfcW5h5xL4f99P+FCEMIAob75x9t0dAMlkElNXV4e1lteXbNqiQoMaeOFOjrdU868SD2luYyEP6dUh+sYmSHeOU6GO5Z8VLx5+NNZxIpPJ5AS2L3upROCoCvz8Lo7vnkf77cAHhpiz/zIL9vWz8L8p/NvupmM0Q7pjnAoLqz8tDrc8MnQqYVUVhVdF4LEg7b+rvDn8wDDlH0WoPpukLJImSBaMwjcJqmwWts2jPZLG/8kwYVFeVdXXZcFf4yVDc2cNKfBFmD9X+0ncCP58F48eG+Feo2CAUkvs4dl0V/uJvdXLiiV+ut++n7YLSfxPfMMG54ChzB3WIesVWB2i82bw1AR6fJR7C4VsfYiv6u/k3A9nEgP4zXke8DiYHyAOMK+QxPIgnZ9GqSHr1itQJ8DK2fTerDQ+S/bHRXQJaHSCwNIZ2Xh+7+S3VAmwNMBA/tuPZtErgKquUmdMWIFlRURvdamRNEXGwIWrlP47pTMzLiunxghGMwTLvcTWlHAp77s4QNSrYMQtss6ZMgWqCm5cHoDHO1nbk6K8zEN8+3zatv2Hn1b59EqJZdxmYUERg9P9KwpIiAOTdWUWBXuLzB/vZG3P1Un4PNp2d1MbmyD45TWCxuCsQm0x56bHGHFYEZwxok7toAA9Sfw3hCcoL/NOwi9QO5wmWO1j4JEgZxTkodmcWRGkf3pcX0r8xoAaBixKu4U5/xwndM+0tpAvS6mP+PZK2nb1UBvPEKwKMLDvPj4ESGc55lGy303sdJKQdZB2rkMdctAB/4gzN+/Q2ENNd4LyUi/xN+bTtquX2thk5nk4wI3gAF+OMNcA1nFQDfK+BY5GqbkwWabTY5QZhXWlnNx1ntrY1Rz87fuvw29m/Sn8J+PUGAFj5T19baA1IspuBZp7cx1x4SwG1cEf+lgRSROs8jGwb+Ht4QB/GSSsAhYano39LWIBxNEIbP14hPDuiyS2VtJuHXQlKKvxM/jiXDq/D/xPlwifGMkJZB2NIoKpr69nxeiZxLHicFSFVWfGqBidIP3LSjrWltD94CyufF/4kQgPuVz2Lz93+dDRa9eu5QQ8Hg8/iXee+Dy4CKMs7xqn4nwKz9IirhQqmVuB42m8ey+x7LMoD6iAON782eChhqmRuXfvXgKBAKqKqtI0/8nNKrQI4BVYXkzHgzPpC88gWuHL/caXrhLoGiN0apSKr0ZZRBZM7q2w5ZnLR1oAnHOMjY0hra2tFBQUYIyZmstvVT1Z6eDlAuEVq7merxmwueNPDXy9PvybjKP5mctHLk4/XTKZRJqbm/H7/VNw1VyEMYbW4FN3WNWnnchKoy5sHeVGBRX6VWi3ymFx7r11Ix8MTX/y5C2RSPC/AQB61erowbpqSwAAAABJRU5ErkJggg==")}div.vis-network div.vis-manipulation button.vis-button.vis-delete{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAEEOaVRYdFhNTDpjb20uYWRvYmUueG1wAAAAAAA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/Pgo8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjUtYzAyMSA3OS4xNTQ5MTEsIDIwMTMvMTAvMjktMTE6NDc6MTYgICAgICAgICI+CiAgIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+CiAgICAgIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiCiAgICAgICAgICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIKICAgICAgICAgICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICAgICAgICAgICB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIKICAgICAgICAgICAgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIKICAgICAgICAgICAgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiCiAgICAgICAgICAgIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICAgICAgICAgIHhtbG5zOmV4aWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vZXhpZi8xLjAvIj4KICAgICAgICAgPHhtcDpDcmVhdG9yVG9vbD5BZG9iZSBQaG90b3Nob3AgQ0MgKFdpbmRvd3MpPC94bXA6Q3JlYXRvclRvb2w+CiAgICAgICAgIDx4bXA6Q3JlYXRlRGF0ZT4yMDE0LTAxLTIyVDE5OjI0OjUxKzAxOjAwPC94bXA6Q3JlYXRlRGF0ZT4KICAgICAgICAgPHhtcDpNZXRhZGF0YURhdGU+MjAxNC0wMi0wNFQxNDo0MTowNCswMTowMDwveG1wOk1ldGFkYXRhRGF0ZT4KICAgICAgICAgPHhtcDpNb2RpZnlEYXRlPjIwMTQtMDItMDRUMTQ6NDE6MDQrMDE6MDA8L3htcDpNb2RpZnlEYXRlPgogICAgICAgICA8ZGM6Zm9ybWF0PmltYWdlL3BuZzwvZGM6Zm9ybWF0PgogICAgICAgICA8eG1wTU06SW5zdGFuY2VJRD54bXAuaWlkOjc3NDkzYmUxLTEyZGItOTg0NC1iNDYyLTg2NGVmNGIzMzM3MTwveG1wTU06SW5zdGFuY2VJRD4KICAgICAgICAgPHhtcE1NOkRvY3VtZW50SUQ+eG1wLmRpZDpFQTc2MkY5Njc0ODNFMzExOTQ4QkQxM0UyQkU3OTlBMTwveG1wTU06RG9jdW1lbnRJRD4KICAgICAgICAgPHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD54bXAuZGlkOjczQjYyQUFEOTE4M0UzMTE5NDhCRDEzRTJCRTc5OUExPC94bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ+CiAgICAgICAgIDx4bXBNTTpIaXN0b3J5PgogICAgICAgICAgICA8cmRmOlNlcT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDphY3Rpb24+Y3JlYXRlZDwvc3RFdnQ6YWN0aW9uPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOjczQjYyQUFEOTE4M0UzMTE5NDhCRDEzRTJCRTc5OUExPC9zdEV2dDppbnN0YW5jZUlEPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6d2hlbj4yMDE0LTAxLTIyVDE5OjI0OjUxKzAxOjAwPC9zdEV2dDp3aGVuPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6c29mdHdhcmVBZ2VudD5BZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKTwvc3RFdnQ6c29mdHdhcmVBZ2VudD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPnNhdmVkPC9zdEV2dDphY3Rpb24+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDppbnN0YW5jZUlEPnhtcC5paWQ6RUE2MEEyNEUxOTg0RTMxMUFEQUZFRkU2RUMzMzNFMDM8L3N0RXZ0Omluc3RhbmNlSUQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTQtMDEtMjNUMTk6MTg6MDcrMDE6MDA8L3N0RXZ0OndoZW4+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIFBob3Rvc2hvcCBDUzYgKFdpbmRvd3MpPC9zdEV2dDpzb2Z0d2FyZUFnZW50PgogICAgICAgICAgICAgICAgICA8c3RFdnQ6Y2hhbmdlZD4vPC9zdEV2dDpjaGFuZ2VkPgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDphY3Rpb24+c2F2ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDowNmE3NWYwMy04MDdhLWUzNGYtYjk1Zi1jZGU2MjM0Mzg4OGY8L3N0RXZ0Omluc3RhbmNlSUQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTQtMDItMDRUMTQ6NDE6MDQrMDE6MDA8L3N0RXZ0OndoZW4+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIFBob3Rvc2hvcCBDQyAoV2luZG93cyk8L3N0RXZ0OnNvZnR3YXJlQWdlbnQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpjaGFuZ2VkPi88L3N0RXZ0OmNoYW5nZWQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5jb252ZXJ0ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OnBhcmFtZXRlcnM+ZnJvbSBhcHBsaWNhdGlvbi92bmQuYWRvYmUucGhvdG9zaG9wIHRvIGltYWdlL3BuZzwvc3RFdnQ6cGFyYW1ldGVycz4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPmRlcml2ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OnBhcmFtZXRlcnM+Y29udmVydGVkIGZyb20gYXBwbGljYXRpb24vdm5kLmFkb2JlLnBob3Rvc2hvcCB0byBpbWFnZS9wbmc8L3N0RXZ0OnBhcmFtZXRlcnM+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmFjdGlvbj5zYXZlZDwvc3RFdnQ6YWN0aW9uPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6aW5zdGFuY2VJRD54bXAuaWlkOjc3NDkzYmUxLTEyZGItOTg0NC1iNDYyLTg2NGVmNGIzMzM3MTwvc3RFdnQ6aW5zdGFuY2VJRD4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OndoZW4+MjAxNC0wMi0wNFQxNDo0MTowNCswMTowMDwvc3RFdnQ6d2hlbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OnNvZnR3YXJlQWdlbnQ+QWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKTwvc3RFdnQ6c29mdHdhcmVBZ2VudD4KICAgICAgICAgICAgICAgICAgPHN0RXZ0OmNoYW5nZWQ+Lzwvc3RFdnQ6Y2hhbmdlZD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgIDwvcmRmOlNlcT4KICAgICAgICAgPC94bXBNTTpIaXN0b3J5PgogICAgICAgICA8eG1wTU06RGVyaXZlZEZyb20gcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICA8c3RSZWY6aW5zdGFuY2VJRD54bXAuaWlkOjA2YTc1ZjAzLTgwN2EtZTM0Zi1iOTVmLWNkZTYyMzQzODg4Zjwvc3RSZWY6aW5zdGFuY2VJRD4KICAgICAgICAgICAgPHN0UmVmOmRvY3VtZW50SUQ+eG1wLmRpZDpFQTc2MkY5Njc0ODNFMzExOTQ4QkQxM0UyQkU3OTlBMTwvc3RSZWY6ZG9jdW1lbnRJRD4KICAgICAgICAgICAgPHN0UmVmOm9yaWdpbmFsRG9jdW1lbnRJRD54bXAuZGlkOjczQjYyQUFEOTE4M0UzMTE5NDhCRDEzRTJCRTc5OUExPC9zdFJlZjpvcmlnaW5hbERvY3VtZW50SUQ+CiAgICAgICAgIDwveG1wTU06RGVyaXZlZEZyb20+CiAgICAgICAgIDxwaG90b3Nob3A6Q29sb3JNb2RlPjM8L3Bob3Rvc2hvcDpDb2xvck1vZGU+CiAgICAgICAgIDxwaG90b3Nob3A6SUNDUHJvZmlsZT5zUkdCIElFQzYxOTY2LTIuMTwvcGhvdG9zaG9wOklDQ1Byb2ZpbGU+CiAgICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6T3JpZW50YXRpb24+CiAgICAgICAgIDx0aWZmOlhSZXNvbHV0aW9uPjcyMDA5MC8xMDAwMDwvdGlmZjpYUmVzb2x1dGlvbj4KICAgICAgICAgPHRpZmY6WVJlc29sdXRpb24+NzIwMDkwLzEwMDAwPC90aWZmOllSZXNvbHV0aW9uPgogICAgICAgICA8dGlmZjpSZXNvbHV0aW9uVW5pdD4yPC90aWZmOlJlc29sdXRpb25Vbml0PgogICAgICAgICA8ZXhpZjpDb2xvclNwYWNlPjE8L2V4aWY6Q29sb3JTcGFjZT4KICAgICAgICAgPGV4aWY6UGl4ZWxYRGltZW5zaW9uPjI0PC9leGlmOlBpeGVsWERpbWVuc2lvbj4KICAgICAgICAgPGV4aWY6UGl4ZWxZRGltZW5zaW9uPjI0PC9leGlmOlBpeGVsWURpbWVuc2lvbj4KICAgICAgPC9yZGY6RGVzY3JpcHRpb24+CiAgIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgCjw/eHBhY2tldCBlbmQ9InciPz4aYJzYAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAYGSURBVHjalJZ7UJTnFcZ/73m/72PdJY1RbhoQp6lkXRAvmIYxdCUadLVOozPNtGObap1JsKipjiShbdoRbeKEiQHpQK3xj0xa03aamTbaTGyAYV1QGeqFi+JyiZFLAlmESBkWRmS3fyzslGkmnZ5/v/M873Oe75zzvqqoqAibzQaAiKCUAkApRdHIK/NFsx2NR91nOSILADDoJyzNaM4xxbtvPHh0iC+JiYkJ1OHDh4mJiUEpFSXPv/ziPC28TIiXDCOSrAClQDSEpsCwJPIhrEBRQpiSytXlQwDhcBilFPfu3UMVFxdjt9ujFTzfcLBADCoEEAFr1ZbrrNjch2vtEImPBgHob7fTcWE+bVXJNJ/NiFQlEGLvieXHKmYqGB8fRx05cgSbzYaIsPvywV8pKFaA7fGtLTzz61YWpo/xVTHQbufsq5lcez9zWuWhk5mvFwMEg0H0+vXrMU2Tn1wp3CtCiQ5DjGd3A/m/v8IDCZP8r4iNmyRrWx/j/5qktykZpXKzAjVDVxPzGqemptDr1q1jX3NRnIJarcDKK2hgR2ULXRfncv7UYv7xpovhnhiW5Mz+kefeSKO6LJ1A1xzEuk/Ojm4mRibpuZaMZW3OCtRUND60NmiICCIUShisx7a2sLMiQn4s77uEQgIabnqdfHIlgT1/qQeg8vs5dHhdCNB1wYn3RIiC995j26stjAbsNH+YiZJCESnS1Y/XxIXu8r4YIPv/VkVs3CTnTy2ms34xro1+sp9po6sxlTu34ultmsPVvy6is86FCHgO+DDs49zpjufBpCG+seYOC9OHaTidieicb9ouVAhKtouAseI710ma7pLuqwmgYfHqAFt+6WdLoQ/LBl11Lm7VudAa8vb72PCin9TlAWIsGGhLACD+kSAZnusYBii1XQAPYWDllt6ov2lrBkDBR2+6Ofuak2//3M+G/T4wAAPW7fPhKfRTVeqk9qQbFKRmDUTxS3N7QYGYmwzCkqklBGlPDEcTNv+sg9tNCbTXuvBWujE0bHrZj9JE1B/wU1Pm5PwJN6YBS9a2kVvQEcWnrh5GTFD3lxkYkqRMgYQlwVldUvDnen73LHTUuqitdKM0eAr9AFQfd1J/yo2aJn+2sn4Wdn5qEFODJskgBIjx5T0uCrQA08pnIjS9PERDjPnfOKXAMEBECUoGEIHBj+2zkt76UQ6dXheGAev3+cg74Kf6uJPqcicbfuond7cPy4SOiy7+tD9nFvZurx00KOk3CNEC+mE+vjSPBc7IWqgqTaPT60IMcO/xsXGa3HfKjRgRdbl7/KDg0jtubje6aHj7c7J3dgLQ2zoPwwQ91SooOQdAW1VKVMHty0kA5Bb48BycJn/LjWFGbLv4thvvb53kFvjJ+XEdWkPfjQVR/CcNKYgGMc8JWt5Fa2j+MIPPuyI2pa4IoHSkt6vLIuRaQ9q32khzt4GCxtNu6k46GeiIR2lIfDQQsafPzq1LGRGL9Gk9d+vrwewvfHPQOoexQVjxdB/auk/zmaUMdsfz6bVUtIalT7bxveP1ZHh6GPDPYeSzeD69kcpIfxymFWLNrka+ljhBTWkWwz2JiJT84YHnz2iPx0P20PkmRF5i6HYiwZFJsn/YzdezbzE3cQibY5xV266z6RfXohakb+xB9CjanCD9qTbW7Grk4WV38VZm0l6dhQiEw9taHSuDqrS0FIfDwXM3X9mHMsvRAk/sauDpQy38P+GtzOTGB9mEpkD0C2dS8n8zOjqK9ng8WJZFU+JTjasGvaCNXPpvJBPoMlm0OoDNMfWVxONfWNSUPUZ7TUQ56tCZlPwSgMnJSVRpaSmxsbFE1raw82ZxAZZRQUiBYUKGp5UlOX2krBzmoUVjiIKhHge9rfPo+Wcy3ZeXIYASgL1/X5RfMXMvj46OosrLy7HZbGitUUohIuzoem0RofALaOsghgWGjky0MiJTL8b0lOvI8hN1DKXKP0jd3TNTWDgcJhgMoo4ePYrD4Yi+KmaeLlprnrtXFo9h/AAlG1AqE8yFmBrC+jO0bgH9EVpO/1F2Dc5g//OAsbEx/j0Af+USsQynL1UAAAAASUVORK5CYII=")}div.vis-network div.vis-edit-mode div.vis-label,div.vis-network div.vis-manipulation div.vis-label{line-height:25px;margin:0 0 0 23px}div.vis-network div.vis-manipulation div.vis-separator-line{background-color:#bdbdbd;display:inline-block;float:left;height:21px;margin:0 7px 0 15px;width:1px}
\ No newline at end of file
diff --git a/workflow/lib/vis-9.1.2/vis-network.min.js b/workflow/lib/vis-9.1.2/vis-network.min.js
new file mode 100644
index 0000000000000000000000000000000000000000..108a712588ad669bb23956239d0c2af7b713121e
--- /dev/null
+++ b/workflow/lib/vis-9.1.2/vis-network.min.js
@@ -0,0 +1,27 @@
+/**
+ * vis-network
+ * https://visjs.github.io/vis-network/
+ *
+ * A dynamic, browser-based visualization library.
+ *
+ * @version 9.1.2
+ * @date 2022-03-28T20:17:35.342Z
+ *
+ * @copyright (c) 2011-2017 Almende B.V, http://almende.com
+ * @copyright (c) 2017-2019 visjs contributors, https://github.com/visjs
+ *
+ * @license
+ * vis.js is dual licensed under both
+ *
+ * 1. The Apache 2.0 License
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * and
+ *
+ * 2. The MIT License
+ * http://opensource.org/licenses/MIT
+ *
+ * vis.js may be distributed under either license.
+ */
+!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).vis=t.vis||{})}(this,(function(t){"use strict";var e="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},i=function(t){return t&&t.Math==Math&&t},n=i("object"==typeof globalThis&&globalThis)||i("object"==typeof window&&window)||i("object"==typeof self&&self)||i("object"==typeof e&&e)||function(){return this}()||Function("return this")(),o=function(t){try{return!!t()}catch(t){return!0}},r=!o((function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")})),s=r,a=Function.prototype,h=a.apply,l=a.call,d="object"==typeof Reflect&&Reflect.apply||(s?l.bind(h):function(){return l.apply(h,arguments)}),c=r,u=Function.prototype,f=u.bind,p=u.call,v=c&&f.bind(p,p),g=c?function(t){return t&&v(t)}:function(t){return t&&function(){return p.apply(t,arguments)}},y=function(t){return"function"==typeof t},m={},b=!o((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]})),w=r,k=Function.prototype.call,_=w?k.bind(k):function(){return k.apply(k,arguments)},x={},E={}.propertyIsEnumerable,O=Object.getOwnPropertyDescriptor,C=O&&!E.call({1:2},1);x.f=C?function(t){var e=O(this,t);return!!e&&e.enumerable}:E;var S,T,M=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}},P=g,D=P({}.toString),I=P("".slice),B=function(t){return I(D(t),8,-1)},z=g,N=o,F=B,A=n.Object,j=z("".split),R=N((function(){return!A("z").propertyIsEnumerable(0)}))?function(t){return"String"==F(t)?j(t,""):A(t)}:A,L=n.TypeError,H=function(t){if(null==t)throw L("Can't call method on "+t);return t},W=R,q=H,V=function(t){return W(q(t))},U=y,Y=function(t){return"object"==typeof t?null!==t:U(t)},X={},G=X,K=n,$=y,Z=function(t){return $(t)?t:void 0},Q=function(t,e){return arguments.length<2?Z(G[t])||Z(K[t]):G[t]&&G[t][e]||K[t]&&K[t][e]},J=g({}.isPrototypeOf),tt=Q("navigator","userAgent")||"",et=n,it=tt,nt=et.process,ot=et.Deno,rt=nt&&nt.versions||ot&&ot.version,st=rt&&rt.v8;st&&(T=(S=st.split("."))[0]>0&&S[0]<4?1:+(S[0]+S[1])),!T&&it&&(!(S=it.match(/Edge\/(\d+)/))||S[1]>=74)&&(S=it.match(/Chrome\/(\d+)/))&&(T=+S[1]);var at=T,ht=at,lt=o,dt=!!Object.getOwnPropertySymbols&&!lt((function(){var t=Symbol();return!String(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&ht&&ht<41})),ct=dt&&!Symbol.sham&&"symbol"==typeof Symbol.iterator,ut=Q,ft=y,pt=J,vt=ct,gt=n.Object,yt=vt?function(t){return"symbol"==typeof t}:function(t){var e=ut("Symbol");return ft(e)&&pt(e.prototype,gt(t))},mt=n.String,bt=function(t){try{return mt(t)}catch(t){return"Object"}},wt=y,kt=bt,_t=n.TypeError,xt=function(t){if(wt(t))return t;throw _t(kt(t)+" is not a function")},Et=xt,Ot=function(t,e){var i=t[e];return null==i?void 0:Et(i)},Ct=_,St=y,Tt=Y,Mt=n.TypeError,Pt={exports:{}},Dt=n,It=Object.defineProperty,Bt=function(t,e){try{It(Dt,t,{value:e,configurable:!0,writable:!0})}catch(i){Dt[t]=e}return e},zt="__core-js_shared__",Nt=n[zt]||Bt(zt,{}),Ft=Nt;(Pt.exports=function(t,e){return Ft[t]||(Ft[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.21.1",mode:"pure",copyright:"© 2014-2022 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.21.1/LICENSE",source:"https://github.com/zloirock/core-js"});var At=H,jt=n.Object,Rt=function(t){return jt(At(t))},Lt=Rt,Ht=g({}.hasOwnProperty),Wt=Object.hasOwn||function(t,e){return Ht(Lt(t),e)},qt=g,Vt=0,Ut=Math.random(),Yt=qt(1..toString),Xt=function(t){return"Symbol("+(void 0===t?"":t)+")_"+Yt(++Vt+Ut,36)},Gt=n,Kt=Pt.exports,$t=Wt,Zt=Xt,Qt=dt,Jt=ct,te=Kt("wks"),ee=Gt.Symbol,ie=ee&&ee.for,ne=Jt?ee:ee&&ee.withoutSetter||Zt,oe=function(t){if(!$t(te,t)||!Qt&&"string"!=typeof te[t]){var e="Symbol."+t;Qt&&$t(ee,t)?te[t]=ee[t]:te[t]=Jt&&ie?ie(e):ne(e)}return te[t]},re=_,se=Y,ae=yt,he=Ot,le=function(t,e){var i,n;if("string"===e&&St(i=t.toString)&&!Tt(n=Ct(i,t)))return n;if(St(i=t.valueOf)&&!Tt(n=Ct(i,t)))return n;if("string"!==e&&St(i=t.toString)&&!Tt(n=Ct(i,t)))return n;throw Mt("Can't convert object to primitive value")},de=oe,ce=n.TypeError,ue=de("toPrimitive"),fe=function(t,e){if(!se(t)||ae(t))return t;var i,n=he(t,ue);if(n){if(void 0===e&&(e="default"),i=re(n,t,e),!se(i)||ae(i))return i;throw ce("Can't convert object to primitive value")}return void 0===e&&(e="number"),le(t,e)},pe=yt,ve=function(t){var e=fe(t,"string");return pe(e)?e:e+""},ge=Y,ye=n.document,me=ge(ye)&&ge(ye.createElement),be=function(t){return me?ye.createElement(t):{}},we=be,ke=!b&&!o((function(){return 7!=Object.defineProperty(we("div"),"a",{get:function(){return 7}}).a})),_e=b,xe=_,Ee=x,Oe=M,Ce=V,Se=ve,Te=Wt,Me=ke,Pe=Object.getOwnPropertyDescriptor;m.f=_e?Pe:function(t,e){if(t=Ce(t),e=Se(e),Me)try{return Pe(t,e)}catch(t){}if(Te(t,e))return Oe(!xe(Ee.f,t,e),t[e])};var De=o,Ie=y,Be=/#|\.prototype\./,ze=function(t,e){var i=Fe[Ne(t)];return i==je||i!=Ae&&(Ie(e)?De(e):!!e)},Ne=ze.normalize=function(t){return String(t).replace(Be,".").toLowerCase()},Fe=ze.data={},Ae=ze.NATIVE="N",je=ze.POLYFILL="P",Re=ze,Le=xt,He=r,We=g(g.bind),qe=function(t,e){return Le(t),void 0===e?t:He?We(t,e):function(){return t.apply(e,arguments)}},Ve={},Ue=b&&o((function(){return 42!=Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype})),Ye=n,Xe=Y,Ge=Ye.String,Ke=Ye.TypeError,$e=function(t){if(Xe(t))return t;throw Ke(Ge(t)+" is not an object")},Ze=b,Qe=ke,Je=Ue,ti=$e,ei=ve,ii=n.TypeError,ni=Object.defineProperty,oi=Object.getOwnPropertyDescriptor,ri="enumerable",si="configurable",ai="writable";Ve.f=Ze?Je?function(t,e,i){if(ti(t),e=ei(e),ti(i),"function"==typeof t&&"prototype"===e&&"value"in i&&ai in i&&!i.writable){var n=oi(t,e);n&&n.writable&&(t[e]=i.value,i={configurable:si in i?i.configurable:n.configurable,enumerable:ri in i?i.enumerable:n.enumerable,writable:!1})}return ni(t,e,i)}:ni:function(t,e,i){if(ti(t),e=ei(e),ti(i),Qe)try{return ni(t,e,i)}catch(t){}if("get"in i||"set"in i)throw ii("Accessors not supported");return"value"in i&&(t[e]=i.value),t};var hi=Ve,li=M,di=b?function(t,e,i){return hi.f(t,e,li(1,i))}:function(t,e,i){return t[e]=i,t},ci=n,ui=d,fi=g,pi=y,vi=m.f,gi=Re,yi=X,mi=qe,bi=di,wi=Wt,ki=function(t){var e=function(i,n,o){if(this instanceof e){switch(arguments.length){case 0:return new t;case 1:return new t(i);case 2:return new t(i,n)}return new t(i,n,o)}return ui(t,this,arguments)};return e.prototype=t.prototype,e},_i=function(t,e){var i,n,o,r,s,a,h,l,d=t.target,c=t.global,u=t.stat,f=t.proto,p=c?ci:u?ci[d]:(ci[d]||{}).prototype,v=c?yi:yi[d]||bi(yi,d,{})[d],g=v.prototype;for(o in e)i=!gi(c?o:d+(u?".":"#")+o,t.forced)&&p&&wi(p,o),s=v[o],i&&(a=t.noTargetGet?(l=vi(p,o))&&l.value:p[o]),r=i&&a?a:e[o],i&&typeof s==typeof r||(h=t.bind&&i?mi(r,ci):t.wrap&&i?ki(r):f&&pi(r)?fi(r):r,(t.sham||r&&r.sham||s&&s.sham)&&bi(h,"sham",!0),bi(v,o,h),f&&(wi(yi,n=d+"Prototype")||bi(yi,n,{}),bi(yi[n],o,r),t.real&&g&&!g[o]&&bi(g,o,r)))},xi=Math.ceil,Ei=Math.floor,Oi=function(t){var e=+t;return e!=e||0===e?0:(e>0?Ei:xi)(e)},Ci=Oi,Si=Math.max,Ti=Math.min,Mi=function(t,e){var i=Ci(t);return i<0?Si(i+e,0):Ti(i,e)},Pi=Oi,Di=Math.min,Ii=function(t){return t>0?Di(Pi(t),9007199254740991):0},Bi=function(t){return Ii(t.length)},zi=V,Ni=Mi,Fi=Bi,Ai=function(t){return function(e,i,n){var o,r=zi(e),s=Fi(r),a=Ni(n,s);if(t&&i!=i){for(;s>a;)if((o=r[a++])!=o)return!0}else for(;s>a;a++)if((t||a in r)&&r[a]===i)return t||a||0;return!t&&-1}},ji={includes:Ai(!0),indexOf:Ai(!1)},Ri={},Li=Wt,Hi=V,Wi=ji.indexOf,qi=Ri,Vi=g([].push),Ui=function(t,e){var i,n=Hi(t),o=0,r=[];for(i in n)!Li(qi,i)&&Li(n,i)&&Vi(r,i);for(;e.length>o;)Li(n,i=e[o++])&&(~Wi(r,i)||Vi(r,i));return r},Yi=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],Xi=Ui,Gi=Yi,Ki=Object.keys||function(t){return Xi(t,Gi)},$i={};$i.f=Object.getOwnPropertySymbols;var Zi=b,Qi=g,Ji=_,tn=o,en=Ki,nn=$i,on=x,rn=Rt,sn=R,an=Object.assign,hn=Object.defineProperty,ln=Qi([].concat),dn=!an||tn((function(){if(Zi&&1!==an({b:1},an(hn({},"a",{enumerable:!0,get:function(){hn(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},e={},i=Symbol(),n="abcdefghijklmnopqrst";return t[i]=7,n.split("").forEach((function(t){e[t]=t})),7!=an({},t)[i]||en(an({},e)).join("")!=n}))?function(t,e){for(var i=rn(t),n=arguments.length,o=1,r=nn.f,s=on.f;n>o;)for(var a,h=sn(arguments[o++]),l=r?ln(en(h),r(h)):en(h),d=l.length,c=0;d>c;)a=l[c++],Zi&&!Ji(s,h,a)||(i[a]=h[a]);return i}:an,cn=dn;_i({target:"Object",stat:!0,forced:Object.assign!==cn},{assign:cn});var un=X.Object.assign,fn=g([].slice),pn=g,vn=xt,gn=Y,yn=Wt,mn=fn,bn=r,wn=n.Function,kn=pn([].concat),_n=pn([].join),xn={},En=function(t,e,i){if(!yn(xn,e)){for(var n=[],o=0;o
=.1;)(p=+r[c++%s])>d&&(p=d),f=Math.sqrt(p*p/(1+l*l)),e+=f=a<0?-f:f,i+=l*f,!0===u?t.lineTo(e,i):t.moveTo(e,i),d-=p,u=!u}var Ln={circle:Nn,dashedLine:Rn,database:jn,diamond:function(t,e,i,n){t.beginPath(),t.lineTo(e,i+n),t.lineTo(e+n,i),t.lineTo(e,i-n),t.lineTo(e-n,i),t.closePath()},ellipse:An,ellipse_vis:An,hexagon:function(t,e,i,n){t.beginPath();var o=2*Math.PI/6;t.moveTo(e+n,i);for(var r=1;r<6;r++)t.lineTo(e+n*Math.cos(o*r),i+n*Math.sin(o*r));t.closePath()},roundRect:Fn,square:function(t,e,i,n){t.beginPath(),t.rect(e-n,i-n,2*n,2*n),t.closePath()},star:function(t,e,i,n){t.beginPath(),i+=.1*(n*=.82);for(var o=0;o<10;o++){var r=o%2==0?1.3*n:.5*n;t.lineTo(e+r*Math.sin(2*o*Math.PI/10),i-r*Math.cos(2*o*Math.PI/10))}t.closePath()},triangle:function(t,e,i,n){t.beginPath(),i+=.275*(n*=1.15);var o=2*n,r=o/2,s=Math.sqrt(3)/6*o,a=Math.sqrt(o*o-r*r);t.moveTo(e,i-(a-s)),t.lineTo(e+r,i+s),t.lineTo(e-r,i+s),t.lineTo(e,i-(a-s)),t.closePath()},triangleDown:function(t,e,i,n){t.beginPath(),i-=.275*(n*=1.15);var o=2*n,r=o/2,s=Math.sqrt(3)/6*o,a=Math.sqrt(o*o-r*r);t.moveTo(e,i+(a-s)),t.lineTo(e+r,i-s),t.lineTo(e-r,i-s),t.lineTo(e,i+(a-s)),t.closePath()}};var Hn={exports:{}};!function(t){function e(t){if(t)return function(t){for(var i in e.prototype)t[i]=e.prototype[i];return t}(t)}t.exports=e,e.prototype.on=e.prototype.addEventListener=function(t,e){return this._callbacks=this._callbacks||{},(this._callbacks["$"+t]=this._callbacks["$"+t]||[]).push(e),this},e.prototype.once=function(t,e){function i(){this.off(t,i),e.apply(this,arguments)}return i.fn=e,this.on(t,i),this},e.prototype.off=e.prototype.removeListener=e.prototype.removeAllListeners=e.prototype.removeEventListener=function(t,e){if(this._callbacks=this._callbacks||{},0==arguments.length)return this._callbacks={},this;var i,n=this._callbacks["$"+t];if(!n)return this;if(1==arguments.length)return delete this._callbacks["$"+t],this;for(var o=0;o=a?t?"":void 0:(n=ao(r,s))<55296||n>56319||s+1===a||(o=ao(r,s+1))<56320||o>57343?t?so(r,s):n:t?ho(r,s,s+2):o-56320+(n-55296<<10)+65536}},co={codeAt:lo(!1),charAt:lo(!0)},uo=y,fo=Nt,po=g(Function.toString);uo(fo.inspectSource)||(fo.inspectSource=function(t){return po(t)});var vo,go,yo,mo=fo.inspectSource,bo=y,wo=mo,ko=n.WeakMap,_o=bo(ko)&&/native code/.test(wo(ko)),xo=Pt.exports,Eo=Xt,Oo=xo("keys"),Co=function(t){return Oo[t]||(Oo[t]=Eo(t))},So=_o,To=n,Mo=g,Po=Y,Do=di,Io=Wt,Bo=Nt,zo=Co,No=Ri,Fo="Object already initialized",Ao=To.TypeError,jo=To.WeakMap;if(So||Bo.state){var Ro=Bo.state||(Bo.state=new jo),Lo=Mo(Ro.get),Ho=Mo(Ro.has),Wo=Mo(Ro.set);vo=function(t,e){if(Ho(Ro,t))throw new Ao(Fo);return e.facade=t,Wo(Ro,t,e),e},go=function(t){return Lo(Ro,t)||{}},yo=function(t){return Ho(Ro,t)}}else{var qo=zo("state");No[qo]=!0,vo=function(t,e){if(Io(t,qo))throw new Ao(Fo);return e.facade=t,Do(t,qo,e),e},go=function(t){return Io(t,qo)?t[qo]:{}},yo=function(t){return Io(t,qo)}}var Vo={set:vo,get:go,has:yo,enforce:function(t){return yo(t)?go(t):vo(t,{})},getterFor:function(t){return function(e){var i;if(!Po(e)||(i=go(e)).type!==t)throw Ao("Incompatible receiver, "+t+" required");return i}}},Uo=b,Yo=Wt,Xo=Function.prototype,Go=Uo&&Object.getOwnPropertyDescriptor,Ko=Yo(Xo,"name"),$o={EXISTS:Ko,PROPER:Ko&&"something"===function(){}.name,CONFIGURABLE:Ko&&(!Uo||Uo&&Go(Xo,"name").configurable)},Zo={},Qo=b,Jo=Ue,tr=Ve,er=$e,ir=V,nr=Ki;Zo.f=Qo&&!Jo?Object.defineProperties:function(t,e){er(t);for(var i,n=ir(e),o=nr(e),r=o.length,s=0;r>s;)tr.f(t,i=o[s++],n[i]);return t};var or,rr=Q("document","documentElement"),sr=$e,ar=Zo,hr=Yi,lr=Ri,dr=rr,cr=be,ur=Co("IE_PROTO"),fr=function(){},pr=function(t){return"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+