Hiden proxys

My little war with wireguard server and redirecting all wg0 traffic to a local socks5 server

2024.02.13 01:40 itfromswiss My little war with wireguard server and redirecting all wg0 traffic to a local socks5 server

Hello to all readers here :-)
1.) English is not native language ... so please ignore my spell-errors in a foreign language.
Since last last year I was using a very cheap VPS with Debian 10 (upgraded to Debian 12) in the United Kingdom.
I pay 3 $ per month. What I get for 3 $ exactly ...
1 fixed IP / 2 TB Traffic 1 GB RAM 1 CPU 20 GB diskspace 
If you pay 7 $ you get 5 TB / 2 CPU / and 40 GB diskspace
Compared to the horrible prices for a single VPS inside of Switzerland this low price is a dream.I ordered my Server with Debian 10. 2 hours later it was running perfectly with the new Debian 12.After this point I began to harden my little own root Server in the United Kingdom.
For testing purposes I installed WireGuard with 2 Interfaces (UDP 80 andUDP 443).I also added successful a IPSec connection back to Switzerland to a customer LAN,that frequently has IPSec Problems.It was even possible to ping a single IP in the remote Subnet in Switzerland even over Wireguard. So I can test the current status of IPSec Connection of my Customer even over my Smartphone. This is a nice to have feature !!!
On my Smartphone, Tablet or even Computer.I just use Wireguard for my private work.I use the SSH connection only for installing and maintenance the server.It works perfect !!! Even watching Netflix on my Smartphone or Tablet is working with the activated WireGuard VPN.
I made for 3 very good Friends configuration files with the QR-Code. After a few Weeks a other old Friend asked me for the same configuration file to prevent his digital live uncensored. A little note from me to all visitors that came to Switzerland.
All Internet communication will be stored for a half year. This is true for all visitors and citizen inside of Switzerland and it is also true for all worldwide communication to company's like protonmail.com ? If this time over, the data will be deleted. According to the law. Sorry if you believe that Shit ? It should be deleted ... Yes. Of course and Maria was a virgin .-) 
I gave him the new created configuration for a few weeks. Until he called me last Week
"Hello XXXXX, are you sure your little VPS Server is hosted in the United Kingdom ? Your WireGuard Server works anywhere perfect.The Installation with the so called QR is idiot proof, even for me as a IT rooky. Thank you very much for that !!
I use it on my Tablet and my Computer every day. Yesterday I made over your Wireguard VPN a Account on BBC UK. I would like to see some movies and I saw the following message on my screen.
"This content is not available in your Country ... "
"How can it be, that you Server stands in the UK and this $$$$$$$$ BBC tells me I can not see the movies ?"
I sad to him: "Hy YYYYY nice to hear from you too.Please give me a few days. I'm sure, there will be a solution or a little workaround.
So my little adventure with BBC UK began.
I made a WireGuard connection to the UK.I created a BBC Account with my original email from Switzerland (ends with .ch).And after the confirmation of my Email my created BBC Account was finished. I tried to watch a Movie in IPlayer inside the Browser.I saw exact the same message like my friend.
"This content is not available in your Country ... "
How in hell could BBC possibly detect that I'm not the United-Kingdom ?
I installed a new Browser on my Linux box (chromium) :
Is it really my IP from the UK that BBC blocks ? How can I test this ?
There a plenty of websites where you can create a free ssh-socks5 server account. The Downside is
I found a ssh provider in the UK and created a dummy account within no time and great effort.My dummy ssh account is only valid for 30 days. If you would like to know the provider. Only with PM. Please do not ask here for the name of the company !
I deactivated the Wireguard-VPN on my Linux Computer.Prior to do anything with a ssh automated script.I do check the connection in Terminal an do add the remote-server to the file known_hosts if ssh ask for it.
I create a little Shell Script on my Desktop:
#!/bin/bash # x1 Password # x2 Adress to bind for my Workstation example could be : 127.0.0.1:8080 # x3 user of the remote system # x4 remote ip or the DNS-Name x1="put your password here" x2="127.0.0.1:8080" x3="ladygaga" x4="ip or a valid DNS-NAME" sshpass -p $(echo $x1) ssh -N -D $(echo $x2) $(echo $x3)@$(echo $x4) & exit 0 
I started the SSH connection in background and all I have to do is the following : Open a terminal of your choice.I would like to test if my local socks servers on port 8080 is ready doe his job. Curl is excellent tool for this.
curl --socks5 127.0.0.1:8080 http://www.waybackmachine.de/ 
You have a correct answer and no error ? Lucky one... Your socks5 server is ready and running ...
You can now start your browser but you have to tell him to use your local socks5 server. Otherwise it will use the current connection and not the local socks5. Very easy to made with chromium :
chromium --proxy-server="socks5://127.0.0.1:8080" 
Go to the BBC and login with your valid BBC account. Go to IPlayer let's you smile or even cry like in the last days.
It worked perfect ..... I saw it with my own Eyes ... It worked like a charm.
does BBC use WebRTC ? NO ! does BBC use the timezone of your Browser ? NO ! does BBC use the Keyboard as Source ? NO ! does BBC check the default Language ? NO ! For BBC counts really only one stupid simple thing. 4 little digits and who is the registered owner.If the IP that your your server has,comes out from a pool that is marked as VPS or CLOUD Server company,forget it to play any content over IPlayer ! Your used IP is blamed can not be used to play IPlayer. So I decided to integrate this smart localsocks5 in to my wg0.conf file. So I don't need to manipulate 2 Interfaces. 

For my wg0 interface I use 172.31.255.0/24 as a network-range For my wg1 interface I use 172.30.255.0/24 as a network-range 

Here is my wg0.conf on the server in the UK.Please note only for wg0 Table off. Of course there is more than just one client on wg0. I show only one client. [Interface] PrivateKey = Only_a_damm_fool_would_post_his_secret__key= Address = 172.31.255.1/24 ListenPort = 80 Table = off # client01.conf" [Peer] PublicKey = Only_a_damm_fool_would_post_a_public_key___= AllowedIPs = 172.31.255.2/32 
Here comes the client01.conf for the above server wg0
[Interface] Address = 172.31.255.2/32 DNS = 172.31.255.1 PrivateKey = NO_I_DO_NOT_POST_PRIV_KEYS_FOR_FOR__CL01WG0= [Peer] AllowedIPs = 0.0.0.0/0 Endpoint = www.my-hiden-vps-server-in-the-uk.uk:80 PublicKey = NO_I_DO_NOT_POST_PUPLIC_KEYS_FOR_MY__-SERG0= 
As you may have noticed : I have on both interfaces wg0 and wg1 on the client-side IP from the same range as DNS resolver.
wg0 172.31.255.1 for all clients on wg0 wg1 172.30.255.1 for all clients on wg1 
to make it easy for your clients to resolve names secure I added the following lines to /etc/stubby/stubby.yml in my server.
listen_addresses: 127.0.0.1 172.31.255.1 172.30.255.1 
In one of my first startscripts with root-rights I do :
systemctl stop stubby 
And in my firewall script I do the following :
systemctl start wg-quick@wg0 systemctl start wg-quick@wg1 systemctl start stubby 
This means both interfaces are now able to resolve DNS names for the clients on wg0 and wg1. Very fast I make my the decision to create my local socks5 server on the address 172.31.255.1:8080 that is on my desired wg0 Subnet.
A little watch-guard script in the background make sure my ssh-socks5 server on wg0 172.31.255.1:8080 never goes down, for at least 30 days until my account is not longer valid.
Placing the socks5 server on 172.31.255.1:8080 makes it for every client with a valid wg0 configuration possible to use this configuration if he instruct his Browser on the VPN Device to use this server and the end of the VPN.
Is it for me a problem ? Not really ! Is it for a talented user a problem ? No ! Is it for a midrange user a problem ? Yes Is it for a normal user a problem ? Yes ! Is it for a rooky user a problem ? Yes Yes Yes ! 
I searched for a tool that convert my no socks5 conform communication from 172.31.255.2 (client01) in a socks5 compatible communication to 172.31.255.1:8080.
I found redsocks should be able to do this job, but failed to make it working. What do I miss ? redsocks should only work from the traffic that leaving from wg0 into direction to eth0. All other interfaces like wg1 or eth0 or my working IPSec connection should not be touched.
But none of my multiple configurations with dummy adapter, wg0 direct , or even virtual adapter worked. Has anyone allready done something simmillar ?
If I remove the table statement from wg0.conf my firewall script deactivate private_routing1. All works like like expected. I can still place my socks5 server on 172.31.255.1:8080 after the start of wg0.
 if [ $virtual_iface1 = "yes" ] ; then /ussbin/iptables -t nat -A POSTROUTING -s $wireguard_subnet1 \ -d $ipsec_remote -j SNAT --to $virtual_interface1 fi if [ $virtual_iface2 = "yes" ] ; then /ussbin/iptables -t nat -A POSTROUTING -s $wireguard_subnet1 \ -d $ipsec_remote -j SNAT --to $virtual_interface2 fi if [ $wireguard_private_routing1 = "no" ] ; then /ussbin/iptables -t nat -A POSTROUTING -s $wireguard_subnet1 \ -d 0.0.0.0/0 -j SNAT --to $external_ip fi fi if [ $wireguard_private_routing1 = "yes" ] ; then # Here I would like to find a working solution to redirect all my # no socks5 conform traffic on port tcp 80 and tcp 443 leaving wg0 # to redirect in to a socks5 conform communication to send it to # directlyto 172.31.255.1:8080 fi 
I thank you for reading my long post. And best greetings from switzerland.
A citizen from switzerland
submitted by itfromswiss to WireGuard [link] [comments]


2024.01.17 18:50 Juserfan Please help with my Naruto Watch Order list, it would mean the world to me to complete this list :3

I have watched the first 52 episodes of Naruto, Movie 1-3 and a Little bit of Sasuke Vs Itachi and a little bit of the pain arc, I stoppet watching naruto in 2010, because i hated waiting a week on the next episodes.
When I saw the movies i thought, when in the series are these movies best place in temrs of the timeline.
When i Saw the Pain arc, I learned that their is bad placed fillers. I like fillers, I just don't like when they interrupt in an arc or something like that.
Naruto is one of my favorite series of all time, it stands besides TMNT.
Please help me with this dream I have had in over 14 years! it would mean alot to me :3
I have tried To make a Perfect Watch Order list of Naruto but its hard and I need your help to complete this list. After this list is complete, its going to be my first time watching Naruto from start to finish. This is going to be cancer for me to make and cancer for you to read, sorry in advance :p ____________________________________________________________________________________________________________

Naruto:

____________________________________________________________________________________________________________

Naruto Shippuden:

_________________________________________________ When in Shippuden does these OVAs happen?
Naruto Shippuden: Ultimate Ninja Storm Generations OVA
________________________________________________ When in Shippuden does this series happen? what is the latest thing of Shippuden it refers to.

____________________________________________________________________________________________________________

Boruto:

____________________________________________________________________________________________________________
I could Imagine that some of the fillers in Naruto Shippuden could be watched/placed in the original Naruto series If anyone see something like a flaw or bad order or something like that please tell me :3

submitted by Juserfan to Naruto [link] [comments]


2021.10.27 13:16 jsmar18 Retail Activity has not Subsided in GME since January Q3 2021 SEC Market Structure Data for GME

Retail Activity has not Subsided in GME since January Q3 2021 SEC Market Structure Data for GME
And it's everyone's (mine) favorite time of the quarter! SEC Market Structure Data Update!
Let's see how GME has been behaving when it comes to hidden orders, odd lots, and exchange volume.

Hidden Rate


https://preview.redd.it/dn1mikup7zv71.png?width=1199&format=png&auto=webp&s=d229c3d06f506c991c14df06042fcc7e57cbe3bb
The hidden rate is calculated as total hiden orders / total orders. This order type is used to hide large sized orders (generally), which hides the submitted quantity from the order book. It's also got other nefarious purposes, notably a HFT strategy called hide n' slide.
GME: The first thing to note is that the Hidden rate for GME has increased significantly since the Jan sneeze, and has remained high since. I generally use this metric as a proxy for institutional involvement as there's an exceedingly low probability that retail investors know or bother using hidden orders.
The hidden rate remains high coming into the last quarter, sitting within the 25%-30% band, which to me indicates institutions are still very much active when it comes to trading GME.

Odd Lots


https://preview.redd.it/vbbp9i7r7zv71.png?width=1207&format=png&auto=webp&s=b0ef0bad074f2a8b367545b19dd87d1819958357
Round lots are multiples of 100, odd lots are anything outside that. A previous post I wrote here goes into much more detail about HFTs use them for order shredding and how odd lots relate to the NBBO.
GME: Converse to the hidden rate, I use odd lots as a proxy to gauge retail interest in GME, as the majority of retail are likely buying their shares in odd lots. This allows us to track if there has been any interest lost.
Has there been? Nope. There's been a slight downward trend, but overall it's remained relatively stable at ~40%. Popcorn stock is much lower, but that's due to the fact it's "easier" to buy in multiples of even lots.

Exchange Activity

Below we have two charts, the first goes into GME's trade volume distribution as a % of 100, while the second has a basket of stocks for comparison's sake. Please note the legend is inverse to the order of the bar chart colours (I'm lazy, sorry). Y-axis label should also be "Trade Volume %".

https://preview.redd.it/odmu97ct7zv71.png?width=1219&format=png&auto=webp&s=eef5ff5d4b30ace86b6ec830576c663cd0593015

https://preview.redd.it/ndi5477v7zv71.png?width=1212&format=png&auto=webp&s=dfbba61fa4517509e500e069fca22ecda968361f
GME: For the most part, there are no remarkable differences between the two. I honestly was expecting NYSE % share to go up as a result of buying directly through CS. So either CS broker's do not go through NYSE or there just is a small number of retail orders coming through so it's not noticeable. I'd place my bet on the latter personally.
Probably the only notable thing would be that MEMX, which is a new broker founded exchange does over-index a decent amount in GME compared to the basket of stocks. Speculation is that the "founding" brokers aka investors in the exchange likely use it and are also popular among retail i.e. Fidelity, E*Trade, TD Ameritrade etc... that the likely cause of the over-indexing in my opinion.
I also look forward to observing how IEX changes over the next quarter given renewed interest from the sub and Fidelity finally allowing us to route orders through them.
That wraps it up for this quarter, I'll see you next year for the Q4 2021 update. I may do a more detailed post diving into odd/hidden rate by exchange on the weekend.
submitted by jsmar18 to Superstonk [link] [comments]


2021.10.06 06:43 tHATbOIiNfIRSTrOW Murder Monkeys: A report on the human species

-- Reporting: Field Researcher Horath, 71st Deep Space Rangers -- Date: 21 - 16 - 2301 - 17:03
The mission on Galah 2 was compromised by a terrorist organization. Thanks to the help of the human forces attached to our group we managed to evacuate and meet with the main fleet at Sibon 7. Further developments will be reported as they occure.
What hid behind the dry and to-the-point message of the Borrean Researcher Horath, or "Horace" as the human crew called her, would not be one of the big moments of intergalactic history, but it would be remembered by Horath forever anyways.
-- Horath, Personal Notes: -- Date: 23 - 15 - 2301 - 9:24 "Boarth and Logistics"
The Borrean System was one of the oldest among the Intergalactic Federation of Systems. It had been there after the founding and remained on the high council for almost 100 years. They were peacefull, having done away with their ancestors ways of war and conquest (Humans would say because they s*cked at it!). Over the last three decades, they had built a reputation for themselves, "the galaxy's ambulance", a pretentious name, but a fitting one. If it was one thing the borreans were known for, it was their constant push to help civilians, victims of disasters, wars, stranded explorers, in short, everyone in need. They had allways made a big deal out of it. But, credit where credit is due, they were pretty good at it.
Horath, Junior Researcher with the Borrean Civilian Aid Project, was an ambitious young Borrean. Three years ago she had passed the academy with flying colors, best of her class. And now? A Job at the prestigous BCAP! The dream come true! Honoring her peoples traditions and helping the galaxy! ... at a desk in an office. The logistics office. Famed for what exactly? Thats right! Boredom! Compiling data, preparing the smallest parts of logistical lines, drinking the horrible drink humans had made popular, "Coffee", it tasted like death and boredom to her. Boarth, if you will. All that, had drained her. She had spent years working, learning and preparing and for what? This horrid desk job?
She had enough, she was going to walk up to that pompous douche of a boss and tell him! Tell him what really? Horath asked herself. Tell him that he can stick it up his.. There he was! Talking to some higher up. Horath set her sights, got up from her desk and aimed straight for old, haggard husk of a Borrean. She weaved her way through the labyrinth of desks and workers, getting faster with each step. She was barreling towards the old man, who was oblivious to the young women that now had picked up enough speed to send him through the next wall should they colide. And it looked like they would any second!
"Manager Gazeh! Gazeh, please just a second!" Horath shouted at him. She didn't really need to. The office was never noisy, more of a gloomy silence really. But it felt good! It felt right! She would tell the old fart what she allways wanted to! "Ah! Horath! Horath Jagaz, just the buisy little worker I was looking for!" The old man waved at her awkwardly. Buisy? Little? Worker? Oooh! I am going to show you buisy! Horath thought to herself. She was stealing her nerves for upcomming battle of words. Before she could get a word out, Gazeh put his hand on her shoulder, he did so whenever something was to be discussed semi-quietly, like sending an intern to get a government funded round of coffee for everyone. "Miss Jagaz." He never called her that. Borreans were rather informal people, sticking to first names as a standard. "I have found myself in quite the predicament you see." He, spoke just loud enough that Horath could hear him. "Manager Gazeh, I... I wanted to talk to you about something.." Horath mumbled, interupting her boss. Great Horath, reeeeal great. Showing him buisy, yeah? She scolded herself. "Ah, yes. I can imagine what it is. You are bored, its a slow day... The coffee machine is broken, I already noticed. I sent for a service worker already. I'm getting side tracked here. Please, lets got to my office." The coffee machine? Broken? What in the- before she could finish her thought the old man waved her along into his office. A secluded room with nice furniture. What was spoken about in the next ten minutes was heard by no-one except Horath and Gazeh himself.
When Horath left the office building not even ten minutes later she was happy, confused and anxious. All in one! She felt like she was 16 again. Gazeh had told her about an operation that had been going on for 7 years. An aid program on Galah 2, a distant system that had been shaken by what was essentially a proxy war. Overthrowing government after government, installing dictators, sponsoring freedom fighters. All of it. What was left behind, was a backwater planet, shaken by civil war, with different factions trying to save what was left of the once blooming society. The aid program had helped greatly but was being targeted by ever more fierce attacks over the last two years. The order was given to evacuate for now and return with stronger forces and help from the Federation. Now, after a lot of pleading with the Federation help was sanctioned and a first landing troop was to be assembled. They would make contact with the civilians and whatever local government could be found to arrange for the best aid possible. Horath was to be the advisor of a otherwise more conflict hardened group. What Gazeh had "forgot" to tell her was that only two of the other Federation members had send help. One was the Jerelian Coaliton, who had send a part of their fleet to aid with transport and deployment once the mission was underway. That however left the spot of a ground crew vacant. The only ones willing, even volunteering for it were the humans. The Humans had joined the Federation shortly after the Borreans did. A small species, home to a planet on the outer fringes of space. They weren't especially memorable. Big squishy creatures with skin in varying colors. The one thing that was memorable about them was that they got themselves involved in almost every conflict in the history of the Federation. What they exactly did? Nobody knew. There were rumours of ghastly beasts stalking the battlefields. Other said they were like ghosts, hiden in plain sight, waiting to strike. But most thought of humans as unimportant, not very strong or powerful beings from some Planet that was rated "not safe to land on". Horath knew only that they had brought the Galaxy coffee. And she didn't like that. Not one bit.
When Horath reported to the space haven orbiting Borralis 1 she was quite angry. The ship she was scheduled to take had left without her! Damn stupid f..., what a bunch of sh..., I'm going to..! She rambled on and on in her head as the man in front was calling her name over and over. "Miss Horath? Miss? Miss! Horath! Borralis 1 to Horath!" He almost was shouting at her, waiting for a reaction. "Huh? Oh yeah... Sorry!" She had finally snapped out of it. "What was it you were saying?" She was quite embarassed. Her otherwise pale pinkish face had turned red. Great, you probably look like a damn dying sun... she thought to herself. "No problem Miss." The man behind the desk said. He looked like the typical, allways friendly service worker face. "Again, we are really sorry for the mishap. But there might be another flight you can catch. We made some calls since its BCAP buisness and all. Aaaand, there is a cargo flight coming in from earth. They will make a stop here pick you up. Of course, free of charge for you." The man looked quite Happy with himself, as if he accomplished all that by himself. "Great! Thank you! Thats wonderful!" Horath spurted out at him. The day might just be saveable. "Where do I need to go for Boarding?" She asked. The man looked at the screen in front of him and back up at her. "That would be Cargo Dock 7."
Cargo Docks. The worst place for a civilian worker to be. Thats at least what Horaths father used to say. He was a big burly man and a cargo worker on Borralis 1. Horath now understood what he meant. It wasn't that it was dangerous, it was just that it was so damn buisy! Cargo haulers around every corner, moving large pieces of equipment to and from cargo holds. Sweaty workers buzzling in between each other, from and to work, like in a trance. They all knew their way and flowed into each other like a River. But Horath? She was like a piece of wood dumped into a stream. She was still swimming up on the water, but she was victim to its every movement. After what felt like an hour in an endless stream of workers, cargo and machinery, set to the sound of hundreds of machines moving and the choir of a thousand voices shouting and laughing, she had made it. Dock 7. A small and old Dock. Not quite large enough for the newer Vessels, but older Ships could still dock without issue. The crew onboard was exclusively human Horath had been told. Great, a bunch of weirdo coffee drinkers. And i will spend an entire three days with them in transit. Horath was not happy anymore. The final break from the dreaded office job was slowly turning into a really bad nightmare. Like the ones where you are naked at work or where Manager Gazeh turns into your Boyfriend from Academy! Horath shuddered at the thought.
Then, something cought her attention. A ship came out of warp. A huge, metal tube. A weird tower sat in the middle of the long body. Large fins were mounted towards the rear where a giant engine nozzle could be seen. The ship was covered in numerous turrets. Small and vaguely disk shaped, they covered parts of the ship like tumors. It's.. It's... GOING TO CRASH! Horath started to hurdle towards the next airlock. And the ship really was too close to the station. Coming in way too fast and aiming straight at Cargo Dock 7. At the last second a number of steering thrusters lit up towards the front of the ship. Turning it sideways, still racing towards the dock! Another set of thrusters turned on at the rear, slowing the ship down in moments and giding it safely towards the docking port. Meanwhile, Horath had tripped, fallen over her own feet and landed on her stomach, not even two meters from the airlock. Her eyes were watering, her nostrils bleeding. Worst. Day. EVER. The inside airlock of the docking port opened as an automated voice proclaimed, "Docking; complete. Please stand back." The voice fizzled out and the satisfying sound of the airlock being opened could be heard. Horath had managed to sit up again, still crying and barrely seing a thing she sat in the middle of the long transfer room. She would have a word with that Captain! A figure, Horath barrely could make out the contures of the person in front of her, was coming towards her. "Ey! So sorry for spooking you like that! The captains a bit crazy sometimes. You alright?" That was the last thing Horath heard before passing out. It was just too much for her. First the ship fiasco, then the horrible cargo decks, almost getting crushed by a giant metal tube that definitely was no cargo ship and now this. She really was missing her office desk...
-- Horath, Personal Notes: -- Date: 24 - 15 - 2301 - 15:12 "Doctor Cat"
When Horath woke up, she found herself in a medical room. For a second she thought she was back on Borralis, safe somewhere in the capital district. She could call her mom to come pick her up and take the day o... No. This was Not Borralis. That thing in the Corner was nothing she had ever seen before. A big ball of fur, curled up on a chair on the other side of the room. The room, that was right! This was no borrean medical facility! It all looked... weird. Older, but not outdated. Way more "function over form" than anything. What was that thing doing there? Was it a human? A pet? What would a pet be doing in what no doubt was a medical area? The thing began to move. Its orange fur was sprinkled with white bits here and there, its eyes were a hazardous green. The thing stretched, first its front, then its hind legs. It jumped from the chair. Well, jumped was the wrong word. It elegantly dropped and just so happened to land perfectly, like it had no interest in properly standing up from the furniture and didn't need to try anyways. It sat down in front of the chair it just had left and fixated Horath. It open its mouth and...! Yawned? Cried? Whatever it was, it sounded like a squeal. Horath couldn't understand a word of what the weird Alien was saying. Alien... Damn I sound like dad. I mean. It is an alien right? No no, Horath, be open minded! Other people might just look different then you. Horath reminded herself and was now ready to talk to her fluffy little savior.
Then she was shocked again. A voice. Deep but melodic. Feminine, no doubt and yet... It sounded rough. Horath was reminded of her grandmother, a big women with a even bigger voice, that could fill an entire room! "So~, our clumsy guest awoke? Lets see then!" The voice said. There was no way the little creature in front of her could sound like that! Right? It didn't even move its mouth! But then, the curtain seperating a different part of the room from the one with Horath, the weird creature, the bed and not much else in it, was split by a hand. A Hand followed by a face. Attached to the face was a neck and... You get the picture. Through the curtain stepped a women. She was at least a head taller than Horath and not only that. Horath had allways prided herself in finding the time to work out and stay fit despite working long hours. And she looked the part, among her people, she was sometimes called athletic, even muscular. But this women? A different league. She wasnt only taller than Horath, she was twice as wide, her arms the size of Horaths legs and her legs? Even bigger! "Now, I see you already met Doctor Cuddles." The women exposed her teath. Large, white teath. Horaths flight of fight instinct was kicking in. The women scared her. And did she call the tiny creature a doctor? She noticed something about the womens teath. The front ones were not too different from her own, large and wide, flat on the bottom, ideal to bite a piece of a fruit or to use as a tool when you need to. But this women, she had a different kind of teath as well, they were more sharply pointed. Thicker and rounder. And pointy. The teath of a predator! And the women... Was she...? Would she...?
The tiny fur clad creature had wandered over to the women. It pressed itself against her legs and began to make the weirdest sounds. A rumble, but much more silent and soothing. The women looked down and now fixated the thing at her feet. "Oh you!" She exclaimed and reached for the small animal. Horath gasped. Surely the women would eat the animal! A crew member, and a medical professional at that! She jumped from the bed and had already taken two steps towards the giantes and her prey when she noticed two things. First thing, the women had cradled the little animal into her arms, running through its fur and talking to it in the same way Horaths Mom would talk to a baby whenever the two were out and about together and her mother just couldn't hep herself. Second thing, the woman was way taller and way more intimidating up close. Her arms were covered in scars, the red-pink-ish muscle that surrounded her mouth and was so more colored than Horaths lips had lost a chunk in a way that didn't look like it was meant to.
The women snapped out of her cuddling the animal and ruffling its fur. The little thing had up until now closed its eyes and had rumbled even louder. Now that the women had diverted her attention it looked up at her, with open eyes and let out another squeal and even started pawing at the womens face, as if it were to say "Give me attention! Now!" What is even going on here? Horath wondered. "Really sorry, you must be quite confused." As the large woman spoke she sat down the animal, much to its dismay as it promptly let out another squeal and looked back and forth between the two women in the room. "Yeah, uhm... Who and... What... Where even?" Horath began to stutter. "Ah, yeah, welcome aboard UTSF Montana!" As she spoke, she suddenly struck a pose that looked awkwardly stiff and like something Horath remembered from a history lecture. "I'm Head Medical Officer Christiana Janova, pleased to meet you!" Christiana exposed her teath again and stuck her hand out in what Horath assumed to be a greating. "I uhm... I'm Horath. Researcher with the BCAP and..." as she spoke, she extended her own hand in greating. Big mistake. Christiana grabbed Horaths hand and shook it up and down, almost lifting the much smaller Borrean of her feet. "Horace! What a great name! So nice to meet you! Come on, I'm gonna introduce you to the crew! The captain wants to say sorry for scaring you to death too, ha!" Christiana was like exchanged, before the greating she was way more relaxed, laid back, but now? A different side was coming through, an extrovert, joyfull women. Christiana quickly realised she was probably scaring the little pale women in front of her. "Ahem... Sorry. Follow me, new crew member, I'll show you around the ship and will try to answer any questions." The women quickly calmed herself but seemed quite embarassed. "No worries! I would love meet the crew... Uhm, just lead the way!" Now it was Horaths turn to be embarassed. "Just one thing, my Name isn't Horace its actually.." but before she could finish, Christiana had taken her by the hand and dragged her out of the room and into a hallway already.
-- Horath, Personal Notes: -- Date: 24 - 15 - 2301 - 22:47 "Humans and Monkeys"
--Whoops, it looks like I got too tired and will continue with a part two! Sorry!
--Greatings from Doctor Cat, any spelling mistakes found were made by him. (The ones you don't find too!)
submitted by tHATbOIiNfIRSTrOW to humansarespaceorcs [link] [comments]


2021.01.27 08:58 The-Knyght Kirigakure: A History (or An Excessive Amount of Information About Kirigakure)

I didn't originally intend to make this, but I was writing some notes about Kiri and that ballooned into this massive... thing below.
The following is something like a 'reference guide' for Kirigakure based on the original manga and its supplementary guidebooks which I have tried to organise into something relatively easy to follow. It doesn't include absolutely everything but I'm certain it contains everything of note.
You'll notice that there are a lot of hyperlinks. These will take you to the relevant manga panels (and some guidebook passages) rather than whole manga pages I usually do, mainly because it made it easier to write about. And I have included citations for the relevant chapters or databooks/fanbooks which I refer to as DB1, DB2, FB1 etc. At the bottom of the post, there's a section containing passages from them relating to Kirigakure to directly provide some of my sources and additional information.
FYI, whatever there is in the anime, novels, or sequel about Kirigakure, it isn't here and I have no intention of adding or changing anything based on them. 'Nuff said.
Ultimately, I hope that this turns out to be a handy tool for writers and readers to stay on top the mountain of information we're given about Kirigakure.
Enjoy!
Hidden Village & Country
Mizukage


Seven Ninja Swordsmen of the Mist


Other Characters
Databook & Fanbook Quotes
The tragic fate of those who have special abilities…
Haku’s clan had extraordinary powers; due to that, they were manipulated by the powerful men of the Land of Water, who used them as weapons of war. The fighting reached such a point that the nation was ruined and the clans bearing Kekkei Genkai were humiliated and accused of bringing death and destruction. To protect themselves, they started hiding their lineage and lived afraid of being found out.
Haku was almost killed by his father due to his lineage…
Kekkei Genkai (DB1, p.161)
Land of Water: An island country floating on the ocean, with a very unique culture. Completely surrounded by water, with most of the land occupied by steep mountains. The smaller islands around the main island each have their own traditions, and many citizens stubbornly insist on preserving these.
The Five Great Shinobi Countries (FB1, p. 12)
Hidden Mist Village
A mysterious hidden village entirely covered in fog…
Under the leadership of the Mizukage, the Hidden Mist Village ninja live by strict rules. Last year a group of shinobi staged a revolt, but it ended in failure.
[Mist] shinobi are skilled a jutsu using mist.
A mist-covered stronghold deep in the mountains.
Hidden Shinobi Villages (FB1, p. 16)
Hunters Squads are a special unit of the Hidden Mist’s Anbu. Also called the “corpse disposal unit,” they possess medical and assassin training.
Shinobi Society in other villages (FB1, p. 52)
The name thundering through even foreign countries — The Seven Shinobi Swordsmen of the Mist
Long ago, the horrible “kill another student” graduation exam was carried out, and from this the Hidden Mist Village was given the nickname “Bloody Mist Village” …
In that village, the seven shinobi who excelled in battle ability and produced the highest battle results were named the “Seven Shinobi Swordsmen” because they wielded swords, but because of aspirations to have great power, Kisame was the first of many to become missing-nins. Their current whereabouts are unknown.
The Seven’s fame is known well in other countries, for the large swords they carry.
Zabuza, the missing-nin who fought with Kakashi long ago, is also originally of the Seven.
Konoha One Hundred Leaves Collection #17 (DB2, p. 151)
The Village of the Hidden Mist's Dark Age...!
In the times of the Hidden Mist village before the Godaime took office, it was referred to as the "Village of the Bloody Mist". Due to its harsh codes, its control was remembered as a nightmare among shinobi from other villages, not to even mention shinobi of the Mist.
(arrow pointing to Zabuza): There were shinobi like Momochi Zabuza who rebelled against the state of the village and attempted a coup d'etat
(arrows pointing to Kisame and Madara): Those who controlled the Yondaime Mizukage from behind, the figures of Akatsuki....
History of Darkness in the Shinobi World (FB2, p. 119)
Top Secret File #3: Akatsuki originated in Kirigakure?!
During the period it was known as the “Village of Bloody Mist”, Kirigakure cut all foreign ties and the Fourth Mizukage, Yagura, ruled with an iron fist!! But there are those who now suspect that Yagura was being controlled by Akatsuki. It is quite possible that the geographic location of Kiri, being surrounded by water and easily cut off from the outside world, was used against itself!!
In the “Village of Bloody Mist”, students were forced to partake in a graduation exam where they would kill one another. Was Kirigakure truly going to such lengths to further its own power!?
Ninja World Apocalypse (FB2, p. 126)
The Kages and Traditions Handed Down In Each Village - Kirigakure
The village is set up in a mountainous region, making it impregnable. Therefore, the internal conditions are hidden. Although it took on an isolation policy during the Fourth Mizukage's era and was called the "Bloody Mist Village", it now aims at being an "open village"...
Honouring "inheritance", the successive generations of masters of the ninja swords are inherited.
Fifth Mizukage Fourth Mizukage Third Mizukage Second Mizukage First Mizukage
The oldest of each generation sits at the village politics top as the "Eldest". Because the strongest is made Mizukage, there are cases where young people become Kage, such as the Fourth, Yagura.
Konoha One Hundred Leaves Collection #58 (DB4, p. 137)
Village Hidden In the Mist
Once closed and unsociable, it is now aiming to become a peaceful village under the guidance of the eldest and the Mizukage.
Character Detail List (DB4, p. 207)
submitted by The-Knyght to NarutoFanfiction [link] [comments]


2016.02.10 18:50 not4fapping Need Help with constant adobe bridge crashing

My bridge keeps crashing at least 10-15 times a day and is borderline unusable. If anyone can decipher the crash report below that would be amazing.
EDIT - I HAVE THE FULL CRASH REPORT, not sure were to post for it to be read.
Process: Adobe Bridge CC [1150] Path: /Applications/Adobe Bridge CC/Adobe Bridge CC.app/Contents/MacOS/Adobe Bridge CC Identifier: com.adobe.bridge6 Version: 6.2.0.179 (6.2.0.179) Code Type: X86-64 (Native) Parent Process: ??? [1] Responsible: Adobe Bridge CC [1150] User ID: 501
Date/Time: 2016-02-10 12:40:11.261 -0500 OS Version: Mac OS X 10.11.2 (15C50) Report Version: 11 Anonymous UUID: F993BF90-EB56-E280-2B11-9F5A4D2CD7D5
Time Awake Since Boot: 3700 seconds
System Integrity Protection: enabled
Crashed Thread: 0 Dispatch queue: com.apple.main-thread
Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0x000007f8a3129838 Exception Note: EXC_CORPSE_NOTIFY
VM Regions Near 0x7f8a3129838: MALLOC_LARGE 00000002660cf000-00000002662cd000 [ 2040K] rw-/rwx SM=PRV STACK GUARD 0000700000000000-0000700000001000 [ 4K] ---/rwx SM=NUL stack guard for thread 31
Global Trace Buffer (reverse chronological seconds): 2.089729 AppleJPEG 0x00007fff96c18a11 [0x7f8a23463000] Releasing session 2.090133 AppleJPEG 0x00007fff96c1805e [0x7f8a23463000] Created session 2.091199 AppleJPEG 0x00007fff96c18a11 [0x7f8a1431c000] Releasing session 2.091679 AppleJPEG 0x00007fff96c1805e [0x7f8a1431c000] Created session 2.293293 AppleJPEG 0x00007fff96c18a11 [0x7f8a142f4800] Releasing session 2.293823 AppleJPEG 0x00007fff96c1805e [0x7f8a142f4800] Created session 2.310433 AppleJPEG 0x00007fff96c18a11 [0x7f8a227cd000] Releasing session 2.310890 AppleJPEG 0x00007fff96c1805e [0x7f8a227cd000] Created session 2.563865 AppleJPEG 0x00007fff96c18a11 [0x7f8a25add000] Releasing session 2.614752 AppleJPEG 0x00007fff96c1805e [0x7f8a25add000] Created session 2.617358 AppleJPEG 0x00007fff96c18a11 [0x7f8a24903000] Releasing session 2.695303 AppleJPEG 0x00007fff96c1805e [0x7f8a24903000] Created session 8.498330 AppleJPEG 0x00007fff96c18a11 [0x7f8a2e412000] Releasing session 8.499488 AppleJPEG 0x00007fff96c1b11c [0x7f8a2e412000] Decoding completed without errors 8.500061 AppleJPEG 0x00007fff96c190fc [0x7f8a2e412000] Options: 256x171 [FFFFFFFF,FFFFFFFF] 0001D060 8.500061 AppleJPEG 0x00007fff96c18fae [0x7f8a2e412000] Decoding: C0 0x010000AB 0x0020354A 0x11111100 0x00000000 22793 8.500346 AppleJPEG 0x00007fff96c1805e [0x7f8a2e412000] Created session 8.507135 AppleJPEG 0x00007fff96c18a11 [0x7f8a2e062800] Releasing session 8.508089 AppleJPEG 0x00007fff96c1b11c [0x7f8a2e062800] Decoding completed without errors 8.508523 AppleJPEG 0x00007fff96c190fc [0x7f8a2e062800] Options: 256x171 [FFFFFFFF,FFFFFFFF] 0001D060 8.508523 AppleJPEG 0x00007fff96c18fae [0x7f8a2e062800] Decoding: C0 0x010000AB 0x0020354A 0x11111100 0x00000000 23156 8.508890 AppleJPEG 0x00007fff96c1805e [0x7f8a2e062800] Created session 8.575621 AppleJPEG 0x00007fff96c18a11 [0x7f8a14457000] Releasing session 8.577277 AppleJPEG 0x00007fff96c1b11c [0x7f8a14457000] Decoding completed without errors 8.577277 AppleJPEG 0x00007fff96c190fc [0x7f8a14457000] Options: 256x171 [FFFFFFFF,FFFFFFFF] 0001D060 8.577277 AppleJPEG 0x00007fff96c18fae [0x7f8a14457000] Decoding: C0 0x010000AB 0x0020354A 0x11111100 0x00000000 22793 8.589462 AppleJPEG 0x00007fff96c1805e [0x7f8a14457000] Created session 8.597968 AppleJPEG 0x00007fff96c18a11 [0x7f8a14c86000] Releasing session 8.601323 AppleJPEG 0x00007fff96c1b11c [0x7f8a14c86000] Decoding completed without errors 8.601451 AppleJPEG 0x00007fff96c190fc [0x7f8a14c86000] Options: 256x171 [FFFFFFFF,FFFFFFFF] 0001D060 8.601451 AppleJPEG 0x00007fff96c18fae [0x7f8a14c86000] Decoding: C0 0x010000AB 0x0020354A 0x11111100 0x00000000 23156 8.601652 AppleJPEG 0x00007fff96c1805e [0x7f8a14c86000] Created session 8.627631 AppleJPEG 0x00007fff96c18a11 [0x7f8a260f3400] Releasing session 8.629080 AppleJPEG 0x00007fff96c1b11c [0x7f8a260f3400] Decoding completed without errors 8.629934 AppleJPEG 0x00007fff96c190fc [0x7f8a260f3400] Options: 256x171 [FFFFFFFF,FFFFFFFF] 0001D060 8.629934 AppleJPEG 0x00007fff96c18fae [0x7f8a260f3400] Decoding: C0 0x010000AB 0x0020354A 0x11111100 0x00000000 23156 8.629934 AppleJPEG 0x00007fff96c1805e [0x7f8a260f3400] Created session 8.698416 AppleJPEG 0x00007fff96c18a11 [0x7f8a260f3400] Releasing session 8.700441 AppleJPEG 0x00007fff96c1b11c [0x7f8a260f3400] Decoding completed without errors 8.702272 AppleJPEG 0x00007fff96c190fc [0x7f8a260f3400] Options: 256x171 [FFFFFFFF,FFFFFFFF] 0001D060
Thread 0 Crashed:: Dispatch queue: com.apple.main-thread 0 libobjc.A.dylib 0x00007fff8f075103 objcrelease + 35 1 libobjc.A.dylib 0x00007fff8f073b3b (anonymous namespace)::AutoreleasePoolPage::pop(void*) + 477 2 com.apple.QuartzCore 0x00007fff8ee6e927 CA::Transaction::observer_callback(CFRunLoopObserver, unsigned long, void) + 87 3 com.apple.CoreFoundation 0x00007fff97a50e37 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION_ + 23 4 com.apple.CoreFoundation 0x00007fff97a50da7 __CFRunLoopDoObservers + 391 5 com.apple.CoreFoundation 0x00007fff97a42a3a __CFRunLoopRun + 1178 6 com.apple.CoreFoundation 0x00007fff97a42338 CFRunLoopRunSpecific + 296 7 com.apple.HIToolbox 0x00007fff9de66935 RunCurrentEventLoopInMode + 235 8 com.apple.HIToolbox 0x00007fff9de6676f ReceiveNextEventCommon + 432 9 com.apple.HIToolbox 0x00007fff9de665af _BlockUntilNextEventMatchingListInModeWithFilter + 71 10 com.apple.AppKit 0x00007fffa15910ee _DPSNextEvent + 1067 11 com.apple.AppKit 0x00007fffa195d943 -[NSApplication _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 454 12 com.apple.AppKit 0x00007fffa1586fc8 -[NSApplication run] + 682 13 com.adobe.bridge6 0x0000000102bec217 0x1027d8000 + 4276759 14 com.adobe.bridge6 0x0000000102be5119 0x1027d8000 + 4247833 15 com.adobe.bridge6 0x0000000102be51ed 0x1027d8000 + 4248045 16 com.adobe.bridge6 0x0000000102cc5a80 0x1027d8000 + 5167744 17 com.adobe.bridge6 0x0000000102cc6205 0x1027d8000 + 5169669 18 libdyld.dylib 0x00007fffa07ea5ad start + 1
Thread 1:: Dispatch queue: com.apple.libdispatch-manager 0 libsystem_kernel.dylib 0x00007fff8dedfff6 kevent_qos + 10 1 libdispatch.dylib 0x00007fff96b37099 _dispatch_mgr_invoke + 216 2 libdispatch.dylib 0x00007fff96b36d01 _dispatch_mgr_thread + 52
Thread 2: 0 libsystem_kernel.dylib 0x00007fff8dedf206 __semwait_signal + 10 1 libsystem_c.dylib 0x00007fff98ea7d17 nanosleep + 199 2 com.adobe.bridge6 0x0000000103104948 0x1027d8000 + 9619784 3 com.adobe.bridge6 0x00000001030e860c 0x1027d8000 + 9504268 4 com.adobe.bridge6 0x00000001031044e2 0x1027d8000 + 9618658 5 libsystem_pthread.dylib 0x00007fff95077c13 _pthread_body + 131 6 libsystem_pthread.dylib 0x00007fff95077b90 _pthread_start + 168 7 libsystem_pthread.dylib 0x00007fff95075375 thread_start + 13
Thread 3:: cr_scratch 0 libsystem_kernel.dylib 0x00007fff8dedeeb2 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff95078150 _pthread_cond_wait + 767 2 com.adobe.CameraRaw 0x0000000110a5c77b 0x1101c7000 + 9000827 3 com.adobe.CameraRaw 0x00000001109e884b 0x1101c7000 + 8525899 4 com.adobe.CameraRaw 0x00000001107763f1 0x1101c7000 + 5960689 5 libsystem_pthread.dylib 0x00007fff95077c13 _pthread_body + 131 6 libsystem_pthread.dylib 0x00007fff95077b90 _pthread_start + 168 7 libsystem_pthread.dylib 0x00007fff95075375 thread_start + 13
Thread 4: 0 libsystem_kernel.dylib 0x00007fff8dedeeb2 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff95078150 _pthread_cond_wait + 767 2 com.adobe.bridge6 0x0000000102e963f6 0x1027d8000 + 7070710 3 com.adobe.bridge6 0x0000000102e994d5 0x1027d8000 + 7083221 4 com.adobe.bridge6 0x0000000102e9937b 0x1027d8000 + 7082875 5 com.adobe.bridge6 0x0000000102cd4569 0x1027d8000 + 5227881 6 com.apple.CoreServices.CarbonCore 0x00007fff9d47da12 PrivateMPEntryPoint + 58 7 libsystem_pthread.dylib 0x00007fff95077c13 _pthread_body + 131 8 libsystem_pthread.dylib 0x00007fff95077b90 _pthread_start + 168 9 libsystem_pthread.dylib 0x00007fff95075375 thread_start + 13
Thread 5: 0 libsystem_kernel.dylib 0x00007fff8dedeeb2 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff95078150 _pthread_cond_wait + 767 2 com.adobe.bridge6 0x0000000102e963f6 0x1027d8000 + 7070710 3 com.adobe.bridge6 0x0000000102e994d5 0x1027d8000 + 7083221 4 com.adobe.bridge6 0x0000000102e9937b 0x1027d8000 + 7082875 5 com.adobe.bridge6 0x0000000102cd4569 0x1027d8000 + 5227881 6 com.apple.CoreServices.CarbonCore 0x00007fff9d47da12 PrivateMPEntryPoint + 58 7 libsystem_pthread.dylib 0x00007fff95077c13 _pthread_body + 131 8 libsystem_pthread.dylib 0x00007fff95077b90 _pthread_start + 168 9 libsystem_pthread.dylib 0x00007fff95075375 thread_start + 13
Thread 6: 0 libsystem_kernel.dylib 0x00007fff8dedeeb2 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff95078150 _pthread_cond_wait + 767 2 com.adobe.bridge6 0x0000000102e963f6 0x1027d8000 + 7070710 3 com.adobe.bridge6 0x0000000102eda20e 0x1027d8000 + 7348750 4 com.adobe.bridge6 0x0000000102cd4569 0x1027d8000 + 5227881 5 com.apple.CoreServices.CarbonCore 0x00007fff9d47da12 PrivateMPEntryPoint + 58 6 libsystem_pthread.dylib 0x00007fff95077c13 _pthread_body + 131 7 libsystem_pthread.dylib 0x00007fff95077b90 _pthread_start + 168 8 libsystem_pthread.dylib 0x00007fff95075375 thread_start + 13
Thread 7: 0 libsystem_kernel.dylib 0x00007fff8dedeeb2 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff95078150 _pthread_cond_wait + 767 2 com.adobe.bridge6 0x0000000102e963f6 0x1027d8000 + 7070710 3 com.adobe.bridge6 0x0000000102e8fe33 0x1027d8000 + 7044659 4 com.adobe.bridge6 0x0000000102e8fad0 0x1027d8000 + 7043792 5 com.adobe.bridge6 0x0000000102cd4569 0x1027d8000 + 5227881 6 com.apple.CoreServices.CarbonCore 0x00007fff9d47da12 PrivateMPEntryPoint + 58 7 libsystem_pthread.dylib 0x00007fff95077c13 _pthread_body + 131 8 libsystem_pthread.dylib 0x00007fff95077b90 _pthread_start + 168 9 libsystem_pthread.dylib 0x00007fff95075375 thread_start + 13
Thread 8: 0 libsystem_kernel.dylib 0x00007fff8dedeeb2 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff95078150 _pthread_cond_wait + 767 2 com.adobe.switchboard-3.0 0x0000000115a594e6 void boost::condition_variable_any::wait >(boost::unique_lock&) + 122 3 com.adobe.switchboard-3.0 0x0000000115a446db adobe::switchboard::ConnectionQueue::run() + 481 4 com.adobe.switchboard-3.0 0x0000000115a4e3af boost::_mfi::mf0::operator()(adobe::switchboard::ConnectionQueue) const + 125 5 com.adobe.switchboard-3.0 0x0000000115a4e454 void boost::_bi::list1> >::operator(), boost::_bi::list0>(boost::_bi::type, boost::_mfi::mf0&, boost::_bi::list0&, int) + 78 6 com.adobe.switchboard-3.0 0x0000000115a4e4b6 boost::_bi::bind_t, boost::_bi::list1> > >::operator()() + 92 7 com.adobe.switchboard-3.0 0x0000000115a4e4e1 boost::detail::thread_data, boost::_bi::list1> > > >::run() + 37 8 com.adobe.switchboard-3.0 0x00000001159a6e7f thread_proxy + 175 9 libsystem_pthread.dylib 0x00007fff95077c13 _pthread_body + 131 10 libsystem_pthread.dylib 0x00007fff95077b90 _pthread_start + 168 11 libsystem_pthread.dylib 0x00007fff95075375 thread_start + 13
Thread 9: 0 libsystem_kernel.dylib 0x00007fff8dedeeb2 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff95078150 _pthread_cond_wait + 767 2 com.adobe.switchboard-3.0 0x0000000115a1385e boost::condition_variable::wait(boost::unique_lock&) + 70 3 com.adobe.switchboard-3.0 0x00000001159e8b6d adobe::switchboard::Client::run() + 123 4 com.adobe.switchboard-3.0 0x00000001159f77a1 boost::_mfi::mf0::operator()(adobe::switchboard::Client) const + 125 5 com.adobe.switchboard-3.0 0x00000001159f77f6 void boost::_bi::list1> >::operator(), boost::_bi::list0>(boost::_bi::type, boost::_mfi::mf0&, boost::_bi::list0&, int) + 78 6 com.adobe.switchboard-3.0 0x00000001159f7858 boost::_bi::bind_t, boost::_bi::list1> > >::operator()() + 92 7 com.adobe.switchboard-3.0 0x00000001159f7883 boost::detail::thread_data, boost::_bi::list1> > > >::run() + 37 8 com.adobe.switchboard-3.0 0x00000001159a6e7f thread_proxy + 175 9 libsystem_pthread.dylib 0x00007fff95077c13 _pthread_body + 131 10 libsystem_pthread.dylib 0x00007fff95077b90 _pthread_start + 168 11 libsystem_pthread.dylib 0x00007fff95075375 thread_start + 13
Thread 10: 0 libsystem_kernel.dylib 0x00007fff8dedf0e6 __recvmsg + 10 1 com.adobe.switchboard-3.0 0x0000000115a10c17 boost::asio::detail::socket_ops::recv(int, iovec, unsigned long, int, boost::system::error_code&) + 135 2 com.adobe.switchboard-3.0 0x0000000115a10f94 unsigned long boost::asio::detail::reactive_socket_service >::receive(boost::asio::detail::reactive_socket_service >::implementation_type&, boost::asio::mutable_buffers_1 const&, int, boost::system::error_code&) + 738 3 com.adobe.switchboard-3.0 0x0000000115a11173 unsigned long boost::asio::stream_socket_service::receive(boost::asio::detail::reactive_socket_service >::implementation_type&, boost::asio::mutable_buffers_1 const&, int, boost::system::error_code&) + 75 4 com.adobe.switchboard-3.0 0x0000000115a111e0 unsigned long boost::asio::basic_stream_socket >::read_some(boost::asio::mutable_buffers_1 const&, boost::system::error_code&) + 86 5 com.adobe.switchboard-3.0 0x0000000115a12746 adobe::switchboard::Connection > >::runOne(boost::shared_ptr > > >&) + 106 6 com.adobe.switchboard-3.0 0x0000000115a12a73 adobe::switchboard::Connection > >::run() + 87 7 com.adobe.switchboard-3.0 0x00000001159f75e3 boost::_mfi::mf0 > > >::operator()(adobe::switchboard::Connection > >) const + 125 8 com.adobe.switchboard-3.0 0x00000001159f7638 void boost::_bi::list1 > >> >::operator() > > >, boost::_bi::list0>(boost::_bi::type, boost::_mfi::mf0 > > >&, boost::_bi::list0&, int) + 78 9 com.adobe.switchboard-3.0 0x00000001159f769a boost::_bi::bind_t > > >, boost::_bi::list1 > >> > >::operator()() + 92 10 com.adobe.switchboard-3.0 0x00000001159f76c5 boost::detail::thread_data > > >, boost::_bi::list1 > >*> > > >::run() + 37 11 com.adobe.switchboard-3.0 0x00000001159a6e7f thread_proxy + 175 12 libsystem_pthread.dylib 0x00007fff95077c13 _pthread_body + 131 13 libsystem_pthread.dylib 0x00007fff95077b90 _pthread_start + 168 14 libsystem_pthread.dylib 0x00007fff95075375 thread_start + 13
Thread 11: 0 libsystem_kernel.dylib 0x00007fff8dedf0e6 __recvmsg + 10 1 com.adobe.switchboard-3.0 0x0000000115a10c17 boost::asio::detail::socket_ops::recv(int, iovec, unsigned long, int, boost::system::error_code&) + 135 2 com.adobe.switchboard-3.0 0x0000000115a10f94 unsigned long boost::asio::detail::reactive_socket_service >::receive(boost::asio::detail::reactive_socket_service >::implementation_type&, boost::asio::mutable_buffers_1 const&, int, boost::system::error_code&) + 738 3 com.adobe.switchboard-3.0 0x0000000115a11173 unsigned long boost::asio::stream_socket_service::receive(boost::asio::detail::reactive_socket_service >::implementation_type&, boost::asio::mutable_buffers_1 const&, int, boost::system::error_code&) + 75 4 com.adobe.switchboard-3.0 0x0000000115a111e0 unsigned long boost::asio::basic_stream_socket >::read_some(boost::asio::mutable_buffers_1 const&, boost::system::error_code&) + 86 5 com.adobe.switchboard-3.0 0x0000000115a12746 adobe::switchboard::Connection > >::runOne(boost::shared_ptr > > >&) + 106 6 com.adobe.switchboard-3.0 0x0000000115a12a73 adobe::switchboard::Connection > >::run() + 87 7 com.adobe.switchboard-3.0 0x00000001159f75e3 boost::_mfi::mf0 > > >::operator()(adobe::switchboard::Connection > >) const + 125 8 com.adobe.switchboard-3.0 0x00000001159f7638 void boost::_bi::list1 > >> >::operator() > > >, boost::_bi::list0>(boost::_bi::type, boost::_mfi::mf0 > > >&, boost::_bi::list0&, int) + 78 9 com.adobe.switchboard-3.0 0x00000001159f769a boost::_bi::bind_t > > >, boost::_bi::list1 > >> > >::operator()() + 92 10 com.adobe.switchboard-3.0 0x00000001159f76c5 boost::detail::thread_data > > >, boost::_bi::list1 > >*> > > >::run() + 37 11 com.adobe.switchboard-3.0 0x00000001159a6e7f thread_proxy + 175 12 libsystem_pthread.dylib 0x00007fff95077c13 _pthread_body + 131 13 libsystem_pthread.dylib 0x00007fff95077b90 _pthread_start + 168 14 libsystem_pthread.dylib 0x00007fff95075375 thread_start + 13
Thread 12:: com.apple.NSEventThread 0 libsystem_kernel.dylib 0x00007fff8ded9386 mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff8ded87c7 mach_msg + 55 2 com.apple.CoreFoundation 0x00007fff97a43624 __CFRunLoopServiceMachPort + 212 3 com.apple.CoreFoundation 0x00007fff97a42aec __CFRunLoopRun + 1356 4 com.apple.CoreFoundation 0x00007fff97a42338 CFRunLoopRunSpecific + 296 5 com.apple.AppKit 0x00007fffa1650065 _NSEventThread + 149 6 libsystem_pthread.dylib 0x00007fff95077c13 _pthread_body + 131 7 libsystem_pthread.dylib 0x00007fff95077b90 _pthread_start + 168 8 libsystem_pthread.dylib 0x00007fff95075375 thread_start + 13
Thread 13:: MPSupport Worker 0 libsystem_kernel.dylib 0x00007fff8dedeeb2 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff95078150 _pthread_cond_wait + 767 2 MultiProcessor Support 0x000000011007f4bb boost::condition_variable::wait(boost::unique_lock&) + 59 3 MultiProcessor Support 0x000000011007f3bb ThreadFunctor::operator()() + 139 4 MultiProcessor Support 0x000000011009f6e2 boost::(anonymous namespace)::thread_proxy(void*) + 130 5 libsystem_pthread.dylib 0x00007fff95077c13 _pthread_body + 131 6 libsystem_pthread.dylib 0x00007fff95077b90 _pthread_start + 168 7 libsystem_pthread.dylib 0x00007fff95075375 thread_start + 13
Thread 14:: MPSupport Worker 0 libsystem_kernel.dylib 0x00007fff8dedeeb2 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff95078150 _pthread_cond_wait + 767 2 MultiProcessor Support 0x000000011007f4bb boost::condition_variable::wait(boost::unique_lock&) + 59 3 MultiProcessor Support 0x000000011007f3bb ThreadFunctor::operator()() + 139 4 MultiProcessor Support 0x000000011009f6e2 boost::(anonymous namespace)::thread_proxy(void*) + 130 5 libsystem_pthread.dylib 0x00007fff95077c13 _pthread_body + 131 6 libsystem_pthread.dylib 0x00007fff95077b90 _pthread_start + 168 7 libsystem_pthread.dylib 0x00007fff95075375 thread_start + 13
Thread 15:: MPSupport Worker 0 libsystem_kernel.dylib 0x00007fff8dedeeb2 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff95078150 _pthread_cond_wait + 767 2 MultiProcessor Support 0x000000011007f4bb boost::condition_variable::wait(boost::unique_lock&) + 59 3 MultiProcessor Support 0x000000011007f3bb ThreadFunctor::operator()() + 139 4 MultiProcessor Support 0x000000011009f6e2 boost::(anonymous namespace)::thread_proxy(void*) + 130 5 libsystem_pthread.dylib 0x00007fff95077c13 _pthread_body + 131 6 libsystem_pthread.dylib 0x00007fff95077b90 _pthread_start + 168 7 libsystem_pthread.dylib 0x00007fff95075375 thread_start + 13
Thread 16:: MPSupport Worker 0 libsystem_kernel.dylib 0x00007fff8dedeeb2 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff95078150 _pthread_cond_wait + 767 2 MultiProcessor Support 0x000000011007f4bb boost::condition_variable::wait(boost::unique_lock&) + 59 3 MultiProcessor Support 0x000000011007f3bb ThreadFunctor::operator()() + 139 4 MultiProcessor Support 0x000000011009f6e2 boost::(anonymous namespace)::thread_proxy(void*) + 130 5 libsystem_pthread.dylib 0x00007fff95077c13 _pthread_body + 131 6 libsystem_pthread.dylib 0x00007fff95077b90 _pthread_start + 168 7 libsystem_pthread.dylib 0x00007fff95075375 thread_start + 13
Thread 17:: MPSupport Worker 0 libsystem_kernel.dylib 0x00007fff8dedeeb2 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff95078150 _pthread_cond_wait + 767 2 MultiProcessor Support 0x000000011007f4bb boost::condition_variable::wait(boost::unique_lock&) + 59 3 MultiProcessor Support 0x000000011007f3bb ThreadFunctor::operator()() + 139 4 MultiProcessor Support 0x000000011009f6e2 boost::(anonymous namespace)::thread_proxy(void*) + 130 5 libsystem_pthread.dylib 0x00007fff95077c13 _pthread_body + 131 6 libsystem_pthread.dylib 0x00007fff95077b90 _pthread_start + 168 7 libsystem_pthread.dylib 0x00007fff95075375 thread_start + 13
Thread 18:: MPSupport Worker 0 libsystem_kernel.dylib 0x00007fff8dedeeb2 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff95078150 _pthread_cond_wait + 767 2 MultiProcessor Support 0x000000011007f4bb boost::condition_variable::wait(boost::unique_lock&) + 59 3 MultiProcessor Support 0x000000011007f3bb ThreadFunctor::operator()() + 139 4 MultiProcessor Support 0x000000011009f6e2 boost::(anonymous namespace)::thread_proxy(void*) + 130 5 libsystem_pthread.dylib 0x00007fff95077c13 _pthread_body + 131 6 libsystem_pthread.dylib 0x00007fff95077b90 _pthread_start + 168 7 libsystem_pthread.dylib 0x00007fff95075375 thread_start + 13
Thread 19:: MPSupport Worker 0 libsystem_kernel.dylib 0x00007fff8dedeeb2 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff95078150 _pthread_cond_wait + 767 2 MultiProcessor Support 0x000000011007f4bb boost::condition_variable::wait(boost::unique_lock&) + 59 3 MultiProcessor Support 0x000000011007f3bb ThreadFunctor::operator()() + 139 4 MultiProcessor Support 0x000000011009f6e2 boost::(anonymous namespace)::thread_proxy(void*) + 130 5 libsystem_pthread.dylib 0x00007fff95077c13 _pthread_body + 131 6 libsystem_pthread.dylib 0x00007fff95077b90 _pthread_start + 168 7 libsystem_pthread.dylib 0x00007fff95075375 thread_start + 13
Thread 20: 0 libsystem_kernel.dylib 0x00007fff8dedeeb2 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff95078150 _pthread_cond_wait + 767 2 com.adobe.headlights.LogSessionFramework 0x00000001328a51ac boost::condition_variable::do_wait_until(boost::unique_lock&, timespec const&) + 76 3 com.adobe.headlights.LogSessionFramework 0x00000001328a3a6e boost::this_thread::hiden::sleep_until(timespec const&) + 78 4 com.adobe.headlights.LogSessionFramework 0x000000013284c523 RealTimeProcessor::Sleep(int) + 243 5 com.adobe.headlights.LogSessionFramework 0x000000013284ab32 RealTimeProcessor::WorkerThread() + 2660 6 com.adobe.headlights.LogSessionFramework 0x00000001328a2aca boost::(anonymous namespace)::thread_proxy(void*) + 138 7 libsystem_pthread.dylib 0x00007fff95077c13 _pthread_body + 131 8 libsystem_pthread.dylib 0x00007fff95077b90 _pthread_start + 168 9 libsystem_pthread.dylib 0x00007fff95075375 thread_start + 13
Logical CPU: 4 Error Code: 0x00000004 Trap Number: 14
External Modification Summary: Calls made by other processes targeting this process: task_for_pid: 21 thread_create: 0 thread_set_state: 0 Calls made by this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by all processes on this machine: task_for_pid: 3888 thread_create: 0 thread_set_state: 0
VM Region Summary: ReadOnly portion of Libraries: Total=475.5M resident=0K(0%) swapped_out_or_unallocated=475.5M(100%) Writable regions: Total=4.8G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=4.8G(100%)
 VIRTUAL REGION 
REGION TYPE SIZE COUNT (non-coalesced) =========== ======= ======= Accelerate.framework 512K 5 Activity Tracing 2048K 2 CG backing stores 84.8M 4 CG image 540K 35 CG shared images 304K 9 CoreAnimation 28K 4 CoreUI image data 3144K 19 CoreUI image file 192K 4 Dispatch continuations 16.0M 2 Image IO 360K 35 Kernel Alloc Once 8K 3 MALLOC 4.5G 2775 MALLOC guard page 32K 7 MALLOC_LARGE (reserved) 1028K 2 reserved VM address space (unallocated) Memory Tag 242 12K 2 OpenCL 8K 2 OpenGL GLSL 256K 4 Process Corpse Info 2048K 2 STACK GUARD 56.3M 78 Stack 46.2M 78 VM_ALLOCATE 196.0M 71 __DATA 43.2M 347 __GLSLBUILTINS 2588K 2 __IMAGE 528K 2 __LINKEDIT 117.8M 72 __TEXT 357.7M 326 __UNICODE 552K 2 mapped file 124.4M 30 shared memory 16.4M 12 =========== ======= ======= TOTAL 5.5G 3907 TOTAL, minus reserved VM space 5.5G 3907
Model: iMac15,1, BootROM IM151.0207.B05, 4 processors, Intel Core i7, 4 GHz, 32 GB, SMC 2.23f11 Graphics: AMD Radeon R9 M295X, AMD Radeon R9 M295X, PCIe, 4096 MB Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x85F7, 0x483634314755363747313630304700000000 Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x85F7, 0x483634314755363747313630304700000000 Memory Module: BANK 0/DIMM1, 8 GB, DDR3, 1600 MHz, 0x85F7, 0x483634314755363747313630304700000000 Memory Module: BANK 1/DIMM1, 8 GB, DDR3, 1600 MHz, 0x85F7, 0x483634314755363747313630304700000000 AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x142), Broadcom BCM43xx 1.0 (7.21.94.136.1a1) Bluetooth: Version 4.4.3f4 16616, 3 services, 27 devices, 1 incoming serial ports Network Service: Ethernet, Ethernet, en0 Serial ATA Device: APPLE SSD SM1024G, 1 TB USB Device: USB 3.0 Bus USB Device: WorkflowCFR1 USB Device: Elite Pro Qx2 USB Device: G-DRIVE USB USB Device: BRCM20702 Hub USB Device: Bluetooth USB Host Controller USB Device: FaceTime HD Camera (Built-in) USB Device: Apple USB SuperDrive Thunderbolt Bus: iMac, Apple Inc., 26.1
submitted by not4fapping to creativecloud [link] [comments]


http://swiebodzin.info