texts
sequence | meta
dict | scores
sequence | avg_score
float64 0
0.51
| num_sents
int64 5
5
|
---|---|---|---|---|
[
"1. ",
"Field of the Invention\nThe present invention relates generally to the field of corn breeding. ",
"In particular, the invention relates to corn seed and plants of the variety designated CV146461, and derivatives and tissue cultures thereof.",
"\n2. ",
"Description of Related Art\nThe goal of field crop breeding is to combine various desirable traits in a single variety/hybrid. ",
"Such desirable traits include greater yield, better stalks, better roots, resistance to insecticides, herbicides, pests, and disease, tolerance to heat and drought, reduced time to crop maturity, better agronomic quality, higher nutritional value, and uniformity in germination times, stand establishment, growth rate, maturity, and fruit size.",
"\nBreeding techniques take advantage of a plant's method of pollination. ",
"There are two general methods of pollination: a plant self-pollinates if pollen from one flower is transferred to the same or another flower of the same plant. ",
"A plant cross-pollinates if pollen comes to it from a flower on a different plant.",
"\nCorn plants (Zea mays L.) can be bred by both self-pollination and cross-pollination. ",
"Both types of pollination involve the corn plant's flowers. ",
"Corn has separate male and female flowers on the same plant, located on the tassel and the ear, respectively. ",
"Natural pollination occurs in corn when wind blows pollen from the tassels to the silks that protrude from the tops of the ear shoot.",
"\nPlants that have been self-pollinated and selected for type over many generations become homozygous at almost all gene loci and produce a uniform population of true breeding progeny, a homozygous plant. ",
"A cross between two such homozygous plants produces a uniform population of hybrid plants that are heterozygous for many gene loci. ",
"Conversely, a cross of two plants each heterozygous at a number of loci produces a population of hybrid plants that differ genetically and are not uniform. ",
"The resulting non-uniformity makes performance unpredictable.",
"\nThe development of uniform corn plant hybrids requires the development of homozygous inbred plants, the crossing of these inbred plants, and the evaluation of the crosses. ",
"Pedigree breeding and recurrent selection are examples of breeding methods used to develop inbred plants from breeding populations. ",
"Those breeding methods combine the genetic backgrounds from two or more inbred plants or various other broad-based sources into breeding pools from which new inbred plants are developed by selfing and selection of desired phenotypes. ",
"The new inbreds are crossed with other inbred plants and the hybrids from these crosses are evaluated to determine which of those have commercial potential.",
"\nNorth American farmers plant tens of millions of acres of corn at the present time and there are extensive national and international commercial corn breeding programs. ",
"A continuing goal of these corn breeding programs is to develop corn hybrids that are based on stable inbred plants and have one or more desirable characteristics. ",
"To accomplish this goal, the corn breeder must select and develop superior inbred parental plants."
] | {
"pile_set_name": "USPTO Backgrounds"
} | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
] | 0 | 5 |
[
"Approximately 63,000 Yemeni children needlessly died of preventable causes in 2016 alone, according to the UN Children’s Fund (UNICEF). ",
"Many of these deaths were linked to malnutrition and treatable diseases. ",
"And 63,000 is a conservative estimate.",
"\n\nThis staggering statistic was reported in passing in January, but has rarely been mentioned since. ",
"It got little attention, while media outlets fixated laser-like on the crimes of US enemies, such as Syria, Russia, and Iran.",
"\n\nMeanwhile, in the months since, the US and Saudi Arabia have ramped up their war in Yemen, exacerbating the worst humanitarian crisis in the world — a catastrophe they created.",
"\n\nThe bombing and blockade the US and Saudi Arabia have unleashed on Yemen for more than two years get little attention in the media, yet alone in formal politics.",
"\n\n“Because of the crumbling health system, the conflict and economic crisis, we have gone back to 10 years ago. ",
"A decade has been lost in health gains,” Meritxell Relano, UNICEF representative in Yemen, told Reuters in January.",
"\n\nShe noted that 63 out of every 1,000 children born in Yemen were dying before their fifth birthday.",
"\n\nAnd things are only getting worse and worse, at an accelerating pace.",
"\n\nPBS reported on April 28, “In Yemen conflict, preventable diseases are a deadly side effect for children.” ",
"PBS did not mention the US-Saudi bombing or blockade. ",
"In fact, it did not even acknowledge the crucial role the US and European powers have played in fueling the conflict.",
"\n\nNor did PBS mention the 63,000 Yemeni children who lost their lives last year alone for no reason.",
"\n\nThe needless deaths of tens of thousands of Yemeni children should be one of the biggest scandals filling the headlines of all media outlets today — but it is the US that is guilty, not a Western enemy, and there is ergo little attention."
] | {
"pile_set_name": "OpenWebText2"
} | [
0.007352941176470588,
0,
0,
0,
0,
0,
0,
0,
0.02608695652173913,
0,
0,
0.009174311926605505,
0.018518518518518517,
0,
0.01,
0
] | 0.004446 | 5 |
[
"Q:\n\nResetting password, login error after database update\n\nI have built a password reset system in php/silex/twig that gets sends the user a password reset link with a unique token. ",
"After the user visits the confirm-new-password page the are prompted to enter a new password and confirm that password. ",
"I then have a function confirm_new_password that checks whether the passwords are the same, if they are update the database of that specific user and then delete the token. ",
"This all works fine as I can see in the database that the password changes.",
"\nHowever my problem is that when the user try's to login with their new password I get an error with my flash messages saying that the details are wrong when this is not the case. ",
"\nAs I am using the password_hash function I thought that it maybe to do with this however I am hashing the new password before its entered into the database and it is running the check using the password_verify function within my login function.",
"\nInitially I had read this to start of helping build the reset functionality including others to help with generating the random token and one time url with an expiry time.",
"\nAfterwards I read this which helped me to understand that I need to pass hidden inputs so that the post variables can be updated according which user is resetting their password. ",
"But could not seem to get passed the issue of the login after the password is reset.",
"\nHere is my function for the confirm-new-password\npublic function confirm_new_password($password1,$password2,$email,$token){\n\nif($password1 === $password2){\n $password1 = mysqli_real_escape_string($this->link,$password1);\n $password1 = password_hash($password1,PASSWORD_BCRYPT);\n $result = mysqli_query($this->link,\"update user set password='{$password1}' where email='{$email}' \");\n $result1 = mysqli_query($this->link,\"update user set token='' where email = '{$email}' \");\n return true;\n}else{\n return false;\n}\n\n}\n\nand here is the twig template;\n<form class=\"form-signin\" action=\"/confirm-new-password\" method=\"post\">\n<h2 class=\"form-heading\">Confirm New Password</h2>\n<label for=\"inputNewPass1\" class=\"sr-only\">New Password</label>\n<input type=\"password\" id=\"inputNewPass1\" class=\"form-control\" name=\"pass1\" placeholder=\"New Password\" required>\n<label for=\"inputNewPass2\" class=\"sr-only\">Re-Type New Password</label>\n<input type=\"password\" id=\"inputNewPass2\" class=\"form-control\" name=\"pass2\" placeholder=\"Re-type New Password\" required>\n{% if test is defined %}\n\n <input type=\"hidden\" name=\"email\" value=\"{{ test.email }}\">\n <input type=\"hidden\" name=\"token\" value=\"{{ test.token }}\">\n{% endif %}\n<div class=\"spamCheck\">\n <label for=\"inputPostcode\" class=sr-only\">Postcode</label>\n <input type=\"text\" id=\"inputPostcode\" class=\"form-control\" name=\"postcode\" placeholder=\"Leave this field blank\" />\n</div>\n<button class=\"btn btn-lg btn-default btn-block\" type=\"submit\">Reset Password</button>\n</form>\n\nand here is the post controller code;\n$app->post('/confirm-new-password', function(Request $request) use($app){\n$password1 = $app['request']->get('password1');\n$password2 = $app['request']->get('password2');\n$email = $app['request']->get('email');\n$token = $app['request']->get('token');\n\nif($app['auth']->confirm_new_password($password1,$password2,$email,$token)){\n return $app->redirect('/login');\n}else{\n return $app->redirect('/');\n}\n\n});\n\nI should mention that the login is working perfectly fine for other users, it just stops working when the password is reset. ",
"Below is the function for the login;\n public function login($email, $password) {\n $email = mysqli_real_escape_string($this->link, $email);\n\n $result = mysqli_query($this->link, \"select email, password,type from user where email = '{$email}'\");\n\n $row = mysqli_fetch_assoc($result);\n\n if(password_verify($password,$row['password'])){\n $user = array('email' => $row['email'], 'type' => $row['type']);\n $this->session->set('user', $user);\n return true;\n } else {\n return false;\n }\n\n }\n\nand here is the post controller method for the login;\n$app->post('/login', function(Request $request) use($app) {\n$email = $app['request']->get('email');\n$password = $app['request']->get('password');\n$postcode = $app['request']->get('postcode');\n$post = array($email,$password,$postcode);\n$app['auth']->spamBotCheck($post);\n$app['auth']->honeyPotCheck($postcode);\n\nif ($app['auth']->login($email, $password)) {\n $app['session']->getFlashBag()->add('success','Success! ",
"You are now logged in.');",
"\n return $app->redirect('/');\n} else {\n $app['session']->getFlashBag()->add('error','Error! ",
"There was an error with your login details, please try again');\n return $app->redirect('/login');\n}\n});\n\nI get the flash error, saying there was an error with my login details\n\nA:\n\nTurning my comment to an additional/complimentary answer.",
"\nBesides the other answer given; the way I see is that you're using name=\"pass1\" and name=\"pass2\" yet you're doing get('password1') and get('password2'). ",
"\n\nThey need to match.",
"\n\nAdd error reporting to the top of your file(s) which will help find errors.",
"\n<?",
"php \nerror_reporting(E_ALL);\nini_set('display_errors', 1);\n\n// Then the rest of your code\n\nSidenote: Displaying errors should only be done in staging, and never production.",
"\n\n"
] | {
"pile_set_name": "StackExchange"
} | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.0023234200743494425,
0.0019455252918287938,
0,
0,
0,
0,
0,
0,
0,
0,
0
] | 0.000213 | 5 |
[
"If you are new to the forums, you must register a free account before you can post. ",
"The forums have a separate registration from the rest of www.chronofhorse.com, so your log in information for one will not automatically work for the other. ",
"Disclaimer: The opinions expressed here are the views of the individual and do not necessarily reflect the views and opinions of The Chronicle of the Horse.",
"\n\nIn a serious discussion of preventing these mass attacks ...\nDeadly threat will not deter them since many of the attackers suicide or are killed.",
"\n\nSo what do the attackers want ? ",
"They want the publicity or attention. ",
"Otherwise they would die nameless and ignored.",
"\n\nLaws preventing the naming or showing of the attacker AND the attack would remove the cause.",
"\n\nBut... like gun control .. restrictions on the press run into constitutional problems. ",
"A potential solution is people doing the reverse of what the attackers desire. ",
"Forget the attacker, remember the victims.",
"\n\nQUOTE: \"And that, my friend, is your problem. ",
"This world has always been a war zone.\"",
"\n\nHowever you want to say the world is a war zone, it's not something I am comfortable exposing my students to when they are in a building to learn and be educated. ",
"There has got to be another solution than to say \"You are safe nowhere. ",
"We all need weapons. ",
"Including your teachers. ",
"Now, let me adjust my glock before we start our partner reading.\"",
"\n\nAs a teacher, I would not be willing to carry a gun, nor would I want any of my co-workers to carry a gun. ",
"There has got to be a better solution. ",
"Think seriously -- how many situations have you been in where you've wondered how someone was allowed to have a driver's license? ",
"Or your coworker has proved their idiocy for the 20th time... that day? ",
"You think arming all of these people, allowing them and encouraging them to walk around with a loaded gun is the best bet?",
"\n\nAt the end of the day, we aren't going to agree, but I would really like everyone to think carefully before suggesting that arming everyone in a school is a safe idea, or would benefit our students in the long run.",
"\n\nAdditionally, after some of the comments I've read in this thread and beyond today, I'd like to make the following announcement.",
"\n\nThe funeral for My Hope for the Future will be held today, 12/15/12, at 7:00. ",
"Also involved in the incident was My Belief in Humanity and Optimism. ",
"All are survived by A Prayer for Logical Thinking. ",
"Red thumbs can be given in lieu of flowers.",
"\n\nYou know, we hear all the time about that.",
"\nWho would want to get in such a coffin as a plane is and think it is a safe way to get from here to there in those metal contraptions?",
"\n\nWe really ought to demand all are sensible and JUST SAY NO to planes, quit flying, so there won't be any more such horrible deaths.",
"\n\nWe can get around just fine on the ground and even in ships, can't we?",
"\nWho needs planes anyway?",
"\nPlanes kill people!",
"\n\nThe statistics say for the miles flown, planes are one of the safest ways to get where you are going, but statistics lie, as we know, just look at the horror plane accidents are!",
"\n\nFrom the millions of guns out there in responsible hands, those few that are used to kill innocent people show us how deadly and horrible guns are.",
"\nClearly we need to ban guns.",
"\nObviously we are not to be trusted with guns, just as we should not trust planes to fly safely.",
"\nMake us safe, ban all that can be and at times is unsafe.",
"\n\nApparently not, since the \"success\" of the most common suicide technique is low.",
"\n\nJust be glad that youhave not been through suicides because I can tell you families are not comforted one bit that their loved one used hanging or drove their car into a tree (single car crash, not always attributed to suicide) and did not shoot themselves. ",
"A sixteen year old who hung himself because he did not want his mental illness to be a burden on his family, a man who spoke of what a relief it would be to just end things, but was always talked out of it, only to complete but only after killing his girlfriend and her dog (he hung himself). ",
"A guy who was just miserable, had his house checked for firearms by his PO, then while his wife was busy telling the PO that she did not know where he was, he OD'd on heroin in the back room. ",
"some who \"just want to send a message\" may not, the message \"I'm in pain here, could use a little help!\" ",
"gets through and they get relief. ",
"Those folks probably would not use a firearm. ",
"But for those who are truly committed and see no hope in the future, they'll get it done. ",
"And its awful. ",
"You can't lock them up forever\n\nKennesaw, GA has a mandatory gun law. ",
"All heads of household in that city are required to have a gun and ammunition. ",
"From the Kennesaw, GA city website:\n\nThe Gun Law\n\nKennesaw once again was in the news on May 1, 1982, when the city unanimously passed a law requiring \"every head of household to maintain a firearm together with ammunition.\" ",
"After passage of the law, the burglary rate in Kennesaw declined and even today, the City has the lowest crime rate in Cobb County.",
"\n\nIn Wyoming you can get a concealed weapon permit for like $30. ",
"Pretty much everybody carries a weapon for hunting or otherwise. ",
"Guess what their crime rate is.",
"\n\nAccording to neighborhood scout, the crime rate in Wyoming is not that much different than in Connecticut. ",
"The crime rate may be better, but you also have a population of about 500,000 in about 97,814 sq miles. ",
"In Connecticut, you have a population of 3,000,000 in about 5544 square miles.",
"\n\nSo, in Wyoming, you have a 1 in 510 chance of being a victim of a violent crime in a state where you have about 5.851 people for every sq mile. ",
"In Connecticut, your chances of being the victim of a violent crime are 1 in 355 and you have 739.1 people per square mile.",
"\n\nIt isn't about weapons, it is about population density - when do people get most annoyed with each other? ",
"On a stormy day when everyone is stuck in the house or on a nice day when people are making plans to go out, kids are playing outside, etc. ",
"Stick that many people together, tempers get heated and getting into an area where a lot of people will be at once is a lot easier.",
"\n\nKennesaw, GA has a mandatory gun law. ",
"All heads of household in that city are required to have a gun and ammunition. ",
"From the Kennesaw, GA city website:\n\nThe Gun Law\n\nKennesaw once again was in the news on May 1, 1982, when the city unanimously passed a law requiring \"every head of household to maintain a firearm together with ammunition.\" ",
"After passage of the law, the burglary rate in Kennesaw declined and even today, the City has the lowest crime rate in Cobb County.",
"\n\nTHIS! ",
"You can't logically bitch about a healthcare mandate then say we should all be required to own a gun. ",
"You can't logically argue that you want a gun to defend yourself from the crazies, then say you want to arm everyone...which, newsflash, includes the crazies! ",
"And you can't argue against stricter gun laws and then say that we should arm everyone BUT screen out the crazies. ",
"Surely all of this cognitive dissonance must be giving people headaches?",
"\n\nIf someone wants to kill people they are going to find a way to do it regardless. ",
"And its generally NOT the people who have their guns legally that are the problem.",
"\n\nVery true. ",
"Haven't gotten to the bottom of the thread, but a common theme in all of these shootings is mental illness. ",
"Until we have better mental health services, mentally unstable people may be more likely to commit these sorts of crimes. ",
"This act was reprehensible and unforgivable, but I wonder if this person and the others who committed similarly heinous crimes had gotten better mental health care, they may have been less likely to have murdered others. ",
"Of course the movie theater shooter was under mental health care at his university, so perhaps not always.",
"\n\nHow about quicker trials and sentencing for the ones who dont shoot themselves?",
"\n\nThe asshat who opened fire in the movie theater...I DONT CARE if he is mentally insane...how in the world is THAT a free pass?!?! ",
"Our justice system needs some modifiing to handle these types of cases...that guy that shot a bailf here in ATL, escaped jail, and ended up shooting and killing a cop...STILL hasnt been tried and this was at least 5 years ago!!",
"\n\nIt's not a free pass. ",
"Thirty years ago the seriously mentally ill were institutionalized. ",
"Institutions at the time weren't always the best places, and we have learned a lot about compassionate care in that time, but at least folks who were likely to do such things were under supervision. ",
"Deinstitutionalization was just as much about saving money as it was about \"compassion.\" ",
"You turn those folks over to communities and not provide financial support, they wind up homeless, families are overburdened and unable to provide adequate supervision, etc. ",
"It's still not a free pass tho. ",
"My beef is with the system. ",
"Yet we don't want to pay taxes to pay for services. ",
"So, this is what happens sometimes. ",
"I'm not saying it's a straight line from here to there, but it does contribute.",
"\n\nI'm not saying that disarmerment of a populace means that the government is planning genocide of a section of the people.",
"\nHowever when they 'do' plan something horrible against the people the first thing they do is take away the guns.",
"\n\nIf someone wants to take something away from you you need to look beyond the cover story and ask ... Why do they want you unable to fight back?",
"\n\nIt is in Texas, in a way. ",
"It's not legal to execute mentally ill felons, no matter what they've done. ",
"I think it stinks.",
"\n\nThirty years ago the seriously mentally ill were institutionalized. ",
"Institutions at the time weren't always the best places, and we have learned a lot about compassionate care in that time, but at least folks who were likely to do such things were under supervision. ",
"Deinstitutionalization was just as much about saving money as it was about \"compassion.\" ",
"You turn those folks over to communities and not provide financial support, they wind up homeless, families are overburdened and unable to provide adequate supervision, etc. ",
"It's still not a free pass tho. ",
"My beef is with the system.",
"\n\nThe system is indeed the problem; it needs to be overhauled to clear out those who are abusing it, to get the help to the people who really need it.",
"\n\nYet we don't want to pay taxes to pay for services. ",
"So, this is what happens sometimes. ",
"I'm not saying it's a straight line from here to there, but it does contribute.",
"\n\nUmmm, we damned well do pay taxes for these services - how else do you think the government gets money for them? ",
"The problem is that there are so many \"disabled\" people out there drawing money from those who are truly physically and mentally disabled that there's little left for those who really need it. ",
"If you don't believe me, just watch Judge Judy or any of the other court TV shows, and count how many parties are \"disabled\".",
"\n\nQUOTE: \"And that, my friend, is your problem. ",
"This world has always been a war zone.\"",
"\n\nHowever you want to say the world is a war zone, it's not something I am comfortable exposing my students to when they are in a building to learn and be educated. ",
"There has got to be another solution than to say \"You are safe nowhere. ",
"We all need weapons. ",
"Including your teachers. ",
"Now, let me adjust my glock before we start our partner reading.\"",
"\n\nAs a teacher, I would not be willing to carry a gun, nor would I want any of my co-workers to carry a gun. ",
"There has got to be a better solution. ",
"Think seriously -- how many situations have you been in where you've wondered how someone was allowed to have a driver's license? ",
"Or your coworker has proved their idiocy for the 20th time... that day? ",
"You think arming all of these people, allowing them and encouraging them to walk around with a loaded gun is the best bet?",
"\n\nAt the end of the day, we aren't going to agree, but I would really like everyone to think carefully before suggesting that arming everyone in a school is a safe idea, or would benefit our students in the long run.",
"\n\nAdditionally, after some of the comments I've read in this thread and beyond today, I'd like to make the following announcement.",
"\n\nThe funeral for My Hope for the Future will be held today, 12/15/12, at 7:00. ",
"Also involved in the incident was My Belief in Humanity and Optimism. ",
"All are survived by A Prayer for Logical Thinking. ",
"Red thumbs can be given in lieu of flowers.",
"\n\nI was unable to attend the funeral yesterday because even with these sad events that have been in the spotlight lately, I still have Hope For The Future, as well as a Belief In Humanity and an Optimistic outlook. ",
"I still believe we live in a great country full of good people that would rather help each other than hurt each other. ",
"I hope that the people who have been affected by the recent rash of shootings find the support they need to get through these trying times.",
"\n\nHow do you reconcile that with the fact that everyone on the trigger side of the gun gets to decide what counts as justifiable shooting?",
"\n\nUmm, what makes you think that those currently \"on the trigger side of the gun\" aren't making those decisions? ",
"And that in a large percentage of cases of gun violence, the aggressor is on the trigger side? ",
"Do you think that burglar who just kicked in your front door, or is holding a gun to your head in a mall parking lot getting ready to carjack you, isn't making that decision for you?",
"\n\nIt would all be well and good if we presumed everyone to be rational or to think as we do. ",
"But a major theme of the pro-gun types is that they wish to reserve the right to keep their weapons precisely because other people are stupid, selfish, crazy or whathaveyou.",
"\n\nYes. ",
"We \"pro-gun types\" absolutely want to keep our weapons, because of those on the \"trigger side\" who wish us ill. ",
"And if you were smart, you would, too.",
"\n\nIf you want to reserve the right to shoot according to your judgment, then you logically have to grant that to every other armed person as well. ",
"It's a bad deal, IMO.",
"\n\nSweetie, in case no one's explained it to you, everyone with a gun already has that right - with or without your permission - including the bad guys. ",
"If you choose not to own a gun and be prepared to protect and defend yourself, that's your business. ",
"But don't try to take my gun away and compromise my safety because of your beliefs.",
"\n\n. ",
"Until we have better mental health services, mentally unstable people may be more likely to commit these sorts of crimes. .",
"\n\nWell, not really. ",
"It depends on how we define \"mental illness \"or \"mentally unstable\". ",
"Its been awhile but I remember sychiatric patients with no co occuring addiction not eing more likely to commit crimes than any one else (haven't looked at data but probably more likely to be victimized). ",
"That stigma (the mentally ill!!) ",
"raises images of people out of One Flew Over the Cuckoo's Nest. ",
"There are definitely risk factors for danger (things we look at to try to assess potential for violence) but I hate to see \"the mentally ill\" as sort of targeted as crime perpetrators. ",
"I support funding, addressing systemic issues, ANYthing to offer for accessibility (very hard here in Montana, even for folks who are actively hallucinating-our local mental health center does not consider that extreme enough to even get an interview!!!!!) ",
"but just adding a hope that people don't further stigmatize those who are really suffering and are NOT in any way violent. ",
"And yes, even though we are \"treating\" someone, a) they do NOT always tell us everything, b) assessing risk is difficult and not something I think our field does particularly well, and c) treatment-medication stabilization, addressing emotional symptoms, working with families, can take time."
] | {
"pile_set_name": "Pile-CC"
} | [
0,
0.006369426751592357,
0.00641025641025641,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.0125,
0,
0.0392156862745098,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.014285714285714285,
0,
0.0044444444444444444,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.025,
0,
0.0044444444444444444,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.004405286343612335,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.008,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.0125,
0,
0.0392156862745098,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.047619047619047616,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.015625,
0,
0.0038910505836575876,
0,
0
] | 0.001544 | 5 |
[
"# --------------------------------------------------------\n# R-C3D\n# Copyright (c) 2017 Boston University\n# Licensed under The MIT License [see LICENSE for details]\n# Written by Huijuan Xu\n# --------------------------------------------------------\n\nimport numpy as np\nimport pdb\n\ndef generate_anchors(base_size=8, scales=2**np.arange(3, 6)):\n \"\"\"\n Generate anchor (reference) windows by enumerating aspect \n scales wrt a reference (0, 7) window.",
"\n \"\"\"\n\n base_anchor = np.array([1, base_size]) - 1\n anchors = _scale_enum(base_anchor, scales)\n return anchors\n\ndef _whctrs(anchor):\n \"\"\"\n Return width, height, x center, and y center for an anchor (window).",
"\n \"\"\"\n\n l = anchor[1] - anchor[0] + 1\n x_ctr = anchor[0] + 0.5 * (l - 1)\n return l, x_ctr \n\ndef _mkanchors(ls, x_ctr):\n \"\"\"\n Given a vector of lengths (ls) around a center\n (x_ctr), output a set of anchors (windows).",
"\n \"\"\"\n\n ls = ls[:, np.newaxis]\n anchors = np.hstack((x_ctr - 0.5 * (ls - 1),\n x_ctr + 0.5 * (ls - 1)))\n return anchors\n\ndef _scale_enum(anchor, scales):\n \"\"\"\n Enumerate a set of anchors for each scale wrt an anchor.",
"\n \"\"\"\n\n l, x_ctr = _whctrs(anchor)\n ls = l * scales\n anchors = _mkanchors(ls, x_ctr)\n return anchors\n\nif __name__ == '__main__':\n import time\n t = time.time()\n a = generate_anchors(scales=np.array([2, 4, 5, 6, 8, 9, 10, 12, 14, 16]))\n print (time.time() - t)\n print (a)\n from IPython import embed; embed()\n"
] | {
"pile_set_name": "Github"
} | [
0.004405286343612335,
0.0044444444444444444,
0.004219409282700422,
0,
0.0058997050147492625
] | 0.003794 | 5 |
[
"---\nabstract: 'The evolution of the two-point functions of autonomous one-dimensional single-species reaction-diffusion systems with nearest-neighbor interaction and translationally-invariant initial conditions is investigated. ",
"It is shown that the dynamical phase structure of such systems consists of five phases. ",
"As an example, a one-parameter family is introduced which can be in each of these phases.'",
"\n---\n\n[**Dynamical phase transition in the two-point functions of the autonomous one-dimensional single-species reaction-diffusion systems**]{}\n\n2 cm\n\n[Amir Aghamohammadi[[^1]]{} & Mohammad Khorrami[[^2]]{}]{} 5 mm\n\n*Department of Physics, Alzahra University, Tehran 19834, Iran.*",
"\n\n[**PACS numbers:**]{} 05.40.-a, 02.50.Ga\n\n[**Keywords:**]{} reaction-diffusion, two-point function, autonomous, phase transition\n\nIntroduction\n============\n\nReaction-diffusion systems, is a well-studied area. ",
"People have studied reaction-diffusion systems, using analytical techniques, approximation methods, and simulation. ",
"The approximation methods may be different in different dimensions, as for example the mean field techniques, working good for high dimensions, generally do not give correct results for low dimensional systems. ",
"A large fraction of analytical studies, belong to low-dimensional (specially one-dimensional) systems, as solving low-dimensional systems should in principle be easier. [",
"@ScR; @ADHR; @KPWH; @HS1; @PCG; @HOS1; @HOS2; @AL; @AKK; @RK; @RK2; @AKK2; @AM1].",
"\n\nThe term exactly-solvable have been used with different meanings. ",
"In [@AA; @RK3; @RK4], integrability means that the $N$-particle conditional probabilities’ S-matrix is factorized into a product of 2-particle S-matrices. ",
"In [@BDb; @BDb1; @BDb2; @BDb3; @Mb; @HH; @AKA; @KAA; @MB; @AAK], solvability means closedness of the evolution equation of the empty intervals (or their generalization.",
"\n\nIn [@GS], a ten-parameter family of reaction-diffusion processes was introduced for which the evolution equation of $n$-point functions contains only $n$- or less- point functions. ",
"We call such systems autonomous. ",
"The average particle-number in each site has been obtained exactly for these models. ",
"In [@AAMS; @SAK], this has been generalized to multi-species systems and more-than-two-site interactions.",
"\n\nAmong the important aspects of reaction-diffusion systems, is the phase structure of the system. ",
"The static phase structure concerns with the time-independent profiles of the system, while the dynamical phase structure concerns with the evolution of the system, specially its relaxation behavior. ",
"In [@MA1; @AM2; @MAM; @MA2], the phase structure of some classes of single- or multiple-species reaction-diffusion systems have been investigated. ",
"These investigations were bases on the one-point functions of the systems.",
"\n\nHere we want to study the two-point functions of autonomous single-species one-dimensional reaction-diffusion systems. ",
"Throughout this study, the initial condition of the system is taken to be translationally-invariant, so that it remains translational-invariant during the evolution. ",
"The two-point function for such systems is obtained, and it is shown that it exhibits a non-trivial dynamical phase structure. ",
"In section 2, the evolution equation of the two-point function is obtained. ",
"In section 3, this equation is solved and the corresponding energy-spectrum is obtained. ",
"In section 4, the parameter space of the system is analyzed. ",
"In section 5, the dynamical phase structure of the system (the different phase regions in the parameter space) is investigated. ",
"Finally, section 6 is devoted to a one-parameter example family, which can be in all five phases.",
"\n\nEvolution equations of the one- and two-point functions\n=======================================================\n\nConsider a one-dimensional periodic lattice, every point of which is empty or contains one particle. ",
"Let the lattice have $L+1$ sites. ",
"The observables of such a system are the operators $N_i^\\alpha$, where $i$ with $1\\leq i\\leq L+1$ denotes the site number, and $\\alpha=0,1$ denotes the hole or the particle: $N_i^0$ is the hole (vacancy) number operator at site $i$, and $N_i^1$ is the particle number operator at site $i$. One has obviously the constraint $$\\label{1}\ns_\\alpha N^\\alpha_i=1,$$ where ${\\mathbf s}$ is a covector the components of which ($s_\\alpha$’s) are all equal to one. ",
"The constraint , simply says that every site is either occupied by one particle or empty. ",
"A representation for these observables is $$\\label{2}\nN_i^\\alpha:=\\underbrace{1\\otimes\\cdots\\otimes 1}_{i-1}\\otimes\nN^\\alpha\\otimes\\underbrace{1\\otimes\\cdots\\otimes 1}_{L+1-i},$$ where $N^\\alpha$ is a diagonal $2\\times 2$ matrix the only nonzero element of which is the $\\alpha$’th diagonal element, and the operators 1 in the above expression are also $2\\times 2$ matrices. ",
"It is seen that the constraint can be written as $$\\label{3}\n{\\mathbf s}\\cdot{\\mathbf N}=1,$$ where ${\\mathbf N}$ is a vector the components of which are $N^\\alpha$’s. ",
"The state of the system is characterized by a vector $$\\label{4}\n{\\mathbf P}\\in\\underbrace{{\\mathbb V}\\otimes\\cdots\\otimes{\\mathbb\nV}}_{L+1},$$ where ${\\mathbb V}$ is a $2$-dimensional vector space. ",
"All the elements of the vector ${\\mathbf P}$ are nonnegative, and $$\\label{5}\n{\\mathbf S}\\cdot{\\mathbf P}=1.$$ Here ${\\mathbf S}$ is the tensor-product of $L+1$ covectors ${\\mathbf s}$.\n\nAs the values of the number operators $N^\\alpha_i$ are zero or one (and hence $N^\\alpha_i$’s are idempotent), the most general observable of such a system is the product of some of these number operators, or a sum of such terms. ",
"Moreover, the constraint shows that the two components of ${\\mathbf N}_i$ are not independent. ",
"so, one can express any function of ${\\mathbf N}_i$ in terms of $$\\label{6}\nn_i:={\\mathbf a}\\cdot{\\mathbf N}_i,$$ where ${\\mathbf a}$ is an arbitrary covector not parallel to ${\\mathbf s}$. Our aim is to study the evolution of the two-point functions constructed by $n_i$’s.",
"\n\nThe evolution of the state of the system is given by $$\\label{7}\n\\dot{\\mathbf P}={\\mathcal H}\\;{\\mathbf P},$$ where the Hamiltonian ${\\mathcal H}$ is stochastic, by which it is meant that its nondiagonal elements are nonnegative and $$\\label{8}\n{\\mathbf S}\\; {\\mathcal H}=0.$$ The interaction is nearest-neighbor, if the Hamiltonian is of the form $$\\label{9}\n{\\mathcal H}=\\sum_{i=1}^{L+1}H_{i,i+1},$$ where $$\\label{10}\nH_{i,i+1}:=\\underbrace{1\\otimes\\cdots\\otimes 1}_{i-1}\\otimes H\n\\otimes\\underbrace{1\\otimes\\cdots\\otimes 1}_{L-i}.$$ (It has been assumed that the sites of the system are identical, that is, the system is translation-invariant. ",
"Otherwise $H$ in the right-hand side of would depend on $i$.) The two-site Hamiltonian $H$ is stochastic, that is, its non-diagonal elements are nonnegative, and the sum of the elements of each of its columns vanishes: $$\\label{11}\n({\\mathbf s}\\otimes{\\mathbf s})H=0.$$ Here $H$ is a $4\\times 4$ matrix (as the system under consideration has two possible states in each site and the interactions are nearest neighbor). ",
"The non-diagonal elements of $H$ are nonnegative and equal to the interaction rates; that is, the element $H^\\alpha_\\beta$ with $\\alpha\\ne\\beta$ is equal to the rate of change of the state $\\beta$ to the state $\\alpha$. $\\alpha$ and $\\beta$, each represent the state of two adjacent sites. ",
"For example if $\\alpha=01$ and $\\beta=10$, then $H^\\alpha_\\beta$ is the rate of particle diffusion to the right.",
"\n\nUsing $$\\label{12}\n{\\mathbf s}\\otimes{\\mathbf s}({\\mathbf a}\\cdot{\\mathbf\nN})\\otimes({\\mathbf b}\\cdot{\\mathbf N})H=a_\\alpha\\, b_\\beta\\,\nH^{\\alpha\\beta}{}_{\\gamma\\delta}{\\mathbf s}\\otimes{\\mathbf\ns}N^\\gamma\\otimes N^\\delta,$$ where $\\mathbf a$ and $\\mathbf b$ are arbitrary covectors, one can write down the evolution equations of the one- and two-point functions of $n_i$’s. ",
"It turns out that in the evolution equation of the one-point function, there are two-point functions, and in the evolution-equation of the two-point function, there are three point functions, unless the reaction rates satisfy the following constraints [@GS; @AAMS; @SAK]. ",
"$$\\label{13}\n\\sideset{^e}{^\\alpha{}_{\\gamma\\delta}}{\\operatorname{\\cal A}}=\\sideset{^e_1}{^\\alpha{}_\\gamma}{\\operatorname{\\cal A}}\\,s_\\delta+\n\\sideset{^e_2}{^\\alpha{}_\\delta}{\\operatorname{\\cal A}}\\,s_\\gamma,$$ where $$\\begin{aligned}\n\\label{14}\n\\sideset{^1}{^\\alpha{}_{\\gamma\\delta}}{\\operatorname{\\cal A}}:=&s_\\beta\\,\nH^{\\alpha\\beta}{}_{\\gamma\\delta}\\nonumber\\\\\n\\sideset{^2}{^\\alpha{}_{\\gamma\\delta}}{\\operatorname{\\cal A}}:=&s_\\beta\\,\nH^{\\beta\\alpha}{}_{\\gamma\\delta}.\\end{aligned}$$ It can be seen that one can summarize the constraints in the compact form $$\\label{15}\nH\\,{\\mathbf u}\\otimes{\\mathbf u}=\\lambda\\,{\\mathbf\nu}\\otimes{\\mathbf u},$$ where $$\\label{16}\n{\\mathbf u}:=\n \\begin{pmatrix}\n 1\\\\\n -1\n \\end{pmatrix},$$ and it is obvious that $$\\label{17}\n{\\mathbf s}\\cdot{\\mathbf u}=0.$$\n\nNow, consider a system satisfying the constraints (or equivalently ), and take the vector ${\\mathbf v}$ satisfying $$\\begin{aligned}\n\\label{18}\n\\left(\\sum_{d,e=1}^2\\sideset{^d_e}{}{\\operatorname{\\cal A}}\\right){\\mathbf\nv}=&0,\\nonumber\\\\\n{\\mathbf s}\\cdot{\\mathbf v}&=1,\\end{aligned}$$ and the covector ${\\mathbf a}$ such that $$\\label{19}\n{\\mathbf a}\\cdot{\\mathbf u}=1,\\qquad {\\mathbf a}\\cdot{\\mathbf\nv}=0,$$ that is, the basis $\\{{\\mathbf a},{\\mathbf s}\\}$ is dual to $\\{{\\mathbf u},{\\mathbf v}\\}$. This choice of $\\textbf{a}$ makes the evolution equation of $\\langle\\textbf{a}\\cdot\\textbf{N}\\rangle$ homogeneous. ",
"In [@AAMS; @SAK], it is shown that the matrix in the left-hand side of the first equation in , has a left eigenvector with the eigenvalue zero. (",
"This left eigenvector is ${\\mathbf s}$.) So it does have a right eigenvector with the eigenvalue zero as well. ",
"That is, there does exist a vector ${\\mathbf v}$ satisfying . ",
"In fact, one can even find a real vector ${\\mathbf v}$ satisfying . ",
"From now on, ${\\mathbf a}$ in is assumed to satisfy .",
"\n\nAssume further, that the initial condition is translational-invariant. ",
"This means that the one-point function is independent of the site, and the two-point function depends on only the difference of the sites’ numbers. ",
"It turns out that the evolution equation for the one-point function is $$\\label{20}\n\\frac{\\d f}{\\d t}=(\\mu+\\nu)f,$$ where $$\\label{21}\nf:=\\langle n_i\\rangle,$$ and $$\\begin{aligned}\n\\label{22}\n\\mu=&{\\mathbf s}\\otimes{\\mathbf a}\\, H\\,{\\mathbf u}\\otimes{\\mathbf\nv}+{\\mathbf a}\\otimes{\\mathbf s}\\, H\\,{\\mathbf v}\\otimes{\\mathbf\nu},\\nonumber\\\\\n\\nu=&{\\mathbf s}\\otimes{\\mathbf a}\\, H\\,{\\mathbf v}\\otimes{\\mathbf\nu}+{\\mathbf a}\\otimes{\\mathbf s}\\, H\\,{\\mathbf u}\\otimes{\\mathbf\nv}.\\end{aligned}$$ Also, taking $$\\label{23}\nF_i:=\\langle n_k\\, n_{k+i}\\rangle,$$ one arrives at $$\\begin{aligned}\n\\label{24}\n\\frac{\\d F_i}{\\d t}&=\\mu(F_{i-1}+F_{i+1})+2\\nu\\, F_i,\\qquad\n1<i<L\\nonumber\\\\\n\\frac{\\d F_1}{\\d t}&=\\mu\\, F_2+(\\nu+\\lambda)F_1+\\rho\\, f+\\sigma,\\end{aligned}$$ where $$\\begin{aligned}\n\\label{25}\n\\rho:=&{\\mathbf a}\\otimes{\\mathbf a}\\, H\\,({\\mathbf\nu}\\otimes{\\mathbf v}+{\\mathbf v}\\otimes{\\mathbf u}),\\nonumber\\\\\n\\sigma:=&{\\mathbf a}\\otimes{\\mathbf a}\\, H\\,{\\mathbf\nv}\\otimes{\\mathbf v}.\\end{aligned}$$ From the definition , it is also seen that $$\\label{26}\nF_{L+1-i}=F_i.$$ It is seen that only five parameters enter the evolution equation of the up-to-two-point functions, and all of these can be expressed in terms of the matrix elements of $$\\label{27}\n\\bar H:=H+\\Pi\\, H\\,\\Pi,$$ where $\\Pi$ is the permutation matrix. ",
"These parameters can be rewritten as $$\\begin{aligned}\n\\label{28}\n\\mu:=&{\\mathbf s}\\otimes{\\mathbf a}\\, {\\bar H}\\,{\\mathbf\nu}\\otimes{\\mathbf v}\\nonumber\\\\\n\\nu:=&{\\mathbf s}\\otimes{\\mathbf a}\\, {\\bar H}\\,{\\mathbf\nv}\\otimes{\\mathbf u}\\nonumber\\\\\n\\lambda:=&\\frac{1}{2}{\\mathbf a}\\otimes{\\mathbf a}\\, {\\bar\nH}\\,{\\mathbf u}\\otimes{\\mathbf u}\\nonumber\\\\\n\\rho:=&{\\mathbf a}\\otimes{\\mathbf a}\\, {\\bar H}\\,{\\mathbf\nu}\\otimes{\\mathbf v}\\nonumber\\\\\n\\sigma:=&\\frac{1}{2}{\\mathbf a}\\otimes{\\mathbf a}\\, {\\bar\nH}\\,{\\mathbf v}\\otimes{\\mathbf v}\\end{aligned}$$\n\nSolution of the evolution equations\n===================================\n\nThe solution to (the evolution equation of the one-point function) is easily seen to be $$\\label{29}\nf(t)=f(0)\\exp[(\\mu+\\nu)t].$$ Putting this in , the second equation becomes $$\\label{30}\n\\frac{\\d F_1}{\\d t}=\\mu\\,\nF_2+(\\nu+\\lambda)F_1+\\rho\\,f(0)\\exp[(\\mu+\\nu)t]+\\sigma.$$ This, combined with the first equation of , and the constraint , are sufficient to obtain the two-point functions from their initial value. ",
"To do so, one takes a solution like $$\\label{31}\nF_{i}(t)=\\sum_E F_{i\\,E}(0)\\exp(E\\, t),$$ and puts it in the equations. ",
"From the first equation of , one arrives at $$\\label{32}\nE\\,F_{i\\,E}(0)=\\mu[F_{i-1\\, E}(0)+F_{i+1\\, E}(0)]+ 2\\nu\\, F_{i\\,\nE}(0),\\qquad 1<i<L.$$ becomes $$\\label{33}\nE\\,F_{1\\,E}(0)=\\mu\\, F_{2\\, E}(0)+(\\nu+\\lambda)F_{1\\,E}(0)+\\rho\\,\nf(0)\\,\\delta_{\\mu+\\nu,E}+\\sigma\\,\\delta_{0,E}.$$ To solve , one takes $$\\label{34}\nF_{i\\,E}(0)=c_E\\, z^i+d_E\\, z^{'i}.$$ Putting this in , one arrives at $$\\label{35}\nE=\\mu(z+z^{-1})+2\\nu.$$ The equation for $z'$ is similar, and in fact $z'$ is the inverse of $z$. Then, using , one can write as $$\\label{36}\nF_{i\\,E}(0)=c_E(z^i+z^{L+1-i}).$$ Putting this in , one can obtain the coefficient $c_E$.\n\nFor $E=\\mu+\\nu$, or $E=0$, the equation for $c_E$ is a nonhomogeneous one, and $c_E$ is obtained. ",
"For $E$ different to the above values, the equation for $c_E$ is a homogeneous one, and only for certain values of $E$ there exist nonzero solutions for $c_E$. These values of $E$ are among the eigenvalues of ${\\mathcal\nH}$, of course. ",
"Using , , and , the condition for $c_E$ being nonzero is seen to be $$\\label{37}\n\\mu[z^{-(L+1)/2}+z^{(L+1)/2}]=(\\lambda-\\nu)\n[z^{-(L-1)/2}+z^{(L-1)/2}].$$ Some of the roots of this equation (for $z$) are phases (their absolute value is one). ",
"In the thermodynamic limit ($L$ to infinity) it is easy to find the nonphase solutions. ",
"It is seen that if a solution has absolute value less than one, then in the thermodynamic limit, $$\\label{38}\nz=\\frac{\\mu}{\\lambda-\\nu},$$ and it is obvious that such roots of are real. ",
"So, in the thermodynamic limit, the energy values $E$ entering the translationally-invariant two point function are zero, $(\\mu+\\nu)$, the values coming from with $|z|=1$, and possibly only one other value coming from with $z$ satisfying . ",
"The largest nonzero value of $E$, determines the relaxation time towards the equilibrium.",
"\n\nOne point should be noted. ",
"In general, the limit of the largest relaxation time of a finite system, as its size tends to infinity, may differ from the relaxation time of the infinite system. ",
"It can be shown, however, that it is not the case for our system. ",
"In fact, if one solves the eigenvalue equation for the infinite system, one has to omit the periodicity condition , and use instead a condition that the two-point function does not blow up in the limit that the distance between the two points tends to infinity. ",
"This means that either $z$ and $z'$ (the inverse of $z$) are unimodular, or in there remains only one term, the term corresponding to the one with modulus less than one. ",
"For the latter case, one again recovers . ",
"So, the spectrum of the infinite system, is in fact equal to the limit of the spectrum of the finite system with periodic boundary conditions, in the infinite-size limit. ",
"It is of course true that if in the initial condition, the coefficients of some eigenvectors vanish, then the relaxation time may differ from the largest relaxation time. ",
"But this happens independent of the size of the system. ",
"Another case when the relaxation behavior of the infinite system differs from the limit that of the finite system, is when the spectrum becomes continuous to zero, that is, in the infinite limit system, there is no eigenvalue gap between zero and the other part of the spectrum. ",
"In this case, the relaxation behavior of the infinite system may be a power law, rather than exponential decaying. ",
"But again this is not the case for the present system. ",
"To summarize, in the present system the largest relaxation time of the infinite system is equal to the limit of of the largest relaxation time of the finite system.",
"\n\nThe parameter space determining the energy-spectrum of the two-point functions\n==============================================================================\n\nConsider a one-dimensional single-species nearest-neighbor-interacting system, for which the evolution equations of up-to-$n$-point functions are autonomous. (",
"we call such systems autonomous.) ",
"The Hamiltonian $H$ characterizing such a system (hence satisfying ), contains 10 parameters. ",
"As it was seen from the previous section, of the parameters entering $H$, only five parameters enter in the evolution equation of the two-point functions. ",
"All of these are expressible in terms of the symmetrized (with respect to permutation) Hamiltonian $\\bar H$. It is easily seen that as $H$ satisfies , $\\bar H$ satisfies as well. ",
"So the system characterized by $\\bar H$, is autonomous as well. ",
"Such a system contains 6 independent rates. ",
"In fact, one can write $\\bar H$ as $$\\label{39}\n\\bar H=\\begin{pmatrix}\n -2 r_1-r_2&r_3&r_3&r_5\\\\\n r_1&-r_3-r_7-r_4&r_7&r_6\\\\\n r_1&r_7&-r_3-r_7-r_4&r_6\\\\\n r_2&r_4&r_4&-r_5-2 r_6\n \\end{pmatrix},$$ with $$\\label{40}\nr_1+r_2+r_3=r_4+r_5+r_6.$$ Of the five parameters entering the evolution equation of the two-point function, only three parameters determine the energy-spectrum. ",
"These are $\\mu$, $\\nu$, and $\\lambda$: $$\\begin{aligned}\n\\label{41}\n\\mu&=r_7+r_4-r_1-r_2=r_7+r_3-r_5-r_6,\\nonumber\\\\\n\\nu&=-r_7-r_1-r_2-r_3=-r_7-r_4-r_5-r_6,\\nonumber\\\\\n\\lambda&=-\\frac{r_1+r_3+r_4+r_6}{2}.\\end{aligned}$$ From these relations, it is seen that $$\\begin{aligned}\n\\label{42}\n\\nu&\\leq -|\\mu|\\leq 0,\\nonumber\\\\\n\\nu&\\leq\\lambda\\leq 0.\\end{aligned}$$ As the rates are nonnegative, if $\\nu=0$, then $\\bar H=0$, which makes the two-point functions constant. ",
"Assuming $\\nu\\ne 0$, one can scale time and make $\\nu=-1$. So, apart from a time-scale, there are only two parameters determining the energy-spectrum, $\\mu$ and $\\lambda$: $$\\begin{aligned}\n\\label{43}\n|\\mu|&\\leq 1,\\nonumber\\\\\n-1&\\leq\\lambda\\leq 0,\\nonumber\\\\\n\\nu&=-1.\\end{aligned}$$ It can be shown that the whole region of the above is physical. ",
"That is, corresponding to any $\\lambda$ and $\\mu$ satisfying the above inequalities, there are autonomous systems yielding the desired $\\lambda$ and $\\mu$. To prove this, first consider four specific systems:\n\n- $r_1=r_6=1,\\quad\n r_2=r_3=r_4=r_5=r_7=0,\\quad\\Rightarrow\\quad(\\mu,\\lambda)=(-1,-1)$.\n\n- $r_2=r_5=1,\\quad\n r_1=r_3=r_4=r_6=r_7=0,\\quad\\Rightarrow\\quad (\\mu,\\lambda)=(-1,0)$.\n\n- $r_3=r_4=1,\\quad\n r_1=r_2=r_5=r_6=r_7=0,\\quad\\Rightarrow\\quad (\\mu,\\lambda)=(1,-1)$.\n\n- $r_7=1,\\quad\n r_1=r_2=r_3=r_4=r_5=r_6=0,\\quad\\Rightarrow\\quad\n (\\mu,\\lambda)=(1,0)$.\n\nAny point $(\\mu,\\lambda)$ in the region described by , can be written as $$\\label{44}\n(\\mu,\\lambda)=c_1(-1,-1)+c_2(-1,0)+c_3(1,-1)+c_4(1,0),$$ where $c_a$’s are nonnegative. ",
"A system with the rates $$\\label{45}\nr_i=\\sum_{a=1}^4 c_a\\,r_{ai},$$ where $r_{ai}$ is the rate $r_i$ of the $a$’th system introduced above, gives the desired $(\\mu,\\lambda)$.\n\nDynamic phase transitions in the two-point function\n===================================================\n\nIt was shown in the previous section, that for any nonzero Hamiltonian $\\nu\\ne 0$, so that one can normalize $\\nu$ to $-1$. In section 3, it was shown that the energies entering the two-point function are $0$, $E_1:=\\mu-1$, and $\\mu(z+z^{-1})-2$, where in the thermodynamic limit $|z|=1$, or at most one non-unimodular $z$ exists, the value of which comes from . ",
"This is provided the absolute-value of the left-hand side of is less than one. ",
"So, the energies (apart from $0$) are $E_1$, any number in the interval $I_0:=[-2-2|\\mu|,-2+2|\\mu|]$, and possibly $$\\label{46}\nE_2:=\\lambda-1+\\frac{\\mu^2}{\\lambda+1},$$ The largest relaxation time of the two-point function is $-E_{\\textrm{max}}^{-1}$, where $E_{\\textrm{max}}$ is the largest nonzero value of the energy spectrum. ",
"The relaxation time of the one-point function is $-E_1^{-1}$. The fact that the energy spectrum of the one-point function consists of a single value, is a result of the translational-invariance of the initial state of the system. ",
"Otherwise, there would be many energies for the one-point function, which could lead to a dynamical phase-transition in the one-point function [@MA1; @AM2; @MAM; @MA2]. ",
"The comparison of the relaxation times of the two-point- and the one-point-functions, is a comparison of $E_{\\textrm{max}}$ and $E_1$. If the former is larger, the largest relaxation time of the two-point function is larger than the relaxation time of the one-point function (the slow phases). ",
"If the two are equal, the relaxation-times are equal (the fast phases). ",
"So, the relation of $E_1$, $E_2$, and $I_0$, determines the relaxation behavior of the two-point function (its dynamical phase). ",
"It is seen that $$\\begin{aligned}\n\\label{47}\n&I_0<E_1,\\qquad \\mu>-\\frac{1}{3},\\nonumber\\\\\n&E_1\\in I_0,\\qquad \\mu<-\\frac{1}{3},\\end{aligned}$$ where $|\\mu|\\leq 1$ has also been used. ",
"If $E_1>I_0$, then the relaxation time of the one-point function is equal to the largest relaxation time of the two-point function. ",
"If $E_1\\in I_0$, the the largest relaxation time of the two-point function is larger.",
"\n\nFor $E_2$ to be among the energies, the absolute value of the left-hand side of should be less than one. ",
"So, $$\\begin{aligned}\n\\label{48}\n\\not\\exists &E=E_2,\\qquad \\lambda<|\\mu|-1,\\nonumber\\\\\n\\exists &E=E_2,\\qquad \\lambda>|\\mu|-1.\\end{aligned}$$\n\nFinally, $$\\label{49}\n(\\lambda+1)(E_2-E_1)=\\lambda^2+\\mu^2-\\lambda\\,\\mu+\\lambda-\\mu=:\nf(\\mu,\\lambda),$$ from which (using $\\lambda+1$ is nonnegative), $$\\begin{aligned}\n\\label{50}\n&E_2<E_1,\\qquad f(\\mu,\\lambda)<0,\\nonumber\\\\\n&E_2>E_1,\\qquad f(\\mu,\\lambda)>0.\\end{aligned}$$ $f=0$ is an ellipse, the interior points of which correspond to $E_2<E_1$, and the exterior points of which correspond to $E_2>E_1$.\n\nThese three inequalities divide the whole phase space $(|\\mu|\\leq\n1,\\,\\-1\\leq\\lambda\\leq 0)$ into five phases:\n\n- $\\mu<-\\frac{1}{3},\\quad \\lambda<|\\mu|-1.$\n\n In this phase, $E_1\\in I_0$, and $E_2$ is not an energy. ",
"This is the slower phase, and the largest energy is $E_{\\textrm{max}}=-2-2\\mu$.\n\n- $\\mu<-\\frac{1}{3},\\quad \\lambda>|\\mu|-1.$\n\n In this phase, $E_1\\in I_0$, and $E_2$ is an energy, in fact the largest one. ",
"This is the slowest phase, and the largest energy is $E_{\\textrm{max}}=-1+\\lambda+\\frac{\\mu^2}{\\lambda+1}$.\n\n- $\\mu>-\\frac{1}{3},\\quad \\lambda<|\\mu|-1.$\n\n In this phase, $E_1> I_0$, and $E_2$ is not an energy. ",
"This is the fastest phase, and the largest energy is $E_{\\textrm{max}}=-1+\\mu$.\n\n- $\\mu>-\\frac{1}{3},\\quad |\\mu|-1<\\lambda< \\frac{\\mu-1+\\sqrt{(1+3\\mu)(1-\\mu)}}{2}.$\n\n In this phase, $E_1> I_0$, $E_2$ is an energy, and $E_2<E_1$. This is the fast phase, and the largest energy is $E_{\\textrm{max}}=-1+\\mu$.\n\n- $\\mu>-\\frac{1}{3},\\quad \\lambda> \\frac{\\mu-1+\\sqrt{(1+3\\mu)(1-\\mu)}}{2}.$\n\n In this phase, $E_1> I_0$, $E_2$ is an energy, and $E_2>E_1$. This is the slow phase, and the largest energy is $E_{\\textrm{max}}=-1+\\lambda+\\frac{\\mu^2}{\\lambda+1}$.\n\nThis phase structure is summarized in fig. ",
"1.",
"\n\nAs previously mentioned, these phases arise from the fact that the energy-spectrum of the two-point function consists of a continuous part, an energy equal to the energy appearing in the one-point function, and possibly another energy. ",
"This shows that the relaxation of the two-point function is at least as slow as that of the one-point function, and may be slower, depending on the relative position of the discrete and continuous parts of the spectrum. ",
"The fast phases (phases **III** and **IV**), are those in them the relaxation time of the one- and two-point functions are equal, while in the slow phases (phases **I**, **II**, and **V**), the relaxation of the two-point function is slower than that of the one-point function.",
"\n\nA one-parameter family as an example\n====================================\n\nConsider a system with the Hamiltonian $$\\label{51}\nH=\\frac{1}{4}\n\\begin{pmatrix}\n-3+3\\omega&\\omega&\\omega&1-\\omega\\\\\n1-\\omega&-3\\omega&\\omega&1-\\omega\\\\\n1-\\omega&\\omega&-3\\omega&1-\\omega\\\\\n1-\\omega&\\omega&\\omega&-3+3\\omega\\\\\n\\end{pmatrix}.$$ This Hamiltonian describes a system with the following reactions. ",
"$$\\begin{aligned}\n\\label{52}\n\\emptyset A&\\to\\hbox{ any other state},\\qquad\\hbox{with the rate\n$\\omega/4$},\\nonumber\\\\\nA\\emptyset&\\to\\hbox{ any other state},\\qquad\\hbox{with the rate\n$\\omega/4$},\\nonumber\\\\\n\\emptyset\\emptyset&\\to\\hbox{ any other state},\\qquad\\hbox{with the\nrate $(1-\\omega)/4$},\\nonumber\\\\\nAA&\\to\\hbox{ any other state},\\qquad\\hbox{with the rate\n$(1-\\omega)/4$}.\\end{aligned}$$ It is seen that for this system, $$\\label{53}\n\\bar H=2H,$$ and $$\\begin{aligned}\n\\label{54}\n\\mu&=-1+2\\omega,\\nonumber\\\\\n\\lambda&=-\\frac{1}{2}.\\end{aligned}$$ For this system, $\\rho$ defined through is equal to zero, hence there is no term proportional to $e^{E_1\\, t}$ in the right-hand side of . ",
"However, it is seen that adding a term $$\\label{55}\nH_1=r\n\\begin{pmatrix}\n-1&0&0&0\\\\\n0&0&0&1\\\\\n0&0&0&1\\\\\n1&0&0&-2\\\\\n\\end{pmatrix},$$ to the Hamiltonian $H$ in , changes the values of $\\rho$, $\\nu$, $\\mu$, and $\\lambda$ to $$\\begin{aligned}\n\\label{56}\n\\rho=&r,\\nonumber\\\\\n\\nu=&-1-2r,\\nonumber\\\\\n\\mu=&-1-2r+2\\omega,\\nonumber\\\\\n\\lambda=&-\\frac{1}{2}-r.\\end{aligned}$$ For small values of $r$, one can use $\\nu=1$, and $\\mu$ and $\\lambda$ as in . ",
"Then, with different values of $\\omega$, this system can exist in all the above five phases: $$\\begin{aligned}\n\\label{57}\n&\\hbox{phase \\textbf{I}},\\qquad\n0\\leq\\omega<\\frac{1}{4},\\nonumber\\\\\n&\\hbox{phase \\textbf{II}},\\qquad\n\\frac{1}{4}<\\omega<\\frac{1}{3},\\nonumber\\\\\n&\\hbox{phase \\textbf{V}},\\qquad\n\\frac{1}{3}<\\omega<\\frac{5-\\sqrt{5}}{8},\\nonumber\\\\\n&\\hbox{phase \\textbf{IV}},\\qquad\n\\frac{5-\\sqrt{5}}{8}<\\omega<\\frac{3}{4},\\nonumber\\\\\n&\\hbox{phase \\textbf{III}},\\qquad \\frac{3}{4}<\\omega\\leq 1.\\end{aligned}$$ It is seen that increasing $\\omega$, the system undergoes phase transitions from the phase **I** to **II**, then **V**, **IV**, and finally **III**.",
"\n\n[99]{} G. M. Schütz; “Exactly solvable models for many-body systems far from equilibrium” in “Phase transitions and critical phenomena, vol. **",
"19**”, C. Domb & J. Lebowitz (eds.), (",
"Academic Press, London, 2000). ",
"F. C. Alcaraz, M. Droz, M. Henkel, & V. Rittenberg; Ann. ",
"Phys. **",
"230** (1994) 250. ",
"K. Krebs, M. P. Pfannmuller, B. Wehefritz, & H. Hinrichsen; J. Stat. ",
"Phys. **",
"78**\\[FS\\] (1995) 1429. ",
"H. Simon; J. Phys. **",
"A28** (1995) 6585. ",
"V. Privman, A. M. R. Cadilhe, & M. L. Glasser; J. Stat. ",
"Phys. **",
"81** (1995) 881. ",
"M. Henkel, E. Orlandini, & G. M. Schütz; J. Phys. **",
"A28** (1995) 6335. ",
"M. Henkel, E. Orlandini, & J. Santos; Ann. ",
"of Phys. **",
"259** (1997) 163. ",
"A. A. Lushnikov; Sov. ",
"Phys. ",
"JETP **64** (1986) 811 \\[Zh. ",
"Eksp. ",
"Teor. ",
"Fiz. **",
"91** (1986) 1376\\]. ",
"M. Alimohammadi, V. Karimipour, & M. Khorrami; Phys. ",
"Rev. **E57** (1998) 6370. ",
"F. Roshani & M. Khorrami; Phys. ",
"Rev. **E60** (1999) 3393. ",
"F. Roshani & M. Khorrami; J. Math. ",
"Phys. **",
"43** (2002) 2627. ",
"M. Alimohammadi, V. Karimipour, & M. Khorrami; J. Stat. ",
"Phys. **",
"97** (1999) 373. ",
"A. Aghamohammadi & M. Khorrami; J. Phys. **",
"A33** (2000) 7843. ",
"M. Alimohammadi, & N. Ahmadi; Phys. ",
"Rev. **E62** (2000) 1674. ",
"F. Roshani & M. Khorrami; Phys. ",
"Rev. **E64** (2001) 011101. ",
"F. Roshani & M. Khorrami; Eur. ",
"Phys. ",
"J. **B36** (2003) 99. ",
"M. A. Burschka, C. R. Doering, & D. ben-Avraham; Phys. ",
"Rev. Lett. **",
"63** (1989) 700. ",
"D. ben-Avraham; Mod. ",
"Phys. ",
"Lett. **",
"B9** (1995) 895. ",
"D. ben-Avraham; in “Nonequilibrium Statistical Mechanics in One Dimension”, V. Privman (ed.), ",
"pp 29-50 (Cambridge University press,1997). ",
"D. ben-Avraham; Phys. ",
"Rev. Lett. **",
"81** (1998) 4756. ",
"T. Masser, D. ben-Avraham; Phys. ",
"Lett. **",
"A275** (2000) 382. ",
"M. Henkel & H. Hinrichsen; J. Phys. **",
"A34**, 1561-1568 (2001). ",
"M. Alimohammadi, M. Khorrami, & A. Aghamohammadi; Phys. ",
"Rev. **E64** (2001) 056116. ",
"M. Khorrami, A. Aghamohammadi, & M. Alimohammadi; J. Phys. **",
"A36** (2003) 345. ",
"M. Mobilia & P. A. Bares; Phys. ",
"Rev. **E64** (2001) 066123. ",
"A. Aghamohammadi, M. Alimohammadi, & M. Khorrami; Eur. ",
"Phys. ",
"J. **B31** (2003) 371. ",
"G. M. Schütz; J. Stat. ",
"Phys. **",
"79**(1995) 243. ",
"A. Aghamohammadi, A. H. Fatollahi, M. Khorrami, & A. Shariati; Phys. ",
"Rev. **E62** (2000) 4642. ",
"A. Shariati, A. Aghamohammadi, & M. Khorrami; Phys. ",
"Rev. **E64** (2001) 066102. ",
"M. Khorrami & A. Aghamohammadi; Phys. ",
"Rev. **E63** (2001) 042102. ",
"A. Aghamohammadi & M. Khorrami; J. Phys. **",
"A34** (2001) 7431. ",
"N. Majd, A. Aghamohammadi, & M. Khorrami; Phys. ",
"Rev. **E64** (2001) 046105. ",
"M. Khorrami & A. Aghamohammadi; Phys. ",
"Rev. **E65** (2002) 056129.",
"\n\n[^1]: mohamadi@azzahra.ac.ir\n\n[^2]: mamwad@mailaps.org\n"
] | {
"pile_set_name": "ArXiv"
} | [
0,
0,
0,
0.007142857142857143,
0,
0,
0,
0,
0.16049382716049382,
0,
0.01935483870967742,
0.05952380952380952,
0.00546448087431694,
0,
0,
0.01904761904761905,
0,
0,
0.027210884353741496,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.005952380952380952,
0.005025125628140704,
0,
0,
0,
0.0015384615384615385,
0,
0,
0,
0.002652519893899204,
0.011029411764705883,
0.0021156558533145277,
0.013793103448275862,
0,
0.016129032258064516,
0.014705882352941176,
0,
0,
0,
0.00303951367781155,
0.009689922480620155,
0.008264462809917356,
0.00411522633744856,
0,
0,
0,
0,
0.004166666666666667,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.0024691358024691358,
0.0021551724137931034,
0,
0.005270092226613966,
0,
0,
0,
0,
0.023668639053254437,
0,
0,
0,
0,
0,
0,
0,
0.0025974025974025974,
0.004761904761904762,
0,
0,
0,
0,
0,
0,
0,
0,
0.002257336343115124,
0.00303951367781155,
0,
0.05263157894736842,
0.03225806451612903,
0.05263157894736842,
0,
0,
0.07246376811594203,
0,
0,
0.09523809523809523,
0,
0.07142857142857142,
0,
0,
0.07692307692307693,
0,
0.09302325581395349,
0,
0,
0.045454545454545456,
0,
0,
0,
0.16666666666666666,
0,
0,
0.018867924528301886,
0,
0.03125,
0,
0.05714285714285714,
0,
0,
0.03571428571428571,
0,
0,
0.046511627906976744,
0,
0.05555555555555555,
0,
0.03125,
0,
0.03225806451612903,
0,
0.045454545454545456,
0.03636363636363636,
0.07692307692307693,
0,
0.047619047619047616,
0,
0.125,
0,
0.02127659574468085,
0.022727272727272728,
0.045454545454545456,
0.07692307692307693,
0,
0.06060606060606061,
0.125,
0.05263157894736842,
0.05263157894736842,
0.04,
0.017857142857142856,
0,
0.04918032786885246,
0,
0,
0,
0,
0,
0.043478260869565216,
0.08695652173913043,
0,
0,
0.043478260869565216,
0,
0.038461538461538464,
0,
0,
0,
0.046511627906976744,
0,
0.041666666666666664,
0,
0,
0,
0.03508771929824561
] | 0.013935 | 5 |
[
"Product Preview - April 2013\n\nThey’re on the Case\n\nThe National Corvette Museum, in partnership with manufacturer Mimeocase, has created a limited- edition iPhone case celebrating Corvette culture. ",
"Each T-6 sheet-aluminum case is precision cut on a CNC machine, while the back half is engraved with a silhouette of the NCM’s Skydome and a C6 Corvette. ",
"According to the company, the case can provide protection from accidental drops from as high as 15 feet. ",
"A 5⁄32-inch Allen wrench is included for easy installation. (",
"Note: Please contact the NCM first for availability. ",
"If the case you request is out of stock, contact Mimeocase directly.)",
"\n\nFree the Power\n\nPRW’s Performance Quotient Series chrome electric water pump for small-block Chevys is designed to eliminate the power drag produced by conventional pulley-driven units. ",
"Its heavy-duty electric motor turns at approximately 1,500 rpm, is free-flow rated at 35 gpm, and features a durability rating of 2,750 hours of continuous operation. ",
"Included with each kit are gaskets, a billet-aluminum inlet fitting, mounting hardware, and a pigtail connector.",
"\n\nGo with the Flow\n\nHRE’s new FlowForm wheels are engineered and tested to the exacting standards of the company’s forged wheels, at a price that won’t bruise your budget. ",
"Debut model FF01, shown here, is inspired by the timeless design of HRE’s popular P40SC wheel. ",
"Instead of forging, however, the FF01 is created using a high-tech, low-pressure, cast flow-forming process. ",
"Currently 19x9- and 20x10.5-inch fitments are available for C5 and C6 Corvettes, in gloss silver or satin black. ",
"Custom finishes are available upon request.",
"\n\nCoiled to Strike\n\nMTI Racing’s Bilstein Coilovers for C5 and C6 Corvettes promise excellent grip at the racetrack, while maintaining a comfortable and reassuring ride on the street. ",
"Their secret is an inverted mounting scheme, which places the majority of the shocks’ mass on the chassis, rather than the lower control arms. ",
"The result is a 50-percent decrease in unsprung weight (when compared with the stock setup), and a crisper, more responsive feel. ",
"Features include billet-aluminum construction, a premium anodized finish, custom Aurora spherical bearings, and easy ride-height adjustments. ",
"Custom shock valving and spring rates are available.",
"\n\nGo First-Class\n\nVETTE columnist K. Scott Teeters has expanded his Corvette Postage Stamp Art Print Collection to include race cars. ",
"The first in the series features the racing Corvettes of Dave MacDonald: his 1963 Grand Sport coupe and roadster, the Briggs Cunningham 1960 Le Mans-winning No. ",
"1 car, and the Delorenzo and Thompson/Owens Corning 1968 427 L88. ",
"In the future, look for Teeters' postage-stamp prints featuring Greenwood cars, Corvette Challenge racers, the Morrison Motorsports record-breaking ZR-1, the C5-R, the C6.R, and, eventually the C7.R. Each of the 500 numbered prints measures 11x17 inches and is signed by the artist.",
"\n\nStop Squinting\n\nAl’s Liner DIY Window Film Kit allows you to achieve the kind of results you’d expect only from a professional automotive tint shop. ",
"Side-window and rear-window/hatch kits are available; both start with a true black film (not blue) in your choice of three volatile light transmission (VLT) shades: 5, 20, and 30 percent. (",
"The scale measures the amount of light allowed through the tint.) ",
"All three tint shades block up to 99 percent of harmful UV rays, are scratch resistant, and utilize the company’s Sure Grip Adhesive to prevent blistering with age. ",
"Every kit is backed by a lifetime warranty."
] | {
"pile_set_name": "Pile-CC"
} | [
0.005050505050505051,
0.012987012987012988,
0,
0,
0.018867924528301886,
0.014492753623188406,
0.005319148936170213,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.007042253521126761,
0,
0.007462686567164179,
0.006211180124223602,
0.045454545454545456,
0.014184397163120567,
0.006622516556291391,
0,
0,
0,
0
] | 0.005132 | 5 |
[
"Q:\n\nGlassFish on Windows vs RedHat\n\nI have a basic three tier web application, and I want to use GlassFish.",
"\nAssuming same admin skills, any difference in having the host OS be Windows 2003 Server or RedhHat?",
"\n\nA:\n\nSooner or later you'll probably run in to problems when deploying on Win2K3 due to Windows file locking issues. ",
"But you'll learn to work around it - one way or another.",
"\nAlso see this question:\nAll else equal, I would not select Windows as server OS for glassfish, but I would not strongly advice against Win2K3 either.",
"\n\n"
] | {
"pile_set_name": "StackExchange"
} | [
0,
0.01,
0.00847457627118644,
0,
0,
0
] | 0.003079 | 5 |
[
"When refering to evidence in academic writing, you should always try to reference the primary (original) source. ",
"That is usually the journal article where the information was first stated. ",
"In most cases Physiopedia articles are a secondary source and so should not be used as references. ",
"Physiopedia articles are best used to find the original sources of information (see the references list at the bottom of the article).",
"\n\nIf you believe that this Physiopedia article is the primary source for the information you are refering to, you can use the button below to access a related citation statement.",
"\n\nContents\n\nIntroduction and Epidemiology\n\nTennis Elbow, also known as Lateral Epicondylitis or Lateral Epicondylopathy, is described as pain over the lateral epicondyle of the humerus. ",
"Tennis Elbow is a common musculoskeletal presentation (4-7 out of 1000 MSK conditions annually [1], about 1-3% of the general population), often seen between 35-45 years of age in the dominant arm[1].",
"\n\nSmoking, obesity, manual work requiring repetitive loading of wrist extensors and being a tennis player are considered to be risk factors of Tennis Elbow[2].",
"\n\nTennis Elbow has great effects on quality of life as well as participation in work, sports and leisure activities. ",
"Work absenteeism is documented in 30% of Tennis Elbow patients[3].",
"\n\nDespite the fact that tennis players represent 5-10% of the represented cases, the term Tennis Elbow is more widely recognized among physiotherapists, general practitioners and patients than Lateral Epicondylitis.[4]\n\nAlthough up to 90% of presentations are self-limiting, not all experience full recovery and pain and discomfort can persist for up to a year. ",
"Recurrence is also common in Tennis Elbow, about 72% after receiving a corticosteroid injection compared to 9% with a ''wait and see'' approach[5], and around 5% need surgery[2].",
"\n\nPathophysiology\n\nResearch has proven that structural pathology is not present in many clinical presentations of Tennis Elbow. ",
"This is true particularly if Tennis Elbow is considered to be related to tendon pathology. ",
"A multifactorial model has been proposed by researchers to contribute to the related development of pain and disability with psychological factors, central sensitization and/or other CNS-mediated factors potentially playing roles in the onset and prognosis of the condition[2].",
"\n\nCoombes et al [1] proposed a pathophysiological integrative model explaining the development of Tennis Elbow. ",
"The model hypothesizes an integration of local tendon pathology, changes in the pain system, and impairment in the motor system as the factors behind Tennis Elbow. ",
"This could impact on the clinical decisions and research field to understand the nature of the condition and facilitate patients' sub-grouping.",
"\n\nFrom a histological point of view, increased cellularity, an accumulation of ground substance, collagen disorganization, and neurovascular ingrowth are similar to those observed in any other tendinopathy. ",
"In the case of Tennis Elbow this was observed in the deep and anterior fibers of the extensor carpi radialis brevis (ECRB). ",
"In severe presentations, the ECRB is often merged with the lateral collateral ligament (LCL), which fuses with the annular ligament of the proximal radioulnar joint. ",
"These structural changes could be the result of overuse, underuse or a combination of different forces across the tendon insertion. ",
"Both very high strain and low strain levels predispose the tendon to structural changes[1].",
"\n\nSome studies found a link between stress, anxiety[6][7] and while others reported no association[8].",
"\n\nThe presence of neurochemical pain mediators is evident and is believed to be one of the contributing factors to the reduced pain threshold in Tennis Elbow[1].",
"\n\nMuscle weakness is also found in Tennis Elbow. ",
"Pain free gripping was reduced by about 60% compared to non affected side[1], another study found bilateral weakness[6][9] and another reported weakness in the whole upper limb except for the metacarpophalangeal joint muscles[10]. ",
"The last finding suggests Tennis Elbow patients may maintain or increase strength of the finger extensors to compensate for weakness in the wrist extensors[1]. ",
"Tennis players with a Tennis Elbow had significantly less ECRB activities during the early acceleration phase, while greater at ball impact compared with uninjured players. ",
"ECRB also produced less activity in isometric wrist extension and gripping tasks which was reversed with the relief of symptoms suggesting a link between neuromuscular activity and symptoms[11].",
"\n\nCentral sensitization (CS) could be detected clinically starting with a thorough history taking and use of the LANSS pain scale. ",
"There are some information obtained in history relates to the presence of CS such as: hypersensitivity to: bright light, touch, noise, mechanical pressure, medication, temperature. ",
"Sometimes the patient report being uncomfortable to partner hug or wearing sunglasses in buildings can be valuable in detecting CS. ",
"Fatigue, sleep disturbances, unrefreshing sleep, concentration difficulties, swollen feeling (e.g. in limbs), tingling and numbness may be clues for CS, if non present CS is excluded. ",
"If any of these symptoms are present, the clinicians may take it further to examine pain thresholds, sensitivity to touch during manual palpation, sensitivity to vibration, sensitivity to heat and sensitivity to cold at sites removed from the symptomatic area. ",
"Also, assessment of pressure pain thresholds during and following exercise, assessment of joint end feel and Brachial plexus provocation test[12].",
"\n\nExamination\n\nPain provoking tests are the most utilized method of diagnosing Tennis Elbow. ",
"This could be through palpating the lateral epicondyle, resisted extension of the wrist, index finger, or middle finger; and having the patient grip an object[2]. ",
"Mill's Test and Cozen's test can also be used to diagnose the condition.",
"\n\nROM of elbow, wrist and forearm should also be examined along with the accessory motion of the radioulnar, radiohumeral, and humeroulnar joints to detect any underlying stiffness or restriction. ",
"During examination, signs of elbow instability should be noted, such as clicking, loss of control and difficulty with pushing up with the forearm supinated[2].",
"\n\nThe posterolateral rotary drawer test can be used if instability was suspected which may need to be further examined by imaging[2].",
"\n\nOutcome Measures\n\nThe pain-free grip test. ",
"It is is a reliable in monitoring recovery and sensitive measure, however, it should be noted that grip strength is not always impaired in Tennis Elbow and the test may exacerbate the symptoms.",
"\n\nDifferential Diagnosis\n\nDiagnosing Tennis Elbow may be challenging for clinicians because it shares similar clinical presentations with other pathologies such as non specific arm pain, arthritis, radial tunnel syndrome and posterior interosseous nerve entrapment. ",
"Distinguishing Tennis Elbow from other conditions is crucial to prescribe the most appropriate treatment options or refer the patient to a relevant healthcare specialist[2].",
"\n\nIf clicking or locking are present, MRI,CT or magnetic resonance arthrography can be used to detect other pathologies such as loose bodies articular cartilage damage, ligament injury, or elbow synovial fold (plica) syndrome\n\nTendon neovascularisation in LE has been detected with Doppler ultrasound and correlated with degenerative tissue on biopsy. ",
"The absence of both tendon neovascularity and grey-scale changes was shown to rule out Lateral Tennis Elbow as a diagnosis and should prompt further investigation. ",
"Neovascualrity wasn't associated with pain severity or function.",
"\n\nThe content on or accessible through Physiopedia is for informational purposes only. ",
"Physiopedia is not a substitute for professional advice or expert medical services from a qualified healthcare provider. ",
"Read more"
] | {
"pile_set_name": "Pile-CC"
} | [
0,
0,
0.010101010101010102,
0.007462686567164179,
0,
0.005376344086021506,
0.005,
0,
0,
0,
0,
0.0056179775280898875,
0.0078125,
0.01098901098901099,
0.0036101083032490976,
0.008928571428571428,
0.006097560975609756,
0,
0,
0.008064516129032258,
0.012048192771084338,
0,
0,
0,
0,
0.02040816326530612,
0,
0,
0.005780346820809248,
0.005154639175257732,
0,
0,
0.007575757575757576,
0.005434782608695652,
0,
0,
0.010752688172043012,
0,
0.013888888888888888,
0,
0,
0,
0,
0.0051813471502590676,
0,
0,
0.002840909090909091,
0.006097560975609756,
0.015625,
0,
0,
0
] | 0.003651 | 5 |
[
"Carmelit\n\nThe Carmelit ( Arabic: كرمليت) is an underground funicular railway in Haifa, Israel. ",
"Construction started in 1956 and ended in 1959. ",
"It is currently the only underground transit system in Israel (until the expected 2021 opening of Tel Aviv Light Rail). ",
"The Carmelit has closed down for repair on three separate occasions.",
"\n\nSystem\nThe Carmelit, named after Mount Carmel through which it runs, is an underground funicular railway in Haifa. ",
"The difference in elevation between the first and last stations is . ",
"Carmelit cars have a slanted design, with steps within each car and on the station platform. ",
"Since the grade varies along the route, the floor of each car is never quite level, and slopes slightly \"uphill\" or \"downhill\" depending on the location.",
"\n\nThe Carmelit is one of the smallest subway systems in the world, having only four cars, six stations and a single tunnel long. ",
"The four cars operate as two two-car trains, which run on single-track with a short double-track section to allow the trains to pass each other.",
"\n\nThe technology used in the system forces it to have an even number of stations at approximately equal distances. ",
"This means that some stations are not located close to major centers, but rather were situated for technical reasons.",
"\n\nHistory\n\nA rail-based solution to connect Mount Carmel with downtown Haifa was envisioned by the British mandatory authorities. ",
"However, practical talks only began in 1955 under the auspices of then-mayor Abba Hushi. ",
"The French company Compagnie Dunkerquoise d'Entreprises created a detailed plan and proposed to a generous loan for a large part of the project, and an agreement was signed in 1956. ",
"The plan was for a funicular system, and the inauguration took place in 1959, attended by Israeli prime minister David Ben Gurion and the French transport minister Robert Buron among others.",
"\n\nThe Israeli company Solel Boneh carried out the works, which proceeded at a pace of three meters a day, other than a geologically difficult section where a speed of 1.5 meters a day was achieved.",
"\n\nShutdowns\nThe Carmelit was shut down for intensive renovation on December 19, 1986, after 27 consecutive years. ",
"The old rolling stock was taken to a scrapyard near Kfar Masaryk in 1991, after being offered to the Israel Railway Museum which refused it due to high transport costs. ",
"After several delays and failed attempts, renovation work started on October 29, 1990. ",
"The Carmelit finally reopened to the public in early September 1992.",
"\n\nIn March 2015, the Carmelit was closed again due to a faulty cable, and subsequently reopened in July 2015. ",
"At the same time new ticket machines were installed to accommodate the Rav-Kav ticketing system.",
"\n\nOn Saturday, February 4, 2017, a fire erupted in the Paris Square station after working hours. ",
"One of the two trainsets was heavily damaged, as well as parts of the tunnel. ",
"As a result, the line was once more shut down and underwent an upgrade that included replacing both trainsets with new ones (supplied by Doppelmayr's Swiss subsidiary which built the original trainsets), a new control center, and a major refurbishing of the systems and infrastructure. ",
"It reopened in October 2018.",
"\n\nThe Carmelit today\nThe small number of stations means that the Carmelit serves only a small part of Haifa – which was the important population and business center when it was designed. ",
"Nowadays, the vast majority of the city's population does not live near any of the stations, making it used by few only. ",
"There have been talks of extending the tunnels to reach more people, but this has not been done, primarily for economic considerations. ",
"The most widely used public transportation system in the Haifa area consists of Egged buses, which serve most of the city.",
"\n\nHaifa's comptroller wrote in his 2004 report (published in 2005) about the declining use of the Carmelit. ",
"According to the report, the system is used by only 2,000 passengers a day, and has been losing money ever since its reopening in 1992. ",
"The accrued losses between 1992 and 2003 are over ₪191 million.",
"\n\nSince October 31, 2010, taking a bicycle on the Carmelit has been allowed at no additional cost.",
"\n\nAn extensive BRT system called Metronit began operating in Haifa in late 2013. ",
"It was hoped the stops at some of the Carmelit stations would increase ridership on the line.",
"\n\n, the Carmelit is the only subway in Israel. ",
"However, major construction on Tel Aviv's light rail, much of which will be underground, commenced in 2011.",
"\n\nStations\n\nProperties \nThe Carmelit stations are small; entrance halls are at only the two terminal stations.",
"\n\nStations in descending order\n\nOperating hours\n\nGallery\n\nSee also\n Israel Railways\n List of funicular railways\n List of rapid transit systems\n\nReferences\n\nExternal links\n\n \n Map of Carmelit route and area around it (English)\n Pictures of Carmelit stations and cars\n\nCategory:Underground funiculars\nCategory:Underground rapid transit in Israel\nCategory:Transport in Haifa\nCategory:6 ft 6 in gauge railways\nCategory:Funicular railways in Israel\nCategory:Railway lines opened in 1959"
] | {
"pile_set_name": "Wikipedia (en)"
} | [
0.010526315789473684,
0,
0.008333333333333333,
0.014705882352941176,
0.008547008547008548,
0,
0.010752688172043012,
0,
0.007692307692307693,
0,
0,
0,
0.007692307692307693,
0.011235955056179775,
0.005494505494505495,
0.010526315789473684,
0.005076142131979695,
0.008771929824561403,
0.011834319526627219,
0,
0.014705882352941176,
0.00909090909090909,
0,
0,
0,
0.0034965034965034965,
0,
0.0106951871657754,
0,
0,
0.00819672131147541,
0.018518518518518517,
0,
0.015873015873015872,
0.01020408163265306,
0,
0.010752688172043012,
0.02127659574468085,
0,
0.00909090909090909,
0.004158004158004158
] | 0.006274 | 5 |
[
"At 11:53 20/05/2003 -0500, Paul Grosso wrote:\n>However, I note that the XSL spec requires that the value of\n>fo:external-graphic's src property [1] be a <uri-specification>\n>which [2] is:\n>\n> A sequence of characters that is \"url(\", followed by optional\n> white space, followed by an optional single quote (') or double\n> quote (\") character, followed by a URI reference as defined in\n> [RFC2396], followed by an optional single quote (') or double\n> quote (\") character, followed by optional white space, followed by \")\".",
"\nI've tried a few combinations:-)\nhttp://www.dpawson.co.uk/xsl/rfc2396/\nTake your pick.",
"\nThis is one for TAG to wrestle with.",
"\nregards DaveP"
] | {
"pile_set_name": "Pile-CC"
} | [
0.0038314176245210726,
0.011494252873563218,
0,
0
] | 0.003831 | 5 |
[
"from __future__ import absolute_import\n\nfrom ._access import (\n AnonymousRequiredMixin,\n GroupRequiredMixin,\n LoginRequiredMixin,\n MultiplePermissionsRequiredMixin,\n PermissionRequiredMixin,\n StaffuserRequiredMixin,\n SuperuserRequiredMixin,\n UserPassesTestMixin,\n SSLRequiredMixin,\n RecentLoginRequiredMixin\n)\nfrom ._ajax import (\n AjaxResponseMixin,\n JSONRequestResponseMixin,\n JSONResponseMixin,\n JsonRequestResponseMixin\n)\nfrom ._forms import (\n CsrfExemptMixin,\n FormInvalidMessageMixin,\n FormMessagesMixin,\n FormValidMessageMixin,\n MessageMixin,\n SuccessURLRedirectListMixin,\n UserFormKwargsMixin,\n)\nfrom ._other import (\n AllVerbsMixin,\n CanonicalSlugDetailMixin,\n SetHeadlineMixin,\n StaticContextMixin,\n HeaderMixin\n)\nfrom ._queries import (\n OrderableListMixin,\n PrefetchRelatedMixin,\n SelectRelatedMixin\n)\n\n__all__ = [\n 'AjaxResponseMixin',\n 'AllVerbsMixin',\n 'AnonymousRequiredMixin',\n 'CanonicalSlugDetailMixin',\n 'CsrfExemptMixin',\n 'FormInvalidMessageMixin',\n 'FormMessagesMixin',\n 'FormValidMessageMixin',\n 'GroupRequiredMixin',\n 'HeaderMixin',\n 'JSONRequestResponseMixin',\n 'JsonRequestResponseMixin',\n 'JSONResponseMixin',\n 'LoginRequiredMixin',\n 'MessageMixin',\n 'MultiplePermissionsRequiredMixin',\n 'OrderableListMixin',\n 'PermissionRequiredMixin',\n 'PrefetchRelatedMixin',\n 'SelectRelatedMixin',\n 'SetHeadlineMixin',\n 'StaffuserRequiredMixin',\n 'StaticContextMixin',\n 'SuccessURLRedirectListMixin',\n 'SuperuserRequiredMixin',\n 'UserFormKwargsMixin',\n 'UserPassesTestMixin',\n 'SSLRequiredMixin',\n 'RecentLoginRequiredMixin'\n]\n"
] | {
"pile_set_name": "Github"
} | [
0.0011641443538998836
] | 0.001164 | 5 |
[
"{% extends \"!",
"layout.html\" %}\n\n {% block menu %}\n {{ super() }}\n <a href=\"genindex.html\">Index</a>\n <a href=\"py-modindex.html\">Module Index</a>\n {% endblock %}"
] | {
"pile_set_name": "Github"
} | [
0,
0
] | 0 | 5 |
[
"Piles of dead turtle hatchlings are lining Queensland's famous Mon Repos beach amid a heatwave which has pushed the sand's temperature to a record 75 degrees Celsius.",
"\n\nWhile the majority of hatchlings break free from their nests at night when the sand is cooler, those escaping in the day face overheating.",
"\n\n\"They can't sweat, they can't pant, so they've got no mechanism for cooling,\" Department of Environment and Heritage Protection chief scientist Dr Col Limpus said.",
"\n\n\"If they encounter very hot sand they just simply heat up.",
"\n\nThe exact number of deaths is not known at this stage, but it could be in the hundreds. ( ",
"ABC Wide Bay: Jess Lodge )\n\n\"They slow down and that's the end for them.",
"\n\n\"You really only have probably an hour or so in those really hot sands and it's terminal.\"",
"\n\nThe extreme heat is also conducted down to the turtle's nest, pushing the temperature to about 34C, which is approaching the lethal level for incubation.",
"\n\nThat is the hottest temperature recorded in a nest in more than a decade.",
"\n\nSpace to play or pause, M to mute, left and right arrows to seek, up and down arrows for volume. ",
"Watch Duration: 17 seconds 17 s Record temperatures on Mon Repos beach are killing this season's turtle hatchlings.",
"\n\n\"We've got an increased mortality … that we haven't been seeing in years,\" Dr Limpus said.",
"\n\nThe average hatchling survival rate is 85 per cent but due to the heat it is likely to be a lot lower this year.",
"\n\nThe exact number of turtle deaths is not known at this stage, but hundreds have been seen dead on the beach.",
"\n\nThe 1.6-kilometre Mon Repos beach is the most important breeding site for Loggerhead turtles in the South Pacific.",
"\n\nThe average 85 percent survival rate for hatchlings at Mon Repos is expected to be lower this year. ( ",
"ABC Wide Bay: Jess Lodge )\n\nThe majority of the region's turtles are hatched on the beach, some 200,000 in a usual season.",
"\n\nRangers, scientists, volunteers working overtime\n\nThe rangers, scientists and volunteers at Mon Repos have been working around the clock to save as many clutches of hatchlings as they can from the heat.",
"\n\nDeceased turtles in the dunes lead them to the nests where some hatchlings may still be alive beneath the surface and they work quickly to dig them up, separating the dead from the living.",
"\n\nDr Col Limpus has recorded sand temperatures up to 75 degrees Celsius, a record for Mon Repos. ( ",
"ABC Wide Bay: Jess Lodge )\n\nThey are also relocating any new nests to hatchery areas underneath shade cloths, with sand surface temperatures under the shades up to 30 degrees cooler.",
"\n\nRanger Cathy Gatley has been protecting turtles at Mon Repos for 21 years. ( ",
"Supplied: Cathy Gatley )\n\nCathy Gatley is the ranger in charge at the Mon Repos Conservation Park and has been working to protect the turtles on Bundaberg's coast for the past 21 years.",
"\n\nMs Gatley said the heat was keeping the park rangers, volunteers and research crews very busy this year.",
"\n\n\"Any turtle that comes ashore and nests, we're relocating those eggs back into a shade shelter,\" she said.",
"\n\n\"Whereas in the past we would only relocate the eggs if they were down low in danger of being flooded and that's when we'd move them up to a higher spot.\"",
"\n\nDr Limpus said how the turtles respond to the relocation was yet to be seen.",
"\n\nHe said a long-term option might be to introduce more trees to create shade in the dunes for the turtle nests, but for now the shaded shelters were doing the job.",
"\n\n\"This is something we didn't plan for, we've been confronted with a new situation,\" said."
] | {
"pile_set_name": "OpenWebText2"
} | [
0,
0,
0.012121212121212121,
0,
0,
0.027777777777777776,
0,
0,
0,
0,
0,
0,
0,
0,
0.008620689655172414,
0,
0.01639344262295082,
0.004901960784313725,
0,
0.010101010101010102,
0.01098901098901099,
0.012658227848101266,
0.010810810810810811,
0,
0,
0,
0,
0,
0
] | 0.003944 | 5 |
[
"// Copyright 2017 The Go Authors. ",
"All rights reserved.",
"\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.",
"\n\n// Functions to access/create device major and minor numbers matching the\n// encoding used in NetBSD's sys/types.h header.",
"\n\npackage unix\n\n// Major returns the major component of a NetBSD device number.",
"\nfunc Major(dev uint64) uint32 {\n\treturn uint32((dev & 0x000fff00) >> 8)\n}\n\n// Minor returns the minor component of a NetBSD device number.",
"\nfunc Minor(dev uint64) uint32 {\n\tminor := uint32((dev & 0x000000ff) >> 0)\n\tminor |= uint32((dev & 0xfff00000) >> 12)\n\treturn minor\n}\n\n// Mkdev returns a NetBSD device number generated from the given major and minor\n// components.",
"\nfunc Mkdev(major, minor uint32) uint64 {\n\tdev := (uint64(major) << 8) & 0x000fff00\n\tdev |= (uint64(minor) << 12) & 0xfff00000\n\tdev |= (uint64(minor) << 0) & 0x000000ff\n\treturn dev\n}\n"
] | {
"pile_set_name": "Github"
} | [
0,
0,
0.019230769230769232,
0.008064516129032258,
0.012658227848101266,
0.007194244604316547,
0.013043478260869565,
0.00546448087431694
] | 0.008207 | 5 |
[
"Board of Investment (Mauritius)\n\nThe Board of Investment (BOI) is the national investment promotion agency of the Government of Mauritius with the mandate to promote and facilitate investment in the country. ",
"It is the first point of contact for investors exploring business opportunities in Mauritius and the region. ",
"BOI also assists investors in the growth, nurturing and diversification of their business.",
"\n\nWith a view to facilitating the implementation of investment projects and, more importantly, to continuously improve the investment and business climate, BOI works in close collaboration with Government bodies, institutions and private sector companies. ",
" Mauritius capitalized on the sale of strategic coastal land to foreigners through the Property Development Scheme programmes of the Board of Investment.",
"\n\nBOI has an important role of policy advocacy to continuously improve the competitiveness of Mauritius.",
"\n\nThe Board of Investment accompanies investors looking at opportunities in Africa.",
"\n\nThe Board of Investment (BOI) has been awarded the prestigious ISO 9001:2008 Quality Management Certification on 3 December 2013.",
"\n\nReferences\n\nCategory:Investment promotion agencies\nCategory:Government agencies of Mauritius\nCategory:Economy of Mauritius\nCategory:Government agencies established in 2001\nCategory:2001 establishments in Mauritius"
] | {
"pile_set_name": "Wikipedia (en)"
} | [
0.019230769230769232,
0.009174311926605505,
0.011111111111111112,
0.00390625,
0.013071895424836602,
0.019230769230769232,
0.012048192771084338,
0.022900763358778626,
0.009302325581395349
] | 0.013331 | 5 |
[
"That game is fucking terrifying. ",
"I bought it the other day, can't bring myself to keep playing it. ",
"I am so sad. ",
"Which play-through you've been watching? ",
"I think I wanna cheat and see someone else play the game. ",
"xD\n\nAwesome work though! ",
"Decent perspective and beautiful quality of line, great anatomy and proportions. ",
"This is pretty much how I envisioned him too."
] | {
"pile_set_name": "Pile-CC"
} | [
0,
0,
0,
0,
0,
0,
0,
0
] | 0 | 5 |
[
"Staged treatment and acceptability guidelines in early psychosis study (STAGES): A randomized placebo controlled trial of intensive psychosocial treatment plus or minus antipsychotic medication for first-episode psychosis with low-risk of self-harm or aggression. ",
"Study protocol and baseline characteristics of participants.",
"\nIt is now necessary to investigate whether recovery in psychosis is possible without the use of antipsychotic medication. ",
"This study will determine (1) whether a first-episode psychosis (FEP) group receiving intensive psychosocial interventions alone can achieve symptomatic remission and functional recovery; (2) whether prolonging the duration of untreated psychosis (DUP) in a sub-group according to randomisation will be associated with a poorer outcome and thereby establish whether the relationship between DUP and outcome is causative; and (3) whether neurobiological changes observed in FEP are associated with the psychotic disorder or antipsychotic medication. ",
"Baseline characteristics of participants will be presented. ",
"This study is a triple-blind randomized placebo-controlled non-inferiority trial. ",
"The primary outcome is the level of functioning measured by the Social and Occupational Functioning Assessment Scale at 6 months. ",
"This study is being conducted at the Early Psychosis Prevention and Intervention Centre, Melbourne and includes young people aged 15 to 24 years with a DSM-IV psychotic disorder, a DUP less than 6 months and not high risk for suicide or harm to others. ",
"Strict discontinuation criteria are being applied. ",
"Participants are also undergoing three 3-Tesla-MRI scans. ",
"Ninety participants have been recruited and baseline characteristics are presented. ",
"Staged treatment and acceptability guidelines in early psychosis will determine whether antipsychotic medications are indicated in all young people with a FEP and whether antipsychotic medication can be safely delayed. ",
"Furthermore, the relative contribution of psychotic illness and antipsychotic medication in terms of structural brain changes will also be elucidated. ",
"The findings will inform clinical practice guidelines."
] | {
"pile_set_name": "PubMed Abstracts"
} | [
0.003787878787878788,
0,
0,
0.00546448087431694,
0,
0,
0.007692307692307693,
0.003952569169960474,
0,
0,
0,
0.0045662100456621,
0,
0
] | 0.001819 | 5 |
[
"I love Draco and Remus they are my faveorite charactors. ",
"I enjoy writing and drawing is my joy. ",
"my favorite animal is black cats and i love the show Phych. ",
"I hope you like my favorites, because their stories are very good. ",
"My favprite auther has a good story. ",
"Harry Potter rocks"
] | {
"pile_set_name": "Pile-CC"
} | [
0.017543859649122806,
0,
0.016666666666666666,
0,
0,
0.05555555555555555
] | 0.014961 | 5 |
[
"Two French doctors have been accused of racism for suggesting that a potential vaccine for coronavirus should first be tested on people in Africa.",
"\n\nThe comments were made on the French television channel, LCI, during a discussion on Wednesday about COVID-19 trials set to be launched in Europe and Australia to see if the BCG tuberculosis vaccine could be used to treat the virus.",
"\n\nMore:\n\n\"It may be provocative. ",
"Should we not do this study in Africa where there are no masks, no treatment or intensive care, a little bit like it's been done for certain AIDS studies, where among prostitutes, we try things, because we know that they are highly exposed and don't protect themselves?\" ",
"said Jean-Paul Mira, head of the intensive care unit at the Cochin Hospital in Paris.",
"\n\nCamille Locht, research director at France's national health institute, Inserm, agreed: \"You are right. ",
"And by the way, we are thinking of in parallel about a study in Africa using this same approach.\"",
"\n\nIt is totally inconceivable we keep on cautioning this.",
"\n\nAfrica isn’t a testing lab.",
"\n\nI would like to vividly denounce those demeaning, false and most of all deeply racists words.",
"\n\n\n\nHelps us save Africa with the current ongoing Covid 19 and flatten the curve. ",
"pic.twitter.com/41GIpXaIYv — Didier Drogba (@didierdrogba) April 2, 2020\n\nIt did not take long for the backlash to begin on social media.",
"\n\n\"Africa isn't a testing lab,\" Ivorian professional football player Didier Drogba, who used to play for Chelsea, wrote on Twitter. \"",
"I would like to vividly denounce those demeaning, false and most of all deeply racist words.\"",
"\n\nOlivier Faure, of France's Socialist Party, said the marks were hardly a provocation. \"",
"It's not provocation, it's just racism,\" he wrote on Twitter. \"",
"Africa is not the laboratory of Europe. ",
"Africans are not rats!\"",
"\n\nThe anti-racism group SOS Racisme called on France's media regulator, the Conseil Supérieur de L’Audiovisuel (CSA), to formally condemn the remarks.",
"\n\nThe group issued a statement saying, \"No, Africans aren't guinea pigs\", adding that comparison with AIDS and prostitutes was \"problematic\" and \"unwelcome\".",
"\n\nThe organisation said the CSA had not responded to their complaint.",
"\n\n\"It's scandalous to see that not a single regulatory authority has come out to publicly denounce these statements,\" Amar Thioune, a member of SOS Racisme, told Al Jazeera.",
"\n\nMeanwhile, Le Club des avocats au Maroc, a Moroccan lawyers' collective, said it was suing Jean-Paul Mira for racial defamation.",
"\n\n'Distorted video'\n\nOn Twitter, Inserm, Locht's employer, posted a statement accompanied by the hashtag #FakeNews, writing that the remarks were taken out of context.",
"\n\n\"A distorted video, taken from an interview on LCI with one of our researchers about a study on the potential use of the BCG vaccine against COVID-19, is now the subject of erroneous interpretation,\" the statement said.",
"\n\nIt added that Africa \"shouldn't be forgotten or excluded from this research because the pandemic is global\".",
"\n\nMira later apologised in a statement published by his employer.",
"\n\n\"I want to present all my apologies to those who were hurt, shocked and felt insulted by the remarks that I clumsily expressed on LCI this week,\" he said.",
"\n\nIn an interview with the Huffington Post, Mira further clarified: \"Africa could be even more exposed to serious forms of harm because there will be so few masks and little confinement because of societal structure.\"",
"\n\n\"It seemed interesting to me that in addition to France and Australia, an African country could participate in this study which I had never heard of before hearing about it on the show,\" he added.",
"\n\nAfrica is currently the continent least affected by COVID-19, with nearly 7,500 cases and about 320 deaths, though there are fears that the number of undetected cases is low due to a lack of testing.",
"\n\nExperts warn that poor health systems in many African countries could lead to a disaster in the event of a severe coronavirus outbreak."
] | {
"pile_set_name": "OpenWebText2"
} | [
0,
0.008547008547008548,
0,
0,
0.023529411764705882,
0.018867924528301886,
0,
0,
0,
0,
0,
0.014598540145985401,
0.015037593984962405,
0,
0.011235955056179775,
0,
0,
0,
0.006666666666666667,
0,
0.014492753623188406,
0.017341040462427744,
0.015384615384615385,
0.011976047904191617,
0.013574660633484163,
0,
0,
0.00641025641025641,
0.004608294930875576,
0,
0.004975124378109453,
0
] | 0.005851 | 5 |
[
"Rapid Title Loans Woodruff AZ\n\nQED Financial provides Woodruff title loans in addition to solutions for state residents requiring fast money without complications. ",
"Our team prides itself in offering you simple and fast solutions in case you need a rapid strategy to your cash challenges. ",
"Our more efficient procedure will put the cash you require in your hands really quick. ",
"Our internet finance application basically takes a matter of minutes to fill out and it’s processed instantaneously! ",
"For you to grab your stress free title loan approval immediately, check out the safe web based auto title loan application or even phone us!",
"\n\nVery Competitive Interest Rates On Car Title Loans In AZ\n\nWe believe in earning your business at this time and offering you reliable services that delivers fast financial resources for those prospective requirements. ",
"You will quickly realize our title loans service delivers the most competitive rates with regard to auto title loans in Woodruff and so this shows that you will have more money in your pocket. ",
"Our state auto title loan organization is here so that you can succeed! ",
"We do everything possible to keep the entire program very simple as well as easy to understand.",
"\n\nEasy Financial Solutions for Individuals In and Around Woodruff\n\nContinuing to keep things easy for customers is always importance #1! ",
"Our team believes in keeping the process simple, clear to understand and fast. ",
"To get title loans Woodruff Arizona residents may either apply online or just give us a call. ",
"Qualifying is definitely fast and easy implementing one of these particular options. ",
"After your approval you will need to take your vehicle, AZ automobile title as well as Id to one of the nearby locations. ",
"A team member will quickly take a look at your automobile and loan the actual cash needed in accordance with the value of your vehicle.",
"\n\nBenefits Of Our Title Loans Woodruff AZ\n\nBetter Loan Rates\n\nAbsolutely No Problems\n\nZero Hidden Fee’s or Expenses\n\nSimple Qualifying\n\nSimple Payment Choices\n\nSame Day Funds\n\nQuick Reliable Service\n\nSubmit Your Application Online in Minutes\n\nThis AZ Staff Is Currently Waiting Now To Approve Your Personal Woodruff Title Loan Right Now!",
"\n\nIf you want cash flow at the moment, our staff is eager and ready to assist you. ",
"Phone us or simply go to the secure and safe online application get an approval now!",
"\n\nMost of our products can be found all over Az and readily accessible to you using your own discretion. ",
"Please make sure to take loans responsibly. ",
"All finance applications regarding title loan happen to be accepted either online, by phone or even in person. ",
"For additional information please call us via the number shown above."
] | {
"pile_set_name": "Pile-CC"
} | [
0.024390243902439025,
0,
0,
0,
0,
0.0045662100456621,
0,
0,
0,
0.0072992700729927005,
0,
0.010638297872340425,
0,
0.00819672131147541,
0,
0.011869436201780416,
0,
0,
0.009523809523809525,
0,
0,
0
] | 0.003477 | 5 |
[
"Q:\n\nHow can individual photons have different amounts of energy?",
"\n\nIf photon is an elementary particle, how can different photons have different energy, if $E=mc^2$ and all photons have (or don't have) the same mass and the speed of photon is constant shouldn't it mean all photons have the same amount of energy?",
"\n\nA:\n\n$E = mc^2$ is only true for particles at rest (momentum $p = 0$). ",
"The full formula is $$E = \\sqrt{m^2c^4 + p^2c^2}$$.\nIn these formulas, $m$ is the rest mass (or just \"mass\"). ",
"Photons don't have mass, so for them the formula becomes $E = pc = \\frac{hc}{\\lambda} = h\\nu$ where $\\nu$ is the frequency.",
"\nTherefore, the energy of a photon is proportional to its frequency.",
"\n\nA:\n\nI know that everyone recognizes $E = mc^2$ as the emblem of relativity, but the expressions is either incomplete or only applies to massive particles (depending on how you understand the $m$ that appears there).",
"\nThe full and complete expression is\n$$ (mc^2)^2 = E^2 - (pc)^2 \\,,$$\nwhere $m$ should be understood to be the invariant rest mass.",
"\nThis allows you to recover either interpretation of the shorter form for massive particles and $E = pc$ for massless particles.",
"\n\n"
] | {
"pile_set_name": "StackExchange"
} | [
0,
0,
0,
0,
0,
0,
0,
0.007633587786259542,
0,
0
] | 0.000763 | 5 |
[
"Mikhail Yakovlevich Suslin\n\nMikhail Yakovlevich Suslin (; Krasavka, Saratov Oblast, November 15, 1894 – 21 October 1919, Krasavka) (sometimes transliterated Souslin) was a Russian mathematician who made major contributions to the fields of general topology and descriptive set theory.",
"\n\nHis name is especially associated to Suslin's problem, a question relating to totally ordered sets that was eventually found to be independent of the standard system of set-theoretic axioms, ZFC.",
"\n\nHe contributed greatly to the theory of analytic sets, sometimes called after him, a kind of a set of reals that is definable via trees. ",
"In fact, while he was a research student of Nikolai Luzin (in 1917) he found an error in an argument of Lebesgue, who believed he had proved that for any Borel set in , the projection onto the real axis was also a Borel set.",
"\n\nSuslin died of typhus in the 1919 Moscow epidemic following the Russian Civil War.",
"\n\nPublications\n\nSuslin only published one paper during his life: a 4-page note.",
"\n\nSee also\n\nReferences\n\nCategory:1894 births\nCategory:1919 deaths\nCategory:20th-century mathematicians\nCategory:Russian mathematicians\nCategory:Set theorists"
] | {
"pile_set_name": "Wikipedia (en)"
} | [
0.007042253521126761,
0.005076142131979695,
0,
0.013392857142857142,
0,
0,
0
] | 0.003644 | 5 |
[
"Businesses in Southbank\n\n06 May 2020\n\nWith COVID-19 forcing many Southbank businesses to adapt the way they work, one developer is embracing the challenge and transforming the way it communicates with customers.",
"\n\nMelbourne Square developer OSK Property has shifted its typical property purchasing process by bringing many of the elements online.",
"\n\nThe developer has launched a series of virtual tours of completed apartments in collaboration with CBRE and investor networks, as well as digitised the contracts process with e-contracts.",
"\n\nAlong with its virtual tours, OSK Property will ferry brochures, floor plans and materials boards directly to buyers, in addition to hosting private one-to-one appointments.",
"\n\nOSK property sales and marketing director Scott Jessop said these offers catered to the changing preferences of customers, who were now much more digitally savvy, while also providing new options in the current climate.",
"\n\n“At the end of the day we are here to support our customers and what we are hearing is that people want more options when purchasing and enquiring about property – in the current environment and even before COVID-19,” he said.",
"\n\n“It is a simple fact that customers live their lives online more than ever and so, as a developer, we have sought to find ways to bring our apartments to them in new ways.”",
"\n\nIt is an initiative that seems to be paying dividends.",
"\n\nMelbourne Square commenced its first round of settlements in early 2020 and has a range of settlements scheduled over the course of the year. ",
"While a small amount of apartments remain for sale, Mr Jessop said they were still receiving interest.",
"\n\nIn March alone, the team made more than $6.5 million in sales, with buyers still enquiring.",
"\n\nCBRE director Andrew Leoncelli said Melbourne’s real estate market had a good track record of emerging from regular property cycles and even major economic events, such as the global financial crisis, intact.",
"\n\n“A mortgage has never been cheaper in Australia in living history and people with cash deposits are leveraging that and still purchasing property,” he said.",
"\n\n“Foreign buyers stand to save up to 30 per cent compared to what they would have paid two years ago given the fall in the Australian dollar. ",
"The Australian property market is still open for business.”",
"\n\nMr Jessop said Melbourne Square welcomed customer feedback on how else they could innovate and believed COVID-19 would drive greater innovation in digital marketing in the property industry.",
"\n\n“Australian consumers will emerge from COVID-19 with new habits, turning to digital first, more so than they ever have. ",
"People will come to expect the kind of access they are getting now via virtual tours, live streams and value-added content,” he said\n\n“As an industry out, of COVID-19 we will need to innovate the customer experience at a at a scale we haven’t previously – particularly in relation to digital and content.”",
"\n\n“There will always be a place for beautiful display suites, but I think they will play a different role in the customer journey. ",
"It is impossible to say what will come, but digital content isn’t going anywhere.” •"
] | {
"pile_set_name": "Pile-CC"
} | [
0,
0.007462686567164179,
0,
0.005714285714285714,
0.004524886877828055,
0,
0,
0,
0,
0.00980392156862745,
0,
0.004761904761904762,
0,
0,
0,
0,
0,
0,
0,
0
] | 0.001613 | 5 |
[
"Season 10 of The Bachelorette is set to premiere on ABC on Monday May 19th, which is less than a week away! ",
"Spoilers for Andi Dorfman’s season of The Bachelorette are already starting to roll in, courtesy of blogger and Bachelor spy Reality Steve. ",
"Reality Steve completely botched Season 9 of The Bachelorette and incorrectly predicted Desiree Hartsock’s winner, however he redeemed himself when he spoiled Juan Pablo’s season of The Bachelor down to every single minor detail.",
"\n\nAccording to The Bachelorette spoilers for Season 10, fans are in for an action-packed season premiere on May 19th. ",
"Last season during The Bachelor, fans were a little disappointed that the women’s limo entrances weren’t really up to par. ",
"Except for a handful of creative bachelorettes, most of them just climbed out of the limo and introduced themselves to Juan Pablo. ",
"During Season 10 of The Bachelorette, Andi’s bachelors will be true to Bachelor tradition and make their grand limo arrivals quirky.",
"\n\n25 guys arrive at the Bachelor Mansion in hopes of winning over Andi Dorfman. ",
"By the end of the first Rose Ceremony, there will only be 19 bachelors remaining. ",
"For the first time in Bachelorette history, Andi Dorfman’s father will actually be present during opening night and will help Andi weed out the weirdos before her first Rose Ceremony.",
"\n\nSo, the Bachelors will not only have to impress Andi but her father as well during the cocktail party. ",
"According to Reality Steve, some of the limo arrivals include a bachelor named Cody showing off his inner he-man by pushing his limo up to the Bachelor Mansion. ",
"Eric Hill, the contestant that passed away after a paragliding incident, gifts Andi two dolls that a girl he met in the Andes Mountain made for her. ",
"One bachelor named Bradley sings a song for Andi when he arrives, and a few bachelors bring Andi cookies and other sweet treats.",
"\n\nRemember Chris Bukowski? ",
"Chris appeared in Season 8 of The Bachelorette and was sent packing by Emily Maynard after his hometown date. ",
"After Emily dissed Bukowski, he appeared on The Bachelor spin-off series Bachelor Pad, and hooked up with three different Bachelor alums, earning himself quite the reputation among Bachelor Nation. ",
"Well, according to Reality Steve, Bukowski shows up at Bachelor Mansion the night of the limo arrivals and announces he wants to join Andi’s season of The Bachelorette. ",
"Andi has producers turn him away at the gate, and refused to allow him into the mansion. ",
"Apparently, she watched Bachelor Pad.",
"\n\nSo, Bachelor fans, how pumped are you for the Season 10 premiere of The Bachelorette? ",
"Do you have any favorites yet? ",
"And what about Andi dissing Chris Bukowski? ",
"Do you think she should have given him a chance? ",
"Let us know what you think in the comments below, and don’t forget to check CDL regularly for more Bachelorette spoilers."
] | {
"pile_set_name": "Pile-CC"
} | [
0.018518518518518517,
0.02142857142857143,
0.013100436681222707,
0,
0.008130081300813009,
0,
0.007575757575757576,
0.0125,
0,
0.01092896174863388,
0.01904761904761905,
0.018633540372670808,
0.006711409395973154,
0.0234375,
0.037037037037037035,
0.02727272727272727,
0.020202020202020204,
0.029585798816568046,
0.011235955056179775,
0.02702702702702703,
0.022727272727272728,
0,
0.045454545454545456,
0,
0.008264462809917356
] | 0.015553 | 5 |
[
"Chern (disambiguation)\n\nChern may refer to:\nShiing-Shen Chern (1911–2004), Chinese-American mathematician\nChern class, a type of characteristics class associated to complex vector bundles; named after Shiing-Shen Chern\nChern, Russia, several inhabited localities in Russia\nChern, former name of Chernivtsi, Ukraine"
] | {
"pile_set_name": "Wikipedia (en)"
} | [
0.0031847133757961785
] | 0.003185 | 5 |
[
"Hot Topics on Qin Shi Huang Mausoleum\n\nAmong all the imperial mausoleums, the Mausoleum of the Emperor Qin Shi Huang features the longest construction time, largest number of labors and most gigantic project. ",
"The project started immediately after the emperor ascended to the throne. ",
"The construction can be divided into three stages. ",
"The first stage lasted for 26 years from the accession of the emperor to the unification of China. ",
"In this stage, the foundation of the mausoleum such as the dimension and basic pattern were identified. ",
"The second stage lasted for nine years from the unification of China to the 35th year of Qin Shi Huang's rule. ",
"In this stage, the large-scale construction project was completed. ",
"The third stage lasted from the 35th year of Qin Shi Huang's rule to the winter of the second year of the 2nd Qin Emperor Hu Hai's rule. ",
"The remaining part of the project and the earth-up were finished. ",
"The whole project took as long as 37 or 38 years, which is even eight years longer than the construction of the Great Pyramid.",
"\n\nQin Terracotta Warriors\n\nStatues of Laborers at Work\n\nWas the cemetery park built with Xianyang (Qin's capital) as a model?",
"\n\nYes, it was built according to the layout of Xianyang City, the ruling center of the Empire. ",
"Qin Shi Huang wanted to bring the aboveground palace to the underground kingdom to continue his rule and luxuary life. ",
"The sites of the resting hall, officials' room and park in the inner city and the horse skeletons in the outer city that were found in recent years were all the component of the royal palace of the Emperor when he was alive. ",
"The inner and outer cities were built by the capital Xianyang, and the underground palace was built by imitating the universe, all reflecting the ancient burial concept, that is, to treat death as life.",
"\n\nWho presided over the construction of the Mausoleum of the Emperor Qin Shi Huang?",
"\n\nAccording to the Historical Book, Li Si, the prime minister of Qin Dynasty, presided over the construction of the Mausoleum of the Emperor Qin Shi Huang. ",
"Li Si, due to his extraordinary talents, was always trusted and appreciated by the Emperor. ",
"Before took over the prime minister, he had participated in the charge of the construction of the mausoleum. ",
"After became the prime minister, he formally presided over the construction work. ",
"The contribution of Li Si to the mausoleum is greatest, that is to explain why Li Si is the only one to be recorded in the Historical book as the person who presided over the tomb construction.",
"\n\nHowever, many other important figures in Qin history were once also in charge of the construction work. ",
"They were Zhuang, Wang Wan, Wei Lin and Lu Buwei, all of whom were prime ministers besides Li Si in Qin Dynasty. ",
"The prime minister was the chief executive of the country second only to the emperor. ",
"Therefore, the decision of ordering prime ministers to take in charge of the construction work deeply reflects the great attention from the country to the Mausoleum of the Emperor Qin Shi Huang.",
"\n\nplease tell me about the chariots and horses, how they were reproduced and sold\n\ndoes the chariot have a driver and 4 horses and is it bronze\n\nAnswers (1)\n\nAnswered by Jack from CHINA | Jun. 02, 2011 22:21\n\n02Reply\n\nDo you mean the chariots sold in the souvenir stores out of the museum? ",
"They are just reproduction of the real ones exhibited in the museum by the artists. ",
"The appearance of the chariots is almost the same with the real one, but even the high-quality ones are only coated with a layer of copper.",
"\n\nAsked by Mr.teresa cambridge from USA | Mar. 17, 2011 12:37Reply\n\nWas the location of the tomb of the first Chinese Emperor Qin known prior to the discovery of the Terra Cotta Warriors in 1974? ",
"And if the location of the tomb was known prior to 1974, when was the tomb discovered?"
] | {
"pile_set_name": "Pile-CC"
} | [
0.014354066985645933,
0,
0,
0,
0,
0.009009009009009009,
0,
0.021897810218978103,
0,
0,
0.016,
0,
0.008403361344537815,
0,
0,
0.012048192771084338,
0.02564102564102564,
0.021739130434782608,
0,
0,
0.010362694300518135,
0.009433962264150943,
0.035398230088495575,
0,
0.005154639175257732,
0.0034482758620689655,
0,
0,
0.01020408163265306,
0
] | 0.00677 | 5 |
[
"Not Found\n\nThe requested URL /2013/09/26/rsqdmfsg-sqmd-et/ was not found on this server."
] | {
"pile_set_name": "OpenWebText2"
} | [
0.011363636363636364
] | 0.011364 | 5 |
[
"Takashi Inagaki\n\nis a Japanese actor and voice actor.",
"\n\nFilmography\n\nFilm\n Zassô no yô na inochi (1960) - Gorô Kanzaki\n Jamamono wa kese (1960) - Teppei Tanaka\n Kurenai no umi (1961)\n B.G. monogatari: nijusai no nikki (1961)\n Ankokugai gekimetsu meirei (1961) - Hasegawa\n Ashita aru kagiri (1962)\n Nippon musekinin jidai (1962)\n Kyomo ware ozorami ari (1964)\n Hadaka no jûyaku (1964) - Yamauchi\n None but the Brave (1965) - Pvt. ",
"Ishi\n\nTelevision animation\nKobo-chan (????) (",
"Iwao Sansen)\nSaishū Heiki Kanojo (2002) (Akemi's father) (ep. ",
"10)\nTaiyō no Mokushiroku (????) (",
"Takuma Yanagi)\nYakitate!! ",
"Japan (2005) (Gaia) (ep. ",
"29)\nGolgo 13 (2008) (Coleman) (ep. ",
"39)\nSoul Eater (2008-2009) (Mosquito)\n\nAnimated films\nThe Saga of Tanya the Evil (2019)\n\nVideo games\nKingdom Hearts II (2005) (Yen Sid)\nKingdom Hearts Birth by Sleep (2010) (Yen Sid)\nKingdom Hearts Re:coded (2010) (Yen Sid)\nKingdom Hearts 3D: Dream Drop Distance (2012) (Yen Sid)\nEpic Mickey (????) (",
"Yen Sid)\nEpic Mickey 2: The Power of Two (2013) (Yen Sid)\nBerserk and the Band of the Hawk (2016) (Godo)\nKingdom Hearts III (2019) (Yen Sid)\n\nDubbing roles\n\nLive-action\nDonald Sutherland\nThe Pillars of the Earth (Earl Bartholomew)\nThe Hunger Games (President Coriolanus Snow)\nThe Best Offer (Billy Whistler)\nThe Hunger Games: Catching Fire (President Coriolanus Snow)\nThe Hunger Games: Mockingjay – Part 1 (President Coriolanus Snow)\nThe Hunger Games: Mockingjay – Part 2 (President Coriolanus Snow)\nMichael Gambon\nPlunkett & Macleane (Lord Gibson)\nCharlotte Gray (Levade)\nHigh Heels and Low Lifes (Kerrigan)\nLayer Cake (Eddie Temple)\nThe Good Shepherd (Dr. Fredericks)\nBrian Cox\nX2 (William Stryker)\nMatch Point (Alec Hewett)\nRise of the Planet of the Apes (John Landon)\nX-Men: Days of Future Past (William Stryker)\nMorgan (Jim Bryce)\nAlexander (Ptolemy I Soter (Anthony Hopkins))\nAlice in Wonderland (Jabberwocky)\nArgo (Lester Siegel (Alan Arkin))\nArmageddon (2004 NTV edition) (President of the United States (Stanley Anderson))\nBefore the Devil Knows You're Dead (Charles Hanson (Albert Finney))\nBen-Hur (2003 TV Tokyo edition) (Quintus Arrius (Jack Hawkins))\nBruce Almighty (Jack Baylor (Philip Baker Hall))\nChocolat (Comte de Reynaud (Alfred Molina))\nDamages (Hollis Nye (Philip Bosco))\nDamo (Jung Pil-joon (Jung Wook))\nDangerous Beauty (Domenico Venier (Fred Ward))\nEastern Promises (Semyon (Armin Mueller-Stahl))\nElizabeth I (William Cecil, 1st Baron Burghley (Ian McDiarmid))\nEnd of Days (Father Kovak (Rod Steiger), Businessman (Steve Kramer))\nER (Doctor Donald Anspaugh (John Aylward))\nFrom Russia with Love (2006 DVD edition) (Ernst Stavro Blofeld (Anthony Dawson)))\nFrost/Nixon (Richard Nixon (Frank Langella))\nGet Smart (The President (James Caan))\nThe Golden Compass (Magisterial Emissary (Derek Jacobi))\nThe Great Escape (2000 TV Tokyo edition) (Sandy MacDonald (Gordon Jackson))\nHitchcock (Alfred Hitchcock (Anthony Hopkins))\nI Spy (Arnold Gundars (Malcolm McDowell))\nInsomnia (2006 TV Tokyo edition) (Chief Nyback (Paul Dooley))\nThe Legend of Bagger Vance (Narrator / Old Hardy Greaves (Jack Lemmon))\nLord of War (Simeon Weisz (Ian Holm))\nMiss Peregrine's Home for Peculiar Children (Abraham \"Abe\" Portman (Terence Stamp))\nMonk (Doctor Neven Bell (Héctor Elizondo))\nOcean's Twelve (2007 NTV edition) (Gaspar LeMarc (Albert Finney))\nPanic Room (2004 TV Asahi edition) (Stephen Altman (Patrick Bauchau))\nPromised Land (Frank Yates (Hal Holbrook))\nRoswell (River Dog (Ned Romero))\nSpider-Man (General Slocum (Stanley Anderson))\nStar Wars: Episode III – Revenge of the Sith (Palpatine (Ian McDiarmid))\nThe Sound of Music (50th Anniversary edition) (Herr Zeller (Ben Wright))\nThe Sum of All Fears (2004 Fuji TV edition) (National Security Advisor Gene Revell (Bruce McGill))\nSuperman Returns (Perry White (Frank Langella))\nTerminator 3: Rise of the Machines (2005 NTV edition) (Dr. Peter Silberman (Earl Boen))\nTitanic (Fuji TV and NTV editions) (Spicer Lovejoy (David Warner))\nTokyo Trial (William Patrick (Paul Freeman))\nTusk (Howard Howe (Michael Parks))\nWestworld (Robert Ford (Anthony Hopkins))\nYou Only Live Twice (2006 DVD edition) (Ernst Stavro Blofeld (Donald Pleasence))\n\nAnimation\nDisney's House of Mouse (Magic Mirror)\nMegamind (Warden)\nLego Star Wars: The Empire Strikes Out (Palpatine)\nLego Star Wars: The Padawan Menace (Darth Sidious)\nStar Wars: The Clone Wars (Palpatine)\nStar Wars Rebels (Palpatine\\Darth Sidious)\n\nReferences\n\nExternal links\n Home page\n \n \n\nCategory:1937 births\nCategory:Japanese male film actors\nCategory:Japanese male voice actors\nCategory:Living people"
] | {
"pile_set_name": "Wikipedia (en)"
} | [
0.018867924528301886,
0.005333333333333333,
0.022222222222222223,
0.03225806451612903,
0.030303030303030304,
0.038461538461538464,
0,
0.02857142857142857,
0.03,
0.03608104357479878
] | 0.02421 | 5 |
[
"This study addressed the problem that no formal evaluation of a P-12 Washington state school district’s change from a traditional hierarchical district organizational structure to a three-region organizational structure ...\n\nThe purpose of this applied dissertation was to examine whether focused teacher professional development in the area of literacy correlated to increased student academic performance in Alberta, Canada. ",
"This research study ...\n\nWomen continue to be underrepresented in top level management roles in spite of their progress in the labor market and educational attainment (Eagly & Carli, 2007). ",
"The gender gap in leadership is true in most of the ...\n\nThis qualitative applied research study addressed the challenges public school principals in rural school communities face with regard to retention of provisional teachers. ",
"The two research questions that guided this study ...\n\nMexico’s new business graduates are facing the problem of an extensive job-search, which impacts employability of new graduates because only 60% of them can obtain a job during the first year after graduation (Universia ...\n\nDespite an increase in the number of women obtaining senior leadership positions, women continue to be underrepresented in school district superintendencies (Muñoz, Mills, Pankake, & Whaley, 2014; T. Wallace, 2015). ",
"In ...\n\nThe current American workforce is at a crossroads due to the number of Baby Boomers either retiring or on the cusp of retirement. ",
"For many organizations, this cohort possesses knowledge and experiences that can be lost if ...\n\nNursing education program leaders face many obstacles in recruiting nurses to be instructors. ",
"The purpose of this qualitative, phenomenological study was to understand how and why nurses choose a career in education. ..."
] | {
"pile_set_name": "Pile-CC"
} | [
0.00234192037470726,
0.005263157894736842,
0,
0.006048387096774193,
0,
0,
0
] | 0.00195 | 5 |
[
"Viktor Kuznetsov (swimmer)\n\nViktor Aleksandrovich Kuznetsov (, born 21 May 1961) is a former backstroke swimmer from the Soviet Union. ",
"He won two silver medals at the boycotted 1980 Summer Olympics in Moscow, USSR.",
"\n\nExternal links\n \n \n \n\nCategory:1961 births\nCategory:Living people\nCategory:Russian male swimmers\nCategory:Soviet male swimmers\nCategory:Male backstroke swimmers\nCategory:Swimmers at the 1980 Summer Olympics\nCategory:Olympic swimmers of the Soviet Union\nCategory:Olympic silver medalists for the Soviet Union\nCategory:Place of birth missing (living people)\nCategory:European Aquatics Championships medalists in swimming\nCategory:Medalists at the 1980 Summer Olympics\nCategory:Olympic silver medalists in swimming\nCategory:Universiade medalists in swimming\nCategory:Universiade bronze medalists for the Soviet Union"
] | {
"pile_set_name": "Wikipedia (en)"
} | [
0.022222222222222223,
0,
0.004878048780487805
] | 0.009033 | 5 |
[
"Mainstream media clouds issue of vaccinations and exemptions\n\nMassachusetts doesn't allow for philosophical exemptions, as claimed by Leamanczyk\n\nWhooping cough vaccines making disease more virulent\n\n(NaturalNews) Unvaccinated children are supposedly the cause, according to state health officials, of a recent whooping cough outbreak that occurred in the posh Cape Cod area of Massachusetts. ",
"But as reported by, all of the children affected by the outbreak were already vaccinated, proving once again that vaccines don't really work.",
"Some 15 children at Falmouth High School reportedly came down with the respiratory illness, which also goes by the name pertussis, sparking a wave of panic about a corresponding increase in vaccine exemptions. ",
"But as usual, nobody affected by the outbreak was unvaccinated, and no matter how hard the media tries to spin the issue, those who were vaccinated were not protected.",
"Reporting for, I-Team correspondent Lauren Leamanczyk towed the pro-vaccine line with accusations that vaccine exemptions triggered the outbreak. ",
"Undisclosed data she apparently found reveals that vaccine exemptions have increased fourfold over the past 25 years, which public health officials say increases the risk of an outbreak.",
"This supposed correlation proves nothing, of course, as correlation does not imply causation. ",
"But when vaccines are involved, any deviation from the standard vaccine protocol, which is basically to take whatever the government says is good for you, becomes the automatic scapegoat when an outbreak occurs.",
"In her story, Leamanczyk quotes the words of Dr. Sharon Daly, Chief of Pediatrics at Cape Cod Hospital, who declares that outbreaks increase when vaccination rates decrease. ",
"The implication, naturally, is that the Falmouth outbreak was triggered by unvaccinated children.",
"But a few paragraphs later, Leamanczyk fesses up to the fact that all of the affected children who developed whooping cough had previously been vaccinated for it. ",
"Based on this fact alone, it is clear that whooping cough vaccines don't work, as every child who had been vaccinated should have been protected.",
"Even if some of the unvaccinated children at the school acted as \"carriers\" for the disease, a claim often made by pro-vaccine zealots, this only further reinforces that whooping cough vaccines are a failure. ",
"If unvaccinated children don't contract whooping cough while vaccinated children do, then there is no rational basis for continuing the vaccine program.",
"Another failure in Leamanczyk's article involves the type of exemptions supposedly responsible for the outbreak. ",
"She suggests that the rise in philosophical exemptions is the culprit, but Massachusetts doesn't even allow for philosophical exemptions: only religious and medical exemptions are permitted in the Bay State!This might seem like a minor discrepancy, but it is the basis of Leamanczyk and the health department's argument that exemptions are the cause of the outbreak . ",
"Perhaps she meant to say medical or religious exemptions, but this major factual error calls into question the entire premise of the article, which nonsensically blames unvaccinated children for spreading disease to vaccinated children.",
"Vaccines either work or they don't. ",
"Period. ",
"Blaming unvaccinated individuals for spreading disease to vaccinated individuals makes no sense, and only further exposes the vaccine agenda for what it is: a complete myth.",
"If anything, vaccinated individuals are actually the ones responsible for spreading disease. ",
"In the case of whooping cough, a study out of the Netherlands found that whooping cough has mutated genetically and become more virulent as a result of whooping cough vaccines, which would explain why outbreaks are escalating.",
"Another study published in the journaladmits that the vaccine strategy \"[has] not completely eradicated strains of the bacteria,\" but rather led to \"an increase in diversity,\" meaning deadlier strains that are more virulent and perhaps more contagious."
] | {
"pile_set_name": "OpenWebText2"
} | [
0.005089058524173028,
0,
0.004761904761904762,
0,
0.00684931506849315,
0,
0,
0,
0.005747126436781609,
0.010309278350515464,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
] | 0.001424 | 5 |
[
"How many cytological examinations should be performed for the diagnosis of malignant biliary stricture via an endoscopic nasobiliary drainage tube?",
"\nThe sensitivity of bile cytology is recognized as being low. ",
"Repeating cytological sampling is likely to improve the sensitivity. ",
"The aim of this study is to determine the optimal number of repeated cytological sampling of bile obtained via an endoscopic nasobiliary drainage (ENBD) tube for the diagnosis of malignant biliary stricture. ",
"Ninety-eight patients with malignant biliary stricture who underwent ENBD were enrolled. ",
"Diagnoses included bile duct carcinoma (n = 53), pancreatic carcinoma (n = 28), carcinoma of the major papilla (n = 8), gallbladder carcinoma (n = 6), and hepatocellular carcinoma (n = 3). ",
"Bile was aspirated via an ENBD tube once a day and immediately evaluated cytologically. ",
"The median number of cytological samplings via an ENBD tube was 2.8 times (range, 1-10). ",
"In 40 of 98 patients with malignant biliary stricture, cytology was positive at the first cytological sampling (sensitivity 40.8%). ",
"Cytology was cumulatively positive in 71 of 98 patients (sensitivity 72.4%) from which repeated samples were taken. ",
"In 71 patients with positive cytology, correlation of the positive rate and the number of cytological samplings performed was investigated. ",
"In 68 of 71 (95.8%) patients with positive cytology, positive results were obtained by or at the sixth examination. ",
"Bile cytology via an ENBD tube is an easy method, and has been shown to have relatively high sensitivity. ",
"The optimal number of repeated cytological samplings using bile obtained via an ENBD tube for the diagnosis of malignant biliary stricture was concluded to be six."
] | {
"pile_set_name": "PubMed Abstracts"
} | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
] | 0 | 5 |
[
"Princess Isabella of Croÿ\n\nPrincess Isabella Hedwig Franziska Natalie of Croÿ (27 February 1856 – 5 September 1931) was the daughter of Rudolf, Duke of Croÿ and Princess Natalie of Ligne.",
"\n\nBiography\n\nMarriage and issue\n\nShe married Archduke Friedrich, Duke of Teschen on 8 October 1878. ",
"They had eight daughters and one son:\n\n Maria Christina, Archduchess of Austria-Teschen (1879–1962), married Prince Emanuel of Salm-Salm\n Maria Anna, Archduchess of Austria-Teschen (1882–1940), married Elias, Duke of Parma\n Maria Henrietta, Archduchess of Austria-Teschen (1883–1956), married Prince Gottfried of Hohenlohe-Waldenburg-Schillingsfürst\n Natalie Maria, Archduchess of Austria-Teschen (1884–1898)\n Stephanie Maria Isabelle, Archduchess of Austria-Teschen (1886–1890)\n Gabriele Maria Theresia, Archduchess of Austria-Teschen (1887–1954)\n Isabella, Archduchess of Austria-Teschen (1888–1973), married Prince Georg of Bavaria\n Maria Alice, Archduchess of Austria-Teschen (1893–1962), married Baron Friedrich von Waldbott-Bassenheim\n Albrecht Franz, Archduke of Austria, Duke of Teschen (1897–1955)\n\nArchduke Franz Ferdinand\nIn the mid-1890s, the heir to the Austro-Hungarian throne, Archduke Franz Ferdinand of Austria began visiting Isabella and Friedrich's home. ",
"At first, it was assumed that he was there to court one of their many daughters. ",
"Eventually, it was discovered that in fact he was courting Countess Sophie Chotek, a lady-in-waiting to Archduchess Isabella.",
"\n\nIsabella became infuriated that Franz Ferdinand had not singled out one of her eight daughters as his bride and future empress; as a result she engaged in a crusade to thwart the marriage of Franz Ferdinand and Sophie. ",
"Sophie was dismissed from service, thus beginning an ongoing conflict between Friedrich and Franz Ferdinand, who married Sophie in 1900. ",
"The marriage was morganatic; Sophie was subjected to the indignities of a much lower rank at court than that of her husband, and none of their children could succeed to their father's dynastic honours—all chiefly as a result of Isabella's machinations.",
"\n\nA decade later, Isabella created a similar furore when her nephew, Karl, 13th Prince von Croÿ, sought to marry Nancy Leishman, the charming young daughter of John George Alexander Leishman, United States Ambassador to Germany, the former president of Carnegie Steel. ",
"The Archduchess felt that Nancy, being an American and a commoner, was not an appropriate spouse for a prince of Croÿ. ",
"Karl and Nancy were wed, nonetheless; today their grandson is the present Duke of Croÿ.",
"\n\nHonours\nIsabella received the following awards:\n Order of Elizabeth, Dame Grand Cordon (Austria-Hungary)\n Order of the Starry Cross, Dame (Austria-Hungary)\n Order of Merit of the Red Cross, 1st Class with War Decoration (Austria-Hungary)\n Sovereign Military Order of Malta, Dame Grand Cross of Honour and Devotion, with Distinction for Jerusalem\n Order of Aftab in Diamonds (Persia)\n Order of Queen Maria Luisa, Dame (Spain)\n Order of Theresa, Dame of Honour (Kingdom of Bavaria)\n Order of Saint Elizabeth, Dame (Kingdom of Bavaria)\n Royal Order of Civil Merit, Dame Grand Cross (Kingdom of Bulgaria)\n\nSources\n\nCategory:1856 births\nCategory:1931 deaths\nCategory:People from Dülmen\nCategory:People from the Province of Westphalia\nCategory:Croÿ\nCategory:House of Habsburg-Lorraine\nCategory:Duchesses of Teschen\nCategory:Austrian princesses\nCategory:Hungarian people of Austrian descent\nCategory:Dames of the Order of Theresa\nCategory:Dames of the Order of Queen Maria Luisa"
] | {
"pile_set_name": "Wikipedia (en)"
} | [
0.0106951871657754,
0.01,
0.023613963039014373,
0,
0.016,
0.00904977375565611,
0.021897810218978103,
0.007936507936507936,
0.022304832713754646,
0.01680672268907563,
0.022988505747126436,
0.019348268839103868
] | 0.015053 | 5 |
[
"Tenzin Phuntsok Rinpoche\n\nTenzin Phuntsok Rinpoche (born October 28, 2002), also called Tenzin Nyudrup, is the recognised reincarnation of the Tibetan Mahasiddha Geshe Lama Konchog, who died in 2001.",
"\n\nHis early life and discovery as a reincarnated lama is documented in the 2008 English-language documentary film, Unmistaken Child.",
"\n\nReferences\n\nExternal links\nGeshe Lama Konchok biography at Kopan Monastery website\nGeshe Lama Konchog at PhuntsokRinpoche.com Blog\nPhuntsok Rinpoche (confirmed reincarnation of Geshe Lama Konchog)\n\nCategory:Gelug Lamas\nCategory:Lamas from Tibet\nCategory:Mahayana Buddhists\nCategory:Mahasiddhas"
] | {
"pile_set_name": "Wikipedia (en)"
} | [
0.02512562814070352,
0.007575757575757576,
0.020338983050847456
] | 0.01768 | 5 |
[
"BHUJ: Security has been beefed up at Kandla and Mundra ports and other key installations in Gujarat 's Kutch district following intelligence inputs of a possible infiltration by terrorists through the sea route, police said on Thursday.",
"The move comes days after the Indian Navy also warned of a possible terror attack from the sea side.",
"The Mundra port , run by the Adani group, is one of the largest in the country and last year topped the rankings by volumes, while the state-run Kandla port is a large bulk handling facility.",
"Both the ports are located in the Gulf of Kutch in the Arabian Sea, in close vicinity of Pakistan .The same region also supports many critical installations, including the world's largest oil refinery at Jamnagar run by Reliance Industries and also a similar facility operated by Russian giant Rosneft at Vadinar.",
"\"We receive inputs about possible terrorist infiltrations from time to time and we have enhanced the security at all vital installations in Kutch district, including the Kandla port,\" Inspector General of Police (border range) D B Vaghela said.",
"\"In fact, security was stepped up even before August 15 (Independence Day). ",
"There is no specific input that terrorists have entered Gujarat, but a general input that they can enter using the sea route,\" he said.",
"The Mundra port in Kutch district is also among the prominent installations security has been heightened, another police official said.",
"Following intelligence inputs and instructions from the Gujarat Director General of Police, security has been enhanced at all vital installations in Kutch, Anjar's Deputy Superintendent of Police Dhananjay Vaghela told reporters.",
"\"We have received inputs that terrorists can enter through the sea route,\" he said, adding that the police and other security agencies have increased patrolling and the marine police force has also been pressed into service.",
"The Navy last week said it was on high alert and prepared to defeat and deter any sea-borne threat with full force.",
"Deputy Chief of the Naval Staff Murlidhar Pawar had said coastal security measures were stepped up and forces were keeping a tight vigil to thwart any misadventure by anyone.",
"This preventive measure comes amidst the ongoing tensions with Pakistan following the abrogation of Article 370 in Jammu and Kashmir by the central government.",
"Read this story in Marathi"
] | {
"pile_set_name": "OpenWebText2"
} | [
0.00847457627118644,
0.01,
0.005235602094240838,
0.009584664536741214,
0.00819672131147541,
0,
0,
0.014814814814814815,
0.008733624454148471,
0,
0.008695652173913044,
0.005747126436781609,
0,
0.038461538461538464
] | 0.008425 | 5 |
[
"Q:\n\npandas multi-column merge on index\n\nhello i'm newbie in pandas\nfor example, datas of cryptocurrency are as below\nBTC\ntime(index) open high low close value\n0 1 4 1 2 1\n1 2 5 2 3 2\n\nETH\ntime(index) open high low close value\n1 1 1 1 1 1\n\nand I want merge these datas as blow\nBTC X ETH\n BTC ETH\ntime(index) open high low close value open high low close value\n0 1 4 1 2 1 NaN NaN NaN NaN NaN\n1 2 5 2 3 2 1 1 1 1 1\n\nis there any way to merge? ",
"\n\nA:\n\nUse concat with parameter keys for first level of MultiIndex:\ndf = pd.concat([df1, df2], keys=('BTC','ETH'), axis=1)\nprint (df)\n BTC ETH \n open high low close value open high low close value\ntime(index) \n0 1 4 1 2 1 NaN NaN NaN NaN NaN\n1 2 5 2 3 2 1.0 1.0 1.0 1.0 1.0\n\n"
] | {
"pile_set_name": "StackExchange"
} | [
0,
0.006521739130434782
] | 0.003261 | 5 |
[
"Busolwe\n\nBusolwe is a town in the Eastern Region of Uganda. ",
"It is one of the two municipalities in Butaleja District, the other being Butaleja.",
"\n\nLocation\nBusolwe is approximately , by road, southwest of Mbale, the largest city in the sub-region. ",
"This is approximately , by road, southwest of Butaleja, the location of the district headquarters. ",
"The coordinates of the town are 0°50'57.0\"N, 33°55'37.0\"E (Latitude:0.849167; Longitude:33.926944).",
"\n\nPopulation\nThe 2002 national census recorded the population of Busolwe at 6276. ",
"In 2010, the Uganda Bureau of Statistics (UBOS) estimated the town's population at 8,300. ",
"In 2011, UBOS estimated the mid-year population at 8,500. ",
"In 2014, the national population census put the population at 16,730.",
"\n\nPoints of interest\nThe following points of interest are found in Busolwe or near its borders:\n\n Busolwe General Hospital, a 100-bed public hospital administered by the Uganda Ministry of Health\n Busolwe central market\n offices of Busolwe Town Council\n Busolwe Public Library\n Lunyole Language Association\n\nSee also\nHospitals in Uganda\n\nReferences\n\nExternal links\n Butaleja District Information Portal\n Busolwe Public Lirary\n\nCategory:Populated places in Uganda\nCategory:Cities in the Great Rift Valley\nCategory:Butaleja District\nCategory:Eastern Region, Uganda"
] | {
"pile_set_name": "Wikipedia (en)"
} | [
0.016666666666666666,
0.012048192771084338,
0,
0.010101010101010102,
0,
0.012195121951219513,
0.011111111111111112,
0.017241379310344827,
0,
0.0071174377224199285
] | 0.008648 | 5 |
[
"Axonal shearing in mature cortical neurons induces attempted regeneration and the reestablishment of neurite polarity.",
"\nWhile functional recovery after injury is limited, it has become evident that the mature central nervous system does retain some ability to regenerate. ",
"This study investigated the intrinsic capacity of relatively mature cortical neurons (21 days in vitro) to respond to axonal loss. ",
"Neurons, growing as clusters on poly-L-lysine, were completely sheared of axons through chemical and mechanical disruption and transferred to either an intact astrocyte monolayer or a substrate of poly-L-lysine. ",
"Injured neurons exhibited a regenerative sprouting response that was independent of neuronal cell division or neural progenitors, as demonstrated by negative bromodeoxyuridine (BrdU) and the neuronal precursor intermediate filament nestin, labeling. ",
"At 24 h after injury, neurons had extended appropriately polarized neurites, demonstrated by compartmentalized microtubule-associated proteins MAP2 and tau immunolabeling. ",
"Newly sprouting axons were tipped by growth cones; however, growth cones on the tips of sprouting axons (mean area, 26.32 +/- 2.20 microm) were significantly (p<0.05) smaller than their developmental counterparts (mean area, 48.64 +/- 5.9 microm), independent of substrate. ",
"Furthermore, live imaging indicated that regenerating neurons exhibited distinct axonal dynamics, with a significant (p<0.05) reduction (70%) in pausing, considered vital for interstitial branching and pathfinding, relative to developmental growth cones. ",
"This study indicates that mature cultured cortical pyramidal and interneurons have the intrinsic potential to survive, extend processes, and reestablish neurite polarity following significant physical damage. ",
"These results may aid in defining the cellular basis of neuronal structural plasticity and defining the role of astrocyte reactivity in the response to trauma."
] | {
"pile_set_name": "PubMed Abstracts"
} | [
0,
0,
0,
0,
0,
0.005813953488372093,
0,
0,
0,
0
] | 0.000581 | 5 |
[
"Design of ultrasensitive flexible bend sensor using silver-doped oriented PVDF nanofiber web for respiratory monitoring.",
"\nWe propose a design strategy to fabricate a flexible bend sensor (BS) with ultrasensitivity towards airflow using all PVDF nanofiber web based sensing element and electrode to monitor human respiration. ",
"The unique electrospinning (rotational speed of collector of 2000 rpm and tip-to-collector distance of 4 cm) with silver nanoparticles interfacing was introduced to prepare an Ag-doped oriented PVDF nanofiber web with high β-phase content as sensing element (AgOriPVDF, β-phase crystallinity ~ 44.5 %). ",
"After that, a portion of the prepared AgOriPVDF was processed into flexible and electrically conductive electrode through electroless silver plating technique (SP-AgOriPVDF). ",
"Interestingly, the encapsulated AgOriPVDF BS with SP-AgOriPVDF electrode exhibited superior piezoelectric bending response (open-circuit peak-to-peak output voltage, Vp-p ≈ 4.6 V) to injected airflow, which is more than 200 times higher than that of the unpackaged randomly aligned PVDF nanofiber web BS with conductive tape electrode (Vp-p ≈ 0.02 V). ",
"In addition, the factors influencing the bend sensitivity of BS such as β-phase content, nanofiber orientation, flexibility of electrode and so forth were thoroughly analyzed and then discussed. ",
"We also demonstrated that the AgOriPVDF BS has sufficient capability to detect and identify various respiratory signal, presenting a great potential for wearable applications, e.g. smart respiratory protective equipment."
] | {
"pile_set_name": "PubMed Abstracts"
} | [
0,
0.00980392156862745,
0.006600660066006601,
0.005714285714285714,
0.005681818181818182,
0.005128205128205128,
0
] | 0.004704 | 5 |
[
"Q:\n\nDelete file on ajax post request in laravel\n\nTrying to delete uploaded images via ajax post request on post edit form. ",
"But i am facing some issues, when i press on delete button - it successfully sends ajax post request with image path, then in my controller i am trying to delete that file, but it not deleting it.",
"\nHere's my js:\n(function($) {\n $('.del-image').click(function() {\n var thisUrl = $('.col-md-10 img').attr('src');\n\n $.ajax({\n method: 'post',\n url: '/del-image',\n data: {imgUrl: thisUrl, id: pageId},\n error: function(e) {\n alert('Error' + e);\n }\n });\n });\n})(jQuery);\n\nThen in controller i am receiving ajax post request:\npublic function deleteImage() {\n if (Request::ajax()) {\n $path = Input::get('imgUrl');\n File::delete($path);\n return 'ajax request';\n }\n\n return App::abort(404);\n}\n\nAnd in routes.php i have:\nRoute::any('del-image', array('uses' => 'PageController@deleteImage'));\n\nAny help would be appreciated!",
"\n\nA:\n\nJust try this (To get the file path for uploads/filename.ext):\nvar = $('.col-md-10 img').attr('src');\nvar thisUrlArray = thisUrl.split('/');\nthisUrl = 'uploads/' + thisUrlArray.pop();\n\nThen use thisUrl as your imgUrl in data parameter of AJAX call.",
"\n\n"
] | {
"pile_set_name": "StackExchange"
} | [
0,
0,
0.0026917900403768506,
0.00784313725490196,
0
] | 0.002107 | 5 |
[
"In a voice network, each subscriber group has a common ring bus and a test bus. ",
"Moreover, each subscriber in the subscriber group has an independent subscriber line interface circuit (SLIC).",
"\nOn an analog subscriber board, the basic functions of talking and ringing must be provided for each subscriber in a group. ",
"In addition, the different functions of testing and monitoring should be provided selectively for subscriber according to the requirements of different voice networks.",
"\nIn order to perform these functions, three relays are provided for each subscriber on an analog subscriber board of the prior art, which are connected to the ring bus, the test bus, the subscriber line interface circuit and the subscriber line respectively, as shown in FIG. ",
"1.",
"\nFIG. ",
"1 is a schematic diagram showing the connection of relays on an analog subscriber board of the prior art, wherein only three relays K1, K2, K3 relevant directly to controlling and realizing the various functions of a voice network, as well as ring bus 2, test bus 3, subscriber line interface circuit (SLIC) 1 and subscriber line 4 are shown, while other parts being not in the drawing. ",
"In this drawing, subscriber line interface circuit (SLIC) 1 is connected to movable contact point K11 of relay K1, ring bus 2 is connected to another movable contact point K12 of relay K1, test bus 3 is connected to static contact point K33 of relay K3, subscriber line 4 is connected to movable contact point K21 of relay K2 and movable contact point K32 of relay K3 simultaneously. ",
"Static contact point 13 of relay K1 is connected to static contact point K23 of relay K2, another movable contact point K22 of relay K2 is connected to another movable contact point K31 of relay K3.",
"\nIn FIG. ",
"1, for simplification, ring bus 2, test bus 3, subscriber line interface circuit 1 and subscriber line 4 are all indicated by single-lines. ",
"In an actual voice network all lines are constituted of double-lines. ",
"Especially, subscriber line interface circuit 1 and subscriber line 4 should be constituted of the pair of TIP/RING double-line. ",
"Correspondingly, the contact points of various relays should be twice as many as shown in FIG. ",
"1.",
"\nIn FIG. ",
"1, for simplification, only one subscriber is shown in the connection schematic diagram. ",
"In an actual application, subscriber line interface circuit 1 and subscriber line 4 are for each subscriber solely, but ring bus 2 and test bus 3 are common to all subscribers in a group. ",
"A plurality of analog voice functions can be provided by providing three relays K1, K2, K3 for each subscriber respectively.",
"\nWhen subscriber line 4 of a subscriber is connected to subscriber line interface circuit 1 of the subscriber, the analog subscriber board realizes the talking/idle function of the subscriber; when subscriber line 4 is connected to ring bus 2, the analog subscriber board realizes the ringing function of the subscriber; when subscriber line 4 is connected to test bus 3 and subscriber line interface circuit 1 of the subscriber simultaneously, the analog subscriber board realizes the talking monitoring function for the subscriber; when subscriber line 4 is connected to ring bus 2 and test bus 3 simultaneously, the analog subscriber board realizes the ringing monitoring function for the subscriber; when test bus 3 is connected to subscriber line interface circuit 1 of a subscriber, the analog subscriber board realizes the function for testing the subscriber line interface circuit of the subscriber; when test bus 3 is connected to ring bus 2, the analog subscriber board realizes the ring testing function; when test bus 3 is connected to subscriber line 4 of a subscriber, the analog subscriber board realizes the function for testing the subscriber line of the subscriber.",
"\nTable 1 shows the realization of the various functions of the analog subscriber board in FIG. ",
"1. ",
"Various functions can be realized by controlling the states of three relays K1, K2, K3 (that is, the movable contact point is turned on) respectively.",
"\nTABLE 1Realization of Various Functions of Analog Subscriber Board in FIG.1State of K1State of K2State of K3FunctionK11K21K31talking/idleK12K21K31ringingK11K21K32monitoring talkingK12K21K32monitoring ringingK11K22K31testing subscriberline interface circuitK12K22K31testing ring—K22K32testing subscriber line\nMore specifically, when relay K2 is controlled to turn on movable contact point K21 connected to subscriber line 4, the analog subscriber board realizes the basic functions (talking/idle or ringing) or the monitoring functions (talking monitoring or ringing monitoring), wherein when relay K3 turns on movable contact point K31 connected to relay K2, the analog subscriber board realizes correspondingly the talking/idle function or ringing function respectively according to that relay K1 turns on movable contact point K11 connected to subscriber line interface circuit 1 or turns on movable contact point K12 connected to ring bus 2; when relay K3 turns on movable contact point K32 connected to subscriber line 4, the analog subscriber board realizes correspondingly the talking monitoring function or ringing monitoring function respectively according to that relay K1 turns on movable contact point K11 connected to subscriber line interface circuit 1 or turns on movable contact point K12 connected to ring bus 2.",
"\nWhen relay K2 is controlled to turn on movable contact point K22 connected to relay K3, the analog subscriber board realizes testing functions (testing the subscriber line, subscriber line interface circuit or ring), wherein when relay K3 turns on movable contact point K32 connected to subscriber line 4, the analog subscriber board realizes the function for testing the subscriber line; when relay K3 turns on movable contact point K31 connected to relay K2, the analog subscriber board realizes correspondingly the functions for testing the subscriber line interface circuit or testing the ring respectively according to that relay K1 turns on movable contact point K11 connected to subscriber line interface circuit 1 or turns on movable contact point K12 connected to ring bus 2.",
"\nHence, the analog subscriber board realizes the various basic functions and the testing and monitoring functions by controlling the states of three relays respectively.",
"\nThree relays must be provided for each subscriber on this kind of analog subscriber board. ",
"However, relays occupy relatively large space, which is unfavorable for the design of the subscriber board. ",
"More essentially, relay has a high cost, for example, the relay of Fujistu FBR12ND04-P-25 type costs 3.6 yuan R.M.B. each. ",
"It is evident that the analog subscriber board having a less number of relay becomes the object of research of various providers because the manufacturing cost of the subscriber board is limited by the number of relays used."
] | {
"pile_set_name": "USPTO Backgrounds"
} | [
0,
0,
0,
0,
0.0036231884057971015,
0,
0,
0.002583979328165375,
0.020833333333333332,
0.020202020202020204,
0.1111111111111111,
0,
0,
0.007751937984496124,
0.010526315789473684,
0,
0.1111111111111111,
0,
0,
0.008064516129032258,
0,
0.010526315789473684,
0,
0.006666666666666667,
0.008276899924755455,
0.008917197452229299,
0,
0,
0,
0.008130081300813009,
0
] | 0.010914 | 5 |
[
"'Knock Out Opioid Abuse' Town Hall Series Visits Cherry Hill\n\nThe Partnership for a Drug-Free New Jersey is traveling the Garden State to \"Knock Out Opioid Abuse\" with a town hall series.",
"\n\nOn Tuesday, October 3rd, dozens of people gathered to talk about what can be done to end the opioid epidemic at the series' Camden County stop.",
"\n\n“No matter where you live, whether it’s a suburban, rural or urban area, or whether it’s a poor area or wealthy area, this particular epidemic is impacting everyone,\" said Angelo Valente, executive director for the Partnership for a Drug-Free New Jersey. \"",
"Everyone needs to be aware of this issue.”",
"\n\nThat’s why the Partnership for a Drug-Free New Jersey set out to visit every county in New Jersey.",
"\n\nEvents like this have to be the beginning to a call-to-action.",
"\n\nThe point of the town hall series is to better understand the issue from a local perspective, but also to look at the resources each county has to offer.",
"\n\n“[The purpose is] to see if we have some really outstanding ways that communities are addressing the opioid epidemic and how we can share those with other counties throughout the state of New Jersey,” said Valente.",
"\n\nCaptain William Townsend, of the Camden County Prosecutor’s Office, is trying to cut down the availability of opioids by having drug drop-boxes at police departments throughout the county.",
"\n\n“In fact, the Legislature understands the issue and has been working as long as I can remember on the issue,” said Assemblywoman Patricia Egan Jones, a Democrat from New Jersey’s 5th District.",
"\n\nUnity was a common theme throughout the meeting held at the Cherry Hill Public Library.",
"\n\n“No one organization or provider can do everything,\" said Naomi Hubbard, executive director and CEO at Camden County Council on Alcoholism and Drug Abuse, Inc. \"Together we can do wonders for our children and our adults on any type of addiction.”",
"\n\n“I think events like this are really important because it raises awareness and it starts the conversation,\" said Mariel Hufnagel, executive director of the Ammon Foundation.",
"\n\nEveryone at the town hall meeting was sent home with two things to do as their call-to-action. ",
"They were given door hangers to hang up in the community for Knock Out Opioid Abuse Day this Friday, October 6th, and drug deactivation kits.",
"\n\n“It is not an urban problem [and] it is not a rural problem,\" said Jones. \"",
"It is an American problem.\"",
"\n\nJones is hopeful that an open dialogue between multiple parties can be part of the solution to this on-going dilemma.",
"\n\n\"Now that we’re talking about it much more openly we’re better able to get a handle on how to fix it and how to pull people away from the insanity of addiction.”"
] | {
"pile_set_name": "Pile-CC"
} | [
0,
0,
0.007751937984496124,
0,
0.01,
0,
0,
0.004629629629629629,
0.005263157894736842,
0.010309278350515464,
0.011235955056179775,
0.008064516129032258,
0.011428571428571429,
0,
0.0070921985815602835,
0.012987012987012988,
0,
0,
0
] | 0.004672 | 5 |
[
"G. Derek Adams – Writer of Minotaur Poetry\n\nThis Week’s Sermon -8/3\n\n[I’m creating a character for a new game, John North, a Methodist Minister – someone quite removed from my own personality and experience. ",
"I thought it might be interesting to write his weekly sermon before each game. ",
"A little dramatic irony, a little character exploration, a little I really need to post stuff here more often. ",
"This isn’t going to be as long as a ‘real’ sermon, think more of one that you would see on television to establish the episode’s themes.]",
"\n\nGood morning.",
"\n\nI am very happy to see you all here today. ",
"I know that’s something I say up here every Sunday, but it’s true. ",
"There are a million other places you could be in this world and in your own heads, and yet…here you are. ",
"Sitting in this church, together – choosing to hear the Word of God. ",
"I know I greet you every Sunday almost by rote – but it’s easy to get in the habit of being polite and not remember what you are really saying. ",
"It is a good morning. ",
"And I am very happy to see you all here today.",
"\n\nI’ve been thinking about habits a lot lately. ",
"Good habits, bad habits – things we do all the time and never even stop to think ‘Why?’. ",
"Why am I doing this thing? ",
"Every time I drink a cup of coffee, I put in too much sugar and cream, then I stir it up and …then I tap the spoon on the rim exactly three times. ",
"I’m sure many of you have seen me do it. ",
"It even has the same rhythm each time! ",
"A little caffeine jingle that Pastor John does, every time. ",
"I don’t know why I do it. ",
"I don’t know how long I’ve done it. ",
"I don’t know what strange occurrence in my life or in my head made me start doing those three little taps with the spoon.",
"\n\nAnd now you’re all thinking – ‘why is Mr. North going on and on about his coffee?’. ",
"That’s fair. ",
"I bring it up, partly because I like coffee a lot, but mostly because it’s a habit. ",
"Something that I do and never think about.",
"\n\nSomething that I do and never think about.",
"\n\nNow there’s something that I think we all do and never think about. ",
"Hate.",
"\n\nNot the grand sin of Hate or Rage that Jesus warned us against – that fills our head and our hearts and we know we are doing it. ",
"It’s a hard battle sometime to remember to Love and Forgive as He taught us, but at least we know we’re in the fight. ",
"All of us have that struggle. ",
"We win some, we lose some, but as long as we strive with Christ at our side, as long as we choose the better path, then we are truly blessed.",
"\n\nBut sometimes we don’t know we’re in the fight. ",
"Sometimes we miss the struggle. ",
"Sometimes its just a habit. ",
"And now I’m talking about the sin of Judgement.",
"\n\nIt’s a very easy habit, a very easy darkness to let in your heart – especially now when we all have our screens and our quiet. ",
"You look at your phone or your computer and you see someone and you think ‘They are foolish.’ ‘",
"They are ignorant.’ ‘",
"I can’t believe they did that.’ ‘",
"I can’t believe they said that.’ ‘",
"I live my life so much better than they do.’",
"\n\nAn easy sin. ",
"The sin of Pride – for only when we prize ourselves so highly would we dare to judge another soul. ",
"Let us read the Word, Galatians 6:3 – 6:5\n\nFor if a man think himself to be something, when he is nothing, he deceiveth himself. ",
"But let every man prove his own work, and then shall he have rejoicing in himself alone, and not in another. ",
"For every man shall bear his own burden.",
"\n\nThis is from one of Paul’s letters. ",
"He was quite the busybody, old Paul. ",
"The first Blogger if you like – always writing letters to the different communities of early Christians. ",
"The fifth verse is especially fine – ‘every man prove his own work’ – which is a perfect way of saying ‘mind your own business’.",
"But the third and sixth are what stick with me this morning.",
"\n\nWe are nothing compared to God. ",
"Compared to the endless love of Jesus, how could we ever hold ourselves up above our fellows? ",
"We are all nothing and it is important to remember that.",
"\n\nAnd then the sixth verse: For every man shall bear his own burden.",
"\n\nIt hits me in the chest every time. ",
"When we judge our brothers and sisters, not only do we commit the sin of Pride – but we also forget this simple truth. ",
"Everyone must bear their own burden. ",
"And none of us can truly know what the others carry. ",
"How heavy, how sharp the edges of their life. ",
"God so loved the world that he sent his only Son to teach us and die for us, only He truly knows our burdens and is fit to judge us. ",
"Only He can lift them from us when our time comes.",
"\n\nThe rest of us should remember – and seek to ease the burdens of all we meet. ",
"Just as we can say ‘Good morning’ a thousand times, but never truly hear ourselves say it – just as I tap the spoon on my coffee cup – so must we become aware of our habits, our darker habits. ",
"Really think about what you are doing and why you are doing it. ",
"Get in the fight and don’t just blindly repeat the same tepid little evils over and over and over.",
"\n\nIt’s going to be hard, but you can do it. ",
"I believe in you and all of us that chose to be here today believe in you — and most important God and his son, Jesus Christ are at your side.",
"\n\nLet us pray. ",
"I know it’s not as popular, but I’d like to use the Wesley Covenant today.",
"\n\nThank you all – and now Mrs. Vonda will lead us in our next hymn.",
"\n\n[Any feedback on this post is much appreciated. ",
"I’m not trying to mock or parody anyone’s faith – please let me know if I used the wrong term or otherwise said something a Methodist minister would never say.]"
] | {
"pile_set_name": "Pile-CC"
} | [
0.009615384615384616,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.016666666666666666,
0,
0,
0,
0.011627906976744186,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.014925373134328358,
0,
0
] | 0.000704 | 5 |
[
"[The treatment of preasthma patients by inhalations of calcitrin].",
"\nCalcitrin inhalations were used in the treatment of 42 patients with preasthma (chronic obstructive bronchitis--37, asthmatic bronchitis--15). ",
"The antiinflammatory and chronic obstructive bronchitis. ",
"The broncholytic effect prevailed in patients with asthmatic bronchitis. ",
"There were no complications and side-effects due to calcitrin inhalations. ",
"Calcitrin inhalations are recommended in the complex treatment of preasthma."
] | {
"pile_set_name": "PubMed Abstracts"
} | [
0,
0.006944444444444444,
0,
0,
0,
0
] | 0.001157 | 5 |
[
"Salman Khan Describes the Video Education Revolution at TED\n\nSalman Khan wants to change the world, and he’s already started to transform the classroom. ",
"The founder of The Khan Academy, Salman has placed thousands of videos on YouTube that teach math and other subjects in a straightforward manner. ",
"Students young and old can listen to these lectures at their own pace and perform exercises that test their skills. ",
"The Khan Academy has exploded in popularity, with hundreds of thousands of views every day and more than a million regular users. ",
"A pilot program in California is exploring how the Khan Academy’s video format can work in real classrooms. ",
"This is just the beginning. ",
"At the recent TED conference in Long Beach, Salman Khan gave an inspirational presentation on the creation, successes, and future of The Khan Academy. ",
"Watch it in its entirety in the video below. ",
"With any luck, this new paradigm in teaching will flip the classroom on its head, humanize the learning experience, and democratize education all over the globe.",
"\n\nAs many of you will remember, I am an ardent fan of The Khan Academy. ",
"For those that haven’t read our previous coverage on the institute, Khan himself gives a great overview in the opening of his talk at TED. ",
"Don’t miss the montage at 0:20 that shows the breadth of the topics the site covers. ",
"The fundamental advantages of a video based system are considerable: recorded talks allow students to proceed at their own pace, pausing and repeating segments as necessary without the pressure of having to perform in the presence of teachers or classmates. ",
"Almost from the beginning, Khan’s online students (at first his younger cousins) have cheered for these advantages. ",
"I love the YouTube comments he shares starting around 3:51. ",
"Through the rest of his TED presentation, Khan explores how the advantages of his site can change the face of education. ",
"I’d recommend certain parts but I really don’t think you should miss any of it. ",
"Enjoy the next 20 minutes:\n\nThe technology of online, video-based, education opens up new opportunities for traditional classrooms. ",
"As Khan suggests around 6:00, videos can ‘flip’ the way we schedule class time, with students watching lectures at home and performing ‘homework’ in school. ",
"This allows students to choose the pace of the lectures to suit their own understanding so that they are no longer dependent on a ‘one speed fits all’ approach. ",
"In the class, teachers can spend more time with each student as they work. ",
"In essence this ‘humanizes’ their education, giving them valuable one-on-one time with teachers when they need it most – as they get stuck on a difficult problem or concept.",
"\n\nFurther enriching the classroom, The Khan Academy’s website can track student’s progress and provide valuable data on how he or she is performing. ",
"As Khan describes around 11:12, the pilot program in Los Altos, California is alive with data. ",
"Teachers are providing feedback (17:50) to refine these datasets and get the information they need to help kids learn. ",
"As I’ve said before, all the digital incentives that video game designers have been using for years are going to make digital education that much more enjoyable to students. ",
"We can make learning fun. ",
"Khan’s already doing it.",
"\n\nI always find myself cheerleading for The Khan Academy, but it’s hard not to get excited. ",
"As Khan’s TED presentation shows, we’re just reaching the beginning of what this system can do. ",
"Khan mentions that peers and ‘coaches’ will be able to help students online, and that such tutoring could easily expand across national boundaries. ",
"His vision for a “global one-world classroom” is an amazing example of the democratizing power of technology. ",
"For the price of internet connectivity, students all over the world will one day be able to receive the education they need to become upwardly mobile. ",
"Hopefully other companies will follow Khan’s example, the amount of online content will grow, the number of available languages will increase, and the global community of video-educated students will explode. ",
"If these things happen, I have a very strong feeling that not only will Khan have helped revolutionize the classroom, he’ll have helped improve the world as well. ",
"I can’t wait to see it happen."
] | {
"pile_set_name": "Pile-CC"
} | [
0.0196078431372549,
0.02054794520547945,
0,
0.007692307692307693,
0.009259259259259259,
0,
0.013245033112582781,
0,
0,
0.013888888888888888,
0.014388489208633094,
0,
0,
0.008620689655172414,
0.016666666666666666,
0.008264462809917356,
0,
0,
0.006369426751592357,
0,
0,
0,
0.006711409395973154,
0.010526315789473684,
0,
0,
0,
0.041666666666666664,
0.010869565217391304,
0.010416666666666666,
0.006756756756756757,
0,
0,
0.004784688995215311,
0.006134969325153374,
0
] | 0.006567 | 5 |
[
"Q:\n\nWhat are reasons to use the minor dominant in a minor progression, in particular i-VI-III-v?",
"\n\nI've learnt that in a minor key, the non-diatonic major dominant is basically always used instead of the diatonic minor dominant in order to get the leading tone in. ",
"Of course this is a trend but not a rule. ",
"What could be reasons for using the minor dominant?",
"\nThe question was spurred by Amy McDonald's This is the Life, which goes i-VI-III-v in C#m. (",
"I'm sure there are more insightful answers than \"it sounds good\".)",
"\n\nA:\n\nMy ad-hoc list of reasons for using a minor dominant in a minor key.",
"\n\nMilder, more ambiguous feeling - it doesn’t shout ATTENTION ALL LISTENERS! ",
"THIS IS A DOMINANT CHORD. ",
"I REPEAT. ",
"DOMINANT CHORD.",
"\nMake your music cooler and more suitable for young rebels/snobs/kids who cannot stand proper dominants, because it reminds them of the kind of uncool music old farts like their parents listen.",
"\nDifferent jazzing-up possibilities. ",
"If the melody is compatible with it, try a minor 9 or even a IV/V (i.e. D6/E for Am)\nIf you want to make a harmonic variation or arrangement of a melody that was written for a major key, and use the relative minor key instead, the melody might clash with a major dominant’s third. ",
"So use a minor as a dominant - it’s a dominant all right.",
"\nBass player’s revenge / application of above: if you’re tired of a happy C - F - G - C song, play a third below and make it Am7 - Dm7 - Em7 - Am7.",
"\n\n"
] | {
"pile_set_name": "StackExchange"
} | [
0,
0,
0,
0,
0.010752688172043012,
0,
0,
0,
0,
0.1,
0,
0,
0,
0,
0,
0.006802721088435374,
0
] | 0.006915 | 5 |
[
"(This October 24 story has been refiled to say “go” instead of “do” in second paragraph)\n\nU.S. President Barack Obama is interviewed by Jimmy Kimmel in a taping of the Jimmy Kimmel Live! ",
"show in Los Angeles October 24, 2016. ",
"REUTERS/Kevin Lamarque\n\nLOS ANGELES (Reuters) - President Barack Obama on Monday trolled Republican presidential candidate Donald Trump - known for his prolific use of Twitter to settle scores - making Trump the punch line for jokes on ABC’s late-night show “Jimmy Kimmel Live.”",
"\n\nObama read aloud a series of “mean tweets” culminating in one from Trump: “President Obama will go down as perhaps the worst president in the history of the United States!”",
"\n\n“At least I will go down as a president,” Obama said.",
"\n\nKimmel joked that Obama had to “take time away from helping rig the election” to appear on the show, a dig at Trump, who has repeatedly said the Nov. 8 vote is rigged against him.",
"\n\nObama picked up on the joke while describing how comedian Bill Murray beat him in a contest to putt golf balls into a glass in the Oval Office during a recent visit - a stunt the White House designed to promote Obamacare health insurance.",
"\n\n“He won repeatedly,” Obama said. “",
"The glass was rigged!”",
"\n\nKimmel asked Obama, “Do you ever laugh” when watching Trump on television. “",
"Most of the time,” Obama said.",
"\n\nObama also revealed he has been called on a special phone by his bed “three or four times” in the middle of the night during his time in office to deal with emergencies, including when the 2011 tsunami hit Japan.",
"\n\nBut he said he does not reach for his smartphone in the wee hours - another dig at the Republican candidate.",
"\n\n“I don’t tweet at 3 a.m. about people who insult me,” Obama said.",
"\n\nObama’s second and final term ends on Jan. 20. ",
"Under the U.S. constitution, presidents are limited to two terms - which is just as well, Obama said.",
"\n\n“If I were able to run for a third term, Michelle would divorce me,” he said, noting his wife does not like politics.",
"\n\nNot all the jokes were at Trump’s expense. ",
"Comedian Will Farrell channeled deceased but beloved Chicago Cubs sportscaster Harry Caray to recommend that Obama “open a shrimp shack” after he leaves office.",
"\n\nAnd Joel McHale feigned outrage when told he had been bumped from the show for Obama.",
"\n\n“You got the president, huh. ",
"Wow, that’s a big deal - he’s got two months left in the job,” McHale said, oozing sarcasm.",
"\n\n“That’s a real good get there, Jimmy: Lame! ",
"Duck!” ",
"McHale said."
] | {
"pile_set_name": "OpenWebText2"
} | [
0.0106951871657754,
0,
0.02158273381294964,
0.011494252873563218,
0.01818181818181818,
0.016574585635359115,
0.008333333333333333,
0.027777777777777776,
0,
0.02564102564102564,
0.03333333333333333,
0.004672897196261682,
0,
0.014925373134328358,
0.02040816326530612,
0.009900990099009901,
0.008403361344537815,
0.022222222222222223,
0.00625,
0.011494252873563218,
0,
0.01098901098901099,
0,
0,
0.08333333333333333
] | 0.014649 | 5 |
[
"Q:\n\nDont push a specific commit\n\nI had my git setup and working and i have specified .a libs in .gitignore so large files don't get uploaded. ",
"But in one particular commit I removed it from .gitignore and then committed it. ",
"After pushing it gave me error that I cant push large files and for that I require Git LFS. ",
"I don't want to use Git LFS. ",
"I made some changes in code and updated those big files to .gitignore but still those files are getting pushed. ",
"Any solution how to overcome the above scenario.",
"\nI tried to create a new branch from the above branch and tried to push the commit but in the new branch but its all the same.",
"\n\nA:\n\nYou can always rewrite your commit history in-place by using git rebase. ",
"Be aware that already pushed commits should not be modified by this method.",
"\nFor example: Use git rebase -i <BASE_COMMIT> to rewrite the history up to BASE_COMMIT (insert a commit hash prior to your commit to delete here). ",
"Then, git presents you with a list of all commits up to HEAD. ",
"Here, you can simply modify those commits by changing the keywords in front.",
"\nIn your case, it should be enough to simply change 'pick' to 'drop' in front of your bad commit to remove this single commit from your commit history.",
"\nIf this bad commit contained other useful information you could also combine ('squash') it with a commit which deletes only the large files. ",
"This way, the other parts of your commit remain functional.",
"\nBe sure to backup your large files before removing this commit to ensure that they won't get lost.",
"\n\n"
] | {
"pile_set_name": "StackExchange"
} | [
0,
0,
0.010869565217391304,
0.034482758620689655,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
] | 0.002668 | 5 |
[
"Q:\n\nHow to remove all element with same id except one?",
"\n\nLet say there's 3 times the same ID, I want to delete all of them except one.",
"\nExample : \n<div id = \"parent_id\">\n <div id = \"id_1\">\n <div id = \"id_1-1\"> </div>\n <div id = \"id_1-1\"> </div> // I want to delete this\n <div id = \"id_1-1\"> </div> // I want to delete this\n <div id = \"id_1-2\"> </div>\n <div id = \"id_1-2\"> </div> // I want to delete this\n <div id = \"id_1-2\"> </div> // I want to delete this\n </div>\n <div id = \"id_2\">\n <div id = \"id_2-1\"> </div>\n <div id = \"id_2-1\"> </div> // I want to delete this\n <div id = \"id_2-1\"> </div> // I want to delete this\n <div id = \"id_2-2\"> </div>\n <div id = \"id_2-2\"> </div> // I want to delete this\n <div id = \"id_2-2\"> </div> // I want to delete this\n </div>\n <div id = \"id_3\">\n <div id = \"id_3-1\"> </div>\n <div id = \"id_3-1\"> </div> // I want to delete this\n <div id = \"id_3-1\"> </div> // I want to delete this\n <div id = \"id_3-2\"> </div>\n <div id = \"id_3-2\"> </div> // I want to delete this\n <div id = \"id_3-2\"> </div> // I want to delete this\n </div>\n</div>\n\nCan it be done with a for loop ?",
"\nThanks in advance !",
"\n\nA:\n\nYou could select all the elements based on the common id,\nvar list = jQuery('[id^=id_]');\n\nThen filter them further by if they match the more specific version, ie id_1-1, and are not the specific indexes you specify. ",
"\nlist = list.filter((idx,element)=>{\n //getElementIndex is a custom util function to get element's index\n let indexInParent = getElementIndex(element);\n //Check if the element has the specific id format, and is not an element\n //at the indexes to keep\n return element.id.match(/id_\\d-\\d/) && ![",
"0,3].includes(indexInParent);\n});\n\nIf needing a different criteria for what to remove or what not to remove you would just modify the filter() method logic to accommodate. ",
"\nAfter that just remove them.",
"\nlist.remove();\n\nNote though you should not use the same id more than once. ",
"If these id's are containing some sort of information, that information should be stored in data-* attributes. ",
"And if all the removed element's have something in common it might be beneficial to label them with a common class or data-* attribute that way removal could be coded in less instructions.",
"\n\njQuery('[id^=id_]').filter((idx,element)=>{\r\n let indexInParent = getElementIndex(element);\r\n return element.id.match(/id_\\d-\\d/) && ![",
"0,3].includes(indexInParent);\r\n}).remove();\r\n\r\n\r\nfunction getElementIndex (element) {\r\n return Array.from(element.parentNode.children)\r\n .indexOf(element);\r\n}\n<script src=\"https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js\"></script>\r\n<div id = \"parent_id\">\r\n <div id = \"id_1\">\r\n <div id = \"id_1-1\">a </div>\r\n <div id = \"id_1-1\">b </div> \r\n <div id = \"id_1-1\">c </div> \r\n <div id = \"id_1-2\">d </div>\r\n <div id = \"id_1-2\">e </div> \r\n <div id = \"id_1-2\">f </div> \r\n </div>\r\n <div id = \"id_2\">\r\n <div id = \"id_2-1\">g </div>\r\n <div id = \"id_2-1\">h </div> \r\n <div id = \"id_2-1\">i </div> \r\n <div id = \"id_2-2\">j </div>\r\n <div id = \"id_2-2\">k </div> \r\n <div id = \"id_2-2\">l </div> \r\n </div>\r\n <div id = \"id_3\">\r\n <div id = \"id_3-1\">m </div>\r\n <div id = \"id_3-1\">n </div> \r\n <div id = \"id_3-1\">o </div> \r\n <div id = \"id_3-2\">p </div>\r\n <div id = \"id_3-2\">q </div> \r\n <div id = \"id_3-2\">r </div> \r\n </div>\r\n</div>\n\n"
] | {
"pile_set_name": "StackExchange"
} | [
0,
0,
0,
0,
0.004484304932735426,
0,
0.005813953488372093,
0,
0,
0,
0,
0,
0.0018450184501845018
] | 0.000934 | 5 |
[
"Stock Tips: Markets keep gains for fourth day, Nifty reclaims 10,400\n\nEquity benchmarks rose for a fourth consecutive session on Tuesday, driven by positive global signals, together with buying sentiments in metal, bank and IT stocks and expectations of better earnings elevated market sentiment.",
"\n\nThe NSE’s Nifty50 index gained 0.22 percent, to close at 10,402, while the BSE Sensex settled 0.27 percent, or 92 points, up at 33,880\n\nIn Sensex pack major gains were led by Axis Bank, which rose over 5.43 percent after Shikha Sharma’s tenure shortened. ",
"ICICI Bank, Adani Ports, Tata Steel and Coal India also stood among the top gainers of the day, in the Sensex index.",
"\n\nSugar stocks gained on news reports that government may provide financial assistance to cane farmers for produce sold to sugar mills. ",
"Shares of Dwarikesh Sugar and Rajshree Sugars spiked 11% and 10% respectively, among others."
] | {
"pile_set_name": "Pile-CC"
} | [
0.0033783783783783786,
0.01556420233463035,
0.034482758620689655,
0,
0
] | 0.010685 | 5 |
[
"Talking the lingo in Rio: Chatting with your new Icelandic speaking friends about triathlon\n\nSharing the world with language learning. ",
"Image credit: Everaldo Coelho and YellowIcon. ",
"License: This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation.",
"\n\nThis article is a series of language learning posts by ParaSport News. ",
"The goal is to provide sport fans some very basic sport and Paralympic vocabulary so you can talk with the world about disability sport at the 2016 Summer Paralympics in Rio.",
"\n\n`\n\nA North Germanic language, Icelandic is spoken by only 330,000 people of which almost all are found in Iceland. ",
"Despite Iceland’s relatively small population, you may run into some Icelanders in Rio. ",
"The country sent a four athlete strong delegation to London. ",
"The Icelanders competed in athletics and swimming, and Jon Margeir Sverrisson picked up a gold in men’s S14 swimming for Iceland. ",
"The country’s best every Summer Games performance came in 2004 when the country’s three competitors won four medals.",
"\n\nGeneral disability words:\n\nBlinda – Blindness\n\nMS – Multiple sclerosis\n\nSport specific words:\n\nÓlympíumót fatlaðra – Paralympic Games\n\nTriathlon specific words:\n\nThis sport makes its debut at the 2016 Summer Paralympics. ",
"With words from swimming, athletics and cycling, knowing a few terms here can take you a long way with other sports.",
"\n\nÞríþraut – Triathlon\n\nHlaup – Running\n\nHjólreiðar – Cycling\n\nSund – Swimming\n\nMaraþonhlaup – Marathon\n\nBauja – Buoy\n\nShare this:\n\nLike this:\n\nLaura Hale is a sport journalist, specializing in Paralympic and disability sport news. ",
"Prior to helping found ParaSport-News, she spent two and a half years working as a journalist on Wikinews, a citizen journalism site. ",
"As a journalist, she has covered the 2012 Summer Paralympics in London, the 2013 IPC Alpine Skiing World Championships in La Molina, the 2014 Winter Paralympics in Sochi, and a number of other sporting events. ",
"She has additional experience with Paralympic sport having worked as a Wikipedian in Residence for the Australian and Spanish Paralympic Committees.",
"\n\nAll text copyright is property of the writers. ",
"Permission is given to sport organizations connected to articles here to republished on their own websites with appropriate author and site credit. ",
"ParaSport News is physically based at: 17 Ashford Court, Swedesboro, New Jersey 08085, USA. ",
"It is run by Spacial Anamoly, a limited liability corporation, which can be reached at sockii@spacial-anomaly.com. ",
"The editorial staff is based in Spain, and can be reached at laura@parasport-news.com"
] | {
"pile_set_name": "Pile-CC"
} | [
0.007407407407407408,
0.021739130434782608,
0.01092896174863388,
0.0136986301369863,
0,
0.008547008547008548,
0,
0,
0.015384615384615385,
0,
0.004484304932735426,
0,
0.008620689655172414,
0.014925373134328358,
0,
0.013513513513513514,
0,
0,
0.021739130434782608,
0.017391304347826087,
0.011764705882352941
] | 0.008102 | 5 |
[
"DXHT\n\nDXHT or 102.7 Yes The Best Zamboanga is the leading FM radio station of Manila Broadcasting Company (frequency owned by affiliate Pacific Broadcasting Systems) in Asia's Latin City. ",
"The station's studio and transmitter is located at 4th floor, Jose Go Huilo Bldg., ",
"Tomas Claudio St., Zamboanga City. ",
"Yes The Best is one of only two (the other is sister station Love Radio Zamboanga) radio stations in Zamboanga City operating 24 hours a day.",
"\n\nHistory\n In 1998, it started its broadcast as Magic 102.7.",
"\n On January 1, 1999 it was changed to Hot FM 102.7, which carries Pop music, adult contemporary and OPM format. ",
"It became one of the top radio stations in the city. ",
"Hot FM, MBC's FM radio arm (aside from Love Radio, Easy Rock and Yes FM), has major stations in Dagupan City, Cebu City, Cauayan City, Isabela and Zamboanga City, with more than 50 minor provincial radio stations (under the consortium with another MBC FM network Radyo Natin). ",
"It ranked #1 in Zamboanga City, based on the Nielsen Media Research Survey held in 2011.",
"\n On February 24, 2014, Hot FM Zamboanga & the other major Hot FM stations rebranded to Yes FM.",
"\n On May 1, 2017, the station was rebranded as 102.7 Yes The Best and Hot AC format was added, including other Yes FM provincial stations that they were also rebranded as Yes The Best.",
"\n\nDJs\nEric George Basilio (Station Manager)\nJolas Tigas (Ace Tali Jr.)\nMaria Morena (Analet Cabreros)\nBiboy Bibo (Wilfred Burton)\nLala Banderas\n\nSee also\n DZRH\n Love Radio Zamboanga\n Manila Broadcasting Company\n\nExternal links\n FM Radio Stations in the Philippines, 98.1-107.9 MHz at Asiawaves\n at e-radioportal.com\n\nCategory:Radio stations established in 1998\nCategory:OPM formatted radio stations in the Philippines\nCategory:Radio stations in Zamboanga City"
] | {
"pile_set_name": "Wikipedia (en)"
} | [
0.010638297872340425,
0.012048192771084338,
0.02857142857142857,
0.0070921985815602835,
0,
0.008849557522123894,
0,
0.018050541516245487,
0.011363636363636364,
0.021052631578947368,
0.005434782608695652,
0.017391304347826087
] | 0.011708 | 5 |
[
"Liver regeneration after portal vein embolization using absorbable and permanent embolization materials in a rabbit model.",
"\nTo compare the safety and hypertrophy response after portal vein embolization (PVE) using 2 absorbable and 3 permanent embolization materials. ",
"Portal vein embolization is used to increase future remnant liver volume preoperatively. ",
"Application of temporary, absorbable embolization materials could be advantageous in some situations, provided sufficient hypertrophy is achieved from the nonembolized lobe. ",
"Six groups of rabbits (n = 5) underwent PVE of 80% of the total liver volume using saline (sham), gelatin sponge, fibrin glue, polyvinyl alcohol particles with coils, n-butyl cyanoacrylate, or polidocanol. ",
"The rabbits were killed after 7 days. ",
"Portography, computed tomographic volumetry, Doppler ultrasonography, laboratory liver function and damage parameters (nonembolized) liver-to-body weight ratio, immunohistochemistry, and cytokine and growth factor tissue levels were assessed to examine the differences in the liver regeneration response. ",
"Polidocanol was discontinued because of toxic reactions in 3 rabbits. ",
"Gelatin sponge was the only material that was absorbed after 7 days and resulted in less hypertrophy of the nonembolized lobe than the other 3 materials. ",
"There were no significant differences in hypertrophy response between the other 3 embolization groups. ",
"Volumetric data obtained from computed tomography were supported by liver-to-body weight ratio and the amount of proliferating hepatocytes. ",
"The volume gain of the nonembolized lobe was proportional to the volume loss of the embolized liver lobes. ",
"The number of Kupffer cells in the embolized liver lobe was significantly higher in the fibrin glue, polyvinyl alcohol particles with coils, and n-butyl cyanoacrylate groups than in the sham and gelatin sponge groups. ",
"However, the levels of interleukin-6, tumor necrosis factor-α, hepatocyte growth factor, and transforming growth factor-β1 were significantly lower. ",
"Temporary occlusion using gelatin sponge for PVE resulted in significantly less hypertrophy response than the use of permanent embolization materials. ",
"Except for polidocanol, none of the embolization materials exhibited evident hepatotoxicity."
] | {
"pile_set_name": "PubMed Abstracts"
} | [
0,
0.006944444444444444,
0,
0,
0.014563106796116505,
0,
0.006557377049180328,
0.014285714285714285,
0.006493506493506494,
0,
0.007142857142857143,
0,
0.0045871559633027525,
0,
0.006622516556291391,
0
] | 0.0042 | 5 |
[
"Directed\nby Ketan Mehta and produced by Bobby Bedi Mangal Pandey (2005) was based on the life and times of Mangal Pandey, the leader of the 1857 mutiny, and his fight against British rule. ",
"Mangal Pandey (Aamir Khan) was an Indian sepoy serving the East India Company who revolts while using the gun cartridges that had been greased with cow and pig\nfat.",
"\n\nThe film vividly explains the sequences and events that led to the mutiny of 1857. ",
"The film of epic\nproportions attempts to bring alive a great hero on celluloid who was\nhanged.",
"\n\nThe knockout performance of Aamir Khan as Mangal Pandey set the screen ablaze. ",
"The scene when he faces the British army alone and realises that he would be overpowered and tries to commit suicide, sent shudder down the spine of the\naudiences.",
"\n\nThe film makes the people realise that the freedom they enjoy today is because of the sacrifices made by heroes like Mangal Pandey who gave their life and blood for the sake of their motherland.",
"\n\nThe\nfreedom struggle that stretched across a century has been captured on camera by our filmmakers, some of whom had even participated in this struggle.",
"\n\nThe film industry was particularly charged with patriotism during the struggle days. ",
"The filmmakers thought of new vistas and brought in a new vision that altogether changed the outlook, text and tenor of the Hindi cinema. ",
"A large number of films in the patriotic mode were made which made the audience/people realise that no price is too high to defend the honour of the country and safeguard it. ",
"The films inspired the youth of those days to join the armed forces or at least to serve the country in their own way.",
"\n\nDuring the shooting of Bombay Talkies’ “Kismet” (1943) starring Ashok Kumar and Mumtaz Shanti, the Quit India movement was at its peak. ",
"Kavi Pradeep wrote the lyrics of this film, the music of which was composed by Anil Biswas. ",
"Pradeep had strong nationalistic feelings. ",
"He came up with lyrics “Aaj Himalaya ki choti se hum ne yeh lalkara hai/Door hato ae duniya walo Hindustan hamara hai...” The song was passed by the Censor Board and it was only when they noticed the tremendous enthusiasm of the audience did the Censor Board realise they had blundered.",
"\n\nBut they did not recall “Kismet” for recensoring. ",
"The underlying content of Kismet was nationalist and anti-British; not only did that escape the censors, it seems to have ensured that the public would greet the film with acclaim for that very dimension.",
"\n\nThis patriotic genre of filmmaking became very popular in the years between the 1940s and 1960s. ",
"These are really period films but they bring alive the atmosphere of the times. ",
"Directed by Ramesh Saigal for Filmistan’s production, “Shaheed” (1948) starring Dilip Kumar, Kamini Kaushal, Chander Mohan etc. ",
"was a\nnationalist melodrama set in the context of Quit India movement and the ensuing wave of terrorist actions, during the mid 40s.",
"\n\nThe film had contemporary subject and was relevant to the troubled times. ",
"The song “Wattan ki rah men wattan ke naujawan shaheed ho...’ sung soulfully by Mohd Rafi and Khan Mastana became almost a national anthem.",
"\n\nSanjeev Kumar and Sayeed Jaffrey in “Shatranj ke Khiladi”\n\nDirected by Ramesh Saigal, Filmistan’s “Samadhi” (1950) was a patriotic drama addressing Subhas Chandra Bose and the Indian National Army. ",
"Following Bose’s call on the Indian youth to join the anti-imperialist front, Shekhar (Ashok Kumar) joined the INA. ",
"In Singapore his elder brother Suresh (Shyam) is a captain in the British army who has to collaborate with a British spy ring. ",
"In the war the two brothers face each other. ",
"Makers like Ramesh Saigal, Sohrab Modi, V. Shantaram and Phani Majumdar had genuine patriotism flowing in their blood. ",
"At the height of British censorship, these directors were courageous enough to make such films and ingenious enough to sneak them past the censors.",
"\n\n“Andolan” (1951) by Majumdar was a story of India’s freedom struggle presented through the experiences of a Bengali family. ",
"The important events incorporated into the plot were Gandhi’s satyagraha, the Simon Commission, Vallabhbhai Patel’s Bardoli satyagraha and the 1842 Quit India agitation. ",
"Kishore Kumar played the militant hero of the film with aplomb.",
"\n\nMilitant Bengali filmmaker Hemen Gupta had his Hindi debut at Filmistan with stridently nationalist biographical of the 18th century sage Satyanand who led the sanyasi uprising against the British. ",
"One cannot think of any other patriotic film made with so much feelings, passion and fervour. ",
"We need to make more films like “Anandmath” (1952) but where are the film makers to make them?",
"\n\nSohrab Modi’s “Jhansi Ki Rani” (1953) had some fabulous sets and Mehtab looked every inch the queen. ",
"To date no film, not even “Mughal-e-Aazam”, has been able to replicate that grandeur. “",
"Jhansi Ki Rani” was and remains a classic.",
"\n\nIt is true that though the freedom movement threw up hundreds of stalwarts, there are few stories that can match Bhagat Singh’s for sheer heroism, idealism and dare-devilry. ",
"People should realise that the freedom they take for granted did not just come to them on a platter. ",
"It was bitterly fought, and hard won. ",
"The revolutionary to have fired the imagination of our filmmakers was Bhagat Singh.",
"\n\nSatyajit Ray’s “Shatranj Ke Khiladi” (1977) is one of the finest films made in India on the happenings of 1857. ",
"Based on a story by Premchand, it related to the annexation of Lucknow. ",
"The city is the last to remain autonomous for a century by paying colossal sums to the East India Company, which had embarked since the 18th century on the annexation or bringing under its tutelage one after another the most vulnerable Indian princely States. ",
"The campaign reached its peak during 1840-50. ",
"In 1856 Awadh and its nawab came under the tutelage of the Company, one year before the sepoy mutiny of 1857-58.",
"\n\nAt the time of those events, two young aristocratic friends, Mirza (Sanjeev Kumar) and Mir (Sayeed Jaffery), who have nothing else to do than devote themselves to their favourite passion: the game of chess, for which they sacrifice their conjugal lives and their responsibilities to their prince Wajid Ali Shah (Amjad Khan).",
"\n\nMir and Mirza, after a quarrel which takes them to the point of a pistol duel, get back to their favourite game, outside the town taken over by the British, probably less out of cowardice than to show their disdain for a new foreign invasion, destined like the previous one to be assimilated by the age-old Indian civilisation.",
"\n\nThe film was a sharp comment on the moral cowardice and unpatriotic stance of the elite.",
"\n\nWith the freedom-struggle stretching for a couple of hundred years, there is obviously a lot in terms of history that our country has to offer. ",
"This has been captured time and again on camera by our filmmakers. ",
"Whether it was Dharmendra in “Haqeeqat”, Manoj Kumar in “Shaheed”, Raj Kumar in “Hindustan Ki Kasam”, Aamir Khan in “Sarfrosh”, Sunny Deol in “Border”, Ajay Devgan in “Legend of Bhagat Singh”, our hearts fill with pride and our eyes water by the time we are out of theatre."
] | {
"pile_set_name": "Pile-CC"
} | [
0.015873015873015872,
0.018292682926829267,
0,
0,
0.024691358024691357,
0,
0.00510204081632653,
0,
0,
0,
0,
0,
0.021739130434782608,
0.010869565217391304,
0,
0.01048951048951049,
0,
0.004901960784313725,
0,
0,
0.03125,
0.015151515151515152,
0,
0.02158273381294964,
0.02,
0.008620689655172414,
0.007874015748031496,
0,
0.01680672268907563,
0,
0,
0.029411764705882353,
0,
0.015,
0,
0,
0.009708737864077669,
0,
0.023809523809523808,
0.005681818181818182,
0,
0,
0.012048192771084338,
0,
0.013888888888888888,
0.007692307692307693,
0,
0.008928571428571428,
0.012269938650306749,
0.00303951367781155,
0,
0,
0,
0.02197802197802198
] | 0.007346 | 5 |
[
"Growing Old\n\nLet us go then, you and I,\nWhen the evening is spread out against the sky\nLike a patient etherized upon a table;\nLet us go, through certain half-deserted streets,\nThe muttering retreats\nOf restless nights in one-night cheap hotels\nAnd sawdust restaurants with oyster-shells:\nStreets that follow like a tedious argument\nOf insidious intent\nTo lead you to an overwhelming question...\nOh, do not ask, “What is it?”",
"\nLet us go and make our visit.",
"\n\nHer house is empty and her heart is old,\nAnd filled with shades and echoes that deceive\nNo one save her, for still she tries to weave\nWith blind bent fingers, nets that cannot hold.",
"\nOnce all men’ s arms rose up to her, ‘tis told,\nAnd hovered like white birds for her caress:\nA crown she could have had to bind each tress\nOf hair, and her sweet arms the Witches’ Gold.",
"\n\nNo children;\nCold uncoils in the blood;\nScience, true, not good\nFor you. ",
"So old,\nSuddenly, or so young.",
"\nLyric inside not to be sung.",
"\nPlug pulled, screen gone.",
"\nSun out; mind\nBountiful, playing pain.",
"\nThese are my children\nIn my head. ",
"Unbegotten.",
"\nThis is to self-forget,\nTo have the future\nBorn forgotten.",
"\n\nSomewhere now she takes off the dress I am\nputting on. ",
"It is evening in the antiworld\nwhere she lives. ",
"She is forty-five years away\nfrom her death, the hole which spit her out\ninto pain, impossible at first, later easing,\ngoing, gone. ",
"She has unlearned much by now.",
"\nHer skin is firming, her memory sharpens,\nher hair has grown glossy. ",
"She sees without glasses,\nshe falls in love easily. ",
"Her husband has lost his\nshuffle, they laugh together. ",
"Their money shrinks,\nbut their ardor increases. ",
"Soon her second child\n\nIt seems like you could, but\nyou can’ t go back and pull\nthe roots and runners and replant.",
"\nIt’ s all too deep for that.",
"\nYou’ ve overprized intention,\nhave mistaken any bent you’ re given\nfor control. ",
"You thought you chose\nthe bean and chose the soil.",
"\nYou even thought you abandoned\none or two gardens. ",
"But those things\nkeep growing where we put them —\nif we put them at all.",
"\nA certain kind of Eden holds us thrall.",
"\nEven the one vine that tendrils out alone\nin time turns on its own impulse,"
] | {
"pile_set_name": "Pile-CC"
} | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.013888888888888888,
0,
0
] | 0.000496 | 5 |
[
"Q:\n\nRoles gestion with asp:hyperlink menu\n\nI have a little problem, I just made a menu with some asp:hyperlink structured in list.",
"\nI just wonder if it is possible to filter some of these asp:hyperlink in relation with \"roles\" defined in the web.sitemap?",
"\nFor example :\n <ul id=\"topnav\">\n <li>Dep\n <span>\n <asp:HyperLink Text=\"testing one\" NavigateUrl=\"/DEP/ENC/Dep_Enc.aspx\" runat=\"server\">Encode </asp:HyperLink>\n <asp:HyperLink Text=\"testing two\" NavigateUrl=\"/DEP/ENC/Dep_Enc_D.aspx\" runat=\"server\">Nouveau contrat</asp:HyperLink>\n\n...\n\n <siteMapNode >\n <siteMapNode url=\"/DEP/Dep_Ac.aspx\" title=\"Dép\" >\n <siteMapNode url=\"/DEP/ENC/Dep_Enc.aspx\" roles=\"ALL\" >\n <siteMapNode url=\"/DEP/ENC/Dep_Enc_D.aspx\" roles=\"ADMIN\"/>\n...\n\nso is it possible to make disappear test two if user is not \"admin\"? ",
"\nThanks for help..\n\nA:\n\nYou can always add a runat=\"server\" attribute, along with an id to any classic html tag. ",
"In your case, you could add this to the <li> or <span>as needed: \n<ul id=\"topnav\">\n <li runat=\"server\" id=\"adminLinks\">Dep\n <span>\n <asp:HyperLink Text=\"testing one\" NavigateUrl=\"/DEP/ENC/Dep_Enc.aspx\" runat=\"server\">Encode </asp:HyperLink>\n <asp:HyperLink Text=\"testing two\" NavigateUrl=\"/DEP/ENC/Dep_Enc_D.aspx\" runat=\"server\">Nouveau contrat</asp:HyperLink>\n\n... \n\nThen, in your code behind, use the Visible property to hide it (it won't even be renderer to html):\nif (!",
"User.",
"IsInRole(\"Admin\"))\n{\n adminLinks.",
"Visible = false;\n}\n\n"
] | {
"pile_set_name": "StackExchange"
} | [
0,
0,
0.0016260162601626016,
0,
0,
0,
0.029411764705882353,
0
] | 0.00388 | 5 |
[
"Q:\n\nGet previous href after match using grep, sed or awk\n\nI have a not formmated html file where I need to get the href link that's just before a match... My html file looks like:\n<a href=\"url1.com\">Bla Bla Bla [Test1]</a><a href=\"url2.com\">Bla Bla Bla [Test2]</a><a href=\"url3.com\">Bla Bla Bla [Test3]</a>\n\nSo now I need to get the href content before [Test2] pattern and the expected return is url2.com.",
"\nI'm not a sed or awk expert and I don't think it's possible with a pure grep command.",
"\nI can know if my partern exists inside file using the command below, but I don't know how to get the previous href.",
"\ngrep -o '\\[S06E04\\]' file.html\n\nI really appreciate any help.",
"\nThanks\n\nA:\n\nThis should work:\nsed -n 's/.*href=\"\\([^\"]*\\)\">.*\\[Test2\\].*/\\1/p' file\nurl2.com\n\nWith GNU grep:\ngrep -oP '(?",
"<=href=\")[^\"]*(?=\">[^<>]*\\[Test2\\])' file\nurl2.com\n\n"
] | {
"pile_set_name": "StackExchange"
} | [
0.007407407407407408,
0,
0,
0,
0.00819672131147541,
0
] | 0.002601 | 5 |
[
"B. Dolan and I flew out to Kansas City from February 19-22 to film the video for his �Earthmovers� song.",
"\n\nWe sought out the director, Kyle Harbaugh, after seeing the amazing work he did for KC native Mac Lethal. ",
"I was prepared for high quality work, but the kind of things Harbaugh worked out for �Earthmovers� is beyond anything we could have reasonably expected. ",
"From site locations to costume design, dance squad to film crew, we were blown away at each turn. ",
"I definitely look forward to doing more work with Mr. Harbaugh, Hunuman Brown-Eagle, and the rest of the folks�the next video will be for my upcoming Li(f)e album. ",
"But mainly I�m excited to seeing the final result of this video.",
"\n\nWithout giving too much away, here are some photos we took on one of the locations. ",
"Feel free to string together your own story until we release the actual video (early March.)",
"\n\nThe reason I say that is because the sizes weren't available at first but they are now.",
"\n\nWed Feb 24, 2010 10:50 pm\n\nfuturistxen\n\nJoined: 01 Jul 2002\nPosts: 19377\nLocation: Tighten Your Bible Belt\n\nOoo neat video.",
"\n\nThu Feb 25, 2010 1:08 am\n\nopen\n\nJoined: 03 Jul 2003\nPosts: 377\nLocation: ny, ny\n\nDoes ClassSick Custom print on American Apparel shirts? ",
"Just wondering because I always get these bleach marks on ALL shirts I've owned printed on American Apparel... and it doesn't seem to happen with any other brands.",
"\n\nThu Feb 25, 2010 1:28 am\n\nSage FrancisSelf Fighteous\n\nJoined: 30 Jun 2002\nPosts: 21654\n\nThey print on all style shirts. ",
"Never had a problem like that.",
"\n\nThu Feb 25, 2010 1:30 am\n\nkese\n\nJoined: 16 Mar 2003\nPosts: 5454\n\nI've never heard anything from customers about bleach marks on shirts we've printed, AA or otherwise...\n\nThese two shirts were pretty fun to print, which unfortunately isn't always the case... love the artwork.",
"\n\nThe stills from the video has my mind spinning to see how this all comes together... looks dope.",
"\n\nThu Feb 25, 2010 1:57 am\n\nbbreakz\n\nJoined: 08 Apr 2008\nPosts: 948\n\nWow. ",
"Can't wait to see the dance number with that team in those outfits. ",
"That will just be odd, and maybe scary.",
"\n\nThu Feb 25, 2010 8:33 am\n\nSarcastro\n\nJoined: 27 Sep 2002\nPosts: 3281\n\nfrom those pictures it looks like B. Dolan could write a bad romance.",
"\n\nI like the first t-shirt a lot, any chance other colours are going to be available or just black?"
] | {
"pile_set_name": "Pile-CC"
} | [
0.009615384615384616,
0.018518518518518517,
0,
0,
0.012195121951219513,
0,
0,
0,
0,
0,
0.014388489208633094,
0.006134969325153374,
0,
0,
0,
0,
0,
0,
0,
0.0070921985815602835,
0
] | 0.003235 | 5 |
[
"Supported by an extensive global network of manufacturing facilities and marketing companies, agents and distributors, Trelleborg Sealing Solutions is able to offer service to the highest quality levels associated with a leading company within the marine industry.",
"\n\nTrelleborg Group has been active within the marine and shipping industries for over 25 years. ",
"Significant experience has been gained within the shipbuilding and offshore industries on a wide range of applications on board vessels."
] | {
"pile_set_name": "Pile-CC"
} | [
0.003787878787878788,
0.010416666666666666,
0
] | 0.004735 | 5 |
[
"Once you have gained knowledge, is it possible to go back to that feeling of \"not-knowing\" the knowledge?",
"\n\nRead this passage and comment on what you think it's describing.",
"\n\n\"A newspaper is better than a magazine. ",
"A seashore is better than a street. ",
"At first, it is better to run than walk. ",
"You may have to try several times. ",
"It takes some skill, but it’s easy to learn. ",
"Even young children can enjoy it. ",
"Once successful, complications are minimal. ",
"Birds seldom get too close. ",
"One needs lots of room. ",
"Rain soaks in very fast. ",
"Too many people doing the same thing can also cause problems. ",
"A rock will serve as an anchor. ",
"If things break loose from it, however, you will not get a second chance.\" - ",
"Cognitive Psychology\n\nI read this passage and couldn't figure out what it was talking about. ",
"When I eventually found the answer, it seemed so obvious, like \"how could I have missed that?\" ",
"But now, I'm not able to go back to that feeling of not knowing, before I knew what the passage was about. ",
"Are you able to? ",
"Can you recall that feeling?",
"\n\nMar 16 2013:\nYeah. ",
"I remember a high school algebra class where we studied \"proofs\" of basic mathematical theorems. ",
"I've never used that knowledge; it was 50 years ago. ",
"If I had to \"prove\" that if A=B=C, then C=A, I couldn't do it. ",
"If we don't use or think about the knowledge we receive, it's bound to fade from our memories. ",
"btw; how are things in Egypt? ",
"We all hope that great and ancient cradle of western civilization will find peace and freedom. ",
"Our best wishes are with you.",
"\n\nMar 30 2013:\nIs there somewhere talked about this that doesn't give the answer? ",
"I've read down to \"I read this passage and,\" but I don't want to be given the answer.",
"\nI doubt it's possible to go back - short of the usual forgetting-of information, or maybe hypnosis. ",
"I'm sure a lot of people would like to watch their favorite movie and be able to completely forget who-done-it.",
"\nAnyway, Caela, that's a pretty name!",
"\n\nMar 21 2013:\nSubliminal collective thrust in any culture presupposes many things some so intense they prevail with little regard for truths evidenced to the contrary at a later time. ",
"To be balanced, to get back to neutral perspective spiritual practice has to be engaged. ",
"Which ones depend on several things that are par for the particular culture.",
"\n\nMar 19 2013:\nI feel like our experiences or what we build from to create new experiences. ",
"If you look at iteration, whether it is knowledge or an experience, you will end up doing the same thing but learning something new. ",
"I can look at the same situation from a different perspective and still have a 'wow' moment.",
"\n\nMar 19 2013:\nYou cant unknow what you known; however you can relearn what is learned. ",
"When we were young, we wished for time in life when 'we got older'. ",
"Now older, we remember back to the day we used to wish that wish. ",
"While we remember the feeling, we don't necessarily have that feeling exactly as it was the moment we had it. ",
"Why? ",
"Because we have already had experiences which separate us from that very moment we had as a child.",
"\n\nMar 19 2013:\nI have a deep impression on this discribing. ",
"Our world is filled with 3C, change, crisis, compete.",
"The world is changing all time.",
"We aren't able to distinguish that which one is better or best.",
"So we must make a choice, then try best to make it. ",
"One same thing, someone complete every well, but someone poor.",
"WHY?He doesn't put his heart and soul into one thing.",
"Since we make a choice, we should accomplish it better and better.",
"We have no opportunity to make another choice.",
"\n\nMar 17 2013:\nI find that I can. ",
"I have to place myself in that moment and really concentrate on the things that ran through my mind. ",
"The confusion, the frustration, the meaning behind my emotions, and the reason I wanted the knowledge in the first place. ",
"If we couldn't place ourselves in moments like the \"past\" where we didn't know... it'd be difficult to share with someone how we once felt.",
"\nWhat I mean by this is, for example, riding a bike. ",
"When you are trying to explain to someone who is barely starting and has no idea what it would be like... you go back to that moment yourself. ",
"You then explain to that person how you also felt that way once before and at least for a brief moment your moment of \"not-knowing\" comes back. ",
"Even if just for that moment you were explaining yourself.",
"\nAlso, I think we tend to reflect on our past when we get older. ",
"This sometimes makes us feel \"one way or the other\" whether happy, or sad, or upset. ",
"To me those emotions do tie in with the moment of not knowing.",
"\nNot sure if this answered your question, but I hope it did some good. :)",
"\n\nMar 17 2013:\nI can recall the feeling of many firsts in my life. ",
"The feeling of the first this or that, the feeling of a first love and so on. ",
"While I may be able to experience them again it will be different the next time.",
"\n\nMar 16 2013:\nyou can remember that feeling but to experience it as you did when you did not know would mean time travel but there are ways around this thoughts and knowledge are physically in your brain if you had the knowledge to do so you could remove the parts of that brain with the knowledge or perhaps reset it to a blank neuron\n\nTED Conversations Archives\n\nWe’ve spent three years sharing Ideas, Debates and Questions — and learned a lot.",
"\n\nNow we’re going on hiatus to retool and rebuild from the inside out for a better conversation experience."
] | {
"pile_set_name": "Pile-CC"
} | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.02702702702702703,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.018867924528301886,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
] | 0.000646 | 5 |
[
"Q:\n\nModelForms ForeignKeys and Django\n\nI have an app that has the following models\nmodels.py\nclass Student (models.",
"Model):\n first_name = models.",
"CharField(max_length=40, default='')\n second_name = models.",
"CharField(max_length=40, default='')\n #more fields here\n\nclass Paper (models.",
"Model):\n #more fields here\n student = models.",
"ForeignKey(Student)\n\nclass StudentPayment(models.",
"Model):\n student = models.",
"ForeignKey(Student)\n paper = models.",
"ForeignKey(Paper)\n\nand i have created my ModelForms for adding new student and Papers in very simple way\n#forms.py\nclass StudentForm(forms.",
"ModelForm):\n class Meta:\n model = Student\n\nclass PaperForm(forms.",
"ModelForms):\n class Meta:\n model = Paper\n\nclass StudentPaymentForm(forms.",
"ModelForms):\n class Meta:\n model = StudentPayment\n\nA student pays for a specific paper. ",
"I use the ModelForms to generate a form to add a student a paper or a payment. ",
"When the StudentPaymentForm is created the select field for paper contains all papers that were added in the database. ",
"Is there a way to make the paper select field contain the papers only for a specific chosen student (from the student select field) or is it a jquery(or ajax) task?",
"\n\nA:\n\nDjango will create a default ModelChoiceField for the student attribute. ",
"It is possible to alter the queryset of a ModelChoiceField. ",
"The best way would probably be in the __init__ method of your form:\nclass StudentPaymentForm(forms.",
"ModelForm):\n def __init__(self, *args, **kwargs):\n student_queryset = kwargs.pop('paper_queryset', None)\n super(StudentPaymentForm, self).__init__(*args, **kwargs)\n if self.instance:\n self.fields['paper'].queryset = self.instance.student.paper_set.all()\n elif paper_queryset:\n self.fields['paper'].queryset = paper_queryset\n\nThis will only allow papers related to the specific student instance. ",
"However, it won't magically update your choices when you select another student, you'll need Ajax/jQuery for that. ",
"You will, however, get a validation error when you select a paper that doesn't belong to the student you've selected, and you will have the updated options for the student you've selected once you try to submit the form (and it returns with an error). ",
"\n\n"
] | {
"pile_set_name": "StackExchange"
} | [
0.008695652173913044,
0.03125,
0.016129032258064516,
0.0125,
0.0196078431372549,
0,
0.034482758620689655,
0,
0.007194244604316547,
0.02666666666666667,
0.024096385542168676,
0.02040816326530612,
0.012658227848101266,
0,
0,
0,
0,
0,
0.011160714285714286,
0.008695652173913044,
0,
0
] | 0.010616 | 5 |
[
":title: Configuring Endpoints\n:type: configuration\n:status: published\n:parent: Configuring Federation\n:order: 049\n:summary: Configuring endpoints.",
"\n\n== {title}\n\nConfigure endpoints to enable external systems to send and receive content and metadata from ${branding}."
] | {
"pile_set_name": "Github"
} | [
0.0136986301369863,
0
] | 0.006849 | 5 |
[
"Drunk at the reins: Four Amish teens arrested after crashing BUGGY into patrol car\n\nPolice were on scene investigating reports of underage drinking party\n\nFour Amish teens charged with illegal possession of car\n\nOfficers say several buggies fled the scene\n\nIt is a joyride gone wrong, with a somewhat old-fashioned twist.",
"\n\n\n\nFour Amish teens have been arrested and charged with illegal possession of alcohol after one of their buggies collided with a police car.",
"\n\nThe police were responding to a report of teens holding an underage drinking party in their buggies while parked on deserted country roads.",
"\n\nAs a patrol car arrived on the scene, one of the Amish buggies changed lanes and collided with the police vehicle.",
"\n\nJoyride: Four Amish teens were arrested in upstate New York for underage drinking after one of their buggies crashed into a police patrol car\n\nRural: The town of Sherman is near the Pennsylvania border\n\nThe Chautauqua County Sheriff's Office said the crash occurred around 7:15 Sunday in the rural town of Sherman, near the Pennsylvania border in New York's southwest corner.",
"\n\nAs a patrol car arrived at Clymer Hill Road, the Post-Journal reported that one of the Amish buggies suddenly changed lanes, colliding with the police vehicle.",
"\n\n\n\nThe impact caused the buggy to flip onto its side, causing minor injuries to Marvin Byler, 19, one of the people riding in it.",
"\n\nHe was arrested, along with Marty Troyer, 20, Marianne Troyer, 18, and Leroy Troyer, 20.",
"\n\n\n\nMarianne was also riding in the buggy that flipped, but was unhurt, Newscore reported.",
"\n\nLeroy was driving a second wagon and stopped it after the accident.",
"\n\nPolice say several other buggies fled the scene.",
"\n\nNot-so-quick escape: Police said several other buggies fled the scene\n\n\n\nAccording to Buffalo News, Marty was also charged with unlawfully dealing with a child, as he appeared to be the host of the rural get-together.",
"\n\nPolice said they recovered several containers of alcohol from the two carriages.",
"\n\nDriving a buggy has proved perilous for many Amish whether or not alcohol has played a factor, as they face off against large SUVs, trucks, and inattentive drivers.",
"\n\nLast July, an Amish teen in Wango, New York led police on a slow-speed chase when they spotted him driving with an open beer container.",
"\n\nIn 2009, a man was arrested in Paradise, Pennsylvania, for getting behind the reins after a few too many.",
"\n\n\n\nHe was found slumped over and asleep in his buggy with a blood-alcohol level of .18 per cent."
] | {
"pile_set_name": "OpenWebText2"
} | [
0,
0,
0,
0,
0,
0.006211180124223602,
0.007692307692307693,
0.03333333333333333,
0.022222222222222223,
0.014492753623188406,
0,
0.0091324200913242,
0,
0,
0,
0,
0
] | 0.005476 | 5 |
[
"copyright (C) 2009-2013 Evan Miller <emmiller@gmail.com> and contributors\ncopyright (C) 2014-2017 ChicagoBoss core team members and contributors\n\nSignificant code improvements has been made by\nZachary Kessin ( @zkessin ) (C) 2014\nJesse Gumm ( @choptastic ) (C) 2014\n<chan.sisowath@gmail.com> ( @mihawk ) (C) 2011-2014\nJose Luis Gordo Romero ( @jgordor ) (C) 2011-2013\nDavid N. Welton ( @davidw ) (C) 2013-2014\n\nFor full list of contributors and their contributions to the code please visit\nhttps://github.com/ChicagoBoss/ChicagoBoss/graphs/contributors\n\nIn addition to code contributors, a lot of people have sent us\nbug reports that have also improved the quality of ChicagoBoss.",
"\nGreat respect and big thanks going for you too.",
"\n"
] | {
"pile_set_name": "Github"
} | [
0.01764705882352941,
0,
0
] | 0.005882 | 5 |
[
"Q:\n\nFemale praying in masculine language\n\nWhen women daven (pray), even by ourselves, it is convention to daven with male-gendered words (\"modeh\" vs \"moda\" as one of many examples). ",
" Why is this; are there sources that say we should be doing otherwise? ",
" If so, when did this tradition get started?",
"\n\nA:\n\nThe original siddur did not include a version for women. ",
"Changes to the format for women began later on. ",
"R. Jacob Emden (in his siddur commentary) suggested emending the morning blessings for women, but didn't recommend it. ",
"Chid\"a (Avodat haKodesh 2 5 22) allowed the changes, along with Eshel Avraham (the Buchacher, OC 46 4) and Rivvos Efraim (1 37 2) quoting R. Chaim Kanievsky. ",
"Many siddurim have adopted this approach.",
"\nOpposing views include Siach Tefilla (10) Lubavicher Rebbe (Halacha uMinhag 1 50), citing the need to adhere to established custom, which never altered the service for women. ",
"Furthermore, it is well-known that the male gender is also the neutral gender in Biblical Hebrew, thus it includes both men and women.",
"\nWe do find precedent for changing the service for women in Grace after Meals, see Rema (OC 187 3). ",
"But in that case, it is more than just a grammar issue.",
"\nMore on this topic in the discussion at this link (Hebrew).",
"\n\nA:\n\nThe Rinat Yisrael siddur (a very commonly used siddur in Israel) does indeed make grammatical changes for women. ",
" Modeh becomes modah, she lo asani eved becomes shifcha, etc. ",
"\nMost of our prayers are worded in the plural (\"we\" are asking for something) or in the second person (from You, G-d - and YKVK is a masculine word, that's why it's atah, not at.)",
"\nHowever, the few times where there would be a grammatical difference for women; according to the publishers of Rinat Yisrael, women should say the blessings / prayers according to the rules of proper grammar.",
"\n\n"
] | {
"pile_set_name": "StackExchange"
} | [
0,
0,
0,
0,
0,
0.008403361344537815,
0.02531645569620253,
0,
0.017045454545454544,
0,
0.02,
0,
0,
0,
0,
0.00558659217877095,
0,
0
] | 0.004242 | 5 |
[
"Welcome\n\nWelcome to Foot Clinic of Baton Rouge - J Kemp Tullier DPM!",
"\n\nFoot Clinic of Baton Rouge - J Kemp Tullier DPM has been providing patients in Baton Rouge and surrounding communities with high quality, professional foot care services. ",
"Our clinic was established in 2002 and since then we’ve been providing patients with foot and ankle pain relief as well as diabetic foot care. ",
"At Foot Clinic of Baton Rouge - J Kemp Tullier DPM we care for each and every patient. ",
"We are a family owned and operated clinic and we treat our patients with the upmost respect and compassion. ",
"We look forward to hearing from you and learning how we can provide you with the foot pain relief you deserve."
] | {
"pile_set_name": "Pile-CC"
} | [
0.014705882352941176,
0.005780346820809248,
0,
0.011494252873563218,
0,
0
] | 0.00533 | 5 |
[
"package reflect2\n\nimport (\n\t\"reflect\"\n\t\"unsafe\"\n)\n\n// sliceHeader is a safe version of SliceHeader used within this package.",
"\ntype sliceHeader struct {\n\tData unsafe.",
"Pointer\n\tLen int\n\tCap int\n}\n\ntype UnsafeSliceType struct {\n\tunsafeType\n\telemRType unsafe.",
"Pointer\n\tpElemRType unsafe.",
"Pointer\n\telemSize uintptr\n}\n\nfunc newUnsafeSliceType(cfg *frozenConfig, type1 reflect.",
"Type) SliceType {\n\telemType := type1.Elem()\n\treturn &UnsafeSliceType{\n\t\tunsafeType: *newUnsafeType(cfg, type1),\n\t\tpElemRType: unpackEFace(reflect.",
"PtrTo(elemType)).data,\n\t\telemRType: unpackEFace(elemType).data,\n\t\telemSize: elemType.",
"Size(),\n\t}\n}\n\nfunc (type2 *UnsafeSliceType) Set(obj interface{}, val interface{}) {\n\tobjEFace := unpackEFace(obj)\n\tassertType(\"Type.",
"Set argument 1\", type2.ptrRType, objEFace.rtype)\n\tvalEFace := unpackEFace(val)\n\tassertType(\"Type.",
"Set argument 2\", type2.ptrRType, valEFace.rtype)\n\ttype2.UnsafeSet(objEFace.data, valEFace.data)\n}\n\nfunc (type2 *UnsafeSliceType) UnsafeSet(ptr unsafe.",
"Pointer, val unsafe.",
"Pointer) {\n\t*(*sliceHeader)(ptr) = *(*sliceHeader)(val)\n}\n\nfunc (type2 *UnsafeSliceType) IsNil(obj interface{}) bool {\n\tif obj == nil {\n\t\treturn true\n\t}\n\tobjEFace := unpackEFace(obj)\n\tassertType(\"Type.",
"IsNil argument 1\", type2.ptrRType, objEFace.rtype)\n\treturn type2.UnsafeIsNil(objEFace.data)\n}\n\nfunc (type2 *UnsafeSliceType) UnsafeIsNil(ptr unsafe.",
"Pointer) bool {\n\tif ptr == nil {\n\t\treturn true\n\t}\n\treturn (*sliceHeader)(ptr).Data == nil\n}\n\nfunc (type2 *UnsafeSliceType) SetNil(obj interface{}) {\n\tobjEFace := unpackEFace(obj)\n\tassertType(\"SliceType.",
"SetNil argument 1\", type2.ptrRType, objEFace.rtype)\n\ttype2.UnsafeSetNil(objEFace.data)\n}\n\nfunc (type2 *UnsafeSliceType) UnsafeSetNil(ptr unsafe.",
"Pointer) {\n\theader := (*sliceHeader)(ptr)\n\theader.",
"Len = 0\n\theader.",
"Cap = 0\n\theader.",
"Data = nil\n}\n\nfunc (type2 *UnsafeSliceType) MakeSlice(length int, cap int) interface{} {\n\treturn packEFace(type2.ptrRType, type2.UnsafeMakeSlice(length, cap))\n}\n\nfunc (type2 *UnsafeSliceType) UnsafeMakeSlice(length int, cap int) unsafe.",
"Pointer {\n\theader := &sliceHeader{unsafe_NewArray(type2.elemRType, cap), length, cap}\n\treturn unsafe.",
"Pointer(header)\n}\n\nfunc (type2 *UnsafeSliceType) LengthOf(obj interface{}) int {\n\tobjEFace := unpackEFace(obj)\n\tassertType(\"SliceType.",
"Len argument 1\", type2.ptrRType, objEFace.rtype)\n\treturn type2.UnsafeLengthOf(objEFace.data)\n}\n\nfunc (type2 *UnsafeSliceType) UnsafeLengthOf(obj unsafe.",
"Pointer) int {\n\theader := (*sliceHeader)(obj)\n\treturn header.",
"Len\n}\n\nfunc (type2 *UnsafeSliceType) SetIndex(obj interface{}, index int, elem interface{}) {\n\tobjEFace := unpackEFace(obj)\n\tassertType(\"SliceType.",
"SetIndex argument 1\", type2.ptrRType, objEFace.rtype)\n\telemEFace := unpackEFace(elem)\n\tassertType(\"SliceType.",
"SetIndex argument 3\", type2.pElemRType, elemEFace.rtype)\n\ttype2.UnsafeSetIndex(objEFace.data, index, elemEFace.data)\n}\n\nfunc (type2 *UnsafeSliceType) UnsafeSetIndex(obj unsafe.",
"Pointer, index int, elem unsafe.",
"Pointer) {\n\theader := (*sliceHeader)(obj)\n\telemPtr := arrayAt(header.",
"Data, index, type2.elemSize, \"i < s.Len\")\n\ttypedmemmove(type2.elemRType, elemPtr, elem)\n}\n\nfunc (type2 *UnsafeSliceType) GetIndex(obj interface{}, index int) interface{} {\n\tobjEFace := unpackEFace(obj)\n\tassertType(\"SliceType.",
"GetIndex argument 1\", type2.ptrRType, objEFace.rtype)\n\telemPtr := type2.UnsafeGetIndex(objEFace.data, index)\n\treturn packEFace(type2.pElemRType, elemPtr)\n}\n\nfunc (type2 *UnsafeSliceType) UnsafeGetIndex(obj unsafe.",
"Pointer, index int) unsafe.",
"Pointer {\n\theader := (*sliceHeader)(obj)\n\treturn arrayAt(header.",
"Data, index, type2.elemSize, \"i < s.Len\")\n}\n\nfunc (type2 *UnsafeSliceType) Append(obj interface{}, elem interface{}) {\n\tobjEFace := unpackEFace(obj)\n\tassertType(\"SliceType.",
"Append argument 1\", type2.ptrRType, objEFace.rtype)\n\telemEFace := unpackEFace(elem)\n\tassertType(\"SliceType.",
"Append argument 2\", type2.pElemRType, elemEFace.rtype)\n\ttype2.UnsafeAppend(objEFace.data, elemEFace.data)\n}\n\nfunc (type2 *UnsafeSliceType) UnsafeAppend(obj unsafe.",
"Pointer, elem unsafe.",
"Pointer) {\n\theader := (*sliceHeader)(obj)\n\toldLen := header.",
"Len\n\ttype2.UnsafeGrow(obj, oldLen+1)\n\ttype2.UnsafeSetIndex(obj, oldLen, elem)\n}\n\nfunc (type2 *UnsafeSliceType) Cap(obj interface{}) int {\n\tobjEFace := unpackEFace(obj)\n\tassertType(\"SliceType.",
"Cap argument 1\", type2.ptrRType, objEFace.rtype)\n\treturn type2.UnsafeCap(objEFace.data)\n}\n\nfunc (type2 *UnsafeSliceType) UnsafeCap(ptr unsafe.",
"Pointer) int {\n\treturn (*sliceHeader)(ptr).Cap\n}\n\nfunc (type2 *UnsafeSliceType) Grow(obj interface{}, newLength int) {\n\tobjEFace := unpackEFace(obj)\n\tassertType(\"SliceType.",
"Grow argument 1\", type2.ptrRType, objEFace.rtype)\n\ttype2.UnsafeGrow(objEFace.data, newLength)\n}\n\nfunc (type2 *UnsafeSliceType) UnsafeGrow(obj unsafe.",
"Pointer, newLength int) {\n\theader := (*sliceHeader)(obj)\n\tif newLength <= header.",
"Cap {\n\t\theader.",
"Len = newLength\n\t\treturn\n\t}\n\tnewCap := calcNewCap(header.",
"Cap, newLength)\n\tnewHeader := (*sliceHeader)(type2.UnsafeMakeSlice(header.",
"Len, newCap))\n\ttypedslicecopy(type2.elemRType, *newHeader, *header)\n\theader.",
"Data = newHeader.",
"Data\n\theader.",
"Cap = newHeader.",
"Cap\n\theader.",
"Len = newLength\n}\n\nfunc calcNewCap(cap int, expectedCap int) int {\n\tif cap == 0 {\n\t\tcap = expectedCap\n\t} else {\n\t\tfor cap < expectedCap {\n\t\t\tif cap < 1024 {\n\t\t\t\tcap += cap\n\t\t\t} else {\n\t\t\t\tcap += cap / 4\n\t\t\t}\n\t\t}\n\t}\n\treturn cap\n}\n"
] | {
"pile_set_name": "Github"
} | [
0.008064516129032258,
0,
0.010869565217391304,
0,
0,
0,
0.011363636363636364,
0.007575757575757576,
0.010309278350515464,
0,
0,
0.004975124378109453,
0.006756756756756757,
0,
0.006944444444444444,
0,
0,
0.0625,
0,
0.009900990099009901,
0,
0.006578947368421052,
0,
0,
0.009174311926605505,
0.011363636363636364,
0,
0,
0.0044444444444444444,
0.009389671361502348,
0,
0,
0.005813953488372093,
0.009345794392523364,
0.012269938650306749,
0,
0,
0,
0.02112676056338028,
0.005813953488372093,
0.013422818791946308,
0.024691358024691357,
0.06666666666666667,
0.017543859649122806,
0.02702702702702703,
0,
0.058823529411764705,
0.07692307692307693,
0.125,
0.08333333333333333,
0.004366812227074236
] | 0.01436 | 5 |
[
"Introduction {#sec1}\n============\n\nL'incidence du DT1 est en augmentation dans le monde: 3% par année, accroissement rapide attribué au changement des facteurs environnementaux \\[[@cit0001], [@cit0002]\\]. ",
"Plus de 79.100 enfants ont fait le DT1 dans le monde en 2013, 80 % des personnes atteintes de diabète en général vivent dans les pays à faible et moyen revenu \\[[@cit0002], [@cit0003]\\]. ",
"Le DT1 déclaré chez l'enfant est associé à une surmortalité, ce sont les plus jeunes enfants qui en sont les plus à risque, parce que sa prise en charge très spécifique, relève de la sur spécialité \\[[@cit0001], [@cit0004], [@cit0005]\\]. ",
"Pour les pays où le système de santé est à ressources limitées, le problème est plus grave, souvent le DT1 n'est pas diagnostiqué chez l'enfant en Afrique, s'il l'est, le décès arrive prématurément \\[[@cit0005], [@cit0006]\\]. ",
"En République Démocratique du Congo (RDC), comme dans la plupart des pays de l'Afrique sub-saharienne, les données relatives à l'incidence du DT1 de l'enfant sont rares ou inexistantes \\[[@cit0002], [@cit0004], [@cit0007]\\]. ",
"L'objectif était de montrer l'évidence et la gravité de la survenue de plus en plus précoce de l'âge de diagnostic du DT1 de l'enfant dans notre milieu.",
"\n\nPatient et observation {#sec2}\n======================\n\nIl s'agissait d'un petit enfant de sexe masculin, âgé de 3ans, pesant 17 Kilos, reçu aux cliniques universitaires de Lubumbashi pour fièvre, rhume, toux,anorexie et douleurs abdominales. ",
"Sa température était à 38,8°C, ses amygdales rouges et tuméfiées. ",
"Une rhino-amygdalite avait été retenue et prise en charge comme telle. ",
"Le lendemain, le patient fut ramené pour vomissements, polyurie, soif et persistance des premiers symptômes. ",
"Il était déshydraté, polypneique, somnolant. ",
"Le même diagnostic était reconduit; le paludisme et une infection urinaire étaient à exclure. ",
"Dans le bilanpara clinique réalisé d'urgence, la glycémie à 586mg% va conduire à rechercher la glycosurie revenue à 4 croix, la cétonurie à 3 croix, l'albuminurie à 2 croix et le pH urinaire à 6, sans leucocyturie. ",
"La goutte épaisse était négative. ",
"C'est alors que le diagnostic d'une acidocétose diabétique fut retenu; une réhydratation au sérum physiologique et une insulinothérapie intensive à la pompe instaurées. ",
"Un relais en sous cutané entrepris par après. ",
"A noter que le patient avait été traité 2 semaines avant pour paludisme et pharyngite; que la notion de polyurie avait était signalée mais banalisée. ",
"A la deuxième consultation cette notion n'a été ni évoquée, ni recherchée, pendant qu'elle était toujours là. ",
"Les antécédents par rapport au diabète dans sa famille n'avaient pas été retrouvés. ",
"Pour le reste des examens, L'hémoglobine glyquée 6 jours après le traitement intensif était à 6,9%; l'anticorps antiacide glutamique décarboxylase(GAD65) isolé à 46UI/ml (valeurs normales \\<30UI/ml) ainsi que l'anticorps anti tyrosine phosphatase (IA2) à 3,26UI/ml (valeurs normales \\< 7,5UI/ml). ",
"La C-peptide n'a pu être dosée. ",
"L'écouvillonnage de la gorge avait isolé le streptococcus sensible à la cefotaxime, à la norfloxacine et à l' Imipenème. ",
"Au vu de tous ces éléments, le diagnostic de diabète auto-immun de type 1 a été confirmé, compliqué d'une acidocétose sur un fond d'infection et l'antibiothérapie adaptée.",
"\n\nDiscussion {#sec3}\n==========\n\nL'élévation de l'incidence du DT1 de l'enfant serait due non à l'augmentation globale des nouveaux cas, mais plus à un décalage vers un plus jeune âge du début de la maladie, notamment vers les enfants âgés de moins de 5 ans, traduction des facteurs environnementaux trop propices \\[[@cit0001]\\]. ",
"Notre patient avait 3 ans. ",
"Le paradoxe en Afrique réside sur un écart entre une urbanisation galopante à la base de modification des modes de vie, de l'épidémie des maladies non transmissibles dont le diabète et les systèmes de santé qui restent à ressources limitées \\[[@cit0006], [@cit0007]\\]. ",
"Le DT1 chez les tout-petits enfants comporte des particularités, les symptômes manquent de spécificité, sont d'une grande banalité et peuvent facilement être attribués à d'autres pathologies \\[[@cit0001]\\]. ",
"Notre patient avait les signes d'une cétose diabétique, ce diagnostic n'avait pas était envisagé d'emblée. ",
"A ces problèmes, ajouter les moyens économiques limités des parents, face à un coût prohibitif d'un traitement qui par ailleurs est très contraignant, plus l'enfant est petit; il se pose souvent un problème d'erreur, de retard diagnostic et de difficulté de prise en charge \\[[@cit0004], [@cit0007]\\]. ",
"Ainsi, le DT1 de l'enfant est souvent découvert sous forme d'acidocétose diabétique inaugurale, complication potentiellement mortelle et 90% de décès arrivent prématurément chez les enfants atteints de DT1 en Afrique, en moins d'une année après le diagnostic qui souvent n'est même pas posé \\[[@cit0002], [@cit0004], [@cit0007]\\]. ",
"Ça serait la cause d'une prévalence apparemment faible du DT1 de l'enfant en Afrique \\[[@cit0002]\\]; de quoi attirer l'attention des cliniciens.",
"\n\nLe DT1 est insulinodépendant, la mise en évidence d'un ou de plus d'un des auto-anticorps confirme le diagnostic \\[[@cit0008], [@cit0009]\\]. ",
"Chez notre patient, l'anticorps antiGAD65 avait été isolé positivement à 46 UI/ml, l'anti IA2 faiblement à 3,26 UI/ml. ",
"L'hémoglobine glyquée (Hb A1C) dosée 6 jours après une insulinothérapie intensive à la pompe était à 6,9 %, ce qui ne nous a pas permis de connaitre sa valeur initiale avant ce mode de traitement qui la fait rapidement chuter , exposant à des hypoglycémies iatrogènes \\[[@cit0001]\\]. ",
"La c-peptide n'a pu être dosée, ce qui ne nous avait pas permis de prédire sur une transition éventuelle par une période de lune de miel chez notre patient, période survenant néanmoins à un taux faible à moins de 5 ans \\[[@cit0010]\\]. ",
"Face à toutes ces difficultés de diagnostic et de prise en charge du DT1 de l'enfant dans nos milieux, l'idéal serait un dépistage précoce des enfants à risque. ",
"Chose controversée dans la littérature \\[[@cit0008], [@cit0009]\\] et très difficile à réaliser dans nos contextes, car le coût très élevé, test souvent indisponible, aussi l'absence des anticorps et même l'inexistence d'antécédent de diabète dans la famille n'exclut pas la possibilité qu'un enfant puisse développer un jour le DT1. ",
"Même si le test s'avérait positif, il n'existe pas de traitement préventif à ce jour, car aucune immunomodulation préventive (immunosuppresseurs, insuline en sous cutané ou oral, nicotinamide...) ne s'est avérée efficace pour empêcher l'apparition du DT1 \\[[@cit0008]-[@cit0010]\\].",
"\n\nConclusion {#sec4}\n==========\n\nLe DT1 de l'enfant est bien présent dans notre milieu, même chez les tout- petits enfants de moins de 5 ans. ",
"Sa clinique étant moins précise plus l'enfant est petit, il convient de le rechercher devant toute notion de polyurie voire d'énurésie. ",
"L'éducation de la communauté sur la surveillance des signes annonçant le début du diabète, la capacitation de nos systèmes de santé, l'implication étatique, peuvent aider au diagnostic et à une prise en charge précoce et efficace; pour améliorer espérance et qualité de vie des enfants atteints de DT1. ",
"L'élaboration des registres pour l'étude des caractéristiques épidémiologiques du DT1 de l'enfant dans notre milieu devient une impérative.",
"\n\nConflits d'intérêts\n===================\n\nLes auteurs ne déclarent aucun conflit d'intérêts.",
"\n\nContributions des auteurs\n=========================\n\nTous les auteurs ont contribué à la réalisation de l'article, ont lu et approuvé la version finale du manuscrit.",
"\n"
] | {
"pile_set_name": "PubMed Central"
} | [
0.00975609756097561,
0.0106951871657754,
0.01680672268907563,
0.008849557522123894,
0.013333333333333334,
0.013157894736842105,
0.00819672131147541,
0,
0.014084507042253521,
0,
0,
0,
0.013953488372093023,
0.029411764705882353,
0.005917159763313609,
0.021739130434782608,
0,
0.01818181818181818,
0,
0.013468013468013467,
0.03125,
0,
0.005847953216374269,
0.01818181818181818,
0.037037037037037035,
0.011152416356877323,
0.004830917874396135,
0.018691588785046728,
0.026490066225165563,
0.015105740181268883,
0.013888888888888888,
0.013986013986013986,
0.03361344537815126,
0.01056338028169014,
0.01276595744680851,
0.018633540372670808,
0.009009009009009009,
0.0071174377224199285,
0.02112676056338028,
0,
0.0033003300330033004,
0.014388489208633094,
0,
0.011976047904191617,
0
] | 0.011922 | 5 |
[
"\n311 F.Supp.2d 1151 (2004)\nElizabeth BROWN o/b/o Cathy Brown, Plaintiff,\nv.\nCOMMISSIONER OF SOCIAL SECURITY, Defendant\nNo. ",
"CIV.A. 02-2287-DJW.",
"\nUnited States District Court, D. Kansas.",
"\nMarch 18, 2004.",
"\n*1152 *1153 *1154 Daniel J. Devine, Kansas City, MO, Henry M. Stoever, Overland Park, KS, for Plaintiff.",
"\nDavid D. Zimmerman, Office of United States Attorney, Kansas City, KS, for Defendant.",
"\n\nMEMORANDUM AND ORDER\nWAXSE, United States Magistrate Judge.",
"\nPlaintiff, on behalf of her minor daughter Cathy, seeks judicial review, pursuant to 42 U.S.C. § 405(g), of the final decision of Defendant Commissioner of the Social Security Administration (\"Commissioner\") denying her daughter's application for Supplemental Security Income (\"SSI\") benefits under Title XVI of the Social Security Act, 42 U.S.C. §§ 1381, et seq. ",
"The parties have filed their consent to jurisdiction by Magistrate Judge (doc. ",
"8) pursuant to 28 U.S.C. § 636(c)(1) and Fed.",
"R.Civ.",
"P. 73. ",
"Plaintiff has filed a brief (doc. ",
"21) seeking judicial review of the Commissioner's decision. ",
"The Commissioner has filed a brief in opposition (doc. ",
"22).",
"\nThe Court has reviewed the administrative record and the parties' briefs. ",
"For the reasons set forth below, the Court affirms the decision of the Commissioner.",
"\n\nI. Standard of Review\nPursuant to 42 U.S.C. § 405(g), a court may render \"upon the pleadings and transcript of the record, a judgment affirming, modifying, or reversing the decision of the Commissioner of Social Security, with or without remanding the cause for a rehearing.\" ",
"The court reviews the decision of the Commissioner to determine whether the record as a whole contains substantial evidence to support the Commissioner's decision.[1] \"Substantial evidence\" is \"more than a mere scintilla\" and is \"such relevant evidence as a reasonable mind might accept as adequate to support a conclusion.",
"\"[2] In reviewing the record to determine whether substantial evidence supports the Commissioner's decision, the court may neither reweigh the evidence nor substitute its discretion for that of the Commissioner.[3] Evidence is not considered substantial \"if it is overwhelmed by other evidence particularly certain types of evidence (e.g., that offered by treating physicians) or if it really constitutes not evidence but mere conclusion.",
"\"[4]\n*1155 The court also reviews the decision of the Commissioner to determine whether the Commissioner applied the correct legal standards.[5] The Commissioner's failure to apply the proper legal standard may be sufficient grounds for reversal independent of the substantial evidence analysis.[6] Accordingly, the court reviews the decision of the Commissioner to determine whether the record as a whole contains substantial evidence to support the Commissioner's decision and to determine whether the correct legal standards were applied.[7]\n\nII. ",
"Procedural History\nOn February 25, 2000, Plaintiff, on behalf of her daughter, protectively filed an application for child's SSI based on disability under Title XVI. (",
"See Certified Transcript of the Record (\"Tr.\") ",
"at 65-67.) ",
"The Commissioner denied the claim initially and upon reconsideration. (",
"Tr. ",
"42, 48-51) On July 5, 2001, the Administrative Law Judge (\"ALJ\") conducted a hearing on Plaintiff daughter's claim. (",
"Tr. ",
"25-38) Plaintiff and her daughter appeared at the hearing in person and with their attorney, Daniel J. Devine. (",
"Tr. ",
"27)\nOn August 10, 2001, the ALJ issued his decision, in which he concluded that Plaintiff's daughter is not disabled within the meaning of the Social Security Act. (",
"Tr. ",
"15-23) In reaching this conclusion, the ALJ determined that while Cathy's mild mental retardation qualifies as a severe impairment, it does not meet or equal in severity the criteria for any listed impairment in 20 C.F.R. Part 404, Subpart P, Appendix 1. (",
"Tr. ",
"17) As part of this determination, the ALJ found Cathy's claimed asthmatic condition to be not severe as it results in no more than minimal functional limitations. (",
"Tr. ",
"17) The ALJ further concluded that Cathy's impairments are not functionally equivalent in severity to any listed impairment in that they did not result in \"marked\" limitations in two functional domains or \"extreme\" limitations in one functional domain. (",
"Tr. ",
"23)\nOn September 12, 2001, Plaintiff requested a review of the hearing decision by the Appeals Council. (",
"Tr. ",
"7-8) The Appeals Council denied the request for review on April 25, 2002. (",
"Tr. ",
"5-6) The findings of the ALJ therefore stand as the final decision of the Commissioner in this case.",
"\nPlaintiff alleges in her daughter's application for benefits that her daughter became disabled and eligible to receive benefits on February 25, 2000. (",
"Tr. ",
"66) Plaintiff claims that her daughter is disabled due to learning disabilities and asthma under control. (",
"Tr. ",
"74)\nAt the time of the hearing before the ALJ, Cathy was eleven years of age (Tr. ",
"16) and was in sixth grade. (",
"Tr. ",
"34-37) Although she was in sixth grade, she attended special education classes and read at a second grade level. (",
"Tr. ",
"34-35, 121)\n\nIII. ",
"The ALJ's Findings\nIn his decision of August 10, 2001, the ALJ made the following findings:\n1. ",
"Claimant ... is a child under the age of 18, and is currently 11 years of age.",
"\n2. ",
"Claimant has never performed substantial gainful activity.",
"\n\n*1156 3. ",
"Claimant has the following medically determinable impairment which is \"severe\" within the meaning of 20 CFR § 416-924(c): mild mental retardation (Verbal I.Q. score of 71, Performance I.Q. of 69 and Full Scale I.. Q. score of 68). ",
"Claimant also has an asthmatic condition which is found to be not severe as it results in no more than minimal functional limitations.",
"\n4. ",
"Claimant's impairment(s) are not of a severity which medically meets or equals the severity of any impairment listed in Part B of Appendix 1 to Subpart P, 20 CFR Part 404 (\"Listing of Impairment\"). ",
"None of claimant's impairments are functionally equivalent in severity to any listed impairment.",
"\n5. ",
"Claimant does not have \"marked\" limitations in two functional domains or \"extreme\" limitations in one functional domain.",
"\n6. ",
"Subjective complaints are considered credible only to the extent that they are supported by the evidence of record as summarized in the text of this decision.",
"\n7. ",
"Claimant is found to be \"not disabled\" within the meaning of the Act.",
"\n(Tr. ",
"22-23)\n\nIV. ",
"Analysis\n\nA. Determining Disability for Children\nDisabled children under the age of eighteen from low-income families are entitled to receive cash benefits known as SSI under Title XVI of the Social Security Act.[8] In order to qualify for SSI: (1) the child's income and assets (including those imputed from the child's parents) must fall below a specified amount; and (2) the child must be \"disabled,\" i.e., must have a \"medically determinable physical or mental impairment, which results in marked and severe functional limitations, and which can be expected to result in death or which has lasted or can be expected to last for a continuous period of not less than 12 months.",
"\"[9] The claimant seeking benefits bears the burden of proving that his or her impairment meets or equals a listed impairment.[10]\nSocial Security Regulations promulgated by the Commissioner, effective January 1, 2001, establish a three-step sequential evaluation process to be followed in a child disability case.[11] In the first step, the Commissioner must determine whether the child is engaging in substantial gainful activity; if so, a finding of nondisability is made and the claim is denied.[12] If the child is not engaged in substantial gainful activity, the Commissioner proceeds to the second step to determine whether the child has a severe medically determinable impairment or combination of impairments.[13] If the child is found to have an impairment that is severe, the Commissioner proceeds to the third and final step, in which the Commissioner determines whether the child's impairment meets or medically or functionally equals an impairment in the Listing of Impairments (\"Listing\").[14] An impairment will be found to cause \"marked and severe functional limitations\" if it *1157 meets or medically equals a listed impairment, or if it is functionally equal in severity to a listed impairment.[15] To be functionally equivalent, the child's limitations must be at least equal in severity and duration to limitations associated with a listed impairment.[16] Furthermore, the child's impairment must also meet the durational requirement of lasting or can be expected to last twelve months before the child can be found disabled.[17]\nThe \"functionally equivalent\" analysis requires the Commissioner to analyze six domains, which are \"broad areas of functioning intended to capture all of what a child can or cannot do.",
"\"[18] The six domains are: (i) acquiring and using information; (ii) attending and completing tasks; (iii) interacting and relating with others; (iv) moving about and manipulating objects; (v) caring for oneself; and (vi) health and physical well-being.[19]\nThe regulations explain that in evaluating a child claimant's ability to function in each of these domains, the Commissioner will seek information to help answer the following questions about whether the claimant's activities are typical of other children the claimant's age who do not have impairments: (1) What activities can the claimant perform? (",
"2) What activities is the claimant unable to perform? (",
"3) Which of the claimant's activities are limited or restricted compared to other children the claimant's age who do not have impairments? (",
"4) Where does the claimant have difficulty with his/her activities-at home, in child care, at school, or in the community? (",
"5) Does the claimant have difficulty independently initiating, sustaining, or completing activities? (",
"6) What kind of help does the claimant need to do his/her activities, how much help is needed, and how often is the help needed?[20]\nA finding of functional equivalence will be made only if a child has \"marked\" limitations in two domains of functioning, or an \"extreme\" limitation in one domain.[21] A \"marked\" limitation in a domain means the claimant's impairment interferes seriously with his or her ability to independently initiate, sustain or complete activities.[22] This may mean serious limitation exists in only one activity, \"or when the interactive and cumulative effects of [the] impairment(s) limit several activities.",
"\"[23] A \"marked\" limitation also may mean \"a limitation that is more than moderate but less than extreme.",
"\"[24]\nAn \"extreme\" limitation is the rating given to the worst limitations, and occurs in a domain when a claimant's impairment interferes very seriously with his or her ability to independently initiate, sustain, or complete activities.[25] An \"extreme\" limitation is more than \"marked,\" but does not necessarily mean a total lack or loss of ability to function.[26]\n\n\n*1158 B. Alleged Points of Error\n\n1. ",
"Whether substantial evidence in the record supports the ALJ's determination that Cathy's impairments do not meet or functionally equal Listing 112.05D\nIn her Brief Requesting Reversal of the Commissioner's Decision, Plaintiff contends that the Commissioner's finding that Cathy's impairments are not medically or functionally equivalent to any impairment is not supported by substantial evidence on the record as a whole. ",
"Specifically, she challenges the ALJ's determination that Cathy's asthmatic condition is not severe, and thus does not qualify as an additional and significant limitation of function under Listing 112.05D. She argues that the ALJ's finding that her daughter's asthmatic condition results in no more than minimal functional limitation, i.e., that is not severe, is not supported by the medical evidence of record. ",
"The Commissioner contends that substantial evidence in the record as a whole supports the ALJ's finding that Plaintiff did not have additional limitations which more than minimally limited her ability to function.",
"\nThe introductory paragraphs to \"112.00 Mental Disorders\" explain how to apply the listings: \"Listing 112.05 (Mental Retardation) contains six sets of criteria. ",
"If an impairment satisfies the diagnostic description in the introductory paragraph and any one of the six sets of criteria, [the Commissioner] will find that the child's impairment meets the listing.",
"\"[27] Listing 112.05 Mental Retardation states that it is \"[c]haracterized by significantly subaverage general intellectual functioning with deficits in adaptive functioning.",
"\"[28] The required level of severity for this disorder is met when the requirements in one of the six sets of criteria (A, B, C, D, E or F) are satisfied.[29]\nTo meet the severity requirement for Listing 112.05D, a claimant must show that he or she has a \"valid verbal, performance, or full scale I.Q. of 60 through 70 and a physical or other mental impairment imposing additional and significant limitation of function.",
"\"[30] Therefore, to meet the level of severity for Listing 112.05D, the child must satisfy a two-prong test: (1) the child must establish the required I.Q.; and (2) the child must show another impairment imposing \"additional and significant limitation of function.",
"\"[31] For Listing 112.05D, the Commissioner assesses the degree of functional limitation the additional impairment imposes to determine if it causes more than minimal functional limitations, i.e., is a \"severe\" impairment, as defined in 20 C.F.R. § 416.924(c).[32] If the additional impairment does not cause limitations that are \"severe\" as defined in 20 C.F.R. § 416.924(c), the court will not find that the additional impairment imposes an additional and significant limitation of function.[33] A finding that a child has an additional impairment (besides low I.Q.), and that this impairment is \"severe\" under 20 C.F.R. § 416.924(c), means that the impairment satisfies the Listing 112.05D requirement of an impairment imposing an \"additional and significant limitation of function.\"",
"\n*1159 In this case, the ALJ found that Cathy has mild mental retardation with a verbal I.Q. score of 71, Performance I.Q. score of 69, and Full Scale I.Q. score of 68. (",
"Tr. ",
"17) She therefore met the first prong of the Listing. ",
"As to the second prong of the Listing, he concluded, however, that she \"has an asthmatic condition which is found to be not severe as it results in no more than minimal functional limitations.\" (",
"Tr. ",
"17)\nHere, the issue is whether Cathy's claimed additional impairment of asthma is a \"severe\" impairment, and, as such, qualifies as an additional and significant limitation of function under Listing 112.05D. Section 416.924(c) defines a \"severe\" impairment as one that causes more than minimal functional limitations.[34]\nIn his decision, the ALJ found that although Cathy has a history of asthma, nothing in the evidence of record indicates that her asthma is severe. (",
"Tr. ",
"21) The ALJ noted that, according to her teachers, Cathy is able to stand, walk, run, jump, and balance without any problems. (",
"Tr. ",
"21) The ALJ also noted that Cathy has not been hospitalized as an inpatient during the period in question and was last hospitalized as an inpatient for asthma symptoms about five years ago. (",
"Tr. ",
"22) The ALJ also reported that Children's Mercy treatment notes made reference to her playing basketball. (",
"Tr. ",
"22) The ALJ found that Plaintiff's claim that one of Cathy's physicians had advised Cathy to stop playing basketball was not supported by the record. (",
"Tr. ",
"22) Additionally, the ALJ found that Cathy's use of a breathing machine when symptoms arise does not present a significant problem and does not interfere or interrupt activities in school and other settings. (",
"Tr. ",
"22)\nThe Court has reviewed the record and determines that substantial evidence in the record supports the ALJ's determination that Cathy's asthma is not severe. ",
"The ALJ properly noted that reports from Cathy's teachers were inconsistent with her claim of severe asthma. (",
"Tr. ",
"21-22) Reports prepared by Cathy's teachers indicated that she had no physical limitations. (",
"Tr. ",
"110, 115) Cathy attended regular physical education classes. (",
"Tr. ",
"130) The ALJ properly gave significant weight to the observations of Cathy's teachers and other school personnel as individuals with knowledge of any significant physical limitations due to her asthma. (",
"Tr. ",
"21-22) The ALJ properly noted that Cathy's hospital reports were not consistent with severe asthma. (",
"Tr. ",
"21-22) He also properly observed that the medical treatment notes indicating that Cathy complained of becoming short of breath while playing basketball do not reflect that her doctors told her not to play. (",
"Tr. ",
"32) In addition, the ALJ properly noted that Cathy had not been hospitalized for asthma in five years. (",
"Tr. ",
"22, 215)\nThe Court also finds the fact that Plaintiff indicated Cathy's asthma was \"under control\" in the Disability Report (Tr. ",
"74), which was filled out in conjunction with her daughter's application for benefits, supports the ALJ's determination that Cathy's asthma is not severe. ",
"This was not the only place in the record that Plaintiff indicated that Cathy's asthma had negligible effect on her physical abilities. ",
"Plaintiff also checked the \"No\" box in response to the April 16, 2000 Function Report question \"Are the child's physical abilities limited?\" (",
"Tr. ",
"91) A review of the medical records reveals that Cathy has been treated occasionally for asthma during the relevant period, primarily with inhalers and Prelone for flare-ups. ",
"Although the medical records indicate Cathy's asthma requires treatment *1160 with inhalers, this alone does not establish that her asthma is a severe impairment. ",
"Section 416.930 requires a child claimant to follow the treatment prescribed by his or her physician if the treatment can reduce the child's functional limitations so that they are no longer marked and severe.[35] When an impairment can be controlled by medication, a claimant is not disabled unless he or she has a justifiable reason for refusing to take the medication.[36]\nPlaintiff also argues that the ALJ erred by failing to consider the Social Security Administration's indication in its Notice of Reconsideration that Cathy's impairments are severe. ",
"The Notice of Reconsideration, dated July 5, 2000, states as follows:\nYou said that Cathy is disabled because of learning disabilities (she doesn't comprehend what she reads), asthma that is under control and has asthma attacks when she is running or playing. ",
"The medical evidence shows that Cathy has a history of learning problems and asthma. ",
"Her impairment [sic] are severe, but do not meet the requirements for disability benefits. ",
"She is able to think, act and communicate her needs in an age appropriate manner. ",
"We have determined that Cathy's overall medical condition does not result in marked or severe functional limitations.",
"\n(Tr. ",
"48) (emphasis added).",
"\nAlthough not clear, the Commissioner's July 5, 2000 Notice of Reconsideration appears to suggest that at least one of Cathy's impairments is severe. ",
"Even if the Commissioner intended to state that both her learning problems and asthma are severe as defined by 20 C.F.R. § 416.924(c), the inclusion of this statement is not binding on the ALJ's review. ",
"The regulations provide that after an adverse reconsideration determination, the claimant is entitled to a hearing by the Commissioner and may request a de novo hearing before an ALJ.[37] Failure to request a hearing before an ALJ renders the adverse reconsideration a final decision.[38]\nIn this case, Plaintiff timely requested a hearing before an ALJ (doc. ",
"52). ",
"Thus, upon her timely request for a hearing before an ALJ, the Commissioner's Notice of Reconsideration did not become a final and binding determination. ",
"The ALJ, therefore, was not bound by the statements set forth in the Commissioner's Notice of Reconsideration.",
"\nIn addition, Plaintiff argues that, with respect to her asthma, the ALJ failed to mention that the report of state agency medical consultant, Dr. Alan L. Cowles, M.D., Ph. ",
"D., stated that Cathy's motor impairment is less than marked. (",
"Tr. ",
"209-10) This comment was included in Dr. Cowles' report attached to the Childhood Disability Evaluation Form dated June 29, 2000. (",
"Tr. ",
"206-11)\nWhile the record must demonstrate that the ALJ considered all of the evidence and discussed the evidence supporting his decision, the uncontroverted evidence not relied upon, and any significantly probative evidence rejected, the ALJ need not discuss every piece of evidence.[39] In short, the ALJ need only provide *1161 a sufficient discussion as to allow for meaningful review by the court.[40]\nAlthough the ALJ did not specifically discuss Dr. Cowles' report in his decision, the Court determines that his failure to do so in this case is not reversible error. ",
"Even though his report concludes that Cathy's motor impairment is \"less than marked,\" this is consistent with the ALJ's determination that Cathy's asthma is not severe. ",
"The analysis section of Dr. Cowles' report is also consistent with the ALJ's determination that Cathy's asthma is not severe:\nFour pieces of evidence indicate that Cathy's physical condition is good and that her asthma causes minimal functional impairment: (1) Minimal treatment has been required. (",
"2) Her examination findings have been essentially normal. (",
"3) Her teacher has reported no physical limitations. (",
"4) Her mother initially reported no physical limitations. ",
"The claim that Cathy has had an asthma attack is credible, and asthmatic tendency can be expected to continue, but nevertheless her asthma, at most, is a less-than-marked impairment. ",
"Her medication should cause little or no impairment.",
"\n(Tr. ",
"209)\nWhere Dr. Cowles' opinion is consistent with the ALJ's decision, consistent with the opinions of Cathy's teachers, and consistent with the medical record, the Court finds no error in the ALJ's mere failure to mention Dr. Cowles' report in his decision.",
"\nKeeping in mind the standard of review, which precludes this Court from reweighing the evidence or substituting its discretion for that of the Commissioner,[41] the Court concludes that substantial evidence in the record as a whole supports the ALJ's determination that Cathy's asthma causes no more than minimal functional limitations, and is, therefore, not \"severe\" as defined in 20 C.F.R. § 416.924(c). ",
"Accordingly, Cathy's asthma does not qualify as an \"additional and significant limitation of function\" under the second required prong of Listing 112.05D.\n\n2. ",
"Whether Cathy's alleged learning disability qualifies as an additional and significant limitation for purposes of Listing 112.05D\nPlaintiff also argues that her daughter has a learning disability which may be an additional and significant limitation for purposes of meeting the second prong of Listing 112.05D. The Commissioner argues that this is really Plaintiff's attempt to count Cathy's mental retardation twice to satisfy the requirements of the Listing.",
"\nOther courts addressing this issue have held that the term \"additional and significant limitation of function\" means another distinct and separate diagnosable impairment.[42] These other courts have acknowledged that another distinct diagnosable impairment could be a learning disability or disorder.[43] In an unpublished decision, *1162 the Tenth Circuit has addressed whether an adult claimant could assert his learning disabilities as an additional and significant limitation of function for meeting the second prong of Mental Retardation Listing 12.05C.[44] In that case, the Tenth Circuit held that evidence of an adult claimant's illiteracy, inability to understand and remember instructions, inability to interact appropriately with the public, inability to work under stressful conditions, inability to use good judgment, and limited intellectual capacity were symptoms of claimant's mental retardation, and, as such, did not satisfy the claimant's obligation to show an additional impairment meeting the second prong of Mental Retardation Listing 12.05C.[45]\nIn this case, there is no evidence in the record that Plaintiff ever asserted to the Commissioner that Cathy's alleged learning difficulties should be considered as an additional and significant limitation to satisfy the second requirement of Listing 112.05D. Moreover, nothing in the record suggests that Cathy's alleged learning difficulties are anything other than mere symptoms or manifestations of her low I.Q. While this Court acknowledges that a learning disorder could be an additional and significant limitation of function for purposes of satisfying Listing 112.05D, the symptoms of which Plaintiff complains are not a distinct and separate diagnosable impairment, but rather are symptoms and manifestations of her low I.Q.[46] As Plaintiff has failed to establish that Cathy's learning disorder is a distinct diagnosable disorder rather than a symptom or manifestation of her low I.Q., it does not qualify as an additional and significant limitation of function for meeting the second prong of Mental Retardation Listing 112.05D.\n\nV. Conclusion\nFor the reasons set forth above, the Court determines that substantial evidence in the record as a whole supports the ALJ's decision, in which he determined that Cathy is not disabled within the meaning of the Social Security Act. ",
"Accordingly, the decision of the Commissioner is affirmed.",
"\nIT IS THEREFORE ORDERED that the decision of the Commissioner denying Plaintiff's application, on behalf of her minor daughter, for SSI benefits under Title XVI of the Social Security Act is affirmed. ",
"This decision will dispose of this case, including Plaintiff's Complaint (doc. ",
"1), which has been considered a petition for review.",
"\nIT IS SO ORDERED.",
"\nNOTES\n[1] Castellano v. Sec'y of Health & Human Servs., ",
"26 F.3d 1027, 1028 (10th Cir.1994).",
"\n[2] Richardson v. Perales, 402 U.S. 389, 401, 91 S.Ct. ",
"1420, 28 L.Ed.2d 842 (1971).",
"\n[3] Qualls v. Apfel, 206 F.3d 1368, 1371 (10th Cir.2000) (citing Casias v. Sec'y of Health & Human Servs., ",
"933 F.2d 799, 800 (10th Cir.1991)).",
"\n[4] Knipe v. Heckler, 755 F.2d 141, 145 (10th Cir.1985) (quoting Kent v. Schweiker, 710 F.2d 110, 114 (3rd Cir.1983)).",
"\n[5] Glass v. Shalala, 43 F.3d 1392, 1395 (10th Cir.1994); Washington v. Shalala, 37 F.3d 1437, 1439 (10th Cir.1994).",
"\n[6] Glass, 43 F.3d at 1395 (citing Thompson v. Sullivan, 987 F.2d 1482, 1487 (10th Cir.1993)).",
"\n[7] Hamilton v. Sec'y of Health & Human Servs., ",
"961 F.2d 1495, 1497 (10th Cir.1992).",
"\n[8] McClain v. Barnhart, 299 F.Supp.2d 309, 314 (S.D.N.Y.2004).",
"\n[9] 42 U.S.C. § 1382c(a)(3)(C)(i) (2001).",
"\n[10] Hall ex rel. ",
"Lee v. Apfel, 122 F.Supp.2d 959, 964 (N.D.Ill.2000).",
"\n[11] 20 C.F.R. § 416.924 (2001).",
"\n[12] 20 C.F.R. § 416.924(b) (2001).",
"\n[13] 20 C.F.R. § 416.924(c) (2001).",
"\n[14] 20 C.F.R. § 416.924(d) (2001).",
"\n[15] 20 C.F.R. §§ 416.924(d), 416.926a (2001).",
"\n[16] 20 C.F.R. § 416.926 (2001).",
"\n[17] 20 C.F.R. §§ 416.906, 416.924(d)(1); Davenport v. Apfel, 151 F.Supp.2d 1270, 1272 (D.Kan.2001).",
"\n[18] 20 C.F.R. § 416.926a(b)(1) (2001).",
"\n[19] Id.\n[20] 20 C.F.R. § 416.926a(b)(2)(i)-(vi) (2001).",
"\n[21] 20 C.F.R. § 416.926a(a) (2001).",
"\n[22] 20 C.F.R. § 416.926a(e)(2)(i) (2001).",
"\n[23] Id.\n[24] Id.\n[25] 20 C.F.R. § 416.926a(e)(3)(i) (2001).",
"\n[26] Id.\n[27] 20 C.F.R. pt. ",
"404, subpt. ",
"P, app. ",
"1, § 112.00A (2001).",
"\n[28] 20 C.F.R. pt. ",
"404, subpt. ",
"P, app. ",
"1, § 112.05 (2001).",
"\n[29] Id.\n[30] Id. § 112.05D (emphasis added).",
"\n[31] Id.\n[32] 20 C.F.R. pt. ",
"404, subpt. ",
"P, app. ",
"1, § 112.00A (2001).",
"\n[33] Id.\n[34] 20 C.F.R. § 416.924(c) (2001).",
"\n[35] 20 C.F.R. § 416.930 (2001).",
"\n[36] Rushing ex rel. ",
"Rushing v. Massanari, 159 F.Supp.2d 1315, 1319 (D.Kan.2001) (citations omitted).",
"\n[37] 42 U.S.C. §§ 405(b)(1), 421(d), 1383(c)(1) (2001).",
"\n[38] Schoolcraft v. Sullivan, 971 F.2d 81, 83 (8th Cir.1992).",
"\n[39] Clifton v. Chater, 79 F.3d 1007, 1009-10 (10th Cir.1996)\n[40] Id.\n[41] Qualls v. Apfel, 206 F.3d 1368, 1371 (10th Cir.2000) (citing Casias v. Sec'y of Health & Human Servs., ",
"933 F.2d 799, 800 (10th Cir.1991)).",
"\n[42] Hall v. Apfel, 122 F.Supp.2d 959, 967 (N.D.Ill.2000); Lugo v. Barnhart, No. ",
"02 c 50361, 2003 WL 22025011, at *9 (N.D.Ill. ",
"Aug.28, 2003); see also Michael v. Apfel, No. ",
"C-9903936-CRB, 2000 WL 1006534, at *6 (N.D.Cal. ",
"July 7, 2000) (Although a reading disorder may be considered a separate disability, plaintiff's disorder overlapped significantly with his mental retardation and did not create a significant additional restriction on his work abilities).",
"\n[43] Hall, 122 F.Supp.2d at 967; Lugo, 2003 WL 22025011, at * 9.",
"\n[44] Franklin v. Chater, 104 F.3d 367 (table), 1996 WL 731591, at *3 (10th Cir. ",
"Dec.20, 1996) (unpub.).",
"\n[45] Id.\n[46] See Buckner v. Apfel, 213 F.3d 1006, 1012 (8th Cir.2000) (adult claimant's alleged learning disorder impairment, asserted as an \"additional and significant limitation\" to meet Listing 12.05C, did not qualify as an \"additional and significant limitation\" under the Listing but was merely a symptom or manifestation of claimant's mental retardation).",
"\n"
] | {
"pile_set_name": "FreeLaw"
} | [
0.024390243902439025,
0,
0.024390243902439025,
0,
0.0380952380952381,
0.03488372093023256,
0.01639344262295082,
0.00821917808219178,
0.012658227848101266,
0.022222222222222223,
0,
0,
0,
0,
0,
0,
0.013333333333333334,
0.011904761904761904,
0.0035971223021582736,
0,
0,
0,
0.005988023952095809,
0,
0,
0,
0,
0.008547008547008548,
0,
0.008928571428571428,
0,
0.01818181818181818,
0,
0.01171875,
0,
0.012121212121212121,
0,
0.007874015748031496,
0,
0.01904761904761905,
0,
0.013333333333333334,
0,
0.01,
0,
0,
0,
0,
0.024390243902439025,
0,
0,
0,
0,
0,
0.031578947368421054,
0,
0,
0.017241379310344827,
0,
0.008658008658008658,
0.007462686567164179,
0,
0.015151515151515152,
0,
0,
0.008333333333333333,
0,
0,
0,
0.014492753623188406,
0,
0,
0.0014727540500736377,
0,
0,
0,
0,
0,
0,
0,
0,
0.002457002457002457,
0.0071090047393364926,
0.007263922518159807,
0.009389671361502348,
0,
0,
0,
0.004761904761904762,
0,
0,
0.01764705882352941,
0,
0,
0.005128205128205128,
0,
0.006382978723404255,
0,
0.015748031496062992,
0,
0.010471204188481676,
0,
0.009345794392523364,
0,
0.026490066225165563,
0,
0.009569377990430622,
0,
0.018633540372670808,
0.01818181818181818,
0,
0.010752688172043012,
0,
0,
0,
0.009852216748768473,
0,
0.019801980198019802,
0,
0.004830917874396135,
0,
0.019230769230769232,
0,
0.031007751937984496,
0.012903225806451613,
0.014705882352941176,
0,
0,
0.005714285714285714,
0.006134969325153374,
0.007168458781362007,
0.007692307692307693,
0.011764705882352941,
0,
0,
0.008547008547008548,
0,
0,
0.013333333333333334,
0.0049261083743842365,
0.008333333333333333,
0,
0.012987012987012988,
0.01818181818181818,
0.017341040462427744,
0.015873015873015872,
0,
0.015267175572519083,
0,
0.010471204188481676,
0.01775147928994083,
0.013377926421404682,
0,
0,
0,
0.00546448087431694,
0,
0,
0.023346303501945526,
0.00980392156862745,
0.006289308176100629,
0.008695652173913044,
0.005515485787017395,
0,
0.009900990099009901,
0.012658227848101266,
0,
0,
0.017241379310344827,
0,
0,
0,
0.01834862385321101,
0,
0.016666666666666666,
0.00847457627118644,
0.020833333333333332,
0.04,
0,
0.015384615384615385,
0,
0,
0.019230769230769232,
0,
0,
0,
0,
0,
0,
0.0196078431372549,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.0125,
0,
0.015873015873015872,
0.01092896174863388,
0,
0.012048192771084338,
0,
0.021739130434782608,
0.041666666666666664,
0.004219409282700422,
0.015151515151515152,
0,
0,
0,
0
] | 0.005897 | 5 |
[
"---\nauthor:\n- 'Yurika Kubo[^1] and'\nbibliography:\n- 'ref.bib'\ntitle: 'Spin Conductivity in Two-Dimensional Non-Collinear Antiferromagnets'\n---\n\nSpin currents have attracted considerable interest with the development of spintronics in recent years. ",
"Spin conductivity is well-studied theoretically in one-dimensional antiferromagnets by many methods including exact diagonalization[@PhysRevB.71.184415; @PhysRevB.82.104424]. ",
"It is also studied in two-dimensional antiferromagnets [@PhysRevB.75.214403; @PhysRevB.79.064401; @chen2013spin]. ",
"These theories on spin currents, however, are rather restricted to collinear antiferromagnets. ",
"As far as the authors are aware, there seems to be no clear definition of the spin current operator in the case of non-collinear antiferromagnets for which magnetization is generally not conserved.",
"\n\nOne of our main purposes is to introduce a definition of the spin current operator which fulfills the f-sum rule for non-collinear antiferromagnets; typical examples include Heisenberg antiferromagnets in square and triangular lattices under static homogeneous magnetic fields[@PhysRevB.82.144402; @PhysRevB.57.5013; @PhysRevB.79.144416; @kawamura1984spin]. ",
"Spins cant on each sublattice in magnetic fields, but the spin current operator can still be defined by using the continuity equation as we show explicitly in this paper.",
"\n\nThis Letter is composed as follows. ",
"First, we show a way to define the spin current operator for non-collinear quantum antiferromagnets. ",
"We consider $S=1/2$ Heisenberg spins on square and triangular lattices to illustrate our method which, we believe, is applicable to much wider classes of antiferromagnets. ",
"We move from a laboratory frame to a rotating frame for convenience[@PhysRevB.82.144402; @PhysRevB.57.5013; @PhysRevB.79.144416]. ",
"We then introduce a Holstein-Primakoff boson on the rotating frame common to all sublattices, and diagonalize the harmonic part of the Holstein-Primakoff expansion by Bogoliubov transformation. ",
"We employ the linear response theory in spectral representation to calculate the spin conductivity, which is found to satisfy the f-sum rule. ",
"We find that the Drude weight vanishes. ",
"We also show how the magnon excitation spectrum affects the frequency dependence of the spin conductivity when the external magnetic field is varied.",
"\n\nWe now propose a method to define spin wave operators that is valid even for non-collinear antiferromagnets. ",
"First, we introduce a useful spin wave formalism of non-collinear Heisenberg antiferromagnets on square and triangular lattices. ",
"We suppose each spin on different sublattices to be on the $x_0-z_0$ plane of the laboratory frame $(x_0, y_0, z_0)$, and transform it to the rotating frame $(x, y, z)$ for the square lattice following Ref. ",
"$$\\begin{aligned}\n\\begin{split}\n{S}^{x_0}_j&= {\\rm e}^{{\\rm i}{\\bf Q} \\cdot {\\bf r}_j}S_j^z\\cos \\theta + S_j^x\\sin \\theta \\text{,}\\hspace{10mm}\n{S}^{y_0}_j=S_j^y\\text{,}\\\\\n{S}^{z_0}_j&=S_j^z \\sin \\theta - {\\rm e}^{{\\rm i}{\\bf Q} \\cdot {\\bf r}_j} S_j^x \\cos \\theta \\text{,}\n\\end{split}\\end{aligned}$$ where $\\bf{Q}=(\\pi,\\pi)$, and for the triangular lattice[@PhysRevB.79.144416] $$\\begin{aligned}\n\\begin{split}\n{S}^{x_0}_j&=S_j^z \\sin \\theta_j + S_j^x\\cos \\theta_j \\text{,}\\hspace{10mm}\n{S}^{y_0}_j=S_j^y\\text{,}\\\\\n{S}^{z_0}_j&=S_j^z \\cos \\theta_j - S_j^x\\sin \\theta_j \\text{.}",
"\n\\end{split}\\end{aligned}$$ Here, $\\theta$ and $\\theta_j$ are canting angles to be given below. ",
"We stress that spins on each sublattice are now expressed by a simple set of rotated spin operators $S_i^{\\mu}(\\mu=x,y,z)$ common to all sublattices.",
"\n\nThe model spin Hamiltonian for both lattices are written in the same form in the laboratory frame $$\\begin{aligned}\n\\hat{H}=J\\sum_{<i,j>}\\left( S^{x_0}_iS^{x_0}_j+S^{y_0}_iS^{y_0}_j+S^{z_0}_iS^{z_0}_j\\right)-h\\sum_iS_i^{z_0} \\text{.}\\end{aligned}$$ Here, $J$ denotes the exchange constant and $h$ denotes a uniform magnetic field. ",
"Magnetization saturates at $h= 8JS$ in the square lattice, and spins select up-up-down phase at $h= 3JS$ in the triangular lattice.",
"\n\nCanting angles are determined to minimize the ground state energy. ",
"For the square lattice, $\\theta$ is given by [@PhysRevB.82.144402; @PhysRevB.57.5013] $$\\begin{aligned}\n\\theta=\\sin^{-1} \\left( \\frac{h}{8JS} \\right) \\text{.}\\end{aligned}$$ For the triangular lattice, they are given by[@kawamura1984spin] $$\\begin{aligned}\n\\begin{split}\n\\theta_A&= -\\pi \\text{,}\\hspace{10mm} \\theta_B=-\\theta_C= \\cos^{-1}\\left [ \\frac{1}{2}\\left (\\frac{h}{3JS}+1 \\right) \\right] \\text{,}\n\\end{split}\\end{aligned}$$ where $\\theta_i$ ($i=A,B,C$) denotes the canting angle for each sublattice. ",
"We perform Holstein-Primakoff transformations to spin operators on the rotating frame with bosons $a_j$: [@PhysRevB.82.144402; @PhysRevB.57.5013; @PhysRevB.79.144416] $$\\begin{aligned}\n\\begin{split}\nS_j^+ &= \\sqrt{2S-a^{\\dagger}_j a_j}\\hspace{1.4mm} a_j \\text{,}\\hspace{10mm}\nS_j^- =a^{\\dagger}_j \\hspace{0.2mm} \\sqrt{2S-a^{\\dagger}_j a_j}\\text{,} \\hspace{0.8mm}\\\\\nS_j^z &= S-a^{\\dagger}_j a_j \\text{.}",
"\n\\end{split}\\end{aligned}$$ Next, we perform Fourier transformation, and then Bogoliubov transformation with new bosons $b_{\\bf k}$: $$\\begin{aligned}\na^{\\dagger}_k&=u_k b^{\\dagger}_{\\bf k}+v_k b_{\\bf -k} \\hspace{10mm} (u_k^2-v_k^2=1)\\end{aligned}$$ to diagonalize the harmonic part of the bosonic Hamiltonian.[@PhysRevB.82.144402; @PhysRevB.57.5013; @PhysRevB.79.144416] In this way, we obtain the spin-wave spectrum and $u^2_k,v^2_k, u_kv_k$ for the square lattice: [@PhysRevB.82.144402; @PhysRevB.57.5013] $$\\begin{aligned}\n\\begin{split}\n\\omega_{k}&=4JS \\sqrt{ (1+\\gamma_{k}) (1- \\gamma_{k}\\cos 2\\theta ) }\\text{,}\\\\\n\\gamma_k&=\\frac{1}{2}(\\cos k_x +\\cos k_y )\\text{,}\n\\label{omegasq}\n\\end{split}\\end{aligned}$$ $$\\begin{aligned}\n\\begin{split}\nu_k^2,v_k^2&=\\frac{1}{2}(\\frac{A_k}{\\omega_k}\\pm1) \\text{,}\\hspace{17mm}\nu_kv_k=\\frac{B_k}{2\\omega_k}\\text{,}\\\\\nA_k &=4JS(1+\\gamma_k \\sin^2 \\theta ) \\text{,} \\hspace{10mm}B_k =4JS\\cos^2 \\theta \\text{.}",
"\n\\label{ukvk} \n\\end{split}\\end{aligned}$$ The spin-wave spectrum for the triangular lattice [@PhysRevB.79.144416] is $$\\begin{aligned}\n\\begin{split}\n\\omega_{k}&=3JS \\sqrt{ (1+2\\gamma_{k}) \\left(1+\\gamma_{k} \\left(\\frac{1}{3} \\left(\\frac{h}{3JS} \\right) ^2 -1 \\right) \\right) }\\text{,}\\\\\n\\gamma_k&=\\frac{1}{3}\\left(\\cos k_x +2\\cos \\frac{k_x}{2}\\cos \\frac{\\sqrt{3}k_y}{2} \\right)\\text{.}",
"\n\\label{omegatri}\n\\end{split}\\end{aligned}$$ We also get $u^2_k,v^2_k$ and $u_kv_k$ in the same way as in Refs. ",
"for the triangular lattice. ",
"We suppress the expressions for $u_k$ and $v_k$ to save space. ",
"We see that the energy gap $\\Delta=h$ opens at $\\Gamma$ point in both lattices when an external magnetic field $h$ is applied.",
"\n\nIn view of the apparent lack of a suitable definition of the spin current operator for non-collinear systems, we now focus on the derivation of the operator on the basis of the continuity equation. ",
"The underlying conservation law of the total magnetization $M_{\\rm tot}$ is clear in the spin Hamiltonian formalism. ",
"This, however, is no longer obvious after we move to Holstein-Primakov boson representation. ",
"We must thus examine to what extent the conservation law holds in the truncated boson representation, before using the continuity equation.",
"\n\nThe bosonic Hamiltonian[@PhysRevB.82.144402] $\\hat{H}_{\\rm b}$ and the total magnetization $M_{\\rm tot}=\\sum_iS_i^{z_0}$ are given as follows: $$\\begin{gathered}\n\\hat{H}_{\\rm b}=-2JS^2N\\cos 2\\theta+h \\sin \\theta\\sum_i n_i\\\\\n+JS\\sum_{<i,j>}\\left[\\sin^2 \\theta(a^{\\dagger}_ia_j+a_ia^{\\dagger}_j)-\\cos^2 \\theta(a_ia_j+a^{\\dagger}_ia^{\\dagger}_j)\\right]\\\\\n+JS\\cos 2\\theta\\sum_{<i,j>}(n_i+n_j)+\\cdots\\text{,}\n\\label{bosonhamiltonian}\\end{gathered}$$ $$\\begin{gathered}\nM_{\\rm tot}=SN\\sin \\theta-\\sqrt{\\frac{S}{2}}\\cos \\theta\\sum_i {\\rm e}^{\\rm{i}\\bf{Q}\\cdot \\bf{r}_i}(a_i+a^{\\dagger}_i)\\\\\n-\\sin \\theta\\sum_i n_i+\\cdots\\text{,}\n\\label{mtot}\\end{gathered}$$ where $n_i=a^{\\dagger}_ia_i$. We see that the commutator $[H_{\\rm b}, M_{\\rm tot}]$ is formally a power series in $1/\\sqrt{S}$, whose $n$th term is of the order $S^{3-(n-1)/2}$. We can show that the first six terms vanish. ",
"In other words, the total magnetization operator in boson representation is in fact an approximately conserved quantity up to this accuracy. ",
"We are thus justified in the use of the continuity equation to calculate the current operator $j_{{\\rm s}\\hspace{1mm} i,i+\\hat{x}}$.\n\nNow, we derive the spin current density operators $j_{{\\rm s}\\hspace{1mm}i,i+\\hat{x}}$ for both lattices by spin wave operators we introduced, where $\\hat{x}$ is the unit lattice vector in the $x-$direction. ",
"The spin conductivity $\\sigma_{\\rm s}(\\omega)$ is defined by the linear response relation $$\\begin{aligned}\n{\\cal J}_{\\rm s}&=\\sigma_{\\rm s}\\nabla_{x} h\\text{,}\\end{aligned}$$ where $\\nabla_x h$ is the gradient of magnetic fields $h$ along the $x-$direction and ${\\cal J}_{\\rm s}$ is the induced spin current. [",
"@PhysRevB.71.184415; @PhysRevB.82.104424; @PhysRevB.75.214403; @PhysRevB.79.064401; @chen2013spin] We assume that spin current flows along the field gradient. ",
"We now use the continuity equation in the long-wavelength limit, which is written by the local magnetization density $S_i^{z_0}/\\Omega$ $$\\begin{aligned}\n\\frac{1}{\\Omega} \\partial_t S_i^{z_0} &=-\\frac{j_{{\\rm s}\\hspace{1mm}i,i+\\hat{x}}-j_{{\\rm s}\\hspace{1mm}i,i-\\hat{x}}}{a_0} \\text{,}\\end{aligned}$$ where $\\Omega$ denotes the area of the unit cell and $a_0$ denotes the lattice constant. ",
"We obtain a spin current density operator by Heisenberg equation of motion $\\partial_t S_i^{z_0}={\\rm i}\\left[\\hat{H},S_i^{z_0}\\right]$ and $\\hat{H}_{i,i+\\hat{x}}=J{\\bf S}_{i}\\cdot{\\bf S}_{i+\\hat{x}}$: $$\\begin{aligned}\nj_{{\\rm s}\\hspace{1mm}i,i+\\hat{x}}&={\\rm i}\\frac{a_0}{\\Omega} \\left[\\hat{H}_{i, i+\\hat{x}},S^{z_0}_{i+\\hat{x}}\\right]\n=\\frac{a_0}{\\Omega}J\\left(S^{x_0}_iS^{y_0}_{i+\\hat{x}}-S^{y_0}_iS^{x_0}_{i+\\hat{x}}\\right) \\text{.}\\end{aligned}$$ Then, we move from the laboratory frame to the rotating frame in each lattice and perform Holstein-Primakoff expansion. ",
"We get the spin current density operator $$\\begin{aligned}\nj_{{\\rm s}\\hspace{1mm} i,i+\\hat{x}}&=\\sum_n j_{{\\rm s} \\hspace{1mm}i,i+\\hat{x} \\hspace{1mm}n/2} \\hspace{5mm} n=3,2,1 \\cdots \\text{,}\\end{aligned}$$ where $j_{{\\rm s} \\hspace{1mm} i,i+\\hat{x}\\hspace{1mm}n/2}$ is a term proportional to $S^{n/2} $. ",
"For the square lattice, the leading term $j_{{\\rm s} \\hspace{1mm}i,i+\\hat{x}\\hspace{1mm} 3/2}$ is given by $$\\begin{gathered}\nj_{{\\rm s} \\hspace{1mm} i,i+\\hat{x}\\hspace{1mm} 3/2}=-\\frac{{\\rm i}a_0JS}{\\Omega}\\sqrt{\\frac{S}{2}}\n {\\rm e}^{{\\rm i}{\\bf Q}\\cdot {\\bf r}_i} \\cos \\theta \\left(a_i-a^{\\dagger}_i\\right)\\\\\n-\\frac{{\\rm i}a_0JS}{\\Omega}\\sqrt{\\frac{S}{2}\n{\\rm e} }^{{\\rm i}{\\bf Q}\\cdot {\\bf r}_i} \\cos \\theta\\left(a_{i+\\hat{x}}-a^{\\dagger}_{i+\\hat{x}}\\right)\\text{,}\n\\label{currentsq}\\end{gathered}$$ and for the triangular lattice, it is given by $$\\begin{gathered}\nj_{{\\rm s} \\hspace{1mm}i,i+\\hat{x}\\hspace{1mm}3/2}\n=\\frac{{\\rm i}a_0JS}{\\Omega}\\sqrt{\\frac{S}{2}}\n\\sin \\theta_{i+\\hat{x}}\\left(a_i-a^{\\dagger}_i\\right)\\\\\n-\\frac{{\\rm i}a_0JS}{\\Omega}\\sqrt{\\frac{S}{2}}\n\\sin \\theta_{i}\\left(a_{i+\\hat{x}}-a^{\\dagger}_{i+\\hat{x}}\\right) \\text{.}",
"\n\\label{currenttri}\\end{gathered}$$ Here, we use a Holstein-Primakoff boson for simplicity, though we need to perform Bogoliubov transformation to calculate the spin conductivity. ",
"We see that the spin current density operators $j_{{\\rm s} \\hspace{1mm} i,i+\\hat{x} \\hspace{1mm}3/2}$ are of the first-order in bosonic operators.",
"\n\nNext, we show how we calculate the spin conductivity $\\sigma_{\\rm s}(\\omega)$, which is written by the Drude weight $D_{\\rm s}$ and the regular part $\\sigma_{\\rm s, reg}(\\omega)$: $$\\begin{aligned}\n\\sigma_{\\rm s}(\\omega)&=D_{\\rm s}\\delta(\\omega)+\\sigma_{\\rm s, reg}(\\omega)\\text{.}\\end{aligned}$$ We refer to Kubo formula for the electrical conductivity[@mahan] and spin conductivity[@PhysRevB.82.104424; @PhysRevB.75.214403] obtaining the regular part of the spin conductivity $\\sigma_{\\rm s, reg}(\\omega)$ for $T=0$ in spectral representation:[@PhysRevB.16.2437] $$\\begin{aligned}\n\\sigma_{\\rm s,reg }(\\omega)&=\\frac{\\pi \\Omega}{N}\\sum_{E_m\\neq E_0} |\\left<m|J_{\\rm s}({\\bf q})|0 \\right>|^2\\frac{\\delta \\left(|\\omega|-\\left(E_m-E_0\\right)\\right)}{E_m-E_0},\n\\label{regular}\\end{aligned}$$ where $N$ denotes the number of lattice sites, and $J_{\\rm s}({\\bf q})$ denotes Fourier representation of $j_{{\\rm s}\\hspace{1mm} i,i+\\hat{x}}$. The Drude weight can be evaluated as follows: $$\\begin{aligned}\nD_{\\rm s}&=\\frac{\\pi a_0}{N \\Omega} \\left<-\\hat{T} \\right>-I_{\\rm reg} \\label{drude}\\text{,}\\\\\nI_{\\rm reg}&=\\int_{-\\infty}^{\\infty} \\sigma_{\\rm s,reg }(\\omega){\\rm d} \\omega \\label{Ireg}\\text{.}\\end{aligned}$$ The first term in Eq. (",
"\\[drude\\]) is related to the f-sum rule for the spin conductivity, which we now discuss in detail.",
"\n\nWe derive the f-sum rule for a spin current density operator in this model following Refs. ",
"and . ",
"First, we show the continuity equation of both lattices in Fourier representations in the long-wavelength limit:[@PhysRevB.75.214403] $$\\begin{aligned}\n{\\rm i} q_x J_{\\rm s}({\\bf -q})&=\\frac{1}{\\Omega }\\partial_{t}S^{z_0}({\\bf -q})\\text{,}\n\\label{fcon}\\end{aligned}$$ where $S^{z_0}({\\bf q})$ denotes Fourier representation of $S^{z_0}_i$. Then we calculate the frequency integral of Eq. (",
"\\[regular\\]) with the use of Eq. (",
"\\[fcon\\]) $$\\begin{aligned}\n {\\rm i}q_x \\frac{ N}{\\pi }\\int_{-\\infty}^{\\infty} \\sigma_{\\rm s}(\\omega){\\rm d} \\omega \n=\\sum_{m}\\frac{\\left<0|J_{\\rm s}({\\bf q})|m \\right>\\left<m \\left|\\partial_t S^{z_0}(-{\\bf q}) \\right|0\\right>}{E_m-E_0}\\notag \\\\\n-\\sum_{m}\\frac{\\left<0 \\left|\\partial_t S^{z_0}(-{\\bf q}) \\right|m \\right>\\left<m|J_{\\rm s}({\\bf q})|0 \\right>}{-\\left(E_m-E_0 \\right)}\\text{.}\\end{aligned}$$ We obtain the following equations by applying Heisenberg equation of motion $$\\begin{aligned}\n{\\rm i}q_x \\frac{N}{\\pi }\\int_{-\\infty}^{\\infty} \\sigma_{\\rm s}( \\omega){\\rm d} \\omega \n&=\\left<0 \\left|{\\rm i}\\left[J_{\\rm s}({\\bf q}),S^{z_0}(-{\\bf q})\\right]\\right|0\\right>\\text{.}",
"\n\\label{totalweight}\\end{aligned}$$ We obtain the left-hand side of Eq. (",
"\\[totalweight\\]) by calculating ${\\rm i}\\left[J_{\\rm s}({\\bf q}),S^{z_0}(-{\\bf q})\\right]$ without any approximations using the laboratory frame: $$\\begin{aligned}\n{\\rm i}\\left[J_{\\rm s}({\\bf q}),S^{z_0}({\\bf -q})\\right] &=-{\\rm i}q_x \\frac{a_0}{\\Omega}\\sum_{l}J\\left(S^{x_0}_lS^{x_0}_{l+\\hat{x}}+S^{y_0}_lS^{y_0}_{l+\\hat{x}}\\right)\\notag \\\\\n &=-{\\rm i}q_x \\frac{a_0}{\\Omega}\\hat{T} \\text{.}\\end{aligned}$$ Here, $\\hat{T}$ denotes $xy$-part of the exchange interaction in the laboratory frame: $$\\begin{aligned}\n\\hat{T}& = \\sum_{l}J\\left(S^{x_0}_lS^{x_0}_{l+\\hat{x}}+S^{y_0}_lS^{y_0}_{l+\\hat{x}} \\right)\\text{.}\\end{aligned}$$ We see that the spin conductivity in both lattices satisfies the f-sum rule by the preceding procedure: $$\\begin{aligned}\n\\int_{-\\infty}^{\\infty} \\sigma_{\\rm s}(\\omega){\\rm d} \\omega &=\\frac{\\pi a_0}{N \\Omega}\\left<-\\hat{T}\\right>\n\\label{frule} \\text{.}\\end{aligned}$$ This is the exact form of the spin conductivity f-sum rule valid for any lattice form.",
"\n\nNext, we examine the left-hand side of Eq. (",
"\\[frule\\]), which is denoted as $I$, and classify various terms in $I$ coming from the Holstein-Primakoff expansion according to the powers of $S$: $$\\begin{aligned}\nI &=\\sum_n I_n \\hspace{5mm} n=2,1,0 \\cdots \\text{,}\\end{aligned}$$ where $I_n$ is a term proportional to $S^{n}$. We focus on $$\\begin{aligned}\n\\left<\\hat{T}\\right>=\\sum_n \\left<\\hat{T}_{n}\\right> \\hspace{5mm} n=2,1,0 \\cdots \\text{,}\\end{aligned}$$ where $\\hat{T}_n$ is a term proportional to $S^{n}$, to derive the left-hand side of Eq. (",
"\\[frule\\]) in Holstein-Primakoff expansion smoothly. ",
"We don’t have to consider $\\hat{T}_{n/2}$ when $n$ is an odd integer, because their expectation values are always zero. ",
"We calculate $I_n$ using the following equation $$\\begin{aligned}\nI_n &= \\frac{\\pi a_0}{N \\Omega}\\left< -\\hat{T}_n\\right> \\hspace{5mm} n=2,1,0 \\cdots \\text{.}",
"\n\\label{frule2}\\end{aligned}$$\n\nWe now examine $\\hat{T}_2$ and $\\hat{T}_1$, which are the first and second terms in Holstein-Primakoff expansion, for both lattices. ",
"For the square lattice, $$\\begin{aligned}\n\\hat{T}_2&=-N JS^2 \\cos^2 \\theta \\text{,}\\end{aligned}$$ $$\\begin{aligned}\n\\hat{T}_1=2JS\\cos^2 \\theta \\sum_l n_l -N JS^2 \\left(\\cos^2 \\theta^{'}-\\cos^2 \\theta \\right) \\notag\\\\ \n+\\frac{JS}{2}\\sum_l \\left(\\sin^2 \\theta +1\\right)\\left(a^{\\dagger}_la_{l+\\hat{x}}+a^{\\dagger}_{l+\\hat{x}}a_{l} \\right) \\notag\\\\\n+\\frac{JS}{2} \\sum_l \\left(\\sin^2 \\theta -1\\right)\\left(a^{\\dagger}_la^{\\dagger}_{l+\\hat{x}}+a_{l}a_{l+\\hat{x}} \\right) \\text{,}\\end{aligned}$$ where $\\cos^2 \\theta^{'}$ is obtained by considering quantum correction to the canting angle using Eq. (",
"\\[ukvk\\]):[@PhysRevB.82.144402; @PhysRevB.57.5013] $$\\begin{aligned}\n\\cos^2 \\theta^{'}&=1-\\sin^2 \\theta \\left(1+2\\frac{w}{S}\\right) \\text{,}\\\\\nw&=\\frac{1}{N}\\sum_{\\bf k}\\left[(1-\\gamma_{\\bf k})v_k^2-\\gamma_{\\bf k}u_k v_k \\right]\\label{wdef}\\text{.}\\end{aligned}$$ For the triangular lattice $$\\begin{aligned}\n\\hat{T}_2&=JS^2\\sum_l\\sin \\theta_{l+\\hat{x}}\\sin \\theta_l \\text{,}\\end{aligned}$$ $$\\begin{aligned}\n\\hat{T}_1=\n\\frac{JS}{2}\\sum_l \\left( \\frac{\\cos^2 \\theta-2\\cos \\theta}{3} -1 \\right) \\left(a^{\\dagger}_la^{\\dagger}_{l+\\hat{x}}+a_{l}a_{l+\\hat{x}}\\right)\\notag \\\\\n+\\frac{JS}{2} \\sum_l \\left( \\frac{\\cos^2 \\theta-2\\cos \\theta}{3} +1 \\right) \\left(a^{\\dagger}_la_{l+\\hat{x}}+a^{\\dagger}_{l+\\hat{x}}a_{l} \\right) \\notag \\\\\n-NJS^2 \\left(\\frac{\\sin^2 \\theta^{'}-\\sin^2 \\theta}{3}\\right)\n+JS \\frac{2\\sin^2 \\theta}{3}\\sum_l n_l \\text{,}\\end{aligned}$$ where $\\cos^2 \\theta^{'}$ is obtained by the same procedure as the square lattice,[@PhysRevB.82.144402; @PhysRevB.57.5013] $$\\begin{aligned}\n\\cos^2 \\theta^{'} &=\\frac{1}{4}\\left[ 1-\\frac{2h}{3JS} \\left(1+\\frac{w}{S} \\right) +\\left(\\frac{h}{3JS}\\right)^2 \\left( 1+2\\frac{w}{S} \\right)\\right]\\text{,}\\end{aligned}$$ and $w$ is defined in Eq. (",
"\\[wdef\\]). ",
"We get the f-sum rule for the first and second terms in Holstein-Primakoff expansion by substituting $\\hat{T}_2$ and $\\hat{T}_1$ to Eq. (",
"\\[frule2\\]). ",
"We expect that this formalism is valid and independent of the lattice structure as long as magnetization is a conserved quantity.",
"\n\nIn Fig. ",
"1(a), we show the integrated intensity $I$ of the spin conductivity, and the corresponding quantity $I_{\\rm reg}$ for the regular part at $T=0$, to the leading order in Holstein-Primakoff expansion for the square lattice. ",
"Here, $I_{\\rm reg\\hspace{1mm}2}$ denotes the leading contribution to $I_{\\rm reg}$, defined in Eq. (",
"\\[Ireg\\]), in Holstein-Primakoff expansions. ",
"The leading term of the spin conductivity is calculated by substituting $J_{\\rm s \\hspace{1mm} 3/2}({\\bf q})$, which denotes Fourier representation of $j_{{\\rm s} \\hspace{1mm} i,i+\\hat{x} \\hspace{1mm} 3/2}$, for $J_{\\rm s}({\\bf q})$ in Eq. (",
"\\[regular\\]) for each lattices. ",
"In Fig. ",
"1(a), we show the integrated intensities $I_{\\rm reg\\hspace{1mm}2}$ and $I_2$, defined in Eq. (",
"\\[frule2\\]). ",
"We intentionally shifted the curve for $I_2$ slightly because the two results overlap completely. ",
"We thus find that the Drude weight vanishes for the square lattice at $T=0$ for any magnetic field $h$ by comparing Fig. ",
"1(a) to Eq. (",
"\\[drude\\]), because the difference between these two results defines the Drude weight. ",
"The vanishing Drude weight at $T=0$ is consistent with Refs. .",
"\n\n![(",
"Color) (a) Leading term $I_2$ of the integrated intensity of the spin conductivity and corresponding quantity $I_{\\rm reg\\hspace{1mm}2}$ for the regular part as functions of magnetic field on a square lattice. ",
"We intentionally shift the curve for figures of $I_2$ because of the degeneracy of the two results, which indicates vanishing of the Drude weight for any field at $T=0$. (b) We compare $I_2$ and $I_2+I_1$ as functions of the magnetic field on the square lattice. ",
"$I_2$ monotonically decreases as a result of locking spins with increasing field. ",
"Spin wave corrections on staggered magnetization strongly suppress $I_2+I_1$ at low fields.](16750fig1.eps){width=\"6.5cm\"}\n\nWe compare the intensities $I_2$ to $I_2+I_1$ in Fig. ",
"1(b). ",
"This figure indicates that there are two kinds of magnetic-field effect on the corrected intensity. ",
"One is dominant at low fields and the other is dominant at high fields. ",
"Spin wave corrections on staggered magnetization due to zero point fluctuation suppress integrated intensity, and its effect is dominant at low fields with a small gap excitation at $\\Gamma$ point. ",
"Canting angle changes and saturates with increasing field, locking spins toward the field direction, and thus suppressing the spin conductivity. ",
"This effect is dominant at high fields. ",
"Whereas the leading term $I_2$ monotonically decreases with the magnetic field $h$, the quantum corrected intensity $I_2+I_1$ is now a non-monotonic function with two kinds of effects. ",
"We get similar results in the triangular lattice, which are not shown in this letter.",
"\n\n![(",
"Color) (a) Results of the leading order of spin conductivity for the square lattice. (",
"b) Results of the leading order of spin conductivity for the triangular lattice. ",
"These results of both lattices show van-Hove singularities and indicate that the shape of the excitation spectrum affects the results of the spin conductivity.](16750fig2.eps){width=\"6.5cm\"}\n\nWe show the frequency dependence of spin conductivity for the square lattice in Fig. ",
"2(a) and for the triangular lattice in Fig. ",
"2(b), both calculated to the leading order only. ",
"We see van-Hove singularity in each lattice for any static homogeneous magnetic field. ",
"We expect these singularities to be removed by considering $1/S$ corrections of Holstein-Primakoff expansions [@PhysRevB.75.214403].",
"\n\nWe notice that the lowest and highest values of the excitation spectrum in magnetic Brillouin zone determine the threshold of low- and high-frequency limits of the spin conductivity. ",
"We also note that the lower bound of the spin conductivity spectrum at low fields $h/J\\leq1$ is determined by the excitation gap at $\\Gamma$ point, which is the lowest energy for both lattices as seen from Eq. (",
"\\[omegasq\\]) and Eq. (",
"\\[omegatri\\]). ",
"On the other hand, the $\\Gamma$ point gap determines the upper bound of the conductivity spectrum for sufficiently high magnetic fields, as shown in Fig. ",
"2. ",
"We expect a similar behavior in the triangular lattice in higher magnetic field regions. ",
"These results indicate that the excitation spectrum of magnetic Brillouin zone essentially determines the spin conductivity.\\\nIn conclusion, we have derived the spin current operator for Heisenberg antiferromagnets and the spin conductivity in square and triangular lattices. ",
"We have shown that the Drude weight vanishes at $T=0$ for any external static magnetic field for a square lattice within the linear spin wave theory, which is consistent with Refs. . ",
"Two kinds of magnetic-field effect on integrated intensities in spin conductivity are found and the competition between the two makes the corrected intensity a non-monotonic function of the magnetic field $h$.\n\nWe have calculated the frequency dependence of the spin conductivity for both lattices, which indicates that the excitation spectrum of magnetic Brillouin zone determines the spin conductivity. ",
"We expect to get more realistic results by taking $1/S$ corrections of Holstein-Primakoff expansions into account. ",
"Lastly, we believe that this method is applicable to any value of $S\\geqq1/2$ and any non-collinear as well as collinear antiferromagnet as far as magnetization is conserved.",
"\n\n[^1]: E-mail: kubo@kh.phys.waseda.ac.jp\n"
] | {
"pile_set_name": "ArXiv"
} | [
0.004032258064516129,
0.011428571428571429,
0.02631578947368421,
0,
0,
0.008333333333333333,
0,
0.02631578947368421,
0,
0,
0.023076923076923078,
0.010309278350515464,
0,
0,
0,
0,
0,
0.00966183574879227,
0.003472222222222222,
0,
0,
0,
0,
0,
0.003937007874015748,
0.019801980198019802,
0.007391763463569166,
0.015584415584415584,
0.008928571428571428,
0,
0,
0,
0,
0,
0,
0,
0.003424657534246575,
0,
0,
0.006430868167202572,
0.031446540880503145,
0.007692307692307693,
0.0034904013961605585,
0,
0,
0.005555555555555556,
0,
0.007293354943273906,
0,
0,
0,
0.007712082262210797,
0.029411764705882353,
0.005865102639296188,
0.0136986301369863,
0.002036659877800407,
0.021739130434782608,
0.0039603960396039604,
0.018867924528301886,
0,
0.006289308176100629,
0.006060606060606061,
0.006700167504187605,
0.007537688442211055,
0.09090909090909091,
0.014598540145985401,
0,
0,
0.1,
0.0045045045045045045,
0.01,
0.022222222222222223,
0.008264462809917356,
0,
0.125,
0.010526315789473684,
0,
0,
0.008264462809917356,
0.07692307692307693,
0,
0,
0,
0,
0,
0,
0.0056179775280898875,
0,
0,
0,
0,
0,
0,
0.005405405405405406,
0,
0,
0,
0,
0.0036101083032490976,
0.022727272727272728,
0,
0,
0.015151515151515152,
0,
0.004739336492890996,
0.045454545454545456,
0,
0.006493506493506494,
0,
0,
0.0036231884057971015,
0,
0.0024691358024691358,
0.008695652173913044,
0,
0.023809523809523808
] | 0.008559 | 5 |
[
"Hi PlayStation.",
"Blog readers, it’s been a while since our last update on Shadow Of The Beast — our long silence has been because we’ve been working hard to turn the concept we showed last time into a reality. ",
"And, though we haven’t quite finished that journey yet, we wanted to take this chance to share with you some early shots from the game.",
"\n\nHello again, PlayStation Blog readers! ",
"Heavy Spectrum here. ",
"It’s exciting to be talking to you all again so soon! ",
"After Bullion Blitz we’ve been working hard to get the second of our debut titles to the PlayStation Mobile store, and tomorrow you’ll be able to check it out!",
"\n\nThe game is Puzziball, and like our previous game Bullion Blitz, it came about from a desire to create something tactile and engaging. ",
"This time however, we focused on sliding your fingers and how that could translate into a game which “felt” like a physical object."
] | {
"pile_set_name": "Pile-CC"
} | [
0,
0,
0,
0,
0.047619047619047616,
0,
0.006289308176100629,
0.014598540145985401,
0
] | 0.007612 | 5 |
[
"<section class=\"blue\" data-type=\"chapter\">\n<header>\n<div class=\"icon\"><img src=\"../images/sections/03/survey.png\" /></div>\n\n<p>Chapter 4</p>\n\n<h1>Types of Survey Questions</h1>\n\n<p data-type=\"author\">By Ginette Law</p>\n</header>\n\n<section data-type=\"sect1\">\n<p>After you’ve decided what type of survey you’re going to use, you need to figure out what kinds of questions to include. ",
"The type of question determines what level of data can be collected, which in turn affects what you can do with the data later on. ",
"For example, if you ask about age and you record it as a number (e.g., 21, 34, 42), you’ll have numeric data that you can perform mathematical operations on. ",
"If you instead ask for a person’s age group (e.g., 18-24, 25-34, 35-44), you’ll have ordered categorical data: you’ll be able to count how many people were in each group, but you won’t be able to find the mean age of your respondents. ",
"Before you create your survey, it’s important to consider how you want to analyze your final results so you can pick question types that will give you the right kind of data for those analyses.</p>\n\n<h2>Open vs. Closed Questions</h2>\n\n<p>Open (or open-ended) questions are used when you want to collect long-form qualitative data. ",
"You ask the person a question without offering any specific answers from which to choose. ",
"This is often a good option to discover new ideas you may have overlooked or did not know existed. ",
"In a closed question, however, a limited number of specific responses are offered to answer the question. ",
"Closed questions are used when you already have an idea what categories your answers will fall into or you’re only interested in the frequency of particular answers.</p>\n\n<p>Let’s pretend you work for an ice cream parlour called Fictionals. ",
"You want to know why some people don’t come to your store. ",
"Here are open and closed questions you could ask to find out their reasons.</p>\n\n<figure><img alt=\"Open vs. Closed Questions\" src=\"../images/sections/03/open-vs-closed.png\" /></figure>\n\n<p>In the closed question, you offer the most probable reasons why people would not go eat ice cream at your store, whereas in the open question, you just ask why they don’t eat at Fictionals and allow respondents to answer however they want.</p>\n\n<p>When you ask an open-ended question you gain new insight to why some people might not try your ice cream: it’s not because they don’t like ice cream or they don’t like Fictionals, it’s because they can’t eat it! ",
"With this new insight, you could choose to offer a new type of ice cream and attract a clientele you didn’t appeal to before.</p>\n\n<p>This is a distinct advantage of open-ended questions, and it’s particularly useful if you’re doing exploratory research and will primarily be reading through the responses to get a sense of how people responded. ",
"However, it takes considerably more work to analyze and summarize these data.</p>\n\n<p>When you think that most people will give more or less the same answer, you can combine an open and closed question to get the best results. ",
"This is usually done by offering a number of predefined choices, but leaving room for participants to explain their response if it falls under the “Other” category. ",
"Here is how the same question would look if you transformed it into a combined open and closed question:</p>\n\n<figure><img alt=\"Closed/Open Question\" src=\"../images/sections/03/open-and-closed.png\" /></figure>\n\n<h2>Closed Question Types</h2>\n\n<h3>Multiple Choice Questions</h3>\n\n<p>Sometimes you’ll want the respondent to select only one of several answers. ",
"If your survey is online, you use radio buttons (or circles), which indicate to choose just one item. ",
"If you want to allow the respondent to choose more than one option, you should use a checkbox instead. ",
"Here is what it looks like in practice:</p>\n\n<figure><img alt=\"Radio vs. Checkbox\" src=\"../images/sections/03/radio-vs-checkbox.png\" /></figure>\n\n<p>If your survey is a paper or administered survey, you would use printed or verbal directions to indicate how many options the respondent should pick (e.g., “Please choose one”; “Please select up to 3”; “Please select all that apply”).</p>\n\n<p>Answer choices should not overlap and should cover all possible options. ",
"This is called having “mutually exclusive and exhaustive” categories and is crucial for sound survey design. ",
"Consider the situation below:</p>\n\n<figure><img alt=\"Unclear radio buttons\" src=\"../images/sections/03/correct-ages.png\" /></figure>\n\n<p>In the left set of choices, someone who is 25 wouldn’t know whether to select the 18-25 button or the 25-35 button, and someone who is 60 wouldn’t have any option to select at all! ",
"The set of age categories on the right is better because it includes all possible age groups, the age choices don’t overlap, and it allows people the choice to withhold that information if they choose to.</p>\n\n<div data-type=\"warning\">\n<p>It is advisable to include a “Prefer not to answer” option for questions that may be of a personal nature, such as race, ethnicity, income, political affiliation, etc. ",
"Without this option, people may skip the question altogether, but you won't be able to tell later on who skipped the question on purpose and who missed it accidentally, which can be an important difference when you analyze your data.</p>\n</div>\n\n<p>It won’t always be practical to list every possible option. ",
"In that case, including “None of the above” or “Other” choices may be helpful. ",
"This makes it less likely that people will just skip the question and leave you with missing data. ",
"You may also consider including a “Not Applicable” (i.e., “N/A”) choice for questions that may not apply to all of your respondents, or a “Don’t know” choice for questions where a respondent may not not have the information available.</p>\n\n<h3>Dichotomous Questions</h3>\n\n<p>Dichotomous questions are a specific type of multiple choice question used when there are only two possible answers to a question. ",
"Here are some classic examples of dichotomous type questions:</p>\n\n<figure><img alt=\"dichotomous questions\" src=\"../images/sections/03/true-false.png\" /></figure>\n\n<p>You can use dichotomous questions to determine if a respondent is suited to respond to the next question. ",
"This is called a filter or contingency question. ",
"Filters can quickly become complex, so try not to use more than two or three filter questions in a row. ",
"Here’s an example of the logic behind a filter question:</p>\n\n<figure><img alt=\"Fictional's Flow Chart\" src=\"../images/sections/03/fictionals.png\" /></figure>\n\n<p>In an online survey or administered survey, answering “Yes” to the question “Do you ever eat ice cream at Fictionals Ice Cream Parlour?” would take a respondent to the question about how often they do, while selecting “No” would open the checkbox response question asking why they don’t eat there. ",
"In a paper survey, all questions would need to be listed on the page and couldn’t be presented conditionally based on a specific response. ",
"You could use a flowchart form like in the diagram above, or you could employ skip directions, as illustrated below.</p>\n\n<figure><img alt=\"Skip instructions\" src=\"../images/sections/03/skip-instructions.png\" /></figure>\n\n<h3>Scaled Questions</h3>\n\n<p>Scaled questions are used to measure people’s attitudes, opinions, lifestyles and environments. ",
"There are many different types but the most commonly used are Likert and slider scales. ",
"The main difference between the two is that a Likert scale consists of ordered categories whereas a slider scale allows respondents to make a mark indicating their response anywhere along a scale. ",
"As a result, a Likert scale-type question will give you data that are measured at an ordinal level while a slider scale will give you data that are measured at an interval level.</p>\n\n<figure><img alt=\"Likert vs. Slider Scale\" src=\"../images/sections/03/likert-vs-slider.png\" /></figure>\n\n<p>In the example above, the same question is asked twice, once with a Likert scale and once with a sliding scale. ",
"Notice that in the Likert scale there are five categories. ",
"Scales with an odd number of categories allow participants to agree, disagree, or indicate their neutrality; scales with an even number of categories only allow participants to agree or disagree. ",
"If you want to allow for neutrality, scales with an odd number of categories are usually preferred; however, you should use an even number if you want to require the respondent to choose one direction or the other. ",
"This is called a “forced question.”</p>\n\n<h3>Likert Scale</h3>\n\n<p>Likert scales are usually limited to a five-category scale, as it is often difficult to clearly display a larger number of categories. ",
"The most common Likert scales you will find are:</p>\n\n<ul>\n\t<li><em>Opinions and attitudes:</em> “How much do you agree with…?”<br />\n\tPossible answers: strongly agree, agree, neither agree or disagree, disagree, strongly disagree</li>\n\t<li><em>Frequency:</em> “How often do you…?”<br />\n\tPossible answers: always, often, sometimes, rarely, never</li>\n\t<li><em>Quality:</em> “In general, how do you rate the quality of…?”<br />\n\tPossible answers: excellent, very good, good, fair, poor</li>\n\t<li><em>Importance:</em> “How important would you say {topic} is…”<br />\n\tPossible answers: very important, important, somewhat important, not at all important</li>\n</ul>\n\n<h3>Slider Scale</h3>\n\n<p>Slider scales are useful when you want to have a more precise reading of a respondent’s views. ",
"These scales are most easily implemented in an online survey, since the computer will calculate the position of the marker; when used on a paper survey, you will need to have someone measure the marker’s location on the scale manually. ",
"Slider scales may be more practical than Likert scales when conducting a survey that is being translated into multiple languages since text categories are not always easy to translate.</p>\n\n<figure><img alt=\"sliding scale\" src=\"../images/sections/03/sliding-scale.png\" /></figure>\n\n<div data-type=\"warning\">\n<p>When creating a scale, whether Likert or slider, never forget to label the first and last points in your scale. ",
"Otherwise, your respondents may misinterpret your scale and give you inaccurate or misleading data.</p>\n</div>\n\n<h2>Question Wording</h2>\n\n<p>It’s extremely important to think about how you word your questions when developing a survey. ",
"Here are a few key things to keep in mind:</p>\n\n<h3>Focus</h3>\n\n<p>Each question should be specific and have a defined focus.</p>\n\n<div data-type=\"example\">\n<p>How many times have you eaten ice cream in the last month?</p>\n</div>\n\n<p>This question focuses on one issue (frequency of ice cream eating) and is specific (a certain time period).</p>\n\n<div class=\"neutral\" data-type=\"example\">\n<p>Do you avoid eating ice cream because you are on a diet? [",
"Answer: Yes, I avoid ice cream, but not because I am on a diet]</p>\n</div>\n\n<p>This question is poorly worded for a few reasons: it is both leading and <em>too</em> specific. ",
"It assumes that the respondent is in fact on a diet and that this is why he or she doesn’t eat ice cream. ",
"A better wording would be “Why do you avoid eating ice cream?” with “I’m dieting” as one of a number of options that the participant can choose from.</p>\n\n<p>You should also avoid using the word “and” if it is connecting two different ideas within a single question. ",
"Remember, each question should focus on only one issue at a time: otherwise, you won’t be collecting the best data that you can. ",
"By compounding multiple thoughts into a single question, you reduce the accuracy of participants’ responses and thereby limit the claims that you can make from those data. ",
"Instead, consider using filter questions to obtain the desired information. ",
"For example:</p>\n\n<figure><img alt=\"Fictional's Flow Chart\" src=\"../images/sections/03/fictionals-flow-chart.png\" /></figure>\n\n<h3>Precision</h3>\n\n<p>Not everyone will interpret all words and phrasings in the same way, even if the meaning seems obvious to you. ",
"To reduce the chance of participants misinterpreting your question, you can parenthetically define ambiguous terms or give additional context as appropriate. ",
"Try also to avoid confusing wordings, such as those that use double negatives or many subordinate clauses. ",
"Be careful to also not use words that are loaded or have many highly-emotional connotations.</p>\n\n<table class=\"custom yes-and-no\">\n\t<tbody>\n\t\t<tr>\n\t\t\t<th>Do</th>\n\t\t\t<th>Don’t</th>\n\t\t</tr>\n\t\t<tr>\n\t\t\t<td>\n\t\t\t<ul>\n\t\t\t\t<li>Have you eaten chocolate ice cream in the past month?</li>\n\t\t\t\t<li>Ice cream with peanuts should not be permitted.</li>\n\t\t\t\t<li>Ice cream vendors should not disclaim having a peanut-free shop.</li>\n\t\t\t</ul>\n\t\t\t</td>\n\t\t\t<td>\n\t\t\t<ul>\n\t\t\t\t<li>Rocky Road, Mint Chocolate Chip, Dutch Chocolate and Hot Fudge ice creams are Fictionals’ best sellers. ",
"Have you eaten any chocolate ice cream in the last month?</li>\n\t\t\t\t<li>Ice cream with peanuts should be banned.</li>\n\t\t\t\t<li>Ice cream vendors should accept to have a peanut-free shop.</li>\n\t\t\t</ul>\n\t\t\t</td>\n\t\t</tr>\n\t</tbody>\n</table>\n\n<h3>Brevity</h3>\n\n<p>Your questions should be relatively short, except where additional wording is necessary to provide context or to clarify terminology. ",
"Long, complex questions can quickly become confusing to participants and increase the chances that they will respond without fully understanding what is being asked, or worse, skip the question entirely! ",
"If your question seems to be getting too long, consider whether there is any unnecessary information that you can take out or if you can split it up into several smaller questions. ",
"Alternately, you may want to have a short paragraph of explanatory text that is separate from the question itself: that way participants will have all necessary background information, but can also easily pick out and digest what is actually being asked.</p>\n\n<table class=\"custom yes-and-no\">\n\t<tbody>\n\t\t<tr>\n\t\t\t<th>Do</th>\n\t\t\t<th>Don’t</th>\n\t\t</tr>\n\t\t<tr>\n\t\t\t<td>Please list your three favorite ice creams in order of preference.</td>\n\t\t\t<td>Can you please tell us what ice cream flavors you like and what are your first, second, and third favorites?</td>\n\t\t</tr>\n\t</tbody>\n</table>\n\n<h3>Biased and Leading Questions</h3>\n\n<p>Biased or <a class=\"glossterm\" href=\"glossary01.html#question-leading\" target=\"_blank\">leading questions</a> can easily skew your answers if you do not pay close attention to your wordings. ",
"Avoid over-emphasizing your statements and keep an eye out for questions that create “social desirability effects” where respondents may be more likely to answer according to what society views as proper or socially or morally acceptable.</p>\n\n<table class=\"custom yes-and-no\">\n\t<tbody>\n\t\t<tr>\n\t\t\t<th>Do</th>\n\t\t\t<th>Don’t</th>\n\t\t</tr>\n\t\t<tr>\n\t\t\t<td>Do you agree that ice cream vendors in our city should offer peanut-free products?</td>\n\t\t\t<td>Do you agree that ice cream vendors that serve peanuts are a severe hazard for the well-being of our children?</td>\n\t\t</tr>\n\t</tbody>\n</table>\n\n<p>Notice how the second question tries to bias the respondent by using strong or affective phrases such as “severe hazard.” You should try to keep your questions as value-free as you can: if the question itself suggests how the participant is expected to answer, it should be reworded.</p>\n\n<h3>A Few Final Things…</h3>\n\n<p>There are few final things to consider when developing your survey questions:</p>\n\n<ul>\n\t<li>If possible, consider varying the type of questions you use to keep your respondents engaged throughout the survey. ",
"You have a variety of question types to choose from, so mix it up where you can! (",
"But do keep in mind that each type of question has a specific purpose and gives you more or less specific data.)</li>\n\t<li>Think about how certain words can have different interpretations and remember that meanings are often embedded in culture and language. ",
"Be sensitive to different cultures if you are examining several groups within a population.</li>\n</ul>\n\n<h2>Designing Your Questionnaire</h2>\n\n<p>Once you have identified the purpose of your survey and chosen which type you will use, the next step is to design the questionnaire itself. ",
"In this section, we’ll look at the structure, layout and ordering of questions. ",
"We’ll also talk about some key things to keep in mind once you’re done.</p>\n\n<h3>Questionnaire Structure</h3>\n\n<p>Do you remember when you were taught in grade school that every essay should have an introduction, body and conclusion? ",
"Questionnaires should also have a certain structure. ",
"The major parts of a questionnaire include the introduction, main topic, transitions between topics, demographic questions, and conclusion.</p>\n\n<h3>Introduction</h3>\n\n<p>Always start your survey with a brief introduction which explains:</p>\n\n<ul>\n\t<li>the purpose of the survey;</li>\n\t<li>who is conducting it;</li>\n\t<li>the voluntary nature of the participant’s involvement;</li>\n\t<li>the respect for confidentiality; and</li>\n\t<li>the time required to complete the survey.</li>\n</ul>\n\n<h3>Main Topics</h3>\n\n<p>Generally, it is best to start with general questions and then move on to more specific questions.</p>\n\n<ul>\n\t<li>Ask about objective facts before asking more subjective questions.</li>\n\t<li>Order questions from the most familiar to least.</li>\n\t<li>Make sure that the answer to one question does not impact how the participant interprets the following question.</li>\n</ul>\n\n<h3>Transitions Between Topics</h3>\n\n<p>Use transitions between groups of questions to explain a new topic or format. ",
"For example: “The next few questions are related to the frequency of your TV viewing habits. ",
"Please choose the answer that best describes your situation.”</p>\n\n<h3>Demographic Questions</h3>\n\n<p>Unless you are using demographic questions as filtering criteria for survey eligibility, it is usually better to put them near the end of a survey. ",
"Typical demographic questions include:</p>\n\n<ul>\n\t<li>gender;</li>\n\t<li>age;</li>\n\t<li>income;</li>\n\t<li>nationality or geographic location;</li>\n\t<li>education; and</li>\n\t<li>race or ethnicity.</li>\n</ul>\n\n<h3>Conclusion</h3>\n\n<p>Thank the participants for their contribution and explain how it has been valuable to the project. ",
"Reiterate that their identities will be kept confidential and that results will be anonymized. ",
"If you wish, you can also include your contact information in case they have any additional questions related to the survey and also ask for their contact information if you are offering an incentive for completing the survey.</p>\n\n<p>If you contact respondents in advance to invite them to participate in the survey, you should also explain why they have been selected to participate, when the survey will take place, and how they can access it.</p>\n\n<h3>General Layout</h3>\n\n<p>There are a few good rules to follow when designing the layout of your survey:</p>\n\n<ul>\n\t<li>Put your introduction and conclusion on separate pages from your questions.</li>\n\t<li>The format should be easy to follow and understand.</li>\n\t<li>Check that filter questions work as intended.</li>\n\t<li>Stick to questions that meet your goals rather than just asking every question you can think of. ",
"In general, survey completion rates tend to diminish as surveys become longer.</li>\n\t<li>Leave enough space for respondents to answer open-ended questions.</li>\n\t<li>Make sure to include all likely answers for closed-ended questions, including an “Other” option in case respondents feel that none of the provided answers suits them. ",
"Where appropriate, also include “Not Applicable” and “Choose not to respond” options.</li>\n\t<li>Ensure that questions flow well and follow a logical progression. ",
"Begin the survey with more general questions and then follow with more specific or harder issues. ",
"Finish with general demographic topics (e.g., age, gender, etc.), ",
"unless you are using these to screen for eligibility at the beginning of the survey. ",
"Group questions by theme or topic.</li>\n</ul>\n\n<h2>Some Further Considerations</h2>\n\n<h3>Consider Your Audience</h3>\n\n<p>Think about the people who will be participating in your survey. ",
"Let’s say, for example, that you want to conduct a survey in a school where many students have recently immigrated to the country as refugees with their families and don’t yet speak the local language well.</p>\n\n<p>In what language(s) should you conduct the survey? ",
"Should you only conduct the survey in the local language or instead prepare it in several languages? ",
"If you’re preparing different versions of the survey, who will ensure consistency among the translations?</p>\n\n<p>What kind of vocabulary should you use? ",
"These are students who may not be taking the questionnaire in their native language. ",
"You will probably want to use fairly basic language, especially if many are not native speakers. ",
"We have not specified their age, but it would be useful to take this information into consideration when thinking about vocabulary.</p>\n\n<h3>Word Instructions and Questions Clearly and Specifically</h3>\n\n<p>It is important that your instructions and questions are simple and coherent. ",
"You want to make sure that everyone understands and interprets the survey in the same way. ",
"For example, consider the difference between the following two questions.</p>\n\n<ul>\n\t<li>When did you first notice symptoms? ______________________",
"</li>\n\t<li>When did you first notice symptoms (e.g., MM/YYYY)? __ __ / __ __ __ __",
"</li>\n</ul>\n\n<p>If you want the question to be open to interpretation so that people can give answers like, “after I came back from my last trip,” then the first option is okay. ",
"However, if you’re really wondering how long each person has been experiencing symptoms, the second version of the question lets the respondent know that you’re interested in the specific time at which the symptoms first occurred.</p>\n\n<h3>Pay Attention to Length</h3>\n\n<p>We often want to collect as much information as possible when conducting a survey. ",
"However, extremely long surveys quickly become tedious to answer. ",
"Participants get tired or bored which in turn decreases the completion rate. ",
"After a while, you risk getting inaccurate responses from people who are trying to finish the survey as rapidly as possible. ",
"When reviewing your questionnaire, ask yourself, “Do I really need this question? ",
"Will it bring any valuable data that can contribute to my reason for doing this survey?”</p>\n\n<h3>Track Progress</h3>\n\n<p>It is good to indicate the respondents’ progress as they advance through the survey. ",
"It gives them an idea of their progression and encourages them to continue on. ",
"In a self-administered survey, a progress bar such as the one below could be placed at the beginning of each new section or transition.</p>\n\n<figure><img alt=\"Fictional's Flow Chart\" src=\"../images/sections/03/progress-bar.png\" /></figure>\n\n<p>In an administered survey, the interviewer can simply make statements such as:</p>\n\n<ul>\n\t<li>“We are halfway done.”</li>\n\t<li>“There are only two more sections left.”</li>\n\t<li>“Only a few more questions to answer.”</li>\n</ul>\n\n<h3>Train Interviewers</h3>\n\n<p>If you are conducting an administered survey, you will have to prepare your interviewers ahead of time, explain their tasks, and make sure that they understand all of the questions properly. ",
"You may also want them to be supervised when they are first conducting the survey to monitor for quality to control for interviewer effects.</p>\n\n<h3>Pretest</h3>\n\n<p>Pretesting means testing your survey with a few initial respondents before officially going out in the field. ",
"This allows you to get feedback to improve issues you might have with length, technical problems, or question ordering and wording. ",
"Sometimes this step gets skipped if there’s a tight deadline to meet, but you shouldn’t underestimate its value. ",
"It can save a lot of time and money in the end.</p>\n\n<h3>Anonymize Responses</h3>\n\n<p>We briefly mentioned response anonymization earlier when we talked about questionnaire structure. ",
"Sometimes, people are afraid to give an honest response for fear that it might be traced back to them. ",
"By anonymizing responses you will get more accurate data while protecting the identity of your participants. ",
"There are times when you may need to keep respondents’ contact information associated with their responses, like if you’ll be conducting a follow-up survey and will need to know what their initial answers were. ",
"Be clear in your survey about whether you’re anonymizing responses or not so respondents know if you’re storing their contact information.</p>\n\n<p><em>You should always anonymize any results you present, whether the data you collect are anonymous or not.</em></p>\n\n<h3>Incentives</h3>\n\n<p>The use of incentives can be contentious. ",
"You want to encourage as many people as possible to participate in your survey, but you also don’t want people completing the survey just to get a reward. ",
"Larger reward amounts can also raise ethical concerns of participant coercion (i.e., having individuals participate when they would otherwise refuse due to personal discomfort, risk of repercussions, etc.).</p>\n\n<p>If the survey is long and time consuming, consider giving a small reward or stipend if a respondent completes the questionnaire. ",
"If the survey is shorter, consider doing a prize drawing from respondents who complete the survey and choose to provide their contact information.</p>\n\n<h2>Wrapping Things Up</h2>\n\n<p>As you have noticed, there are a number of factors you will need to consider when you’re designing your survey and deciding what types of question to use. ",
"Survey creation can seem daunting at first, but remember this is the foundation of your data analysis. ",
"Getting this step right will make the rest of your work much easier later on.</p>\n\n<p>For further reading, please see our <a href=\"app01.html\" target=\"_blank\">resources section</a>.</p>\n</section>\n</section>\n"
] | {
"pile_set_name": "Github"
} | [
0,
0,
0,
0,
0.002967359050445104,
0,
0,
0,
0,
0,
0.004379562043795621,
0.0027472527472527475,
0,
0,
0,
0,
0,
0.003992015968063872,
0.008264462809917356,
0,
0,
0,
0.009708737864077669,
0,
0.002232142857142857,
0,
0,
0,
0.003929273084479371,
0,
0,
0.011363636363636364,
0.005076142131979695,
0.0049504950495049506,
0,
0,
0,
0,
0.002306805074971165,
0,
0.002364066193853428,
0,
0,
0,
0,
0.003236245954692557,
0,
0.0056179775280898875,
0,
0.0038314176245210726,
0,
0,
0.001736111111111111,
0,
0,
0,
0,
0.0008628127696289905,
0,
0,
0,
0,
0,
0.018867924528301886,
0,
0,
0,
0,
0,
0,
0.002898550724637681,
0,
0,
0,
0,
0,
0.0035971223021582736,
0,
0,
0,
0,
0,
0,
0,
0.012195121951219513,
0,
0,
0,
0,
0,
0,
0.0045662100456621,
0,
0.001366120218579235,
0,
0,
0,
0,
0,
0,
0.004484304932735426,
0,
0,
0,
0,
0,
0
] | 0.001192 | 5 |
[
"Megadeth is featured in the January 2016 issue of Revolver magazine. \"",
"There are so many good things going on in my world right now\", exults Dave Mustaine, when Revolver caught up with him in late October, in the midst of Megadeth's four-date tour of India. \"",
"I'm not sure where to start!\" ",
"You can pick up the new issue on newsstands now or at the Revolver Online Store.",
"\n\nDave Mustaine and Kiko Loureiro are featured in the December issue of Rock Hard France magazine. ",
"You will find interviews with Dave & Kiko as well as a live-report of Megadeth's Birmingham concert in November. ",
"Available on newsstands now and at www.rockhard.fr.",
"\n\nThe band will head into a special Virtual Reality set-up with director Blair Underwood, where they will perform and film five songs from Dystopia, \"Fatal Illusion\", \"Dystopia\", \"The Threat Is Real\", \"Poisonous Shadows\", and \"Post American World\". ",
"The band’s performance will appear within the fallen city of a dystopian world modeled after the world created in Megadeth's new music video for \"The Threat Is Real\"."
] | {
"pile_set_name": "Pile-CC"
} | [
0.02857142857142857,
0.010638297872340425,
0,
0,
0.030303030303030304,
0.017699115044247787,
0.0196078431372549,
0.012048192771084338,
0.006024096385542169
] | 0.013877 | 5 |
[
"Q:\n\nCalculator Project for Uni - JavaScript Code not working\n\nI am following a Uni class on JavaScript, which purpose is to make a simple calculator, that performs simple operations on two numbers. ",
"The following is the HTML code I have made:\n<html>\n<head>\n <title>Simple Maths with JavaScript</title>\n <meta charset=\"UTF-8\">\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n <script src=\"script.js\"></script>\n</head>\n<body>\n <h2>Simple Maths</h2>\n <p>\n Value 1: \n <input type=\"text\" id=\"value1\" value=\"0\"/>\n </p>\n <p>\n Value 2: \n <input type=\"text\" id=\"value2\" value=\"0\"/>\n </p><p>\n Result: \n <input type=\"text\" id=\"result\" value=\"0\" readonly=\"readonly\"/>\n </p>\n <input type=\"button\" value=\"+\" onclick=\"doAdd()\"/>\n <input type=\"button\" value=\"-\" onclick=\"doSub()\"/>\n <input type=\"button\" value=\"*\" onclick=\"doMul()\"/>\n <input type=\"button\" value=\"/\" onclick=\"doDiv()\"/>\n</body>\n\nThen I made an external JavaScript Code for all the functions:\nfunction doAdd() {\n var value1 = new number(document.getElementById(\"value1\").value);\n var value2 = new number(document.getElementById(\"value2\").value);\n document.getElementById(\"result\").setAttribute(\"value\", value1 + value2);\n}\n\nfunction doSub() {\n var value1 = new number(document.getElementById(\"value1\").value);\n var value2 = new number(document.getElementById(\"value2\").value);\n document.getElementById(\"result\").setAttribute(\"value\", value1 - value2);\n}\n\nfunction doMul() {\n var value1 = new number(document.getElementById(\"value1\").value);\n var value2 = new number(document.getElementById(\"value2\").value);\n document.getElementById(\"result\").setAttribute(\"value\", value1 * value2);\n}\n\nfunction doDiv() {\n var value1 = new number(document.getElementById(\"value1\").value);\n var value2 = new number(document.getElementById(\"value2\").value);\n document.getElementById(\"result\").setAttribute(\"value\", value1 / value2);\n}\n\nNote: <!",
"doctype>, header, comments, etc. ",
"have been left out purposely here, to shorten the code.",
"\nNow, when I run the page, it does nothing. ",
"I add two numbers and click the buttons but they won't do anything. ",
"Also tried to change the value1 and value2 attributes, so that contain a number (ex. ",
"5 and 5) but it still won't work. ",
"The script seems to be working fine however (linking, etc.) ",
"since document.write(\"Hello, I am working!\"); ",
"which I had added for testing purposes, did display just fine.",
"\nI have checked the code in the class materials as well as the hints like 10 times. ",
"I can't seem to find out why it is not working... Any advice would be appreciated.",
"\n\nA:\n\nThis is an issue with case-sensitivity\n1. ",
"Change your onclick from DoAdd() to doAdd()\n2. ",
"Change new number() to new Number() See this Reference\n\n<h2>Simple Maths</h2>\r\n<p>\r\n Value 1:\r\n <input type=\"text\" id=\"value1\" value=\"0\" />\r\n</p>\r\n<p>\r\n Value 2:\r\n <input type=\"text\" id=\"value2\" value=\"0\" />\r\n</p>\r\n<p>\r\n Result:\r\n <input type=\"text\" id=\"result\" value=\"0\" readonly=\"readonly\" />\r\n</p>\r\n<input type=\"button\" value=\"+\" onclick=\"doAdd()\" />\r\n<input type=\"button\" value=\"-\" onclick=\"doSub()\" />\r\n<input type=\"button\" value=\"*\" onclick=\"doMul()\" />\r\n<input type=\"button\" value=\"/\" onclick=\"doDiv()\" />\r\n\r\n<script>\r\n function doAdd() {\r\n var value1 = new Number(document.getElementById(\"value1\").value);\r\n var value2 = new Number(document.getElementById(\"value2\").value);\r\n document.getElementById(\"result\").setAttribute(\"value\", value1 + value2);\r\n }\r\n\r\n function doSub() {\r\n var value1 = new Number(document.getElementById(\"value1\").value);\r\n var value2 = new Number(document.getElementById(\"value2\").value);\r\n document.getElementById(\"result\").setAttribute(\"value\", value1 - value2);\r\n }\r\n\r\n function doMul() {\r\n var value1 = new Number(document.getElementById(\"value1\").value);\r\n var value2 = new Number(document.getElementById(\"value2\").value);\r\n document.getElementById(\"result\").setAttribute(\"value\", value1 * value2);\r\n }\r\n\r\n function doDiv() {\r\n var value1 = new Number(document.getElementById(\"value1\").value);\r\n var value2 = new Number(document.getElementById(\"value2\").value);\r\n document.getElementById(\"result\").setAttribute(\"value\", value1 / value2);\r\n }\r\n \r\n</script>\n\n"
] | {
"pile_set_name": "StackExchange"
} | [
0.005050505050505051,
0.003386004514672686,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.0425531914893617,
0.003883495145631068
] | 0.00343 | 5 |
[
"Pepperoni Farts\n\nPepperoniFarts.com is whimsical web location where you can express yourself using our customized pepperoni pizza “air slice” soundboard. ",
"There are 31 unique sound blasts and 53 slices to click on. ",
"This is obviously not intedned as a serious website destination, just a fun one! ",
"Enjoy playing with the pepperoni... and remember, always use moderation!",
"\n\nNot a fan of pepperoni? ",
"Well let us know at eeewww@pepperonifarts.co and maybe we'll develope “Sausage Farts.com” just for you!"
] | {
"pile_set_name": "OpenWebText2"
} | [
0.006493506493506494,
0,
0,
0,
0,
0.019417475728155338
] | 0.004318 | 5 |
[
"Immunohistochemical determination of the Wilson Copper-transporting P-type ATPase in the brain tissues of the rat.",
"\nImmunohistochemical localization of Copper-transporting P-type ATPase (ATP7B), a gene product responsible for Wilson disease, was visualized in the brain tissues of the Long-Evans agouti rat in detail using tissue-blotting technique and confocal laser microscopy. ",
"The ATP7B was intensely detected in neuronal cells of the hippocampal formation, olfactory bulbs, cerebellum, cerebral cortex and nuclei in the brainstem in which high amounts of copper and cuproenzymes, dopamine beta hydroxylase and Cu,Zn-superoxide dismutase (Cu,Zn-SOD) were detected. ",
"The present results suggest that ATP7B plays key roles in neurotransmissions of catecholamine pathway and preventing brain tissues from injury by superoxide radicals to regulate the cellular Cu concentration and/or activities of cuproenzymes related to neurotransmissions and a free radical metabolism. ",
"Furthermore, it is reasonable to assume that neurotoxicity due to abnormal copper accumulation or irregular regulation of cuproenzymes in the critical brain regions by mutation of the ATP7B gene leads to neurological failures of Wilson disease."
] | {
"pile_set_name": "PubMed Abstracts"
} | [
0,
0.007547169811320755,
0.006944444444444444,
0,
0.004098360655737705
] | 0.003718 | 5 |
[
"Services\n\nNon-league: Wimborne topple promotion rivals in Cuthbury conquest\n\nWIMBORNE Town’s upturn in fortunes continued as a hard-fought 2-1 victory over play-off contenders North Leigh kept alive their hopes of a late promotion charge.",
"\n\nResolute Magpies put to the sword their rivals with a gritty display at Cuthbury with the visitors, dominant in possession, restricted to precious few efforts on goal.",
"\n\nAnd after Mark Gamble had cut back for George Webb to drill home from close range within five minutes, Steve Cuss’s men largely took control.",
"\n\nTop scorer Gamble should have added to his assist with a glanced header, while Sam Griffin’s scrambled effort from Jamie Davidson’s centre was eventually gathered by visiting custodian Adam McHugh.",
"\n\nMillers had their moments but full-back Stuart Hole’s fizzing free kick forced the only save of note from home keeper Jason Harvell as anchor man Jon Blake snuffed out any danger with a near faultless display in front of the back four.",
"\n\nWimborne were content to play on the break in a tepid second half in which North Leigh saw everything of the ball but little of the goal, and the home side reaped the rewards for their game plan midway through the second half.",
"\n\nA high, deep, swinging ball from the left saw James Stokoe tangle with McHugh and with both men grounded, Sam Griffin was on hand to steer home from the edge of the area.",
"\n\nThe visitors stuck to their passing principles but struggled to find a way past the bustling Blake, while Harvell and left-back Billy Maybury threw themselves into crucial blocks.",
"\n\nSubstitute Brian Bowles eventually set up Conor McDonagh to grab a consolation two minutes from time but there was to be no late flurry as Wimborne sealed a comfortable victory.",
"\n\nBoss Cuss told the Daily Echo: “I was delighted with the performance. ",
"We have been hard to play against of late and how we defended without the ball was key.",
"\n\n“There was some anxiety in the last 20 minutes when we went kicking the ball instead of putting our foot on it and picking a pass but there was a real determination to win the game.",
"\n\n“We were disappointed to lose a few games by the odd goal lately and you could see that the players didn’t want that to happen again which helped us over the line.",
"\n\n“It was a strange game for us because not many teams come to our place and dominate possession but we had a cutting edge and could have scored more goals.”",
"\n\nThe victory was Wimborne’s third in five league matches against teams chasing the top five but Cuss was keen to play down any talk of a late charge.",
"\n\n“There is a good spirit in the camp and we’re enjoying our football,” he added.",
"\n\n“We’re just trying to win the next game at Guildford on Wednesday without looking at the play-off places or anything else.",
"\n\n“If we can keep performing like we did against North Leigh, who knows where it will take us.”",
"\n\nIpsoregulated\n\nThis website and associated newspapers adhere to the Independent Press Standards Organisation's Editors' Code of Practice. ",
"If you have a complaint about the editorial content which relates to inaccuracy or intrusion, then please contact the editor here. ",
"If you are dissatisfied with the response provided you can contact IPSO here"
] | {
"pile_set_name": "Pile-CC"
} | [
0.008403361344537815,
0.005917159763313609,
0.02097902097902098,
0.01507537688442211,
0.012658227848101266,
0.0043859649122807015,
0.01744186046511628,
0.016574585635359115,
0.0111731843575419,
0.013888888888888888,
0,
0,
0,
0,
0.013333333333333334,
0,
0.008064516129032258,
0.010526315789473684,
0.007142857142857143,
0,
0
] | 0.007884 | 5 |
[
"[Cyclic vomiting syndrome in children].",
"\nCyclic vomiting syndrome in children is a manifestation of various etiologies, including gastroenterological and renal disorders, central and autonomic nervous system abnormalities, as well as metabolic and endocrine dysfunction. ",
"Frequently no organic cause is found. ",
"Personality profiles of children with cyclic vomiting reveal perfectionism, competitiveness, and aggressive behavior. ",
"Vomiting attacks have been induced by anxiety and excitement in patients with cyclic vomiting. ",
"We describe an 8-year-old girl with cyclic vomiting, frequently associated with occipital headaches, photophobia or dizziness. ",
"Psychiatric evaluation indicated a generalized anxiety disorder."
] | {
"pile_set_name": "PubMed Abstracts"
} | [
0.02564102564102564,
0,
0,
0,
0,
0,
0
] | 0.003663 | 5 |
[
"Connecting Slack\n\nYou'll be taken to the Slack website to select your account and approve the integration. ",
"Once complete, you'll be redirected back to Jell where you can manage the integration settings.",
"\n\nSlack Settings\n\nTo modify your Slack settings, go to your organization settings page and click Edit Settings next to the Slack logo.",
"\n\nFrom here, you can select the channels where activity for each team is published:\n\nIf you setup the original Slack integration, you'll be able to see a list of all public Slack channels on your account, as well as any private channels you have access to. ",
"If you did not setup the integration, you'll only be able to select public channels.",
"\n\nIf you're not seeing a recent Slack channel in the selection list, click the Re-sync Channels link at the bottom of the list.",
"\n\nTo configure what messages get posted to Slack, click Edit Settings next to your organization or team and select all the items you want posted:\n\nTroubleshooting\n\nIf there are errors with the Slack integration, organization admins should receive an email with the nature of the error.",
"\n\nThe most common problem we encounter is that a Slack admin has disconnected the integration from the Slack app or website, so Jell encounters a token_revoked error.",
"\n\nTo fix, simply reauthorize the Jell app with your Slack account:\n\nDisconnecting Slack\n\nTo remove Slack from Jell, click the Delete Integration link at the top of the settings page:"
] | {
"pile_set_name": "Pile-CC"
} | [
0.009345794392523364,
0.010526315789473684,
0.014925373134328358,
0.007782101167315175,
0,
0.007874015748031496,
0.007017543859649123,
0.018072289156626505,
0.02197802197802198
] | 0.010836 | 5 |
[
"ES News email The latest headlines in your inbox twice a day Monday - Friday plus breaking news updates Enter your email address Continue Please enter an email address Email address is invalid Fill out this field Email address is invalid You already have an account. ",
"Please log in Register with your social account or click here to log in I would like to receive lunchtime headlines Monday - Friday plus breaking news alerts, by email Update newsletter preferences\n\nA US teacher has melted hearts across the world after he went the extra mile to help a wheelchair-bound student join a class field trip.",
"\n\nJim Freeman carried 10-year-old Ryan Neighbors throughout the Falls of Ohio State Park in Indiana, so that she could enjoy the day alongside her schoolmates.",
"\n\nRyan has spina bifida, a condition which affects the development of the spinal cord and surrounding bones, meaning she has to use a wheelchair.",
"\n\nWhen Tully Elementary School announced their next outdoor adventure, Ryan’s mum Shelly King began preparing for an “alternate field day”.",
"\n\nMs King knew it would be impossible to travel around the location by wheelchair and so her daughter would have to miss the day out with her friends.",
"\n\nHowever, the concerned mother was soon able to ditch her alternative plans thanks to the kindness of Mr Freeman.",
"\n\nDetailing the episode in a gushing Facebook post, Ms King wrote: “If I haven’t bragged on my kid's school enough - well, listen to this.",
"\n\n“They are going on a field trip to Falls Of The Ohio today. ",
"Obviously, NOT accessible. ",
"I was preparing for an ‘alternate field trip day’ when a male teacher reached out and said ‘I’m happy to tote her around on the falls all day!’",
"\n\n“She is sooooo excited to do this independent from me,” she added.",
"\n\nContinuing her praise for the school, she wrote: “Sooooo blessed to have an ENTIRE school that is so compassionate and empathetic and NEVER makes her feel left out.”",
"\n\nThe delighted mother then urged social media users to “make love go viral” by sharing the post.",
"\n\nIt has received more than 3,200 likes in less than five days.",
"\n\nAdmirers have praised the kind hearted teacher, with one parent commenting: “Love the fact my son is learning from this teacher!",
"\n\n“Mr Freeman is a wonderful human being and a great example to all our children at Tully!”",
"\n\nAnother added: “I love this story so much!!! ",
"What a cutie she is and what a wonderful and caring teacher!!",
"\n\n\"My sister had SB and was in a wheelchair her entire life. ",
"Growing up for her in the 70's and 80's, things were different then, less accepting than today and many less wheelchair friendly options/accessibility than we have today.",
"\n\n\"I'm so glad your daughter got to be a part of her class field trip and love for this caring teacher.”"
] | {
"pile_set_name": "OpenWebText2"
} | [
0.00749063670411985,
0.005970149253731343,
0.006289308176100629,
0.006896551724137931,
0.02158273381294964,
0,
0.008771929824561403,
0.007246376811594203,
0,
0,
0,
0,
0.011976047904191617,
0,
0,
0,
0.01098901098901099,
0,
0,
0,
0,
0
] | 0.003964 | 5 |
[
"Childhood cutaneous lymphoid hyperplasia following feline scratches.",
"\nCutaneous lymphoid hyperplasia or pseudolymphoma is a usually benign inflammatory response that mimics lymphoma. ",
"Stimulation from foreign antigens introduced into the skin can induce this response. ",
"Scratches from pets are an effective mode of transmitting infections and inoculating foreign antigens into the skin. ",
"We report an unusual case of a child where cutaneous lymphoid hyperplasia presented as subcutaneous nodules at sites scratched by a pet cat."
] | {
"pile_set_name": "PubMed Abstracts"
} | [
0,
0,
0,
0,
0
] | 0 | 5 |
[
"Remember last week, when 20th Century Fox rolled out their long-awaited new trailer for Simon Kinberg's Dark Phoenix, and everyone spent a few hours openly mocking it because it sucked so hard? ",
"Well, guess what? ",
"They went and cut another Dark Phoenix trailer for international audiences, and this version's way better.",
"\n\nSee if you don't agree.",
"\n\nDoes this trailer indicate Dark Phoenix will be great? ",
"No. ",
"But is it an improvement on the previous trailer, which appeared to have been edited by someone while they were being chased up a dark alleyway by the cops? ",
"Absolutely. ",
"We'd been ready to give up hope on Dark Phoenix entirely after that one, but this version's got us back in the \"almost cautiously optimistic\" camp! ",
"That's something, right?",
"\n\nWhat do y'all think? ",
"Like this trailer more than the last one? ",
"Think they're about the same? ",
"Are you prepared to go Full Contrarian and declare that the international trailer is actually worse than the domestic trailer? ",
"Sound off in the comments section below, and stay tuned for further Dark Phoenix updates as they roll in.",
"\n\nDark Phoenix hits theaters on June 7th."
] | {
"pile_set_name": "OpenWebText2"
} | [
0.010309278350515464,
0,
0.009433962264150943,
0,
0.017543859649122806,
0,
0,
0,
0,
0,
0,
0,
0,
0.007874015748031496,
0.009523809523809525,
0
] | 0.003418 | 5 |
[
"/* Copyright (c) 2007, Atmel Corporation\n All rights reserved.",
"\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.",
"\n\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in\n the documentation and/or other materials provided with the\n distribution.",
"\n\n * Neither the name of the copyright holders nor the names of\n contributors may be used to endorse or promote products derived\n from this software without specific prior written permission.",
"\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n ARE DISCLAIMED. ",
"IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n POSSIBILITY OF SUCH DAMAGE. */",
"\n\n/* $Id: io90pwm316.h,v 1.7.2.7 2008/10/17 23:27:46 arcanum Exp $ */\n\n/* avr/io90pwm316.h - definitions for AT90PWM316 */\n\n#ifndef _AVR_IO90PWM316_H_\n#define _AVR_IO90PWM316_H_ 1\n\n/* This file should only be included from <avr/io.h>, never directly. */",
"\n\n#ifndef _AVR_IO_H_\n# error \"Include <avr/io.h> instead of this file.\"",
"\n#endif\n\n#ifndef _AVR_IOXXX_H_\n# define _AVR_IOXXX_H_ \"io90pwm316.h\"\n#else\n# error \"Attempt to include more than one <avr/ioXXX.h> file.\"",
"\n#endif \n\n/* I/O registers */\n\n/* Port B Input Pins Address */\n#define PINB _SFR_IO8(0x03)\n#define PINB0 0\n#define PINB1 1\n#define PINB2 2\n#define PINB3 3\n#define PINB4 4\n#define PINB5 5\n#define PINB6 6\n#define PINB7 7\n\n/* Port B Data Direction Register */\n#define DDRB _SFR_IO8(0x04)\n#define DDB0 0\n#define DDB1 1\n#define DDB2 2\n#define DDB3 3\n#define DDB4 4\n#define DDB5 5\n#define DDB6 6\n#define DDB7 7\n\n/* Port B Data Register */\n#define PORTB _SFR_IO8(0x05)\n#define PB0 0\n#define PB1 1\n#define PB2 2\n#define PB3 3\n#define PB4 4\n#define PB5 5\n#define PB6 6\n#define PB7 7\n\n/* Port C Input Pins Address */\n#define PINC _SFR_IO8(0x06)\n#define PINC0 0\n#define PINC1 1\n#define PINC2 2\n#define PINC3 3\n#define PINC4 4\n#define PINC5 5\n#define PINC6 6\n#define PINC7 7\n\n/* Port C Data Direction Register */\n#define DDRC _SFR_IO8(0x07)\n#define DDC0 0\n#define DDC1 1\n#define DDC2 2\n#define DDC3 3\n#define DDC4 4\n#define DDC5 5\n#define DDC6 6\n#define DDC7 7\n\n/* Port C Data Register */\n#define PORTC _SFR_IO8(0x08)\n#define PC0 0\n#define PC1 1\n#define PC2 2\n#define PC3 3\n#define PC4 4\n#define PC5 5\n#define PC6 6\n#define PC7 7\n\n/* Port D Input Pins Address */\n#define PIND _SFR_IO8(0x09)\n#define PIND0 0\n#define PIND1 1\n#define PIND2 2\n#define PIND3 3\n#define PIND4 4\n#define PIND5 5\n#define PIND6 6\n#define PIND7 7\n\n/* Port D Data Direction Register */\n#define DDRD _SFR_IO8(0x0A)\n#define DDD0 0\n#define DDD1 1\n#define DDD2 2\n#define DDD3 3\n#define DDD4 4\n#define DDD5 5\n#define DDD6 6\n#define DDD7 7\n\n/* Port D Data Register */\n#define PORTD _SFR_IO8(0x0B)\n#define PD0 0\n#define PD1 1\n#define PD2 2\n#define PD3 3\n#define PD4 4\n#define PD5 5\n#define PD6 6\n#define PD7 7\n\n/* Port E Input Pins Address */\n#define PINE _SFR_IO8(0x0C)\n#define PINE0 0\n#define PINE1 1\n#define PINE2 2\n\n/* Port E Data Direction Register */\n#define DDRE _SFR_IO8(0x0D)\n#define DDE0 0\n#define DDE1 1\n#define DDE2 2\n\n/* Port E Data Register */\n#define PORTE _SFR_IO8(0x0E)\n#define PE0 0\n#define PE1 1\n#define PE2 2\n\n/* Timer/Counter 0 Interrupt Flag Register */\n#define TIFR0 _SFR_IO8(0x15)\n#define TOV0 0 /* Overflow Flag */\n#define OCF0A 1 /* Output Compare Flag 0A */\n#define OCF0B 2 /* Output Compare Flag 0B */\n\n/* Timer/Counter1 Interrupt Flag Register */\n#define TIFR1 _SFR_IO8(0x16)\n#define TOV1 0 /* Overflow Flag */\n#define OCF1A 1 /* Output Compare Flag 1A*/\n#define OCF1B 2 /* Output Compare Flag 1B*/\n#define ICF1 5 /* Input Capture Flag 1 */\n\n/* General Purpose I/O Register 1 */\n#define GPIOR1 _SFR_IO8(0x19)\n#define GPIOR10 0\n#define GPIOR11 1\n#define GPIOR12 2\n#define GPIOR13 3\n#define GPIOR14 4\n#define GPIOR15 5\n#define GPIOR16 6\n#define GPIOR17 7\n\n/* General Purpose I/O Register 2 */\n#define GPIOR2 _SFR_IO8(0x1A)\n#define GPIOR20 0\n#define GPIOR21 1\n#define GPIOR22 2\n#define GPIOR23 3\n#define GPIOR24 4\n#define GPIOR25 5\n#define GPIOR26 6\n#define GPIOR27 7\n\n/* General Purpose I/O Register 3 */\n#define GPIOR3 _SFR_IO8(0x1B)\n#define GPIOR30 0\n#define GPIOR31 1\n#define GPIOR32 2\n#define GPIOR33 3\n#define GPIOR34 4\n#define GPIOR35 5\n#define GPIOR36 6\n#define GPIOR37 7\n\n/* External Interrupt Flag Register */\n#define EIFR _SFR_IO8(0x1C)\n#define INTF0 0\n#define INTF1 1\n#define INTF2 2\n#define INTF3 3\n\n/* External Interrupt Mask Register */\n#define EIMSK _SFR_IO8(0x1D)\n#define INT0 0 /* External Interrupt Request 0 Enable */\n#define INT1 1 /* External Interrupt Request 1 Enable */\n#define INT2 2 /* External Interrupt Request 2 Enable */\n#define INT3 3 /* External Interrupt Request 3 Enable */\n\n/* General Purpose I/O Register 0 */\n#define GPIOR0 _SFR_IO8(0x1E)\n#define GPIOR00 0\n#define GPIOR01 1\n#define GPIOR02 2\n#define GPIOR03 3\n#define GPIOR04 4\n#define GPIOR05 5\n#define GPIOR06 6\n#define GPIOR07 7\n\n/* EEPROM Control Register */\n#define EECR _SFR_IO8(0x1F)\n#define EERE 0 /* EEPROM Read Enable */\n#define EEWE 1 /* EEPROM Write Enable */\n#define EEMWE 2 /* EEPROM Master Write Enable */\n#define EERIE 3 /* EEPROM Ready Interrupt Enable */\n\n/* EEPROM Data Register */\n#define EEDR _SFR_IO8(0x20)\n#define EEDR0 0\n#define EEDR1 1\n#define EEDR2 2\n#define EEDR3 3\n#define EEDR4 4\n#define EEDR5 5\n#define EEDR6 6\n#define EEDR7 7\n\n/* The EEPROM Address Registers */\n#define EEAR _SFR_IO16(0x21)\n#define EEARL _SFR_IO8(0x21)\n#define EEAR0 0\n#define EEAR1 1\n#define EEAR2 2\n#define EEAR3 3\n#define EEAR4 4\n#define EEAR5 5\n#define EEAR6 6\n#define EEAR7 7\n#define EEARH _SFR_IO8(0x22)\n#define EEAR8 0\n#define EEAR9 1\n#define EEAR10 2\n#define EEAR11 3\n\n/* 6-char sequence denoting where to find the EEPROM registers in memory space.",
"\n Adresses denoted in hex syntax with uppercase letters. ",
"Used by the EEPROM\n subroutines.",
"\n First two letters: EECR address.",
"\n Second two letters: EEDR address.",
"\n Last two letters: EEAR address. ",
" */\n#define __EEPROM_REG_LOCATIONS__ 1F2021\n\n/* General Timer/Counter Control Register */\n#define GTCCR _SFR_IO8(0x23)\n#define PSR10 0 /* Prescaler Reset Timer/Counter1 and Timer/Counter0 */\n#define ICPSEL1 6 /* Timer1 Input Capture Selection Bit */\n#define TSM 7 /* Timer/Counter Synchronization Mode */\n\n/* Timer/Counter Control Register A */\n#define TCCR0A _SFR_IO8(0x24)\n#define WGM00 0 /* Waveform Generation Mode */\n#define WGM01 1 /* Waveform Generation Mode */\n#define COM0B0 4 /* Compare Output Mode, Fast PWm */\n#define COM0B1 5 /* Compare Output Mode, Fast PWm */\n#define COM0A0 6 /* Compare Output Mode, Phase Correct PWM Mode */\n#define COM0A1 7 /* Compare Output Mode, Phase Correct PWM Mode */\n\n/* Timer/Counter Control Register B */\n#define TCCR0B _SFR_IO8(0x25)\n#define CS00 0 /* Clock Select */\n#define CS01 1 /* Clock Select */\n#define CS02 2 /* Clock Select */\n#define WGM02 3 /* Waveform Generation Mode */\n#define FOC0B 6 /* Force Output Compare B */\n#define FOC0A 7 /* Force Output Compare A */\n\n/* Timer/Counter0 Register */\n#define TCNT0 _SFR_IO8(0x26)\n#define TCNT00 0\n#define TCNT01 1\n#define TCNT02 2\n#define TCNT03 3\n#define TCNT04 4\n#define TCNT05 5\n#define TCNT06 6\n#define TCNT07 7\n\n/* Timer/Counter0 Output Compare Register A */\n#define OCR0A _SFR_IO8(0x27)\n#define OCR0A0 0\n#define OCR0A1 1\n#define OCR0A2 2\n#define OCR0A3 3\n#define OCR0A4 4\n#define OCR0A5 5\n#define OCR0A6 6\n#define OCR0A7 7\n\n/* Timer/Counter0 Output Compare Register B */\n#define OCR0B _SFR_IO8(0x28)\n#define OCR0B0 0\n#define OCR0B1 1\n#define OCR0B2 2\n#define OCR0B3 3\n#define OCR0B4 4\n#define OCR0B5 5\n#define OCR0B6 6\n#define OCR0B7 7\n\n/* PLL Control and Status Register */\n#define PLLCSR _SFR_IO8(0x29)\n#define PLOCK 0 /* PLL Lock Detector */\n#define PLLE 1 /* PLL Enable */\n#define PLLF 2 /* PLL Factor */\n\n/* SPI Control Register */\n#define SPCR _SFR_IO8(0x2C)\n#define SPR0 0 /* SPI Clock Rate Select 0 */\n#define SPR1 1 /* SPI Clock Rate Select 1 */\n#define CPHA 2 /* Clock Phase */\n#define CPOL 3 /* Clock polarity */\n#define MSTR 4 /* Master/Slave Select */\n#define DORD 5 /* Data Order */\n#define SPE 6 /* SPI Enable */\n#define SPIE 7 /* SPI Interrupt Enable */\n\n/* SPI Status Register */\n#define SPSR _SFR_IO8(0x2D)\n#define SPI2X 0 /* Double SPI Speed Bit */\n#define WCOL 6 /* Write Collision Flag */\n#define SPIF 7 /* SPI Interrupt Flag */\n\n/* SPI Data Register */\n#define SPDR _SFR_IO8(0x2E)\n#define SPD0 0\n#define SPD1 1\n#define SPD2 2\n#define SPD3 3\n#define SPD4 4\n#define SPD5 5\n#define SPD6 6\n#define SPD7 7\n\n/* Analog Comparator Status Register */\n#define ACSR _SFR_IO8(0x30)\n#define AC0O 0 /* Analog Comparator 0 Output Bit */\n#define AC1O 1 /* Analog Comparator 1 Output Bit */\n#define AC2O 2 /* Analog Comparator 2 Output Bit */\n#define AC0IF 4 /* Analog Comparator 0 Interrupt Flag Bit */\n#define AC1IF 5 /* Analog Comparator 1 Interrupt Flag Bit */\n#define AC2IF 6 /* Analog Comparator 2 Interrupt Flag Bit */\n#define ACCKDIV 7 /* Analog Comparator Clock Divider */\n\n/* Sleep Mode Control Register */\n#define SMCR _SFR_IO8(0x33)\n#define SE 0 /* Sleep Enable */\n#define SM0 1 /* Sleep Mode Select bit0 */\n#define SM1 2 /* Sleep Mode Select bit1 */\n#define SM2 3 /* Sleep Mode Select bit2 */\n\n/* MCU Status Register */\n#define MCUSR _SFR_IO8(0x34)\n#define PORF 0 /* Power-on reset flag */\n#define EXTRF 1 /* External Reset Flag */\n#define BORF 2 /* Brown-out Reset Flag */\n#define WDRF 3 /* Watchdog Reset Flag */\n\n/* MCU Control Register */\n#define MCUCR _SFR_IO8(0x35)\n#define IVCE 0 /* Interrupt Vector Change Enable */\n#define IVSEL 1 /* Interrupt Vector Select */\n#define PUD 4 /* Pull-up disable */\n#define SPIPS 7 /* SPI Pin Select */\n\n/* Store Program Memory Control Register */\n#define SPMCSR _SFR_IO8(0x37)\n#define SPMEN 0 /* Store Program Memory Enable */\n#define PGERS 1 /* Page Erase */\n#define PGWRT 2 /* Page Write */\n#define BLBSET 3 /* Boot Lock Bit Set */\n#define RWWSRE 4 /* Read While Write section read enable */\n#define RWWSB 6 /* Read While Write Section Busy */\n#define SPMIE 7 /* SPM Interrupt Enable */\n\n/* Watchdog Timer Control Register */\n#define WDTCSR _SFR_MEM8(0x60)\n#define WDP0 0 /* Watchdog Timer Prescaler bit0 */\n#define WDP1 1 /* Watchdog Timer Prescaler bit1 */\n#define WDP2 2 /* Watchdog Timer Prescaler bit2 */\n#define WDE 3 /* Watchdog Enable */\n#define WDCE 4 /* Watchdog Change Enable */\n#define WDP3 5 /* Watchdog Timer Prescaler bit3 */\n#define WDIE 6 /* Watchdog Timeout Interrupt Enable */\n#define WDIF 7 /* Watchdog Timeout Interrupt Flag */\n\n/* Clock Prescaler Register */\n#define CLKPR _SFR_MEM8(0x61)\n#define CLKPS0 0 /* Clock Prescaler Select bit0 */\n#define CLKPS1 1 /* Clock Prescaler Select bit1 */\n#define CLKPS2 2 /* Clock Prescaler Select bit2 */\n#define CLKPS3 3 /* Clock Prescaler Select bit3 */\n#define CLKPCE 7 /* Clock Prescaler Change Enable */\n\n/* Power Reduction Register */\n#define PRR _SFR_MEM8(0x64)\n#define PRADC 0 /* Power Reduction ADC */\n#define PRUSART 1 /* Power Reduction USART */\n#define PRSPI 2 /* Power Reduction Serial Peripheral Interface */\n#define PRTIM0 3 /* Power Reduction Timer/Counter0 */\n#define PRTIM1 4 /* Power Reduction Timer/Counter1 */\n#define PRPSC0 5 /* Power Reduction PSC0 */\n#define PRPSC1 6 /* Power Reduction PSC1 */\n#define PRPSC2 7 /* Power Reduction PSC2 */\n\n/* Oscillator Calibration Value */\n#define OSCCAL _SFR_MEM8(0x66)\n#define CAL0 0\n#define CAL1 1\n#define CAL2 2\n#define CAL3 3\n#define CAL4 4\n#define CAL5 5\n#define CAL6 6\n\n/* External Interrupt Control Register A */\n#define EICRA _SFR_MEM8(0x69)\n#define ISC00 0\n#define ISC01 1\n#define ISC10 2\n#define ISC11 3\n#define ISC20 4\n#define ISC21 5\n#define ISC30 6\n#define ISC31 7\n\n/* Timer/Counter0 Interrupt Mask Register */\n#define TIMSK0 _SFR_MEM8(0x6E)\n#define TOIE0 0 /* Overflow Interrupt Enable */\n#define OCIE0A 1 /* Output Compare Match A Interrupt Enable */\n#define OCIE0B 2 /* Output Compare Match B Interrupt Enable */\n\n/* Timer/Counter1 Interrupt Mask Register */\n#define TIMSK1 _SFR_MEM8(0x6F)\n#define TOIE1 0 /* Overflow Interrupt Enable */\n#define OCIE1A 1 /* Output Compare Match A Interrupt Enable */\n#define OCIE1B 2 /* Output Compare Match B Interrupt Enable */\n#define ICIE1 5 /* Input Capture Interrupt Enable */\n\n/* Amplifier 0 Control and Status register */\n#define AMP0CSR _SFR_MEM8(0x76)\n#define AMP0TS0 0\n#define AMP0TS1 1\n#define AMP0G0 4\n#define AMP0G1 5\n#define AMP0IS 6\n#define AMP0EN 7\n\n/* Amplifier 1 Control and Status register */\n#define AMP1CSR _SFR_MEM8(0x77)\n#define AMP1TS0 0\n#define AMP1TS1 1\n#define AMP1G0 4\n#define AMP1G1 5\n#define AMP1IS 6\n#define AMP1EN 7\n\n/* ADC Result Data Register */\n#ifndef __ASSEMBLER__\n#define ADC _SFR_MEM16(0x78)\n#endif\n#define ADCW _SFR_MEM16(0x78)\n#define ADCL _SFR_MEM8(0x78)\n#define ADCH _SFR_MEM8(0x79)\n\n/* ADC Control and Status Register A */\n#define ADCSRA _SFR_MEM8(0x7A)\n#define ADPS0 0 /* ADC Prescaler Select bit0 */\n#define ADPS1 1 /* ADC Prescaler Select bit1 */\n#define ADPS2 2 /* ADC Prescaler Select bit2 */\n#define ADIE 3 /* ADC Interrupt Enable */\n#define ADIF 4 /* ADC Interrupt Flag */\n#define ADATE 5 /* ADC Auto Trigger Enable */\n#define ADSC 6 /* ADC Start Conversion */\n#define ADEN 7 /* ADC Enable */\n\n/* ADC Control and Status Register B */\n#define ADCSRB _SFR_MEM8(0x7B)\n#define ADTS0 0 /* ADC Auto Trigger Source 0 */\n#define ADTS1 1 /* ADC Auto Trigger Source 1 */\n#define ADTS2 2 /* ADC Auto Trigger Source 2 */\n#define ADTS3 3 /* ADC Auto Trigger Source 3 */\n#define ADHSM 7 /* ADC High Speed Mode */\n\n/* ADC multiplexer Selection Register */\n#define ADMUX _SFR_MEM8(0x7C)\n#define MUX0 0 /* Analog Channel and Gain Selection bit0 */\n#define MUX1 1 /* Analog Channel and Gain Selection bit1 */\n#define MUX2 2 /* Analog Channel and Gain Selection bit2 */\n#define MUX3 3 /* Analog Channel and Gain Selection bit3 */\n#define ADLAR 5 /* Left Adjust Result */\n#define REFS0 6 /* Reference Selection bit0 */\n#define REFS1 7 /* Reference Selection bit1 */\n\n/* Digital Input Disable Register 0 */\n#define DIDR0 _SFR_MEM8(0x7E)\n#define ADC0D 0 /* ADC0 Digital input Disable */\n#define ADC1D 1 /* ADC1 Digital input Disable */\n#define ADC2D 2 /* ADC2 Digital input Disable */\n#define ADC3D 3 /* ADC3 Digital input Disable */\n#define ADC4D 4 /* ADC4 Digital input Disable */\n#define ADC5D 5 /* ADC5 Digital input Disable */\n#define ADC6D 6 /* ADC6 Digital input Disable */\n#define ADC7D 7 /* ADC7 Digital input Disable */\n\n/* Digital Input Disable Register 1 */\n#define DIDR1 _SFR_MEM8(0x7F)\n#define ADC8D 0 /* ADC8 Digital input Disable */\n#define ADC9D 1 /* ADC9 Digital input Disable */\n#define ADC10D 2 /* ADC10 Digital input Disable */\n#define AMP0ND 3\n#define AMP0PD 4\n#define ACMP0D 5\n\n/* Timer/Counter1 Control Register A */\n#define TCCR1A _SFR_MEM8(0x80)\n#define WGM10 0 /* Waveform Generation Mode */\n#define WGM11 1 /* Waveform Generation Mode */\n#define COM1B0 4 /* Compare Output Mode 1B, bit 0 */\n#define COM1B1 5 /* Compare Output Mode 1B, bit 1 */\n#define COM1A0 6 /* Comparet Ouput Mode 1A, bit 0 */\n#define COM1A1 7 /* Comparet Ouput Mode 1A, bit 1 */\n\n/* Timer/Counter1 Control Register B */\n#define TCCR1B _SFR_MEM8(0x81)\n#define CS10 0 /* Prescaler source of Timer/Counter 1 */\n#define CS11 1 /* Prescaler source of Timer/Counter 1 */\n#define CS12 2 /* Prescaler source of Timer/Counter 1 */\n#define WGM12 3 /* Waveform Generation Mode */\n#define WGM13 4 /* Waveform Generation Mode */\n#define ICES1 6 /* Input Capture 1 Edge Select */\n#define ICNC1 7 /* Input Capture 1 Noise Canceler */\n\n/* Timer/Counter1 Control Register C */\n#define TCCR1C _SFR_MEM8(0x82)\n#define FOC1B 6 /* Force Output Compare for Channel B */\n#define FOC1A 7 /* Force Output Compare for Channel A */\n\n/* Timer/Counter1 */\n#define TCNT1 _SFR_MEM16(0x84)\n#define TCNT1L _SFR_MEM8(0x84)\n#define TCNT10 0\n#define TCNT11 1\n#define TCNT12 2\n#define TCNT13 3\n#define TCNT14 4\n#define TCNT15 5\n#define TCNT16 6\n#define TCNT17 7\n#define TCNT1H _SFR_MEM8(0x85)\n#define TCNT18 0\n#define TCNT19 1\n#define TCNT110 2\n#define TCNT111 3\n#define TCNT112 4\n#define TCNT113 5\n#define TCNT114 6\n#define TCNT115 7\n\n/* Input Capture Register 1 */\n#define ICR1 _SFR_MEM16(0x86)\n#define ICR1L _SFR_MEM8(0x86)\n#define ICR17 7\n#define ICR16 6\n#define ICR15 5\n#define ICR14 4\n#define ICR13 3\n#define ICR12 2\n#define ICR11 1\n#define ICR10 0\n#define ICR1H _SFR_MEM8(0x87)\n#define ICR115 7\n#define ICR114 6\n#define ICR113 5\n#define ICR112 4\n#define ICR111 3\n#define ICR110 2\n#define ICR19 1\n#define ICR18 0\n\n/* Output Compare Register 1 A */\n#define OCR1A _SFR_MEM16(0x88)\n#define OCR1AL _SFR_MEM8(0x88)\n#define OCR1A0 0\n#define OCR1A1 1\n#define OCR1A2 2\n#define OCR1A3 3\n#define OCR1A4 4\n#define OCR1A5 5\n#define OCR1A6 6\n#define OCR1A7 7\n#define OCR1AH _SFR_MEM8(0x89)\n#define OCR1A8 0\n#define OCR1A9 1\n#define OCR1A10 2\n#define OCR1A11 3\n#define OCR1A12 4\n#define OCR1A13 5\n#define OCR1A14 6\n#define OCR1A15 7\n\n/* Output Compare Register 1 B */\n#define OCR1B _SFR_MEM16(0x8A)\n#define OCR1BL _SFR_MEM8(0x8A)\n#define OCR1B0 0\n#define OCR1B1 1\n#define OCR1B2 2\n#define OCR1B3 3\n#define OCR1B4 4\n#define OCR1B5 5\n#define OCR1B6 6\n#define OCR1B7 7\n#define OCR1BH _SFR_MEM8(0x8B)\n#define OCR1B8 0\n#define OCR1B9 1\n#define OCR1B10 2\n#define OCR1B11 3\n#define OCR1B12 4\n#define OCR1B13 5\n#define OCR1B14 6\n#define OCR1B15 7\n\n/* PSC0 Interrupt Flag Register */\n#define PIFR0 _SFR_MEM8(0xA0)\n#define PEOP0 0 /* End Of PSC0 Interrupt */\n#define PRN00 1 /* PSC0 Ramp Number bit0 */\n#define PRN01 2 /* PSC0 Ramp Number bit1 */\n#define PEV0A 3 /* PSC0 External Event A Interrupt */\n#define PEV0B 4 /* PSC0 External Event B Interrupt */\n#define PSEI0 5 /* PSC0 Synchro Error Interrupt */\n#define POAC0A 6 /* PSC0 Output A Activity */\n#define POAC0B 7 /* PSC0 Output B Activity */\n\n/* PSC0 Interrupt Mask Register */\n#define PIM0 _SFR_MEM8(0xA1)\n#define PEOPE0 0 /* PSC0 End Of Cycle Interrupt Enable */\n#define PEVE0A 3 /* PSC0 External Event A Interrupt Enable */\n#define PEVE0B 4 /* PSC0 External Event B Interrupt Enable */\n#define PSEIE0 5 /* PSC0 Synchro Error Interrupt Enable */\n\n/* PSC1 Interrupt Flag Register */\n#define PIFR1 _SFR_MEM8(0xA2)\n#define PEOP1 0\n#define PRN10 1\n#define PRN11 2\n#define PEV1A 3\n#define PEV1B 4\n#define PSEI1 5\n#define POAC1A 6\n#define POAC1B 7\n\n/* PSC1 Interrupt Mask Register */\n#define PIM1 _SFR_MEM8(0xA3)\n\n/* PSC2 Interrupt Flag Register */\n#define PIFR2 _SFR_MEM8(0xA4)\n#define PEOP2 0 /* End Of PSC2 Interrupt */\n#define PRN20 1 /* PSC2 Ramp Number bit0 */\n#define PRN21 2 /* PSC2 Ramp Number bit1 */\n#define PEV2A 3 /* PSC2 External Event A Interrupt */\n#define PEV2B 4 /* PSC2 External Event B Interrupt */\n#define PSEI2 5 /* PSC2 Synchro Error Interrupt */\n#define POAC2A 6 /* PSC2 Output A Activity */\n#define POAC2B 7 /* PSC2 Output B Activity */\n\n/* PSC2 Interrupt Mask Register */\n#define PIM2 _SFR_MEM8(0xA5)\n#define PEOPE2 0 /* PSC2 End Of Cycle Interrupt Enable */\n#define PEVE2A 3 /* PSC2 External Event A Interrupt Enable */\n#define PEVE2B 4 /* PSC2 External Event B Interrupt Enable */\n#define PSEIE2 5 /* PSC2 Synchro Error Interrupt Enable */\n\n/* Digital to Analog Conversion Control Register */\n#define DACON _SFR_MEM8(0xAA)\n#define DAEN 0 /* Digital to Analog Enable bit */\n#define DAOE 1 /* Digital to Analog Output Enable bit */\n#define DALA 2 /* Digital to Analog Left Adjust */\n#define DATS0 4 /* DAC Trigger Selection bit0 */\n#define DATS1 5 /* DAC Trigger Selection bit1 */\n#define DATS2 6 /* DAC Trigger Selection bit2 */\n#define DAATE 7 /* DAC Auto Trigger Enable bit */\n\n/* Digital to Analog Converter input Register */\n#define DAC _SFR_MEM16(0xAB)\n#define DACL _SFR_MEM8(0xAB)\n#define DACH _SFR_MEM8(0xAC)\n\n/* Analog Comparator 0 Control Register */\n#define AC0CON _SFR_MEM8(0xAD)\n#define AC0M0 0 /* Analog Comparator 0 Multiplexer register bit0 */\n#define AC0M1 1 /* Analog Comparator 0 Multiplexer register bit1 */\n#define AC0M2 2 /* Analog Comparator 0 Multiplexer register bit2 */\n#define AC0IS0 4 /* Analog Comparator 0 Interrupt Select bit0 */\n#define AC0IS1 5 /* Analog Comparator 0 Interrupt Select bit1 */\n#define AC0IE 6 /* Analog Comparator 0 Interrupt Enable bit */\n#define AC0EN 7 /* Analog Comparator 0 Enable Bit */\n\n/* Analog Comparator 1 Control Register */\n#define AC1CON _SFR_MEM8(0xAE)\n#define AC1M0 0 /* Analog Comparator 1 Multiplexer register bit0 */\n#define AC1M1 1 /* Analog Comparator 1 Multiplexer register bit1 */\n#define AC1M2 2 /* Analog Comparator 1 Multiplexer register bit2 */\n#define AC1ICE 3 /* Analog Comparator 1 Interrupt Capture Enable bit */\n#define AC1IS0 4 /* Analog Comparator 1 Interrupt Select bit0 */\n#define AC1IS1 5 /* Analog Comparator 1 Interrupt Select bit1 */\n#define AC1IE 6 /* Analog Comparator 1 Interrupt Enable bit */\n#define AC1EN 7 /* Analog Comparator 1 Enable Bit */\n\n/* Analog Comparator 2 Control Register */\n#define AC2CON _SFR_MEM8(0xAF)\n#define AC2M0 0 /* Analog Comparator 2 Multiplexer register bit0 */\n#define AC2M1 1 /* Analog Comparator 2 Multiplexer register bit1 */\n#define AC2M2 2 /* Analog Comparator 2 Multiplexer register bit2 */\n#define AC2IS0 4 /* Analog Comparator 2 Interrupt Select bit0 */\n#define AC2IS1 5 /* Analog Comparator 2 Interrupt Select bit1 */\n#define AC2IE 6 /* Analog Comparator 2 Interrupt Enable bit */\n#define AC2EN 7 /* Analog Comparator 2 Enable Bit */\n\n/* USART Control and Status Register A */\n#define UCSRA _SFR_MEM8(0xC0)\n#define MPCM 0 /* Multi-processor Communication Mode */\n#define U2X 1 /* Double the USART Transmission Speed */\n#define UPE 2 /* USART Parity Error */\n#define DOR 3 /* Data OverRun */\n#define FE 4 /* Frame Error */\n#define UDRE 5 /* USART Data Register Empty */\n#define TXC 6 /* USART Transmit Complete */\n#define RXC 7 /* USART Receive Complete */\n\n/* USART Control and Status Register B */\n#define UCSRB _SFR_MEM8(0xC1)\n#define TXB8 0 /* Transmit Data Bit 8 */\n#define RXB8 1 /* Receive Data Bit 8 */\n#define UCSZ2 2 /* Character Size */\n#define TXEN 3 /* Transmitter Enable */\n#define RXEN 4 /* Receiver Enable */\n#define UDRIE 5 /* USART Data Register Empty Interrupt Enable */\n#define TXCIE 6 /* TX Complete Interrupt Enable */\n#define RXCIE 7 /* RX Complete Interrupt Enable */\n\n/* USART Control and Status Register C */\n#define UCSRC _SFR_MEM8(0xC2)\n#define UCPOL 0 /* Clock Polarity */\n#define UCSZ0 1 /* Character Size bit0 */\n#define UCSZ1 2 /* Character Size bit1 */\n#define USBS 3 /* Stop Bit Select */\n#define UPM0 4 /* Parity Mode bit0 */\n#define UPM1 5 /* Parity Mode bit1 */\n#define UMSEL 6 /* USART Mode Select */\n\n/* USART Baud Rate Register */\n#define UBRR _SFR_MEM16(0xC4)\n#define UBRRL _SFR_MEM8(0xC4)\n#define UBRRH _SFR_MEM8(0xC5)\n\n/* USART I/O Data Register */\n#define UDR _SFR_MEM8(0xC6)\n\n/* EUSART Control and Status Register A */\n#define EUCSRA _SFR_MEM8(0xC8)\n#define URxS0 0 /* EUSART Receive Character Size bit0 */\n#define URxS1 1 /* EUSART Receive Character Size bit1 */\n#define URxS2 2 /* EUSART Receive Character Size bit2 */\n#define URxS3 3 /* EUSART Receive Character Size bit3 */\n#define UTxS0 4 /* EUSART Transmit Character Size bit0 */\n#define UTxS1 5 /* EUSART Transmit Character Size bit1 */\n#define UTxS2 6 /* EUSART Transmit Character Size bit2 */\n#define UTxS3 7 /* EUSART Transmit Character Size bit3 */\n\n/* EUSART Control and Status Register B */\n#define EUCSRB _SFR_MEM8(0xC9)\n#define BODR 0 /* Bit Order */\n#define EMCH 1 /* Manchester mode */\n#define EUSBS 3 /* EUSBS Enable Bit */\n#define EUSART 4 /* EUSART Enable Bit */\n\n/* EUSART Control and Status Register C */\n#define EUCSRC _SFR_MEM8(0xCA)\n#define STP0 0 /* Stop bits values bit0 */\n#define STP1 1 /* Stop bits values bit1 */\n#define F1617 2\n#define FEM 3 /* Frame Error Manchester */\n\n/* Manchester receiver Baud Rate Registers */\n#define MUBRR _SFR_MEM16(0xCC)\n#define MUBRRL _SFR_MEM8(0xCC)\n#define MUBRRH _SFR_MEM8(0xCD)\n\n/* EUSART I/O Data Register */\n#define EUDR _SFR_MEM8(0xCE)\n\n/* PSC 0 Synchro and Output Configuration */\n#define PSOC0 _SFR_MEM8(0xD0)\n#define POEN0A 0 /* PSC 0 OUT Part A Output Enable */\n#define POEN0B 2 /* PSC 0 OUT Part B Output Enable */\n#define PSYNC00 4 /* Synchronization Out for ADC Selection bit0 */\n#define PSYNC01 5 /* Synchronization Out for ADC Selection bit1 */\n\n/* Output Compare SA Registers */\n#define OCR0SA _SFR_MEM16(0xD2)\n#define OCR0SAL _SFR_MEM8(0xD2)\n#define OCR0SAH _SFR_MEM8(0xD3)\n\n/* Output Compare RA Registers */\n#define OCR0RA _SFR_MEM16(0xD4)\n#define OCR0RAL _SFR_MEM8(0xD4)\n#define OCR0RAH _SFR_MEM8(0xD5)\n\n/* Output Compare SB Registers */\n#define OCR0SB _SFR_MEM16(0xD6)\n#define OCR0SBL _SFR_MEM8(0xD6)\n#define OCR0SBH _SFR_MEM8(0xD7)\n\n/* Output Compare RB Registers */\n#define OCR0RB _SFR_MEM16(0xD8)\n#define OCR0RBL _SFR_MEM8(0xD8)\n#define OCR0RBH _SFR_MEM8(0xD9)\n\n/* PSC 0 Configuration Register */\n#define PCNF0 _SFR_MEM8(0xDA)\n#define PCLKSEL0 1 /* PSC 0 Input Clock Select */\n#define POP0 2 /* PSC 0 Output Polarity */\n#define PMODE00 3 /* PSC 0 Mode bit0 */\n#define PMODE01 4 /* PSC 0 Mode bit1 */\n#define PLOCK0 5 /* PSC 0 Lock */\n#define PALOCK0 6 /* PSC 0 Autolock */\n#define PFIFTY0 7 /* PSC 0 Fifty */\n\n/* PSC 0 Control Register */\n#define PCTL0 _SFR_MEM8(0xDB)\n#define PRUN0 0 /* PSC 0 Run */\n#define PCCYC0 1 /* PSC 0 Complete Cycle */\n#define PARUN0 2 /* PSC 0 Autorun */\n#define PAOC0A 3 /* PSC 0 Asynchronous Output Control A */\n#define PAOC0B 4 /* PSC 0 Asynchronous Output Control B */\n#define PBFM0 5 /* Balance Flank Width Modulation */\n#define PPRE00 6 /* PSC 0 Prescaler Select bit0 */\n#define PPRE01 7 /* PSC 0 Prescaler Select bit1 */\n\n/* PSC 0 Input A Control Register */\n#define PFRC0A _SFR_MEM8(0xDC)\n#define PRFM0A0 0 /* PSC 0 Fault Mode bit0 */\n#define PRFM0A1 1 /* PSC 0 Fault Mode bit1 */\n#define PRFM0A2 2 /* PSC 0 Fault Mode bit2 */\n#define PRFM0A3 3 /* PSC 0 Fault Mode bit3 */\n#define PFLTE0A 4 /* PSC 0 Filter Enable on Input Part A */\n#define PELEV0A 5 /* PSC 0 Edge Level Selector of Input Part A */\n#define PISEL0A 6 /* PSC 0 Input Select for Part A */\n#define PCAE0A 7 /* PSC 0 Capture Enable Input Part A */\n\n/* PSC 0 Input B Control Register */\n#define PFRC0B _SFR_MEM8(0xDD)\n#define PRFM0B0 0 /* PSC 0 Fault Mode bit0 */\n#define PRFM0B1 1 /* PSC 0 Fault Mode bit1 */\n#define PRFM0B2 2 /* PSC 0 Fault Mode bit2 */\n#define PRFM0B3 3 /* PSC 0 Fault Mode bit3 */\n#define PFLTE0B 4 /* PSC 0 Filter Enable on Input Part B */\n#define PELEV0B 5 /* PSC 0 Edge Level Selector of Input Part B */\n#define PISEL0B 6 /* PSC 0 Input Select for Part B */\n#define PCAE0B 7 /* PSC 0 Capture Enable Input Part B */\n\n/* PSC 0 Input Capture Registers */\n#define PICR0 _SFR_MEM16(0xDE)\n#define PICR0L _SFR_MEM8(0xDE)\n#define PICR0H _SFR_MEM8(0xDF)\n#define PCST0 7 /* PSC Capture Software Trig bit */\n\n/* PSC 1 Synchro and Output Configuration */\n#define PSOC1 _SFR_MEM8(0xE0)\n#define POEN1A 0\n#define POEN1B 2\n#define PSYNC1_0 4\n#define PSYNC1_1 5\n\n/* Output Compare SA Registers */\n#define OCR1SA _SFR_MEM16(0xE2)\n#define OCR1SAL _SFR_MEM8(0xE2)\n#define OCR1SAH _SFR_MEM8(0xE3)\n\n/* Output Compare RA Registers */\n#define OCR1RA _SFR_MEM16(0xE4)\n#define OCR1RAL _SFR_MEM8(0xE4)\n#define OCR1RAH _SFR_MEM8(0xE5)\n\n/* Output Compare SB Registers */\n#define OCR1SB _SFR_MEM16(0xE6)\n#define OCR1SBL _SFR_MEM8(0xE6)\n#define OCR1SBH _SFR_MEM8(0xE7)\n\n/* Output Compare RB Registers */\n#define OCR1RB _SFR_MEM16(0xE8)\n#define OCR1RBL _SFR_MEM8(0xE8)\n#define OCR1RBH _SFR_MEM8(0xE9)\n\n/* PSC 1 Configuration Register */\n#define PCNF1 _SFR_MEM8(0xEA)\n#define PCLKSEL1 1\n#define POP1 2\n#define PMODE10 3\n#define PMODE11 4\n#define PLOCK1 5\n#define PALOCK1 6\n#define PFIFTY1 7\n\n/* PSC 1 Control Register */\n#define PCTL1 _SFR_MEM8(0xEB)\n#define PRUN1 0\n#define PCCYC1 1\n#define PARUN1 2\n#define PAOC1A 3\n#define PAOC1B 4\n#define PBFM1 5\n#define PPRE10 6\n#define PPRE11 7\n\n/* PSC 1 Input A Control Register */\n#define PFRC1A _SFR_MEM8(0xEC)\n#define PRFM1A0 0\n#define PRFM1A1 1\n#define PRFM1A2 2\n#define PRFM1A3 3\n#define PFLTE1A 4\n#define PELEV1A 5\n#define PISEL1A 6\n#define PCAE1A 7\n\n/* PSC 1 Input B Control Register */\n#define PFRC1B _SFR_MEM8(0xED)\n#define PRFM1B0 0\n#define PRFM1B1 1\n#define PRFM1B2 2\n#define PRFM1B3 3\n#define PFLTE1B 4\n#define PELEV1B 5\n#define PISEL1B 6\n#define PCAE1B 7\n\n/* PSC 1 Input Capture Registers */\n#define PICR1 _SFR_MEM16(0xEE)\n#define PICR1L _SFR_MEM8(0xEE)\n#define PICR1H _SFR_MEM8(0xEF)\n\n/* PSC 2 Synchro and Output Configuration */\n#define PSOC2 _SFR_MEM8(0xF0)\n#define POEN2A 0 /* PSC 2 OUT Part A Output Enable */\n#define POEN2C 1 /* PSCOUT22 Output Enable */\n#define POEN2B 2 /* PSC 2 OUT Part B Output Enable */\n#define POEN2D 3 /* PSCOUT23 Output Enable */\n#define PSYNC20 4 /* Synchronization Out for ADC Selection bit0 */\n#define PSYNC21 5 /* Synchronization Out for ADC Selection bit1 */\n#define POS22 6 /* PSCOUT22 Selection */\n#define POS23 7 /* PSCOUT23 Selection */\n\n/* PSC 2 Output Matrix */\n#define POM2 _SFR_MEM8(0xF1)\n#define POMV2A0 0 /* Output Matrix Output A Ramp 0 */\n#define POMV2A1 1 /* Output Matrix Output A Ramp 1 */\n#define POMV2A2 2 /* Output Matrix Output A Ramp 2 */\n#define POMV2A3 3 /* Output Matrix Output A Ramp 3 */\n#define POMV2B0 4 /* Output Matrix Output B Ramp 0 */\n#define POMV2B1 5 /* Output Matrix Output B Ramp 1 */\n#define POMV2B2 6 /* Output Matrix Output B Ramp 2 */\n#define POMV2B3 7 /* Output Matrix Output B Ramp 3 */\n\n/* Output Compare SA Registers */\n#define OCR2SA _SFR_MEM16(0xF2)\n#define OCR2SAL _SFR_MEM8(0xF2)\n#define OCR2SAH _SFR_MEM8(0xF3)\n\n/* Output Compare RA Registers */\n#define OCR2RA _SFR_MEM16(0xF4)\n#define OCR2RAL _SFR_MEM8(0xF4)\n#define OCR2RAH _SFR_MEM8(0xF5)\n\n/* Output Compare SB Registers */\n#define OCR2SB _SFR_MEM16(0xF6)\n#define OCR2SBL _SFR_MEM8(0xF6)\n#define OCR2SBH _SFR_MEM8(0xF7)\n\n/* Output Compare RB Registers */\n#define OCR2RB _SFR_MEM16(0xF8)\n#define OCR2RBL _SFR_MEM8(0xF8)\n#define OCR2RBH _SFR_MEM8(0xF9)\n\n/* PSC 2 Configuration Register */\n#define PCNF2 _SFR_MEM8(0xFA)\n#define POME2 0 /* PSC 2 Output Matrix Enable */\n#define PCLKSEL2 1 /* PSC 2 Input Clock Select */\n#define POP2 2 /* PSC 2 Output Polarity */\n#define PMODE20 3 /* PSC 2 Mode bit0 */\n#define PMODE21 4 /* PSC 2 Mode bit1 */\n#define PLOCK2 5 /* PSC 2 Lock */\n#define PALOCK2 6 /* PSC 2 Autolock */\n#define PFIFTY2 7 /* PSC 2 Fifty */\n\n/* PSC 2 Control Register */\n#define PCTL2 _SFR_MEM8(0xFB)\n#define PRUN2 0 /* PSC 2 Run */\n#define PCCYC2 1 /* PSC 2 Complete Cycle */\n#define PARUN2 2 /* PSC 2 Autorun */\n#define PAOC2A 3 /* PSC 2 Asynchronous Output Control A */\n#define PAOC2B 4 /* PSC 2 Asynchronous Output Control B */\n#define PBFM2 5 /* Balance Flank Width Modulation */\n#define PPRE20 6 /* PSC 2 Prescaler Select bit0 */\n#define PPRE21 7 /* PSC 2 Prescaler Select bit1 */\n\n/* PSC 2 Input A Control Register */\n#define PFRC2A _SFR_MEM8(0xFC)\n#define PRFM2A0 0 /* PSC 2 Fault Mode bit0 */\n#define PRFM2A1 1 /* PSC 2 Fault Mode bit1 */\n#define PRFM2A2 2 /* PSC 2 Fault Mode bit2 */\n#define PRFM2A3 3 /* PSC 2 Fault Mode bit3 */\n#define PFLTE2A 4 /* PSC 2 Filter Enable on Input Part A */\n#define PELEV2A 5 /* PSC 2 Edge Level Selector of Input Part A */\n#define PISEL2A 6 /* PSC 2 Input Select for Part A */\n#define PCAE2A 7 /* PSC 2 Capture Enable Input Part A */\n\n/* PSC 2 Input B Control Register */\n#define PFRC2B _SFR_MEM8(0xFD)\n#define PRFM2B0 0 /* PSC 2 Fault Mode bit0 */\n#define PRFM2B1 1 /* PSC 2 Fault Mode bit1 */\n#define PRFM2B2 2 /* PSC 2 Fault Mode bit2 */\n#define PRFM2B3 3 /* PSC 2 Fault Mode bit3 */\n#define PFLTE2B 4 /* PSC 2 Filter Enable on Input Part B */\n#define PELEV2B 5 /* PSC 2 Edge Level Selector of Input Part B */\n#define PISEL2B 6 /* PSC 2 Input Select for Part B */\n#define PCAE2B 7 /* PSC 2 Capture Enable Input Part B */\n\n/* PSC 2 Input Capture Registers */\n#define PICR2 _SFR_MEM16(0xFE)\n#define PICR2L _SFR_MEM8(0xFE)\n#define PICR2H _SFR_MEM8(0xFF)\n#define PCST2 7 /* PSC Capture Software Trig bit */\n\n\n/* Interrupt Vectors */\n/* Interrupt 0 is the reset vector. */",
"\n\n/* PSC2 Capture Event */\n#define PSC2_CAPT_vect _VECTOR(1)\n\n/* PSC2 End Cycle */\n#define PSC2_EC_vect _VECTOR(2)\n\n/* PSC1 Capture Event */\n#define PSC1_CAPT_vect _VECTOR(3)\n\n/* PSC1 End Cycle */\n#define PSC1_EC_vect _VECTOR(4)\n\n/* PSC0 Capture Event */\n#define PSC0_CAPT_vect _VECTOR(5)\n\n/* PSC0 End Cycle */\n#define PSC0_EC_vect _VECTOR(6)\n\n/* Analog Comparator 0 */\n#define ANALOG_COMP_0_vect _VECTOR(7)\n\n/* Analog Comparator 1 */\n#define ANALOG_COMP_1_vect _VECTOR(8)\n\n/* Analog Comparator 2 */\n#define ANALOG_COMP_2_vect _VECTOR(9)\n\n/* External Interrupt Request 0 */\n#define INT0_vect _VECTOR(10)\n\n/* Timer/Counter1 Capture Event */\n#define TIMER1_CAPT_vect _VECTOR(11)\n\n/* Timer/Counter1 Compare Match A */\n#define TIMER1_COMPA_vect _VECTOR(12)\n\n/* Timer/Counter Compare Match B */\n#define TIMER1_COMPB_vect _VECTOR(13)\n\n/* Timer/Counter1 Overflow */\n#define TIMER1_OVF_vect _VECTOR(15)\n\n/* Timer/Counter0 Compare Match A */\n#define TIMER0_COMP_A_vect _VECTOR(16)\n\n/* Timer/Counter0 Overflow */\n#define TIMER0_OVF_vect _VECTOR(17)\n\n/* ADC Conversion Complete */\n#define ADC_vect _VECTOR(18)\n\n/* External Interrupt Request 1 */\n#define INT1_vect _VECTOR(19)\n\n/* SPI Serial Transfer Complete */\n#define SPI_STC_vect _VECTOR(20)\n\n/* USART, Rx Complete */\n#define USART_RX_vect _VECTOR(21)\n\n/* USART Data Register Empty */\n#define USART_UDRE_vect _VECTOR(22)\n\n/* USART, Tx Complete */\n#define USART_TX_vect _VECTOR(23)\n\n/* External Interrupt Request 2 */\n#define INT2_vect _VECTOR(24)\n\n/* Watchdog Timeout Interrupt */\n#define WDT_vect _VECTOR(25)\n\n/* EEPROM Ready */\n#define EE_READY_vect _VECTOR(26)\n\n/* Timer Counter 0 Compare Match B */\n#define TIMER0_COMPB_vect _VECTOR(27)\n\n/* External Interrupt Request 3 */\n#define INT3_vect _VECTOR(28)\n\n/* Store Program Memory Read */\n#define SPM_READY_vect _VECTOR(31)\n\n#define _VECTORS_SIZE (4 * 32)\n\n/* Constants */\n\n#define RAMEND 0x4FF\n#define XRAMSIZE 0\n#define XRAMEND (RAMEND + XRAMSIZE)\n#define E2END 0x1FF\n#define E2PAGESIZE 4\n#define FLASHEND 0x3FFF\n#define SPM_PAGESIZE 128\n\n\n/* Fuse Information */\n\n#define FUSE_MEMORY_SIZE 3\n\n/* Low Fuse Byte */\n#define FUSE_CKSEL0 (unsigned char)~_BV(0) /* Select Clock Source */\n#define FUSE_CKSEL1 (unsigned char)~_BV(1) /* Select Clock Source */\n#define FUSE_CKSEL2 (unsigned char)~_BV(2) /* Select Clock Source */\n#define FUSE_CKSEL3 (unsigned char)~_BV(3) /* Select Clock Source */\n#define FUSE_SUT0 (unsigned char)~_BV(4) /* Select start-up time */\n#define FUSE_SUT1 (unsigned char)~_BV(5) /* Select start-up time */\n#define FUSE_CKOUT (unsigned char)~_BV(6) /* Oscillator output option */\n#define FUSE_CKDIV8 (unsigned char)~_BV(7) /* Divide clock by 8 */\n#define LFUSE_DEFAULT (FUSE_CKSEL0 & FUSE_CKSEL2 & FUSE_CKSEL3 & FUSE_SUT0 & FUSE_CKDIV8)\n\n/* High Fuse Byte */\n#define FUSE_BODLEVEL0 (unsigned char)~_BV(0)\n#define FUSE_BODLEVEL1 (unsigned char)~_BV(1)\n#define FUSE_BODLEVEL2 (unsigned char)~_BV(2)\n#define FUSE_EESAVE (unsigned char)~_BV(3) /* EEPROM memory is preserved through chip erase */\n#define FUSE_WDTON (unsigned char)~_BV(4) /* Watchdog timer always on */\n#define FUSE_SPIEN (unsigned char)~_BV(5) /* Enable Serial programming and Data Downloading */\n#define FUSE_DWEN (unsigned char)~_BV(6) /* debugWIRE Enable */\n#define FUSE_RSTDISBL (unsigned char)~_BV(7) /* External Reset Diasble */\n#define HFUSE_DEFAULT (FUSE_SPIEN)\n\n/* Extended Fuse Byte */\n#define FUSE_BOOTRST (unsigned char)~_BV(0) /* Select Reset Vector */\n#define FUSE_BOOTSZ0 (unsigned char)~_BV(1) /* Select Boot Size */\n#define FUSE_BOOTSZ1 (unsigned char)~_BV(2) /* Select Boot Size */\n#define FUSE_PSCRV (unsigned char)~_BV(4)\n#define FUSE_PSC0RB (unsigned char)~_BV(5)\n#define FUSE_PSC1RB (unsigned char)~_BV(6)\n#define FUSE_PSC2RB (unsigned char)~_BV(7)\n#define EFUSE_DEFAULT (FUSE_BOOTSZ0 & FUSE_BOOTSZ1)\n\n\n/* Lock Bits */\n#define __LOCK_BITS_EXIST\n#define __BOOT_LOCK_BITS_0_EXIST\n#define __BOOT_LOCK_BITS_1_EXIST \n\n\n/* Signature */\n#define SIGNATURE_0 0x1E\n#define SIGNATURE_1 0x94\n#define SIGNATURE_2 0x83\n\n\n#endif /* _AVR_IO90PWM316_H_ */\n"
] | {
"pile_set_name": "Github"
} | [
0,
0,
0,
0,
0.00398406374501992,
0.009433962264150943,
0,
0,
0.007194244604316547,
0.02147052866113024,
0,
0.029411764705882353,
0.02702702702702703,
0,
0,
0.011720753058384001,
0.007037297677691766
] | 0.006899 | 5 |
[
"Who's dumber, I wonder: The Israeli and Western women who protest on behalf of the Palestinian death cult despite their limitless appetite for murder and sexual assault, or the Palestinians themselves, so barbaric that they cannot restrain themselves from attempting to rape the few that are willing to stand up for them?",
"\n\nThe story speaks of:\n\n...a wider phenomenon of sexual harassment and assault of Israeli and foreign protesters in the West Bank. ",
"In the past two years, at least six incidents were recorded in the West Bank and East Jerusalem: two in Sheikh Jarrah, four more in the Mount Hebron area, in Masra, in Kfar a-Dik, and an alleged case of attempted rape in Umm Salmona, near Bethlehem, that was revealed in Haaretz.",
"\n\nBut that is only the tip of the iceberg:\n\nOne activist, who in the past used to frequent the protests in the West Bank but no longer participates, told Haaretz, “Two years ago we had a meeting of women who took part in the struggle against the occupation. ",
"It took place in an apartment in Jerusalem, and disturbing things were brought up. ",
"Nearly all the women that attended told of cases of harassment or discrimination.",
"\n\nAnd what of their fellow male liberals? ",
"Are they standing up for their woman, acting with chivalry as in the days of old?",
"\n\nAre you kidding me?",
"\n\nAlongside the struggle against the sexual harassment, the female activists have criticized the responses of their Israeli associates. ",
"The ire of many of the activists in the past and in the present is directed at their associates in the left who, according to them, are belittling the significance of the harassments, all in the name of “the opposition to the occupation.”",
"\n\nSacrificing women on the alter of \"the movement\". ",
"Standard operating procedure for the scumbags of the socialist Left. ",
"Just ask the victims of the \"Occupy Wall street\" rape camps, who were urged not to contact the police, so as not to sully the proud name of #OWS...\n\nAnd here's where the story ends, unfortunately: With a poor young innocent finding out liberal men are just not all they are cracked up to be:\n\n“I was sexually assaulted last summer by an Israeli leftist activist. ",
"The assailant met, and still meets, all the right criteria: post-colonialist, post-Zionist, anti-capitalist, etc. ",
"And most relevantly, he considers himself a feminist. ",
"Until he assaulted me, we were friends.”",
"\n\n“After the assault it took me three long days to understand what had happened to me, and find a name for it. ",
"I couldn’t wrap my mind around it, because I couldn’t understand how someone who spoke with me using the language of opposition to oppression could breach my walls.”",
"\n\n... In all honesty, the left isn’t as good at keeping gender equality as they think they are.”",
"\n\nLucky you're not in America, darling. ",
"The Democratic machine - busy though they may be arranging free contraceptives and abortions for any girl who wants to fuck consequence-free - would certainly take a time-out to demonize you, to belittle you, to twist your story, and to cast aspersions on your character.",
"\n\nConsider yourself lucky. ",
"At least in Israel, the ruling party isn't lusting to take a turn on you as well..."
] | {
"pile_set_name": "Pile-CC"
} | [
0,
0,
0.007168458781362007,
0.003875968992248062,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.0027548209366391185,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
] | 0.000575 | 5 |
[
"В ноябре 1967 года на обложке журнала LIFE появилась фотография из серии «Советская молодежь» (Soviet Youth) фотографа Билла Эпприджа (Bill Eppridge). ",
"А на самом деле у него получилась замечательная серия портретов, запечатлевших лица, моду, жизнь и дух того времени в целом.",
"\n\nМожет быть, кто-то вспомнит себя в юности, а кто-то посмотрит, какими были его родители, но, вероятно, все найдут в этих снимках что-то свое, близкое.",
"\n\nСмотрите также:\n\nПонравилось? ",
"Хотите быть в курсе обновлений? ",
"Подписывайтесь на наш Twitter, страницу в Facebook или канал в Telegram."
] | {
"pile_set_name": "OpenWebText2"
} | [
0.006622516556291391,
0.016129032258064516,
0.006578947368421052,
0.03125,
0,
0.013888888888888888
] | 0.012412 | 5 |
[
"Joseph Ewan\n\nJoseph Andorfer Ewan (1909–1999) was a botanist, naturalist, and historian of botany and natural history.",
"\n\nBiography\nJoseph Ewan grew up in Los Angeles and developed an early interest in the study of nature. ",
"At the age of eighteen, he published an ornithological report in The Condor. ",
" He matriculated at UCLA and transferred to the University of California, Berkeley in 1933, graduating there with a B.A. in 1934. ",
"After graduating he remained at Berkeley until 1937 as a research assistant to Willis Jepson. ",
"In 1935 Ewan married a fellow botanical student, Ada Nesta Dunn (1908–2000), in Reno, Nevada. ",
"She often collaborated with him on his publications. ",
"He was from 1937 to 1944 an instructor at the University of Colorado, from 1944 to 1945 a botanist with the Foreign Economic Administration, from 1945 to 1946 an assistant curator at the Smithsonian Institution, and from 1946 to 1947 an associate botanist at the USDA's Bureau of Plant Industry. ",
"At Tulane University he became in 1947 an assistant professor and was eventually promoted to associate professor, and then full professor. ",
"There he held the Ida Richard Professorship from 1972 to 1977, when he retired as professor emeritus.",
"\n\nEwan was a member of London's Society for the Bibliography of Natural History and in 1977 received its Founder's Medal.",
"\n\nThe number of his publications exceeds 400. ",
"He wrote extensively on the history of naturalists in America and their work during the 17th, 18th, and 19th centuries. ",
"Joseph and Nesta Ewan wrote John Banister and his natural history of Virginia (1970), a Biographical dictionary of Rocky Mountain naturalists (1981), and Benjamin Smith Barton: naturalist and physician in Jeffersonian America (published posthumously in 2007).",
"\n\nDuring their long marriage, Mr. and Mrs. Ewan collected about 4,500 books and huge numbers of \"offprints, newspaper clippings, photocopies, correspondence, documents and manuscript notes.\" ",
"In 1986 the Missouri Botanical Garden purchased the collection and in 1997 published (and placed on-line) a Guide to the Ewan Papers which lists about 10,000 names.",
"\n\nJoseph Ewan died in 1999. ",
"His widow died in 2000. ",
"They were survived by three daughters, Kathleen, Dorothy, and Marjorie, and five grandchildren.",
"\n\nReferences\n\n \nCategory:1909 births\nCategory:1999 deaths\nCategory:University of California, Berkeley alumni\nCategory:Tulane University faculty\nCategory:20th-century American botanists\nCategory:American historians of science\nCategory:Guggenheim Fellows"
] | {
"pile_set_name": "Wikipedia (en)"
} | [
0.01694915254237288,
0.009708737864077669,
0.012987012987012988,
0.015384615384615385,
0.02127659574468085,
0.010638297872340425,
0,
0.016891891891891893,
0.007194244604316547,
0.009900990099009901,
0.01652892561983471,
0,
0,
0.015444015444015444,
0.005235602094240838,
0.012195121951219513,
0.03571428571428571,
0,
0.010526315789473684,
0.011904761904761904
] | 0.011424 | 5 |
[
"A 10-Year Prospective Study of Bone Mineral Density and Bone Turnover in Males and Females With Type 1 Diabetes.",
"\nIn a previous community-based, cross-sectional study, males with type 1 diabetes (T1D) had lower bone mineral density (BMD) than did matched people without diabetes but females with T1D had normal BMD. ",
"To determine whether BMD in the males continued to decline, the neutral effect of T1D on BMD in females persisted, and whether temporal BMD changes reflected changes in bone turnover markers. ",
"Longitudinal observational study. ",
"Urban community. ",
"Forty-eight of the original 102 original cross-sectional study participants (20 males, 28 females) of mean age 42.0 years and median diabetes duration 14.6 years at baseline who were restudied a mean of 10.3 years later. ",
"BMD at total hip, femoral neck, lumbar spine (L1 to L4), and distal forearm. ",
"Biochemical bone turnover markers. ",
"After adjustment for age, body mass index (BMI), and renal function, there was no temporal change in BMD at the hip or forearm in the males (P ≥ 0.12), but lumbar spine BMD increased (P = 0.009). ",
"Females exhibited no statistically significant change in BMD in similar multivariable models that also included postmenopausal status, except a mild increase at the forearm (P = 0.046). ",
"Age- and sex-related changes in bone turnover markers paralleled those in general population studies. ",
"There is a reduction in BMD in males with T1D that occurs early in the course of the disease but then stabilizes. ",
"BMD in females with T1D remains similar to that expected for age, BMI, and postmenopausal status."
] | {
"pile_set_name": "PubMed Abstracts"
} | [
0,
0.0049261083743842365,
0.010416666666666666,
0,
0.058823529411764705,
0,
0,
0,
0.01020408163265306,
0.010752688172043012,
0,
0.008771929824561403,
0.030927835051546393
] | 0.010371 | 5 |
[
"New research reveals how the most common cause of severe allergic reactions to cats, the Fel d 1 protein which is found in cat dander, triggers an allergic response.",
"\n\nScientists have discovered that when the cat protein Fel d 1 is in the presence of very low doses of the ubiquitous environmental bacterial toxin, lipopolysaccharide (LPS), it activates the pathogen recognition receptor Toll-like receptor 4. ",
"Until now, it was not understood how Fel d 1 generated such a large inflammatory response in the immune system.",
"\n\nAllergic reactions are the result of the immune system overreacting to a perceived danger. ",
"Instead of identifying and responding to a harmful virus or bacteria, it misidentifies different allergens, including dander (microscopic pieces of animal skin often accompanied by dried saliva from grooming), as dangerous and mounts an immune response.",
"\n\nIn order to find out how Fel d 1 triggers these allergic reactions, the researchers exposed human cells to cat and dog dander proteins in the presence or absence of low levels of LPS. ",
"The researchers found that when the bacterial toxin LPS is present, it increases the signalling to the body’s immune system, intensifying the body’s inflammatory response to the cat protein Fel d 1.",
"\n\nThey also discovered that the part of the immune system that recognises the LPS contaminated Fel d 1 is the pathogen recognition receptor Toll-like receptor 4 (TLR4). (",
"TLR4 also plays a role in a heightened immune response, and subsequent allergic reaction, to dust mite allergens and as well as the metal nickel.) ",
"The researchers then used a drug which inhibits the TLR4 response and found that it blocks the effects of the cat dander protein on human cells, thereby preventing an inflammatory response.",
"\n\nDr Clare Bryant, lead author of the research from the University of Cambridge’s Department of Veterinary Medicine, said: “How cat dander causes such a severe allergic reaction in some people has long been a mystery. ",
"Not only did we find out that LPS exacerbates the immune response’s reaction to cat dander, we identified the part of immune system that recognises it, the receptor TLR4.”",
"\n\nAdditional research revealed that the dog allergen Can f 6 (a protein found in dog dander) also enhances LPS-induced activation of TLR4. ",
"The researchers believe that dog-allergy sufferers could also benefit from new drugs which inhibit TLR4.",
"\n\nDr Bryant continued: “As drugs have already been developed to inhibit the receptor TLR4, we are hopeful that our research will lead to new and improved treatments for cat and possibly dog allergy sufferers.”",
"\n\nThe research was funded by the Wellcome Trust and the Medical Research Council (MRC). ",
"It was published in the The Journal of Immunology.",
"\n\nFor more information about this story, please contact: Genevieve Maul, Office of Communications, University of Cambridge. ",
"Email: Genevieve.Maul@admin.cam.ac.uk; Tel: 01223 765542."
] | {
"pile_set_name": "OpenWebText2"
} | [
0,
0.00819672131147541,
0.009009009009009009,
0,
0,
0.005376344086021506,
0.010101010101010102,
0.011764705882352941,
0.006802721088435374,
0.005291005291005291,
0.009174311926605505,
0.011695906432748537,
0.007194244604316547,
0,
0.004784688995215311,
0.03409090909090909,
0.02,
0.024193548387096774,
0.03508771929824561
] | 0.010672 | 5 |
[
"Senna siamea\n\nSenna siamea (, mezali; , khilek), also known as Siamese cassia, kassod tree, cassod tree and cassia tree, is a legume in the subfamily Caesalpinioideae. ",
"It is native to South and Southeast Asia, although its exact origin is unknown.",
"\n\nIt is a medium-size, evergreen tree growing up to with yellow flowers. ",
"It is often used as shade tree in cocoa, coffee and tea plantations. ",
"In Thailand it is the provincial tree of Chaiyaphum Province and some places in the country are named after it.",
"\n\nLeaves are alternate, pinnately compound, with slender, green-reddish, tinged axis and 6 to 12 pairs of leaflets on short stalks, rounded at both ends.",
"\n\nUses\n\nThis plant has medicinal value and it contains a compound named barakol. ",
"The leaves, tender pods and seeds are edible, but they must be previously boiled and the water discarded. ",
"They are used in Burmese and also in Thai cuisine where one of the most well-known preparations is kaeng khilek ().",
"\n\nIn Burmese tradition, during the full moon day of Tazaungmon, Burmese families pick Siamese cassia buds and prepare it in a salad called mezali phu thoke (မယ်ဇလီဖူးသုပ်) or in a soup.",
"\n\nOther uses include as fodder plant, in intercropping systems, windbreaks, and shelter belts.",
"\nAs a hardwood, it is used for ornamentation on instruments (ukeleles and guitars) and decorative products. ",
"In this capacity it is known as pheasantwood or polohala, named for the similarity of the grain to pheasant feathers. ",
"It is sometimes used in Chinese furniture (known as jichimu) interchangeably with wood from the Ormosia species.",
"\n\nSee also\nMillettia laurentii\nMillettia leucantha\nOrmosia\n\nReferences\n\nExternal links\n\nFAO - Senna siamea (Lam.) ",
"Irwin & Barneby\n\nsiamea\nCategory:Flora of Indo-China\nCategory:Trees of Thailand\nCategory:Trees of Vietnam\nCategory:Thai cuisine\nCategory:Taxa named by Jean-Baptiste Lamarck\nCategory:Asian vegetables\nCategory:Plants described in 1785"
] | {
"pile_set_name": "Wikipedia (en)"
} | [
0.011904761904761904,
0,
0,
0,
0,
0,
0,
0,
0.008695652173913044,
0.005405405405405406,
0,
0,
0,
0,
0,
0.021551724137931036
] | 0.002972 | 5 |
[
" the first derivative of -h**3/3 + 13*h**2/2 - 2*h + 3. ",
"Let k be m(10). ",
"Let p = k - 15. ",
"Is p a composite number?",
"\nFalse\nLet n(x) = x - 53. ",
"Let p be n(0). ",
"Suppose d = -3*j + 3, 3*d + 9 = 6*d + 3*j. ",
"Is -3*2/d - p a prime number?",
"\nFalse\nSuppose 3*d - 5*r - 3 = 8, 8 = 3*d - 2*r. ",
"Suppose 0 = 4*n - 768 - 332. ",
"Suppose -d*l + 7*l = n. Is l a prime number?",
"\nFalse\nSuppose -21 = -6*x + 3*x. ",
"Suppose -x = 2*a - 181. ",
"Is a prime?",
"\nFalse\nLet y be 0/(-4 - -3 - -3). ",
"Suppose y*h = 4*h. ",
"Suppose -4*d + 66 + 370 = h. Is d composite?",
"\nFalse\nSuppose i + 2*t + 9 = 67, -4*i - 5*t = -223. ",
"Suppose -5*m + i + 243 = 0. ",
"Is m prime?",
"\nTrue\nSuppose 0 = 4*f + 11 + 9. ",
"Let p(w) = -2*w**3 - 5*w**2 + 6*w - 1. ",
"Let n be p(f). ",
"Suppose -n = -2*k - 0*k. ",
"Is k a prime number?",
"\nTrue\nLet h(l) = 2*l**3 - l**2 + 6*l - 7. ",
"Let x(v) = 5*v**3 - v**2 + 12*v - 13. ",
"Let j(w) = 7*h(w) - 3*x(w). ",
"Is j(-7) a prime number?",
"\nFalse\nSuppose -2*f + 182 = 4*k, 3*k + 107 - 31 = f. Is f a composite number?",
"\nTrue\nSuppose 5*p - 26 = 2*u - 4*u, 5*u = -4*p + 31. ",
"Suppose 2*z - p*z = -3*r - 646, -z - 3*r = -341. ",
"Is z a composite number?",
"\nTrue\nLet q(f) = f + 8. ",
"Let a be q(-6). ",
"Let u(c) = c. Let o be u(0). ",
"Suppose 0 = a*y - o - 8. ",
"Is y composite?",
"\nTrue\nLet t be 5*(-2)/(-4)*2. ",
"Let y be 1 - (0 + 2 + -509). ",
"Suppose -k = -t*k + y. Is k a composite number?",
"\nFalse\nLet t(g) = 2*g**2 - g - 3. ",
"Let l(b) = b**3 - 6*b**2 + 4. ",
"Let v be l(6). ",
"Is t(v) a composite number?",
"\nTrue\nLet h(t) = 18*t**3 - 2*t**2 - 11*t + 5. ",
"Is h(4) composite?",
"\nTrue\nLet q be (12/(-18))/(1/(-501)). ",
"Is -2*(2 + q/(-4)) a prime number?",
"\nTrue\nLet i(u) = 4 + 8 - 16 + 2*u + 11. ",
"Is i(0) a composite number?",
"\nFalse\nSuppose -2*y - 485 = -5*b, 3*y + 388 = 4*b + 6*y. ",
"Is b composite?",
"\nFalse\nIs 470 + (-2)/(4/2) composite?",
"\nTrue\nSuppose -5*c + 2955 = -10. ",
"Is c composite?",
"\nFalse\nSuppose 5*z - 131 = 1064. ",
"Is z a prime number?",
"\nTrue\nLet s = 145 + -52. ",
"Suppose -6*k + s = -3*k. ",
"Is k a composite number?",
"\nFalse\nLet v = -3 - 2. ",
"Let m = -5 - v. Suppose -4*j = -2*j - 3*u - 35, m = 2*j - u - 25. ",
"Is j composite?",
"\nTrue\nLet i(k) = -k**2 - 6*k + 8. ",
"Let b be i(-8). ",
"Let p = 18 + b. Is p composite?",
"\nTrue\nSuppose 6*u - 3*u = 93. ",
"Is u a prime number?",
"\nTrue\nLet z be (-2)/1 - 2*6. ",
"Let s = 8 - z. Suppose 5*d + 4*k = 26, -3*d + s = -3*k - k. Is d a composite number?",
"\nTrue\nSuppose -1618 = a - 3*a. ",
"Is a a composite number?",
"\nFalse\nSuppose -1124 = -2*k + 3*c, -52 = -k - 2*c + 510. ",
"Is k a prime number?",
"\nFalse\nLet y(k) = k**3 + 6*k**2 - 3*k - 4. ",
"Let p be y(-5). ",
"Suppose 2*t - 4*v - p = 14, 3*v = -2*t + 50. ",
"Is t prime?",
"\nFalse\nLet g = 65 + 203. ",
"Suppose -3*t = t - g. Is t a composite number?",
"\nFalse\nLet m(d) be the second derivative of -7*d**3/2 + d**2/2 - d. Let z = -22 - -20. ",
"Is m(z) a prime number?",
"\nTrue\nSuppose 4*p = -5*y + 9*y + 78436, 2*p + 4*y - 39218 = 0. ",
"Is p a composite number?",
"\nFalse\nSuppose -4*p + 5*x + 625 = p, -3*p + 379 = x. Let l = -61 + p. Is l a prime number?",
"\nFalse\nIs (17/5 - 3) + 3766/10 prime?",
"\nFalse\nLet q(z) = -z**3 + 6*z**2 + 5*z + 3. ",
"Let j be q(7). ",
"Let t = 3 - j. Suppose 0 = 2*d - 60 + t. Is d a prime number?",
"\nTrue\nSuppose -3051 = -k - 2*j - 2*j, 0 = j + 3. ",
"Is k a composite number?",
"\nTrue\nLet t(l) = 0*l - 2 - 5 + l + 4*l**2 + 5*l**2. ",
"Is t(-5) composite?",
"\nTrue\nSuppose 0 = -5*i - u - 14 - 7, -3*i = -4*u + 8. ",
"Is 383/3 - i/(-6) a prime number?",
"\nTrue\nSuppose 0*w - 2*w = -10. ",
"Suppose -v - w*z = -0*z - 7, 0 = 4*z - 4. ",
"Suppose 0*i - 63 = -3*x + 3*i, v*i + 108 = 5*x. ",
"Is x a composite number?",
"\nTrue\nLet x(d) = 23*d**2 + d - 1. ",
"Is x(-2) a composite number?",
"\nFalse\nLet h(l) = l**2 + 3*l + 3. ",
"Is h(9) composite?",
"\nTrue\nSuppose 0 = i - 3*y + 4*y - 1, -2*i + 11 = -y. ",
"Suppose i*c = c + 1257. ",
"Is c a prime number?",
"\nTrue\nLet c(a) = 4*a**3 - 5*a**2 + 3. ",
"Let s be c(6). ",
"Let t = s + -274. ",
"Is t a prime number?",
"\nFalse\nLet y = 162 - 498. ",
"Let r = y - -481. ",
"Is r composite?",
"\nTrue\nSuppose -3*y + z + 8 = -4*z, 0 = 4*y - 2*z - 6. ",
"Is -6 + 6 + 222 + y prime?",
"\nTrue\nLet s(p) = -p + 8. ",
"Let i be s(6). ",
"Let t(q) = 6. ",
"Let m(b) = -b - 7. ",
"Let o(g) = i*t(g) + 3*m(g). ",
"Is o(-8) a prime number?",
"\nFalse\nLet p = -16 - -22. ",
"Let c be ((-14)/3)/(p/45). ",
"Is (c/4)/((-3)/12) composite?",
"\nTrue\nSuppose 0 = -4*c + 16, 0*w + c = 4*w - 24. ",
"Is w a composite number?",
"\nFalse\nLet x = 6 - 4. ",
"Suppose 0 = 3*p + x*p. ",
"Suppose p = -4*u + u + 102. ",
"Is u prime?",
"\nFalse\nSuppose 5*n - 33 = -3. ",
"Let d be 49/21 + (-2)/n. ",
"Suppose d*z + z - 471 = 0. ",
"Is z a prime number?",
"\nTrue\nLet d = 278 - 396. ",
"Let u = d + 185. ",
"Is u prime?",
"\nTrue\nLet c(n) = 5*n. ",
"Let z(x) = x**2 - 11*x + 1. ",
"Let b(d) = 5*c(d) + 2*z(d). ",
"Is b(-11) composite?",
"\nFalse\nSuppose -5*l = 3*h - 13, 5*h + 30 = l + l. Suppose 173 = 2*p - 5*v, l*v = 2*p - 4*p + 143. ",
"Is p composite?",
"\nFalse\nLet l = -1547 + 2830. ",
"Is l prime?",
"\nTrue\nSuppose 4*v - 4*u - 20 = 0, 4*v + 5*u - 11 = -0*v. ",
"Let a be (101/v)/(3/12). ",
"Let f = a - 52. ",
"Is f composite?",
"\nTrue\nLet i(u) = -310*u + 9. ",
"Is i(-4) a composite number?",
"\nFalse\nLet x(d) = -d - 3*d + 17*d**2 + 12 - 9. ",
"Is x(4) prime?",
"\nFalse\nLet k(h) = h + 3. ",
"Let j be k(4). ",
"Suppose 2*n = 2*r + r + 5, -j = -3*n + 5*r. ",
"Is ((-10)/15)/(n/(-114)) a composite number?",
"\nFalse\nSuppose f + 4*x = -15, -3*f - 3*x = 13 + 32. ",
"Let s = f + 8. ",
"Let y(c) = -c**3 - 6*c**2. ",
"Is y(s) a composite number?",
"\nTrue\nLet f be 4/6*(10 - -8). ",
"Let c = 37 - f. Is c prime?",
"\nFalse\nLet r be 0/3 + 1 - -400. ",
"Let s = -274 + r. Is s a prime number?",
"\nTrue\nSuppose 0 = -4*o + 4*q + 144, 0*o - q = 3*o - 92. ",
"Suppose 5*r - 3*s = -76 - 84, o = -r - 2*s. ",
"Let x = r + 71. ",
"Is x a composite number?",
"\nTrue\nSuppose -5*x + 3*r + 16 = -28, 5*x + r = 32. ",
"Let p = x + 45. ",
"Suppose -n = 3*n - p. Is n a composite number?",
"\nFalse\nLet n be (-7)/(-21) + 22/6. ",
"Suppose 0*x - 12 = -n*x. ",
"Suppose -x*r - 15 + 120 = 0. ",
"Is r prime?",
"\nFalse\nSuppose 61 + 32 = 3*f. ",
"Is f a prime number?",
"\nTrue\nSuppose 0 = 3*d + 5*j - 30, -5*j + 19 = -5*d + 69. ",
"Is d a prime number?",
"\nFalse\nLet q(f) be the third derivative of f**6/120 + 3*f**5/20 + 3*f**4/8 - 2*f**3/3 + f**2. ",
"Suppose -14 = 2*x - 0. ",
"Is q(x) a composite number?",
"\nFalse\nSuppose 3*c - 3 = -w + 4*w, 13 = 5*w + c. Suppose 3*f = -w*f + 20. ",
"Suppose -5*q - f*x + 16 = -38, 82 = 5*q - 3*x. ",
"Is q prime?",
"\nFalse\nLet d = 64 - -3. ",
"Is d a prime number?",
"\nTrue\nLet k(u) = u**3 - 7*u**2 - 9*u + 8. ",
"Let m be k(8). ",
"Let j be (-5 - (m + 1)) + -2. ",
"Is j/12 - (-77)/3 composite?",
"\nTrue\nSuppose c + 5 = 4*c + 2*a, 3*c - 2*a - 13 = 0. ",
"Suppose -c*d + 537 = -318. ",
"Let s = -194 + d. Is s a prime number?",
"\nFalse\nSuppose 5*j - 1121 = -286. ",
"Is j prime?",
"\nTrue\nLet k = 317 + -160. ",
"Is k composite?",
"\nFalse\nIs 42/4*266/21 a prime number?",
"\nFalse\nSuppose p - x = 5*p - 4, -5*p + 5*x - 20 = 0. ",
"Suppose p*w - 9 = -3*w, 3*z - 666 = w. Is z a composite number?",
"\nFalse\nLet p(g) = g - 2. ",
"Suppose 2*h - 19 = -3*t + 1, h + 4 = 2*t. ",
"Let d be p(h). ",
"Is (-1)/((-477)/237 + d) composite?",
"\nFalse\nLet p = 92 + 35. ",
"Is p a prime number?",
"\nTrue\nLet x = 62 - 12. ",
"Suppose -2*p + 44 = -2*g, 0*g = 2*p - 4*g - x. Suppose 5*t - i = 107, 3*i + p = t + 2*i. ",
"Is t a composite number?",
"\nTrue\nLet y(i) = i**3 - i**2. ",
"Let s be y(2). ",
"Is ((-10)/s)/((-2)/12) prime?",
"\nFalse\nLet u be 4/10*(9 - -881). ",
"Suppose -u = 6*i - 10*i. ",
"Is i a composite number?",
"\nFalse\nLet b(l) = 305*l**2 + 4*l - 1. ",
"Is b(-2) prime?",
"\nFalse\nLet u = 7 - 8. ",
"Is (-1869)/7*u/3 a composite number?",
"\nFalse\nSuppose 4*b - 24 = -0*b. ",
"Suppose 5*s = -3*z + 323, s = 2*z - b*z + 51. ",
"Is s composite?",
"\nFalse\nIs 248 + 8 - (-4)/(-2) a composite number?",
"\nTrue\nLet z(i) = -4*i**3 + 5*i**2 - 6*i + 6. ",
"Let f(l) = 5*l**3 - 5*l**2 + 7*l - 7. ",
"Let h(j) = -3*f(j) - 4*z(j). ",
"Let s be h(4). ",
"Is (-369)/s - 10/(-35) composite?",
"\nFalse\nSuppose b + 4 = 5*b, 3*g - b = -1. ",
"Let q = 0 + g. Is q/6 + 1*3 prime?",
"\nTrue\nSuppose -v + 5014 = -z, -3*z - 10025 = -5*v + 3*v. ",
"Is v prime?",
"\nFalse\nLet a(l) = 116*l + 2. ",
"Is a(4) a composite number?",
"\nTrue\nIs 1 - 1 - 541/(-1) composite?",
"\nFalse\nIs 356/6*12/8 prime?",
"\nTrue\nLet q = 842 + -45. ",
"Is q prime?",
"\nTrue\nLet z(k) = 104*k**3 + 3*k**2 - k - 3. ",
"Is z(2) a prime number?",
"\nTrue\nSuppose 5*i - 3518 = 3*i. ",
"Is i prime?",
"\nTrue\nLet w be (-7)/14 - (-9)/(-2). ",
"Let k(f) = -4*f**3 - 4*f**2 - 2*f + 9. ",
"Is k(w) prime?",
"\nTrue\nLet o(h) = h**3 - 8*h**2 + 6*h + 7. ",
"Let f be o(7). ",
"Suppose 3*p - 4*z - 53 = f, 3*p - 3*z + 2*z - 56 = 0. ",
"Is p a prime number?",
"\nTrue\nLet f(h) = 2*h - 19*h**2 - 2*h + 2 + 73*h**2. ",
"Is f(-2) composite?",
"\nTrue\nLet h(i) = -12*i - 11. ",
"Let p(d) = d - 2. ",
"Let f be p(-7). ",
"Is h(f) composite?",
"\nFalse\nLet y(a) = -1 - 3 - 2*a + 7. ",
"Let i be y(4). ",
"Is i*(-1 + 18/(-10)) a composite number?",
"\nTr"
] | {
"pile_set_name": "DM Mathematics"
} | [
0,
0,
0,
0,
0,
0,
0.023255813953488372,
0,
0,
0,
0.022727272727272728,
0,
0,
0,
0,
0,
0,
0,
0.03571428571428571,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.041666666666666664,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.021739130434782608,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.022727272727272728,
0,
0,
0,
0,
0,
0,
0,
0,
0.03225806451612903,
0,
0.020833333333333332,
0,
0,
0,
0,
0.05555555555555555,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.04,
0.037037037037037035,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.0196078431372549,
0,
0,
0,
0,
0.034482758620689655,
0,
0,
0,
0,
0,
0,
0.043478260869565216,
0,
0.013513513513513514,
0.02127659574468085,
0,
0,
0,
0,
0.06666666666666667,
0,
0.03571428571428571,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.015873015873015872,
0,
0,
0,
0,
0,
0,
0,
0.011235955056179775,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.034482758620689655,
0,
0,
0.023809523809523808,
0,
0,
0,
0,
0.037037037037037035,
0,
0,
0,
0,
0,
0.043478260869565216,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.027777777777777776,
0,
0,
0
] | 0.002985 | 5 |
[
"[![",
"Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-simplelistview-brightgreen.svg?style=flat)](https://android-arsenal.com/details/1/1544) [![",
"API](https://img.shields.io/badge/API-10%2B-brightgreen.svg?style=flat)](https://android-arsenal.com/api?level=10) [![](",
"https://img.shields.io/badge/AndroidWeekly-%23144-blue.svg)](http://androidweekly.net/issues/issue-144)\n\nsimplelistview\n==============\n\nAndroid simple listview by using linearlayout. ",
"\n\n#### The problem\n- You need to add a few items and you don't want the scroll feature\n- You have a scrollview and you want to show a few items in the list as fully expanded\n\n###Gradle\n```groovy\ncompile 'com.orhanobut:simplelistview:1.3@aar'\n```\n\n###Usage\nEither define in xml or dynamically.",
"\nxml sample\n```xml\n<com.orhanobut.simplelistview.",
"SimpleListView\n android:id=\"@+id/list\" \n android:layout_width=\"match_parent\" \n android:layout_height=\"wrap_content\"/>\n```\n\n##### Set header\n```java\nlistView.setHeaderView(R.layout.header);\n```\nor \n```java\nlistView.setHeaderView(view);\n```\n\n##### Set footer\n```java\nlistView.setFooterView(R.layout.footer);\n```\nor\n```java\nlistView.setFooterView(view);\n```\n\n##### Set divider\n```java\nlistView.setDividerView(R.layout.divider);\n```\n\n##### Set item click Listener\n```java\nlistView.setOnItemClickListener(new SimpleListView.",
"OnItemClickListener() { \n @Override \n public void onItemClick(Object item, View view, int position) { \n //This special listener will return object for you \n } \n});\n```\n\n##### Set adapter\n```java\nlistView.setAdapter(adapter);\n```\n\n##### Refresh the listview \n```java\nadapter.notifyDataSetChanged();\n```\n\n#### You might also like\n- [Logger](https://github.com/orhanobut/logger) Simple,pretty and advanced logger\n- [Hawk](https://github.com/orhanobut/hawk) Secure simple key-value storage\n- [Wasp](https://github.com/orhanobut/wasp) All-in-one network solution\n- [Bee](https://github.com/orhanobut/bee) QA/Debug tool\n- [DialogPlus](https://github.com/orhanobut/dialogplus) Easy,simple dialog solution\n\n###License\n<pre>\nCopyright 2014 Orhan Obut\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.",
"\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.",
"\nSee the License for the specific language governing permissions and\nlimitations under the License.",
"\n</pre>\n"
] | {
"pile_set_name": "Github"
} | [
0,
0.018867924528301886,
0.016666666666666666,
0.01092896174863388,
0,
0,
0,
0.00709849157054126,
0.010169491525423728,
0.010101010101010102,
0
] | 0.006712 | 5 |
[
"Fourth reading\n\nFourth reading or Fourth Reading may refers to:\n\n Fourth reading, a suggested solution for the West Lothian question\n Fourth Reading, a Canadian news television series airing on TVOntario from 1992 to 2006"
] | {
"pile_set_name": "Wikipedia (en)"
} | [
0.004524886877828055
] | 0.004525 | 5 |
[
" IN THE UNITED STATES COURT OF APPEALS\n FOR THE FIFTH CIRCUIT\n\n\n\n No. ",
"99-10012\n Summary Calendar\n\n\n\nPATRICIA KAY DENNISON,\n\n Plaintiff-Appellant,\n\nversus\n\nA.T.& T. CORP., ",
"a New York Corporation,\n\n Defendant-Appellee.",
"\n\n\n - - - - - - - - - -\n Appeal from the United States District Court\n for the Northern District of Texas\n (3:97-CV-1565-R)\n - - - - - - - - - -\n\n July 14, 1999\n\nBefore JOLLY, SMITH, and WIENER, Circuit Judges.",
"\n\nPER CURIAM:*\n\n In this employment discrimination case, grounded in a claim of\n\nretaliatory discharge under the Texas Commission on Human Rights\n\nAct (“TCHRA”),1 Plaintiff-Appellant Patricia K. Dennison asked us\n\nto reverse the district court’s grant of a motion for summary\n\njudgment filed by defendant-appellee A.T.& T. We affirm.",
"\n\n Dennison filed several complaints with A.T.& T. about her\n\nimmediate supervisor’s attitude toward and treatment of black\n\n *\n Pursuant to 5TH CIR. ",
"R. 47.5, the court has determined\nthat this opinion should not be published and is not precedent\nexcept under the limited circumstances set forth in 5TH CIR.",
"\nR. 47.5.4.",
"\n 1\n Tex. ",
"Labor Code § 21-005 (West 1996).",
"\n\femployees. ",
" In a single month, Dennison herself was the subject of\n\nthree customer complaints about rudeness and other improper\n\ntreatment of customers. ",
" On the recommendations and decisions of\n\nthree supervisors superior to Dennison’s immediate supervisor,\n\nDennison was fired. ",
" Invoking diversity of citizenship\n\njurisdiction, Dennison filed the instant lawsuit in federal\n\ndistrict court, advancing a cause of action under the TCHRA and\n\nalleging retaliation for her racial complaints as the basis of her\n\ndischarge. ",
" A.T.& T. sought summary judgment, proffering the three\n\ncustomer complaints against Dennison as legitimate, non-\n\ndiscriminatory reasons for firing her. ",
" She responded by asserting\n\nthat A.T.& T.’s proffered reasons were pretextual.",
"\n\n The district court granted A.T. & T.’s summary judgment motion\n\nand dismissed Dennison’s action. ",
" Acknowledging that Dennison had\n\nestablished a prima facie case of retaliation, the court\n\nnevertheless concluded that Dennison had failed to bear her burden\n\nof establishing that A.T.& T.’s legitimate explanation for her\n\nfiring was pretextual and that she would not have been fired “but\n\nfor” retaliation.",
"\n\n We have carefully reviewed the facts and the law as presented\n\nin the appellate briefs of able counsel and in the summary judgment\n\nrecord on appeal, and we have read with equal care the Memorandum\n\nOpinion and Order filed by the district court on December 3, 1998.",
"\n\nIn our de novo review of the summary judgment in this case, we find\n\nthe lengthy, detailed, and complete opinion of the district court\n\nto be fully and correctly dispositive of the case and supportive of\n\n\n 2\n\fits grant of summary judgment in favor of A.T.& T. Convinced that\n\nwe could not improve on the writing of the district court, and that\n\nattempting to do so would merely waste judicial resources, we\n\nincorporate that opinion by reference herein and affirm the summary\n\njudgment of dismissal rendered by that court for the reasons so\n\nwell expressed and explicated in its opinion.",
"\n\nAFFIRMED.",
"\n\n\n\n\n 3\n\f"
] | {
"pile_set_name": "FreeLaw"
} | [
0.007575757575757576,
0.005780346820809248,
0.010752688172043012,
0.012048192771084338,
0.005865102639296188,
0.012121212121212121,
0.006369426751592357,
0.09090909090909091,
0,
0,
0,
0.005847953216374269,
0.014084507042253521,
0.0034482758620689655,
0.010752688172043012,
0.010752688172043012,
0.019230769230769232,
0.008547008547008548,
0.003676470588235294,
0.001579778830963665,
0,
0
] | 0.010425 | 5 |
[
"AFGHAN authorities say a battle with insurgents near Kabul's international airport has ended and all the attackers have been killed.",
"\n\nMinistry of Interior spokesman Sediq Sediqi says two civilians were wounded in today's attack that was apparently targeting NATO's airport headquarters. ",
"The attackers had rocket-propelled grenades, assault rifles and at least one large bomb.",
"\n\nDeputy Kabul police chief Dawood Amin says there were seven attackers. ",
"Two blew themselves up with suicide vests and five were shot and killed by police.",
"\n\nIt was unclear if the attack had damaged facilities inside the airport. ",
"The attackers had taken over a four- to five- story building under construction nearby.",
"\n\n\"We closed the Kabul airport runway so that civilian aircraft don't get hit by bullets. ",
"They are in a high building that they are shooting from,'' said Yaqub Rassouli, the civilian chief of Kabul airport.",
"\n\nTaliban spokesman Zabiullah Mujahid claimed responsibility for the attack saying the insurgents were targeting NATO.",
"\n\nIt was the latest in a series of attacks against the capital this year.",
"\n\nThe Kabul police said in an announcement that attackers- wearing suicide vests and armed with rocket-propelled grenades and machineguns- had occupied a tall building on the west side of the airport and were firing at the military facility. ",
"Reports from eyewitnesses on the number of militants involved varied.",
"\n\nSeveral blasts and bursts of small-arms fire erupted for about one hour shortly after dawn on Monday, with the US embassy sounding its \"duck and cover'' alarm.",
"\n\n\"There were personnel from the International Security Assistance Force (ISAF) with Afghan forces but Afghan forces led the operation,'' a coalition spokesman said.",
"\n\nLocal govt official: two attackers left, hiding in basement.",
"Security forces have taken adjacent building, trying to force in to finish it. — ",
"Jay Price (@JayinKabul) June 10, 2013\n\nThe United States Embassy in Kabul has warned US citizens to stay indoors. \"",
"Due to reports of explosion near airport, we advise US citizens to remain indoors, exercise caution, avoid airport.\"",
"\n\nA series of explosions were heard from the direction of the airport and residents heard what sounded like a dozen blasts coming from the direction of the military's facilities. ",
"They said the explosions sounded like rocket-propelled grenades along with automatic weapons fire. ",
"The explosions could be heard in downtown Kabul, a few kilometres away from the airport, located on the outskirts of the capital.",
"\n\nLoudspeaker on NATO base: \"All personnel, remain in the bunkers, remain calm and await further instruction.\" — ",
"Jay Price (@JayinKabul) June 10, 2013\n\nNATO loudspeaker @ nearby base, surreal through explosions and chattering MG's: \"... should resolve this in an hour or two, hunker down...\" — Jay Price (@JayinKabul) June 10, 2013\n\nThe attack seems centred on the United States Air Force facility and a nearby detention centre used to hold drug traffickers.",
"\n\nTOLO news reports the attack is on an area that houses an ISAF/NATO command centre.",
"\n\nSeveral rockets have also been fired at the US facility.",
"\n\nThe US-led NATO coalition's Joint Command headquarters at the airport runs the day-to-day operations of the nearly 12-year-old war against insurgents. ",
"The airport's military side is also used for NATO transport and other aircraft.",
"\n\nPresident Hamid Karzai was on a visit to Qatar but it was unconfirmed whether he was scheduled to return later today.",
"\n\nKabul last came under attack on May 24, when Taliban militants launched a co-ordinated suicide and gun attack on a compound of the International Organisation for Migration (IOM).",
"\n\nOne policeman, two civilians and all four militants died in that attack, with the government lauding the response of the Kabul security forces for preventing further casualties.",
"\n\nThe effectiveness of Afghan security forces is crucial to the government's ability to defeat the Taliban insurgency as NATO-led troops withdraw by the end of 2014.",
"\n\nThe police, army and special forces are being trained up by the international coalition, but there are widespread fears that they will not be able to impose security after 12 years of war.",
"\n\nOn Saturday, an Afghan soldier shot dead two US soldiers and one US civilian, the latest \"insider attack'' to shake efforts by the two armies to work together to defeat the Taliban insurgency.",
"\n\nThe killings in the eastern province of Paktika came on the same day that one Italian soldier died when a grenade was thrown into an armoured vehicle in Farah province, in the far west of the country.",
"\n\n.",
"\n\nAccording to an NDS officer the attack is on international force. ",
"Gunshots ongoing. — ",
"Ahmad Mukhtar (@AhMukhtar) June 10, 2013\n\nBREAKING: @sharifsahak via head of Kabul Int'l Airport: Suicide bombers have entered US Air Force area. — ",
"Micah Grimes (@MicahGrimes) June 10, 2013\n\nNews of the attack came just hours after President Hamid Karzai questioned if the US-led war on terror was to blame for radicalising Muslims.",
"\n\nThe headquarters for Australia's operations in Afghanistan - Headquarters Joint Task Force 633 - is situated in Kabul, along with elements of the Special Operations Task Group.",
"\n\n###"
] | {
"pile_set_name": "OpenWebText2"
} | [
0,
0.012903225806451613,
0,
0.0136986301369863,
0,
0,
0,
0,
0.008620689655172414,
0.025423728813559324,
0,
0,
0,
0,
0.006060606060606061,
0,
0,
0.017391304347826087,
0,
0,
0,
0,
0.008849557522123894,
0.017391304347826087,
0.011764705882352941,
0,
0.013071895424836602,
0.012658227848101266,
0.008403361344537815,
0.011111111111111112,
0,
0.012121212121212121,
0,
0.005154639175257732,
0,
0,
0,
0,
0.02702702702702703,
0.010869565217391304,
0.0056179775280898875,
0
] | 0.005432 | 5 |
[
"Q:\n\nTwo variables seem to point to the same list, even though they should be unique\n\nI was using lists in a program, but I don't understand this following behavior. ",
"I have begun to understand mutability and how it affects variable assignment, but I do not see the problem here:\nclass Test:\n def __init__(self, list_n):\n list_a = list_n[:]\n list_b = list_n[:]\n print(list_a is list_b) # Prints False\n print(list_a is list_n) # Prints False\n print(list_b is list_n) # Prints False\n\n list_a[0][0] = 1\n print(list_a) # Both of these print [[1,0,0][0,0,0][0,0,0]]\n print(list_b)\n\ndef main():\n list_n = [[0,0,0],[0,0,0],[0,0,0]]\n test = Test(list_n) \n\nif __name__ == '__main__': main()\n\nBoth list_a and list_b seem to still point to the same list, even though I thought I took the necessary measures to prevent that from happening. ",
" \n\nA:\n\nWhy didn't using slice notation to copy my list work?",
"\nThe reason your example did not work is because you only made a shallow copy of list_n. ",
"A shallow copy of a list only copies the \"top-level\" list. ",
"Shallow copying a list does not copy sublists. ",
"Shallow copies of lists are made by calling copy() on the list(list.copy()) or using slice notation(list[:]).",
"\nAt the C level, when a shallow copy is done on elements which are lists, pointers to the lists - called PyObjects - are being copied from one list to another. ",
"The actual pointer for each sublist however, is not copied, and thus list_a and list_b both contain pointers to the exact same sublists.",
"\nTo put it plainly, you never made a copy of each sublist in list_n, and thus list_a and list_b still both contain pointers to the same sublists. ",
"This can be fixed by creating a \"deepcopy\" of list_n - a copy of each sublist in the original list regardless of the nesting level - using copy.deepcopy():\n>>> from copy import deepcopy\n>>> \n>>> list_n = [[0,0,0],[0,0,0],[0,0,0]]\n>>> list_a = deepcopy(list_n)\n>>> list_b = deepcopy(list_n)\n>>> \n>>> list_a[0][0] = 1\n>>> list_a\n[[1, 0, 0], [0, 0, 0], [0, 0, 0]]\n>>> list_b\n[[0, 0, 0], [0, 0, 0], [0, 0, 0]]\n>>> \n\nWhen should I use deepcopy()?",
"\nOne of the biggest drawbacks to using deepcopy() is that it takes a substantial amount of time to \"deepcopy\" shallowly nested lists.",
"\nIf your list is only shallowly nested(two to three levels deep), one should simply use a nested list comprehension instead of deepcopy(). ",
"Using this method would be substantially more efficient(thanks to as @jonrsharpe for pointing this out):\n>>> list_n = [[0,0,0],[0,0,0],[0,0,0]]\n>>> list_a = [x[:] for x in list_n]\n>>> list_b = [x[:] for x in list_n]\n\nThe efficency gained by using this method can be observed using the timeit module in the standard library:\n>>> import timeit\n>>> \n>>> setup=\"from copy import deepcopy; list_n = [[0,0,0],[0,0,0],[0,0,0]]\"\n>>> timeit.timeit(setup=setup, stmt=\"deepcopy(list_n)\")\n24.223977088928223\n>>> timeit.timeit(setup=setup, stmt=\"[x[:] for x in list_n]\")\n1.2281990051269531\n>>> \n\nHowever, if your list is any deeper, one should opt to use deepcopy() instead, even if it seems somewhat bulky. ",
"One usually never needs to sacrifice readability over efficiency. ",
"Furthermore, as the list comprehension becomes increasingly complex, the efficiency over deepcopy() begins to grow smaller.",
"\nWhy is deepcopy() so slow?",
"\nThe reason deepcopy() is so much slower than most other methods(thanks to @Felix for asking), is because deepcopy() does much more work than a simple list comprehension. ",
"unlike the list comprehension, deecopy() must work on arbitrarily nested list, possible with many levels of nesting. ",
"Thus, it is extreme overkill to use it on shallowly nested list, and will result in much slower execution time. ",
"\nTo get a better idea of what deepcopy() does behind the scenes you can take a look at the source code for the function, as it is open source and available to the public for viewing.",
"\n\n"
] | {
"pile_set_name": "StackExchange"
} | [
0,
0.0013679890560875513,
0,
0.011235955056179775,
0,
0,
0,
0,
0,
0.00684931506849315,
0,
0,
0,
0.0028694404591104736,
0,
0,
0,
0.011695906432748537,
0,
0,
0,
0
] | 0.001546 | 5 |
[
"\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n \n \n \n \n COURT\r\nOF APPEALS\n SECOND\r\nDISTRICT OF TEXAS\n FORT\r\nWORTH\n \n \n NO.",
"\r\n2-07-294-CR\n \n \nROBERT VESHONE MONROE APPELLANT\n \n V.\n \nTHE STATE OF TEXAS STATE\n \n ------------\n \n FROM THE 30TH\r\nDISTRICT COURT OF WICHITA COUNTY\n \n ------------\n \n MEMORANDUM OPINION[1]\n \n ------------\nI. \r\nIntroduction\n\n\n\n\nIn three issues, Appellant Robert Veshone Monroe\r\ncontends that (1) the State did not present legally sufficient evidence to\r\nsustain an affirmative deadly weapon finding, (2) an egregious error occurred\r\nwhen the jury was allowed to make an affirmative deadly weapon finding, and (3)\r\nthe State should have been judicially estopped from seeking an affirmative\r\ndeadly weapon finding.",
" We affirm.",
"\nII.",
" \r\nFactual and Procedural Background\nThe original indictment charged\r\nMonroe with aggravated robbery, alleging that during the incident he used or\r\nexhibited a Adeadly weapon, to wit: a\r\nfirearm.@ At a pretrial hearing, the parties reached an\r\nagreement regarding the wording of the indictment.",
" The exchange between Mr. Gillespie, the\r\nprosecutor, and Mr. Valverde, Monroe=s\r\ncounsel, was as follows:\n[Mr. Gillespie]: . . . ",
"It\r\nwill be my intention in just a moment to abandon the language at the very end\r\nof the indictment, Aand the Defendant did\r\nthen and there use and exhibit a deadly weapon, to wit, a firearm.@\nBut the agreement that I have with the defense is -- and the Defendant\r\nis that by abandoning that it becomes a robbery.",
" The Defendant is singly enhancable so he=d be looking at a first\r\ndegree range of punishment.",
" And I just\r\n-- the agreement with the defense is that if I abandon that, they=re going to put on the\r\nrecord that they=ve had sufficient notice\r\nthat I intend to prove that the BB gun used in the case is a deadly weapon\r\nand seek an affirmative finding from the jury, and that they=re not going to object\r\nthat they didn=t have sufficient notice\r\nsince it=s a BB gun and not a\r\nfirearm. ",
" And that=s what the evidence shows.",
"\n \n. . . . ",
"\n \n[Mr. Valverde]: . . . ",
"I=ve had the opportunity to\r\nspeak with Mr. Monroe regarding his rights anytime the district attorney wants\r\nto amend an indictment.",
" And he indicates\r\nto me he clearly understood that.",
" And he=s in agreement that the\r\nState can amend their indictment, and we waive our ten days= notice and proceed today\r\nwith the\r\namended indictment.",
"\n\n\n\n\n. . . .",
"\n \n[Mr. Gillespie]: And just\r\nso we=re clear, I mean, this is\r\nan abandonment, it=s not an amendment.",
"\n \n. . . . ",
"\n \n[Mr. Gillespie]: But what\r\nour agreement also is that they=re not going to object to improper notice on the\r\ndeadly weapon finding because it=s a BB gun, it=s not a firearm.",
"\n \n[The Court]: Is that also\r\ncorrect . . . ?",
"\n \n. . . . ",
"\n \n[Mr. Valverde]: Just for\r\nclarification, Your Honor, we are agreeing that we=re waiving any notice on\r\nthat, but we=re not stipulating to\r\nthat element.",
" [Emphasis supplied.]",
"\n \nSubsequently, the parties reduced their agreement to writing.",
" The agreement=s first\r\ntwo paragraphs identify the parties and their consent while the third and\r\nfourth paragraphs state as follows:\n3.",
" The parties agree that the prosecuting\r\nattorney . . . ",
"will abandon the phrase Aand the\r\ndefendant did then and there use and exhibit a deadly weapon, to-wit: a firearm@ and\r\nproceed on the lesser included second degree felony of robbery with a single\r\nenhancement that, if proven, would make the range of punishment that for a\r\nfirst degree felony. ",
"\n\n\n\n\n4.",
" In\r\naddition, the prosecuting attorney has notified the defense of his intent to\r\nprove that the BB gun found on the defendant was a deadly weapon.",
" The defense attorney and defendant agree that\r\nthey have been given sufficient notice of the State=s intent to prove that\r\nthe BB gun was a deadly weapon and to seek an affirmative deadly weapon\r\nfinding from the jury.",
" The defense\r\nand defendant agree not to object to the deadly weapon submission based on lack\r\nof notice.",
" [Emphasis supplied.]",
"\n \nThe trial court approved the agreement and accordingly physically\r\naltered the indictment to strike out the deadly weapon language, so that it\r\nread, in part, thusly:\nRobert Veshone Monroe . .",
"\r\n. ",
"did then and there unlawfully, intentionally, or knowingly, while in the\r\ncourse of committing theft of property of cash and drugs and with intent to\r\nobtain and maintain control of said property, threaten and place Nalini Patel\r\nin fear of imminent bodily injury and death, and the defendant did then and\r\nthere use and exhibit a deadly weapon, to wit: a firearm. ",
"\n \nThe charge to the jury, which Monroe objects to\r\nin this regard, allowed the jury to convict Monroe of robbery, but it also\r\ninstructed the jury that A[i]f you find [Monroe] . . .",
"\r\nguilty of robbery, then you must determine whether [Monroe] used a deadly\r\nweapon in the commission of the offense.@ The\r\njury convicted Monroe of robbery and determined that he used or exhibited a\r\ndeadly weapon during the commission of the offense.",
" Monroe concedes that, if relevant, the\r\nevidence presented by the State on the deadly weapon issue would have been\r\nsufficient to sustain the finding.",
"\nThe trial court assessed Monroe=s\r\npunishment at thirty-five years=\r\nimprisonment in the TDCJ-ID and sentenced him accordingly. ",
" This appeal followed.",
"\n \n\n\n\n\nIII.",
" \r\nAbandonment \nIn his first issue, Monroe argues that by\r\nabandoning the deadly weapon portion of the indictment, the State waived its\r\nright to seek a deadly weapon finding, thus, the State did not present legally sufficient\r\nevidence to sustain the affirmative deadly weapon finding because all the\r\nevidence it presented was no longer not relevant.",
" \n\n\n\n\nApparently the State was concerned that the Afirearm@\r\nreferred to in the indictment was in actuality a BB gun, which can be a deadly\r\nweapon, but which may or may not be a Afirearm.@ See Adame v. State, 69 S.W.3d 581, 582\r\n(Tex. ",
"Crim. ",
"App. ",
"2002); Mosley v. State, 545 S.W.2d 144, 145 (Tex. ",
"Crim.",
"\r\nApp. ",
"1976); Brown v. State, No. ",
"11-97-00033-CR, 1999 WL 33743888, *2\r\n(Tex. ",
"App.",
"CEastland Jan. 21, 1999, no pet.)",
"\r\n(not designated for publication).",
" The\r\nState was apparently further concerned that by only dropping the phrase Aa\r\nfirearm@ and\r\nleaving the language regarding a deadly weapon in the indictment, that the\r\nrestrictive provisions of article 28.10 of the Texas Code of Criminal Procedure\r\nwould have been implicated, necessitating a postponement of the trial.",
" Tex.",
"\r\nCode Crim. ",
"Proc. ",
"Ann. ",
"art. ",
"28.10(a) (Vernon Supp. ",
"2008).",
" Much ink is spilled by the State and Monroe\r\nover the accuracy of the State=s\r\nconcern.",
" However, this accuracy, or\r\ninaccuracy, is of no moment because we are concerned with what occurred, not\r\nwhy it occurred.",
" The State argues, and\r\nMonroe agrees, that a deadly weapon allegation need not be contained in the\r\nindictment in order for the jury to make a deadly weapon finding.",
" See Brooks v. State, 847 S.W.2d 247, 248\r\n(Tex. ",
"Crim. ",
"App. ",
"1993).",
" Further, Monroe\r\ndoes not contest the obviousCthat he\r\nwas aware that the State would seek a deadly weapon finding from the jury.",
" He simply argues that the State waived its\r\nright to this finding regardless of the fact that not only did their agreement\r\nallow for the finding, but there was no objection to the charge to the jury in\r\nthis regard.",
" This is buyer=s\r\nremorse.",
" If Monroe wanted to object to\r\nthe jury being allowed to make a finding, which the law did not require to be\r\ncontained in the indictment, then he should not have agreed to allow the jury\r\nto make the finding and should have objected to the charge allowing it to do\r\nso.",
"\n\n\n\n\nMonroe argues that contract principles are\r\napplicable in this situation and apply in general in criminal cases.",
" See Ex parte Moussazadeh, 64\r\nS.W.3d 404, 411 (Tex. ",
"Crim. ",
"App. ",
"2001), cert. ",
"denied, 537 U.S. 813\r\n(2002).",
" He argues that the agreement to\r\nabandon the deadly weapon finding in paragraph three of the parties=\r\nagreement is not reconcilable with the subsequently-articulated intention to\r\nseek a deadly weapon finding from the jury.",
" \r\nHe then argues that under this situation Athe\r\nprovision which appears first controls.@ Silver Spur Addition Homeowners v.\r\nClarksville Seniors Apartments, 848 S.W.2d 772, 775 (Tex. ",
"App.",
"CTexarkana\r\n1993, writ denied).",
" This argument\r\nhowever is based on a false premise.",
" It\r\nis fundamental contract law in Texas that no single contract provision taken\r\nalone will be given controlling effect, but rather, all provisions must be\r\nconsidered in reference to the whole instrument.",
" Seagull Energy E & P, Inc. v. Eland\r\nEnergy, Inc., 207 S.W.3d 342, 345 (Tex. ",
"2006).",
" When interpretating contractual language, we\r\nexamine the writing as a whole to harmonize and give effect to all provisions\r\nso that none will be rendered without meaning.",
" Valence Operating Co. v. Dorsett, 164\r\nS.W.3d 656, 662 (Tex. ",
"2005).",
" The intent\r\nof the parties in drafting contractual language will be determined from a\r\nsingle paragraph only if it appears that the paragraph alone touches on one\r\nmatter and other provisions touch on other matters.",
" Monesson v. Champion Int=l Corp.,\r\nDell-Mar Div., ",
"546 S.W.2d 631, 636 (Tex. ",
"Civ. ",
"App.",
"CTyler\r\n1976, writ ref=d n.r.e.).",
"\nThat being said, we hold that because the law\r\nallows a deadly weapon finding by the jury even when a deadly weapon allegation\r\nis not contained in the indictment, the intent of the parties as manifested in\r\nparagraphs three and four is that the abandonment of the Ause and\r\nexhibit a deadly weapon, to wit: a firearm language@ is not\r\ninconsistent with the agreed-to notice that the State would seek a deadly\r\nweapon finding from the jury.",
"\n\n\n\n\nBecause of our holding, as to the parties= intent,\r\nwe further hold that the evidence presented to the jury regarding the use of\r\nthe BB gun as a deadly weapon was, in fact, relevant and sufficient by Monroe=s own\r\nadmission.",
" Monroe=s first\r\nissue is overruled.",
"\nIV.",
" \r\nEgregious Harm\nIn his second issue, Monroe argues that the trial\r\ncourt=s\r\nallowing the jury to make an affirmative deadly weapon finding requires\r\nreversal because although he did not object to the jury charge, the trial court=s error\r\nin allowing the jury to make this determination was egregious error.",
" This is so, he asserts, because it deprived\r\nhim of a valuable right, Athat of being free of a deadly\r\nweapon finding.@ \nHowever, he did not have a right to be Afree of\r\na deadly weapon finding.@ We have already held that a\r\ndeadly weapon finding is allowed to be made by the jury even when a deadly\r\nweapon allegation is not contained in the indictment and that he had\r\ncontractually agreed to this jury determination.",
" We necessary reject Monroe=s\r\nargument and overrule his second issue.",
"\nV. \r\nJudicial Estoppel\n\n\n\n\nIn his third issue, Monroe argues that the State\r\nshould have been judicially estopped from seeking an affirmative deadly weapon\r\nfinding because, he again argues, abandoning the deadly weapon portion of the\r\nindictment, pursuant to paragraph three of the agreement, is inconsistent with\r\nallowing the jury to make a deadly weapon finding as provided in paragraph four\r\nof the agreement. ",
"\nYet again, we have held for reasons previously\r\narticulated that there is no inconsistency present and, as justice and sound\r\npublic policy are the basis for judicial estoppel, Long v. Knox, 291\r\nS.W.2d 292, 295 (Tex. ",
"1956), which precludes a party from taking inconsistent\r\npositions in judicial proceedings, judicial estoppel is inapplicable and Monroe=s third\r\nissue is overruled.",
"\nVI.",
" \r\nConclusion\nHaving overruled Monroe=s\r\nissues, we affirm the judgment of the trial court.",
"\n \nBOB\r\nMCCOY\nJUSTICE\n \nPANEL B: DAUPHINOT,\r\nHOLMAN, and MCCOY, JJ.",
"\n \nDO NOT PUBLISH\nTex.",
"\r\nR. App. ",
"P. 47.2(b)\n \nDELIVERED: April 3, 2008\n \n \n\n\n\n\n[1]See Tex. ",
"R. App. ",
"P. 47.4.",
"\n\n\n"
] | {
"pile_set_name": "FreeLaw"
} | [
0.012,
0.005252100840336135,
0,
0,
0.010169491525423728,
0.022727272727272728,
0.0031847133757961785,
0,
0,
0,
0,
0.04,
0.007575757575757576,
0,
0,
0,
0.009900990099009901,
0,
0.005681818181818182,
0,
0,
0.012903225806451613,
0,
0,
0,
0,
0,
0,
0,
0.004545454545454545,
0,
0,
0.005128205128205128,
0,
0.0027397260273972603,
0.01098901098901099,
0.003968253968253968,
0.006578947368421052,
0.007751937984496124,
0,
0,
0.008522727272727272,
0.008403361344537815,
0.16666666666666666,
0,
0.02,
0.2,
0.14285714285714285,
0.037037037037037035,
0.022727272727272728,
0,
0,
0,
0.006172839506172839,
0,
0.07692307692307693,
0,
0,
0,
0.043478260869565216,
0,
0.02247191011235955,
0,
0.011976047904191617,
0.04,
0.16666666666666666,
0,
0,
0.015267175572519083,
0.0045871559633027525,
0,
0.003676470588235294,
0.008547008547008548,
0,
0.16666666666666666,
0,
0,
0,
0,
0.005376344086021506,
0,
0.03225806451612903,
0,
0,
0.02531645569620253,
0,
0,
0.031746031746031744,
0,
0,
0.057692307692307696,
0,
0,
0,
0.030303030303030304,
0.0045351473922902496,
0.008695652173913044,
0,
0,
0.003246753246753247,
0,
0.014084507042253521,
0.004807692307692308,
0.0045662100456621,
0.006060606060606061,
0,
0.01098901098901099,
0.057971014492753624,
0,
0.1,
0.017241379310344827,
0.125,
0,
0
] | 0.016523 | 5 |
[
" \nThank you for downloading this Simon & Schuster ebook.",
"\n\n* * *\n\nGet a FREE ebook when you join our mailing list. ",
"Plus, get updates on new releases, deals, recommended reads, and more from Simon & Schuster. ",
"Click below to sign up and see terms and conditions.",
"\n\nCLICK HERE TO SIGN UP\n\nAlready a subscriber? ",
"Provide your email again so we can register this ebook and send you more of what you like to read. ",
"You will continue to receive exclusive offers in your inbox.",
"\n\nFor the Soldiers, Sailors, Airmen, and Marines who didn't make it back, and for our children, who are not yet old enough to read this.",
"\nThere's a Man Goin' Round Taking Names\n\n—AUTHOR UNKNOWN\n\n## PREFACE\n\nTHIS IS A NOVEL of revenge.",
"\n\nThe Terminal List explores what could happen when an apex predator, a warrior at the top of his game, is thrown into a situation from which there is no return. ",
"It is about what could happen when societal norms, laws, regulations, morals, and ethics give way for a man of extraordinary capability, hardened by war, and set on a course of reckoning; a man who is, for all practical purposes, already dead.",
"\n\nThis work would not exist without the efforts of my dear friend and writing partner, Keith Wood. ",
"Though his name does not appear on the book jacket, this book is as much his as it is mine. ",
"On a handshake at SHOT Show in Vegas, we decided to fulfill our shared lifelong dream of writing a novel. ",
"This is the result.",
"\n\nDue to the sensitive nature of the security clearances I held while in the military as a Navy SEAL, I am required to submit any written material intended for public release, including works of fiction, to the Department of Defense. ",
"In order to fulfill that obligation lawfully, this manuscript was submitted to the DOD Office of Prepublication and Security Review and was \"cleared as amended\" by that office. ",
"Throughout the writing process, I took great pains to ensure no tactics, techniques, or procedures were compromised. ",
"The last thing I want to do is give the enemy something that could possibly give them an advantage on the battlefield. ",
"The government review process exists for a reason, and having had the honor of defending this great nation at war, I am still bound by my former clearances to have my writing reviewed. ",
"The government's redactions are included as amended and are blacked out in the novel.",
"\n\nWhile this is a work of fiction, each scene draws from emotions that I experienced during real world events over twenty years in the military. ",
"Those emotions, coupled with time in combat, add an authenticity to the novel that we hope makes for a thrilling reading experience.",
"\n\nThough my time as a SEAL certainly influenced our choice of a protagonist, I am not James Reece. ",
"He is more skilled, witty, and intelligent than I could ever hope to be. ",
"Though I am not James Reece, I understand him. ",
"He has the experience, training, skill, and drive to administer justice on his terms.",
"\n\nThis is also a book about control. ",
"The consolidation of power at the federal level in the guise of public safety is a national trend and should be guarded against at all costs. ",
"This erosion of rights, however incremental, is the slow death of freedom. ",
"We have reached a point where the power of the federal government is such that they can essentially target anyone of their choosing. ",
"Recent allegations that government agencies may have targeted political opponents should alarm all Americans, regardless of party affiliation. ",
"Revisionist views of the Constitution by opportunistic politicians and unelected judges with agendas that reinterpret the Bill of Rights to take power away from the people and consolidate it at the federal level threaten the core principles of the Republic. ",
"As a free people, keeping federal power in check is something that should be of concern to us all. ",
"The fundamental value of freedom is what sets us apart from the rest of the world. ",
"We are citizens, not subjects, and we must stay ever vigilant that we remain so.",
"\n\nJack Carr\n\nAugust 6, 2017\n\nPark City, Utah\n\n## PROLOGUE\n\nIT DIDN'T TAKE A tactical genius to pick the spot. ",
"Humans are creatures of habit and some were more religious about it than others. ",
"Accountants, it seemed, were practically monastic in their routines. ",
"From June 1 to November 1 of every year, Marcus Boykin lived in his mountain house in Star Valley Ranch, Wyoming. ",
"Star Valley sounded far more appealing to the east and west coast real estate buyers than its previous name of Starvation Valley. ",
"It was an enclave of wealthy outsiders in otherwise rural western Wyoming, stuck into the mountainside like a well-manicured finger of civilization, full of multimillion-dollar homes in a part of the world otherwise populated by ranchers and cowboys.",
"\n\nEvery Monday, Wednesday, and Friday, Boykin rose early and climbed into his silver Mercedes G550 SUV to drive the fifty miles to the relative metropolis of Jackson. ",
"With a summertime population of bankers and hedge fund managers that would rival the Hamptons, it was the only place within hours where he could eat a gourmet meal with an eight-hundred-dollar bottle of wine. ",
"In Jackson he could sip lattes and read the Wall Street Journal in the company of fellow seasonal residents from New York, Greenwich, Boston, and Los Angeles. ",
"Three days a week he could connect with real people in person instead of waiting impatiently for his friends to comment on his Facebook posts. ",
"Dinners at Rendezvous Bistro were far tastier and the conversation more stimulating than his usual meal alone on the deck, no matter how spectacular the view.",
"\n\nU.S. 89 runs north and south through the steep valley that straddles the line between Wyoming and Idaho. ",
"Irrigated hayfields near the roadway lie in the shadows of the rugged ten-thousand-foot peaks to the east and more gentle hills to the west. ",
"Just north of the tiny town of Alpine, the route to Jackson turns east along the Snake River and winds into the mountains of the Bridger-Teton National Forest. ",
"At this point in the journey, the jagged ridgelines of the Tetons run nearly to the roadside, like towering cruise ships moored alongside an asphalt pier. ",
"Ten feet from the well-maintained road was terrain as rugged as nearly anywhere in the Lower 48, the home of trophy mule deer and giant elk as well as plenty of black bears and the occasional moose. ",
"Having never touched a gun or hunted in his life, it would never occur to Boykin that September 15, the opening day of deer season in Wyoming's Region G, fell on a Monday that year.",
"\n\n• • •\n\nJames Reece had hiked in the previous afternoon from a trailhead on the opposite side of the mountain from the U.S. highway. ",
"The trail began near the road as the crow flies, but was many miles away by vehicle. ",
"The vistas of the highway were as close to the remote backcountry as most seasonal residents like Boykin ventured. ",
"Though it was only a few hours' hike from his truck, Reece may as well have walked in from a different world. ",
"He wore a light pack with a nylon rifle scabbard strapped to the side, high-performance digital camo hunting clothing from Sitka, and the Salomon hiking boots he had worn on countless operations around the world. ",
"Walking through the Wyoming backcountry in the traditional sniper's woolly ghille suit and heavyweight rifle, he would stick out like a man wandering the mountains in a tuxedo, but clad in the garb of a hunter, he was as invisible as a guy in a blue blazer at the airport. ",
"The anonymous tip that he'd called in about the moose poachers just south of Jackson would probably occupy every game department cop in the region, but in the unlikely event that he ran into someone of authority, the hunting license and deer tag in his pocket would verify him as just another hunter out looking for mulies on the busiest day of the year.",
"\n\nHe could have hiked in at night with a headlamp or brought along his night vision, but he wanted to get into his spot before dark. ",
"No sense twisting an ankle or worse in this rough country, and he was anxious to get started. ",
"He had studied the topography on maps and satellite imagery hundreds of times, but he'd still hiked the route two days earlier to ensure that it looked the same on the ground as it did from the air.",
"\n\nThe country was steep and high. ",
"It didn't matter how well you were conditioned at sea level, eight thousand feet was still eight thousand feet. ",
"He stopped to catch his breath and guzzle water from the hose clipped to his shoulder strap. ",
"His legs burned and his lungs were starved for oxygen. ",
"His base layer was covered in sweat despite temperatures in the fifties, so he zipped his top down to let some of his body heat escape. ",
"He wasn't in a rush, but he moved with purpose. ",
"It certainly wasn't the first time he had pushed himself up a mountain to a target.",
"\n\nHis perch was just as he'd left it, a small U-shaped slot eroded into the mountainside that could only be accessed from the front. ",
"There was very little chance of a hunter or game warden wandering up on his six while he was in position, and he'd have a clear view of anyone approaching from the front long before they reached his hide site. ",
"The spot overlooked a saddle of highway that ran between two steep hills. ",
"His position was near the top of the second hill if you were driving toward Jackson.",
"\n\nLike a cave without a roof, the spot would protect him from the prying eyes of hunters glassing for deer the afternoon before the season opened and would keep him out of the wind as the temperature dropped into the low thirties overnight. ",
"He pulled his rifle out of the scabbard and laid his pack down just short of the mouth of the slot so his muzzle would not be visible from below. ",
"The rifle was an Echols Legend, built by a master in Utah whose handmade rifles sold for several months of his Navy salary. ",
"It was a gift from his father after his first post-9/11 deployment and was one of his most prized possessions. ",
"He had planned to hunt more after he retired and entered the private sector. ",
"The rifle was chambered in .300 Winchester Magnum and, despite weighing far less than the sniper rifles he'd used overseas, was even more accurate. ",
"Instead of a traditional hunting scope, he had installed a Nightforce NXS 2.5-10x32mm, the same glass he used at work. ",
"The pack supported the rifle's forend and a small beanbag steadied the butt. ",
"Lying prone, with the front and back of the rifle supported, he was able to hold the rifle as steady as any bench rest. ",
"As cars and trucks crested the hill to his west, he would dry-fire at the driver's position of the windshield to get the timing right. ",
"The vacationers and local residents traveling this mountain road in the fall afternoon had no idea that they were in the crosshairs of one of the nation's deadliest warriors.",
"\n\nSatisfied that his position was solid and that he'd have the right angle on the target, he retreated to the back of his mountain cubby and fired up his backpacking stove to heat water for his freeze-dried dinner. ",
"When the sun dropped below the skyline and the temperature fell by double digits, he crawled into his sleeping bag. ",
"He thought about his little girl, all blond curls, tears welling up in her brave blue eyes as she saw daddy off on his last deployment. ",
"Six months away and he would be home for good, promise. ",
"He could still see her face, pressed up against the airport glass for one last look as he boarded the plane. ",
"The hardest parts of a deployment were the first couple of weeks when you'd just left home, and the last couple when you started anticipating your return. ",
"That it was his last trip overseas made the light at the end of the tunnel brighter. ",
"Finally the end of the train/deploy/train treadmill he and his SEAL brothers had been on for well over a decade.",
"\n\nCurled up in his sleeping bag underneath a light show of stars that a city dweller couldn't comprehend, he slept sounder than he had in weeks. ",
"No waking up to realize that the nightmare was real. ",
"No reaching across the bed for a wife who wasn't there. ",
"No hearing the soft cries of a daughter who would never again crawl into his bed for protection from the boogeyman.",
"\n\nHe was already awake, staring at Orion, when his watch chirped at 0500. ",
"A swig from his water bottle and an energy bar would be his breakfast. ",
"He got into position behind his rifle and waited patiently for the sun to rise.",
"\n\n• • •\n\nMarcus Boykin was an early riser, as was nearly everyone in the financial sector. ",
"You were either up and at the table in his line of work, or you were asleep and on the menu. ",
"He looked at the weather forecast on his iPhone before slipping on a pair of designer jeans and some tan Italian loafers. ",
"He wore a Patagonia fleece over his pink Lacoste polo and put on a Yankees cap to hide his bald spot from the twenty-something waitress he was currently trying to bed. ",
"To him, she wasn't Sarah with the degree in environmental engineering working to save up for her master's, she was \"the waitress.\" ",
"He'd been unsuccessful in getting into her pants so far, but she was broke and he was rich. ",
"One night, sooner or later, she'd get drunk and slip up, and he'd be there to take advantage. ",
"Living this far out was part of the challenge, though he knew that to better his chances he might have to get a condo in town at some point to help seal the deal. ",
"He grabbed his keys from the marble kitchen counter and pressed the remote start. ",
"It was freezing, and Boykin wanted the SUV nice and toasty with the heater running and the seats warmed by the time he made his to-go coffee and headed out. ",
"He opened his giant oak front door and took out his phone to tweet a photo of the orange glow of sunrise making its way over the mountain before he lost Wi-Fi coverage; the cell service was crap until you got to Jackson. ",
"He didn't really care about the view. ",
"In his mind the sun would do the same thing tomorrow, but it would make his friends on both coasts jealous, a thought that he relished. ",
"As he climbed into the SUV and headed down the mountain road to U.S. 89, his mind turned to thoughts of what he'd say to the waitress when he saw her.",
"\n\n• • •\n\nCombat is sensory overload, total chaos, especially if you're in command. ",
"The noise is deafening, both from the incoming and outgoing fire, while the overpressure of muzzle blasts and explosions rock your body down to its DNA. ",
"Men are yelling, not out of fear or panic, but to communicate above the roar. ",
"Tracers come in, rockets fly past, dust from explosions and bullet strikes shroud your immediate world in a tactile cloud of dust. ",
"Radio traffic in your ears adds to the storm and demands a conscious response, which means one's actions in the moment must be subconscious. ",
"Identifying targets, firing weapons, changing magazines: all must happen automatically, as seamless as steering, shifting gears, and working the gas pedal of a car while talking on a cell phone. ",
"As a leader, you must rise even further above the storm and look beyond your own survival. ",
"You must direct the fire and movement of the entire element and resist the instinct to become just another gun in the fight. ",
"The whole thing is one tachy-psyche blur of constant decision making.",
"\n\nThis was the opposite of chaos. ",
"Reece's senses registered nothing unnatural, just the calm of aspens in the breeze and the relaxing melody of wildlife easing into another day to a beautiful mountain sunrise. ",
"There was no radio, no one to communicate with, just the occasional hum of a car or pickup on the asphalt of the highway. ",
"The range to the dip in the road was exactly 625 yards, which meant that the bullet would drop eighty-six inches in its path from his barrel to the target. ",
"The rifle's scope was zeroed for 100 yards, so he would have to compensate for the difference. ",
"He came up 14 clicks, 1.4 MILS, to make up for the drop. ",
"By dialing for the range, there would be no holdover. ",
"He could put the center of the reticle right on the target. ",
"Fight with every advantage you can get. ",
"The winds were light this early in the morning, which was a good thing. ",
"Wind calls were always tricky in the mountains, even for a pro. ",
"The Kestrel told him it was blowing two miles per hour from his left, a full-value wind that required six inches of hold. ",
"Since winds could shift at any moment, he used the MIL-DOT reticle to \"hold off\" for the 0.3 MILS.",
"\n\nHe heard the hum of the tires even before the blue halogen headlights haloed above the highway as the SUV climbed the rise. ",
"The silver Mercedes was unmistakably Boykin's; thank God this guy didn't drive an F-150. ",
"The vehicle was coming straight at him, which meant no lead was required, but it was still hauling ass. ",
"He didn't have much time to admire the success of his planning. ",
"He tracked the target as it came down the hill, just as he'd done with the two other vehicles that had passed earlier that morning. ",
"He took a full breath, briefly rested at its peak, then exhaled to find his natural respiratory pause when his lungs had expended their air, steadying and focusing him for the task at hand. ",
"Doing so caused the movement of the scope's reticle to slow from an orbit to a small tremor. ",
"Even with a solid rest, it was never as steady as in the movies. ",
"The Mercedes hit the flat spot and appeared to stop for a second as he lost the perspective of its forward progress. ",
"He couldn't see the driver, not at this range and certainly not in this light. ",
"Holding just right of the windshield's center, he slowly pressed the trigger.",
"\n\nHis ears heard the shot but his brain barely registered the sound. ",
"His only sensation of recoil was the scope's image jolting into a blur as the rifle rocked skyward. ",
"Despite putting rounds into countless men in shitty corners of the world, his body still jolted into \"fight or flight\" mode, adrenaline surging into his body like a shot of heroin. ",
"He had killed plenty of men with his country's blessing in the past, but this time pressing the trigger meant breaking the most sacred bond of society; he'd just committed murder.",
"\n\nThe monolithic bullet was a Barnes Triple Shock, made from solid copper and scored inside the tiny hollow point to split into four petals upon impact like a deadly flower. ",
"It was engineered to penetrate deeply on big game animals and worked so well that special operations troops adopted it for use during the Global War on Terror. ",
"When it hit the nearly vertical glass windshield of the Mercedes, the petals sheared off, leaving a cylinder of copper a third of an inch in diameter and still moving faster than most handgun rounds do at the muzzle. ",
"It struck Boykin on the bridge of his nose, and angled downward slightly as it smashed cartilage, brain, and bone into jelly. ",
"It severed the first vertebra and exited the back of his neck looking much like it did on the way in, before punching through the leather headrest and terminating its flight in the foam cushioning of the backseat.",
"\n\nThe Mercedes's cruise control was set on sixty miles per hour when its driver's brain ceased sending command signals to his body. ",
"His limbs quivered and jerked the way most animals and humans do when shot in the central nervous system, but the Teutonic engineering of the SUV kept the wheels traveling straight up the rise of the highway as if nothing had happened. ",
"When it roared past Reece's position, he thought for a second that he'd missed. ",
"As the vehicle crested the rise, having accelerated to make up for the steep grade, Boykin's lifeless body shifted forward in his restraint and caused the wheel to turn sharply to the left. ",
"The forward momentum, downward slope, and the SUV's high center of gravity created a snowball effect and caused the Mercedes to roll forward on its right front wheel, cartwheeling off the pavement and into the steep shoulder. ",
"The sound of rubber and steel meeting asphalt and rock were deafeningly loud, but only one man could hear it.",
"\n\nReece smiled for the first time in many months as he pulled a Ziploc bag from a pocket inside his jacket. ",
"Out of the bag came a folded-up crayon drawing with a list of names written on the back. ",
"With a tiny stub of a pencil, he crossed the first name off the list and returned it to its home against his chest.",
"\n\n## PART ONE\n\n## THE AMBUSH\n\n## CHAPTER 1\n\nThree months earlier\n\nKhost Province, Afghanistan\n\n0200 Local Time\n\nNOT ONE OF THE GUYS on the ground had liked this mission. ",
"Now, moving to within a klick of their target, they had pushed that distraction from their minds and were solely focused on the deadly challenge before them. ",
"Glancing at the GPS attached to the stock of his rifle and scanning the terrain ahead, Lieutenant Commander James Reece called a quick perimeter. ",
"Snipers were already moving up to the high ground as team leaders joined Reece for a last, quick update before the final push to the objective. ",
"Even with all the technology at their disposal, things could go wrong in a heartbeat. ",
"Their enemy was cunning and highly adaptive. ",
"After sixteen years at war, the Afghan saying, \"The Americans have all the watches, but we have all the time,\" rang a bit more true than it had in the early days.",
"\n\n\"What do you think, Reece?\" ",
"asked a huge beast of a man, looking like a creature from another world with his AOR1-patterned camouflage, body armor, and Ops Core half-shell helmet with NODs firmly in place.",
"\n\nReece looked at his most seasoned troop chief. ",
"The light green glow of the NODs illuminated through the beard on the other man's face a slight smile that could not be mistaken for anything other than the confident look of a professional special operations soldier.",
"\n\n\"It's just over that rise,\" Reece replied. \"",
"Predator shows nothing moving. ",
"No sentries. ",
"Nothing.\"",
"\n\nHis troop chief nodded.",
"\n\n\"All right, guys,\" he said to the other four men in the circle. \"",
"Let's do it.\"",
"\n\nThey rose with resolve and moved with the poise of men who were comfortable in chaos, moving up the rocky ridgeline to get their Teams in place before approaching the target to make entry.",
"\n\nThis is too easy. ",
"You are thinking too much again. ",
"It's just another mission. ",
"Then why this feeling? ",
"Maybe it's just the headaches.",
"\n\nThe headaches had plagued Reece for the past several months, finally prompting a visit to Balboa Naval Medical Center before this deployment for a series of tests. ",
"Still no word back from the docs.",
"\n\nMaybe it's nothing. ",
"But maybe it's something.",
"\n\nReece had learned a long time ago that if something didn't look right, then it probably wasn't. ",
"That judgment had kept him and his men alive on many a deployment.",
"\n\nEverything had lined up a little too easily for this target: the intel, the offset infil, the current state of the objective area. ",
"And why the pressure from higher authority to go after this target? ",
"When was the last time a flag-level command injected itself into a tactical planning process? ",
"Something wasn't adding up. ",
"Maybe everything's fine. ",
"Maybe it's the headaches. ",
"Maybe it's a bit of paranoia. ",
"Maybe I am getting too old for this. ",
"Focus, Reece.",
"\n\nThis wasn't the first time that they had approached a target they suspected was a possible ambush. ",
"At one point in the war, when intel had pointed to the high possibility of an ambush, corroborated by multiple sources both human and technical, Reece would have knocked on the door with a thermobaric AT-4 or a few 105mm rounds from an AC-130 gunship. ",
"This was the first time that actual tactics had been dictated from higher, from men who would not be on the ground. ",
"Focus on the mission, Reece.",
"\n\nOne more check with the Tactical Operations Center, a forward-based command also called the TOC, and a look at the Predator feed. ",
"Nothing. ",
"Another check with the sniper teams. ",
"Nothing moving.",
"\n\nReece glanced up at the military crest of the hill in front of him. ",
"Through his NODs he could see the assault teams set and ready to move. ",
"He couldn't see the snipers, which gave him cause for a thoughtful smile. ",
"Best in the business.",
"\n\nReece keyed his radio and opened his mouth to give the order to move.",
"\n\nThen it all went black.",
"\n\n• • •\n\nThe explosion knocked Reece back ten yards and ripped his helmet from his head as the entire military crest of the hill in front of him erupted in a concussion of violence and death. ",
"Teammates, friends, husbands, and fathers who one moment earlier had represented the best special operations force the world had ever known were gone in less than a second.",
"\n\nReece never realized that he was momentarily knocked unconscious. ",
"The pain in his head brought him back into the fight before the dust began to settle and the reverberations from the explosion had drifted from the hills.",
"\n\nThe professional in him immediately ensured he still had his weapon. ",
"Check. ",
"Next was a mental rundown of his body. ",
"Everything appeared to still be in the same place and working.",
"\n\nThey knew. ",
"How? ",
"Later, Reece. ",
"Always improve your fighting position.",
"\n\nHis eyes darted around looking in vain for his helmet and communications headset, eyes adjusting to the dark, hands moving in a frantic search until finally coming across it in the dirt.",
"\n\nYes. ",
"Wait, too heavy to be my helmet. ",
"That's because it's not your helmet. ",
"It's someone else's. ",
"And the head is still in it.",
"\n\nEven in the darkness it was clear to Reece that he was staring into the face of his longtime friend and Teammate, the big man with the huge beard and confident smile, and that his head was no longer attached to his body. ",
"Reece couldn't stop the tears from welling in his eyes but quickly brushed them aside. ",
"Focus. ",
"No time to mourn. ",
"Exploit all technical and tactical advantages. ",
"Check. ",
"Reece unsnapped the chinstrap, letting his friend's head fall to the ground, and quickly put the helmet on his own head. ",
"Miraculously, the NODs still worked. ",
"His radio operator was facedown, twenty yards away. ",
"Reece could tell from the contorted position of his body that he was dead. ",
"Moving quickly to his side, Reece turned him over, checked for breathing and a pulse, knowing that the shrapnel sticking through his right eye and out the side of his head had killed him instantly. ",
"Removing his radioman's helmet, Reece ripped off the MBITR radio and headset to reestablish communications with the supporting aircraft and his TOC.",
"\n\nNothing moved on the hillside. ",
"It was as if the sword of death had swept over the entire force. ",
"Reece heard footsteps behind him and spun, weapon up, off safe, infrared laser activated, searching for threats. ",
"He immediately checked up his M4 5.56mm rifle as he recognized three of his operators running up to him from their rear security positions.",
"\n\nThe temptation to run up the hillside was a strong one but another thought was at the forefront of all their minds: win the fight.",
"\n\nHis rear security found new positions without saying a word, forming a tight perimeter around their leader.",
"\n\nReece shut the carnage and death of the ambush from his mind. ",
"It was time to act.",
"\n\n\"SPOOKY Four Seven, this is SPARTAN Zero One,\" said Reece into his radio while looking at the Gridded Reference Graphic attached to his arm. \"",
"Request fire mission on building D3. ",
"105s. ",
"Level it.\" ",
"Worn in a similar fashion as a quarterback's wrist coach, the GRG was instead an aerial image of the target area that allowed him to coordinate and maneuver forces who all used the same graphic.",
"\n\n\"Good copy, Zero One. ",
"Six mikes out.\" ",
"The AC-130 gunship had been loitering ten minutes away so as not to give away the coming assault in the still Afghan night.",
"\n\n\"Break—RAZOR Two Four, RAZOR Two Four. ",
"Request QRF and medevac on my position, ECHO Three. ",
"Stay off the hillsides. ",
"We have multiple personnel wounded from buried IEDs.\" ",
"One never mentioned the dead in a radio transmission.",
"\n\n\"Roger, Zero One. ",
"Headed in for a hot extract on grid ECHO Three. ",
"Ten mikes out.\" ",
"The QRF birds were two CH-47 helos packed with fifteen Rangers each.",
"\n\n\"MAKO,\" Reece said into the headset, \"anything on that Pred feed?\"",
"\n\n\"Nothing, Zero One. ",
"Nothing moving on target.\"",
"\n\n\"Copy.\"",
"\n\nReece turned his attention to his four remaining operators.",
"\n\n\"Who do we have?\" ",
"He asked.",
"\n\n\"Hey, sir. ",
"It's Boozer. ",
"I have Jonesey and Mike with me. ",
"What the fuck happened?\"",
"\n\n\"Ambush. ",
"They knew we were coming. ",
"Bastards. ",
"We have an air strike about five minutes out and QRF en route.\"",
"\n\n\"Sir, we fucking told them this was an ambush. ",
"What the fuck! ",
"Sure as hell didn't expect this, though. ",
"Anyone alive?\"",
"\n\n\"Not sure. ",
"Let's go find out.\"",
"\n\n\"Roger, sir. ",
"But take it easy. ",
"There could be hundreds of IEDs or mines set up and buried up here.\"",
"\n\n\"Jonesey, you and Mike stay here to bring in those birds. ",
"Boozer and I are going to go check for survivors. ",
"Boozer, stay about fifteen yards behind me. ",
"Step only where I step. ",
"We will work our way up there slowly. ",
"TOC says nothing is moving on the other side of that hill but stay alert.\"",
"\n\n\"Got it, Reece.\"",
"\n\n\"Let's go.\"",
"\n\nThe pair moved together up the hillside, though mountainside was a more apt term. ",
"Rocky and steep at altitude, and weighed down by forty pounds of body armor and gear makes for slow going, especially when moving through a suspected minefield.",
"\n\n\"SPOOKY, we are moving up from GRG ECHO Three to ECHO Eight. ",
"Anything on the north side of the hill is fair game.\"",
"\n\n\"Roger, Zero One, still nothing moving.\"",
"\n\nStrange.",
"\n\n\"Good copy.\"",
"\n\nReece and Boozer inched up the hill, the smell of cordite, blood, dust, and death heavy in the air. ",
"Movement to the left.",
"\n\n\"B, I have movement. ",
"Don't rush up. ",
"Continue to follow me,\" Reece whispered into his radio. ",
"Boozer responded by keying his mike twice, signifying good copy.",
"\n\nReece moved in the direction of the movement and what he now identified as moaning. ",
"Donny Mitchell, one of the youngest members of Reece's team, lay dying among the rocks of eastern Afghanistan. ",
"His body missing from the waist down, he reached for Reece.",
"\n\n\"Did we get them, sir?\" ",
"Donny said weakly. \"",
"I've still got my rifle.\"",
"\n\n\"Yeah you do, buddy. ",
"Yeah you do. ",
"Air strike is coming in now. ",
"We'll get them.\" ",
"Reece sat down next to Donny and moved to cradle his head in his arms. ",
"As the first of the 105s began to hit the compound, Reece caught the hint of a smile on Donny's lips as he drifted off to Valhalla.",
"\n\nReece looked up, watching Boozer slowly work his way among the boulder-strewn hillside. ",
"Behind Boozer, Reece first heard, then saw the blacked-out 47s begin their descent into the valley where Jonesey and Mike now guided them in.",
"\n\nWe will pound the hell out of that compound with air and then move in with the Rangers to conduct battle damage assessment and sensitive site exploitation.",
"\n\nIt was then that the gravity of what had just happened began to sink in.",
"\n\nI've lost my team. ",
"It is my responsibility.",
"\n\nReece's eyes began to mist over for the second time that night. ",
"He had no idea how bad things were about to get.",
"\n\n## CHAPTER 2\n\nBagram Air Base\n\nBagram, Afghanistan\n\nREECE AWOKE ON HIS BACK, his vision blurry, blinking to clear his eyes and soften the pounding in his head.",
"\n\nWhere am I?",
"\n\nAs he turned his head slowly to try to clear the cobwebs, his eyes came to focus on the tube sticking out of his arm and he became aware of something strapped over his mouth and nose.",
"\n\nIV. ",
"Oxygen mask. ",
"Hospital.",
"\n\nReece attempted to lift himself to his elbows but was stopped short by a blinding pain in his head.",
"\n\n\"Reece . . . ",
"Reece . . . ",
"easy, buddy. ",
"Easy.\"",
"\n\nReece recognized the voice immediately. ",
"Boozer.",
"\n\n\"Doc, he's getting up!\" ",
"Boozer yelled down the hall.",
"\n\nThis place was a far cry from the field hospital tents of the early days. ",
"If you didn't know you were still in Afghanistan, you'd think you were stateside at a naval medical center in Bethesda or Balboa. ",
"The only giveaway that it was in the middle of a war zone was the ubiquitous hum of the diesel generators providing 24/7 climate control year after year.",
"\n\nFighting in a country for north of fifteen years can do that.",
"\n\nReece pulled down his oxygen mask and looked toward his friend.",
"\n\nBoozer was still in his op cammies, dirty, smelly, with dried white salt deposits straining through the Afghan grime from all the sweat of the night's mission, but other than that, looking none the worse for wear. ",
"Boozer was just one of those guys who never got a scratch. ",
"His body armor and weapon were absent but Reece knew he would have a pistol concealed somewhere on his person.",
"\n\n\"What happened? ",
"How did I get here?\"",
"\n\nBoozer took a breath, trying not to let a look of utter sadness with an edge of pity cross his face, but failing miserably.",
"\n\n\"Reece, NCIS is already here. ",
"They asked me not to tell you shit. ",
"Fuck them, though. ",
"Of course I'm going to tell you.\"",
"\n\nNCIS?",
"\n\n\"It's bad, Reece,\" Boozer continued. \"",
"What's the last thing you remember?\"",
"\n\nReece's eyes tightened as he searched his memory banks.",
"\n\n\"We were on the crest of the hill, air strikes inbound, QRF and CASEVAC coming in . . .\" ",
"He trailed off. \"",
"Holding, Donny.\"",
"\n\n\"Yeah,\" Boozer confirmed. \"",
"That's right. ",
"Then the whole valley exploded. ",
"They baited us in, Reece. ",
"More elaborate than anything we've seen to date. ",
"They knew exactly what we would do after the hillside went up. ",
"They knew we would level that compound and bring in the cavalry for our wounded and dead. ",
"The entire floor of that valley, our exact position in the set point, was wired to blow. ",
"They knew when those helos were landing and they cooked it off. ",
"Dash-one dropped its Rangers, took off, and when dash-two came in they set it off. ",
"That second helo and all the Rangers, sir. ",
"They got them all.\"",
"\n\nReece's eyes stayed focused on Boozer.",
"\n\n\"Jonesey and Mike?\" ",
"Reece asked, already knowing the answer.",
"\n\nBoozer shook his head. \"",
"Sorry, Reece. ",
"I wanted to make sure you knew before those NCIS guys got in here. ",
"I got a bad feeling from those clowns. ",
"What's weird is that their questions weren't about the mission. ",
"They were about you.\"",
"\n\nA confused look crossed Reece's face, which he quickly put aside. \"",
"Me?\"",
"\n\n\"I think they are looking for somebody to hang. ",
"Just my take, Reece. ",
"Stay strong, sir. ",
"You didn't do anything wrong. ",
"Higher forced us on that mission. ",
"They dictated the tactics. ",
"Those are the fuckers that should be investigated. ",
"They dictated tactics from the safety of HQ. ",
"Fuck those guys.\"",
"\n\nBoozer always had a way with words. ",
"Not one to ever sugarcoat anything, he always gave his honest assessment. ",
"As a leader, that was what Reece expected. ",
"It is what he owed his troops and his chain of command. ",
"Always give your honest assessment. ",
"That was how one built trust as a combat leader. ",
"Without trust, there was nothing.",
"\n\nYour men trusted you, Reece. ",
"And now they are dead. ",
"Focus. ",
"Something is not right. ",
"Something is just not right.",
"\n\n## CHAPTER 3\n\n\"LIEUTENANT COMMANDER REECE,\" interrupted a voice from the hallway with more of a statement than a question.",
"\n\nBoozer looked at Reece with an expression that told his commander, this is the asshole I was talking about.",
"\n\n\"That's me,\" replied Reece, pushing himself up in his hospital bed.",
"\n\n\"Hi, I'm Special Agent Robert Bridger with NCIS,\" he said, entering the room and nodding at Boozer while at the same time displaying his credentials to Reece.",
"\n\nThese guys love to show their creds, thought Reece to himself. ",
"He wondered if they knew the rest of the military thought they were all just guys who couldn't get into the FBI or CIA but didn't have the balls to be street cops, instead choosing to hide out in NCIS for a career of busting eighteen-year-old kids who pop positive on the monthly Navy drug tests.",
"\n\nEven their name was deceptive. ",
"Despite leading with an N for Naval, NCIS was not even a part of the Navy. ",
"Rather, it was a federal law enforcement agency staffed with civilian special agents focused on investigating naval personnel. ",
"No one liked them much.",
"\n\nBoozer stood and, though talking to Reece, stared directly into Agent Bridger's eyes and said, \"See you later, sir. ",
"I'll be close if you need me,\" before departing the room, leaving it to the federal cop and his boss.",
"\n\nReece swung his legs over the side of the bed, slowly getting his balance. ",
"Looking at his arm, he yanked out the IV and then rose to his feet before extending his hand to the shorter man. ",
"Agent Bridger seemed nice enough and for all Reece knew he was just doing his job. ",
"Bridger smiled and took the outstretched hand.",
"\n\nGood cop, Reece thought.",
"\n\nBridger was dressed in the \"uniform\" of those not in actual uniform in a war zone, pressed tan pants with the requisite olive green button-up safari-style shirt complete with epaulets along with clean beige combat boots. ",
"Reece always wondered what the epaulets were for. ",
"His .40 SIG Sauer P229 was displayed prominently on his belt in a scuffed-up black leather holster, probably the result of getting in and out of his desk chair for coffee multiple times a day.",
"\n\n\"If you feel up for it, Commander, we have a few questions about the mission. ",
"I'm sure you understand. ",
"We just want to get this wrapped up as soon as possible and get you back to your men.\"",
"\n\nOr what's left of them, thought Reece.",
"\n\n\"Little quick, isn't it?\" ",
"asked Reece, looking around the hospital room.",
"\n\n\"Well, it's a big deal, sir. ",
"We need to get some questions answered for D.C. as soon as possible.\"",
"\n\nReece nodded, resigned to take the blame he knew was his. ",
"He had always believed that as a leader you shared in the successes but owned the failure, and when successful you always pushed the credit down to the guys. ",
"They deserved it most. ",
"This was an unmitigated failure. ",
"His failure.",
"\n\n\"Mind if I change?\" ",
"Reece asked.",
"\n\n\"No problem, Commander. ",
"I'll be outside.\"",
"\n\nReece took a deep breath and surveyed his room. ",
"It wasn't what one would expect to find in Afghanistan. ",
"Modern and sterile, it stood in stark contrast to the world beyond its doors. ",
"Alone with his thoughts, Reece took another breath and located his clothes, op cammies covered in sweat and blood. ",
"He picked up his camo Crye Pro top and rubbed the blood-soaked material between his fingers, wondering which of his men the blood belonged to.",
"\n\nReece knew that if anything were really wrong with him they would have put him in the ER, which was in a different wing of the hospital, behind another set of doors and always ready for the inevitable next mass causality event, which had become an all-too-frequent occurrence in the counterinsurgency fight. ",
"His weapons and body armor were gone. ",
"Boozer would have taken care of them.",
"\n\n\"Ready,\" Reece said, exiting the room.",
"\n\n\"Okay,\" the NCIS man answered.",
"\n\nThis time he was not alone. ",
"Instead he was flanked by a large but portly uniformed Navy chief master-at-arms carrying a Beretta 92F pistol in a clean nylon holster. ",
"How the Italian gunmaker's awkward 9mm handgun had replaced the Colt 1911A1 .45 to become the official sidearm of the U.S. armed forces, Reece could only guess.",
"\n\nGreat, more fake cops, he thought.",
"\n\nReece fell into step with Agent Bridger as they made their way down the hallway toward the exit. ",
"The duo could not have been more different. ",
"Bridger stood about five inches shorter than Reece's six feet. ",
"His clean cargo pants and offset shirt were not stained by sweat, dirt, dust, grime, and blood like Reece's. ",
"His clean-shaven, pale face was a stark contrast to the taller man's stubble poking through the tough tanned skin of someone who had spent most of his life beyond the confines of an office.",
"\n\nReece and his entourage pushed through the two sets of double doors separating the medical world from the Afghan dust, which, no matter how much gravel the U.S. military continued to lay down, got into everything. ",
"Emerging into the blazing sun, Reece squinted his eyes and shielded them with his hand, realizing he hadn't had time to glance at his watch and for some reason thought it was still night. ",
"Reece almost stumbled as a headache worse than any to date almost crippled him. ",
"Almost before he could react, it was gone again. ",
"What were these things? ",
"As Reece's eyes adjusted to the light, Bridger motioned to a parked side-by-side quad, a military-looking version of a golf cart. ",
"Bridger climbed into the driver's seat while Reece took the front passenger side. ",
"Their silent master-at arms \"security\" got in the back and they moved off toward what Reece assumed would be the base NCIS office.",
"\n\nThey blended in with the normal buzz of daily activity at Bagram Air Base, soldiers moving to vehicles getting ready for a mounted patrol with their Afghan partner force, airmen switching shifts at the airfield, a line of military and civilian contractors forming at the chow hall. ",
"Just another Wednesday afternoon in a war zone.",
"\n\nAs they cruised down Disney Drive, Reece couldn't help but shake his head at the officers who had to return salutes about every five paces as they passed junior soldiers. ",
"Even in a combat zone, some brass felt it was important to maintain this piece of military decorum. ",
"It made him appreciate the sterile uniform he wore; no rank, which meant he didn't need to return fifty salutes on his way to the PX or gym.",
"\n\nBridger slowed the vehicle and pulled up in front of a structure left over from the time the Russians invaded Afghanistan in 1979. ",
"The outside was chipped with bullet holes—whether from the Russian occupation or the current conflict, it was impossible to tell. ",
"Funny, to Reece it looked like the old Russian brig. ",
"Fitting.",
"\n\nBridger left the Navy chief outside and led the way into the building and down a hallway lined with offices, each with a similarly dressed agent typing away, sifting through papers or mumbling on the phone. ",
"Reece took it all in, noting which way the doors opened, which offices had windows, which agents were armed, until Bridger stopped at the last door at the end of the hallway.",
"\n\n\"Please wait here, sir,\" he said before slipping inside.",
"\n\nReece was left alone, assuming he was probably being watched by a small video camera surveying the hall. ",
"He looked at the BOLO, or Be On the Look-Out, printouts on the wall. ",
"Most were former Afghan workers who did the jobs too lowly for Americans, namely emptying the port-a-potties that baked day after day in the heat of the Afghan summer. ",
"Reece had always thought they were some of the best sources of intel for the insurgency, having paced out every corner of the base multiple times to ensure correct schematics for incoming mortars and rockets.",
"\n\nThe door opened again and Agent Bridger nodded at Reece to come inside. ",
"It wasn't a big room, though Reece noticed immediately that there were no windows and no other points of entry. ",
"Seated at a rectangular folding table was a man who didn't offer his hand but introduced himself as Special Agent Dan Stubbs while holding out his badge and ID card. ",
"Bad cop.",
"\n\nReece took a seat across from Agent Stubbs while Bridger joined the man who was quite obviously his superior. ",
"Stubbs made a show of organizing some papers before sliding his thin reading glasses down the bridge of his nose to address the SEAL he had summoned in an obvious power play.",
"\n\nIt was much darker in this room than in the hall or adjoining offices. ",
"Reece's eyes adjusted once again while casually continuing to scan the room. ",
"A large stack of papers sat in front of Agent Stubbs and a microcassette recorder lay next to that. ",
"A video camera was set up in one corner on a tripod but appeared to not be recording.",
"\n\nAgent Stubbs was one of those guys who could be forty or sixty. ",
"His hair was buzzed so it was hard to tell its exact color. ",
"His double chin was pronounced enough to notice and, though he did not stand, it was obvious he had a belly not accustomed to daily PT. ",
"He wore a black polo shirt under a cheap-looking dark suit coat. ",
"Something about his demeanor suggested past military experience, though Reece was skeptical as to the type.",
"\n\n\"Commander Reece,\" he began in an official-sounding voice while pushing a piece of paper across the table, \"before we begin, please acknowledge your rights and sign below.\"",
"\n\nReece knew better than to ever sign anything for a federal agent without an attorney present. ",
"He also knew that his men were dead and that it was his responsibility. ",
"He signed the paper and pushed it back across.",
"\n\n\"We are not video-recording this interview, Commander.\"",
"\n\nFirst lie, thought Reece as he nodded in acknowledgment. ",
"Reece knew that the inoperable video camera in the corner was a prop, as was the microcassette recorder on the table. ",
"The entire interview was being audio- and video-recorded by a microphone and camera hidden somewhere in the room. ",
"The prop camera was to put the subject psychologically at ease while the microcassette recorder would be used at certain times to go \"off the record,\" a provision that, of course, did not exist.",
"\n\n\"I am going to start this recorder for my notes, if you don't mind,\" continued the fat man. ",
"Reece nodded again, more to acknowledge the theatrics of the scenario than to specifically give his consent for the record.",
"\n\nStubbs made a show of starting the recorder and placing it back on the table. \"",
"This is Special Agent Daniel Stubbs of the Naval Criminal Investigative Service. ",
"Time,\" looking at his off-brand analog watch, \"12:56 p.m., Wednesday, June fourteenth, 2017. ",
"I am here with Special Agent Robert Bridger to interview Lieutenant Commander James Reece, Troop Commander, SEAL Team Seven, concerning mission number 644: Odin's Sword. ",
"Commander Reece, take us through the events surrounding Odin's Sword.\"",
"\n\nReece started from the receipt of mission and went through the planning process. ",
"It had been a TST, or time-sensitive target, meaning it was a fleeting opportunity that needed to be acted upon immediately. ",
"The intelligence had come from a single source, which would normally disqualify it from consideration until it was more fully developed. ",
"Reece always validated intelligence across disassociated sources: two HUMINT sources coupled with SIGINT. ",
"Traditional and technical methods overlapping to ensure the target was viable and not an entity using America to settle a personal or political grudge. ",
"When Reece had pushed back to his next-echelon command he had been told in no uncertain terms that this was national-level intelligence, which was code for he was not authorized to know where it came from. ",
"Reece was cleared for Top Secret/Sensitive Compartmented Information, which meant he could be read into Special Access Programs on a need-to-know basis. ",
"Taking your men into battle was definitely need-to-know in Reece's book.",
"\n\nReece's troop had been operating out of an outstation in Khost, bordering Pakistan's Federally Administered Tribal Areas near the town of Miram Shah, a hotbed of insurgent activity as well as a safe haven for terrorists and their enablers. ",
"Ever since the high-profile killing of Osama bin Laden in Pakistan, cross-border operations were a rarity, and the enemy knew it. ",
"Setting up in Khost, developing an indigenous intelligence network, working with host nation partner forces, and kinetically hitting the ratlines that moved people, weapons, and drugs between Afghanistan and Pakistan were the order of the day on this deployment. ",
"That is why the alarm bells started ringing when the TST came down the pike; no one knew that area as well as Reece and his Team. ",
"They had been working it for the past five months. ",
"None of their human networks or technical intelligence pointed to a Taliban compound in their area of operations. ",
"The Taliban were too smart for that. ",
"Their senior people could live and direct operations with impunity from the Pakistan side of the border. ",
"Something was off.",
"\n\nReece didn't mention his call to Lieutenant Colonel Duke Bray, the Army Special Forces commander of the Special Operations Task Force of which Reece's unit was a part. ",
"Duke Bray was a Special Forces legend and the best soldier one could ever hope to meet. ",
"He had been one of the first into Afghanistan after September 11, 2001, part of Fifth Group's famed Triple Nickel, riding horses in support of the Northern Alliance offensive that retook Kabul in days rather than the months predicted by the talking heads at home. ",
"He had crossed paths with Reece many times over the years and both men had the utmost respect for one another. ",
"Over their private secure video teleconference, Reece could be as blunt as he wanted with the man he considered both a friend and a mentor.",
"\n\n\"What the fuck, sir?\" ",
"Reece had asked when he knew both were behind closed doors and in front of their computers.",
"\n\n\"I know, Reece. ",
"This is shit. ",
"I've never seen this, well, not in a long time. ",
"I told CJSOTF to fuck off and that we were not doing it. ",
"What's crazy is that it wasn't their intel people pushing it. ",
"It's national-level intel and you know what that means.\"",
"\n\nReece knew that meant CIA and it meant strategic-level intelligence, not the tactical kind they developed on the ground. ",
"This had to be important to come down so quickly from that high up.",
"\n\n\"Reece, I called in a couple favors at Langley to see if I could get some color on this. ",
"Nobody's heard of it. ",
"How does the target package look to you?\"",
"\n\n\"It looks great. ",
"That's why I'm questioning it. ",
"I've never seen anything this thorough from that high up. ",
"And we've never even heard of this targeted individual, but there is sure a lot of intel to back up that he's a serious player with connections to Pakistani ISI,\" Reece said, referring to Pakistan's intelligence service.",
"\n\n\"What did Stevens have to say?\" ",
"Reece asked, referring to the colonel commanding the CJSOTF one level above Bray.",
"\n\n\"You know Stevens, he's a good enough officer. ",
"Wants to do the right thing but he's a career guy. ",
"He said he had the personal guarantee from Tampa that this was a high-priority mission that has to go tonight.\"",
"\n\nTampa was the headquarters of both Central Command, in charge of U.S. military operations in the Middle East, and the Special Operations Command, which has the lead on all special operations worldwide.",
"\n\n\"Wonder who guaranteed them?\" ",
"Reece wondered aloud.",
"\n\n\"I don't like it, Reece,\" Bray continued, shaking his head. \"",
"Wish I was down there with you, Commander, but I'll make sure you have all assets of the Task Force at your disposal tonight. ",
"Your op will be the only game in town.\"",
"\n\n\"Thanks, sir. ",
"A dedicated AC-130 and a Pred with Hellfires would be nice.\"",
"\n\n\"My staff already has them dedicated to your mission.\"",
"\n\n\"Good copy, sir. ",
"We better get to work. ",
"Thanks for the support.\"",
"\n\n\"Godspeed, Commander.\"",
"\n\nTo Reece's surprise, Agent Stubbs did not dig into any of the oddities of where the intelligence originated. ",
"It was almost as if that were not even an issue.",
"\n\nInteresting.",
"\n\nAs hard as it was, Reece recounted the events once on the ground. ",
"The offset infiltration. ",
"The reports of nothing moving on target. ",
"The explosions. ",
"The death.",
"\n\nWhen he was finished, Stubbs's first question was not even about the mission. ",
"Instead he removed a paper from the stack in front of him and pushed it across the table to Reece.",
"\n\n\"Is this from your email, Commander?\" ",
"he asked.",
"\n\nReece made no attempt to disguise the anger in his eyes as he looked back up at Agent Stubbs and then over to a nervous-looking Agent Bridger.",
"\n\n\"Maybe a better question is, what the fuck are you doing reading my personal emails?\"",
"\n\n\"I will ask it again, Commander: is this from your email?\"",
"\n\nOne of the first rules in an interrogation is to always know the answer to the questions before you even ask, and this was most definitely not an interview; it was an interrogation.",
"\n\n\"This is private email correspondence between me and my wife.\"",
"\n\n\"Not only with your wife, Commander, but with members of academic institutions about ongoing military operations in Afghanistan.\"",
"\n\nReece almost couldn't control his eye roll. \"",
"You mean Dr. Anna Scott at Naval Postgraduate School and Dr. David Elliot at Johns Hopkins? ",
"Subject matter experts in insurgencies and international relations?\"",
"\n\n\"What did you mean by this highlighted sentence here?\" ",
"Stubbs asked, ignoring Reece's questions and pointing to a section of the printed email now in front of Reece. \"",
"It says, 'I question whether the tactical goals even support our national strategic vision.' \"",
"\n\n\"It means exactly what it says.\"",
"\n\n\"And how about this one here?\" ",
"Agent Stubbs asked again. \"",
"Well, let me read it for you, you wrote to Anna Scott on April ninth and I quote, 'I couldn't launch a mission today to apprehend a jaywalker with the same amount and quality of intelligence with which we invaded Iraq.' ",
"End quote.\"",
"\n\n\"Well, Stibbs,\" Reece began, intentionally mispronouncing his interrogator's name, \"Anna Scott is a dear friend and one of the world's leading authorities on insurgencies and counterinsurgencies. ",
"She's spent much of her life in the field immersed in the complexities of revolution, unlike those actually dictating policy.\"",
"\n\nStubbs's hand reached for the microcassette recorder and pressed the stop button. ",
"Reece knew immediately what was coming. \"",
"Commander Reece, off the record, what is your relationship with Dr. Scott?\"",
"\n\nUnbelievable.",
"\n\n\"Strictly professional, Stibbs. ",
"You should know that from reading all my personal emails.\"",
"\n\n\"I see,\" pressing record on the recorder again, \"and how do you explain actively promoting assassinations as an active-duty naval officer?\"",
"\n\n\"What are you talking about?\" ",
"Reece asked incredulously.",
"\n\n\"Back in 2014 you emailed Dr. David Elliot and suggested targeted assassinations as a viable government policy in your capacity as an officer, which is a violation of the Uniform Code of Military Justice.\"",
"\n\nReece looked back and forth between the two NCIS agents across from him. ",
"It would almost have been comical had it not been so serious.",
"\n\nReece had had many discussions with subject matter experts in the field of warfare. ",
"He felt it was his duty as an officer to constantly study his profession, resist groupthink, question assumptions, and seek out the most knowledgeable people he could across the industry to ensure he was going into combat as prepared and well equipped as possible. ",
"That was what he owed the men under his command. ",
"It is what he owed their families, the mission, and the country.",
"\n\n\"I'm done talking with you two idiots. ",
"Am I free to go?\"",
"\n\n\"Don't make plans to go home just yet,\" Stubbs said, leaning back in his chair and exposing his well-nourished midsection. \"",
"It is going to take us a while to sort through this mess. ",
"You are officially under investigation for subversive activities, disclosure of sensitive information, and violation of Article 13: conduct unbecoming an officer.\" ",
"Stubbs voiced all this without much emotion, as if running on autopilot.",
"\n\nReece stood slowly. ",
"Bridger looked like he wanted to be anywhere except for right where he was. ",
"Stubbs put the emails back into the stack. ",
"As he stood, Reece's hand instinctively went to the back right section of his hip, where he always carried his issued SIG P226 9mm pistol. ",
"He couldn't help but think that had it been about 150 years earlier, the government would be looking for two new federal agents.",
"\n\n## CHAPTER 4\n\nDR. ",
"PETER O'HALLORAN EXUDED the confidence of a man at the top of his profession. ",
"In the weeks following September 11, 2001, Dr. O'Halloran turned the reins of his highly successful spine surgery center over to his team of surgeons and joined the Army to do what he felt was his duty.",
"\n\nAs one of the best spine surgeons in the country, Peter had performed procedures on everyone from professional athletes at the height of their careers to aging politicians looking for a reprieve from constant nerve pain. ",
"He knew that men would be gravely wounded in this fight and he wanted to put his ample skills to work to keep those men alive. ",
"A waiver was quickly granted to bypass the age restrictions and, much to the dismay of his wife and children, Dr. Peter O'Halloran soon found himself Lieutenant Colonel O'Halloran of the U.S. Army Reserve, spending more time in uniform in Iraq and Afghanistan than in his spine clinic in La Jolla, California.",
"\n\nIt had only been two days since the ambush and subsequent interrogation but physically, Reece was ready to leave the hospital. ",
"He had been asked to stop in and see Dr. O'Halloran before he left for good, and upon his discharge, the nurse in charge of the shift walked him to the surgeon's office. ",
"O'Halloran greeted Reece warmly and invited him to sit. ",
"The doctor swiveled his chair to face a desktop computer and selected a file before rotating the screen so that Reece would have a better view of it. ",
"He then pulled up an image on the screen that was clearly a brain scan. ",
"It immediately reminded Reece of the black-and-white forward-looking infrared (FIR) imagery they used on the battlefield, with its glowing white highlights showing three-dimensional relief on a black background. ",
"The doctor used his mouse to put a curser over a white blob on the image.",
"\n\n\"Two of your men came in here wounded. ",
"We fought as hard as we could to save them but their injuries were just too severe. ",
"As part of our initial assessment, we did scans to determine the extent of their brain trauma and, besides a significant amount of shrapnel, we found this. ",
"This is the CT scan we took of Petty Officer Morales's brain. ",
"You see this?\" ",
"He pointed to a white blob on the screen. \"",
"This is an abnormal mass that is not consistent with a traumatic injury. ",
"The pathologist who did the autopsy believes that the mass is an oligodendroglioma, a rare and malignant brain tumor. ",
"The lab will confirm or deny that suspicion but he knows his stuff and I agree with his assessment based on the imaging.\"",
"\n\nHe clicked the mouse and a second image was displayed on the screen. \"",
"This is Lieutenant Pritchard's brain. ",
"As you can see here, he has a slightly smaller but similar tumor. ",
"The pathologist and I believe that it is the same type.\" ",
"A third image came up. \"",
"This is your brain, James. ",
"Now, we have no way of knowing for sure, but the mass on your brain appears to be similar in size and shape to that of your men. ",
"If we were in the States I would bring you in for a biopsy but we can't do that here.\"",
"\n\nReece's mouth went dry and he suddenly had an overwhelming desire to be with his wife and daughter.",
"\n\n\"I don't want you to panic, James. ",
"This could be a variety of things, and a malignancy is just one of them.\"",
"\n\n\"What?\" ",
"Reece stammered. \"",
"How . . . ",
"how rare is that, Doc? ",
"It seems crazy to me that three guys our age would have brain tumors.\"",
"\n\n\"Extremely rare, James. ",
"The incidence of this type of tumor is roughly 0.3 per one hundred thousand. ",
"Only about two percent of all brain tumors are of this type. ",
"Let's assume that yours is something different, since we can't confirm it here. ",
"But for two men on the same team, both in their twenties, to have this same type of tumor . . .\" ",
"O'Halloran shook his head. \"",
"The odds are astronomical. ",
"Have you and your men been exposed to any chemical or biological agents? ",
"Been in any nuclear facilities, anything like that?\"",
"\n\n\"No, not that I'm aware of. ",
"I mean, when we first invaded Iraq there were a bunch of chem/bio scares but Pritchard was probably in high school at the time. ",
"And as far as I know they were just that, scares. ",
"A team was hit with a mustard gas agent of some sort but nowhere near where I was operating. ",
"As far as these two guys being together, nothing out of the ordinary.\"",
"\n\n\"Hmm, well, keep thinking about it and let me know if you come up with anything. ",
"This is incredibly unusual. ",
"Like I said, we can't do any more here, but when you get back stateside you need to get checked out, just to be sure. ",
"I'm almost done with this deployment. ",
"It's been a long year but I'll be back at my California clinic early next month. ",
"I want you to come up to La Jolla and see me. ",
"There are some colleagues of mine who specialize in brain research that I'd like for you to meet. ",
"You haven't had any blurred vision, headaches, anything like that, have you?\"",
"\n\n\"No, sir,\" Reece lied, needing time to think.",
"\n\n\"How about Petty Officer Morales or Lieutenant Pritchard: did they or any of your men mention any unusual headaches?\"",
"\n\n\"No, but that wouldn't be out of the ordinary with this crew. ",
"The Teams aren't really a culture where people complain about those sorts of things. ",
"They think it might take them out of the fight.\"",
"\n\n\"I see,\" the doctor said thoughtfully. \"",
"I'm sorry about your men. ",
"I know that probably doesn't mean much but I really am. ",
"Get yourself home safely, hug your family, bury your men, and make an appointment with my office for when I get back. ",
"Take care, James.\"",
"\n\nReece walked out of the medical facility a man adrift. ",
"Truly, he was already gone, occupied with the thoughts of the families of sons, husbands, and fathers whose bodies, or what was left of them, were being put into bags, then into flag-draped coffins for their final trip home.",
"\n\n## CHAPTER 5\n\nNaval Special Warfare Command\n\nCoronado, California\n\nTHE AIDE KNOCKED before entering Admiral Pilsner's office. \"",
"Sir, the SECDEF's office is on the line.\"",
"\n\n\"Tell Howard to get in here and then put them through,\" the admiral responded harshly.",
"\n\n\"Yes, sir.\" ",
"The aide scampered back out the door.",
"\n\nThe admiral's JAG, Captain Leonard Howard, entered without knocking less than thirty seconds later.",
"\n\nThe phone on the admiral's desk rang and he pressed the button to put it on speaker.",
"\n\n\"This is Admiral Pilsner, standing by for the secretary.\"",
"\n\n\"Thank you, Admiral,\" an unidentified voice responded. \"",
"Secretary Hartley will be with you momentarily.\"",
"\n\nAfter close to five minutes of waiting, the line sparked to life.",
"\n\n\"Good afternoon, Madam Secretary, what can I do for you?\" ",
"the admiral said cheerfully in greeting.",
"\n\n\"What the fuck happened over there, Admiral?\" ",
"a furious Lorraine Hartley asked.",
"\n\n\"Ma'am, we did our best to manage the situation but obviously we didn't fully achieve our mission.\"",
"\n\n\"Your best? ",
"You're the goddamn WARCOM admiral and this is 'your best'?\"",
"\n\n\"Madame Secretary, we are doing everything we can to clean this up as soon as possible.\"",
"\n\n\"I'm losing confidence in your ability to do that. ",
"First of all, I want the survivors tied up in the investigation over there as long as possible. ",
"I don't want the American public falling in love with these guys during the media storm around the funerals. ",
"I want them out of sight, out of mind, and I want the responsibility hung on their shoulders. ",
"I want that troop commander to be a modern-day Custer. ",
"I want charges brought against him yesterday.\"",
"\n\nLeonard Howard spoke up. \"",
"Madame Secretary, this is Captain Leonard Howard. ",
"We would have a difficult time charging Commander Reece with anything under the UCMJ until a full investigation has been completed.\"",
"\n\n\"Get your head out of your ass, Howard! ",
"You find something to charge him with. ",
"We have so many federal crimes on the books the Department of Justice can't even count them all, and you're telling me you can't come up with something? ",
"Haven't you ever heard the phrase 'show me the man, I'll show you the crime'? ",
"Charge him with as much as you can but don't lock him up; we need him to be a free man for this to end appropriately. ",
"Clean up this mess, gentlemen, or you'll wish you'd never met me.\" ",
"Both men heard a click and the line went dead.",
"\n\nPilsner looked at his JAG. \"",
"Call Horn ASAP. ",
"We need a plan in place before those men are back on the ground stateside. ",
"And tell the NCIS guys to turn up the heat on Reece.\"",
"\n\n## CHAPTER 6\n\nBagram Air Base\n\nBagram, Afghanistan\n\nTHE DAYS PASSED SLOWLY while Reece was confined to Bagram. ",
"His men were being laid to rest in front of their devastated families while Reece was stuck halfway around the world, unable to look their wives, children, and parents in the eyes and assure them that he would find out what had led them into such a devastating ambush. ",
"He knew that he'd be crucified by WARCOM, and as far as he was concerned, he deserved it. ",
"He'd gotten all of his men killed, the cardinal sin of a combat leader. ",
"And for what? ",
"Some target they didn't know shit about? ",
"Add in the stress of a probable rare brain tumor and Reece's head was spinning. ",
"He was recalled almost daily to answer further questions from the NCIS goons and continued to answer all inquiries about the mission while refusing to answer the ones about his personal emails. ",
"The questions from NCIS had the smell of people with an agenda. ",
"Single sentences from emails going back over fifteen years were extracted to support a preconceived narrative. ",
"It was obvious to Reece that NCIS was not interested in what actually happened in the lead-up to and execution of the mission. ",
"They were there to put the blame on Reece and Reece alone. ",
"It had been brutal but he had taken it.",
"\n\nAfter a cruel two weeks of sleepless nights thinking about the brain tumors and of circular interrogations from NCIS, Reece was finally cleared to go home. ",
"He leaned back in his seat on the C-5 as it gathered speed down the runway, nose up, banking tightly to quickly gain altitude and get outside the range of enemy small arms and RPGs, leaving Bagram in the background. ",
"Reece's thoughts turned to what had happened at home in his absence. ",
"The command had mobilized. ",
"Casualty assistance officers and teams had been dispatched to try to beat the twenty-four-hour news cycle to the front doors of families scattered across the country: mothers and fathers, wives and children who would get the news every military family dreads, the unexpected knock on the door, the chaplain, an officer, a friend. ",
"The unthinkable. ",
"The screaming. ",
"The tears. ",
"The kids. ",
"The funerals. ",
"The blame. ",
"The blame. ",
"It was my fault. ",
"I was the senior man on the ground. ",
"Responsibility lies with me. ",
"And I couldn't even be there to deliver the news in person, to do my duty.",
"\n\nThe flight would be a good way to get his thoughts in order.",
"\n\nHe would call his wife from Germany, where he would have a few hours to decompress while the pilots had their mandated crew rest.",
"\n\nHow can I go home and face my family when twenty-eight Rangers, four aircrew, and thirty-six SEALs of my Task Unit are going home in boxes?",
"\n\nThat's war, Reece.",
"\n\nNo. ",
"The enemy was good. ",
"But they were not that good.",
"\n\nThis ambush was too well conceived and too effective. ",
"It was months, if not a year in planning. ",
"The explosives. ",
"What were they and how were they detonated? ",
"Why didn't any insurgents spill out of that compound with the detonation of the first explosives? ",
"Was there anyone in there at all? ",
"How did they know exactly where the helos would land? ",
"Why were they forced to go on this mission? ",
"Why was NCIS so pointed in their questioning so soon after the mission? ",
"What am I missing?",
"\n\n## CHAPTER 7\n\nCapstone Capital Corporate Offices\n\nLos Angeles, California\n\nSTEVE HORN WAS NOT accustomed to waiting for anything. ",
"First his tasty little assistant had made him wait five minutes for his beloved green tea, and now his most loyal lieutenant was running late, something he would not tolerate. ",
"The six-foot-four former Stanford quarterback sat behind a desk of polished walnut that he now visually inspected for any sign of dust or grime. ",
"He wore a finely tailored suit of charcoal cashmere that cost more than most families brought home in a month, cut not for comfort but to display his muscular physique. ",
"His tan neck was framed by a rigid spread collar and a violet Hermès necktie bound with a massive Windsor knot. ",
"A casual visitor would have thought that Fortune was arriving any minute to shoot him for the cover, but his staff knew better; this was Horn's everyday attire. ",
"Horn was the very image of vanity personified.",
"\n\nIf Horn had ever consulted a mental health professional, he would likely be diagnosed with an \"antisocial personality disorder.\" ",
"He felt absolutely no empathy for his fellow man and actually relished the discomfort of others. ",
"A counselor might explore whether this detachment resulted from the disinterest of his socialite parents during his upbringing or the harsh punishments dispensed by some of his many nannies. ",
"Maybe it was his failure to bond with a caretaker or perhaps he was born a sociopath; he would never know because he would never think to question what to him was as natural as breathing. ",
"To Horn, being ruthless was a competitive advantage.",
"\n\nAn email on the twenty-seven-inch screen of his iMac indicated the arrival of the tardy lieutenant. ",
"Phone calls or door knocks from his receptionist were not acceptable. ",
"Despite his strong desire to hear what the man had to say, Horn made him wait ten excruciating minutes in the lavishly decorated reception area. ",
"With Horn, everything was about power, and he spared no opportunity to remind everyone that he was in charge, a fact that no one but him questioned. ",
"The touch of a key on the desk phone indicated to the receptionist that he was ready to receive his appointment, and she quickly and sympathetically ushered Saul Agnon through the thick oak doors and into Horn's office.",
"\n\nIf Horn's appearance signaled power, strength, and grace, Agnon's did the opposite. ",
"He was slight of build, with small features, pallid skin, and a generally disheveled manner. ",
"His suit was cheap and off the rack, fitting him accordingly. ",
"His shoes were worn and unpolished. ",
"His fingernails were soft from nervous biting; his hair, thinning and greasy. ",
"Horn observed him with disgust as he passed through the doorway, defeated and hopeless, with the posture of a man headed to his own execution. ",
"Horn had always suspected Saul of being a homosexual but couldn't fathom a gay man with such a hopeless lack of style. ",
"Saul Agnon brought two things to the table, though, that made him indispensable: cunning intelligence and unwavering loyalty. ",
"Agnon worshipped Horn the way an abused animal serves its cruel master, doing anything for a hint of approval or sign of pleasure.",
"\n\n\"Not only are you late, Saul, but you come in here looking like a fucking rat. ",
"I thought Sears went out of business. ",
"Where did you get that suit? ",
"Don't sit down, this won't take long. ",
"What do you have for me?\"",
"\n\n\"Sir, I'm sorry for being late, there's no excuse, it's just that—\"\n\n\"You're right, there is no excuse. ",
"Stop wasting my time with your contrition.\"",
"\n\n\"Sir, the ambush went as planned. ",
"You've seen the media reports.\"",
"\n\n\"As planned? ",
"I'm reading that there were survivors; that was not the plan. ",
"The admiral called. ",
"Hartley is pissed. ",
"She wants this thing handled before it gets out of control.\"",
"\n\n\"Sir, I'm working the issue, and we will deal with it. ",
"This was always a possibility. ",
"There's another problem, though.\" ",
"Agnon paused to gain the courage to continue. \"",
"A doctor in Bagram discovered the tumors and was asking too many questions, but he'll be out of the picture soon. ",
"We'll use what they call a 'Green on Blue' since they are common enough not to raise suspicion. ",
"Our team on the ground found an Afghan military officer with a sick child. ",
"We promised to get the child medical care in the United States in exchange for one of his troops taking out the doc. ",
"Done deal.\"",
"\n\n\"So now we have to arrange care for some sick kid from a third-world shithole?\"",
"\n\n\"No, sir, we have no intention of making good on that promise.\" ",
"Saul glanced down at his small spiral notebook. \"",
"Next item: As you know, Lieutenant Commander Reece survived the mission, as did one of his men. ",
"Reece is in the air now and will land in Coronado later this morning. ",
"Holder is headed to the other man's apartment as we speak.\"",
"\n\n\"What's your plan for Commander Reece?\"",
"\n\n\"That situation is fluid, sir. ",
"The other events may have put him on guard, and we could have a problem on our hands. ",
"We don't have adequate personnel in the area to handle someone of his capability without the element of surprise.\"",
"\n\n\"Saul, he's been put through the wringer by the investigators and has flown halfway around the world. ",
"He'll be jet-lagged and exhausted. ",
"All he's gonna want to do is give his kids a hug, bang his wife, and forget about Afghanistan.\"",
"\n\n\" 'Kid,' sir, singular. ",
"He has one daughter.\"",
"\n\n\"Whatever. ",
"Get some gangbangers from L.A. or Mexico to take him out. ",
"Make it look like a home invasion robbery. ",
"Just make sure it gets done. ",
"We have cops on the payroll that can arrange it but don't let them know he's a SEAL. ",
"I don't want them going 'sentimental patriot' on us. ",
"Now get out of here, I have bigger matters to deal with.\"",
"\n\n## CHAPTER 8\n\nCoronado, California\n\nTHE MAMMOTH C-5 GALAXY touched down at Naval Air Station North Island and taxied slowly toward the small World War II–era terminal building. ",
"Upstairs in the barely occupied passenger area, James Reece stood and stretched, trying to shake the exhaustion and jet lag. ",
"He had long since shed his uniform for jeans and a T-shirt, the only connection to his combat load being the AOR 1–patterned pack and the hiking boots he wore nearly every day of his life. ",
"This pair was almost ready for the dumpster, he thought as he waited for the signal to deplane. ",
"He looked down at his right boot and smiled as he saw the unmistakable evidence that his three-year-old daughter had decorated it with a Magic Marker. ",
"The other boot, covered with the blood of his dying teammates, quickly wiped the smile away.",
"\n\nHe'd taken an Ambien to try to force himself to sleep on the long flight but it wore off after three hours and he spent the rest of the trip in a surreal state of exhaustion, grief, and drug-induced fog. ",
"He'd replayed the events leading up to the op over and over in his head, trying to find an answer to what had led them into the ambush—some clue that he'd missed, some shred of evidence that would explain what happened. ",
"He found no answers, only a blinding headache like the ones he'd had leading up to the ill-fated mission. ",
"He scrolled through pictures of his daughter on his iPhone, his eyes misting over from the pain of his months-long absence from fatherhood. ",
"He couldn't get home soon enough.",
"\n\nDown in the massive cargo area, he steered clear of the pallets of gear and brushed past some Air Force ground crew personnel who were already preparing to offload what looked like enough crates and boxes to fill a Wal-Mart. ",
"He grabbed his oversize gear bag and weapons case and headed toward the ramp. ",
"The rest of his gear, along with that of his troop, had been palletized and sent back with Boozer on an earlier flight while Reece was spending quality time with the assholes from NCIS. ",
"He set down his heavy bag and pulled his sunglasses over his eyes before walking down the ramp and into the blazing Southern California sunshine. ",
"Love it or hate it here, the weather was always good.",
"\n\nThere would be no one to meet him, no running hug with the wife and daughter, or Navy band playing \"God Bless America,\" just a Navy base going about its business on a stateside Monday morning. ",
"There was always enough back-and-forth traffic that he figured he could bum a ride to his truck at Team Seven from someone headed to the Amphibious Base. ",
"He was about to set down the unwieldy weapons case to open the door to the terminal building when it opened as if on cue and was held wide by a heavily tattooed arm belonging to a short, muscular figure holding a giant cup of Starbucks.",
"\n\nThe bearded man's face turned into a beaming smile behind a white-framed pair of surf shop sunglasses. ",
"The face was that of Ben Edwards, Reece's closest friend and former Teammate. ",
"Reece and Ben had gone through BUD/S together, deployed together as enlisted SEALs, and maintained a close friendship even after Reece became an officer and Ben migrated into the black side of Naval Special Warfare. ",
"Ben had since left the Navy for the nebulous world of the nation's intelligence agencies, though the lines between the two had grown increasingly blurred in the years following 9/11.",
"\n\n\"Welcome home, bro,\" said Edwards as he offered his hand.",
"\n\n\"For a second, I thought you were a homeless guy,\" answered Reece as he grabbed the shorter man for a bear hug.",
"\n\n\"I figured you might need a ride. ",
"Let me get your gear bag.\"",
"\n\n\"Where's my coffee?\" ",
"Reece asked with a smile.",
"\n\nDespite being identical in age, the two men walked through the small terminal building looking like complete opposites. ",
"The tall, clean-cut figure of James Reece and the stocky, ink-covered Edwards dressed in shorts and battered flip-flops: they were almost a caricature of the stereotypical differences between officers and enlisted SEALs. ",
"As they headed into the parking lot, Edwards fished into the pocket of his black hooded sweatshirt and the rear hatch of a black Chevrolet Tahoe began to arc toward the sky.",
"\n\n\"Does Hertz have a fleet of rental Suburbans and Tahoes just for spooks?\" ",
"chided Reece as he lifted the heavy black weapons case into the cargo area of the SUV.",
"\n\n\"Yeah, but they're not up-armored, so don't drive us through any shit neighborhoods.\"",
"\n\n\"Oh yeah, tons of slums here in Coronado,\" joked Reece.",
"\n\n\"My truck is at the Team,\" Reece said as they climbed into the cab of the Tahoe. \"",
"This thing is plush. ",
"What is this, velvet?\" ",
"he asked, rubbing his hand across the leather armrest.",
"\n\n\"Anything is plush, compared to that shitbox you roll around in, man. ",
"When are you gonna get rid of that thing?\"",
"\n\n\"Ha! ",
"I'm driving the Cruiser until it dies. ",
"That's the whole point of having one. ",
"Us officers don't get those fat reenlistment bonuses.\"",
"\n\nBen laughed. \"",
"You were enlisted once, too, remember? ",
"All that tax-free reenlistment money could have been yours.\"",
"\n\nHe put the SUV in gear, slammed what was left of his coffee, and in a long, practiced motion that had obviously become second nature packed a can of Copenhagen that appeared out of nowhere with his right index finger before pinching a huge dip into his lower lip.",
"\n\n\"How's quitting treating you?\" ",
"Reece asked mischievously.",
"\n\n\"Nobody likes a quitter, buddy.\" ",
"Ben smiled back, maneuvering the vehicle out of the parking lot and toward the gate.",
"\n\n\"So I'm guessing you didn't tell Lauren you were coming home because you figured the plane would never get here on time?\"",
"\n\n\"Yeah man, you know how those C-5s are, always breaking down, usually in Hawaii when the aircrew decides they need to spend four days in paradise waiting for a part to show up. ",
"Always cool to surprise her and Lucy, anyway.\"",
"\n\n\"I went by the house to check on them when I heard about the op. ",
"I knew from Boozer you weren't hurt bad and I wanted to make sure they didn't get bad info.\"",
"\n\n\"Appreciate it, brother.\"",
"\n\nThe inside of the SUV was dead quiet as they rolled through the gate of the air station. ",
"Clearly the small talk was over.",
"\n\n\"I know what you're thinking, man,\" Reece said angrily without looking over. \"",
"My troop got wiped out, what in the fuck happened out there? ",
"It was a shit op from the beginning; none of us wanted to go in the first place. ",
"It's my fault. ",
"I should have pushed back . . . ",
"I should have refused. ",
"Instead I said 'aye-aye, sir!' ",
"like some dumb-ass ensign and got all my guys killed.\"",
"\n\n\"I'm sure you did what you could, Reece. ",
"Everyone in the community has heard it was a shit op. ",
"What the fuck were they thinking, anyway? ",
"When was the last time they pushed a target down to you instead of you guys coming up with your own?\"",
"\n\n\"That's what was crazy, Ben! ",
"You know it's never like that. ",
"If anything, they're telling you what targets you can't hit, not which ones you have to. ",
"Now they're gonna fry my ass for their bad intel, and I deserve it for letting my guys go out.\"",
"\n\n\"You don't deserve shit, Reece. ",
"You're as solid as it gets, and everybody knows that.\"",
"\n\n\"Yeah? ",
"I hope you told that to all of my guys' wives and kids at their funerals. ",
"Sorry, man, not trying to put this on you. ",
"What are you doing on the west coast anyway?\"",
"\n\n\"Looking for talent, man. ",
"Workload is crazy these days with the conventional stuff winding down. ",
"We're constantly needing new guys. ",
"You ready to come work with me yet?\"",
"\n\n\"I'm sure as hell gonna need a job but I think I've had enough of this shit. ",
"When they throw me out of the Navy, I'll open a sandwich shop or something.\"",
"\n\n\"You'd have to touch mayo,\" Ben said, shaking his head. \"",
"That would never work.\"",
"\n\n\"Yeah, well, I'll have to think of something else then.\" ",
"Reece's hatred of condiments was well known throughout the Naval Special Warfare community.",
"\n\nAs they passed the Hotel Del Coronado and turned right toward the Silver Strand, they passed Miguel's Cocina, where they'd eaten with their wives dozens of times over the years. ",
"Well, with Reece's wife and each of Ben's three former brides.",
"\n\n\"Too early for a margarita?\" ",
"Ben joked.",
"\n\n\"Never too early for a margarita. ",
"Just don't take me to Rick's. ",
"Don't think I could show my face in there right now,\" said Reece, referring to a hole-in-the-wall SEAL hangout bar in downtown Coronado. ",
"Operators would return from deployments and toast their fallen comrades in blackout sessions that often turned ugly. ",
"Rick's was a safe haven where they could blow off some steam without ending their careers, and there was always a steady supply of willing women looking to be a SEAL wife for the night.",
"\n\n\"Ah yes, Rick's Palm Bar and Grill, home of the world-famous 'Slamburger.' ",
"I think I met wife number two in there?\"",
"\n\n\"Ha! ",
"I think you did,\" Reece said, remembering happier times.",
"\n\n\"I'm actually banging this little spinner of a bartender in there now.\"",
"\n\n\"Yeah? ",
"How old is he?\" ",
"Reece asked, grinning.",
"\n\n\"Fuck you. ",
"Heather, I think her name is. ",
"A bit of a Frog Hog but she does this amazing thing with her tongue. . . .\"",
"\n\n\"Okay, okay. ",
"Stop,\" said Reece, holding up his hands in mock defeat. \"",
"I don't want to know.\"",
"\n\nThey passed through the gate to the Amphibious Base after showing their IDs and steered around a group of exhausted and soaking-wet BUD/S candidates running down the road with an inflatable boat balanced on their heads. \"",
"Shit, must be Hell Week. ",
"Poor bastards,\" Ben commented without a touch of sympathy for the aspiring frogmen.",
"\n\n\"I'd trade a hundred Hell Weeks for the week I've had,\" Reece said, mostly to himself.",
"\n\nBen spotted Reece's white 1988 FJ62 Toyota Land Cruiser in the parking lot of the Team building and pulled into the empty spot behind it. ",
"Both men were quiet as they transferred Reece's gear into the truck. ",
"When they were finished, the two friends faced one another and Ben Edwards extended his arm for a handshake.",
"\n\n\"Call me if that piece of shit doesn't start.\"",
"\n\n\"Thanks for the ride, man.\"",
"\n\nReece needed to check in at the Team before heading home to surprise his wife and daughter. ",
"He walked across the parking lot and up the sidewalk of what looked more like a small office building than a den of amphibious commandos. ",
"He wondered how the guys would look at him as he took a deep breath and opened the door to what had always been a safe haven. ",
"He'd barely made it through the entrance when a chief from one of the other platoons went running by him with panic on his face. ",
"He knew immediately that something was wrong.",
"\n\n\"What's going on, Chief?\" ",
"Reece pled. ",
"The forty-something chief spun around and faced Reece as he slowed his pace to a backward jog.",
"\n\n\"Cops are at Boozer's, you need to get your ass over there,\" was all he said before turning and running out the front door of the building. ",
"Reece sprinted after him and covered the distance to his Cruiser in seconds.",
"\n\n## CHAPTER 9\n\nSan Diego, California\n\nBOOZER WAS A BACHELOR and lived in a cookie-cutter apartment complex just off Interstate 5 near UCSD. ",
"It was the kind of place you'd find in every suburban city in the country, except the rent was probably double or triple what you'd pay in Middle America. ",
"Identical clusters of buildings and parking lots where young professionals and grad students lived among one another in anonymity, their lives separated by metal studs and cheap Chinese drywall. ",
"There was no traffic this late in the morning, and Reece drove like a man possessed. ",
"Boozer was a stud who could certainly handle himself, but Reece had a gnawing feeling that this was not going to end well.",
"\n\nReece had been to Boozer's place only once before and he couldn't remember which building was his in the maze of two-story garden-style apartments. ",
"He took a guess and turned right as he passed the leasing office and blew by the first turn when he caught a cluster of emergency vehicles to his left. ",
"He slammed on the brakes and threw the truck into reverse before cutting the wheel hard and stomping on the accelerator. ",
"When he reached the police cars, he quickly pulled into an empty space, slammed the shift lever into park, and raced toward the apartment. ",
"He ignored the police officer commanding him to stop and bounded up the stairwell. ",
"Brushing past an EMT, he tried to make it through the open front door of Boozer's apartment but was grabbed by two burly cops in uniform.",
"\n\n\"He's one of my guys! ",
"I need to get in there!\" ",
"Reece begged as he struggled against the two men who had pinned him to the doorjamb.",
"\n\n\"You don't want to see this, sir!\" ",
"the older of the two officers said as they loosened their grip.",
"\n\nReece broke free and stumbled into the living room of the apartment as the too-familiar smell of blood and death filled his nostrils. ",
"Two detectives in civilian clothes with handguns on their hips were standing in front of a light brown futon couch, one of them holding a large DSLR camera with a flash sticking upward. ",
"They turned toward the commotion, and when they did, Reece could see Boozer's lifeless body sitting in boxers and a white T-shirt, his legs extended toward the two detectives. ",
"His usually pasty-white legs were deep purple in color and his face wore a mask of shock. ",
"A gaping exit wound was visible just above his left ear and a massive amount of blood, brain, and skull were splattered across the couch and onto the lampshade sitting on the end table. ",
"A SIG Sauer P226 was lying in an awkward position on his lap, the hammer cocked and ready to fire. ",
"Reece stood in shock, unable to move or speak. ",
"The two uniformed officers who had restrained him took him gently by the shoulders and steered him with care through the door of the apartment and into the hallway. ",
"Both had served combat tours in Iraq as reservists and knew the familiar look of a grief-stricken comrade. ",
"Reece sat down on the steps and put his head in his hands. ",
"What in the hell was going on? ",
"How could so many bad things happen at once? ",
"Various officers and NCOs from Team Seven had arrived at the scene and the chief that Reece had seen in the hallway guided him toward the parking lot, making him sit on the tailgate of an ambulance.",
"\n\nReece's boss, the commander of SEAL Team Seven, appeared minutes later along with his command master chief, the senior enlisted SEAL in the command. ",
"Commander Cox was a good leader, a fair guy, and a legit warrior. ",
"He'd obviously had other plans for today, as he and the master chief were both in their full dress uniforms, something you didn't see often in the Teams. ",
"He had probably been dealing with family members of the men killed downrange. ",
"The two men quietly conferred with the other officers and NCOs on the scene as well as the detective in charge of the investigation. ",
"One of the enlisted SEALs pointed toward Reece, the commander turning to walk toward his grieving subordinate. ",
"Still seated with his head in his hands, Reece did not see his boss approach until he was a few feet away. ",
"He started to rise to greet him but Cox pushed him downward with a firm but kind hand on the shoulder.",
"\n\n\"Rough week, Reece, I know. ",
"I'm sorry about your Troop and I'm sorry about Boozer. ",
"There will be plenty of time later to point fingers, but for now I need to worry about you. ",
"I can't stand by while another life is wasted like Boozer's. ",
"Dan is taking you to Balboa. ",
"I want you cleared by the docs before you take another step. ",
"Does Lauren know that you're back?\"",
"\n\n\"No, sir. ",
"I was going to drive home after I checked in at the Team. ",
"Then I came straight here.\"",
"\n\n\"Get cleared at Balboa and then head home. ",
"Take the rest of the week off, and on Monday we need to sit down and talk about the op.\"",
"\n\n## CHAPTER 10\n\nBY THE TIME THE DOCS at Balboa Naval Medical Center had cleared Reece to go home, it was after 6:00 p.m. Dan Harvey, a lieutenant from the operations shop, had driven him to Balboa and babysat him all day as the doctors did their thing. ",
"He drove Reece back to the Team to get his truck and was kind enough not to say a word during the trip. ",
"After telling the shrinks what they needed to hear to be sure he wasn't going to eat a bullet or chase a handful of pills with a bottle of Jameson, the last thing Reece needed was some well-meaning new guy trying to cheer him up. ",
"His wife and daughter would be somewhere in the dinner-bath-book bedtime ritual, and he'd arrive just in time to see his little princess before she went to bed.",
"\n\nReece thought he knew what love was when he met his beautiful wife, Lauren, but he'd never known complete, unconditional love until his daughter, Lucy, was born. ",
"She was her mother's spitting image, with enormous blue eyes and blond curls. ",
"Reece had killed insurgents on multiple continents, gone through the most rigorous military training in the world, and had stood his ground in confrontations with both admirals and master chief petty officers, but he was helpless in resisting the will of his three-year-old baby girl. ",
"When she said \"sit,\" he sat. ",
"When she yelled \"Daddy!\" ",
"he dropped everything and bowed to her wishes. ",
"She had him wrapped around her tiny little finger, and they both loved every minute of it. ",
"After six long months, he was going to see her face in person in the next few minutes. ",
"He couldn't wait to scoop her up in his arms and hug her for as long as she would put up with it.",
"\n\nHe thanked Dan for the ride and hopped into his Cruiser that one of the chiefs had driven back to the team, leaving the door unlocked and the key in the visor. ",
"It wasn't like anyone was going to steal his truck from the Team Seven parking lot. ",
"The chief obviously didn't know the weapons case was in the back. ",
"With all the turmoil of the day, Reece had never gotten a chance to turn it into the arms room. ",
"He was always wary about driving around with a box of weapons from work in his personal truck, given California's crazy gun laws, but under the circumstances he decided to risk it. ",
"He would bring the weapon's case home and run by the Team to turn it in late tomorrow morning after he caught up on some desperately needed sleep.",
"\n\nIt was a ten-minute drive from Team Seven to the small house that his family had rented on the island for the past three years. ",
"He couldn't wait to get home. ",
"Homecomings from a war zone are difficult to describe to those who have not experienced them firsthand. ",
"They are exceedingly powerful experiences, made all the more remarkable when children are part of the picture. ",
"Emotional floodgates that have been held at bay month after month are finally opened, allowing those feelings of love and devotion to pour through all at once. ",
"Homecomings made the deployments almost worth it, almost. ",
"Those pent-up feelings, forced to take a six-month back seat to the mission of defending the nation, were now free to be expressed. ",
"For the Reece family, this one would be even more special; this would be their last. ",
"Reece had reached a rank where he would be precluded from leading men into combat, which is what he had joined the SEAL Teams to do in the first place. ",
"That it coincided with Lucy getting to an age where she needed him around made it a natural transition point for a man who had spent his entire adult life at war. ",
"It was time for a change and he knew it. ",
"It was time to focus on his family.",
"\n\nReece thought back to his last homecoming, when Lauren had kept Lucy up way past her bedtime in anticipation of Reece's return, but not telling her why, just in case there was a delay, as happened so often with military transportation. ",
"The strains that such delayed returns placed on families could be significant; most guys would not tell their families exactly when they were coming home, lest they disappoint them with the inevitable delay. ",
"Delays of a day seemed like a week while a delay of a week felt like a month.",
"\n\nReece remembered an entire Army brigade that was at the airport in Baghdad, ready to go home after a year in country, only to be turned around to fight for another four months. ",
"Some were even already safely back in the States and had to return to the quagmire that was Iraq. ",
"The sting of the deaths during those extended months must have been exceptionally hard to bear. ",
"Reece tried not to think of how the families of servicemen killed in action felt about the present-day struggle in the cradle of civilization.",
"\n\nOn that last return, Reece had a taxi let him off at the end of the block so as not to ruin the surprise for Lucy, doing his best not to sprint down the sidewalk to his house. ",
"He had texted Lauren that he was almost home as he crept up past the front gate in the darkness. ",
"Before knocking he peered through the stained-glass section of the door to see Lucy curled up with Lauren on the couch watching what was inevitably a Disney movie. ",
"He had paused and let his eyes mist over with emotion, looking through the colored glass at the two people he loved more than anything else in this world: his family.",
"\n\nLauren was stroking Lucy's hair and had looked toward the door, catching her husband's eye and smiling the most beautiful smile he had ever seen. ",
"God, she was gorgeous. ",
"Then he watched as she had whispered something in Lucy's ear and pointed at the door. ",
"Lucy had bolted from the couch with eyes as wide as saucers and a smile that would melt a glacier, rushing toward the door as fast as her young legs would carry her, her stuffed green frog clutched tightly in her small hand. ",
"Throwing open the door, Reece had taken a knee, Lucy running full speed into his outstretched arms and holding him with the strength only children hugging their parents possess, all the while repeating, \"Dada, dada\" over and over again like it was the only word she knew. ",
"Reece recognized that strength for what it was: a child's unconditional love. ",
"Standing with Lucy in his arms, Reece had moved into the house and met his stunning wife halfway across the living room floor, the three of them holding each other tight, the tears of joy flowing freely. \"",
"Welcome home, my love,\" Lauren had whispered. \"",
"We missed you.\"",
"\n\nLater that night, Reece read Lucy her favorite story, Where the Wild Things Are, acting out the goofy dances of the wild things so as to ensure it wasn't too scary for his daughter, and sang her favorite lullaby, \"Hush Little Baby.\" ",
"As he concluded with \"you'll still be the sweetest little baby in town\" Lucy's eyes had closed, drifting off into the innocent slumber of youth. ",
"Reece had tucked the covers around her, smiling down at his little angel and kissing her forehead. ",
"He then made sure the night-light was plugged in before carefully and silently closing the door behind him and tiptoeing down the hall to join Lauren in the kitchen for a long-overdue glass of wine before whisking her upstairs to bed.",
"\n\nTurning off the main road and into his neighborhood, Reece was jolted out of his reverie, his heart sinking into his chest, the faint reflection of emergency lights on the treetops making the hair on the back of his neck stand up. ",
"The lights got brighter as he approached his turn and when the Cruiser made the left, his blood ran cold. ",
"Instead of the picturesque suburban scene he'd dreamed about during his entire deployment, his eyes were met by the violent flashing of red and blue lights coming from what appeared to be every police car, fire truck, and ambulance in Coronado. ",
"The emergency vehicles were scattered haphazardly in front of his home and a uniformed officer was stringing yellow \"police line\" tape around the perimeter of his well-manicured yard to keep the gathering of neighbors from trampling the scene. ",
"The rational center of his brain knew exactly what that meant but his emotions forced him into immediate denial. ",
"His family had to be okay; they were all he had left.",
"\n\nLeaving the Cruiser running in the middle of the street, Reece sprinted toward the front door of his home. ",
"He made it about halfway across his lawn when the officers spotted him and began yelling for him to stop. ",
"The first to reach him was a zit-faced patrol officer who looked younger than the kids showing up for BUD/S. He stood as if the badge on his chest alone would stop the speed and momentum of the larger man. ",
"Panic set into his eyes as Reece lowered his shoulder and sent him flying over a hedge. ",
"A second officer drew his handgun but wasn't prepared to use it and quickly found it out of his grasp. ",
"An unseen detective grabbed Reece from behind in a bear hug and got a broken collarbone for his troubles when his shoulder hit the sidewalk. ",
"More and more officers piled into the melee and soon all of Reece's adrenaline and rage-fueled skill was overcome by the sheer mass of bodies. ",
"As officers struggled to get control of his hands, someone sprayed his face with a full blast of pepper spray that set his senses afire. ",
"The handcuffs were already locked tightly around his wrists when the youngest officer, who had caught his wind and climbed his way out from the landscaping, got his revenge, kicking Reece's prone body in the face with his black combat-style boots.",
"\n\nA lieutenant grabbed the younger officer and four patrolmen dragged Reece toward the street and into the backseat of an idling Crown Victoria. ",
"Beaten, pepper sprayed, and prevented from knowing the fate of his wife and daughter, Reece was suddenly overcome by the events of the past week. ",
"He'd lost the SEAL brothers he had sworn to lead, was kept from their funerals, scapegoated by a bureaucracy who helped seal their fates, lost another Teammate to a supposed suicide, and now faced the possibility that the two people he loved most in the world were gone, too. ",
"Lying on his side with his hands cuffed behind his back, he began to sob uncontrollably. ",
"The overwhelming emotions combined with the effects of the pepper spray turned the hardened warrior into a quivering mess. ",
"His body shook, he hyperventilated, and tears and mucus ran down his face and onto the seat of the patrol car. ",
"He had nothing left to give and nothing left to lose.",
"\n\n## CHAPTER 11\n\nUNLIKE THE MANIPULATIVE interrogation he'd faced at the hands of the NCIS investigators in Bagram, the questions posed by the local detectives were nonaccusatory. ",
"This physical evidence made it clear that this was not the act of a jealous husband or a guy looking to rid himself of the responsibilities that life had heaped upon him. ",
"The full-auto gunfire reported by the neighbors made the timeline for the home invasion and subsequent murders clear, and his alibi at Balboa was rock solid. ",
"The investigators had spoken to his CO before they'd even questioned him and were already familiar with how Reece had spent the day.",
"\n\nReece sat emotionless as the detectives described to him the horrific crimes that would shock his serene community. ",
"Three to four men, undoubtedly armed with AKMs, judging by the steel 7.62x39mm cases that littered the scene, began firing into the home as they approached the front door. ",
"They kicked it in and continued firing as they worked their way through the rooms of the home, spraying rounds indiscriminately as they went. ",
"His wife was found facedown in the bedroom closet, shielding little Lucy's body with her own as she took her last breaths. ",
"It appeared as if she'd wounded at least one of the shooters with the handgun she'd hastily grabbed from a small gun safe close to the bed. ",
"There was 9mm brass inside the closet and a blood trail that led out of the house. ",
"Lauren's wounds indicated that she was hit in the hands and arms while defending herself before she moved to cover her daughter and was killed by close-range rifle shots that took both of their lives. ",
"An entire thirty-round magazine appeared to have been emptied into Lauren at point-blank range. ",
"Death would have been more or less instantaneous from the multiple hits to her vital organs.",
"\n\nLucy was still clinging to life when the ambulance arrived, but her badly broken body could fight no longer, and she died on the way to the hospital. ",
"The paramedics fought like lions to save her, but the trauma was too great. ",
"There was no indication of sexual battery on either body or any sign of theft, probably due to Lauren's brave resistance that wounded one of the shooters.",
"\n\nNeighbors saw the men flee the scene in a black Cadillac sedan. ",
"The detectives' working hypothesis was that this was the work of a crew of gang members from across the bay in Barrio Logan. ",
"They'd been increasingly suspected in \"taggings\" and property crimes in otherwise crime-free Coronado and had obviously upped the ante in committing such a brutal home invasion.",
"\n\nReece listened to their narrative, knowing full well that this was no random act of violence by a crew of gangbangers, but neither was it the work of trained professionals. ",
"There was one last thing, the detectives told him, almost hesitatingly: Lauren had been pregnant. ",
"The little boy had been conceived just before Reece's deployment, according to how far along she was. ",
"Lauren had kept it a secret, a surprise to make his final homecoming especially memorable. ",
"He thought the pain couldn't have been any greater, but the news drove him deeper into despair.",
"\n\n• • •\n\nWhile Reece met with the investigators, the crime scene team continued to process evidence at his home. ",
"Phillip Dubin had wanted to be a police detective as long as he could remember. ",
"He came from a long line of Boston cops and, much to his mother's chagrin, had never changed course. ",
"She had a momentary glimmer of hope when he had enlisted in the Navy, hoping he would use his GI Bill to become a doctor or a lawyer, but instead, Phil used his GI Bill to attend John Jay College of Criminal Justice in New York City, graduating at the top of his class. ",
"As upset as his mother was that he chose the family profession, she was even more dismayed that he decided to settle down across the country in San Diego, where he had spent the majority of his Navy time. ",
"He had caught the tail end of the First Gulf War, spending most of that time in the bowels of a minesweeper, which did nothing to encourage him to pursue a career at sea. ",
"Stationed on the west coast, he fell in love with the weather, the beaches, and the laid-back atmosphere, which were all in stark contrast to his upbringing on the streets of Boston. ",
"He met his wife while she was working in the district attorney's office; she now ran their household full-time. ",
"After twenty years on the San Diego Police Department, he had attained the rank of lieutenant in the Homicide Division. ",
"Happily married and with three kids of their own, Phil could not imagine a more ideal life. ",
"He had a job he loved and a family he loved even more.",
"\n\nDetective Dubin had a tough time separating the cop in him from the husband and father as he slowly made his way through Reece's front yard. ",
"He had been called to the beautiful resort town that was Coronado on a few occasions for work, once for a brutal murder-suicide and another time for a questionable suicide by hanging. ",
"Coronado had detectives to handle such investigations but when there was a link to the city across the bay they would reach out for assistance from the SDPD.",
"\n\nAfter checking in and nodding to a few familiar faces, Phil climbed the front steps, knowing that the grislier parts of the crime scene awaited him. ",
"He had seen a lot in his career as a cop, but no father could ever get used to something like this. ",
"The nights he spent on murder investigations where young lives had been taken always caused him to pause and appreciate his own kids just a bit more when he got home.",
"\n\n\"Hey, Phil.\"",
"\n\n\"Hey, Chuck,\" Phil responded to the local detective. \"",
"How bad is it?\"",
"\n\n\"This one is rough. ",
"We don't get a lot of this over here, as you know. ",
"Thanks for coming.\"",
"\n\n\"No problem. ",
"What do you have?\"",
"\n\n\"Looks like a home invasion, though we've never seen anything like this before out here. ",
"Hard to believe it's random. ",
"I just don't know why a bunch of gangbangers would want to hit a small house in Coronado.\"",
"\n\nPhil nodded and looked past the small town detective, who continued to fill him in.",
"\n\nThe carpet was soaked in blood and the room was littered with shell casings marked by numbered yellow markers. ",
"Watching the medical examiner bag up a dead body was something Phil never got used to, and seeing the lifeless form of what had only hours before been a vibrant and beautiful woman caused the Boston native to look away.",
"\n\n\"That was Lauren Reece. ",
"She was Signal Seven when the first units arrived on the scene. ",
"They found her daughter under her, still alive. ",
"The paramedics rushed her to the hospital but she didn't make it: multiple bullet wounds. ",
"Looks like the mom got a few rounds off with a Glock. ",
"We found a 19 and some spent brass close to her body, some blood in the hallway, and some more by the front door. ",
"The mom and daughter were shot in here, so we think she hit at least one of them.\"",
"\n\n\"Any chance this was the husband?\" ",
"Phil asked. ",
"He had seen his share of domestic problems turn violent.",
"\n\n\"Surprisingly not. ",
"A neighbor gave us a good vehicle description and multiple perps. ",
"The husband is a Navy guy and was at Balboa Hospital all afternoon. ",
"We are interviewing him now but it looks unlikely.\"",
"\n\n\"Thanks, Chuck. ",
"I'm just going to look around a bit. ",
"Our gang task force guys will be here soon.\"",
"\n\n\"Okay. ",
"Let me know if you figure anything out.\"",
"\n\nPhil began to explore the home, trying to get a sense of what this family was like when they were alive. ",
"He wanted to understand them so he could make assessments and attempt to decipher what had caused their lives to end so violently in this normally safe section of San Diego. ",
"He entered a room off the bedroom that looked to be the home office.",
"\n\nWhy would a gang hit this particular home?",
"\n\nWhen Phil had started in police work he would always go straight to the family photo albums. ",
"More than once the story he gleaned from those family memories helped connect certain dots and allowed the young police officer to break a case. ",
"These days, hardly anyone kept family albums. ",
"Photos were spread out over different computers and hard drives and online accounts, making it exceedingly difficult to use them the way he had back in the 1990s. ",
"Now he used the photos on the walls and desks and dressers instead.",
"\n\nPhil took in the room methodically. ",
"Not messy but not particularly clean; \"lived-in\" would be the more apt term. ",
"Things looked organized but not remarkably so. ",
"At first glance, it looked like a typical home office, but it quickly became apparent that there was something different about this family.",
"\n\nPhil's eyes were immediately drawn to a wall containing three tomahawks of varying sizes. ",
"You don't see that every day in San Diego. ",
"Though he knew next to nothing about the weapons mounted to the office wall, he thought one reminded him of something out of the movie Last of the Mohicans. ",
"A more modern-looking one was attached to a plaque above a group photo of men in full military battle gear standing around a bombed-out building. ",
"Operators. ",
"Two of the men held a black flag with Arabic writing. ",
"All looked like serious people you'd want on your side in a fight. ",
"The plaque read, \"To Lieutenant James Reece from the men of Alpha Platoon.\" ",
"A skeleton of a frog was engraved under that with the warning, \"Don't Fuck With Us,\" above a list of close to thirty names.",
"\n\nPhil stepped back and took in the remainder of the room. ",
"Who is this guy?",
"\n\nWhat Phil recognized as a samurai sword rested under glass in a presentation frame on the opposite wall. ",
"It looked old, not like the imitation ones Phil had seen for sale in shops downtown. ",
"A small brass plate was glued inside the glass under the sword. ",
"Phil bent forward to look more closely:\n\nLTJG THOMAS REECE\n\nSCOUTS AND RAIDERS\n\n1945\n\nNot a normal house and not a normal guy, Phil thought, moving to the desk and picking up a family photograph, James and Lauren Reece looking back at him. ",
"Even in the picture, he could tell these were special people. ",
"Both were beaming with joy, James holding his young daughter in his arms, Lauren's arm around him with her head on his shoulder. ",
"It must have been before some sort of formal event since James was wearing his dress blues, the unmistakable SEAL Trident gleaming off his chest. ",
"Phil pulled the photo closer. ",
"Was that a Silver Star? ",
"And next to that a Bronze Star with V adorned with two stars on either side? ",
"Though Phil had only served four years in the Navy, he knew the Trident well. ",
"His time on the minesweeper was spent with a few guys who had tried the famed SEAL training program and failed out for various reasons along the way. ",
"Phil looked back to the medals on Reece's chest and then back around the room, noting that none of the medal citations were displayed on the wall. ",
"Humble guy, Phil thought admiringly.",
"\n\nOpening a desk drawer, Phil rummaged through the contents: pens, some random business cards, and a few nice knives. ",
"As he was about to shut the drawer, Phil stopped and reached inside, a worn silver lighter catching his eye. ",
"Turning it over in his hand Phil looked at an enameled emblem of a beret-clad skull hovering over the letters \"MACV-SOG\" and the year \"1967.\" ",
"The initials \"T.S.R. III\" were engraved beneath the image. ",
"Phil assumed that the lighter had belonged to Reece's father, based on the date and the last initial. ",
"Though he would have to do some research, he seemed to recall that MACV-SOG was some sort of covert action or special operations unit in the Vietnam War. ",
"Flipping it over, he was surprised to see an engraving of what appeared to be a strange-looking chicken with the words Phung Hoàng above it. ",
"Odd.",
"\n\nReturning the old Zippo to the drawer, Phil turned his attention to the bookshelves.",
"\n\nThis guy sure likes to read.",
"\n\nBooks, or lack thereof, often gave him an insight into the mind of a suspect. ",
"Phil had been in a lot of houses over the years, but he couldn't remember many like this. ",
"This guy was a student of war. ",
"The books seemed to be arranged loosely by topic and period. ",
"Titles such as The Accidental Guerrilla, War of the Flea, Counterinsurgency, The Sling and the Stone, Counter-Guerrilla Operations, and A Savage War of Peace jumped out at the detective. ",
"Right next to Machiavelli, Epictetus, and Marcus Aurelius were books on the Boer War, the Rhodesian Selous Scouts, and various other conflicts spanning both recent and ancient history. ",
"Phil pulled a book titled The Book of Five Rings, by Miyamoto Musashi, and cracked the cover. ",
"It was obviously well read, as the binding showed signs of wear, but what was most interesting to the detective were the page numbers written inside the front cover. ",
"Flipping through the book, Phil noted that these page numbers corresponded with highlighting and underlining, the margins filled with notes. ",
"Flipping randomly to one, Phil read a note that made him shiver.",
"\n\nDeliberately closing the book, Detective Phil Dubin returned it to its home on the shelf with respect. ",
"Looking back at the menacing-looking tomahawks on the wall, Phil had a thought he had never had on a crime scene before: God help whoever did this.",
"\n\nWhen his kids woke up in the morning, Phil would be there to hug them even tighter than usual.",
"\n\n• • •\n\nThe events of the next few days were a blur. ",
"Reece was in too much shock to even help with the funeral arrangements. ",
"Lauren's family lived in Southern California and her sister, a prominent L.A. attorney, handled all the details.",
"\n\nAs it is when young people are taken before their time, hundreds attended the memorial service. ",
"Both caskets were closed, due to the severity of their brutal wounds. ",
"Reece was numb. ",
"The pastor, in whose church Lauren had grown up, gave the eulogy. ",
"It seemed like just yesterday that he was conducting their wedding ceremony. ",
"He did a good job of immortalizing the wonderful human being who Lauren was, and he tried his best to reconcile Lucy's death as part of \"God's plan.\" ",
"Reece appreciated the kind words heaped upon him by well-meaning friends and relatives, but the \"they are in a better place\" comments nearly sent him into a rage.",
"\n\nThe graveside ceremony was a private affair, but the SEALs from the other platoons at Team Seven showed up anyway. ",
"They were family. ",
"They all knew and loved Lauren and Lucy. ",
"She was the kind of SEAL wife who was always there for the other wives and girlfriends when times were tough and the guys were overseas. ",
"Lucy was Reece's constant companion between deployments and every man had melted at least once before her angelic smile. ",
"Lucy's tiny casket flanked that of her mother's, her beloved stuffed frog tucked inside at Reece's request.",
"\n\nAs the pastor concluded his short remarks, Special Warfare Operator Master Chief Petty Officer Ben Edwards approached Lucy's casket and stood at rigid attention in his immaculate dress blue uniform. ",
"He removed the golden Trident badge from his left breast and placed it on top of the casket's lid. ",
"He pressed downward, forcing the brass pins on the back of the badge into the highly polished walnut veneer until it sat flush. ",
"He then executed a hand salute with tears in his eyes and moved swiftly away. ",
"The scene was repeated by every SEAL present at the ceremony, until the entire lids of Lucy's and Lauren's caskets were clad in golden Tridents. ",
"These hardened warriors, most of them husbands and fathers themselves, had honored Lauren and little Lucy with a tradition reserved for SEALs slain in combat. ",
"As far as they were concerned, Lauren and Lucy had died in battle.",
"\n\n## CHAPTER 12\n\nREECE DID NOT MOVE for more than an hour. ",
"When he did, he knelt at the graves of his wife and daughter, head bowed, tears streaming. ",
"It was a knowing hand on his shoulder that revived him from his trance. ",
"Reece turned his head and looked up into the eyes of a short, almost scrawny man of Mexican heritage. ",
"The man helped Reece to his feet and embraced him.",
"\n\nReece looked into the face of his friend but didn't change his expression. ",
"With considerable effort, Marco del Toro turned Reece from the graves of his family and slowly walked him to the waiting new Mercedes S-Class Maybach sedan. ",
"A driver, looking suspiciously more like a prison guard than a chauffer, opened the door for them and Marco helped Reece inside before moving around the big car to the opposite side door. \"",
"La casa,\" Marco told the driver, who put the car in drive and headed back to Coronado.",
"\n\n\"Tequila?\" ",
"Marco asked.",
"\n\nReece slowly shook his head.",
"\n\nMarco reached into the seatback, pulled out a bottle of Cuervo's best 1800 Colección, and pulled a swig.",
"\n\n\"I am sorry I missed the funeral, my friend. ",
"I was in Mexico City on business and could not get home in time.\"",
"\n\nMarco del Toro was one of Reece's closest friends. ",
"At first glance, one would think them an odd pairing: the naval commando and the Mexican businessman. ",
"But with further investigation it was evident that they connected around the ties of family. ",
"Marco's daughter Antonia was the same age as Lucy. ",
"They attended the same preschool and loved their playdates at the beach. ",
"Marco's wife, Olivia, and Lauren had bonded over tennis, which they both played with vigor. ",
"Try as they might to get their husbands on the courts, Reece and Marco chose to spend their time on the mat and in the ring, training in Brazilian jiujitsu and boxing. ",
"Marco was by far the better jiujitsu practitioner, besting Reece at every turn. ",
"How such a small man harnessed so much strength and determination was astounding. ",
"Reece could never quite figure out how to beat him. ",
"His technique was flawless. ",
"In the boxing ring Reece came close, but the one time he bested Marco he was fairly certain the smaller man had let him win.",
"\n\nBoth men also enjoyed a shared love of custom motorcycles. ",
"Two years before, Reece and Lauren had joined Marco and Olivia on a trip to Sturgis for bike week. ",
"Marco had flown them all out on his corporate G550 jet and, with beautiful new Harleys waiting on them when they landed, they enjoyed a few days exploring the Black Hills of South Dakota and the spectacle that is the Sturgis motorcycle rally. ",
"Reece loved his adventures with his friend, but it was Marco's love and dedication to family that Reece admired most.",
"\n\nReece knew that Marco was a wealthy man. ",
"His multiple homes in Coronado and what seemed to Reece to be an almost unending supply of new high-end vehicles made that abundantly evident, but it was not until Reece and his family joined Marco at one of his family villas in Mexico that Reece fully understood the extent of Marco's affluence. ",
"Reece had twice accompanied Marco down to estates in Mexico, hunting birds in areas not usually accommodating to foreigners, but those hunting estates were nothing compared to the villa. ",
"It was what most would consider a private resort and was located just south of the bustling beaches of Puerto Vallarta. ",
"A full staff waited on their every need while Antonia and Lucy played in the waves under the watchful eye of nearby private security contractors. ",
"Vast real estate holdings, a telecommunications company, and Mexico's largest insurance firm fell under Marco's portfolio, making him extremely prosperous. ",
"This also made him and his family prime targets for Mexico's kidnap-and-ransom industry.",
"\n\nAfter a close call in Mexico City a few years earlier, Marco decided to move his family to San Diego, choosing the resort community of Coronado for its safety and proximity to his businesses across the border. ",
"As of the past year, Marco and his family were dual citizens, an honor for which Marco was exceedingly grateful. ",
"That America had welcomed him and his family with open arms, offering them a refuge from the violence and uncertainty of Mexico, was something he did not take lightly.",
"\n\n\"It's okay, Marco. ",
"Thank you for coming. ",
"How long was I standing there?\"",
"\n\n\"Not sure, my friend,\" Marco said with compassion. \"",
"I arrived to see you standing alone. ",
"I waited for an hour. ",
"When I saw you hit your knees I knew it was time to lend a hand.\"",
"\n\nThey sat in silence as the car made its way along the coastline, inching closer to home. ",
"Marco was a devout Catholic, and nothing was more important to him than religion and family. ",
"When Marco spoke again it was both with reverence and sealed resolve. \"",
"But for the grace of God, that is my daughter, my wife. ",
"Those that did this are scum, lowlife gangbangers. ",
"They violated an agreement. ",
"I will take care of the bosses regardless of whether they knew or not. ",
"And I will help you, my friend. ",
"I know what you need to do.\"",
"\n\n## CHAPTER 13\n\nCoronado, California\n\nREECE SAT ALONE IN the darkness of his living room. ",
"His senses had been bombarded by too much; he just needed to see and hear nothing. ",
"The headaches had gotten even worse. ",
"Reece was sure that his tumor was killing him. ",
"Seeing his home looking like the aftermath of a firefight on a target overseas only intensified the blinding pain. ",
"The interior walls had been shredded by gunfire and the front door had been replaced by a four-by-eight foot sheet of plywood screwed into the frame. ",
"The blood-soaked carpet in his bedroom had been torn out by the cleanup crew and much of the furniture had been either shot up or smashed. ",
"For reasons unknown to him, the violence that he'd fought to keep overseas had come to his living room and taken his family.",
"\n\nWhat if he had come straight home from the airfield instead of going to the Team first? ",
"What if he hadn't gone to Boozer's? ",
"What if he had refused to go to Balboa Medical Center and driven directly home to his family? ",
"What if . . . ?",
"\n\nCould he have defended his family from a gang of heavily armed home invaders? ",
"Would his skill with a handgun have been enough? ",
"Could he have fought his way to his rifle or shotgun?",
"\n\nReece knew the answer to any of those questions was that he would probably be dead alongside his wife and daughter. ",
"He had to believe that he was spared for a reason: to find out what happened and punish those responsible.",
"\n\nReece thought he knew something about survivor's guilt, having seen some of the strongest special operators in the world fall prey to its ravages after losing Teammates in battle. ",
"The events of the past few days made him realize that he really didn't know the first thing about it.",
"\n\nI should have been here. ",
"I should have died with them, Reece thought, his gaze shifting to the space on the sofa next to him, where his young daughter had loved to curl up for a story, where his wife would snuggle beside him with a glass of wine to watch a movie after putting Lucy to bed. ",
"That space would never know that joy again. ",
"Now it was empty, a void never to be filled. ",
"Well, not quite empty. ",
"Now that spot was occupied by the cold dark metal and composite frame of his Glock 9mm handgun.",
"\n\nWould death make the pain go away? ",
"Should he just end it all and join Lauren and Lucy? ",
"More than anything, that was what he wanted. ",
"His hand reached for the Glock and slowly wrapped around it. ",
"It felt comfortable. ",
"It felt natural, an extension of his body. ",
"It felt right. ",
"Reece set it on his lap, his eyes moving to the family photo he had on the coffee table in front of him.",
"\n\n\"I love you, Lauren,\" he whispered, moving the pistol under his chin and sliding his finger onto the trigger.",
"\n\nYou've never taken the easy route, Reece.",
"\n\nThis was too easy. ",
"Fuck easy.",
"\n\nReece's eyes narrowed and he took a breath.",
"\n\nLet these feelings turn, Reece. ",
"Let them turn. . . .",
"\n\nReece leaned forward, smoothly tucking the pistol into the holster behind his right hip and then turning the photo of his family over so that it was facedown on the table.",
"\n\nIt was time to start figuring this out.",
"\n\nAs much as he tried to clear his head of all of the noise, he just couldn't do it. ",
"Facts that didn't fit flashed in his thoughts like a slide show of evidence: the strange and urgent mission that left his men slaughtered, the tumors, the questions from NCIS, Boozer's \"suicide,\" and an act of unspeakable violence brought upon his family on this quiet little street. ",
"These kinds of things didn't happen randomly, not in this kind of proximity to one another.",
"\n\nHe started with the things that he knew for certain; Boozer's death was no suicide. ",
"First of all, Boozer wasn't the kind of guy to quit on anything, especially life, and he sure as hell wouldn't have abandoned Reece in the middle of all this, PTSD or not. ",
"The most telling fact, however, was something Reece had not shared with the police investigators. ",
"It was something you had to know about Boozer to understand; he would never have shot himself with a 9mm. ",
"An outsider trying to make it look like a SEAL suicide would find it convenient to use the same type of handgun that SEALs were issued. ",
"What they couldn't know was that Boozer was a real gun guy who'd grown up shooting competitively before he ever even thought about joining the Navy to become a Frogman. ",
"Boozer had a love affair with custom 1911s chambered in .45 ACP, which most people just would not understand. ",
"Boozer hated the \"9 mil,\" and even though he had a SIG P226 in his personal collection to commemorate the pistol all SEALs had carried into combat since 9/11, his disdain of the smaller round was part of his identity.",
"\n\nBut who in the hell would want to kill Boozer and go to the trouble of making it look like something it was not? ",
"The same people who would send an entire troop into an ambush and then kill a family in their home and blame it on gang violence. ",
"Whoever did this had some serious resources at their disposal, possibly even someone in the Naval Special Warfare chain of command, though Reece could not bring himself to make that jump yet. ",
"He did not buy in to government conspiracies, but he'd seen enough shady and unexplainable things go down overseas that he wasn't naïve enough to rule anything out, either. ",
"But what was the connection? ",
"The ambush, Boozer, his family, the tumors, they all had one common denominator: Reece. ",
"The tumors were the outlier. ",
"This had to be connected to the tumors. ",
"His head throbbed and he momentarily lost his train of thought. ",
"He needed a fresh set of eyes on this, but who, if he couldn't trust his own chain of command, could he trust?",
"\n\nReece burst from the couch and ran down the hallway, flinging open the door to the garage. ",
"He grabbed his pack from a hook on the wall and reached in for the sleeve that held his laptop. ",
"Pulling out the MacBook Air, he opened the screen and a business card fluttered to the floor. ",
"He started to dial the number on his iPhone but stopped himself, hitting the END button before the call connected.",
"\n\nHe looked at his watch: 10:36 p.m., probably not too late. ",
"He walked out the back door of his house and crossed the lawn to his neighbor's front door. ",
"He knocked quietly, trying to attract his neighbor's attention without waking his sleeping kids. ",
"He knocked progressively louder until his neighbor, who had obviously been sleeping, opened the front door shirtless and in his boxers.",
"\n\n\"Hey, James, what's up? ",
"What can I do for you?\"",
"\n\nHis neighbor was a good guy, some kind of civilian software geek who was always polite and showed evidence of a slight man crush on his commando neighbor. ",
"When he saw that Reece customarily backed his truck in the driveway, he started doing the same. ",
"Next thing you know, he was wearing the same sunglasses as Reece and driving an old Toyota Land Cruiser. ",
"The guy was harmless, and maybe even useful. ",
"Reece could never remember his first name.",
"\n\n\"Hey, man, my battery is dead and I really need to make a call. ",
"Can I use your phone?\" ",
"Reece asked in his most neighborly tone.",
"\n\n\"Of course, James . . . ",
"I mean, Reece . . . ",
"come on in and use the one in my office.\" ",
"The neighbor led Reece into a small home office, where a landline sat next to a panel of three computer monitors. ",
"He stood by the door and looked at Reece for a moment until he got the message and quickly left the room, shutting the door behind him.",
"\n\n\"This is Katie,\" she said, picking up on the first ring.",
"\n\n\"Katie, I'm sorry to call you so late. ",
"This is James Reece. ",
"We met in Afghanistan a couple of weeks ago.\"",
"\n\n\"James, of course, oh my gosh. ",
"I read about what happened to your family and wanted to reach out. ",
"I'm so sorry.\"",
"\n\n\"I appreciate that. ",
"It's actually what I'm calling about. ",
"This whole thing just doesn't make sense and I need to run it by a fresh set of eyes. ",
"I read the series you did on Benghazi. ",
"It was really impressive. ",
"Any chance you would be willing to sit down with me?\"",
"\n\n\"Absolutely, can you meet me in L.A. or do you want me to drive down there?\"",
"\n\n\"No, no, L.A. is fine. ",
"Can you meet tomorrow?\"",
"\n\n\"I can. ",
"Is eight too early? ",
"There's a Starbucks downstairs from my condo. ",
"It's at Fifth and Fig, downtown.\"",
"\n\n\"Eight is fine. ",
"I don't sleep anyway. ",
"I'll see you in the morning.\"",
"\n\n\"I understand,\" said Katie sympathetically. \"",
"How could you? ",
"See you in the morning.\"",
"\n\n\"See you then, and Katie . . .\"",
"\n\n\"Yeah, James?\"",
"\n\n\"Thanks.\"",
"\n\n## CHAPTER 14\n\nLos Angeles, California\n\nTHE DRIVE UP INTERSTATE 5 to L.A. helped clear Reece's head a bit. ",
"Sleep hadn't come the night before, but strong Black Rifle Coffee, tempered with some honey and cream, and driving with the windows down made him feel halfway human. ",
"It was pitch dark when he left the house. ",
"If he was going to make it to downtown L.A. in time to meet Katie, he was going to have to do his best to beat some of the planet's worst traffic. ",
"Contrary to what civilians might think, not everyone in the military gets up before dawn, and Reece was definitely not a morning person.",
"\n\nOrdinarily he'd use an app on his phone to help navigate the L.A. traffic, but he'd purposely left his phone on his nightstand when he left the house. ",
"The joke in the Teams was that smartphones were \"surveillance devices that also made phone calls,\" and he wasn't sure exactly who was watching him at this point. ",
"He took I-5 all the way to I-10 and then onto the I-110 simply because that was the way he knew best. ",
"Traveling to a monstrous city like Los Angeles wasn't something that he relished or did very often. ",
"Parking in L.A. could be a nightmare, but he knew from a shopping trip with Lauren that there was a garage near the Seventh and Fig shopping area downtown that would have plenty of space this early.",
"\n\nIt wouldn't take much to have followed him, especially if any satellite or drone assets were involved, so Reece didn't play any countersurveillance tricks to try to lose anyone. ",
"The parking lot was deserted and the three-block walk from Eighth to Fifth was uneventful but for the solicitations of a few of L.A.'s massive homeless population. ",
"Something about Reece's demeanor told the panhandlers not to be too aggressive with their requests, though most were too hungover to give it much effort. ",
"Reece had to chuckle when he saw a man facedown on the sidewalk with a length of rope tied around his neck and the other end tied around the neck of a bottle of cheap vodka.",
"\n\nHe'd planned to hit the Starbucks before Katie arrived so that he could pick their seats without raising any eyebrows by asking her to move, but she'd beaten him to the punch. ",
"As soon as he walked through the door he spotted her in the far corner, seated with her back to the wall. ",
"She'd stolen his spot. ",
"Despite being a well-respected investigative reporter, Katie Buranek was quite young and undeniably attractive in a way that obviously required very little effort on her part. ",
"She was dressed in workout clothes: black yoga pants, and a tight-fitting bright orange zippered top. ",
"She wore little, if any, makeup and her dirty-blonde hair was pulled back into a ponytail. ",
"She wore black rectangular glasses, probably more for effect than to enhance her vision, Reece thought. ",
"Though she was a print journalist, she certainly had the looks and brains to put her on one of the cable news networks. ",
"Reece was in his late thirties, and he assumed her to be at least ten years younger than he, if not fifteen.",
"\n\nThe last time they'd met had been at Bagram. ",
"Reece had just been discharged from medical when she tracked him down in a Green Beans Coffee, of all places. ",
"Bagram had turned into a mini-USA over the years and the Green Beans was similar to going to a Starbucks, with gourmet coffee, free Wi-Fi, and plenty of places to sit and enjoy your latte. ",
"To Reece, the more they tried to make Afghanistan like home, the more alien and out of place it became. ",
"Despite his civilian clothes, she knew exactly who Reece was when she sat down across the table from him. ",
"She had slid her business card across the table and simply said, \"Commander Reece, I'm sorry about your men. ",
"I know that now is not the time, but if you want to talk about it, you know how to get a hold of me.\"",
"\n\nA reporter who had the good taste not to smear herself in the blood of his men was a rare bird, and her intel was obviously strong. ",
"Reece was a bit of a news junkie and he'd remembered her name from a series that she wrote exposing the lies and cover-ups that followed the Benghazi fiasco. ",
"He had known both of the SEALs killed that night in Benghazi, Libya, during a thirteen-hour gun battle in September 2012, so he had taken a personal interest in Katie's coverage and investigation of the attack.",
"\n\nShe stood with a slight smile and extended her hand.",
"\n\n\"Nice to see you again, James.\" ",
"Her face showed genuine sadness when she followed it with \"I'm so sorry about all that you've been through and I'll do anything that I can to help. ",
"Thanks for making the trip up here.\"",
"\n\nShe had the slightest hint of an accent, though most people would not have noticed. ",
"Eastern European, he suspected by her last name.",
"\n\n\"Not a problem. ",
"I appreciate the kind words and your being able to meet on such short notice. ",
"Let me grab a coffee and we can talk.\"",
"\n\nReece stood uncomfortably in the growing pre-workday coffee line as Katie pecked away at her laptop. ",
"She caught him glancing her way and flashed a polite and knowing smile. ",
"He finally got his coffee and sat down across from her at the small table.",
"\n\nUsually Reece would be very hesitant to talk about the events of the past few days in such a public setting, but the music in the coffee shop was loud enough that anyone's attempt to overhear their conversation, either in person or electronically, would have been a failure. ",
"As it was, Reece and Katie had to lean toward one another across the table to talk. ",
"He was relieved when she closed her laptop and pulled out a long spiral notebook to take notes; he wasn't dying to have this information on someone's computer.",
"\n\n\"Start from the beginning and don't leave anything out. ",
"I promise I am not going to write about this without your permission.\"",
"\n\nReece started the story with a week before the operation that wiped out most of his unit, to add a bit of context. ",
"He didn't disclose anything remotely classified, but he did convey how unusual it was for a target to come down from higher headquarters with this much specificity and urgency. ",
"She took scribbled notes that no one but a team of archeologists could decipher. ",
"Her head snapped up when he told her about the tumors found in his men's brains, and she asked questions that indicated she knew more than a little bit about the medical field.",
"\n\nHe walked her through the bizarre questioning by the NCIS agents and the inconsistencies in Boozer's supposed suicide, and eventually got to the murder of his family. ",
"She stopped him at various points in the story, asking him to clarify details or expand on certain conversations. ",
"Stress, grief, and exhaustion clouded his memory in certain areas but he was fairly sure that he told her everything that was relevant.",
"\n\nWhen he finished the story she put away her notebook and took off her glasses. ",
"She locked eyes with Reece across the table and her voice took on a quieter and more serious tone.",
"\n\n\"Look, James, I know what you do for a living and I probably don't have to tell you this, but you need to be careful. ",
"We both do. ",
"Whoever is behind this thing isn't playing games. ",
"It doesn't make any sense for them to have done all of this and left you alive, which means they probably intended to kill you along with your family. ",
"If I were you, I wouldn't trust anyone, including the Navy brass. ",
"When my Benghazi series broke, you wouldn't believe the intimidation tactics they used against me. ",
"They hacked my email; I had two huge guys that were obviously feds block me from going down the stairwell in my building; I was audited by the IRS; they even tried to sabotage my deal when I bought my condo. ",
"They were all about letting me know they could get to me and weren't the least bit afraid of me printing something about it. ",
"They own the big media outlets, dangle access to interviews, and exert their influence to manipulate the story while intimidating the press corps. ",
"It's not as bad as what my family endured in Czechoslovakia in the eighties, but it's getting there. ",
"I want to help you and I want this story, but I don't want either of us to get killed. ",
"We need to be very careful about how we communicate.\"",
"\n\nReece nodded in understanding.",
"\n\n\"You don't have to tell me about what they're willing to do. ",
"The last thing I want to do is get you hurt. ",
"I called you from my neighbor's landline last night, and my cell phone is back in Coronado. ",
"They probably don't know that we connected overseas so they won't be onto you unless I lead them to you, which I promise I won't do. ",
"Find yourself a used iPhone, maybe from Craigslist, where you have no relationship with the seller. ",
"Pay cash for it, toss the SIM card, and restore it to factory settings. ",
"You'll need to set up a burner email to get an anonymous iTunes account. ",
"Do that from a library computer or one not associated with you. ",
"You getting all this? ",
"I know it's kind of a lot.\"",
"\n\n\"I've got it,\" said Katie, not looking up as she took detailed notes.",
"\n\n\"Use cash to buy an iTunes gift card so you can download Signal. ",
"It's a private messaging service from the app store. ",
"Make this your username.\"",
"\n\nReece took a napkin from the table and wrote down a series of random letters and numbers. ",
"He copied the same characters at the bottom of the napkin and tore the paper in half, sticking one half in his shirt pocket. ",
"He slid the top half across the table to Katie.",
"\n\n\"It's basically a texting app. ",
"You'll need cell service to get Signal, so just use a prepaid SIM bought with cash. ",
"After that, don't use cell again. ",
"Only use it over public Wi-Fi. ",
"Also download a VPN from Private Internet Access. ",
"Pay for it with a gift card you buy with cash. ",
"Keep Wi-Fi turned off when you are not actively using it. ",
"In fact, keep the phone turned off when you are not using it. ",
"Try to check it at least once a day. ",
"They can still get to you if they are specifically targeting you, but this will make it more difficult.\"",
"\n\nKatie looked up from her notes, \"I'm guessing you've done this before?\"",
"\n\n\"We do a lot more than just swim around and shoot bad guys these days. ",
"Plus, all Team guys are paranoid about communication and social media. ",
"A lot of us use little tricks like this to keep Big Brother at bay. ",
"We've seen the capability we have to track our targets overseas using their phones and we don't want anyone doing that to us. ",
"If it weren't for cell phones, most of the HVIs we've hit would still be alive.\"",
"\n\n\"Okay, so how do I get a hold of you?\"",
"\n\n\"I'll contact you later tonight. ",
"You'll know it's me.\"",
"\n\n\"Sounds good.\"",
"\n\n\"Are you sure you want to do this, Katie? ",
"I don't have anywhere else to turn, but I don't want to see anyone else get killed that doesn't need to be.\"",
"\n\n\"Yeah, I'm one hundred percent sure. ",
"I can take care of myself,\" she said, wondering what he meant by his \"doesn't need to be\" comment.",
"\n\n\"I bet you can. ",
"Thanks again for listening.\"",
"\n\n\"James, if I might, you should get that tumor checked out. ",
"Don't just assume the worst.\"",
"\n\n\"You sound like Lauren.\"",
"\n\nKatie tilted her head sympathetically as Reece rose from his seat. \"",
"What are you going to do now?\"",
"\n\n\"I'm going to work.\"",
"\n\nReece turned and walked toward the door, subconsciously scanning faces in the room. ",
"His meeting with Katie had shaken him out of his funk and put him back into operator mode.",
"\n\n## CHAPTER 15\n\nRiviera Country Club\n\nLos Angeles, California\n\nNO ONE KNEW WHAT Steve Horn looked like as a kid. ",
"Most just assumed that he appeared out of nowhere in a custom suit or golf clothes. ",
"Though he owned homes around the country, he rarely spent much time in them. ",
"If he was not in his office, Horn could be found on the golf course. ",
"He didn't love the game as some would expect. ",
"Rather, it was an outlet, and Horn was after the elusive perfect swing.",
"\n\nHis real love was power, and money brought that power. ",
"He didn't want to be the president of the United States. ",
"He wanted to control the president of the United States. ",
"To him that was a much more formidable position. ",
"To control the most powerful person on earth made him the de facto king of the world. ",
"His hunger to be near the throne would have made him an ideal fit for Washington, but he couldn't stand the climate or the personalities. ",
"He liked to be around exciting and attractive people, and on that front the D.C. elite couldn't compete with L.A. To his way of thinking, the most beautiful people in the world had been moving to L.A. for more than a century. ",
"That was five generations of breeding encapsulated along the California coast. ",
"Why would one live anywhere else?",
"\n\nHorn was on the driving range when his cell phone rang. ",
"Paying no mind to the daggers thrown his way through the glares of those members on the line, he looked down at the caller ID and decided to take the call. ",
"Putting his earbuds in, he turned and walked toward his cart, stepping past a \"no cell phone use\" sign as he spoke.",
"\n\n\"This is Horn.\"",
"\n\n\"Steve, it's J.D.\"\n\n\"Congressman, what can I do for you this fine day?\" ",
"asked Horn, already knowing he was going to have to exercise a bit of damage control.",
"\n\n\"Steve, this thing with 'the Project' is getting messy. ",
"I've tried getting in touch with Tedesco but my calls keep going to voice mail, which is unusual. ",
"Is the group up to speed on where things stand and where we are going?\"",
"\n\n\"Are you calling on behalf of you or your wife?\"",
"\n\n\"Dammit, Horn, I'm calling because Lorraine and I don't want to watch this thing go south on the evening news. ",
"What is your plan to get this mess tidied up?\"",
"\n\nHorn suppressed a laugh. ",
"Who watched the evening news anymore? ",
"And if J. D Hartley did tune in, he certainly wasn't viewing it with his wife.",
"\n\n\"J.D., these things sometimes do not go as planned. ",
"You understand. ",
"What is important is that we keep our heads and adapt. ",
"Do you want to know why I am so successful?\" ",
"Not waiting for an answer, Horn continued: \"It is because I see opportunity in chaos and I adapt to it quicker than anyone else. ",
"Yes, our straggler is still alive and that is a problem. ",
"Due to media interest in the story we are going to need to explore activating one of your assets. ",
"It's time. ",
"And it will play right into the media firestorm surrounding the ambush and the home invasion. ",
"It will wrap things up nicely, and we will be home free.\"",
"\n\n\"Horn, you shouldn't even know about those assets, and the only one who can authorize it is my wife. ",
"But I see your point. ",
"It would close the loop nicely. ",
"Are you sure it's the only way?\"",
"\n\n\"J.D., it is 'a' way, and in this circumstance, the 'best' way.\"",
"\n\n\"All right. ",
"I'll call her now.\"",
"\n\nCongressman Hartley sounded more despondent about having to talk with his wife than he did about their current state of affairs.",
"\n\n\"It will all be worth it in the end, J.D. Please give Lorraine my best.\"",
"\n\nHorn hit the END button.",
"\n\nTossing the phone on the seat of his golf cart, he walked back up to his stack of balls and carefully placed his feet to address the tee.",
"\n\n## CHAPTER 16\n\nCoronado, California\n\nKATIE WAS RIGHT. ",
"He needed to get checked out. ",
"The headaches might be nothing, or they could be a mass in his brain. ",
"At least he would know for sure. ",
"Reece couldn't trust the naval medical system at this point, but he had another option.",
"\n\nWhen Reece got home he dug Dr. O'Halloran's card out of his deployment backpack, sat down on his couch, and dialed the number for the office in La Jolla.",
"\n\n\"Head and Spine Associates, how may I help you?\" ",
"a friendly female voice answered.",
"\n\n\"Hi, my name is James Reece. ",
"Dr. O'Halloran saw me in Afghanistan and told me to call his office when I got back to the States. ",
"I know he's still overseas but I wanted to see if I could set up an appointment for when he gets back.\"",
"\n\n\"Um, hold, uh, hold please,\" the voice stammered, clearly beginning to strain with emotion.",
"\n\nThat's odd, Reece thought, a sinking feeling beginning to well up inside him.",
"\n\nAfter a solid two minutes a male voice with a thick Spanish accent picked up the line.",
"\n\n\"Mr. Reece, this is Dr. German. ",
"I am a colleague of Dr. O'Halloran's; was a colleague, I should say. ",
"I regret to inform you that there was an incident in Afghanistan, devastating to all of us. ",
"Dr. O'Halloran was killed. ",
"It just recently hit the news. ",
"Someone we thought was an Afghan ally, I'm afraid. ",
"Such terrible business.\"",
"\n\nDamnit, this thing is for real.",
"\n\n\"I'm so sorry, sir. ",
"I've been a little distracted since I got back. ",
"I had no idea. ",
"I didn't know Dr. O'Halloran well, but he sure seemed like a great man,\" Reece said sincerely, his mind already connecting the dots. ",
"Could that really be a coincidence? ",
"The doctor who discovered the tumors suddenly dead. ",
"Reece's family dead. ",
"Boozer dead. ",
"The ambush. ",
"Green-on-blue incidents are not uncommon these days, Reece thought. ",
"Good people die in war. ",
"Still, this is not adding up, or rather, it was adding up to something horrifying.",
"\n\n\"That he was, Mr. Reece. ",
"An incredible man, a world-class mind, and a better person than most, I dare say. ",
"He did share your case with me over email, and I have been hoping you would reach out. ",
"I am very interested in getting to the bottom of this. ",
"Dr. O'Halloran asked me to help you if you called. ",
"I handle the neurosurgery here at the clinic and would be the one performing your biopsy. ",
"I am happy to do it; in fact, I insist. ",
"I consider it the last request of my late friend. ",
"Stay on the line and one of the ladies will schedule you an appointment. ",
"It is not a big deal, I promise you. ",
"And there will be no charge, on this I also insist. ",
"Hold, please.\"",
"\n\nReece made an appointment for later in the week and was given instructions on how to prepare for the procedure. ",
"They made it sound so routine, though Reece couldn't envision a way in which they were going to get a tissue sample from inside his skull that he considered \"routine.\"",
"\n\nFive minutes later, as Reece was contemplating the procedure, the phone rang. ",
"It was Commander Cox's command master chief, a SEAL named Dave, with a thick New York accent that, along with the ever-present toothpick in his mouth, made some words almost indiscernible over the phone. ",
"He had a long family history in the New York Fire Department and had lost his brother and an uncle when the towers came down on 9/11. ",
"Dave had worn their Ladder 55 patch on his shoulder each time he had pulled the trigger in combat ever since.",
"\n\nDave got right down to business. \"",
"Reece, I'm not sure what this is about. ",
"Cox is out of the country so I took the call. ",
"You're to report to WARCOM at 1400 today. ",
"Admiral Pilsner wants you in his office.\"",
"\n\nThe hits just keep on coming.",
"\n\n\"Roger that, Dave, I don't think I can take any more good news. ",
"So much for taking the rest of the week off.\"",
"\n\n\"Not our show, Reece. ",
"And Reece? ",
"Um, I'm really sorry about your family. ",
"I don't have the words except to say that I'm sorry. ",
"Keep your chin up, you'll get through this. ",
"Let me know if there is anything I can do.\"",
"\n\n\"Thanks, Dave, I really appreciate it.\"",
"\n\nReece leaned back on the couch, wondering if he had a uniform clean enough for WARCOM.",
"\n\n## CHAPTER 17\n\nNaval Special Warfare Command\n\nCoronado, California\n\nREECE DROVE AS IF on autopilot. ",
"He was behind the wheel, but it felt like the Land Cruiser was driving itself and he was just a passenger, his movements dictated by something outside himself, as if in a dream. ",
"The numbness had given way to anger, which he knew had clouded his judgment. ",
"As he drove he couldn't help but think of his family, the pain in his soul pushing him toward the edge of that proverbial cliff of despair. ",
"Once over, it would be hard to return.",
"\n\nHe pulled off the Silver Strand Highway as he had done innumerable times over the past eighteen years and pulled up to the gate. ",
"The young gate guard recognized the Land Cruiser immediately. ",
"Something about the guy driving it had always seemed special to him. ",
"In a world filled with egos, thousand-yard stares, and rank elitism, this officer gave off a different air, almost akin to a cool college professor. ",
"Never at a loss for a smile and a brief encouraging word, he stood out, especially because this was the same gate the admiral had to use to get to the Naval Special Warfare Command, more commonly referred to as WARCOM, from which all the SEAL Teams were administratively managed. ",
"To the gate guard, WARCOM had the aura of a death star, with the Admiral as Darth Vader, or even worse, Darth Vader's master, what was his name? ",
"The line of cars moving through the gate each morning filled with staff officers headed for their doom . . . .",
"\n\n\"Morning, sir.\"",
"\n\n\"Morning, Ken.\"",
"\n\nNo officers called Ken by his name except for Commander Reece. ",
"In fact they barely acknowledged his existence, just a nuisance before finding a parking spot and starting their days.",
"\n\nReece showed his military ID and Ken saluted, as was protocol for officers.",
"\n\n\"How's your build coming?\" ",
"They had talked cars once, and Reece knew that Ken was rebuilding an old '69 Mustang.",
"\n\nJeez, even with what happened to his family, he still asks about my car.",
"\n\n\"Good, sir. ",
"And, sir? ",
"Um, I'm so sorry.\"",
"\n\nEveryone knew.",
"\n\n\"Thanks, Ken. ",
"You take it easy.\"",
"\n\n\"I will, sir.\" ",
"Ken stepped back, and even though he didn't need to do it again, he straightened up and snapped his sharpest salute as Reece slowly moved through the gate.",
"\n\nThe view of the Pacific Ocean through the sand berms in front of him was spectacular. ",
"Slow rollers were hitting the beach, the cacophony of the sound reminding all that within the beauty was a power that should not be underestimated. ",
"Reece couldn't help but think of their journey from Antarctica to their terminus here in Southern California.",
"\n\nReaching a stop sign, Reece began to swing the wheel to the left but then paused. ",
"To the left were his beloved SEAL Teams, where he had spent the majority of his time in the Navy. ",
"He caught himself and remembered where he was going today. ",
"To the right. ",
"To WARCOM. ",
"Everybody hated going to WARCOM. ",
"The uniforms, the brass, the protocol. ",
"WARCOM was the antithesis of everything that drew guys to the SEAL Teams. ",
"WARCOM was where the senseless directives came from. ",
"Delivered down the chain from people so far removed from the tactical application of said directives that they became the definition of bureaucracy. ",
"Politicians in uniform. ",
"Reluctantly, Reece swung the wheel back to the right. ",
"WARCOM was where the admiral reigned supreme.",
"\n\nReece pulled through yet another set of gates and began to look for a parking place. ",
"The SEAL Teams had expanded considerably in the years following 9/11: new commands, more SEALs, additional support personnel. ",
"What had been neglected was the parking to accommodate those additional bodies. ",
"Typical military planning, Reece thought. ",
"He scanned the lot, immediately noticing a dark blue Bentley parked in the admiral's visitor spot. ",
"Odd.",
"\n\nFinding a place by the fence, Reece put his truck in park, leaned back in his seat, and took a deep breath. ",
"Fuck. ",
"None of this was making any sense.",
"\n\nThe excruciating pain hit Reece like a lightning bolt out of the blue. ",
"These headaches! ",
"Breathe through it, Reece. ",
"It's okay. ",
"Breathe. ",
"You can do this. ",
"Breathe.",
"\n\nThe pain dissipated almost as quickly as it had begun.",
"\n\nReece took one more deep breath and exited the vehicle. ",
"He straightened his uniform, noting for the thousandth time that he was not armed. ",
"He never understood military base policies that prohibited those in uniform from carrying personal weapons on base or even keeping them in their cars. ",
"Reece could check out fully automatic machine guns and grenades from the same base upon which he was not allowed to carry his 9mm pistol. ",
"Policies created by bureaucrats in uniform essentially disarmed some of the most highly trained and competent warriors on earth. ",
"It was only a matter of time until the enemy took advantage.",
"\n\nChecking in at WARCOM was never fun. ",
"The air was different in there even though it was just a few hundred yards from the Teams. ",
"The poor quarterdeck watch had the look of a prisoner awaiting execution and did his job with as much enthusiasm. ",
"Encased behind thick plastic glass, as they were, they always looked as happy as gas station attendants stuck behind similar barriers in bad neighborhoods.",
"\n\nReece turned in his ID for a visitor's badge and was buzzed inside the labyrinth that was WARCOM. ",
"He had been there a few times for briefings and had hated it every time. ",
"Haircuts and strict adherence to uniform standards were the measures of success this far from the battlefield. ",
"Reece did his best to hide his contempt. ",
"Most of the people in the building were too senior to fight when September 11 hit. ",
"When they did venture \"downrange\" it was usually to the safety of a Tactical Operations Center hidden on a sprawling base; an oasis in the heart of bad guy territory.",
"\n\nAdmiral Gerald Pilsner was a short man. ",
"Not out of shape, but not someone who immediately commanded respect. ",
"He was the quintessential officer in the most derogatory sense of the word. ",
"He commanded respect due to his rank, in stark contrast to a guy like Reece, who earned the respect of his men through word and deed. ",
"In the world of special operations, your reputation was your currency, and in that sense Admiral Pilsner was a very poor man. ",
"He had never commanded men in battle; yet he let everyone out of \"the know,\" both in the military and out, assume that he did. ",
"Behind his back the men referred to him as Lord Fobbit, a wartime take on hobbits from The Lord of the Rings. ",
"Fobbits were people who never went outside the safety of the FOB. ",
"The admiral was King of the Fobbits. ",
"How he had risen through the ranks to become an admiral was beyond Reece's comprehension, though truth be told, Reece never really spent much time thinking about it. ",
"He was too focused on his troops and the mission to pay attention to the politics of senior officers. ",
"Reece was built to fight. ",
"The admiral was built to administer and take care of his career. ",
"While Reece was a professional, the admiral was a careerist, a Massengale in the truest sense.",
"\n\nIn recent years a series of very critical articles had surfaced in the New York Times and Washington Post bringing to light multiple investigations into Admiral Pilsner's conduct and vindictive behavior when dealing with subordinates. ",
"Two members of Congress with stellar military backgrounds had taken personal interest in replacing the leaf-eating admiral with someone more befitting leadership of one of the country's premier special operations forces, one even going to the floor of the United States Senate to expose the admiral's nefarious behavior. ",
"If any other officer in the SEAL Teams had anything close to what was written about the admiral appear in print, they would have been removed from their post and summarily \"retired.\" ",
"Reece's guess was that the admiral's liberal political leanings under a far-left Democratic president had a lot to do with his ability to remain in his position. ",
"The admiral was clearly more concerned with force diversity and the push to open the SEAL Teams to females than he was with crushing America's enemies. ",
"Whatever got him his next star. ",
"Even so, Reece couldn't believe this guy could remain in the Navy for much longer, regardless of whom he knew in Washington's corridors of power.",
"\n\nReece made his way to the reception room, where the admiral's aide sat obediently at his desk in neatly pressed khakis with a gold braided rope around his shoulder signifying his position as a flag aide.",
"\n\n\"Here to see the admiral,\" Reece said, noticing the shut door to the senior officer's office.",
"\n\n\"You're early, sir,\" the aide said in a tone that managed to seem both respectful and condescending at the same time.",
"\n\n\"Well, I just couldn't wait,\" Reece responded in a voice that intentionally signified the opposite.",
"\n\n\"Please take a seat, sir. ",
"The admiral is just finishing a meeting and will be with you shortly.\"",
"\n\nReece looked around the room and took a seat in an overstuffed leather chair, briefly glancing at a coffee table adorned with a few horrible Navy-produced magazines. ",
"He took the time to relax and organize his thoughts.",
"\n\nWhy does the admiral want to see you? ",
"Has to be the op in Afghanistan. ",
"Though usually the admiral would wait until all investigations were finished and his CO had talked with him first. ",
"Why so soon after the death and funeral of his wife and child? ",
"Was it about the tumors? ",
"Or to pay his condolences? ",
"To make sure Reece wasn't going to suck-start a pistol? ",
"Reece knew his thoughts were clouded by the trauma of recent events, made all the worse by the headaches. ",
"Think, Reece. ",
"Something is not right.",
"\n\nThe door to the office swung open and out strolled a man who looked like he'd walked off the set of a Hollywood movie. ",
"His quick look at Reece betrayed a familiarity not shared by the commando before he moved off a little too hastily.",
"\n\nInteresting. ",
"Wonder who that was?",
"\n\n• • •\n\nCaptain Howard sat quietly and anxiously as the admiral stared out the panel of windows at the Pacific Ocean. ",
"He appeared deep in thought with a pair of horn-rimmed half glasses in one hand, the temple of which rested on his lips. ",
"After an extended pause, Admiral Pilsner rotated his chair to face his JAG and placed the glasses on the desk in front of him. \"",
"What's your read on Tedesco? ",
"Is he going to stay on the reservation?\"",
"\n\n\"I think you sold him, sir. ",
"To a guy like that, being part of your team is a big deal. ",
"These guys all want to touch the SEAL magic, and you just made him feel like he was your best operator.\"",
"\n\n\"Let's hope so. ",
"We need him to stick with the plan. ",
"He's the one I'm worried about, but he's also our best link to the Hartleys, and without them, we have jack shit. ",
"This thing has gotten out of control. ",
"I have worked my entire career to build an impeccable reputation as a commander. ",
"Under my leadership, the Naval Special Warfare profile has risen above what anyone before me could have imagined. ",
"Why so many have tried to keep this organization's capabilities below the radar is beyond me. ",
"When Washington thinks of special operations, they think of me. ",
"I am the SEAL Teams, as far as the public is concerned. ",
"I cannot have my reputation or the reputation of WARCOM destroyed by James Reece.\"",
"\n\nNot wanting to mention the sore subject of the New York Times and Washington Post articles critical of the admiral's leadership, Leonard Howard leaned forward, his voice hardly above a whisper. \"",
"He will be here any minute, sir. ",
"Do you have a plan? ",
"Should we have him arrested?\"",
"\n\n\"No. ",
"We'll threaten to charge him with everything under the sun, of course, but we don't want him in custody, where he's protected. ",
"We want him out there, adrift. ",
"You will be my witness that he's a loose cannon, that he's gone apeshit and is capable of anything. ",
"I am going to make him lose his cool so that everyone in this command sees it on his face when he walks out of this office. ",
"After that, no one will question what happens next.\"",
"\n\n\"How are you going to make this guy lose it, sir? ",
"I don't get the impression that James Reece is easily rattled.\"",
"\n\n\"It will not be a problem, believe me. ",
"Reece may be a combat leader but he's got to be a ball of raw nerves at this point and I'll touch every one of them.\"",
"\n\n\"Yes, sir, I'm sure you're right about that.\"",
"\n\nPilsner looked at Howard's facial expression and frowned. \"",
"You're not going soft on me, too, are you?\"",
"\n\n\"No, sir, not at all. ",
"Just want to make sure we have all the legal angles covered.\"",
"\n\n\"Good. ",
"I need everyone focused on getting this thing back on track. ",
"Let's get Reece in here. ",
"I'll do the talking.\"",
"\n\n\"Yes, sir.\" ",
"Howard smiled.",
"\n\n• • •\n\nAn excruciatingly long fifteen minutes passed before the door opened again. ",
"This time it was Captain Leonard Howard, the admiral's judge advocate. ",
"He was slight of frame and, from reputation, slight of character. ",
"The admiral certainly surrounded himself with like-minded bureaucrats.",
"\n\nNot offering a handshake or greeting, he said, \"Lieutenant Commander Reece, the admiral will see you now.\"",
"\n\nWonderful.",
"\n\nAdmiral Pilsner's office was almost exactly as Reece expected it to be. ",
"A large desk positioned opposite huge windows facing the Pacific Ocean. ",
"A million-dollar view, though Reece was sure the facility had cost the taxpayers considerably more than that. ",
"Scanning the admiral's office, Reece noticed the walls were not adorned with the usual trappings of a life spent in the armed forces; rather there were pictures of the admiral in uniform at various functions with the who's-who of Washington's political and military elite: higher-ranking flag officers, what looked to be a few well-dressed civilians that Reece didn't recognize, and even the secretary of defense. ",
"The pictures all seemed to be the receiving-line variety, each from a military-specific charity event set up with backgrounds denoting their cause. ",
"The admiral sure seemed to be having a good time while soldiers, sailors, airmen, and Marines fought and died on foreign soil. ",
"On a credenza in the corner sat a UFC championship belt given to the admiral as a gift in exchange for a tour of the BUD/S compound that he arranged for an MMA welterweight fighter. ",
"To its left was a Seattle Seahawks football helmet, the admiral's home team, signed by the players and coaching staff, another gift for a motivational tour before they played the Chargers. ",
"Apparently the BUD/S compound had gotten very popular in recent years. ",
"Quid pro quo.",
"\n\nOn the desk, Reece noticed a Ka-Bar knife sitting in a presentation stand, obviously never used and presented to the admiral as a gift for a staff job at some point. ",
"It was rumored he liked to pick it up to intimidate his non-Trident-wearing staff.",
"\n\nWas the Admiral's desk on a platform? ",
"What on earth? ",
"Yes, it was. ",
"It was subtle but it was still a platform. ",
"Reece remembered reading something once about J. Edger Hoover having an office desk built on a platform so he could look down on those who entered his office. ",
"It was all about power.",
"\n\n\"Sir.\" ",
"Reece nodded toward the admiral.",
"\n\nThe admiral continued to write something down without looking up at his guest. ",
"Reece glanced from the admiral to Captain Howard, back to the admiral, and then out the window. ",
"He was not offered a seat.",
"\n\n\"What the hell happened in Afghanistan, Commander?\" ",
"the smaller man finally spat out.",
"\n\n\"Uh, sir?\" ",
"replied Reece.",
"\n\n\"You know,\" said the admiral, finally looking up. \"",
"Your tremendous fuckup.\"",
"\n\nReece shifted his gaze to the JAG, whose face remained unchanged.",
"\n\n\"Sir, I take full res—\"\n\n\"You are damn right you'll take full responsibility. ",
"This is a huge black eye for our community. ",
"Those men are dead, and you tarnished the hard-earned reputation of this brand!\"",
"\n\nBrand? ",
"What the fuck is this guy talking about?",
"\n\n\"Sir, there is no one to blame here but me. ",
"I was the ground force commander. ",
"The responsibility lies with me.\"",
"\n\n\"We've already established that, Commander. ",
"What we haven't established is why.\"",
"\n\nWhy?",
"\n\nThis obviously was not a condolence call about Reece's wife and daughter.",
"\n\nWhat is this about?",
"\n\nWhy? ",
"That is a damn fine question. ",
"Why? ",
"It suddenly clicked. ",
"The admiral wanted to test Reece to see if he was going to open up about the mission and tactics being pushed from higher. ",
"It had not been clear at the time exactly who \"higher\" was. ",
"Now Reece knew.",
"\n\nReece's eyes didn't leave the admiral's, but they changed from merely serious to ice in less than a second. ",
"Reece thought he could see the admiral visibly shrink back in his seat.",
"\n\n\"Sir, that mission came from higher authority,\" Reece said slowly in a voice devoid of emotion.",
"\n\n\"No, it did not, Commander Reece. ",
"Do not shirk your responsibility. ",
"You were in charge and you failed. ",
"You failed your men and this nation.\" ",
"The admiral stood, finally hitting his stride. \"",
"NCIS will finish their investigation shortly. ",
"They will find you negligent, and I intend to see you court-martialed. ",
"In the meantime I am ordering Captain Howard to pull your security clearance and start Trident removal procedures.\" ",
"Reece stood stone-faced, looking straight through the fuming one-star in front of him. \"",
"The list of charges against you is a long one, Commander, and I am going to ensure that when the military justice system is done with you there will be absolutely nothing left!\" ",
"Sweat began to bead up on the admiral's forehead and upper lip, spit escaping as he almost shouted, \"And, while we are going down this path . . .\" ",
"The Admiral continued, standing and moving to the side of his desk, the platform putting him more or less on the same plane as Reece. \"",
"You couldn't protect your men, you couldn't protect your family, and it is high time you paid a price, not just for your failures but for the tarnished legacy your father left on the Teams.\"",
"\n\nReece's jab caught the admiral off guard, his nose exploding in an eruption of blood as the bone and cartilage broke beneath Reece's left fist. ",
"Before the admiral could react Reece had already dropped his weight, pivoted his hips, and delivered a right cross to the already broken nose with such devastating power Howard thought the admiral might be dead on his feet. ",
"Reece practiced restraint, but one wouldn't know that from the left hook that caught the admiral's jaw and dropped him to the ground with a heavy thud.",
"\n\nHoward had never in all his life seen such a transformation as the one he had just witnessed. ",
"He watched in horror, his back pressed against the office wall, hoping it would envelop him and protect him from what appeared to be the very incarnation of pure rage.",
"\n\nReece took a step toward Howard and stopped.",
"\n\nLeave him, Reece.",
"\n\nThis is what the enemy must feel like when these guys come hunting them, Howard thought.",
"\n\nThe look in Reece's eyes left no doubt in Howard's mind that Reece would have no qualms about killing him and leaving him dead on the office floor. ",
"His eyes were cold, and the JAG could only think of one word: death. ",
"Although it was warm and Howard was perspiring profusely, his body inadvertently shivered.",
"\n\n\"Add that to the list,\" Reece hissed, moving to the door and closing it calmly behind him.",
"\n\nHoward slumped to the floor in disbelief, thankful to have escaped Reece's wrath and unable to take his eyes off the body of the unmoving admiral.",
"\n\n• • •\n\nBack in the Land Cruiser, Reece took a deep breath. ",
"It had taken all his discipline to look as natural as possible as he hurried down the WARCOM stairs, turned in his visitor's badge, and made his way across the parking lot to his vehicle. ",
"What next? ",
"None of this was making any sense. ",
"No mention of the tumors. ",
"Did they really not know?",
"\n\nReece knew the admiral was a spiteful politician, only concerned with his next rank. ",
"The articles in the Washington Post were a testament to that vindictiveness and the man's true character. ",
"The question was, how would someone with such a weak inner constitution react to being knocked out in his own office? ",
"Would he use the power of that position to throw the book at his subordinate commander, or would he be so embarrassed to such an affront to this authority that he would keep it quiet and try to attack indirectly? ",
"Reece assumed the latter but he wanted to be ready for the former. ",
"Regardless, his security clearance would be gone as soon as Howard could pull himself together and get to a phone, which meant he would no longer have access to any Naval Special Warfare facility. ",
"Reece glanced at his watch. ",
"It would take the admiral and his guard dog JAG a little time to recover and come up with their game plan, or so Reece hoped.",
"\n\nReece put the Cruiser in drive and headed for Team Seven.",
"\n\n## CHAPTER 18\n\nADMIRAL PILSNER LEANED FORWARD in his chair, elbows on his desk, with one hand holding his head and the other pressing an ice pack to the right side of his face. ",
"With tissues stuffed into his nostrils and blood staining the front of what had been an immaculate uniform, he shut his eyes and tried to concentrate. ",
"The events of the past hour had left him shaken and humiliated. ",
"At least Howard was the only one to see it, he thought.",
"\n\nSitting in the comfortable leather chair in front of the admiral's desk, Leonard Howard was anything but comfortable. ",
"Continually squirming and looking anywhere except directly at his defeated boss, the captain was relieved only by the fact that Reece had directed no physical violence toward him.",
"\n\nAgainst his better judgment, he broke the silence. \"",
"Sir, it is over for Reece. ",
"Assaulting a flag-level officer is beyond the pale, even in this community. ",
"I will have him in shackles and up for court-martial by the end of the day. ",
"We will keelhaul him, sir! ",
"He will not get away with this! ",
"We will strip him of his rank, revoke his security clearance, remove his cherished Trident, and have him before a judge within weeks. ",
"He will spend the next decade in Leavenworth breaking big rocks into small rocks.\"",
"\n\nIf it hadn't hurt to talk so much, Pilsner would have cut his JAG off sooner. ",
"He knew his nose was broken and was thankful his jaw had escaped the same fate. ",
"Both eyes had swollen and would soon blacken. ",
"He had instructed Howard to have his aide cancel all appointments for the remainder of the week. ",
"He would have to come up with a believable excuse for the broken nose and bruised face that would allow him to escape with some dignity.",
"\n\n\"Captain Howard,\" Pilsner began in a nasally tone, unbecoming of his station, \"we will do no such thing.\"",
"\n\n\"But, sir, he assaulted you in your office in front of a witness! ",
"He needs to be brought up on charges immediately!\"",
"\n\n\"Leonard, I am telling you no! ",
"Do you realize what will happen to my reputation if word gets out that I was beaten up by an O-4?\" ",
"the admiral asked, referring to Reece's pay grade.",
"\n\n\"Sir, we can't let him get away with this.\"",
"\n\n\"Let me remind you, Leonard, that I am the admiral and you are the captain. ",
"Remember that, when we are in this building.\"",
"\n\n\"Yes, sir,\" Howard muttered, looking at the floor.",
"\n\n\"We are going to document this but will take no formal action. ",
"You know what happens if Reece is taken into custody. ",
"We have discussed this; it would make it harder to get to him. ",
"We have to stick to the plan; we are going to let him walk. ",
"I want you to fill out a witness statement that you'll keep to yourself until such time that we need to create a paper trail. ",
"I also want you to take photos of my face, in case we need them later. ",
"This evidence will fit into a pattern of behavior displayed by Reece that will leave no doubt regarding his guilt. ",
"I have a permanent solution for James Reece, and this fits right into it.\"",
"\n\n## CHAPTER 19\n\nSEAL Team SEVEN\n\nCoronado, California\n\nREECE'S TROOP HIGH BAY WAS a gigantic room fitted floor to ceiling with rows of racks to hold the enormous amount of gear it took to remain one of the world's leading special operations units. ",
"Today it was empty, as Reece knew it would be. ",
"Putting his code into the cipher lock, he turned the knob and stepped inside into complete darkness, the door shutting and locking behind him with an audible click. ",
"Not only was it the depository of all the troop gear; it was also the epicenter of all things to an operator in a SEAL Team. ",
"The troop space was a clubhouse of sorts, though more exclusive than any fraternity on earth.",
"\n\nGone were the confident voices that had once filled this room, voices of men who were the best in their field. ",
"No one was there to shout a greeting, make a joke, or ask a question. ",
"No one was busily adjusting gear or packing for the next training trip. ",
"Empty. ",
"All that was left above the roar of crashing surf was the hum of the air conditioners that never seemed to work properly. ",
"Reece stood in silent respect, eyes closed, imagining it as it used to be, filled with life and the unique camaraderie that drew and kept so many warriors in the Teams. ",
"The smell of dust and dirt accumulated from training venues across the country and combat deployments around the world were deposited back in this single space in Coronado, California. ",
"When mixed with the sweat and added humidity from being so close to the ocean, it gave off a distinctive odor that those who had prepared for war there would never forget.",
"\n\nHis reflection over, Reece reached over and flipped the light switch, immediately illuminating the bay in a fluorescent white glow. ",
"Boozer had supervised getting the troop's gear back to the high bay and it was a mess. ",
"It took a few minutes for Reece to find his bags and a few more for him to separate them from the others, take inventory of it all, and then load them into his Land Cruiser outside.",
"\n\nBefore leaving, Reece opened a small lockbox mounted on the wall. ",
"It was filled with keys. ",
"Reece ran his fingers through the semi-organized keys hanging inside until he found the set marked \"Donny\" and stashed them in his pocket. ",
"After one last look back at his troop space, he shut the door and headed for the armory.",
"\n\n• • •\n\n\"Hey, sir. ",
"How's it going? ",
"I mean, how are you? ",
"Uh, I uh . . .\"",
"\n\n\"It's okay, Carl,\" Reece said with a warm smile. \"",
"I'll be okay.\" ",
"Though he didn't really believe that himself.",
"\n\n\"It's just that I didn't expect to see you this soon after, well, after you know . . .\"",
"\n\nCarl was the SEAL Team Seven armorer, not a SEAL but a gunner's mate senior chief from the fleet assigned to Naval Special Warfare. ",
"He had been on a deployment to Iraq with Reece a few years back when Reece was leading sniper teams into Ramadi at the height of the war.",
"\n\n\"It's been rough, Carl. ",
"I won't lie. ",
"I'm a bit lost and confused right now. ",
"Just need to take some time and get a little perspective on things.\"",
"\n\nCarl was a religious man and looked up to the SEAL officer in front of him. ",
"In Ramadi, Carl had seen Reece off on more missions than he could remember. ",
"He also remembered the great respect Reece garnered from not only the men under his command but the more senior officers in theater as well.",
"\n\n\"Carl, I'm going out to Niland for a couple days. ",
"Need to be with the boys right now.\"",
"\n\nNiland was the Navy SEAL playland just outside El Centro, California, up against the Chocolate Mountains, a place where platoons and troops could shoot and blow things up to their hearts' content while training to go downrange.",
"\n\n\"Niland?\" ",
"Carl questioned. \"",
"I mean, shouldn't you go to . . . ",
"um, anywhere . . . ",
"um, anywhere else . . . ",
"you know . . . ",
"because . . .\"",
"\n\n\"It's okay, Carl. ",
"Just want to get out with the guys and away from all this for a few days. ",
"Need to get behind a Mk 48 and throw a few rounds downrange.\"",
"\n\nNow he was speaking Carl's language.",
"\n\n\"Understood, sir. ",
"And, sir? ",
"Um, my wife and I are praying for you every night.\"",
"\n\n\"Thanks, Carl. ",
"That means a lot.\"",
"\n\n\"I guess you want to take a couple of toys out there with you?\" ",
"Carl said, changing the tone of the conversation.",
"\n\n\"Absolutely!\" ",
"Reece replied with a smile. \"",
"Can you grab me two thousand rounds of 7.62 link and a case of the 77-grain Black Hills while I get my weapons?\"",
"\n\n\"No problem, sir.\"",
"\n\nWell, at least it didn't look like the admiral had put an APB out on him yet.",
"\n\nReece approached a machine on the wall of the armory and inserted his Team Seven ID. ",
"This would be the real test. ",
"He punched in his personal code, pressed his thumb against a pad on the wall, and looked into an iris scanner. ",
"NSW armory security procedures had come a long way over Reece's career. ",
"He could remember a time when there weren't any security measures in place other than a master lock on a cage full of weapons. ",
"The good ol' days, Reece thought. ",
"The machine beeped and blinked green, opening both the door to the armory and the internal door that housed all of Reece's troop weapons.",
"\n\nReece grabbed a wheeled dolly for moving heavy items and made his way down the hallway, passing the other troop weapons cages until he arrived at the one he was looking for. ",
"He still had his personal weapons from deployment that he had never turned in, but still wanted to upgrade his stash for what was coming. ",
"Be prepared.",
"\n\nReece gazed around the large cage, mentally taking inventory. ",
"Though it was called a cage it was really a room-size partition filled with instruments of death. ",
"Before Reece were rows and rows of rifles, pistols, shotguns, sniper weapon systems, extra NODs, AT-4s, LAW rockets, Mk 48 and Mk 46 machine guns, claymores, boxes of C-4 blocks, and data sheet for breaching; it was a gun nut's wet dream. ",
"Reece finished taking stock and began loading the dolly with the tools of his trade.",
"\n\n## CHAPTER 20\n\nShady Canyon Estates\n\nOrange County, California\n\n\"MIKE. ",
"MIKE. ",
"MIKE?\"",
"\n\n\"Uh, what? ",
"Uh, sorry, honey . . .\" ",
"Mike Tedesco responded, dropping his cell phone and reaching for the pacifier on the counter toward which his wife was not so subtly gesturing, then quickly looked back into his uneaten cereal bowl as if the answers to some unanswered question floated among the Cheerios.",
"\n\nJanet Tedesco looked at her husband and sighed. ",
"He had been more detached than usual over the preceding months. ",
"Maybe the back-and-forth trips to D.C. were getting to him? ",
"Maybe it was his almost daily commute up to L.A., though he never complained about it. ",
"She knew he lived in Orange County only because she had grown up there and loved it. ",
"Her friends were there, and her parents lived just thirty minutes away. ",
"Her mom and dad could look after their three children so Janet could attend many of the never-ending stream of lavish political fundraisers and charity events that were Mike's domain. ",
"Mike was always thanked and toasted for being the piece of the puzzle that linked all the others. ",
"This made her immensely proud.",
"\n\nMike Tedesco was technically a business consultant but everyone who knew him referred to him as a \"fixer.\" ",
"He was connected in some way to just about everyone who mattered in Southern California, from studio executives to key political figures. ",
"His friends called him \"1D\" since he appeared to be one degree of separation from just about anyone you'd want to meet. ",
"Tedesco was one of those people who are good at everything. ",
"He was the guy you hated in school because he never had to study and would beat you at golf on his worst day. ",
"His good looks and Ivy League education, combined with his athletic talents, gained him great favor with both sexes, but he was a surprisingly devoted husband and father.",
"\n\nFrom the outside looking in, he had the perfect life: a home on the golf course in Shady Canyon, Orange County's most exclusive private community; an incredible condo in Maui; and a mountainside ski retreat in Deer Valley. ",
"An always-new Range Rover for his wife and Bentley for himself completed the Southern California twist on a Norman Rockwell painting. ",
"Unlike many of those with whom he associated, he would have been just as happy, if not happier, as a river guide or ski instructor. ",
"He just happened to be good with people, and the truth was, he sincerely liked helping them.",
"\n\nHis challenge was juggling all his competing demands and making it all work. ",
"He lived in a constant state of guilt, probably from the two years he had spent in Catholic school early in life. ",
"His conscience ate away at him every time he was called to a meeting in D.C. or was stuck in traffic on the way to and from L.A. It was time spent away from his beautiful wife and children. ",
"He wanted out of the fast-paced life to which they had become accustomed.",
"\n\nMike also had a plan. ",
"He had a dollar amount in mind, and when he hit that number he would retire. ",
"He could spend time with his family and travel on their schedule, not someone else's. ",
"Strangely, he did not feel the need to continue to accumulate wealth and prestige like so many others in his circle of \"friends.\" ",
"Once he hit his number, he would fade away.",
"\n\nTwo years ago, connecting the players in the business plan that Steve Horn had outlined seemed harmless enough, even commendable. ",
"Mike would get to build the team that would purchase, clinically test, and market a drug that would block the effects of PTSD before it even took hold. ",
"A neuro pathway beta-blocker that would revolutionize the medical treatment of future veterans, preventing the destruction caused by the psychological toll of war; a mental prehab for warriors. ",
"Mike had gone to enough military and veteran group fundraisers over the years to have seen and heard the stories of those whose lives were completely altered by what they had done in combat, and this was a way for him to contribute more than financially. ",
"Mike's involvement in \"the Project\" was not purely altruistic. ",
"Success in this endeavor would put him well above his number and allow him an escape from the trappings of his current life.",
"\n\nFund-raising and supporting these foundations was a way for Mike to atone for the guilt he felt for not joining the military himself. ",
"If he was honest, it was because he was ashamed. ",
"Those nuns in Catholic school had certainly done their work. ",
"He had left his job as a congressional aide and was working in the Manhattan financial sector on a beautiful Tuesday morning in September when the first plane hit the World Trade Center. ",
"Rather than rush to help, Mike ran the other way. ",
"When others headed for recruiting stations in the wake of 9/11, Mike found refuge at the USC Marshall School of Business. ",
"It was there that he discovered his real talent lay not in the analytics, nor the leadership of business, but rather in the art of relationships and the nurturing of those relationships until they could be monetized.",
"\n\nOne of his closest mentors was a former California congressman who had failed in his own bid for the presidency a decade ago when one of his many affairs hit the media. ",
"At the time, Tedesco thought that his best horse had fallen but it looked as if he was about to get a second shot at the title: that same congressman's wife was the current secretary of defense and a shoo-in for the Democratic presidential nomination next time around.",
"\n\nThat he was a trusted confidant of one of the most powerful couples in Washington only bolstered his standing in both the financial and political communities. ",
"Mike was the bridge between big money and big power.",
"\n\nUnfortunately, the outcome of this particular bridge-building project had gone horribly wrong, and the actions of his partners had chilled him to the depths of his soul. ",
"What started out as something that could both save lives and help Mike reach his number had turned into a nightmare. ",
"To Mike it felt as if he had ordered the killing of the SEAL Team himself, though he did not become aware of the connection of the Project to the highly publicized ambush in Afghanistan until Admiral Pilsner and his JAG had briefed him yesterday, no doubt at the suggestion of Steve Horn. ",
"Perhaps Steve knew Mike was the weak link and had to be kept in line. ",
"Psychologically, having Mike read in by the SEAL admiral with whom he had sat at many a Naval Special Warfare Foundation charity event carried more weight than hearing it from Steve himself. ",
"The message was clear: if SEALs were willing to kill other SEALs to keep this project alive, it must be for the greater good.",
"\n\nBut to walk out of Pilsner's office and actually see the face of one of the men Mike had a part in destroying was almost too much to take. ",
"There sat the true hero, a cancerous tumor growing in his brain, his troop and family dead, oblivious to the array of forces lining up to further dismantle his life and ultimately destroy him.",
"\n\nMike was the weakest of the group. ",
"He knew it. ",
"And he knew that if he showed any signs of that weakness, the others would not hesitate to feed him to the wolves. ",
"This wasn't checkers, nor was it chess. ",
"It was three-dimensional poker, and Mike was going to have to play it out while bluffing if he was going to finish the game. ",
"Wait, not finish the game, but survive the game. ",
"His goal now was to make it through this disaster with his life and the lives of his wife and children. ",
"If he could just keep his head down he could deliver both his family and reach his number. ",
"Then he would be done with Steve Horn and his ilk for good.",
"\n\nHe would atone for his sins in this life or the next, of that he was certain. ",
"God would punish him. ",
"The burden of his involvement he would carry alone, all the way to the grave and whichever way he was headed beyond it.",
"\n\n## CHAPTER 21\n\nBalboa Naval Medical Center\n\nSan Diego, California\n\nDR. ",
"PAUL RUSSELL FINISHED his regular shift at Balboa Naval Medical Center and waved his goodbyes to the floor staff. ",
"He contemplated stopping at the gym on the way home but he'd been on his feet all day and just couldn't find the motivation. ",
"At forty-eight, his lack of drive was catching up to him, and he could feel his belly tugging against his loose-fitting scrubs. ",
"He walked through the maze of corridors that left visitors perpetually lost and headed for the staff section of the parking garage. ",
"He put the key into the door of his aging Volvo station wagon and climbed inside. ",
"His black nylon briefcase, swag from a medical conference, sat on his lap as he reached for the door to swing it shut.",
"\n\nAs Dr. Russell slammed the door closed, an unseen hand grabbed a handful of his hair and slammed his head back into the head restraint. ",
"The muzzle of a handgun pressed tightly into his neck under his jaw, gagging him.",
"\n\n\"Look in the rearview mirror,\" the voice said from behind him. \"",
"Do you remember me?\"",
"\n\nRussell hesitated and then glanced toward the mirror without trying to move his head. ",
"He immediately recognized the face of James Reece.",
"\n\n\"Yes, I know who you are.\"",
"\n\n\"Why did you tell me I was clear when you knew about the tumor?\" ",
"Reece asked calmly.",
"\n\n\"I don't know anything about a tumor,\" Russell stammered, trying to maintain some semblance of control and failing miserably. \"",
"Your labs and scans aren't even back yet. ",
"All they told me was to clear you no matter what was wrong with you. ",
"They were gonna kill my family.\"",
"\n\n\"Who are 'they'?\"",
"\n\n\"It was a DOD security guy of some kind. ",
"I have his card in my bag, I'll gladly give it to you. ",
"Please don't hurt my kids.\"",
"\n\n\"Reach slowly into the bag and get me the card. ",
"Anything but a card comes out of that fucking bag and you'll bleed out before they can get you into the ER.\" ",
"Reece shifted the muzzle of the Glock 19 slightly and pressed it firmly against Russell's carotid artery.",
"\n\nRussell's hands shook as he rifled through the unorganized bag, looking for the card.",
"\n\n\"Here it is. ",
"I found it.\"",
"\n\n\"Put it on the armrest to your right.\" ",
"Russell did as he was told. \"",
"What exactly did this guy tell you?\"",
"\n\n\"He knew everything. ",
"He knew I was having an affair with one of the nurses here at the hospital. ",
"He told me that he'd kill my wife and kids and make it look like I did it to get them out of the way so I could be with her. ",
"I don't even want to be with her!\" ",
"Russell said in desperation. \"",
"He said that you'd be coming through here on the way back from overseas and that I was to clear you ASAP no matter what your condition was. ",
"I haven't heard from him since.\"",
"\n\nDr. Russell closed his eyes tight, wincing. ",
"Suddenly the hand released his hair, the back door clicked, and the gun was off his neck. ",
"He felt the weight of the Volvo shift and heard the rear door slam shut. ",
"He glanced at the armrest; the card was gone. ",
"He shifted his bag to the passenger seat and realized that his scrubs were soaking wet. ",
"He had pissed himself. ",
"He sat in the car for twenty minutes, trying to stop shaking, before starting it up and speeding home to his wife and children.",
"\n\n• • •\n\nReece was starving as he drove away from Balboa and realized that he hadn't had anything other than coffee in more than twenty-four hours. ",
"He headed for an old-school Italian sandwich shop that he'd been to a couple of times over the years. ",
"It was a family business and the kind of place with no surveillance cameras and no one asking questions. ",
"When he pulled into the vintage strip mall, he found the parking lot mostly empty. ",
"The grocery store that had anchored the building had long since moved to a newer location and left a series of independent businesses in its wake, each trying to take advantage of the relatively inexpensive rent.",
"\n\nIt was the pre-dinner lull and Reece was the only customer in the small restaurant. ",
"He ordered a sandwich, no mayo, and a glass of ice water, paid cash, and sat at the table closest to the glass doors at the entrance in an attempt to get a Wi-Fi signal from a nearby business. ",
"He had run home after his meeting with Katie and grabbed an old iPhone out of his overseas gear. ",
"He'd bought it used in Korea during a training mission a few years earlier. ",
"He turned it on and found a weak signal from the nail salon two doors down. ",
"With the VPN running, he pulled a business card out of his pocket.",
"\n\nH. JOSHUA HOLDER\n\nSPECIAL AGENT\n\nDEFENSE CRIMINAL INVESTIGATIVE SERVICE\n\nThe card listed an address and phone number in Mission Viejo, California, as well as an email address. ",
"A cell number was handwritten in ballpoint pen on the back of the card, which he assumed was Holder's.",
"\n\nDCIS? ",
"Reece had only ever heard of those guys in the context of procurement fraud and couldn't figure out why they were involved in this investigation. ",
"And why would this agent leave his card? ",
"Maybe because he was certain I was going to be killed in a home invasion. ",
"Reece put Holder's name into the search engine and got hits for a bunch of Facebook pages, none of which appeared to belong to a DCIS agent based in Southern California. ",
"He scrolled down until he found a LinkedIn page for \"Josh Holder—Department of Defense.\" ",
"Bingo. ",
"He took a screenshot of the page and opened up the Signal app, putting in his password.",
"\n\nHe pulled the napkin out of his shirt pocket and typed the list of characters that he'd given Katie into the search bar. ",
"Her account was up and running so he added her as a \"friend\" and sent her a message.",
"\n\nit's your friend from green beans coffee, this guy fits in somehow, he typed, referencing their initial meeting at Bagram for authentication before attaching the screenshot of Josh Holder's account.",
"\n\nHe deleted the search history, turned the phone off, and put it into his pocket as his sandwich arrived. ",
"Ten minutes later, his Cruiser was pulling out of the parking lot, headed toward Coronado.",
"\n\n## CHAPTER 22\n\nBottlefish Restaurant\n\nBrentwood, California\n\nBOTTLEFISH DIDN'T TECHNICALLY open until 11:30 a.m., but a call from Horn's assistant to the owner made sure that a manager was there early to open the door in time for the 9 a.m. meeting. ",
"Horn was a majority investor in the new restaurant venture and wanted this meeting off-site from his Capstone offices. ",
"The Brentwood hotspot was open, clean, and inviting, in stark contrast to the topics slated for discussion.",
"\n\nAs the men arrived, each was led to a booth where a carafe of coffee was waiting. ",
"Row after row of wine bottles were arranged horizontally nearby behind a wall of glass, making Saul Agnon wish he'd had a few glasses beforehand. ",
"Josh Holder made him extremely uncomfortable. ",
"He wasn't particularly big or loud; it was his total lack of emotion that unnerved Saul. ",
"Holder had helped plan this entire operation as a proxy for the Hartleys, along with Marcus Boykin, who had represented Capstone's interests. ",
"Neither man seemed to place any value on human life, but there was a key difference between them: Holder had no problem doing his own killing.",
"\n\nMike Tedesco and Saul Agnon sat awkwardly together on the same side of the booth out of deference to the third participant in their meeting. ",
"Holder arrived last, his crisp white dress shirt open at the collar and his dark gray suit coat unbuttoned, looking far too sophisticated for a government employee. ",
"Once all were present, the manager retreated to his small office to allow them complete privacy. ",
"Holder nodded contemptuously at both men as he slid into his seat across from them. ",
"No one said a word as he made a long production of pouring himself a cup of coffee and slowly stirring in cream and artificial sweetener. ",
"He took a sip before finally looking across the table at Agnon and Tedesco.",
"\n\n\"So, what's this about?\"",
"\n\n\"Um . . . ",
"Mr. Horn wanted us to speak to you in person about James Reece.\"",
"\n\n\"What about him? ",
"Your contacts fucked up the ambush overseas that was supposed to kill him and then the stupid gangbangers you hired to hose down his house didn't even wait for him to get home. ",
"Now you want me to fix it, is that right?\"",
"\n\n\"Well, you see, we were hoping . . .\"",
"\n\n\"We?\"",
"\n\nAgnon looked around the empty room and leaned forward, lowering his voice. \"",
"Mr. Horn was hoping that you could eliminate the target.\"",
"\n\nHolder shook his head, visibly disgusted. \"",
"Are you guys that dumb? ",
"This guy survives the ambush in Afghanistan, I 'suicide' the only other survivor, and then a random home invasion takes out his family. ",
"Don't you think it would be just a little bit suspicious if he suddenly turns up dead at this point? ",
"Can we give the cops and the press a little bit of credit?\"",
"\n\nAgnon started to speak but stopped himself, looking to Tedesco for backup.",
"\n\nThe taller man finally spoke. ",
"He too was intimidated by Holder, but his relationship with their common mentor gave him a measure of courage. \"",
"Josh, Horn spoke to J.D. and he offered to help. ",
"I followed up with him and he has a solution for us.\"",
"\n\n\"Solution?\"",
"\n\n\"He offered us the use of a 'sleeper asset.' ",
"He said that you would know what he meant.\"",
"\n\n\"J.D. told you that?\" ",
"Holder's disposition softened at the mention of his rainmaker.",
"\n\n\"Yes, he said that it was the best way to take Reece out without raising suspicion. ",
"With all the publicity from the Afghanistan fiasco and then the home invasion, Horn thinks this particular sleeper agent won't arouse that kind of suspicion. ",
"There is a lot at stake here, Josh.\"",
"\n\n\"Hmm . . . ",
"If that option is on the table, I agree that we should move forward with it. ",
"If J.D. has offered it up, I'll make it happen.\" ",
"Holder took another sip of coffee before staring directly at Tedesco. \"",
"You holding up?\"",
"\n\n\"What do you mean?\"",
"\n\n\"I mean, this kind of thing isn't your deal. ",
"You gonna be able to keep your shit together or do I need to keep an eye on you, too?\"",
"\n\n\"Me? ",
"I'm fine, Josh. ",
"Don't worry about me.\"",
"\n\n\"Just don't get weak on us, Tedesco, we need everyone on the bus. ",
"How's that pretty wife of yours doing?\"",
"\n\n\"She's fine. ",
"I'm good . . . ",
"seriously.\"",
"\n\n\"Good. ",
"Now, if you'll excuse us, Mr. Agnon and I have a couple of things that we need to discuss.\"",
"\n\n\"Um, okay. ",
"Let me know what you need from me.\" ",
"Tedesco rose from the booth and walked nervously toward the door, wondering what it was that they couldn't say in front of him.",
"\n\n• • •\n\nCoronado, California\n\nReece slept better that night than he had since before the last operation overseas. ",
"He awoke, without an alarm, at 6:45 a.m., splashed some cold water on his face, and looked in the mirror over the sink. ",
"Eighteen years of jumping out of planes and helicopters along with lifting weights and practicing combatives on the mats had taken a toll. ",
"He looked tired. ",
"Not quite forty, he was surprised his thick dark hair still didn't show signs of gray, though he did notice specks of it beginning to take hold in the beard that was coming in. ",
"All in all, he felt very fortunate to have escaped the ravages of combat relatively unscathed when so many other service members had returned from theater broken in body, mind, and spirit. ",
"Reece shuffled stiffly into the kitchen and found the coffeepot empty. ",
"Lauren was an early riser and always had the coffee made. ",
"He knew that little reminders like this would dredge up the grief of her death for the rest of his life and there was nothing that he could do about it. ",
"Nothing but kill everyone responsible. ",
"He skipped the coffee and put on his running gear.",
"\n\nEach combat deployment as a SEAL was prefaced by a training period where team members physically and mentally prepared for the dangerous tasks that lay ahead. ",
"Small errors in combat can lead to men coming home in body bags, and skills such as shooting, demolitions, using communications equipment, and employing first aid are perishable. ",
"Reece knew he had a fight of a different kind ahead of him, and ensuring that his body and mind were ready for it was the first step in his own personal work-up.",
"\n\nPreparing for his early morning run, Reece went though a series of active stretches before looking down at the iPod shuffle in his hand. ",
"He hesitated for a second before hitting the PLAY button and closing his eyes. ",
"It was Lauren's shuffle. ",
"He knew the music would take him right back to her. ",
"He wanted her to be with him, but he also knew that when it came time to do the business, he would not want the distraction. ",
"Right now, however, it would fuel him. ",
"Pressing PLAY and clipping the device to his shirtsleeve, he was rewarded with \"I Will Wait,\" one of Lauren's favorite songs by Mumford & Sons. ",
"He remembered listening to it with her, wrapped in a blanket on the lawn section at a late fall concert, sneaking sips of whiskey that Lauren had smuggled into the venue in her boot. ",
"When they first met in college, Reece couldn't stand Lauren's taste in folk rock. ",
"He much preferred a more hard-core sound, but she soon had him converted and they enjoyed many a night to the sounds of harmonicas, drums, fiddles, and guitars from bands around the world, with a few songs by Hank, Waylon, Haggard, and Cash thrown in for good measure. ",
"With Lauren's playlist vibrating through his earbuds, he began a run that would take him on a seven-mile loop around the island.",
"\n\nHe took the first mile at a slow and even pace and then began intervals of two minutes each: running at a hard, almost sprinting anaerobic pace and then alternating to a normal jog. ",
"For the final mile of the run, he left the sidewalk for the white sand of the beach, the same sand that he'd run on during BUD/S nearly two decades earlier. ",
"His legs screamed as he fought to propel his body forward in the soft sand, pushing the pace as hard as he could. ",
"He sprinted across his self-imposed finish line at the rear of the famed Hotel Del Coronado, joining the line of vacationers coming in from carefree walks on the beach heading toward the cluster of structures said to have inspired the Emerald City in L. Frank Baum's classic The Wizard of Oz. ",
"Being a sweaty guy in workout clothes made you virtually invisible in most parts of the United States, especially hotels. ",
"He made his way to the nineteenth-century lobby and accessed the free Wi-Fi.",
"\n\nThere was a message from Katie waiting for him.",
"\n\nI've found some stuff that you need to see.",
"\n\nWhen can we meet?",
"\n\nReece responded, i don't have a job anymore so i'm good whenever, tell me where you'll be.",
"\n\nReece stood for a second staring at the screen and hoping that she was logged in and would respond immediately. ",
"She did.",
"\n\nI have a rehearsal dinner tonight for a college friend who's getting married. ",
"I'll be staying at the Hyatt on Huntington Beach. ",
"Can you be there between 4 and 6?",
"\n\ni can. ",
"i'll find you, Reece typed, turning off the device and descending the steps out the front entrance of the hotel to grab breakfast on his walk home.",
"\n\n## CHAPTER 23\n\nHuntington Beach, California\n\nREECE WHEELED THE CRUISER into a spot on the beach parking lot and made his way across the pedestrian bridge to the Hyatt. ",
"He was dressed in khaki pants, an oxford blue button-down shirt, and a blue blazer. ",
"He would pass equally well as a salesman or a guy headed to a rehearsal dinner, urban camo at its finest. ",
"He walked past a lawn area where party planners were putting the final touches on what he assumed would be the event Katie was attending. ",
"Judging by the elaborate setup and decorations, he was fairly sure the groom's father wasn't operating on a Navy salary.",
"\n\nHe wanted to avoid the lobby, if at all possible, but assumed that all of the beach-facing doors required room keys to access; he was right. ",
"He pulled out his phone and held it up to his ear as if in conversation. ",
"When he saw a sunburned vacationing couple about his age walking in from a day spent drinking by the pool, he said, \"Okay, bye,\" to his imaginary caller and followed through the doors behind them. ",
"He walked down the main hallway toward the elevators and found a house phone on a small table. ",
"He picked up the handset and immediately heard ringing.",
"\n\n\"Guest services, how may I help you?\"",
"\n\n\"Can you connect me to Miss Buranek, please? ",
"B-U-R-A-N-E-K.\"\n\n\"One moment, please.\"",
"\n\n\"Hello?\"",
"\n\n\"Katie, it's me. ",
"I'm here. ",
"What room are you in?\"",
"\n\n\"Twenty-two thirty-one. ",
"Second floor, east side of the building. ",
"Great view of nothing.\"",
"\n\n\"See you in a minute.\"",
"\n\nReece walked past the elevators and took the stairs to the second floor. ",
"He wandered the halls in a direction that he assumed to be east until he saw a sign directing him to the numerical collection of rooms that included hers and knocked on the door.",
"\n\nIt opened immediately and his jaw nearly hit the floor. ",
"Katie was obviously dressed for the rehearsal dinner. ",
"She was wearing a tight-fitting black cocktail dress that showed off her slim, toned physique. ",
"Her hair was down and she glowed with just the right amount of makeup. ",
"She wasn't wearing shoes, making her almost a full foot shorter than Reece.",
"\n\n\"Jeez, how tall are you? ",
"Six two?\" ",
"she asked, popping up onto her tiptoes for effect.",
"\n\nPeople always thought Reece was taller than he actually was.",
"\n\nShe surprised Reece by giving him a big hug, and he stiffened up uncomfortably. ",
"Unsure of how to respond, he patted her on the back as if he were hugging his grandmother.",
"\n\nGod, she smells good, he thought with more than a little guilt.",
"\n\n\"I'm sorry, I'm a hugger,\" Katie said, as Reece stood speechless. ",
"She looked him up and down. \"",
"You clean up well. ",
"Come sit down. ",
"I have a ton of stuff I want to show you.\"",
"\n\nShe pulled a manila folder out of what looked like a beach bag and spread a series of photos on a small table near the room's balcony. ",
"She sat down in one of the chairs and Reece took the other. ",
"The photos were printed on regular printer paper, so the resolution wasn't great, but they were still decipherable.",
"\n\n\"I pulled all of this stuff up using the database at Fox. ",
"I freelance for them so they give me office space when I need it and access to their systems for research. ",
"They have an extremely sophisticated database and the ability to search using facial recognition technology. ",
"I don't have my own username or anything so it would take some work to figure out that I'm the one who pulled it up.\"",
"\n\nShe held up the first photo, which was an enlarged version of the head shot from the DCIS agent's LinkedIn profile. ",
"The man depicted in the photo was likely in his early forties, fit, with a hairstyle that made him look more like a TV anchorman than a federal agent. \"",
"This, as you know, is Josh Holder. ",
"He apparently was an Army CID investigator before hiring on with DOD. ",
"DCIS agents do a lot of contract fraud cases, but their powers are fairly broad. ",
"From what I can determine, he's from Northern Virginia and moved out here relatively recently.\"",
"\n\nAs she pulled out the next photo, Reece couldn't contain his shock. ",
"It was one of those file photos that are taken by pool photographers outside of congressional hearings. ",
"It depicted the secretary of defense walking through the Longworth House Office Building, surrounded by what looked like a rugby scrum of aides. ",
"Walking closest to the secretary was none other than Josh Holder.",
"\n\n\"What's he doing with the SECDEF?\" ",
"Reece asked.",
"\n\n\"That's a really good question. ",
"What is a midlevel DOD law enforcement agent doing walking alongside the secretary of defense, and likely next president, Lorraine Hartley? ",
"Best as I can tell, he's never been employed in a security capacity and nothing lists him as being part of her staff.\"",
"\n\nThe third photo that Katie produced was a screenshot from a society magazine in L.A. and showed a tuxedo-clad Holder standing among a group of partygoers at a swanky charity event.",
"\n\n\"Who is this guy?\" ",
"Reece wondered aloud.",
"\n\n\"According to the magazine, that is Saul Agnon. ",
"I ran a search on him, and he's an employee of this man,\" Katie said, pointing to a tall man in the center of the photo. \"",
"Steve Horn. ",
"Big in finance. ",
"He runs Capstone Capital, which is a private equity fund. ",
"They do a lot of international work. ",
"The other guy in the photo is Mike Tedesco, Capstone affiliated and a well-known fundraiser for the Hartleys.\"",
"\n\n\"That Mike guy was leaving the admiral's office the day I was called on the carpet.\"",
"\n\n\"Well, that is not a coincidence. ",
"Somehow these guys are all connected, James, and I'm betting that whatever they're up to involves a lot of money and a lot of important people. ",
"I couldn't find out much more. ",
"Other than LinkedIn, Holder does very little on social media, and public records searches didn't turn up much of any substance. ",
"The only way I even found these photos was using facial recognition software.\"",
"\n\n\"I can't thank you enough for this, Katie. ",
"It gives me something to go on. ",
"I really appreciate your help. ",
"Go enjoy your party.\"",
"\n\n\"Happy to help and I'm not going to ask what you're going to do with this information because I'm pretty sure I don't want to know. ",
"Just be careful.\"",
"\n\n\"Will do. ",
"Can I have these?\" ",
"Reece asked, pointing to the photos.",
"\n\n\"They're yours.\" ",
"Katie tucked them back into the folder and handed it to Reece.",
"\n\n\"Got an appointment for tomorrow to get my head checked out. ",
"I'll let you know how it goes.\" ",
"He extended his hand, and she slapped it out of the way, coming in close for a hug.",
"\n\n\"I told you. ",
"I'm a hugger.\"",
"\n\n## CHAPTER 24\n\nHead and Spine Associates\n\nLa Jolla, California\n\nREECE WAS SUPPOSED TO BE at the clinic to get prepped at 6:30 a.m., but he couldn't sleep, so getting up in time for the appointment was not challenging in the least. ",
"He wouldn't have admitted it, but he was more than a little nervous about the biopsy. ",
"Not only did he know they were going to stick something into his brain, but the results could confirm that he was, in fact, dying. ",
"Added on to the events of the past weeks, it was all a bit overwhelming but also freeing in a strange sense.",
"\n\nThe next world was calling, the one with his wife and daughter. ",
"He was certain he did not want to die in bed after an excruciating battle with a brain tumor. ",
"Knowing his death was imminent and assured made what he had to do all the more clear. ",
"There was nothing holding him back. ",
"In fact, death propelled him forward. ",
"He would die avenging his troop and his family. ",
"It would be a good death: a warrior's death.",
"\n\nThe staff of the clinic could not have treated Reece any better, or gone any further to put him at ease. ",
"The recent publicity of SEALs and their daring missions had given the public a glimpse into what guys like Reece had been doing for decades. ",
"People went out of their way to be helpful when they found out what Reece did for a living and, while he appreciated all of it, he found the attention somewhat uncomfortable. ",
"He didn't feel that the American public owed him anything in return for his service. ",
"He felt lucky to have had a job that he loved for so many years, working among some of the finest soldiers in the world.",
"\n\nThe clinic was an architectural marvel: concrete and glass with wood accents that made it appear warm and natural. ",
"Designed and purpose built as a world-class spine and neurosurgery clinic, it clearly catered to those with concierge medical service plans. ",
"There was no waiting and no other patients in the building as far as Reece could tell. ",
"It was quite simply the best care that money could buy.",
"\n\nAfter filling out some paperwork and answering a battery of questions asked by one of the nurses, he was taken into a room where they performed a CT scan with a device attached to his head. ",
"He was then led to an examination room where, after less than ten minutes of waiting, a balding man in his late sixties entered the room.",
"\n\n\"Commander Reece, I am Dr. German, thank you for coming.\"",
"\n\nDespite the name, the man's accent and heritage were clearly Latin American.",
"\n\nReece stood to shake the man's hand. \"",
"Thank you for seeing me, sir, I really appreciate it. ",
"Your staff has been wonderful.\"",
"\n\n\"It is nothing, Commander. ",
"Let me tell you what we are going to do today,\" he continued, getting down to business. \"",
"We are going to take a biopsy of the mass in your brain to see what it is. ",
"The procedure we will use is called a stereotactic biopsy. ",
"We have the exact location of the intracranial lesion from the CT scan. ",
"We actually use coordinates, probably similar to the way you do when navigating. ",
"The computer gives us a map and tells us where to enter the skull. ",
"We will set up what's called the stereotactic frame on your head, which will guide the needle to the right spot. ",
"We are going to shave a very small portion of your scalp and give you a local; you will be awake for the entire procedure.\"",
"\n\nReece's eyes widened even though he had been briefed and had researched the procedure ahead of time.",
"\n\n\"I know this probably sounds scary, Commander, but it is very routine. ",
"You have faced far worse in your career, I am sure. ",
"I will make a very small incision, and we will use a drill to enter the skull. ",
"Again, I do not want you to be concerned, but I want you to know what we are up to back there when we are working. ",
"We will insert the needle into your cranium at that point and take a few samples from different areas of the lesion so that they can be analyzed by the lab. ",
"Then I will sew you up, and you can rest here for as long as you'd like. ",
"When you feel up to it, you can go home. ",
"There is no need to stay overnight so long as everything goes as planned, and I am here to see that everything goes as planned. ",
"Do you have any questions for me, Commander?\"",
"\n\n\"Yes, sir, well, you see a bunch of these, I assume?\"",
"\n\n\"Yes, Commander, every day.\"",
"\n\n\"Does this one look bad? ",
"From the scan, I mean.\"",
"\n\n\"I am just the mechanic, Commander Reece. ",
"My job is to go in and grab some tissue. ",
"I wouldn't know a good spot from a bad one. ",
"Any other questions?\"",
"\n\n\"Ah, yes, one more. ",
"How long would I have to live if this biopsy comes back as cancerous?\"",
"\n\n\"That is hard to say, Commander. ",
"There are too many factors to weigh and consider. ",
"If that is the case we will ensure you have the best in the field evaluate the results and discuss options and outlook. ",
"I know that is not a very concrete answer and for that I apologize. ",
"Let us not concern ourselves with that now. ",
"Let's first find out what we are dealing with. ",
"Then we will plan the way ahead. ",
"Sound good?\"",
"\n\n\"Yes, sir. ",
"Let's do it.\"",
"\n\n\"Again, try not to worry. ",
"I promise we'll put everything back where it belongs. ",
"My staff will get you ready, and I will see you shortly.\"",
"\n\n\"Thanks, Doc.\"",
"\n\n\"You are most welcome. ",
"Thank you for your service to this country.\"",
"\n\nReece asked his questions not because he was worried about dying, but because he was worried he might die before he could figure out why his troop and family had been killed and before he could deal with those responsible.",
"\n\nThe procedure wasn't really painful. ",
"It was an odd feeling knowing that someone was cutting a hole in your brain; hearing the drill was the most unnerving part. ",
"Reece rested at the clinic for a couple of hours under observation of the medical staff before being discharged.",
"\n\nThey sent him home with a couple of prescriptions that he filled on his way back to Coronado. ",
"It felt strange to be driving after just having his skull drilled open, but there really wasn't anyone to call for a ride. ",
"He took the prescriptions as directed and climbed gently into bed, spending the rest of the afternoon and evening sleeping intermittently and thinking about his next move.",
"\n\n## CHAPTER 25\n\nNaval Amphibious Base\n\nCoronado, California\n\nADMIRAL PILSNER STOOD in the front yard of his taxpayer-funded home on Naval Amphibious Base Coronado overlooking San Diego Bay. ",
"The waterfront house on Rendova Circle was huge, even by flag-level standards, and blocked the views and bay access of the lower-ranking captains and one or two commanders lucky enough to have filled an empty housing slot.",
"\n\nOn-base housing was often filled with the type of officers who thought living in proximity to their bosses might help them with advancement. ",
"This created an environment fraught with envy and jealousy for their wives, some of whom wielded their husbands' ranks with a toxic disregard for basic decencies, with no official rules and for which few spouses were prepared. ",
"No one placed as much emphasis on their husband's rank as Mrs. Admiral Pilsner. ",
"She ran the \"wives club\" in much the same way her husband ran WARCOM, making her even less popular with the SEAL wives than her husband was among his men.",
"\n\nThey had met on Admiral Pilsner's first deployment to the Philippines. ",
"He had never had much luck with women back home. ",
"His status as a SEAL officer got him many first dates but his inflated sense of self ensured that things rarely progressed further. ",
"When Lieutenant Junior Grade Pilsner met a friendly local Filipino girl who gave him the time of day, he decided she was \"the one.\" ",
"For her part, the future Mrs. Pilsner saw the American officer as her family's meal ticket, steady income in a poor nation with few opportunities, and she wasn't about to let this catch get away. ",
"Within a few months, Larissa Catacutan became Larissa Pilsner and was eventually granted U.S. citizenship.",
"\n\nAssimilation was not a problem for the new bride; she took charge of her husband's bank account and became adept at maxing out his credit cards. ",
"Though it caused the admiral great financial stress, he felt compelled to provide her with a steady stream of new black Mercedeses, her car of choice. ",
"Mrs. Pilsner loved nothing more than to park it in the flag officer reserved parking at the base commissary or PX, flaunting her jewelry and, by extension, her status to the primarily Filipino grocery baggers. ",
"The couple had never had children, not because they couldn't, but because they were both too selfish to give what is required in parenthood.",
"\n\nToday, even the admiral needed a break from her incessant talking, nagging, and gossiping. ",
"As she Skyped away with a relative back in the Philippines, Admiral Pilsner took his leave and made his way out to the front yard to make a call on a cell phone he used for only one contact.",
"\n\nHis first call went to a full voice mail box, which Admiral Pilsner knew was kept full by design. ",
"His second call to the same contact went to his assistant.",
"\n\n\"Capstone Capital. ",
"Steve Horn's office. ",
"This is Kelsie.\"",
"\n\n\"It's Gerald Pilsner for Steve Horn.\"",
"\n\n\"One moment please. ",
"Let me see if he is available.\"",
"\n\nTwo minutes later Horn picked up the line.",
"\n\n\"Gerald, how's the nose?\"",
"\n\nHow the hell did he know about that?",
"\n\n\"It's fine, Steve. ",
"It was all part of my plan to build support for the story that Commander Reece is unstable and capable of anything,\" he lied.",
"\n\n\"Well done, Admiral. ",
"We appreciate your sacrifice. ",
"How did Tedesco take the news in your office?\"",
"\n\n\"He didn't look great. ",
"I think he's having trouble with this. ",
"We always knew he would be the weak one. ",
"He's great as a fundraiser but gets wobbly in the knees when things get tough.\"",
"\n\n\"We needed him for the Hartley connection. ",
"Keep him cool until this blows over. ",
"What's the latest on your man Reece?\"",
"\n\n\"This is an unsecure line, Horn.\"",
"\n\n\"You worried about them monitoring your calls? ",
"You're king of the SEALs, for God sakes!\"",
"\n\n\"They monitor everyone's calls, Horn, everyone's.\"",
"\n\n\"Okay, let's just say that a plan is in motion, Admiral. ",
"Our problem will be solved in a week. ",
"Our friend who is in town from Virginia is setting it up now. ",
"Wish I could tell you more—need to know and all that. ",
"And don't worry, the drama with his wife and daughter play right into it. ",
"All loose ends tied up so we can finish the new set of trials. ",
"The drug is fixed, Gerald. ",
"It works and it's going to make us a lot of money. ",
"You might finally be able to afford to keep that wife of yours.\"",
"\n\nThe line went dead before the admiral could respond.",
"\n\n## CHAPTER 26\n\nSan Diego, California\n\nKNOWING WHERE HOLDER WORKED was a huge advantage. ",
"At some point he would stop by his office, and it would be easy to trail him from there. ",
"The hard part was not getting spotted; Reece's Cruiser wasn't exactly a \"gray man\" car. ",
"There was a huge subculture of Land Cruiser aficionados built around the iconic vehicles and more often than one would expect he would be stopped in a parking lot by an admiring fan to talk shop, something that had annoyed Lauren no end. ",
"Reece needed another vehicle.",
"\n\nThough it was sitting right there in the driveway where she had last parked it, he couldn't bring himself to use Lauren's old char-gold Jeep Grand Cherokee. ",
"She had loved that old car, and though Reece had often offered to upgrade her to something newer, she had shrugged it off. ",
"Her Jeep worked just fine. ",
"They would upgrade when more children entered the picture, she had said, and Reece knew better than to surprise her with a minivan. ",
"Lauren was not about to be a minivan mom, of that he was sure, regardless of how practical the things might be.",
"\n\nLeaving the car parked in front of their home somehow created the illusion that Lauren was still there with him, and at any moment would appear with a Lululemon bag over her shoulder while leading Lucy toward the Jeep for tumbling class, giggling together like coconspirators in a joke known only to themselves. ",
"Her car would stay where it was.",
"\n\nReece knew that he was a likely target for whoever was behind this conspiracy and that he should be hiding out somewhere, but he just couldn't bring himself to leave. ",
"Being in the house kept him connected to Lauren and Lucy, something that was more important to him than the threat of death. ",
"Besides, as far as he was concerned, he was already dead.",
"\n\nHe spent the weekend getting the house back in order, planning for the next phase of his operation, and working out to keep his head straight. ",
"He went through the stack of condolence cards and letters and did his best to respond to all of the texts and emails from friends around the world who'd heard about Lauren and Lucy.",
"\n\nLate Sunday evening Reece took a long run. ",
"He wanted to ensure everything in his skull was still where it was supposed to be after the biopsy and he had something he needed to pick up on base. ",
"Running had always helped him clear his head and keep him focused. ",
"After a quick warm-up he moved off at a brisk clip, weaving his way past the golf course and across the main drag to the public beach, where he headed south. ",
"He passed the Shores Condominiums, seventeen stories of the worst architecture the 1970s could produce, and which was now a permanent fixture on the coastal skyline and marked the southern end of Coronado's private property. ",
"Reece paused to flash his military ID at a bored sentry situated in a small makeshift guardhouse on the beach before continuing his run past WARCOM, BUD/S, and the SEAL Teams, sprinting up and over a berm and onto the SEAL obstacle course.",
"\n\nAs it was always a good test to ensure he was in top shape, Reece loved hitting the obstacle course. ",
"In BUD/S, they would line the class up according to their previous times to keep things running smoothly. ",
"Reece was never the fastest in the class but he was always in the top three. ",
"In a group of hungry alpha males, that was a world-class time. ",
"After BUD/S, Reece and his teammates would run the course in body armor to ensure they could move effectively in the gear they would wear downrange. ",
"The workouts were a good test of physical strength, stamina, endurance, and agility while at the same time bonding Reece's SEALs together as they pushed through it as a Team. ",
"This evening it was all his and he attacked it with everything he had: parallel bars, tires, low wall, high rope wall, cargo net, balance logs, rope transfers, the dirty name, the weaver, Burma bridge, slide for life, rope swing, monkey bars, incline wall, spider wall, vaults, and a final sprint to the end. ",
"Thankfully, everything in his head seemed to still be in place. ",
"Though breathing heavily, he felt good. ",
"He felt ready.",
"\n\nReece jogged back toward the Team and scanned the parking lot until he found it. ",
"Donny Mitchell's Nissan Sentra, its original green faded almost gray, was still in the Team Seven parking lot where he'd left it just before their deployment. ",
"He had been one of the single guys on the Team who'd been KIA, so no one had figured out the logistics of getting the car to his next of kin. ",
"When guys left their cars in the parking lot long-term, their keys were left in the troop space in case the cars had to be moved in an emergency due to flooding or facility maintenance.",
"\n\nThe car cranked over easily, and Reece's ears were shocked at the immediate blast of hip-hop music blaring from the speakers. ",
"He quickly found the button to turn the radio off and reached down to move the seat back; Donny had been quite a bit shorter than Reece. ",
"Quarter tank of gas. ",
"Reece would have to remember to fill up before he started to surveil Josh Holder in the morning. ",
"Putting the car in drive, Reece drove out the front gate and headed for home.",
"\n\n• • •\n\nThe DCIS office was just off I-5 in a busy area near a hospital. ",
"The office building's parking lot was adjacent to a Chili's restaurant, which made staking the place out without being suspicious a piece of cake. ",
"Reece didn't know what kind of car Holder drove, but he knew where he worked and what he looked like, which was a good start. ",
"He parked Donny's Nissan in the shade of a large palm tree in the corner of the lot, rolled the windows down, moved to the passenger seat to attract less attention, and set in for a long day. ",
"He figured that the DCIS guys probably used the Chili's like a cafeteria out of mere convenience, and around lunchtime he wasn't shocked to see a trio of guys who looked the part walk out of the office building and across the parking lot to grab a bite at the popular chain.",
"\n\nAs Reece waited hours for Holder to show, he ran through everything he knew about the events of the past few weeks. ",
"Why did these people want him and his troop dead so badly? ",
"It had to be related to the tumors. ",
"Why else would they want the entire detachment wiped out and then kill the doctor in Bagram who had discovered them? ",
"They had to be connected. ",
"But what could cause tumors like that? ",
"He considered the communications gear they were using; maybe it created some type of harmful radiation? ",
"That didn't make sense, though, because virtually every unit in Naval Special Warfare used the same comms gear. ",
"Most Army and Marine Corps units used similar equipment as well. ",
"If it had something to do with the radios, the problem would go far beyond Reece's element.",
"\n\nHis train of thought was broken by a black Cadillac Escalade pulling into the office parking lot. ",
"A man climbed out of the SUV wearing a dark gray suit with a white shirt and no tie. ",
"Even with sunglasses shielding part of his face, Reece recognized Special Agent Josh Holder. ",
"Holder scanned the parking lot as he closed the door, his head on a swivel as he walked toward the office building. ",
"This guy wasn't walking around with his head in the clouds or staring at his phone. ",
"Holder was a wolf.",
"\n\nReece looked down at his Resco UDT dive watch and took note of the time: 11:24 a.m. He couldn't risk taking a photo of Holder but snapped a few of his car after he entered the building to capture the license plate and details for future planning. ",
"Reece was using an old Nikon D90 he and Lauren had purchased in hopes of taking better-quality baby photos when Lucy was born. ",
"It did the job but he wished he had some assistance from his friends down at Special Reconnaissance Team One. ",
"That Team specialized in this kind of work and had an assortment of tracking devices that would have been extremely useful to the current problem set, but with what Reece had planned, he didn't want to bring any other active-duty guys into the fold. ",
"He was on his own.",
"\n\nHe assumed that Holder would be in the office for at least a few hours, so this was his chance to take a quick break and rid himself of some coffee. ",
"Surveillance was not Reece's forte. ",
"He had some rudimentary training but it was not something he considered his main skill set, which is why he now found himself desperately needing to use the restroom after just having sighted his prey. ",
"He thought of urinating in Donny's car but that just didn't seem right, so he swiftly walked across the parking lot to use the Chili's bathroom.",
"\n\nThe restaurant was starting to fill with the prelunch crowd so Reece attracted no attention as he skirted the hostesses and went down the hall to hit the head at the other end of the building. ",
"He washed his hands and was walking quickly back to assume his surveillance duties when he passed a young hostess carrying a stack of menus. ",
"He stepped aside to let her pass as four men in suits turned the corner behind her. ",
"He grabbed a menu from the bin mounted to the wall and quickly looked down to obscure his face. ",
"The first man clearly saw him but didn't take notice. ",
"The second and third men trailed along behind the hostess and never looked up, clearly more interested in her tight black jeans than their surroundings. ",
"The last man looked him up and down but couldn't see his face. ",
"That man was Josh Holder.",
"\n\nOnce the men had passed, Reece ditched the menu and walked directly out of the front door of the restaurant, thinking that he desperately needed a surveillance skills tune-up. ",
"His heart was racing as he moved across the parking lot and hit the button to unlock the small sedan. ",
"Reece was carrying his Glock 19 and could defend himself if they made a move on him, but shooting it out with four federal agents in broad daylight would have immediately compromised the rest of his mission. ",
"He also couldn't maintain his surveillance position any longer. ",
"A guy like Holder would notice the Nissan sitting in the same spot and possibly recognize him. ",
"Hopefully the DCIS boys would grab a few beers and let their guard down, but he couldn't count on that.",
"\n\nReece started the Nissan, looking for a new spot to continue his surveillance. ",
"The next-best option was a nearby Montessori school, but an adult male sitting outside a preschool was a sure way to attract suspicion, not to mention that it would probably be letting out soon, and he could easily get stuck behind a line of soccer moms in minivans picking up their kids.",
"\n\nAcross a small side street from the backside of the DCIS office there was a Botox and Beauty Boutique.",
"\n\nOnly in California, Reece thought.",
"\n\nIf there was any place where the clientele were too self-involved to notice a guy sitting in an economy car, this was it. ",
"He pulled into a spot where he had a view of Plaza Road, which was the only way that Holder could exit the office. ",
"He couldn't see Holder's Escalade from where he sat, but he would most likely be able to see him leave.",
"\n\nReece didn't have to wait long. ",
"Holder must have stopped by the office just to have lunch with the guys before heading back out. ",
"The car made a right out of the parking lot onto Plaza and then made an immediate right toward the intersection with Crown Valley Parkway, which was the main thoroughfare that connected with the interstate less than a half mile away.",
"\n\nReece assumed that Holder would head for I-5, so he went in the opposite direction on Plaza, turned left onto Los Altos, and stopped in the right-turn lane, preparing to turn as Holder passed his intersection. ",
"Instead he saw the black vehicle cross Crown Valley farther east and pass out of sight. ",
"Cars started to line up behind him as he was cleared to turn right with no way to get left without going the wrong way across eight lanes of traffic. ",
"Stomping on the accelerator, he made a right turn onto the parkway. ",
"If he'd been in his Cruiser he could have jumped the median and done a U-turn, but Donny's sensible commuter car would probably high-center on the curb. ",
"Reece sped west until he hit the next intersection and steered into the extreme left-turn lane. ",
"He caught a green light just as he approached the intersection and made a quick U-turn, failing to yield to the four lanes of oncoming traffic. ",
"He pinned the gas pedal and immediately wished that Donny had driven something with a lot more power. ",
"He steered into the right lane and quickly made up the distance back to the street where he had last seen Holder's Escalade. ",
"He made a right and immediately realized that he'd gotten lucky; this wasn't a street at all, but an entrance to an apartment complex. ",
"He drove up toward the simple wooden arm gate and saw his target vehicle parked in front of one of the buildings to his right. ",
"Bingo. ",
"Now he knew where Holder slept.",
"\n\nReece turned around in the cul-de-sac in front of the gate and drove back out toward the main road. ",
"He made a left and then a right into a bank parking lot. ",
"He wanted to make sure that Holder hadn't pulled into the complex simply to ditch him, which was highly unlikely, since Holder had access to the gate and it would have been difficult for him to have spotted the Nissan. ",
"He watched the parkway for nearly an hour, then left his vehicle on foot, not wanting to risk burning his car in a second drive-by, and walked back toward the apartments. ",
"He walked in via the access road until he caught sight of Holder's car. ",
"The vehicle hadn't moved. ",
"He made his way back to his car and headed for San Diego. ",
"He had accomplished his recon objective and was reasonably sure he hadn't been compromised.",
"\n\nIt made sense that Holder would live that close to work. ",
"A guy coming out to the west coast from the D.C. area without a family would do one of two things: get a place as close to the beach as possible or get one very close to the office. ",
"Holder didn't strike Reece as a guy who took long walks on the beach, so parking himself within walking distance of work was probably it. ",
"Deciding not to return Donny's car to the Team, Reece headed for home to make plans for the next phase of his reconnaissance.",
"\n\n## CHAPTER 27\n\nTHE NEXT MORNING, Reece headed out the door well before dawn, dressed in khaki pants, a white button-up shirt Lauren had bought for him, and a pair of brown loafers. ",
"He tossed his blue blazer into the backseat of Donny's Nissan and climbed into the driver's seat. ",
"He'd done an aerial recon using Google Maps and determined that another, ungated apartment complex just to the northeast of Holder's place offered a view of Bellogente Circle, the access road that led to the DCIS man's gate. ",
"Reece didn't think that a government employee who lived two minutes from his office would leave home too early, but you never knew.",
"\n\nHe found a spot with an unobstructed view of Bellogente through the oaks and waited for the sun to rise. ",
"When there was enough light to see, Reece pulled out the legal pad that he'd been making notes on and went back over all the facts. ",
"Katie had to be right; this was surely some kind of money deal. ",
"DCIS involvement suggested some type of procurement scam, but there wasn't a contract in the special operations community big enough to get this many people killed. ",
"It just didn't make sense. ",
"Besides, he couldn't imagine a contract deal that could give people cancer.",
"\n\nAt 8:25 a.m., the black SUV pulled out of the complex and crossed the parkway for the one-minute commute. ",
"Holder must report to the office at 8:30. ",
"He wasn't exactly kicking the rooster in the ass to get there early. ",
"Reece waited until 9:15 a.m. and then pulled out of the parking lot. ",
"He drove up to the gate and pressed zero on the keypad.",
"\n\n\"Can I help you?\"",
"\n\n\"Yes, ma'am, I'm looking for the leasing office.\"",
"\n\n\"Come on in.\" ",
"He heard dial tones and the white gate arm swung upward. ",
"He drove through the gate and pulled into one of the spots marked \"Future Resident.\" ",
"He grabbed his legal pad, put on his blazer, and walked up to the leasing office with a smile on his face.",
"\n\n\"Hi, I'm Carmen,\" said a middle-aged woman wearing a tan suit, too much makeup, and an overly healthy dousing of pungent perfume as she extended her hand. ",
"She wore gold rings on each of her fingers and had bright red nails that looked as fake as they were.",
"\n\n\"Hey there, Carmen, I'm Roy Boehm.\"",
"\n\n\"How did you hear about us, Roy?\"",
"\n\n\"I'm in medical sales and make quite a few calls in this area. ",
"I noticed this complex a few weeks ago. ",
"It looks like a great place to live.\"",
"\n\n\"It's a wonderful community. ",
"We have luxury apartments, and the amenities are fantastic. ",
"We have a pool, a fitness center, and a community room that you can reserve for parties or events.\"",
"\n\n\"How many bedrooms do they have?\"",
"\n\n\"We have two- and three-bedroom models. ",
"Would you like to see one?\"",
"\n\n\"I'd love to. ",
"A two-bedroom is fine. ",
"My wife and I don't have any children.\"",
"\n\n\"Let me grab my keys, and we can take a look.\"",
"\n\nThe model apartment was in the closest building to the leasing office and Reece followed Carmen down the sidewalk at a painfully slow pace thanks to a pair of high-heeled shoes that she hadn't quite mastered. \"",
"Isn't this place just gorgeous? ",
"Can you see yourself living here?\"",
"\n\n\"It's really nice. ",
"The main attraction for me is the location. ",
"It would cut down my drive time every day.\"",
"\n\n\"Oh yes, we get a lot of that.\"",
"\n\nAs they approached the unit, Reece pulled a small digital camera from his pocket.",
"\n\n\"Carmen, do you mind if I take a video to show my wife? ",
"She's away on business this week.\"",
"\n\n\"Of course, whatever you need to do. ",
"All of the two bedrooms are identical to this one.\"",
"\n\nAs Carmen fumbled with a large ring of keys, Reece pressed a button to begin recording, being sure to zoom in closely on the door locks. ",
"She found the correct key, put it into the well-worn dead bolt, and opened the exterior door. ",
"Reece took a tour of the decorated model apartment, pacing off dimensions and writing them on his legal pad as well as filming the locations of light switches, power outlets, and the circuit breaker. ",
"He asked questions about utility rates, opened kitchen cabinets, and went through all the painful motions of someone looking for a place to live. \"",
"I notice there's no security system. ",
"Do any of the units have them?\"",
"\n\n\"No, there are no alarm systems. ",
"Our lease agreement does not allow you to do any wiring or install any permanent systems. ",
"We are a gated community, though, in a safe area so it's never been an issue.\"",
"\n\n\"Well, that's comforting. ",
"I was just curious. ",
"How much is the rent?\"",
"\n\n\"It's twenty-nine hundred per month, and we offer both twelve- and twenty-four-month leasing agreements.\"",
"\n\n\"Oh, wow, that's really more than we were looking to pay. ",
"You see, we bought our house back in Las Vegas at the height of the real estate market and we're underwater on it. ",
"It's really stretching our budget. ",
"I thought these would be more like fifteen hundred a month.\"",
"\n\n\"Oh Roy, I'm sorry, we don't have anything in that price range. ",
"Maybe if your wife falls in love with it you can make it work?\"",
"\n\n\"I'm so sorry. ",
"We just can't swing it. ",
"I hate that I've wasted your time. ",
"I don't want to take up any more of it,\" Reece said, heading for the door.",
"\n\n\"Please, let me take down your information and I can speak to the owner,\" Carmen pled, desperate to make a deal.",
"\n\n\"I'm sorry, ma'am, I really better go. ",
"I'm so embarrassed.\" ",
"Reece picked up the pace as Carmen stumbled along behind him in her heels.",
"\n\nReece started the car and waved out the open window to her as he backed out of the parking spot and steered toward the automatic exit gate.",
"\n\nHaving completed his close target reconnaissance he was ready to move to the next phase of mission planning.",
"\n\n## CHAPTER 28\n\nBY LATE AFTERNOON REECE had reviewed the video and his notes and had created a floor plan of the apartment on a large piece of poster board. ",
"On a second sheet he had drawn a sketch of the apartment complex and adjoining area and had pinned both to his bedroom wall. ",
"He would have preferred to have done it in the living room, but it would have been difficult to explain what he was up to if a friend or neighbor had dropped by to check on him. ",
"He'd purchased the same brand and model dead bolt that the apartments used and installed it on his bedroom door. ",
"It had been years since he'd messed around with lock picks, and it would take some practice to get his skills back up to par. ",
"He'd pick the lock, then stand and stare at the floor plan and sketch, making notes on the legal pad on his bed. ",
"He'd use the picks to relock the door and then do it all over again. ",
"He ordered a pizza and kept at it until midnight, when he finally had the plan developed to his satisfaction.",
"\n\nHis idea was based on some assumptions. ",
"Since whatever conspiracy Holder was involved in spanned at least two countries and probably both coasts, there was most likely some email or other message traffic going on among the players. ",
"He would not risk putting that kind of information on a DOD-issued computer, where it would be subject to scrutiny. ",
"Whoever was behind this wasn't inept enough to get caught by a nosy reporter filing a FOIA request. ",
"His second assumption was that Holder did not carry the non-DOD computer with him to work. ",
"Doing so would arouse suspicion that he was either up to no good or doing personal business on government time. ",
"He also wasn't carrying a computer when Reece saw him in the parking lot or in the restaurant. ",
"It was most likely stashed in either his vehicle or his apartment. ",
"Reece was banking on the latter.",
"\n\nWar had become extremely technical over the past decade and even door kickers like Reece had to learn to exploit electronic avenues to defeat the enemy. ",
"He'd been sent to several schools to learn how to harvest and decipher data from cell phones and computer networks, and though he was far from an expert in the field, he knew enough to get the job done.",
"\n\nEquipment existed that would have allowed him to access Holder's computer remotely, but he left that kind of thing up to the technical guys, and trying to obtain that equipment in his current situation could leave a clue as to his intentions. ",
"Reece did have a less sophisticated device that he'd secured from his gear locker, one that required him to physically access the computer in question. ",
"As much as he wanted to simply kick the front door down, shoot Josh Holder in the face, and grab the computer, that didn't exactly fit into the overall plan, at least not yet. ",
"Reece needed the information on Holder's computer to map out the enemy network so he could destroy it piece by piece.",
"\n\nKnowing that Holder wasn't likely to leave his apartment too early, Reece pulled into the parking lot of the medical office building adjacent to the complex at 7:00 a.m. The only separation between the parking lot and Holder's building was a strip of grass and trees along a four-foot aluminum fence. ",
"At 8:15 a.m. he got out of the small Nissan and stood by an oak tree near the fence line, going through the motions of the world's longest stretching routine.",
"\n\nHe wasn't sure which unit was Holder's, so he put himself in a position where he'd be able to watch him walk out of any door on that side of the structure. ",
"The Escalade had been parked on that side all three times that Reece had seen it over the preceding days. ",
"He was dressed in running clothes: shorts, a lightweight gray windbreaker, a cap pulled low, and sunglasses. ",
"He hadn't shaven since his trip to Katie's hotel, and his dark and increasingly gray beard was starting to change the appearance of his face.",
"\n\nHolder walked out of his apartment seven minutes later and locked the door behind him. ",
"He scanned the area as he walked but took no notice of the jogger stretching on the other side of the fence. ",
"Reece waited for the big Cadillac to pull out of the complex and pass through the gate before vaulting over the fence and casually walking toward Holder's apartment door. ",
"Putting on gloves, he unzipped his windbreaker, exposing a nylon Hill People Gear runner's chest pouch that held the equipment he would need. ",
"It took him about ten seconds to open the deadbolt. ",
"He didn't worry about any \"telltales\" left at the door to betray his intrusion, since he had watched Holder swiftly exit the unit. ",
"If Holder had installed any type of security system on his own, Reece was about to find out.",
"\n\nHe locked the door behind him and found an apartment almost completely devoid of furnishings, making it seem larger than the model unit. ",
"The living room had a flat-screen television sitting in the built-in entertainment center, a cheap black faux leather couch, and a small coffee table where Holder probably also took his meals. ",
"The area where you'd expect to find a dining table was empty. ",
"There was no sign of an alarm system or any type of surveillance device, though you could hide a camera anywhere these days.",
"\n\nReece went for the smaller of the two bedrooms first, assuming that Holder would be using it as an office. ",
"He was right. ",
"He found a small computer desk and office chair common to big-box office retail stores. ",
"A black neoprene zippered case was lying on top of the desk. ",
"Reece opened it and extracted a black laptop computer. ",
"Taking a silver aluminum device out of his pouch that was slightly larger than a smartphone, he connected it to the computer's USB port. ",
"A red light on the unit began flashing, indicating that the contents of the hard drive were being downloaded.",
"\n\nIt would take several minutes to download the information so Reece took a knee in the corner of the room and drew the Glock from his runner's pouch to cover the doorway. ",
"If Holder realized that he'd forgotten something and returned home, it was going to get loud. ",
"After ten minutes that seemed like an eternity, the blinking light turned green. ",
"Reece holstered his handgun and retrieved the device, putting Holder's laptop back in the case exactly as he'd found it.",
"\n\nHe did a quick recon of the remainder of the apartment, particularly of the bedroom. ",
"Holder's sleeping quarters were slightly less Spartan than the rest of the apartment, but not by much. ",
"He obviously wasn't planning on spending much time in the area. ",
"Reece resisted the temptation to do something unmentionable with Holder's toothbrush, but instead peered through the peephole before exiting the apartment, spraying the hinges with a small can of WD-40 as he shut and locked the door behind him. ",
"Closing the chest pouch, Reece zipped up his windbreaker and jogged back to his car.",
"\n\n## CHAPTER 29\n\nHartley Family Foundation Offices\n\nNew York City, New York\n\nJ. D. HARTLEY WAS IN HIS Manhattan office when the call came in on his secure line. ",
"It was the best encryption that NSA could provide. ",
"Nobody but the president had anything close. ",
"The call was from his wife, Lorraine, to whom he rarely spoke about anything other than business.",
"\n\n\"Lorraine, what do you need?\"",
"\n\n\"What are you doing, J.D.?\"",
"\n\n\"Reviewing a foundation event speech. ",
"Is everything okay?\"",
"\n\n\"Have you been under a rock, J.D.? ",
"Everything is not okay. ",
"We need to close the loop on this drug thing. ",
"Tedesco is your man, J.D. This is your show. ",
"I need this Reece guy dead and I need it to happen now. ",
"I am not going to let one of your get-rich-quick schemes take down my political career. ",
"I've given them access to all kinds of classified assets. ",
"They better not fuck this up.\"",
"\n\n\"I know, I know. ",
"This guy has proven to be hard to kill. ",
"It's not like we're trying to take out a mess cook. ",
"What do you want me to do? ",
"Another attempt on him in his house would definitely raise some eyebrows.\"",
"\n\n\"I want you to get on a plane and make those clowns understand that this needs to end now or we're out and the deal is off. ",
"I don't care how much money is on the table or what disease this thing is going to cure. ",
"I should have never let you talk me into this in the first place.\"",
"\n\n\"Lorraine, I can't go to L.A. I've got meetings here in New York.\"",
"\n\n\"Jesus, J.D., isn't there a skirt you can chase in California? ",
"I know damn well that your 'meeting' involves you and some blonde young enough to be your daughter. ",
"When are you going to grow up? ",
"You let your dick ruin your chances of becoming president. ",
"I'm sure as hell not going to let it ruin mine.\"",
"\n\n\"Fine, Lorraine, fine. ",
"I surrender. ",
"I'll get on a plane and get it handled.\"",
"\n\n\"You'd better. ",
"I don't want to hear any more about this. ",
"If anyone on the Hill even gets a sniff of what we're up to, we'll be dragged into hearings for the next two years.\"",
"\n\n\"I agree. ",
"I'll handle it.\"",
"\n\n## CHAPTER 30\n\nCoronado, California\n\nREECE HAD BEEN TO ENOUGH specialized schools to handle the basics of electronic eavesdropping and on-site exploitation of data, but he was an operator, not a hacker. ",
"A guy like Holder would no doubt have information of this magnitude encrypted and firewalled, and that was outside Reece's lane. ",
"At work, he'd simply hand the cloned hard drive over to the technical guys, who would take it from there, but he didn't exactly have that luxury now. ",
"As much as he wanted to do this completely alone, the reality was that he was going to have to rely on some friends to execute his plan. ",
"There was only one guy whom he could really trust who had enough computer knowledge to get it done. ",
"It was time to bring Ben Edwards into the fold.",
"\n\nBen was still in Southern California, doing whatever spook work he did, and had checked in on Reece daily via text or phone call. ",
"He'd continually asked Reece if he wanted to get dinner or drinks, but Reece maintained that he wasn't ready for company. ",
"He now sent Ben a text message asking if he could drop by later for some beers. ",
"Ben wrote back right away in the affirmative. ",
"Ben had been over to Reece's house dozens of times, so their meeting would be as routine as it got and shouldn't cast any suspicion onto Ben as a conspirator in things to come.",
"\n\nBen Edwards knocked on the back door at 8:00 p.m. carrying an armload of Arrogant Bastard Ale and a pizza. ",
"You couldn't show up at someone's house in San Diego these days without some of the best local microbrews available. ",
"They made small talk about the condition of the house as they ate and drank until it was time to get down to business. ",
"Reece turned on the TV and raised the volume almost as high as it would go. ",
"He pointed to his pants pocket and mouthed \"phone?\" ",
"as he cocked his head to one side.",
"\n\n\"No, man, it's in the car. ",
"I'm clean,\" Ben responded, immediately understanding what Reece was asking.",
"\n\nReece turned down the TV volume to a level where they could speak, but didn't turn it all the way off.",
"\n\n\"Remember after the funeral when you told me to holler if I needed you, no matter what?\"",
"\n\n\"Yeah, I meant it, you know that.\"",
"\n\n\"I know you did, and I've got a favor to ask. ",
"It's a big one, though, and it could get you in a pile of trouble if anyone ever knew you were involved.\"",
"\n\n\"I was bound to get in a pile of trouble at some point. ",
"Might as well be for helping you,\" Ben quipped with a smile. \"",
"What do you need?\"",
"\n\nReece told him most of what he knew about Josh Holder and his potential involvement in what could only be some type of conspiracy. ",
"He left out some key details, including any mention of Katie Buranek. ",
"Ben was understanding and didn't ask too many probing questions.",
"\n\n\"Like I said, I did a download of Holder's laptop, but you know I'm not a tech guy. ",
"I need your help in breaking through the encryption and sorting through the data to find something relevant.\"",
"\n\n\"Easy day, bro, but I don't have the hardware to mess with it here. ",
"If you give me the hard drive, I'll take it in tomorrow and get it done. ",
"Assuming I can find something, I'll come by tomorrow night and show you what we've got. ",
"I know what you've gotta do, man, and I'm with you, no matter what. ",
"And, just so you know, I've already got assets working on finding the gangbanger fucks who did this.\" ",
"Ben motioned to the shattered drywall and plywood-covered front door.",
"\n\n\"Appreciate it, brother, I really do. ",
"I don't want to involve anyone more than I have to, but I need the information on that drive to help unravel this thing. ",
"Just know that when the time comes, I'm handling the wet work.\"",
"\n\n\"Well, with talk like that,\" Ben said, breaking out a pen and notepad, \"I want you to check this folder in a shared SpiderOak room from time to time. ",
"Ever use it?\"",
"\n\n\"No,\" Reece replied, \"but it sounds familiar.\"",
"\n\n\"Probably because it gained some popularity when Edward Snowden used it in his escapades.\"",
"\n\n\"That's it. ",
"I must have heard about it in the debates about government surveillance programs.\"",
"\n\n\"Yeah, that fucker did incalculable damage to national security by leaking that NSA information,\" Ben said with disgust.",
"\n\n\"Probably so, but he also made us all a bit more cautious about how we communicate and who may be listening.\"",
"\n\n\"We are always listening, bro,\" Ben added with a smile. \"",
"If I need to pass you anything sensitive I'll leave it in this shared room on SpiderOak,\" he continued, writing down a username and a random number/letter/symbol set of twenty-six characters. \"",
"Use this to get in. ",
"It's like a very secure version of Dropbox where not even the Company can get access to the file. ",
"It drives the NSA nuts. ",
"Use a VPN that you buy with a gift card purchased with cash from Wal-Mart or Starbucks or something and it's about as secure as we can get off the shelf.\"",
"\n\n\"You're a lot brighter than you look, you know.\"",
"\n\n\"Ha! ",
"Thanks. ",
"Just know I'm here if you need me, brother.\"",
"\n\n\"I know, Ben. ",
"It means a lot.\"",
"\n\nBen Edwards finished his beer and stood to leave. ",
"He and Reece locked thumbs in an upward handshake and then gave each other a backslapping hug.",
"\n\n\"Remember, my cabin back east is always available if you need a place to go to get away from all this,\" Ben offered sincerely.",
"\n\n\"Thanks, Ben. ",
"I appreciate that.\"",
"\n\n\"Absolutely. ",
"Later, buddy,\" Ben said over his shoulder as he departed out the back door.",
"\n\nReece collected his thoughts and then walked into the garage to start organizing the weapons, ammunition, and equipment that he'd taken from his cage and the armory. ",
"He looked like a man preparing for war, which is exactly what he was. ",
"Whoever these people were, they had taken everything from him. ",
"Everything but his will to fight. ",
"For that, they would pay dearly.",
"\n\n• • •\n\nBen returned the following evening wearing a small backpack and carrying a six-pack of Ballast Point Sculpin IPA, a perennial San Diego favorite, this time supplemented with Thai takeout.",
"\n\nThey exchanged greetings and Ben removed a small device from his pack, making small talk with Reece as he walked around the living room. ",
"He was sweeping the room for listening devices, his level of caution indicating that he'd found something meaningful on the hard drive. ",
"The device showed no sign of a bug, but Reece turned the TV on anyway and pumped the volume up higher than normal.",
"\n\n\"Aside from the disturbing amount of 'babysitter porn,' I found a bunch of shit that you're gonna want to see, Reece. ",
"I had to get one of the tech nerds to help me decrypt the data but don't worry, he didn't have any idea what he was looking at.\" ",
"Edwards removed a file folder from his pack and placed it on the coffee table.",
"\n\n\"Let's see it,\" Reece said, as he took a seat on the couch next to Ben.",
"\n\n\"Mainly, we have emails, traffic between Holder and a guy named Saul Agnon. ",
"Also some between Holder and another cat named Marcus Boykin. ",
"Some email chains with all three guys on them. ",
"Those names mean anything to you?\"",
"\n\n\"Yeah, I think Agnon works for Capstone Capital, some kind of private equity fund. ",
"Haven't heard of Boykin.\"",
"\n\n\"That's about right. ",
"Agnon seems to be doing the legwork on this thing for someone named Horn, and Boykin appears to be an outside advisor. ",
"They keep referencing 'the Project' and 'RD4895.' ",
"Whatever that is, it looks like it's the basis of this entire thing. ",
"Check this one out.\" ",
"Ben handed a printout of an email to Reece.",
"\n\nFrom: MBokyin\n\nTo: Agnon\n\nSubject: re: our last\n\nRecommend eliminating all evidence of adverse events- manner of death should, if possible, prevent discovery of abnormalities. ",
"Leverage IPs to clean the slate and start over.",
"\n\n—MB\n\nBen took a sip of his beer and handed Reece a second sheet.",
"\n\nFrom: Agnon\n\nTo: MBoykin\n\nSubject: re: re: our last\n\nGot it. ",
"Coordinating with frog to take out test subjects while overseas. ",
"Will handle any cleanup from our end. ",
"Please advise timetable for RD4895-C, boss is impatient.",
"\n\nReece didn't have any idea what \"RD4895\" was, but he was now sure that it had caused the tumors in his men and gotten a lot of good people killed, including Lauren and Lucy. ",
"He wasn't confident of much at this point, but he was sure that more people were going to die before this was over, but this time they weren't going to be innocent.",
"\n\n## PART TWO\n\n## THE LIST\n\n## CHAPTER 31\n\nSan Diego, California\n\nHUMZA KAMIR HEARD the bell and instantly dropped his gloves to his sides, his arms and shoulders exhausted from hitting the heavy bag. ",
"Most of the fighters mingled cordially at the end of the workout, but Humza kept to himself. ",
"He didn't share a common culture with any of the other members of the gym; their only bond was a love of boxing and a willingness to suffer. ",
"Sure, there were some other men who called themselves Muslims. ",
"All were black men who converted during stints in the state prison system, but they treated the religion more like a gang membership than a true belief. ",
"Kamir's beliefs were pure. ",
"He did not chase women, he did not drink alcohol, and he read the Qu'ran daily.",
"\n\nThe gym's locker room would be considered dingy by U.S. standards, but to a man who grew up in the slums of Lahore, Pakistan, it was perfectly comfortable. ",
"Despite his feelings toward the sins of Westerners, he felt fortunate to live in California, where he and his family could at least be safe. ",
"He showered quickly and changed back into his street clothes, a pair of Levi's and a Manchester United football jersey. ",
"He walked through the metal door of the gym without talking to or making eye contact with anyone and climbed into his workplace, his refuge, a yellow taxicab. ",
"He pulled his cell phone out of his pants pocket to call his dispatcher and saw that he had a text message. ",
"The message was not from one of his contacts, but from a number that he didn't recognize. ",
"When he read it, the blood in his veins ran hot, and his neck flushed.",
"\n\nYour mother is sick and needs you to call her.",
"\n\nKamir's mother had died twenty-six years ago, during his birth. ",
"He was raised by his maternal grandparents and a stable of aunts and uncles, abandoned by a father that he never knew. ",
"Uneducated and resentful of the excesses of American culture, he was a prime target for radicalization, which took place for the most part online. ",
"As far as he was concerned, his father was the Prophet and the text message was from one of his father's messengers. ",
"The message was from a man whom he'd never met but prayed to hear from each day. ",
"His calling in life was not to drive people to the airport and bring drunks home from bars; it was to carry out the word of Allah. ",
"The messenger was to help his life meet its purpose. ",
"He put the Crown Victoria into drive and headed east.",
"\n\nThe U-SHIP store was in a strip mall in a middle-class neighborhood in the San Diego suburbs. ",
"He'd come here often, ever since being given the key, and had spent many hours sitting in his cab in the parking lot wondering what his calling might one day be. ",
"When his brothers had risen up in the Levant and toppled their puppet governments, he knew his time was near. ",
"Soon sleeper cells in the West composed of men like Kamir would do their duty and pave the way for a worldwide caliphate. ",
"His moment of glory would soon be upon him.",
"\n\nHe watched the storefront for nearly twenty minutes, until three different patrons walked through the doors with objects to ship. ",
"He didn't want to have to answer any questions and he assumed that the busier the store's employees were, the better. ",
"He left the Ford unlocked and strode quickly toward the shopping center, looking around nervously for any sign of law enforcement, knowing full well that he'd never be able to spot the FBI agents if they were on to him.",
"\n\nOnly one employee appeared to be working, and she paid him no mind when he entered. ",
"She was busy helping an elderly woman pack what looked like children's gifts into a shipping box as other customers in line rushed her along with their glaring eyes. ",
"The post office boxes occupied the portion of the store closest to the entrance and could be partitioned off by a sliding metal gate so that the boxes could be accessed after normal store hours.",
"\n\nHe scanned the boxes and quickly located 2102, the number he'd been made to memorize. ",
"Choosing the only unused key from his key ring, he slid the key into the lock and opened the windowed brass door. ",
"A brown cardboard box, slightly larger than a cigar box, sat inside the rectangular opening at an angle. ",
"Kamir reached inside and slid it outward, surprised at its weight.",
"\n\nHe closed and locked the box and turned toward the front of the store. ",
"What he saw there froze him in his tracks: a uniformed policeman was opening the glass entrance door, looking directly at him.",
"\n\nPanic set in. ",
"He wasn't sure whether to attack the officer and try to get his gun, or run past the counter and hope for a back exit. ",
"If he got a hold of the gun, he could at least kill the officer and the other customers in the store before he was martyred. ",
"It wasn't how he'd dreamed of it, but it was better than spending the rest of his life in a small cell, thinking about how he'd failed Allah.",
"\n\nAs he stood for a moment, trying to make up his mind, the officer spoke. ",
"Kamir's ears were rushing with blood, like the sound of the ocean, and he couldn't make out what the man was saying. ",
"Finally the officer stood outside the opened door and gestured for Kamir to pass; the policeman was smiling. ",
"A feeling of total relief washed over him. ",
"He forced a smile and bowed his head at the officer as he passed by into the parking lot.",
"\n\nHe hurried back to the security of his cab and thanked Allah for his helping hand. ",
"Quickly starting the car, he drove around the back of the strip mall, where dumpsters sat askew along a battered chain link fence. ",
"Putting the car into park, he took a cheap Chinese-made pocketknife from the center console. ",
"He cut through the tape surrounding the box and carefully opened the flaps, peering curiously inside. ",
"Whatever his future held, he would find it here. ",
"The box contained two envelopes: a legal-size white one and a larger manila one. ",
"He fished the smaller envelope out and cut it open with the small knife.",
"\n\nThe envelope contained three folded sheets of paper, which he opened and examined carefully. ",
"The first page was a letter from his handler, telling him what he must do. ",
"He was to kill a man, a man who had brought about the deaths of scores, perhaps hundreds, of his Muslim brothers. ",
"His handler would help guide him, but Kamir was to have the honor of avenging those lives. ",
"He was to wait for a text message that would direct him to his objective. ",
"The second page was a description of the target: a home address, a list of places he was known to frequent, and a description of his vehicle. ",
"On the third page was printed a series of photos: one that looked like a mug shot of a man in a military uniform, another full-body candid shot of what appeared to be the same man, a photo of a small but well-kept suburban home, and a photograph of a white Toyota Land Cruiser similar to those prevalent throughout the Middle East.",
"\n\nAfter rereading the letter on the first page, Kamir reached into the box and took out the larger manila envelope. ",
"He tore open the sealed top and found a heavy black handgun inside along with a spare loaded magazine. ",
"He'd never shot a gun before but he'd seen it done a million times in movies. ",
"As a Middle Eastern–looking man, he stayed away from the local gun ranges so as not to arouse suspicion. ",
"America was a tolerant and diverse place, something that warriors of Islam could exploit. ",
"Still, it was better to be safe and keep one's distance from flight schools and gun ranges.",
"\n\nHe felt a mixture of fear and power as he wrapped his fingers around the grip of the handgun. ",
"It felt massive. ",
"He studied the lettering on the side of the steel slide: PIETRO BERETTA—MADE IN ITALY. ",
"Kamir recognized the weapon as a common one, though this particular gun lacked the prominent safety lever or exposed hammer. ",
"Clutching the grip with his right hand, he pulled back on the slide with his left hand and was so surprised when a loaded 9mm cartridge ejected from the gun and flew into the backseat that he nearly dropped the pistol. ",
"Embarrassed by his fumbling, he stashed the handgun under his seat, put the cab into drive, and headed toward the San Diego–Coronado Bridge.",
"\n\n## CHAPTER 32\n\nCoronado, California\n\nAFTER BEN HAD LEFT, Reece stayed up all night, drinking coffee and sorting through the pages and pages of documents, emails, spreadsheets, and notes that had been retrieved from Holder's hard drive. ",
"Ben had done everything he could to convince Reece to get out of his house and hole up someplace safe, but in the end, Reece would have none of it. ",
"He wanted to be close to the memories of his family, and if whoever was behind this came to call, all the better as far as Reece was concerned. ",
"He would be waiting.",
"\n\nReece sat on the couch in the living room with hundreds of pages of documents collated into stacks on the coffee table, love seat, and floor. ",
"He began to put some of the pieces in place, but the players were fairly careful with what they put in writing. ",
"Like pieces of a giant four-dimensional jigsaw puzzle, bits of information that meant nothing on their own made more sense in context with events of the past month.",
"\n\nReece's enlisted rate, or military occupational specialty, prior to going to Officer Candidate School was Intelligence Specialist, which sounded far more interesting than it actually was. ",
"Still, that training, along with close to two decades of experience studying obscure information to develop target packages, was helpful. ",
"At roughly 4:00 a.m. he'd gathered enough information to start the planning phase. ",
"He stood and walked into the kitchen, standing in front of the refrigerator. ",
"He pulled a piece of paper held by a magnet from the front of the fridge and held it in both hands as if it were a sacred document. ",
"On the paper was a crayon drawing of three figures standing on green grass with a sun in the sky and a rainbow arcing downward. ",
"Above the heads of the three figures, in his wife's handwriting, were \"Daddy,\" \"Mommy,\" and \"Lucy.\" ",
"With the drawing in hand, Reece returned to the couch and flipped the paper over. ",
"He took a pencil from the coffee table and began carefully writing a list of names on the back:\n\nJOSH HOLDER\n\nMARCUS BOYKIN\n\nSAUL AGNON\n\nSTEVE HORN\n\n## CHAPTER 33\n\nREECE MANAGED A FEW hours of sleep before he awoke with the sun shining into his eyes through a slit in the curtains. ",
"He put a cup of last night's coffee in the microwave and changed into his running clothes. ",
"He ran for an hour, pushing himself hard during two-minute interval sprints and slowing to a measured jogging pace for a minute in-between. ",
"He spent half of the run on the beach, staying in the soft dry sand instead of the easier track at the tide line. ",
"Finishing his run, he blended into the vacationers at the Del and steered for the main lobby. ",
"He connected to the Wi-Fi signal and logged in to his Signal app. ",
"No messages from Katie, but he had one from his friend Elizabeth Riley. ",
"He touched the screen to decrypt the message.",
"\n\nReece, here on wings if you need me. ",
"Thinking about y'all,\n\n—Liz\n\nLiz Riley was one of the toughest human beings Reece had ever met and as loyal a friend as one could have. ",
"He could definitely use her help on what was to come. ",
"He typed a response:\n\nthanks for the kind words, Liz. ",
"i may take you up on that. ",
"how flexible is your schedule these days?",
"\n\nHe tapped the screen to get to his contacts and chose Katie Buranek's name.",
"\n\nlots to tell you. ",
"we should meet, somewhere secure, I can come to L.A.\n\nHe walked to a coffee station in the lobby and filled a paper cup from the urn. ",
"He was trying to kill a few minutes, hoping that Katie would respond. ",
"The good news was, these days, staring intently at the device in your hand was about as innocuous an activity as you could find. ",
"No word from Katie, but a message from Liz Riley appeared.",
"\n\nBoss is out of the country, sitting on my thumb with gas to burn. ",
"You say when and where and I'll be there.",
"\n\n—Liz\n\nReece set the coffee down and typed a response:\n\nthanks. ",
"will keep you posted, won't be this week.",
"\n\nEighteen years as both an officer and enlisted man in Naval Special Warfare had forged some extremely loyal friendships for Reece, and his actions throughout multiple combat deployments put more than a few of his colleagues into his debt. ",
"Perhaps no one was more loyal to James Reece or had more in his debt column than Elizabeth Riley, though Reece never would have thought of it in those terms. ",
"Liz Riley was an Army aviator who'd grown up beneath the shadows of passing Blackhawk and Apache helicopters in South Alabama, just outside the gates of Fort Rucker.",
"\n\nEvery Army helicopter pilot in the country learned to fly over the planted pines and peanut fields of the Wiregrass region, and while most residents ignored the noisy machines overhead, Riley spent her childhood looking skyward. ",
"Her mother left when she was young, leaving her to be raised by a tough but loving former Marine NCO father and a genuinely kind stepmother. ",
"Her teachers laughed when she told them that she'd fly one of those helicopters one day, but she was undeterred. ",
"By the time she was old enough to enter the Warrant Officer Flight Program, the Army had begun accepting female applicants. ",
"The tomboy turned cheerleader's proudest moment came when her father pinned her wings to her uniform.",
"\n\nRiley was flying a close air support mission over Najaf, Iraq, when her OH-58D Kiowa Warrior was hit by an RPG round. ",
"The resulting crash killed her copilot and severely injured Riley's lower back. ",
"A group of Shiite insurgents surrounded the crash site within minutes, determined to capture and torture any survivors. ",
"Despite her wounds, she killed half a dozen men with her M4 before escaping into the urban maze of the ancient city. ",
"Facing unmentionable torture and degradation if captured, she was determined that she would not be taken alive.",
"\n\nReece and his four-man sniper team were holed up in an overwatch position of a heavily IED'd street corner when they saw the helo go down a few blocks away. ",
"Reece had radioed back his intention to move to the crash site to check for survivors but had been ordered to remain in overwatch while an assault force mobilized a response. ",
"When information came back that the assault force was two hours out, Reece ordered his men to prepare to move. ",
"Hearing Liz's M4 start to mix with the cracks of the insurgent's AKs, Reece and his Team moved toward the sound of the guns.",
"\n\nMuqtada al-Sadr's Mahdi Militia controlled most of the city at that time and Reece's team faced extraordinary danger by going in as a four-man element. ",
"They took over a house closer to the crash site and herded the family into a bedroom to keep them quiet. ",
"Reece found the keys to the family's battered old minivan while one of his snipers took position on the top floor inside a small bathroom. ",
"The other watched the front door and kept an eye on the family.",
"\n\nFiguring out where Liz had found refuge was not difficult. ",
"Reece and the two other snipers in the second floor of the home watched as eight black-clad Mahdi Militia members converged on one particular building across from the crash site.",
"\n\nReece and his snipers dropped all eight with suppressed shots from their Mk11 7.62 sniper weapons systems. ",
"Then, leaving one sniper in overwatch and the other still watching the entrance and the family, Reece and Boozer borrowed the sequestered family's minivan and parked in an alley adjacent to what they suspected to be Liz's position. ",
"Reece left Boozer in the driver's seat under the watchful eye of his team's best sniper, surveying their movement from the home down the block.",
"\n\nMore Mahdi Militia were converging on the scene as Reece made entry into the target building, forcing him to run through a wall of PKM machine gun fire to reach Riley's location.",
"\n\nThe adrenaline from the crash had worn off, and her back injury was so severe at this point that she was unable to walk. ",
"Reece put his own body armor and Kevlar helmet on Liz before gently hoisting her onto his shoulders and running his way back through the .30-caliber hornet's nest under the suppressive fire of his sniper to Boozer's minivan, parked just behind the cover of a thick wall in the nearby alley. ",
"An enemy round ricocheting off the street felt like a baseball bat when it passed through Reece's calf, but he was able to stay on his feet long enough to get Riley into the alley where Boozer was waiting with the van. ",
"Reece placed Liz onto the floor of the vehicle as carefully as if he were putting a baby into a crib before Boozer sped back toward the house where the other half of the sniper team was waiting.",
"\n\nThey all exfiltrated via the \"borrowed\" van back to base, where Riley was airlifted to Balad for emergency surgery before being flown to Landstuhl Regional Medical Center in Germany for more advanced care.",
"\n\nReece was called on the carpet for insubordination for failing to obey the order to stay put even though his decision to move saved the Army pilot's life. ",
"Things calmed down when Riley's commanding officer called to express his sincere thanks to Reece's entire chain of command for taking such decisive and courageous action. ",
"He followed up by forwarding Army Commendation Medals with Valor to Reece's sniper team.",
"\n\nLiz Riley's spine injuries ended her military career but didn't sap her desire to fly. ",
"She worked herself to exhaustion during months of brutal rehabilitation, which paid off when she regained full range of motion and functionality in her back. ",
"Medically retired, she found a great gig as a private pilot for a Texas oil tycoon. ",
"He spent most of his time jetting around the world with two other pilots in his Global Express jet, but when he wanted to fly into small backcountry airstrips to fly fish or elk hunt, Liz flew him there in his single-engine turboprop Pilatus.",
"\n\nIn Liz's mind, she owed Reece her life, and she had built a lasting friendship with him and Lauren over the ensuing years. ",
"She was single and, with no children of her own, had treated little Lucy like a favorite niece. ",
"Their deaths hit her hard.",
"\n\nReece strolled out of the lobby and back toward the beach for his walk home. ",
"His mind began racing as he started to formulate the specifics of his plan. ",
"He was so preoccupied with his thoughts as he stepped off the curb to cross Orange Avenue that he was nearly hit by a yellow Crown Victoria taxicab. ",
"He jumped backward as the driver blew his horn, turning heads from the bustling crowd of pedestrian shoppers. ",
"Reece quickly realized that he was going to get himself killed if he didn't get his head back in the game. ",
"Whoever was pulling the strings on this no doubt still wanted him dead, and if they were willing to wipe out an entire element of special operators and an innocent woman and child, they'd sure as hell take Reece out on the streets of Southern California.",
"\n\nReece knew of a sandwich shop up ahead with free Wi-Fi. ",
"He sat on the bench in front of the shop, this time with his head on a swivel. ",
"He connected to the Wi-Fi and logged back into the app on his iPhone. ",
"There was a message from Katie:\n\nCan you meet for lunch? ",
"Great Wall Chinese on Broadway in Chinatown. ",
"Super old school, no one even speaks English. ",
"Can you be there by 1?",
"\n\nReece looked around for a few seconds before responding.",
"\n\nsee you then.",
"\n\n## CHAPTER 34\n\nLos Angeles, California\n\nIT MIGHT TAKE TWO HOURS to get to L.A. this time of day, or it might take four. ",
"You never knew about the traffic. ",
"Reece ran home to shower and change so that he wouldn't be late. ",
"He pulled on a pair of semi-clean jeans, a dark T-shirt, and his Salomon shoes. ",
"Before leaving his bedroom he opened the drawer of his nightstand and picked up his Glock 19 handgun. ",
"He used his left hand to pull the slide back just enough to confirm that there was still a round in the chamber, a technique called a \"press-check.\" ",
"It was loaded with sixteen rounds of 77-grain ammo from DoubleTap. ",
"The solid copper hollow-points were designed to work at near rifle velocities and would do extensive damage while minimizing the risk of overpenetration. ",
"He secured the Glock into a BlackPoint Tactical mini-wing inside the waistband holster and slipped the holstered handgun between his boxers and jeans. ",
"The holster had two small clips that folded over the top of his pants and secured the rig to his belt. ",
"He slipped a spare magazine into his back pocket and clipped a small knife to the inside of his right. ",
"Reece had an extensive collection of knives but preferred to carry the cheaper ones for his daily carry so that he wouldn't have a heart attack if he lost one.",
"\n\nOverseas, he didn't go to the port-a-potty without a firearm, but California was a different story. ",
"Even a SEAL had to jump through hoops every other year to get a concealed carry permit. ",
"It was a pain in the ass dealing with the local sheriff, but Reece hadn't been about to let something happen to his family because he was too lazy to get a permit. ",
"Now that he'd failed to protect them, all he could do was keep himself alive long enough to exact vengeance upon those responsible for their deaths. ",
"He grabbed a Padres visor from a hook in his closet and headed out the door.",
"\n\nTraffic going north was relatively light and Reece made it to L.A. in just over two hours. ",
"Katie was smart to choose a spot like this one, where there weren't surveillance cameras on every corner and where the locals knew how to keep their mouths shut. ",
"The unwillingness to get involved that had plagued Reece and his Teammates' efforts to fight terrorism and insurgencies among populations across the globe would now be to his advantage as he worked to avoid whoever it was that wanted him dead.",
"\n\nReece had fifteen minutes to kill before his meeting with Katie and he spent it putting his best counterintelligence skills to work, making a series of random turns while looking for any familiar cars in his rearview mirror. ",
"With no signs that he was being followed, Reece parked several blocks from their meeting spot and walked a circuitous route to the restaurant, stopping several times to pretend to talk on the phone or to look into store windows, using the reflection to study passersby. ",
"Despite his best efforts, he could not spot anything out of the ordinary. ",
"Of course, if they were using drones or other sophisticated means of tracking him, he'd never know it until it was too late.",
"\n\nReece arrived at the restaurant and was somewhat surprised when he walked in the door, as doing so was like crossing onto another continent. ",
"The sound of dozens of voices across the dining room speaking rapid-fire Mandarin was overwhelming. ",
"China's cigarette culture was in full swing. ",
"Despite state law, virtually every patron was smoking. ",
"The interior was dimly lit, with candles in red glass jars illuminating each table and combining with the haze of grayish-blue smoke to create a surreal show of light. ",
"He scanned the chaotic scene, but there was no sign of Katie.",
"\n\nHe approached the hostess and motioned toward the dining room, holding up two fingers to indicate the size of his party, unsure whether she spoke English. ",
"She nodded and turned to a shelf where she looked under and between stacks of paper, looking for an English language menu, Reece correctly guessed; obviously they weren't needed very often. ",
"She found them and motioned for Reece to follow her, weaving her way across the dining room and inviting him to sit in a red pleather booth near the back corner of the restaurant. ",
"He sat facing the door and gave the room a more thorough look for potential threats or signs that he was being watched. ",
"Despite the fact that he was a fish totally out of water, the other patrons seemed to pay him no mind whatsoever.",
"\n\nHe saw Katie's silhouette come through the front door and caught himself smiling. ",
"The hostess pointed to where Reece was seated and Katie made her way across the room to Reece's booth. ",
"He stood to greet her and, this time, was prepared for the hug when it came. ",
"He hoped he'd reacted less awkwardly this time around. ",
"She was dressed in jeans, high-heeled ankle boots, and a tight tank top with an olive green cotton blazer over it. ",
"Her hair was pulled back into a ponytail and she was wearing the same small black-rimmed glasses that he'd seen at the Starbucks. ",
"For some reason, her appearance matched Reece's idea of exactly what a young female journalist should look like. ",
"She slid into the booth across from him as he sat back down, looked both ways, and leaned forward across the table as if she were about to tell a secret.",
"\n\n\"Isn't this place insane?\" ",
"she said with a smile. \"",
"It's like you're in China. ",
"The smoke is terrible but there's no way anyone here is going to overhear what we're talking about.\"",
"\n\n\"Perfect spot, and you're right, it's definitely loud enough. ",
"Thanks again for coming, I feel guilty every time I involve you in this.\"",
"\n\n\"Don't be silly, Reece, you know that I'm all in. ",
"I know a good story when I see one.\" ",
"She grinned again, as they both knew she wasn't sticking her neck out this far for purely journalistic reasons.",
"\n\n\"So I've got a ton of information to give you. ",
"Don't ask me where it came from, just trust me that it's all credible.\" ",
"Reece slid a fat manila folder across the table that contained photocopies of all the relevant documents that he and Ben Edwards had recovered from Josh Holder's computer and gave Katie the executive summary.",
"\n\n\"It involves the players that you found in those photos: Agnon, Holder, and another guy named Boykin. ",
"They don't specifically mention Steve Horn by name but he's obviously Agnon's boss and is referenced plenty. ",
"Here's the short version: I think they were using me and my guys as guinea pigs for some kind of new drug. ",
"When they found out that it was giving us brain tumors, they had us all killed. ",
"They somehow arranged for the ambush overseas, and when that didn't finish the job, they went after us back home.",
"\n\n\"What? ",
"That's crazy! ",
"Why would they test drugs on SEALs? ",
"They can't do that without your permission and an IRB would never approve something like that. ",
"Even if the drug worked, they could never use the study to gain approval.\"",
"\n\n\"You obviously know more about this stuff than I do. ",
"What's an IRB?\"",
"\n\n\"Oh, it's an Institutional Review Board. ",
"Basically it's a committee that reviews biomedical and behavioral research when humans are involved in the testing. ",
"They were a response to what amounted to human rights violations by both the government and private institutions during the Cold War. ",
"You've probably heard of the Stanford Prison Experiment from the early seventies?\"",
"\n\n\"Rings a bell. ",
"That was the one about the psychology of imprisonment, right? ",
"Got out of control, as I remember, with some of the guards really losing it.\"",
"\n\n\"That's right. ",
"Did you also know that it was funded by the Office of Naval Research?\"",
"\n\n\"Really? ",
"I had no idea.\"",
"\n\n\"Yep. ",
"That study along with the Tuskegee syphilis experiment, Nazi physician experiments highlighted at Nuremburg, and classified CIA mind control studies brought to light by the Church Committee in 1975 unearthed a web of relationships between financial institutions, the military, the CIA, pharmaceutical companies, hospitals, and universities, with the unwitting subjects being prisoners, college students, and, you guessed it, members of the armed forces.\"",
"\n\n\"Unbelievable,\" Reece said, shaking his head. \"",
"And that wasn't really that long ago.\"",
"\n\n\"No, it wasn't. ",
"IRBs were put in place to ensure that that type of research and abuse never happened again.\"",
"\n\n\"Well, somebody didn't get the memo, and it's clear from the documents here that that's what they were up to. ",
"I don't have a clue as to why they did it the way they did it. ",
"I just know that they did it.\"",
"\n\nA waiter approached and Katie ordered tea for both of them, surprising Reece by doing so in Chinese. ",
"Clearly she was the kind of girl who wasn't afraid to take charge. ",
"The waiter retreated, and she turned back to Reece.",
"\n\n\"My Mandarin is horrible, but I know enough to get by. ",
"Benefits of a semester abroad in college.\" ",
"Katie smiled.",
"\n\n\"Wow. ",
"Impressive,\" Reece said earnestly.",
"\n\n\"None of this makes sense, Reece,\" Katie said, getting back to business. \"",
"A private equity firm running a clinical trial on a group of commandos without their consent and then having them killed to hide the side effects? ",
"There's more to this story.\"",
"\n\n\"I'm sure you're right and I can promise you that I'm going to find out, no matter what it takes.\"",
"\n\n\"Reece, I understand that you've got to do some things that I don't want to know about. ",
"First of all, I can't blame you. ",
"I can't fathom how much pain you're in after all that's been taken from you. ",
"I want you to know that I'm with you on this. ",
"No matter what you do, no matter what, I'm in.\"",
"\n\n\"Why? ",
"I don't get it. ",
"I appreciate it, trust me I do, but I don't understand your loyalty to someone that you barely know.\"",
"\n\nThe hot tea arrived and Katie made a big production of squeezing the lemon and stirring in the sugar. ",
"Satisfied that she'd sufficiently doctored it up, she took a sip and put the cup back on the small saucer, looking Reece directly in the eyes.",
"\n\n\"In the eighties, there was a young army doctor living in Czechoslovakia. ",
"He loved his country, but he hated what the oppressive government was doing to its people. ",
"As he rose in the ranks, he saw the hypocrisy of the leaders close-up and was determined to help make a change. ",
"He started giving information to the Americans, little things at first, but he ended up being one of their most important assets in the country. ",
"As a military physician, he had access to the medical records of most of the party elite and knew things about their physical and mental health that were of great importance to the CIA. ",
"He gave them everything that they wanted and he asked nothing in return; he was doing it for his country, not for himself. ",
"It went on like this for a few years before the secret police caught on to what he was doing. ",
"He, his wife, and their baby boy went into hiding, but not before getting a message to his handler at the Agency. ",
"Apparently the folks back in D.C. were willing to let him hang but his case officer had made him a promise that he'd get him and his family to safety or die trying if something ever went wrong. ",
"He risked his career and his life getting the doctor and his family out of Czechoslovakia and eventually to the United States, where they grew their family and still live today.\" ",
"Katie paused. \"",
"Reece, that doctor was my dad and the case officer was your father, Thomas Reece.\"",
"\n\nChills ran through Reece's body. ",
"He had thought that he was dead inside and unable to feel emotion, but he was completely overcome by the bomb that Katie had just dropped.",
"\n\n\"How did you know it was my dad? ",
"I didn't even know he worked in Czechoslovakia. ",
"It must have been when we were living in Germany when I was a kid.\"",
"\n\n\"Your father was like a god in my house growing up, Reece. ",
"All my dad ever talks about are Thomas Reece and Ronald Reagan, his two American heroes. ",
"I got curious about him later in life and did some homework. ",
"I saw your name as a survivor in his obituary, and when I heard about your team getting ambushed, I put two and two together. ",
"I emailed my dad, and he confirmed that you were Tom's son. ",
"They stayed in touch through the years. ",
"Your dad was so proud of his son the SEAL that he told my dad all about it.\"",
"\n\n\"No way! ",
"What a small world. ",
"My dad was a SEAL before he was Agency. ",
"I worshipped him growing up. ",
"He did two tours in Vietnam with Team Two before going to work for the CIA. ",
"I was born in Virginia when he was still going through his intelligence training. ",
"Of course, I didn't know any of this until way later. ",
"He always had some cover job at State. ",
"I spent a lot of time with my mom and my grandparents while he was running around Europe and South America fighting the Cold War.\"",
"\n\n\"I actually met your father as a little girl. ",
"He came to our house to visit my parents, and they treated him like absolute royalty.\"",
"\n\n\"I can't believe it, wait, actually I can, knowing my dad. ",
"He was a mystery wrapped in an enigma. ",
"He touched a lot of people during his time in this world. ",
"People might have a hard time believing what a gentle soul he was, knowing what he did for a living, but he really was a great guy.\"",
"\n\nKatie reached across the table and put her hand on Reece's. ",
"He didn't pull it away. \"",
"I was so sorry to hear about his death. ",
"I would have loved to have spent time with him as an adult. ",
"He was the kind of person they write books about.\"",
"\n\n\"Thanks, Katie, I really appreciate it. ",
"After all he lived through, I still can't believe he's gone.\"",
"\n\n\"I can only imagine.\"",
"\n\n\"He was a great man and a better father.\"",
"\n\n\"I know he was, James, and that's partially why I'm helping you. ",
"My family owes yours a debt of gratitude, and life has put me in a position to help pay that debt.\"",
"\n\n\"You don't owe me anything, Katie, but I'm glad to have your help. ",
"I will not let you get hurt because of this. ",
"I'm not going to let these assholes hurt anyone else that I care about.\"",
"\n\nReece was embarrassed as soon as the words came out of his mouth, his face flushed, trying in vain to hide in his menu. ",
"Mercifully, the waiter approached at about that time to take their order, and Katie took care of it for both of them. ",
"She was obviously better versed in the ins and outs of real Chinese food than Reece, who was happy to let her handle it.",
"\n\n• • •\n\nKamir had been sitting in the taxi waiting line at Lindbergh Field when he received the text from his handler. ",
"His instructions were to head north to Los Angeles as fast as possible and await further instructions. ",
"Adrenaline surged through his body at the thought that finally his time had come. ",
"He pulled out of line and headed for Interstate 5. ",
"It was late morning and at this time of day he could take it all the way to L.A.\n\nHe was passing through Anaheim when he received an updated text message providing him with the location of an intersection where, Inshallah, he would find his target. ",
"Five minutes later, they sent him the name of a restaurant. ",
"His journey took him into the heart of L.A.'s Chinatown, which, due to its crowded hustle and bustle, reminded him of his home in Pakistan. ",
"He found a curbside parking spot that afforded him a good view of the restaurant's entrance and shut off the engine.",
"\n\nHe looked at the photo of his family that sat on his dash and was overwhelmed with sadness, knowing that he would probably never see them again in this life. ",
"He would kill his target and as many infidels as Allah would allow. ",
"Now was not the time to be weak, though; now was the time to be strong. ",
"His service to the Prophet would fill his family with pride. ",
"He would meet them again in paradise.",
"\n\n• • •\n\nTheir food arrived and Reece and Katie spent the rest of the meal talking about life: where they grew up, where they went to school, places they'd traveled, normal topics in a most abnormal set of circumstances. ",
"The conversation put Reece at ease and helped him escape his pain, if only for a short while. ",
"The lunch reminded him of some of his early dates with Lauren, which brought the agony of her death back into his conscious thoughts.",
"\n\nWhen they finished lunch, Reece realized that they'd spent more than two hours sitting at the table talking. ",
"The dining room was nearly deserted as Reece paid the bill in cash before heading for the door.",
"\n\n\"Where are you parked? ",
"I'll walk you to your car.\"",
"\n\n\"I'm a big girl, Reece, you don't have to do that.\"",
"\n\n\"I'm not asking you, I'm telling you. ",
"Remember when I said I wasn't going to let anything happen to you? ",
"I meant it.\"",
"\n\n\"Okay, tough guy, I'm a block over, let's go.\"",
"\n\n• • •\n\nThere had been a steady stream of people filtering in and out of the restaurant all afternoon. ",
"Kamir tensed every time he saw the door open, but, to his dismay, everyone who exited the building over the next hour was Chinese. ",
"He began to grow impatient, checking the time on his phone constantly and wondering whether he was in the wrong spot. ",
"He rechecked the text message over and over and was sure that he was indeed at the correct location. ",
"He retrieved the handgun from under the seat and examined it. ",
"He had found a YouTube video describing its operation but still wished he had taken the time to test-fire it. ",
"Allah would guide his hand.",
"\n\nFinally, just after 3:00 p.m., the door opened and a blonde woman exited, followed by a tall Caucasian male. ",
"Unlike the man in the photos that he'd studied, this one had a thick dark beard, but he still met the description. ",
"Something about the way he walked told Kamir that he was the target; he looked like a predator. ",
"When the man turned to scan the area, Kamir got a good view of his face and was sure he was looking at James Reece.",
"\n\nReece and his female companion were moving down the sidewalk away from where he was parked, so he started the cab to follow them as they walked. ",
"He would intercept them at the next block, get as close as possible, and then start shooting.",
"\n\n• • •\n\n\"Did you ever get that biopsy?\" ",
"Katie asked with genuine concern.",
"\n\n\"I did. ",
"After we talked, I made the appointment and did it. ",
"I won't lie, it was a bit unnerving to have someone drill into your head, but I survived.\" ",
"Reece smiled. \"",
"I haven't heard back with the results yet. ",
"I guess it takes a few weeks. ",
"With the headaches that I've been having, I'm just going on the assumption that I'm terminal. ",
"It makes what I'm going to have to do that much easier. ",
"I'm certainly not afraid that somebody's going to kill me. ",
"I just can't let them get to me until it's done.\"",
"\n\nReece discerned a mixture of concern and sorrow in Katie's face and quickly turned his head away to avoid her gaze and scan the street. ",
"That turn probably saved their lives.",
"\n\nReece's eye caught movement, looking left, past Katie, to where a yellow taxicab was parked in the street with its driver's-side door open. ",
"His body went into autopilot even before he saw the handgun, his left hand roughly shoving Katie down onto the sidewalk as his right hand went to the Glock inside his waistband. ",
"The man had the drop on him and already had his gun raised by the time Reece's brain registered the threat and began the process of reacting.",
"\n\nObserve. ",
"Orient. ",
"Decide. ",
"Act. ",
"The whole world went into slow motion. ",
"His handgun was already clearing the holster and rotating toward the target before Katie hit the ground. ",
"He saw muzzle flash and the blast of the assailant's handgun but he felt no pain or any indication of being hit. ",
"His body had pivoted left to face the gunman, and he fired three quick rounds as soon as he indexed the handgun at the outside edge of his pectoral muscle. ",
"Two of the jacketed hollow-point rounds entered the gunman's chest and the third struck the outstretched hand that was gripping the pistol, severing a finger. ",
"Reece's left hand slid across his chest and formed a two-handed grip as he pushed the gun forward until his elbows almost locked out, taking up the slack of the trigger as he drove the Glock toward his target. ",
"The G19 barked two more times at the instant that the front sight met his eyes. ",
"Both rounds found their mark on the gunman's face and gravity sent him straight to the ground in a bloody heap.",
"\n\nReece did a 360-degree scan of the area, looking for other threats to engage. ",
"Seeing none, he diverted his attention to Katie, who had curled herself into a ball on the sidewalk at his feet. ",
"He dropped to one knee beside her and grabbed her upper arm with his left hand, pointing the muzzle of his Glock skyward.",
"\n\n\"You okay? ",
"You hit anywhere?\"",
"\n\n\"No, no, I, I don't think so. ",
"Who was that?\" ",
"Katie asked, visibly shaken and wide-eyed.",
"\n\n\"No idea.\"",
"\n\nReece rose and inserted a fresh magazine into his Glock, placing the partially spent one in his back pocket. ",
"He continued to scan the area as he covered the ten or so yards to where the man's lifeless body lay on the street in a rapidly expanding pool of blood. ",
"His senses became aware of screaming bystanders running for cover as he kicked his would-be assassin's handgun away and removed the wallet from the dead shooter's back pocket, tucking it into his own. ",
"Beginning to rush back to Katie, he stopped and turned toward the taxi, approaching it purposefully, yet cautiously, weapon ready for more work. ",
"Reece swiftly cleared the vehicle through its windows to ensure there were no other threats and confirmed it was empty. ",
"Though there were no dangers of the human variety, what he did see confirmed his worst fears. ",
"Lying on the passenger seat was a paper with a series of four photos, one of them Reece's official Navy photograph, the one commands make SEALs take before deployment to ensure they have an appropriate death photo in case they don't make it home. ",
"He quickly opened the passenger-side door and grabbed it before hurrying back to Katie's position.",
"\n\n\"C'mon, we gotta move. ",
"Let me have your keys,\" Reece said, pulling her upright as he began, half dragging, half pushing her toward her parked car a block down. ",
"He opened her door and gently helped her into the driver's seat of her silver 4Runner. \"",
"Look, that wasn't a random act of violence. ",
"Check this out,\" he continued, showing her his Navy file photo from the front seat of the taxi. \"",
"They're onto us, or at least me. ",
"You can't go back to your place. ",
"Is there somewhere else safe you can go?\" ",
"His voice was calm and his speech was methodical.",
"\n\nKatie was all but calm and struggled to process what he was asking. \"",
"Um, yeah, my brother is a cop in Angels Camp. ",
"It's a tiny town in the Sierras.\"",
"\n\n\"That works. ",
"Get there. ",
"Don't go home. ",
"I'll be in touch.\"",
"\n\nReece turned to walk away and then stopped. \"",
"Wait.\" ",
"He reached into Katie's SUV and put his Glock on the floorboard under her seat. \"",
"Don't shoot anybody unless you can't drive away. ",
"Don't forget that this truck can be a weapon. ",
"The Glock is loaded, and there's no safety. ",
"Just point it and pull the trigger until they go down. ",
"Take a couple of deep breaths. ",
"You're gonna be okay. ",
"Now it's time to go. ",
"Stay alert and be safe.\"",
"\n\nReece shut the door and watched her compose herself through the window. ",
"As she hit the starter and looked up toward the rearview mirror, Reece turned and began making his way back toward his own vehicle. ",
"With sirens blaring in the distance, he took a route to the interstate that did not take him back past the scene of the gunfight.",
"\n\n## CHAPTER 35\n\nREECE MADE IT HOME without incident. ",
"The first thing he did was retrieve a replacement Glock from his safe and load it. ",
"Two is one, one is none. ",
"He favored the Glock 19 over the SIG he used at work due to its reliability, durability, and size. ",
"Just change out the factory sights with aftermarket night sights and you were good to go. ",
"He put the handgun into the empty holster inside his waistband and topped off the magazine in his pocket with fresh ammo. ",
"He then checked the phone he left on his dresser and found the usual texts and emails from friends and family. ",
"This was the phone tied to him by name, number, address, and credit card, which was easily tracked and targeted. ",
"There was nothing to indicate that anyone knew he'd just killed a man in broad daylight on the streets of Los Angeles. ",
"Setting the phone back down, he opened his laptop and checked a few L.A.-area news sites. ",
"One had a short blurb about a shooting in Chinatown, but it was little more than a headline with no relevant facts.",
"\n\nThe shooting was clearly justified as self-defense, but leaving the scene was surely a crime of some sort. ",
"Reece had made the decision that the risk of waiting for the police to arrive and being publicly involved in a shooting incident would have an adverse effect on his current mission. ",
"There was very little to put him at the scene other than a physical description that matched thousands of white males in Southern California. ",
"If someone did tie Reece to the shooting, it would probably be too late anyway.",
"\n\nReece had studied the evidence collected from the taxicab on his drive home. ",
"The shooter's name was Humza Kamir, according to his driver's license. ",
"Who was he and why did he want Reece dead? ",
"And how did he get pictures of Reece, one his official Navy photo, and of Reece's home and vehicle? ",
"It looked like there had been another page or pages attached but only a portion was left clinging to the staple that had held them to the page of photographs. ",
"He would have to ask Katie to look into Kamir and any possible links to Reece or Naval Special Warfare. ",
"The attempt on his and Katie's lives had to be connected to the killings of his family, his troop, Boozer, and the tumors, but how did they find him in Chinatown?",
"\n\nYou can plan forever but at some point you have to execute. ",
"It was time for Reece to do what he did best. ",
"It was time to start killing. ",
"He had only four targets on his list at this point but as he started taking them down, he would generate further actionable intelligence and more names would emerge. ",
"It reminded him of the hot-and-heavy days at the height of Iraq's insurgency. ",
"They would hit a house, roll up some bad guys, and exploit the intel gained from the site. ",
"Within the hour, they'd be hitting another house down the road based on the information they'd gleaned. ",
"It would go on and on like that, house after house, night after night as they dismantled the enemy's network.",
"\n\nBased on the intel from Holder's hard drive, he had developed a basic sequence of how he'd implement the plan. ",
"This group had the resources to scatter if they knew he was onto them, so timing was crucial, as was the importance of making each hit look as little as possible like the targeted assassination it actually was.",
"\n\nIt was also time to move. ",
"The L.A. shooting had cemented beyond a shadow of a doubt that someone or something had targeted him, just as they had his family and his SEAL troop. ",
"Reece used SpiderOak to leave Ben a message asking for access to a safe house. ",
"Ben responded immediately saying he would be right over, but against his better judgment, Reece wanted to spend one more night in his home, with the memories of his wife and daughter. ",
"Ben sent the address and urged Reece to get over there as soon as he could.",
"\n\nReece spent the rest of the night looking over emails, maps, and images on Google Earth, cross-referencing dates, times, and places. ",
"By 3:00 a.m. he had built target packages on his four targets: \"high-value individuals,\" Reece would have called them at work. ",
"He checked the news sites again for any updates on the Chinatown shooting and, satisfied that they knew very little, rigged explosive charges to the front and back doors before passing out on his couch for some much-needed sleep in his body armor, his M4 close at hand.",
"\n\n## CHAPTER 36\n\nSan Diego, California\n\nTHE PLACE WAS CALLED the \"Landing Strip,\" a classic trashy double-entendre related to its location near the airport. ",
"This was no \"gentleman's club\" with dress codes and top-shelf liquor. ",
"This was a down-and-dirty strip club straight out of the 1980s, and Reece was fairly confident that he'd hear Mötley Crüe playing when he opened the door. ",
"He had been in his share of adult establishments as a Navy man, especially in his enlisted days, but he never really got the point of throwing money at women who were among the least likely on earth to go home with you. ",
"He always thought it much like a restaurant where you paid to look at the menu and smell the food but couldn't actually eat dinner. ",
"He paid the five-dollar cover charge to a heavily tattooed bouncer with a shaved head, the kind of guy who likely relied on size and intimidating looks rather than actual fighting skill to keep the clientele in line.",
"\n\nIt was just after 5:00 p.m. and the place was almost empty, a few sad-sack middle-aged or older men feeding dollar bills to the dancers in exchange for conversation with women who wouldn't otherwise give them the time of day. ",
"The place was exceedingly dark. ",
"Reece doubted anyone would sit down if the lights were on. ",
"What little illumination there was came from a few neon and black lights placed in several spots on the ceiling. ",
"The black lights were flattering to the blemished skin of the dancers, but gave the whites of their eyes and teeth an odd, almost alien green glow.",
"\n\nA DJ in an elevated booth looked over the scene like a prison guard surveying a cellblock from behind bulletproof glass, pumping out music that was far too new and loud for any of the patrons to appreciate. ",
"Reece took a seat at a small round table in the corner, as far away from the stage as possible. ",
"He smiled to himself recalling how he and his Teammates used to describe the front row of seats as \"Pervert's Row.\" ",
"There was always one guy who insisted on posting himself there as if he'd never seen a naked woman before. ",
"A cocktail waitress, who appeared to be more attractive than any of the girls onstage, approached Reece's table to take his drink order. ",
"He ordered a beer, which was delivered swiftly. ",
"He paid for it in cash, leaving a nice tip but not enough to be remembered.",
"\n\nEach girl would mount the long stage and do a two-song routine as they disrobed and performed acrobatic feats on the rotating brass pole while wearing obscenely high heels. ",
"After their dance, each stripper would make her way around the room, asking the men to \"tip her dance\" while sizing each customer up for a private show in the secluded section of the club where the real money was made. ",
"The girl who was onstage when Reece sat down was way too attractive to be working in a place like this. ",
"Who knew what motivated her to work in such a shithole. ",
"You wouldn't get the real story if you asked anyway and he had enough problems of his own without trying to save every twenty-two-year-old stripper in San Diego. ",
"More than one young SEAL had been led astray by the legendary stripper with a heart of gold. ",
"He nodded politely and tucked a dollar bill into her garter when she came by his table asking for a tip. ",
"The next girl up to the stage was overweight, possibly even pregnant, and stomped awkwardly across the stage in heels that made her look that much more ridiculous. ",
"It would have been amusing had it not been so sad.",
"\n\nA hand on his shoulder pulled his attention from the stage. ",
"Reece looked up at a tall, gaunt figure standing over him. ",
"She asked in his ear if she could sit. ",
"He motioned to the seat next to him but instead she sat sidesaddle across his lap. ",
"She was wearing a black nightie and G-string bottoms with the stripper-standard clear high-heeled shoes. ",
"She had a gold hoop in her nose, and the majority of her body was covered in tattoos. ",
"Her hair was dyed jet-black, which contrasted with her pale skin like the keys of a piano. ",
"She was exactly what Reece was looking for.",
"\n\n\"I'm Raven,\" she announced, her hands on his shoulders.",
"\n\n\"Your parents must have predicted your career path at a young age,\" was Reece's pithy response over the blare of the music.",
"\n\nShe either ignored the joke or was too much on autopilot to notice. \"",
"You're too cute to be in here. ",
"What's your story?\"",
"\n\n\"Just looking to have a good time.\"",
"\n\n\"Isn't everybody? ",
"Care to buy me a drink?\"",
"\n\nReece knew the scam; you buy the dancer a drink and she splits the cost of the overpriced champagne or, worse, fruit juice with the house.",
"\n\n\"Sure,\" he answered.",
"\n\nRaven waved to the cocktail waitress, who brought over some sparkling liquid in a champagne glass, and Reece threw a twenty down on the table. \"",
"Keep the change if there is any.\" ",
"He earned a knowing grin from the cocktail waitress.",
"\n\n\"You're pretty fit,\" Raven opined as she patted him on the chest. \"",
"You don't look military, and you're too old to be a baseball player; construction?\"",
"\n\n\"Something like that.\"",
"\n\n\"You want to go for a private dance? ",
"I'll take real good care of you.\"",
"\n\n\"How about we sit here and talk for a minute? ",
"I'll make it worth your time.\"",
"\n\n\"I love to talk, baby. ",
"Not like there's anyone else in here for me to talk to, anyway.\"",
"\n\n\"I'm guessing you like to party?\"",
"\n\nHer eyes lit up at the dog-whistle term for drug use. \"",
"Oh yeah, I love to party. ",
"You don't look like a party guy.\"",
"\n\n\"You never know, do you? ",
"You holding?\"",
"\n\n\"I can be, what are you looking for?\" ",
"Her playful demeanor turned all business as she ditched her dancer hat for that of an opportunistic drug dealer.",
"\n\n\"Something for my back: Loritab, Roxies, Percs, whatever you've got.\"",
"\n\n\"I think the DJ has some 'done, big wafers. ",
"You're not a cop, are you?\"",
"\n\n\"I am most definitely not a cop. ",
"How much?\"",
"\n\n\"Let me ask him.\" ",
"She strode quickly toward the elevated DJ booth and disappeared up the steps. ",
"She came back two minutes later, her eyes narrowed as she grinned mischievously. ",
"She sat back down on Reece's lap, this time straddling him. \"",
"He's got four; he'll sell them for a hundred each. ",
"I'm not making anything, I'm just hooking you up.\"",
"\n\nSure you are, Reece thought but didn't say aloud. ",
"Based on his research he knew the price was highway robbery, but he didn't really care. ",
"He reached into his pocket and handed over four one-hundred-dollar bills. ",
"Raven tucked them into the front of her panties and retrieved a packet of foil from the same, tucking it in Reece's shirt pocket. ",
"He was somewhat relieved that he didn't have to touch it with his hands.",
"\n\n\"Thanks, baby,\" Raven said as she leaned in and kissed him on the cheek. ",
"She climbed off his lap and he headed for the door.",
"\n\n• • •\n\nBack at home, Reece put on a pair of nitrile gloves and retrieved the foil-wrapped package of pills that he'd bought from Raven. ",
"Despite the perception of methadone as a therapy used to treat heroin addicts, the compound's primary use was as a pain reliever. ",
"Reece had learned that methadone is very tricky to prescribe since its therapeutic dose overlaps with a potentially lethal dose and, as a long-acting opioid, its half-life is also very long. ",
"Nonetheless, many providers use methadone for the treatment of chronic pain due to its low cost. ",
"He'd read a series of news articles about Medicaid patients accidentally overdosing on their methadone prescriptions and studied a slide deck from a conference of medical examiners on the prevalence of adult males in the U.S. dying of prescription drug overdoses, mostly by what they referred to as \"polypharmacy.\"",
"\n\nReece placed two large methadone tablets in a small plastic Baggie along with two tablets each of the alprazolam that he was given at Balboa and some carisoprodol that he found in his own medicine cabinet, leftover from a neck injury he'd sustained a couple of years earlier playing rugby with some British counterparts during an exchange program. ",
"He dropped the Baggie inside a larger Ziploc bag and laid it on the kitchen counter. ",
"Using a small hammer, he pounded the tablets until they were reduced to a fine powder. ",
"He put the Baggie into one of the pockets of his small nylon pack and dumped all of the remaining pills down the toilet. ",
"He then collected the prescription bottles and gloves into a brown paper grocery bag to burn.",
"\n\n• • •\n\nAll of his gear was laid out on the floor of his home's one-car garage: weapons and the assorted kit that one accumulated over the years in the profession of special operations. ",
"He cleaned and lubricated weapons, loaded magazines, and prepared demolition charges. ",
"He did it the same way that he had for countless training and real-world missions over the past eighteen years, only this time he wasn't doing it alongside his teammates, though he hoped that they were watching from above.",
"\n\nEach item was checked off a list as it went into the various kit bags and equipment cases that lined the closed garage door. ",
"Despite his desire to stay at home surrounded by what was left of his previous life, he was clearly too exposed. ",
"Reece would take along everything that he needed to complete his mission and set up his base of operations in Ben's \"employer's\" condo.",
"\n\nAt 6:00 a.m. the next day, after another night sleeping in body armor, Reece's white Land Cruiser was loaded down and heading east on Interstate 8. ",
"Reece sipped coffee from a Yeti Rambler travel mug and felt a slight relief from the tension that had wrenched his body for weeks. ",
"His mind was clear and there were no signs of a headache. ",
"He reached over and turned on the stereo, heard a familiar guitar riff from one of his favorite bands, and managed a confident smile as he pulled out of the driveway to AC/DC's \"Highway to Hell.\"",
"\n\n## CHAPTER 37\n\nCapstone Capital Corporate Offices\n\nLos Angeles, California\n\nTHIS THING WAS STARTING to turn to shit. ",
"James Reece had a decidedly bad habit of not getting killed, and it was beginning to cause serious problems among the interested parties. ",
"J. D. Hartley had demanded an in-person meeting and his assistant called Mike Tedesco to let it be known that he was on his way to L.A. His jet would be landing at Santa Monica in an hour, and he'd be at the Capstone offices shortly thereafter. ",
"Saul Agnon scrambled to arrange the impromptu meeting between J. D., Horn, Howard, and Tedesco. ",
"The latter three were waiting impatiently in Horn's conference room when they received word that the congressman was in the building. ",
"The entire success of RD4895 was contingent upon the Hartleys' continued support.",
"\n\nThe consummate politician, no one could recall ever seeing J. D. Hartley with so much as a hair out of place. ",
"With a commanding height of six three, a thick head of salt-and-pepper hair, and a 365-day-per-year suntan, you knew Hartley was somebody even if you didn't know who. ",
"He walked into the frosted-glass conference room and sat at the massive black marble table without greeting anyone or shaking hands.",
"\n\n\"Tell me you have a plan, gentlemen.\"",
"\n\nHorn spoke first, \"Congressman Hartley, it's great to see you as usual, though we all wish it were under better circumstances. ",
"As you know, efforts to remove Commander Reece from the situation have been problematic.\"",
"\n\n\"Problematic? ",
"Is that what you call it when my wife gives you the keys to the intelligence kingdom and you fuck it up? ",
"First you send a bunch of wetbacks in to do the job when the bastard isn't even home and then you blow it when we put a damn jihadi ready to martyr himself right into your lap?\"",
"\n\n\"Sir, Agent Holder was handling the sleeper asset,\" Captain Howard interjected.",
"\n\n\"Don't you fucking blame this mess on Holder. ",
"He's more competent than all of you in this room put together. ",
"What are you going to do now? ",
"Do you even have a plan to take this guy out?\"",
"\n\n\"Sir, if I may,\" Horn spoke up, attempting to regain control of the meeting. \"",
"As you know, Capstone has a security element of very experienced individuals. ",
"Our men have all been working overseas, thanks to the DOD contract that you and the secretary have so generously allowed us, but I've called a team back to the States. ",
"These men will hunt down James Reece and finish the job at all costs.\"",
"\n\n\"No, they won't. ",
"I'm not going to have a bunch of private military contractors with ties to my wife getting in goddamn gun battles in the suburbs. ",
"You keep those men on a leash until I tell you otherwise.\"",
"\n\n\"Yes, sir, I understand,\" Horn replied.",
"\n\n\"I don't know that you do understand, Mr. Horn. ",
"If the damn media gets ahold of this they will turn it into a tabloid show full of every bullshit conspiracy theory that floats down the creek. ",
"I cannot afford to have my wife exposed to any bad press on this. ",
"We have worked for a decade to rebrand the Hartley family name and we are not going to have it thrown in the garbage over a favor that we've offered you people.\"",
"\n\n\"Sir, we are preparing charges against Commander Reece. ",
"I could have him arrested on my order at any moment. ",
"You just say the word,\" an eager Leonard Howard offered.",
"\n\n\"Great idea, counselor, put him in custody where he's impossible to kill and some Navy doctor who we can't control can diagnose his tumor. ",
"Thanks, but no thanks. ",
"Gentlemen, you get this shit handled or you won't be able to count on the support of the secretary whether this pipe dream comes to fruition or not. ",
"Keep Agent Holder in the loop, if you please. ",
"Now I have other business to attend to while I'm in town.\"",
"\n\nEveryone in the room knew that the congressman's \"other business\" meant something young, blonde, and silicone enhanced. ",
"J. D. Hartley rose from the table, buttoned his coat, and turned his back before anyone could so much as offer a handshake.",
"\n\n## CHAPTER 38\n\nArizona Desert\n\nEAST OF YUMA, ARIZONA, Reece found a road on the map that looked like it headed south into relatively empty desert. ",
"A trail cut east that showed no signs of recent traffic. ",
"He took it for several miles until he found its terminus, then made a U-turn and returned to a spot he'd seen roughly halfway down. ",
"He drove off-road slowly, being careful to avoid the largest of the rocks that were strewn on the ground to the horizon.",
"\n\nHe put the Cruiser in park and cut the engine, taking an empty cardboard box from the passenger seat before he walked around to the rear to open the hatch. ",
"He moved a suitcase and two smaller duffels, pulling away a blanket to uncover the large plastic case underneath. ",
"Unclasping the latches, he reached into the foam interior and pulled out a laser range finder, which went into his jacket pocket. ",
"Using a staple gun from one of the duffel bags, he attached a large piece of paper printed with a grid pattern to the side of the cardboard box. ",
"The blanket that had been covering his cargo was spread on the ground with the leading edge in line with the rear bumper. ",
"Reece carried the box out into the desert a distance before removing the range finder from his pocket and aiming it back toward his truck. ",
"He picked up the box and took several large steps backward before taking another reading with the range finder. ",
"Satisfied, he placed the box on the ground with the paper side oriented toward the truck. ",
"He then put a rock the size of a soccer ball into the box and closed the lid.",
"\n\nReece returned to the Cruiser and opened the back passenger door, taking a soft rifle case from the floorboard and placing it on the blanket. ",
"He moved to the back of the truck and retrieved two sand-filled shooting rests, positioning them at the front and middle of the blanket before removing a set of electronic earmuffs and a plastic ammunition box from one of the bags. ",
"Pulling the earmuffs over his hat, he knelt on the blanket and unzipped the padded canvas rifle case to reveal a hand-built hunting rifle. ",
"The man who built these only made ten or so per year because he spent so many hours getting them as close to perfect as his abundant skill and patience allowed. ",
"Reece would be traveling very near the spot where this rifle was created; too bad he wouldn't be able to pay its maker a visit.",
"\n\nReece opened the bolt and arranged the rifle so that it was balanced on the two shooting rests, one on the forend, one at the butt. ",
"He moved himself into a prone position behind the rifle and opened the translucent blue plastic ammo box. ",
"Fifty copper projectiles gleamed in the morning sun, each looking as if it could rocket to the moon. ",
"He smiled as he thought of his father, carefully loading each of them by hand at his bench. ",
"He took a cartridge from the box and inspected his father's handiwork; the brass cases had been annealed at the neck and carefully polished. ",
"Things of beauty. ",
"The case mouths had been chamfered, the primers seated to consistent depth, the powder charges weighed carefully, and the bullets seated to sit at a specified distance from the leade of the barrel's rifling. ",
"His father had presented him with the rifle and these fifty rounds of hand-loaded ammunition back in Coronado almost fifteen years ago. ",
"It was the last time Reece had seen his father alive. ",
"A small piece of paper, cut perfectly to size, was taped inside the lid of the box. ",
"Printed on it were the details of the load, down to the smallest detail. ",
"The muzzle velocity was listed, as was the drop of the bullet at specified distances. ",
"At the bottom, written in blue ballpoint pen, was a note from his father:\n\nJames—Precision with a rifle requires precision in thought. ",
"Don't miss, Son. ",
"Love, Dad.",
"\n\nReece didn't plan on missing. ",
"He loaded a round into the magazine, pressing the cartridge downward until it clicked under the frame rails of the action. ",
"The bolt went forward and down like silk, a testament to the many hours its designer spent fitting and polishing the parts. ",
"Reece found the target in the scope and raised his head from the comb to take note of the wind. ",
"There was very little of it this morning, which certainly made his life easier. ",
"He settled back into position, holding the rifle firmly but without exerting any undue force. ",
"His right handhold was on the grip of the stock, and his left hand on the bag supporting it. ",
"He carefully shifted the rifle and bags until the rifle pointed at the center of the target without him commanding it there, assuming what is called the \"natural point of aim.\" ",
"Reece held just above center to account for the distance, slowing his breathing, and the scope's reticle aligned with the vertical and horizontal lines of the target's grid. ",
"He filled his lungs with air and carefully exhaled as his finger moved toward the trigger and began applying pressure. ",
"At the natural respiratory pause between breaths, Reece continued the trigger press until the sear was released, sending the firing pin toward the primer under spring pressure and setting off a chain of events that sent the bullet spiraling forward across the desert floor.",
"\n\nThe rifle's recoil was significant, but not painful due to the design of the fiberglass stock. ",
"Reece recovered from the muzzle rise and put the scope back on the target to find a .30-caliber hole placed perfectly at the target's center. ",
"His current location was just above sea level and his target would be at a much higher elevation, but knowing his zero was a necessity. ",
"He could make adjustments when he knew the precise density altitude at the target site. ",
"He pulled the bolt to the rear and the empty case flipped onto the blanket. ",
"He loaded three more rounds into the magazine and closed the bolt, moving the safety lever to its center position. ",
"Reece pulled a pair of Swarovski binoculars from one of the bags and found a distinctive-looking boulder several football field lengths away. ",
"Setting down the Austrian binoculars, he checked the distance using his range finder: 735 yards. ",
"He consulted his data card and made the appropriate elevation changes using the dial on top of his scope. ",
"The wind had picked up a touch, a half-value breeze from his right that was somewhere between three to five miles per hour. ",
"Settling back into position, he held for the wind using the scope's reticle and repeated the careful process of sending a precision shot downrange. ",
"The second shot once again sent his image of the target into a blur of recoil as the bullet left the muzzle. ",
"He was able to get the scope back on the boulder in time to see the bullet's vapor trail descend into the center of the target: hit. ",
"He found two other targets at different ranges and made two more solid hits. ",
"Satisfied, he dialed the elevation back to zero and placed the rifle back into its case. ",
"The empty brass was returned to the vacant slots in his father's box of hand loads and both the rifle and ammunition were placed on the floorboard behind the front seat.",
"\n\nReece could have tested his Echols Legend hunting rifle on most any public rifle range but the next two weapons would attract far too much attention. ",
"He was sure he was breaking half a dozen federal laws as well as various sections of the Uniform Code of Military Justice by failing to turn in his weapons case and a few more by liberating the gear, heavy weapons, and explosives from the armory, but those charges would pale in comparison to the crimes that he was about to commit. ",
"He pulled his 10.5-inch barreled M4 assault rifle from inside the hard-sided Pelican case and inserted a thirty-round PMAG into the mag well. ",
"Essentially a shorter version of the weapon that most U.S. troops used in combat, Reece's rifle had been spray-painted in a tan and brown camouflage pattern. ",
"The railed forend of the rifle held an ATPIAL infrared laser that was only visible through night-vision devices, but it also had a visible-laser setting that Reece selected. ",
"A Surefire Scout Light was mounted at an angle on the weapon's right side between two rails for easy access from the vertical foregrip. ",
"On the flat top of the rifle's receiver, an EOTech holographic weapon sight was mounted with a 3x magnifier sitting directly behind it. ",
"The sight worked much like the head-up display on a fighter jet, allowing the shooter to keep both eyes open and use the reticle image reflected onto the sight's \"windshield\" as an aiming point. ",
"By looking through the magnifier, the illuminated image of the reticle was still visible, but the target appeared three times closer, allowing for a greater effective range. ",
"In a close-quarter battle situation, the shooter could quickly flip the magnifier out of the way, or remove it completely, for faster target acquisition.",
"\n\nReece resumed his supported prone position and fired a round at the box target as carefully as he did with his .300 Win Mag. ",
"The assault rifle's trigger was nowhere near as light or as clean as the one on his Legend, but recoil was far lighter, almost nonexistent with the suppressor attached. ",
"Contrary to popular belief, the suppressor did not \"silence\" the report of the rifle or the supersonic crack of the bullet, but it did make it more difficult to determine the shooter's position and lowered the noise level just as a car's muffler does the sound of an engine. ",
"As usual, technology had outpaced the military's outdated acquisition process, resulting in U.S. servicemen and women going into combat without the best gear and weaponry available. ",
"Reece would have loved to be running a suppressor from SilencerCo, but bureaucrats who would never see combat ensured that he only had access to decades-old accessories, as part of political haggling that had nothing to do with putting the best gear into the hands of America's warriors.",
"\n\nReece fired two additional rounds, which gave him a three-round group on the two-hundred-yard target. ",
"The tiny .224-inch holes on the target were too small to see with only 3x magnification, so Reece traded the rifle for his binoculars. ",
"The three-shot group was about the size of a fist and was centered on the target. ",
"Thousands of miles of air travel had not caused his zero to shift but you never knew unless you checked. ",
"Reece rose to a kneeling position and pressed the pressure switch to activate the visible laser, firing at and shattering a rock fifty yards from his position.",
"\n\nReece moved the selector switch to SAFE and cleared the weapon before pressing the two takedown pins on the port side of the rifle's receiver. ",
"He pulled the pins until they locked open and removed the 10.5-inch barreled upper receiver from the weapon's lower. ",
"He then retrieved a second upper from the Pelican case and attached it to the same lower receiver. ",
"The second upper wore a longer 14.5-inch barrel with a 40mm grenade launcher attached underneath. ",
"A Trijicon ACOG sight was mounted to its top, along with another ATPIAL laser aiming device. ",
"He removed the Knight's Armament suppressor from the shorter upper and placed it on the longer barrel before confirming that both the ACOG and the laser were zeroed correctly. ",
"He reassembled the rifle with the short barrel and suppressor and placed everything back into the case.",
"\n\nThe last weapon was one that, as an officer, he hadn't used in quite some time. ",
"The Mk 48 MOD 1 was a compact, belt-fed light machine gun that basically served as an improved version of the old Vietnam-era M-60. ",
"Like his far more compact assault rifle, the Mk 48 that he'd checked out of the armory was painted camouflage and fitted with both a laser aiming device and an EOTech sight. ",
"Reece set the weapon down on its bipod and lifted the feed cover. ",
"He placed a five-round belt of 7.62x51mm ammunition into the top of the feed tray, closed the cover, and pulled the bolt to the rear, where it locked into place; true machine guns fire from an open-bolt position. ",
"Unlike the rifles, which he controlled with minimal muscle tension, he bore down hard on the Mk 48 to control the weapon. ",
"Reece found the box in the sight and pressed the trigger, which fired two rounds before he could release it. ",
"He reacquired the target and fired the remainder of the belt. ",
"The binoculars showed at least four .30-caliber holes in the target in addition to the one he'd fired from his Legend. ",
"As far as he was concerned, that was damn good for a belt-fed machine gun. ",
"He repacked all of his gear into the back of the Cruiser and concealed the weapons cases and ammo cans under the blanket before stacking his luggage on top. ",
"His business concluded, he climbed back into the driver's seat and made his way back to the interstate.",
"\n\n• • •\n\nFlagstaff, Arizona\n\nAs Reece headed east and then north, he steered toward Flagstaff, where he had one last important stop to make. ",
"He pulled into the Mount Elden Assisted Living and Nursing Center and walked through the main entrance. ",
"He asked for directions to Judy Reece's room and signed himself in as \"Jim Watson\" before heading down the hallway. ",
"When he opened the door to the small but immaculately kept room, he saw his mother sitting upright in a recliner. ",
"She wore a white sweater and khaki pants, hair perfectly coiffed and her makeup a bit smeared. ",
"Despite her condition, and with the help of the understanding staff, she'd maintained her outward dignity as a southern lady.",
"\n\nShe seemed to take no notice of him as he walked in the door and shut it behind him. ",
"He gave her a hug and a kiss on the cheek, taking a seat on the couch directly across from her. ",
"He'd been in high school when she had her first stroke, and though she recovered physically, she was never the same again. ",
"Her dad used to joke lovingly, \"She didn't play the piano before and isn't going to start playing now.\" ",
"Not surprisingly, she began showing signs of dementia in her late sixties and after his father's death she went downhill quickly. ",
"It took every dime that his father had left behind to put her in a place that would take good care of her, and she had quickly become a staff favorite. ",
"Reece made it to Flagstaff as often as he could, though never as often as he intended, sitting with his mother and reading to her from her favorite books. ",
"In reality, much of the mother he knew was already gone. ",
"Still, he had to say goodbye to what was left.",
"\n\nHis mother rarely spoke these days and when she did, it never made much sense. ",
"On a good day, she would ask you what time it was every thirty seconds. ",
"She seemed to listen, though, and she stared past Reece toward the window as he told her the whole story. ",
"If she were lucid, he would have spared her the pain of knowing that her beloved daughter-in-law and only granddaughter had been slain in their home, guilty only by association. ",
"Under the circumstances, he was pretty sure that she didn't understand and he needed to get it off his chest. ",
"Growing up, he could always tell his mother anything. ",
"When he finished telling her of the tragic events that had transformed his life, her face remained unchanged. ",
"Then, without breaking her gaze from the window, she spoke softly but clearly.",
"\n\n\"In Judges, Gideon asks God how to choose his men for battle. ",
"The Lord told Gideon to take his men down to the river and drink. ",
"The men who flopped down on their bellies and drank like dogs were no good to him. ",
"Gideon watched as some of his men knelt down and drank with their heads watching the horizon, spears in hand. ",
"Though they were few, they were the men he needed. ",
"You've always been one of the few, James. ",
"Keep watching the horizon.\" ",
"Chills shot over Reece's body. ",
"She looked into Reece's eyes and, for a second, he knew that she was there and that she understood.",
"\n\n\"I love you, Mama,\" Reece said as he kissed her on the forehead and headed for the door, tears in his eyes.",
"\n\n## CHAPTER 39\n\nOak Tree Gun Club\n\nNewhall, California\n\n\"PULL!\" ",
"HORN SHOUTED, raising his over/under shotgun and tracking the rapidly moving targets. ",
"As he fired, a pair of bright orange clay discs exploded in quick succession over the green shrubs in front of his barrel. ",
"He broke the gun open, allowing the spent shells to eject onto the shooting position's elevated wooden deck.",
"\n\n\"Well done, Steve,\" a slightly annoyed Josh Holder commented as he moved forward to take his shooting position. ",
"This was his first time on the course and he was visibly impressed by the first-class operation. ",
"The Oak Tree's owner had made more money in tech than he would be able to spend in one lifetime and didn't seem to mind that his gun club didn't make any money. ",
"For him, the real value was in knowing how uncomfortable its existence made the Los Angeles liberals.",
"\n\nHorn was shooting a Krieghoff K-80 Crown Grade Sporting model 12-gauge shotgun. ",
"He had purchased it at one of the special operations fundraisers he had attended with Tedesco and Admiral Pilsner. ",
"It had cost more than the average American's car and had come at an even steeper price because some other asshole had tried to outbid him on it. ",
"The glossy stock of Turkish walnut, the Germanic deep-relief engraving, and the precision fit and finish of the world-class competition shotgun were lost on Horn. ",
"All he knew was that it was the type of gun that others would envy. ",
"The bidding package even included a trip to Germany to tour the factory and have dinner with Dieter Krieghoff himself, though Horn never made the journey. ",
"He did take the tax write-off for supporting the charity, of course.",
"\n\nHis assistant booked him two lessons a week with the best shotgun instructor in Southern California, who trained Horn until he could outshoot nearly anyone with whom he might walk a sporting clays course. ",
"Never one for a fair fight, he always made sure to shoot with partners who couldn't match his skill level. ",
"Holder was one of the few people who intimidated Horn and he wanted this meeting in his comfort zone, not Josh's.",
"\n\n\"Pull,\" Josh Holder ordered, swinging his rented Remington 1100 toward the crossing pair, clipping the first target and missing the second. ",
"Sporting clays was not his game.",
"\n\n\"You have to swing through both clays, Josh. ",
"These aren't rifles.\"",
"\n\n\"Thanks for the tip, Horn,\" Holder said without the requisite enthusiasm.",
"\n\nAgnon recorded both men's scores as they walked to the golf cart that would carry them to the next station.",
"\n\n\"What are we going to do about Reece?\" ",
"Holder cut to the point of their outing.",
"\n\n\"Well, Josh, your wannabe jihadi asset couldn't manage to kill him even when guided in with a drone to his exact location. ",
"That would have been perfect! ",
"It would have looked like some crazy ISIS type had been radicalized online and was trying to get laid by his seventy-five virgins.\"",
"\n\n\"Um, seventy-two, sir,\" Saul Agnon said, speaking up from the backseat for the first time since leaving the gun club's pro shop.",
"\n\n\"What was that, Saul?\" ",
"asked Horn without turning his head to look at his lieutenant.",
"\n\n\"I believe it's seventy-two virgins.\"",
"\n\n\"Whatever,\" Horn continued. \"",
"The bottom line is that was our best shot at him without raising too many red flags. ",
"The evidence would have pointed to some crazy lone-wolf terrorist who had seen Reece in the paper with the coverage of the Afghanistan debacle and then from the additional coverage of his family's funerals and decided to martyr himself for the cause. ",
"Case closed.\"",
"\n\n\"First off, that was the Hartley's classified asset,\" Holder corrected. \"",
"It still boggles my mind that you even know about it. ",
"Secondly, I just ran the agent, gave him the instructions. ",
"I didn't train him up.\"",
"\n\n\"It's still your fuckup, Josh. ",
"Don't worry, the Hartleys don't blame you, but they are done helping. ",
"We need you to handle this.\"",
"\n\n\"Let me remind you that you guys were supposed to take him out overseas. ",
"I've more than pulled my weight on this.\"",
"\n\n\"You're the right man for the job, Josh.\"",
"\n\n\"I work for J.D., not you.\"",
"\n\n\"What do you want?\"",
"\n\n\"I want points on this thing.\"",
"\n\n\"Fine. ",
"We can't afford to dilute this thing much further but you can have a piece.\"",
"\n\n\"I want ten percent.\"",
"\n\n\"Horseshit, I'll give you two. ",
"Two percent of this is enough to set up your unborn grandkids.\"",
"\n\n\"Five percent or Reece is your problem.\"",
"\n\nHorn stared ahead silently as he steered the cart.",
"\n\n\"Five it is, but you get jack shit unless you take him out.\"",
"\n\n\"Fine. ",
"Any preference on how I do it?\"",
"\n\n\"Can't you just 'suicide' him like you did his little buddy? ",
"You know, make it look like he is so distraught by what happened in Afghanistan and to his family that he just couldn't take it and decided to eat a bullet. ",
"No one would question that. ",
"How many veterans kill themselves everyday anyway?\"",
"\n\n\"Sir, estimates run from one-point-five to twenty-two,\" Agnon offered.",
"\n\n\"That was rhetorical, Saul. ",
"Stop interrupting.\"",
"\n\n\"Yes, sir.\"",
"\n\n\"That's easier said than done, Horn. ",
"Reece is on alert now. ",
"He knows he's being hunted. ",
"He's probably using prepaid phones and I'd be surprised if he goes home again. ",
"Without DOD's drone assets and access to national intelligence databases, it will be tougher to find him. ",
"Not impossible, just tougher.\"",
"\n\n\"If he drove a newer car we could just hack its GPS system, get his location, and send my contractors to kill him. ",
"He'd be no match for the fifteen battle-hardened mercenaries we pulled back from overseas to handle this. ",
"Too bad he drives that ancient piece-of-shit Land Cruiser.\"",
"\n\n\"Horn, do not send those Neanderthals to kill him. ",
"They are tied to you and the Hartleys through your military contracts. ",
"Plus, they are the hammer. ",
"We need a scalpel.\"",
"\n\n\"Can you get it done or not?\"",
"\n\n\"I said I'd get it done, Horn. ",
"I just need to find him again. ",
"We might not be able to track his old truck but we can find his reporter friend's car.\"",
"\n\n\"Good. ",
"I will consider this in your hands now.\" ",
"Horn stopped the cart behind the pro shop and stepped out. \"",
"Let me know when you finish it. ",
"I need to get back to L.A. Enjoy the rest of the course. ",
"You need the practice.\"",
"\n\n• • •\n\n\"You drive. ",
"I need to make a call,\" Horn said as they approached his Aston Martin Vanquish S, its silver color cleverly called Skyfall by the marketers at the British car company. ",
"Horn couldn't bring himself to buy a Tesla, the car that most of his competitors in the California finance world seemed to prefer, chalking up their concern for the environment to a moral vanity he simply could not stand. ",
"No matter how fast, an electric car could never muster up the mixed feelings of admiration and jealousy that his twelve-cylinder Aston Martin did when he dropped it with a valet.",
"\n\nAfter ensuring that Agnon had carefully slid the Krieghoff into its leather case and set it in the backseat, Horn lowered himself into the passenger side and pulled out his phone. ",
"He disconnected it from the car's Bluetooth and stared impatiently at the screen, though he knew that the canyons surrounding Oak Tree blocked all cell service.",
"\n\nSaul cautiously maneuvered the sports car down toward the freeway, expecting every turn to draw criticism.",
"\n\nOnce back in cell range, Horn made a call.",
"\n\n\"It's Horn. ",
"I need you to get creative on dealing with James Reece.\" ",
"Without waiting for an answer, Horn terminated the connection.",
"\n\n\"Who was that?\" ",
"Agnon asked his boss.",
"\n\n\"That, Saul, was the final option. ",
"Now, keep your eyes on the road and let me get some work done.\"",
"\n\nAgnon did as he was told.",
"\n\n## CHAPTER 40\n\nWyoming Backcountry\n\nTHE BIGGEST ADJUSTMENT for Reece, when it came to targeting individuals on his own personal crusade, was the lack of intelligence support. ",
"Overseas, an entire contingent of support personnel, not to mention the massive U.S. intelligence apparatus, was on hand to help guys like Reece find, fix, finish, and exploit the enemy. ",
"On this mission, not only did Reece lack that support, but he had to do it all without creating a trail of evidence. ",
"It wasn't that he was afraid of getting arrested, since no punishment from the state could match what he'd already endured. ",
"He had to elude the law and postpone the death he knew was coming. ",
"It just couldn't happen until his mission was complete. ",
"The longer Reece could keep the other side, and the law, in the dark, the better.",
"\n\nKnowing that he was already dead from a tumor growing in his brain was nothing short of liberating. ",
"His sole focus was on bringing justice to those who had taken everything from him. ",
"He felt no restraint, no moral conflict. ",
"He was clear in his purpose and vision. ",
"Understanding the violence he was about to bring to those who had killed his wife, daughter, unborn son, and Teammates gave him an odd sense of peace.",
"\n\nReece had set aside a week for surveillance, only to discover that his target readily broadcast his every movement to the world via social media. ",
"It was if he were saying, \"Here I am, come and kill me.\" ",
"Having lived low-profile for his entire professional life, this mind-set was baffling to Reece. ",
"Boykin's movements were routine and predictable, and the terrain and timing were ideal for what Reece had envisioned back in Coronado.",
"\n\nHe hadn't been in the mountains since the op went bad in Afghanistan, but hiking the Wyoming backcountry with nothing but lightweight clothes and a small pack in the daylight felt a lot different than patrolling hostile territory in total darkness, burdened with the heavy tools of war. ",
"He assumed that he'd see a few hunters scouting this close to the season opener, but he never came across another soul as he followed the ridgeline that paralleled the highway.",
"\n\nHe actually walked right past the area that he eventually chose, only spotting it as he glassed back toward the country he'd just crossed. ",
"The U-shaped notch in the mountainside offered an unobstructed view down the length of the highway without being exposed in any direction other than from above. ",
"The only thing above him today were clear blue skies, so the chances of being spotted by anything but a helicopter were slim.",
"\n\nReece took out a small notebook and his laser range finder, making a careful sketch of the area and noting the range to various terrain features. ",
"As cars and trucks made their way up the northbound road, he envisioned the timing of taking a shot at each. ",
"The best spot seemed to be a dip in the road 625 yards away, and the configuration of the road and elevation matched his \"accident\" theory. ",
"It was as close to perfect as he could hope for. ",
"He marked the site on both his map and GPS and headed out in search of the most direct path back to his vehicle.",
"\n\nWith two days to kill, Reece spent some time exploring the area. ",
"Parked in front of the Soda Springs, Idaho, public library, he turned on his secondhand iPhone and checked in with the world via the free Wi-Fi. ",
"He had a message on Signal from Katie's alias.",
"\n\nIt's me. ",
"I made it safely to my brother's. ",
"You saved my life. ",
"Be safe.",
"\n\nHe prayed that Katie would be careful. ",
"He couldn't stand the thought of her getting hurt or killed trying to help him. ",
"No time to focus on that now. ",
"He then logged into SpiderOak, ensuring his VPN was engaged, and opened the folder he shared with Ben Edwards.",
"\n\nHey bro, got some info on the gangbangers—meet you at your new home when you get back.",
"\n\nEven though it was supposedly secure, Reece and Ben still kept their comms as innocuous as possible. ",
"He didn't have a way to make a secure voice call to Ben without the potential of leading someone to his location. ",
"It would be obvious to anyone at that point that he was after Boykin, so the information on the gangbangers would have to wait. ",
"He drove back east to the spot he'd picked to camp; just another guy in a truck getting away from town to spend time in the outdoors, and spent the next twenty-four hours going over the maps and imagery and readying his gear for his patrol to the hide site.",
"\n\nThe night before his planned hit he built a small fire. ",
"There was something primal about fires. ",
"Since the early Stone Age fires had quite literally sustained human life. ",
"They offered warmth and allowed the heat-treating of hard woods and eventually metals, turning them into weapons for hunting and war. ",
"They permitted cooking and early pottery, were natural gathering places, could signal, and were almost always a part of ceremonial tradition. ",
"Fires were sacred, but more than anything else, fires offered hope. ",
"Reece pondered the paradox; there was no hope for Marcus Boykin, just as there was no hope for James Reece.",
"\n\nStaring into the burning embers of the small campfire, Reece started to remember. ",
"It had been just before his last deployment. ",
"He had taken Lauren and Lucy on a predeployment camping trip to Big Sur. ",
"Nestled into the Northern California coast just south of Carmel was a stretch of land that Reece considered to be one of the most beautiful on earth: the sea and the mountains, Reece's favorites.",
"\n\nLauren had retired for the night into the tent, leaving Reece and Lucy to connect by the fire, knowing that six long months of separation lay ahead. ",
"Years before, Lauren had confided to Reece that every time he left the house, whether to deploy or train, she knew that he might never be coming back. ",
"She had accepted his chosen profession and would not be the kind of wife and mother who was always worried about her husband. ",
"She was immensely proud of what he did, but she had a daughter to raise, and she wasn't about to let that child see her in a constant state of worry. ",
"When Reece left, they would get on with their lives: exploring, learning, and growing. ",
"In hindsight, she must have also been tired; tired from supporting the life that grew inside her. ",
"Reece assumed that she had wrestled with whether to tell him and had decided to let it be a surprise when he returned. ",
"Lauren had always loved surprises and there were so few joyful ones left in life. ",
"This was a gift she could give to him. ",
"He also knew that she would want him focused on the job overseas, not distracted thinking about his pregnant wife. ",
"That was something she could give the families of the men under Reece's command. ",
"They needed Reece focused on the task of leading SEALs into combat. ",
"To do it right would require his full measure of devotion.",
"\n\nReece had watched his daughter inch the marshmallow, skewered on the end of a straightened wire hanger, closer to the fire.",
"\n\n\"Wait a little bit longer, sweetie,\" Reece had cautioned. \"",
"Wait for the embers so you can get it a nice golden brown.\"",
"\n\nLucy just smiled and moved it closer and closer to the fire until it burst into flames and she burst into giggles as Reece leaned forward and blew out what was now a charred mess.",
"\n\nThey had hiked into a desolate stretch of shoreline to avoid the more populated areas of Big Sur State Park and set up camp on the beach. ",
"In a state that had laws governing almost all aspects of daily life, it was surprising and refreshing to be allowed to still enjoy driftwood fires along the coast.",
"\n\nReece and Lucy were bundled up, cuddled together against the crisp cold of the Pacific twilight in a lightweight backpacker's chair behind the fire and looking out over the rocky shore, the waves, and the distant horizon. ",
"Reece would remember that sunset every day while overseas, would remember holding his little angel, wrapped in a poncho and lightweight blanket, listening to the cadence of the surf as the sky transitioned into night, constellation after constellation breaking through the darkness, much to Lucy's wonderment.",
"\n\n\"What's that bright one?\" ",
"she had asked, pointing skyward.",
"\n\nThough not an astronomer by any stretch of the imagination, Reece had a rudimentary knowledge of the constellations. ",
"It was the by-product of a life spent outdoors. ",
"He smiled, remembering when he asked his father the same question all those years ago under the same night sky.",
"\n\n\"That's Orion. ",
"See those stars there?\" ",
"Reece asked, pointing skyward. \"",
"That's Orion's belt. ",
"Makes him easy to spot up there, doesn't it?\" ",
"Lucy nodded in agreement. \"",
"If you look hard enough you can see his shield and club. ",
"He was a hunter.\"",
"\n\n\"How'd he get up there?\" ",
"asked a quizzical Lucy.",
"\n\n\"Well, if I remember correctly,\" Reece continued, struggling to recall his mythology, \"he was stung by a scorpion, which now occupies a spot on the other side of the sky, so they never see each other.\"",
"\n\n\"That's weird,\" Lucy commented. \"",
"Were they friends?\"",
"\n\n\"Not exactly,\" Reece replied, hoping she didn't ask too many more specific questions as to what had led Orion and the Scorpion to their ultimate positions in the cosmos.",
"\n\nThankfully she switched topics, to one Reece knew was coming.",
"\n\n\"Daddy, why do you have to go away on a big trip?\"",
"\n\nReece and Lauren had called shorter training trips \"little trips\" and referred to the upcoming deployment as a \"big trip.\" ",
"Easier for a young mind to grasp and come to terms with.",
"\n\n\"Well, sometimes daddies have to go away on big trips.\"",
"\n\nIn their circle of friends, \"daddies\" were always leaving on \"big trips.\" ",
"Reece felt lucky that Lucy didn't quite realize, sometimes those daddies didn't come home.",
"\n\n\"This is my last big trip, sweetheart. ",
"Then I'm not going away again. ",
"I'm going to stay home with you and Mommy. ",
"I can't wait.\"",
"\n\n\"I can't wait either, Dada!\" ",
"she said, as much to herself as to him. \"",
"Do you go away because of the bad people?\"",
"\n\nReece paused. ",
"He and Lauren had shielded her as much as possible from some of the harsher realities of growing up as a military child in a country on constant war footing. ",
"This was her time to be innocent. ",
"Obviously she had picked up more than they thought.",
"\n\n\"Sometimes daddies need to fight the bad guys far away so we don't have to do it here in our country. ",
"We do it to keep us free. ",
"You and your mom are a big part of it. ",
"The three of us are a team. ",
"We all make sacrifices to keep our country free.\"",
"\n\n\"When I grow up, I want to fight bad guys, too.\"",
"\n\nReece swallowed, a lump rising in his throat.",
"\n\n\"My hope is you won't have to, sweetheart. ",
"I love you, angel.\"",
"\n\n\"I love you too, Daddy.\"",
"\n\nShe nestled her head into her father's shoulder and cuddled up against him. ",
"Reece would not have wanted to be anyplace else on earth right then. ",
"It was that memory to which he would return throughout deployment. ",
"When he was back from a mission, dirty and tired, just before lying down to rest, he would return to that beach, to the waves, the fire, the marshmallows and Orion. ",
"It was to that memory he returned now, hoping nothing more than for one more chance to hold his daughter safely in his arms, rocking her to sleep on a distant beach. ",
"To him, that was heaven.",
"\n\n\"See you soon, baby girl,\" he whispered into the dying embers of the fire as he drifted off to sleep.",
"\n\n## CHAPTER 41\n\nTHE SHERIFF OF LINCOLN COUNTY, Wyoming, arrived on the scene an hour after the call went out. ",
"His office was down in Afton and the crashed Mercedes SUV was at the extreme north end of his jurisdiction. ",
"Two highway patrolmen, two of his deputies, and a state Game & Fish officer were on-site along with the detective from his office. ",
"An ambulance had pulled in but the paramedic and driver were still inside since there was not much they could do for the man in the silver Mercedes. ",
"One of the trooper's cars was parked to block a lane of the highway as he stood in the road to direct the occasional driver around what had become a crime scene. ",
"A tow truck driver stood staring down at the shredded vehicle, obviously trying to figure out how he was going to remove it from the steep ditch.",
"\n\nThe sheriff approached the gaggle of law enforcement officers gathered on the road's shoulder above the vehicle.",
"\n\n\"All right, what do we have?\" ",
"he asked, glancing at his watch before peering down the ravine.",
"\n\nThe detective spoke up, \"Sheriff, as you know the Highway Patrol discovered this vehicle just after nine a.m. this morning. ",
"They saw the skid marks on the highway and pulled over to investigate. ",
"EMS arrived and discovered what appears to be a bullet wound at the center of the driver's face and an exit wound at the back of his skull. ",
"Based on the trauma to his head, I'd say it was a rifle round, maybe a thirty-caliber or so, just looking at the entry.\" ",
"The detective motioned toward the fresh black marks on the roadway. \"",
"Our theory at this point is that the driver gets shot while heading this way and the speed and abrupt turn of the wheel cause the vehicle to flip over and down the embankment.\"",
"\n\n\"That certainly makes sense, except the part about the oh-six round to the face. ",
"Who shot this guy and why?\"",
"\n\n\"It's opening day for deer in this unit, Sheriff,\" the Game & Fish officer offered. \"",
"Some guy with a tag in his pocket, probably an out-of-stater, takes a shot at a skylined buck from the road. ",
"It's illegal, but we know it happens. ",
"He misses, shoots over the top of the deer, and the bullet's trajectory takes it over this rise. ",
"Gravity drops the bullet down into that dip in the road just as this poor bastard is coming the other way. ",
"I'd say this guy's number was up.\"",
"\n\n\"I'll buy it. ",
"I've seen stranger things. ",
"Who is he?\"",
"\n\nThe detective answered, \"DL says he's Marcus Boykin. ",
"He's driving on a New York license, but we have a listing for a Marcus Boykin at Star Valley Ranch. ",
"Typical summer resident.\"",
"\n\nSatisfied that his men were conducting a thorough and proper investigation, the sheriff nodded and turned back toward his government-supplied Ford Expedition. ",
"He was the featured speaker at a Chamber of Commerce lunch at noon and he didn't intend to be late.",
"\n\n## CHAPTER 42\n\nBird Rock, California\n\nINVIGORATED BY THE SHOT of adrenaline the morning's success had brought, Reece drove straight through to Southern California, stopping only for food and fuel at hole-in-the-wall gas stations, all paid for in cash. ",
"He arrived at Ben's place at midnight, backing down the driveway and into the garage, where he unloaded his gear. ",
"Even at night he could tell it was a beautiful place, a contemporary condo in the trendy Bird Rock neighborhood of San Diego, nestled between La Jolla and Pacific Beach. ",
"The design was open, incorporating light natural woods with industrial steel finishes. ",
"Huge floor-to-ceiling windows led seamlessly to a deck that overlooked the dark ocean. ",
"Even though it was a few houses back from the cliffs, Reece could still hear the surf breaking on the rocks below. ",
"He took a shower and checked his SpiderOak folder, sending Edwards a message that said only, at your place, bring breakfast, before hitting the sack.",
"\n\nSeven hours later he heard someone pounding on the door and realized that he'd slept like a rock. ",
"He grabbed the Glock from his bedside table and looked through the crack in the bedroom blinds to find Ben's rental car parked below him in the driveway. ",
"Still half-asleep, he tossed his handgun onto the bed and opened the back door wearing boxers and a T-shirt.",
"\n\n\"Holy shit, did I wake you up? ",
"I can come back at noon if you want. ",
"You think you're back in college, frat boy? ",
"You need a haircut and a shave. ",
"You're starting to look like the bad guys. ",
"I brought your favorite, Night and Day Cafe.\"",
"\n\nReece gave Ben the one-finger salute as he walked into the condo's small kitchen to make coffee while Ben unpacked the short order to-go food on the counter.",
"\n\nTaking a huge bite of his breakfast burrito, Reece gestured to the surrounding condo with its sweeping view of the Pacific. \"",
"Nice place.\"",
"\n\n\"Yeah, my employer has a few of these scattered across the country. ",
"We use them for debriefings and meets that require an off-site due to sensitivity issues. ",
"This one is pretty nice and hardly ever gets used.\"",
"\n\n\"Our tax dollars at work, huh? ",
"This place must have cost you hundreds.\"",
"\n\n\"Good ol' Uncle Sugar,\" Ben said and smiled. ",
"He finished his breakfast and packed a dip of tobacco into his lower lip before pulling a file folder out of a nylon backpack he'd hung on the back of his chair.",
"\n\n\"All right, bro, it turns out that the shitheads who did this weren't local gangbangers. ",
"They were legit bad hombres from Mexico. ",
"DEA watches these guys very closely, as you know, and actually have them coming and going the night of the attack. ",
"I don't have specific IDs on the shooters, but we know they are Cártel Jalisco Nueva Generación, 'CJNG' or 'New Generation,' and we know where they live.\" ",
"Edwards slid a series of photos across the kitchen table, each depicting a different angle of the same three-story concrete block structure with caged balconies and barred windows, a cluster of satellite TV dishes mounted to the roof. \"",
"They live and work out of this house in Tijuana. ",
"Typical shithole. ",
"You can expect a dozen or so, equipped with small arms along with some women and even kids hanging around. ",
"Call it a gang clubhouse. ",
"These aren't high-level dudes; they're foot soldiers.\"",
"\n\nReece looked at the photos carefully, taking note of various features on the house's exterior.",
"\n\n\"Any idea on the interior layout?\"",
"\n\n\"Negative, DEA doesn't have eyes inside.\"",
"\n\n\"How about the neighborhood? ",
"How quick can they summon the cavalry if something goes down?\"",
"\n\n\"CJNG is just starting to get a foothold in Tijuana, so they're pretty exposed. ",
"This is like an outpost for them. ",
"They're trying to increase their reach into the city and they're running it from this place. ",
"Kinda like when we'd set up a combat outpost during a 'clear, hold, build.' ",
"The Tijuana and Sinaloa cartels don't want them there; so it's a fight. ",
"I wouldn't want to hang around that neighborhood very long, but it's not like they have a hundred reinforcements across the street.\"",
"\n\n\"Check. ",
"Where is this place in the city?\"",
"\n\n\"That's the challenge; it's in La Sánchez Taboada. ",
"Here.\" ",
"Edwards pointed to a spot on an aerial photograph of the city. \"",
"Real bad neighborhood. ",
"It would be tough to get on target without some local help. ",
"It would be one thing to roll up with a couple of Strykers or Bradleys, but I wouldn't want to be wandering around there solo at three in the morning looking for a place to park. ",
"You want me to find you some help? ",
"I bet the Sinaloa guys would be happy to assist you in taking out their competition.\"",
"\n\n\"Negative. ",
"This is my show. ",
"I'll handle it. ",
"Besides, the last thing I need is to roll into a gunfight in a third-world slum with a bunch of criminals I can't trust.\"",
"\n\n\"Gotcha. ",
"Let me know if I can support with anything else. ",
"This stuff is all yours to keep. ",
"The best intel we have is in there. ",
"If you change your mind about having help, let me know. ",
"You know I'll roll down there with you if you need me.\"",
"\n\n\"Thanks, Ben. ",
"You've helped more than you know. ",
"I don't need you getting more involved in this than you already have.\"",
"\n\n\"Happy to help. ",
"I'm headed out. ",
"Gotta go to work. ",
"Trying to poach some talent from Team Five. ",
"Be safe.\"",
"\n\n\"Thanks, buddy, you too.\"",
"\n\nReece spent the next few hours looking at the target info on the house in Tijuana. ",
"As much as he wanted to exact immediate vengeance on the monsters who murdered his wife and daughter, he knew that now was not the time to act on emotion. ",
"If he was going to come out of Mexico alive, it would take some planning to pull off. ",
"He also assumed that they were most likely hired guns, and if he was going to figure out who hired them and why, he was going to have to stick to his plan.",
"\n\nHe had one shot at pulling off the next phase of the operation before his current intel went stale. ",
"According to email traffic between Josh Holder and Saul Agnon, Agnon would be at a resort in Palm Springs for a conference in two days. ",
"Agnon, who appeared to be the hub of this conspiratorial wheel, was Reece's best chance to put the pieces of this puzzle together.",
"\n\nHard lessons learned in Iraq and Afghanistan had taught Reece that going after the head of the snake could be counterproductive. ",
"Killing or capturing a senior Al-Qaeda leader always led to another one taking his place, now smarter, having learned from his senior's mistakes. ",
"After some amount of studying and bringing in civilian anthropologists and counterinsurgency experts from academia, some commanders began to use crosscut targeting as a way to more effectively take out the heir apparent before working both up and down the enemy chain of command across multiple networks. ",
"Reece understood the methodology. ",
"Agnon was his version of crosscut targeting. ",
"Reece was not going to allow this network to evolve. ",
"He was going to destroy it. ",
"He was going to kill them all.",
"\n\n## CHAPTER 43\n\nPalm Springs, California\n\nSAUL AGNON WASN'T THE TYPE to do much socializing. ",
"His work for Steve Horn and Capstone monopolized both his time and his energy. ",
"Though he didn't technically practice law, Agnon was proud of his attorney status, and maintaining his license required mandatory hours of continuing legal education. ",
"Each year he attended the Los Angeles Bar Association's Fall Retreat in Palm Springs, which not only satisfied his annual CLE requirement but was also a much-awaited chance to interact with other attorneys.",
"\n\nAgnon sat next to a redheaded litigator from a big L.A. firm at dinner but, despite his best efforts, couldn't convince her to join him for a nightcap in his casita. ",
"He hung around the late-night cocktail reception for a while but by 11:00 p.m. he was ready for bed. ",
"He had another long day of seminars to attend the next morning and, unlike most of the attendees, he actually enjoyed the material being presented. ",
"He wasn't much of a drinker and felt a bit tipsy from the three glasses of chardonnay that he'd consumed during dinner and the margarita that he'd enjoyed at the reception. ",
"He always got turned around at this resort, with its winding paths and dozens of identically designed guesthouses. ",
"It took him a full ten-minute walk in the clear desert night to reach his casita and another clumsy thirty seconds to fish his room key out of his blazer pocket and get it into the electronic lock the right way before he could open the door.",
"\n\nHe closed the door behind him and was delighted to hear that the maid had turned on some classical music while performing the turndown service, though he did think it to be a bit loud. ",
"He removed his blue blazer and opened the armoire before reaching for a hanger, fumbling and dropping it on the stone floor. ",
"Damn. ",
"Bending over to retrieve it, he was suddenly pulled backward by strong arms that locked around his neck, legs scissoring around his torso while being pulled onto the floor. ",
"He was essentially lying on his back on the man's chest, being squeezed like he was in the clutches of an anaconda. ",
"He struggled to turn his head but when he did so, the assailant's arm moved tighter around his throat. ",
"He tried to scream but no sound escaped. ",
"With the blood supply cut off to his brain, he passed out in seconds.",
"\n\n• • •\n\nSaul awoke after what must have been only a few moments: naked, bound, gagged, and blindfolded. ",
"The sound of Beethoven's Fifth blasted in his ears over the sound system in his room; even if he could scream, no one would hear him. ",
"His hands were restrained behind his back and his feet were somehow shackled. ",
"He tried to bring himself to his knees but was immediately shoved back down to the cold stone floor. ",
"Whoever had attacked him was still there and was watching his every move. ",
"His brain was foggy from the alcohol, but it took him only a few seconds to figure it out: James Reece had found him. ",
"The reality of what was happening hit Agnon in the form of complete, overwhelming terror. ",
"He felt the searing acid of vomit rise through his throat and retched as his dinner surged into his mouth. ",
"The cloth gag gave the sick liquid nowhere to go, backing it into his esophagus and filling his airway. ",
"Seconds after regaining consciousness from the rear naked choke, Agnon was drowning in his own vomit. ",
"The sense of panic was overwhelming. ",
"He gagged, snorted, and gagged again, all the while burning the precious oxygen for which his brain was beginning to starve.",
"\n\nReece saw the man convulse and watched vomit shoot from his nostrils. ",
"He began flopping around like a fish on the deck of a boat, craving oxygen and choking on his own sickness. ",
"As much as he would have liked, Reece didn't come all this way to watch the man whom Holder's emails identified as a key contributor to the killing of Reece's family and SEAL troop drown in his own puke. ",
"He reached down to remove the cloth that he'd tied around Agnon's mouth, pulling it off over his head and removing the blindfold in the process. ",
"The man continued to writhe in agony as his head turned a deep purple color, the veins in his neck standing out like cables.",
"\n\nReece wrenched the man's head back by his hair with one hand and stuck a gloved finger down his throat with the other to trigger the gag reflex. ",
"Vomit shot forward across the floor and Agnon's body convulsed as it cleared itself of the fluid. ",
"The rotten stench of stomach acid, food, and alcohol was overwhelming. ",
"Even with the surgical mask over his face, Reece had to turn away to keep from gagging. ",
"Puking on the floor was not a great way to keep one's DNA out of a murder scene.",
"\n\nAn animal moan escaped from Agnon's throat, sounding like the death bellow of a large bovine. ",
"The good news was that he could breathe again. ",
"He didn't say a word as he lay naked on his side, panting for air with tears streaming down his face. ",
"What had been a normal human being ten minutes earlier was now a quivering mess, which was exactly what Reece wanted.",
"\n\n\"Can you breathe now?\" ",
"Reece asked in a voice devoid of sympathy. ",
"Saul nodded repeatedly without saying a word or even opening his eyes. ",
"Reece hoped that the guy's heart wouldn't fail.",
"\n\nWhen it looked like Agnon's respiration had returned to a normal range, Reece tied the vomit-soaked rag that had served as a gag around Saul's eyes and began dragging his limp body toward the bathroom of the resort cottage. ",
"He'd already prepared the area by folding two large bath towels over the side of the tub to prevent bruising the man's back.",
"\n\nSaul's compliance as Reece dragged him into position suggested that this process wouldn't take very long. ",
"Reece wrapped Saul's head with plastic wrap, covering his mouth but not his nose. ",
"He then pulled the attorney's body over the lip of the bathtub so that his head and shoulders were held below his waist and his feet stayed outside the tub, just off the tile floor. ",
"He straddled the smaller man and grabbed him by the throat with his left hand to get the angle correct while turning on the faucet with his right. ",
"The fixture had one of those handheld shower heads on a flexible hose, which Reece now held over Agnon's face. ",
"The stream from the massaging head flooded Saul's eyes and nostrils with water, which followed gravity downward and flowed into his sinuses, mouth, and throat. ",
"The angle of his head prevented the water from entering his lungs, thus he would not actually drown, though everything in the man's brain suggested otherwise.",
"\n\nEvery fiber in Saul's body screamed for air, and it took all of Reece's strength to maintain his grip on the violently thrashing figure below him. ",
"Agnon coughed spastically to clear the water from his throat but the plastic wrap acted as a one-way valve, letting the air from his lungs escape while keeping the water in his mouth. ",
"Though he didn't realize it, all his coughing accomplished was to speed up the process. ",
"The plastic wrap trick was something that Reece had learned from the CIA interrogators way back in the Wild West days just after 9/11, when Americans still had the will to win. ",
"Reece continued to spray water into Saul's nostrils as unimaginable sounds echoed in the confines of the bathroom. ",
"Good thing the casita was freestanding and the walls were thick.",
"\n\nAfter a count of twenty, Reece removed the stream of water from Agnon's face and pulled the man's body upright into a seated position on the urine-soaked bathroom floor. ",
"He pulled the plastic wrap down from Agnon's face so that it hung loosely around his neck.",
"\n\n\"You know who I am, don't you, Saul?\" ",
"Reece asked in an almost kind voice.",
"\n\n\"I do, I do . . .\" ",
"gasped Saul between hyperventilating breaths.",
"\n\n\"Then you know why I'm here.\"",
"\n\nSaul shook his head violently. \"",
"I didn't . . . ",
"I didn't do anything . . . ",
"I just work for Horn. . . .\"",
"\n\n\"See? ",
"You're already bullshitting me. ",
"I can't have you doing that, Saul.\" ",
"Reece swiftly and violently wrenched Agnon back into the waterboarding position and resumed the spray of water. ",
"Without the plastic it was a bit messier, but the net effect was the same. ",
"He was able to move the man from zero to ten on the punishment scale within a few seconds. ",
"Agnon's brain was quickly learning that doing anything other than complying meant instant and unimaginable torture. ",
"After Saul had spent another twenty seconds under the hose, Reece dragged him back out of the tub.",
"\n\nReece had himself been waterboarded during SERE School after an escape attempt that the instructors deemed worthy of the treatment. ",
"He knew that as bad as the process of enduring the simulated drowning was, the threat of going through it again was the real motivator, or demotivator depending on your position.",
"\n\n\"You ready to talk and tell me the truth?\"",
"\n\n\"Yes, yes . . . ",
"I am,\" Agnon gasped.",
"\n\nReece stood and walked over to the bathroom counter, retrieving a small tape recorder and placing it on the closed lid of the toilet before pressing RECORD. ",
"He then let the man catch his breath for a few moments before he started asking questions. ",
"He began with an easy one.",
"\n\n\"Who is Josh Holder?\"",
"\n\n\"He's a DOD agent. ",
"He's a D.C. guy, but he's out here for this project.\"",
"\n\n\"Why him? ",
"Why is DOD involved?\"",
"\n\n\"He's the Hartleys' guy. ",
"He does work for them, double-dipping with DOD and J. D. Hartley's consulting firm. ",
"He was a liaison when Hartley was in Congress and has been a confidant of theirs ever since.\"",
"\n\nReece took the conversation in a different direction. \"",
"Tell me about RD4895.\"",
"\n\nHow does this guy know so much? ",
"Agnon thought.",
"\n\n\"It's an experimental drug. ",
"A big company stumbled on it a few years back and saw its potential to prevent PTSD, some sort of neuron blocker. ",
"It seemed to work, but they couldn't get the safety profile worked out; the test animals kept getting tumors. ",
"They put it on the auction block, and Capstone bought it dirt cheap.\"",
"\n\nReece looked at the nude, blindfolded form before him and knew that he'd broken him. ",
"The terror of the last few minutes combined with the looming threat of a repeat performance had taken away whatever spine Agnon had in the first place. ",
"Grabbing him by the arm, Reece hoisted Agnon to a standing position and led him back into the living area of the casita. ",
"The restraints around Agnon's ankles made the pace painfully slow. ",
"He unstrapped one side of the hospital restraints from Agnon's wrist and moved the man's arms to the front of his body. ",
"He then retied the restraints with Agnon's hands in the front and pushed him backward into a chair. ",
"Opening the door to the minibar, he removed two airplane-size bottles of Jim Beam and poured both into a glass that he then placed on the small end table next to Agnon.",
"\n\nHe retrieved the tape recorder from the bathroom and put it on the table as well. ",
"Turning the classical music down, Reece removed the waterlogged and vomit-stained rag from Agnon's face and watched his eyes blink, slowly adjusting to the light. ",
"Wearing white Tyvek coveralls with a hood, a surgical mask, clear shooting glasses, and disposable paper booties over his shoes, Reece looked more like a lab technician than a commando. ",
"Agnon knew instantly that he wasn't going to survive this night and he resigned himself to his fate. ",
"Whatever will to fight he'd possessed had been broken down by those few oxygen-starved moments.",
"\n\nReece motioned to the glass of bourbon on the table. ",
"Agnon suddenly realized how thirsty he was and reached hungrily with both manacled hands to pick up the glass. ",
"The brown liquid burned as it washed down his throat but it helped bring a calm over his body and broken spirit.",
"\n\n\"So you were telling me about buying the drug. ",
"Why did Capstone buy it if the side effects were so bad? ",
"How did it have any value?\"",
"\n\n\"My boss is a risk taker. ",
"He doesn't go for the easy play, but he's also good at stacking the deck in his favor. ",
"He paid next to nothing for the compound. ",
"The United States is in a war with no end in sight, and if they could get the tumor stuff sorted out, the drug would be worth a fortune. ",
"In the meantime, the entire project was flooded with DOD funding, so the financial gamble was minimal.\"",
"\n\n\"What do you mean, DOD funding?\"",
"\n\n\"We're playing with the house's money. ",
"This whole thing is being subsidized by the DOD. ",
"For the past two years, there's been one hundred million dollars in the Defense Appropriations Act for PTSD research, and all of that money goes to our fund, except for the ten percent we pay to Hartley.\"",
"\n\n\"The SECDEF gets a ten-million-dollar kickback?\" ",
"Reece said incredulously.",
"\n\n\"Not directly. ",
"We pay her husband ten percent to be our consultant. ",
"Technically, contingency lobbying is illegal, but we pay him ten million for his services out of last year's appropriation to give everything the appearance of being aboveboard. ",
"It's obviously a sham, but nobody's looking too hard. ",
"People think that politicians are on the take and they're right, but it's not in the way that everyone thinks. ",
"Nobody takes bags of cash these days. ",
"If you did, you'd end up in federal prison. ",
"It's all done with undisclosed conflicts of interest. ",
"You show me a member of Congress who's part of the appropriations process and I'll show you a wife, child, or brother-in-law with a company that benefits from federal dollars. ",
"Everybody does it. ",
"The Hartleys are just playing on a different level.\"",
"\n\nJesus.",
"\n\n\"You guys don't have your own scientists, though.\"",
"\n\n\"No, no. ",
"We contract with a lab in India. ",
"They pay pennies over there so you can hire PhDs for next to nothing. ",
"Boykin handled the science and the analytics. ",
"He's some sort of doctor turned accountant and financial analyst specializing in the health-care sector. ",
"He hatched the idea, and Mr. Horn gave the lab in India a timeline and a budget to rework the compound. ",
"They thought they had it worked out.\"",
"\n\n\"How did it get tested on my guys?\"",
"\n\n\"With potential for this much money, you'd be surprised what people will do. ",
"I'm talking about tens of billions of dollars, which is a lot of money to spread around to make friends, not to mention the tens of millions that we're getting from Congress; that just gave everyone a taste. ",
"Mr. Horn put the offer out to a few of his close confidants, including Mike Tedesco. ",
"You get Tedesco and you get the Hartleys.\"",
"\n\n\"You're telling me that the SECDEF arranged to test an experimental drug on a random SEAL troop? ",
"You bullshitting me again, Saul?\"",
"\n\n\"No, I wouldn't bullshit you, Mr. Reece. ",
"You know what a politician Admiral Pilsner is. ",
"He worked directly for Secretary Hartley at the Pentagon, and they became close. ",
"She has him on track to be the chief of naval operations and probably chairman of the Joint Chiefs. ",
"He's totally loyal to her. ",
"Of course, he was promised an enormous sum of money as well. ",
"She let him choose who to use, through Tedesco and Holder of course.\"",
"\n\n\"You mean the admiral personally chose my troop to test out this drug?\" ",
"Reece asked, his eyes narrowing.",
"\n\n\"That's how it happened, Mr. Reece. ",
"I swear.\"",
"\n\nInteresting. ",
"Reece paused before continuing.",
"\n\n\"How did you ever hope to get something like this approved? ",
"The FDA isn't going to accept results from some drug that you tested on people without their consent. ",
"I'm no expert, but I know there are all kinds of standards that have to be met. ",
"Phase One, Phase Two, all of that.\"",
"\n\n\"That would be true normally, but when the president names the head of the FDA and they want a drug approved during wartime to help every man and woman in uniform, no one is going to ask a lot of tough questions.\"",
"\n\n\"So now you're telling me that the president is involved? ",
"Is the freaking queen of England also part of this conspiracy?\"",
"\n\n\"No, not this president, the next president—Secretary Hartley.\"",
"\n\nNo way! ",
"Reece thought. ",
"How in the hell did I get mixed up in this shit show?",
"\n\n\"How did you get us to take it? ",
"I didn't take any pills or anything on this deployment.\"",
"\n\n\"Remember the Tactical Performance Study that your team participated in?\"",
"\n\n\"Yeah, they took our VO2 max and ran a bunch of cognitive tests on us.\"",
"\n\n\"That was a cover for this. ",
"The vitamin B12 shots you were given in the second half of that study were actually RD4895. ",
"We did a baseline physical and psychological assessment. ",
"We assumed that everything was going well until the blood work came back from the last battery of tests before your troop deployed. ",
"White blood cell counts for a bunch of your men were off the charts and there were various other abnormalities that indicated that the compound hadn't been fixed.\"",
"\n\n\"And that's when Boykin made the call to pull the plug and have us all killed?\"",
"\n\n\"I don't know. ",
"I really don't, Mr. Reece,\" Saul managed to get out through his tears. \"",
"How do you know so much about Marcus?\"",
"\n\n\"I found out about him a few days before I put a bullet through his brain in Wyoming.\"",
"\n\nOh my God. ",
"This is real. ",
"He's really going to kill us all. ",
"Though Saul said nothing, his expression betrayed it all.",
"\n\n\"How do you arrange a Taliban ambush halfway across the globe? ",
"You guys cut haji in on the billions?\"",
"\n\n\"We left it up to Pilsner on how to clean things up, all through Tedesco and Horn. ",
"They got to know each other through all those high-end fundraisers they throw for you guys, for the foundations and charities. ",
"That stuff is big business.\"",
"\n\n\"So, Pilsner sets us up for an ambush and gets a bunch of Rangers and Army aircrew killed for good measure. ",
"How the hell did he manage that?\"",
"\n\n\"I don't know exactly, Mr. Reece. ",
"I just know that's how it went down.\" ",
"Saul took another long gulp of the bourbon.",
"\n\n\"And Boozer and I survive.\"",
"\n\n\"Yes, so Josh Holder makes your man's death look like a suicide, leaving only you remaining.\"",
"\n\n\"What about Chinatown? ",
"How did you find me?\"",
"\n\n\"The SECDEF. ",
"She allocated a UAV to track you.\"",
"\n\n\"What? ",
"She diverted a national drone asset to help kill me?\"",
"\n\n\"I swear it's true, Mr. Reece, I swear.\"",
"\n\n\"Who is Humza Kamir?\"",
"\n\n\"Who?\"",
"\n\n\"Humza Kamir. ",
"The man you sent to kill me in Chinatown?\"",
"\n\n\"I didn't even know his name until you just mentioned it. ",
"That's the SECDEF's asset. ",
"I have no idea. ",
"Somebody they radicalize online in case they need some dirty work done that can be attributed to Islam.\"",
"\n\nReece shook his head in disbelief. ",
"Could that possibly be true?",
"\n\n\"Say that again? ",
"They do what?\"",
"\n\n\"They, they have this program where they radicalize at-risk individuals from target populations. ",
"They recruit them to what they think is a radical Islamic movement and then use them as expendable assets. ",
"I know it sounds crazy, but it's true. ",
"I swear.\"",
"\n\nReece paused as the gravity of what Agnon had just told him sank in.",
"\n\n\"Are you certain?\" ",
"Reece asked, his voice icy and pointed.",
"\n\n\"I couldn't believe it, either, when I first found out about it. ",
"In fact, I'm not even supposed to know about it. ",
"I wish I didn't. ",
"I think the Hartleys might have created it. ",
"I don't know. ",
"I just know it exists.\"",
"\n\n\"Where do the Mexicans fit into all of this?\"",
"\n\n\"They were just contract labor. ",
"This isn't the movies, where you hire a hit man to kill someone. ",
"We pay some of the cops to make the arrangements with gang types to do it. ",
"Mr. Reece, I'm—\"\n\nReece cut him off. \"",
"Don't fucking do it, don't even sit there and apologize for having my pregnant wife and baby girl shot down in our home by some fucking drug cartel. ",
"Trust me when I tell you that you don't want to do that.\"",
"\n\nAgnon sat silently, staring at the floor in front of Reece.",
"\n\n\"If this doesn't work,\" Reece asked, resuming his interrogation, \"how are you planning to make money on it? ",
"You've got to be throwing some serious numbers at all these collaborators to get them to risk everything. ",
"How are they going to get paid if the drug is no good?\"",
"\n\n\"Well, now the drug works; there are no efficacy issues, at least not on the latest test rats in India. ",
"It's proving to be over twenty percent more effective than placebo. ",
"As for the adverse events, the tumors, we are confident that we have addressed that in the latest version of the product. ",
"The most recent test population has shown no such signs.\"",
"\n\n\"You mean to tell me that you've tried this thing on another group of unwilling people? ",
"More SEALs?\"",
"\n\n\"Yes. ",
"Admiral Pilsner arranged for another group of candidates and they are doing just fine.\"",
"\n\n\"You bastards!\" ",
"Reece shot back, his voice laced with venom. ",
"It took all his strength not to snatch the life from Horn's underling then and there. ",
"Regaining his composure, he continued: \"Okay, let's keep going. ",
"You haven't said much about your boss. ",
"Tell me more about Steve Horn.\"",
"\n\nAgnon took a deep breath. \"",
"Mr. Horn is a genius. ",
"He sees potential in things that others don't and he's relentless when he wants something. ",
"When he hears that I've been murdered, he's going to go into hiding and hire every security contractor on the planet to hunt you down. ",
"You'll never get to him.\"",
"\n\n\"That's where you're wrong, Saul; I'm not going to murder you.\"",
"\n\nThe look on Saul's face was a priceless mask of hope and shocked disbelief. ",
"Reece poured Saul another drink and grilled him for another hour about places, names, dates, everything he could think of that would be helpful in his quest. ",
"Saul's speech increasingly slurred, and his eyes narrowed to small slits. ",
"Eventually his head pitched forward as he passed out in the chair from the exhaustive waterboarding and the subsequent alcohol consumption. ",
"Satisfied that he had what he needed, Reece decided it was time for Saul Agnon to leave this world.",
"\n\nReece opened his nylon pack and began laying out the instruments that would bring about the untimely death of Mr. Horn's compliant assistant. ",
"A lighter, a syringe, a metal spoon, a length of surgical tubing, and a small Ziploc bag containing powder. ",
"Reece wrapped the tubing around Agnon's left upper arm and tied it off tightly. ",
"He took the spoon to the bathroom, where he filled it partially with water from the sink before emptying the contents of the Baggie into it, forming a paste. ",
"Holding the spoon above the lighter, Reece watched the water boil the powder into a thin liquid. ",
"He then dipped in the tip of the syringe and pulled back the plunger, drawing the mixture into the plastic cylinder. ",
"Reece had done enough first aid training to be able to find a vein, and he quickly stuck the needle into the most prominent blood vessel protruding from the crook of Saul's arm. ",
"He pulled back on the plunger slightly and blood flowed into the syringe, spiraling through the liquid contents like the lava lamps Reece loved as a kid. ",
"He pushed down on the plunger, sending the liquid death into Agnon's bloodstream.",
"\n\nAs the methadone, alprazolam, and carisoprodol flowed into Agnon's brain, they inhibited the respiratory response centers already hampered by his body's metabolization of alcohol. ",
"The mixture of chemicals had a cumulative effect on the brain's ability to measure carbon dioxide; Agnon's brain no longer sent the signal to his lungs that he needed to exchange carbon dioxide for oxygen and his body quite literally forgot to breathe.",
"\n\nHis death came quickly. ",
"Reece placed the needle as well as the rest of the drug paraphernalia on the small table, alongside the empty liquor bottles and the half-full glass of bourbon. ",
"He pulled a trash bag from his pack, collecting the padded restraints from Agnon's hands and feet. ",
"In went the cloths that he'd used as a gag and blindfold and finally the length of plastic wrap that still hung around Agnon's neck. ",
"He carried the bag around the entire room, looking for anything that needed to be disposed of in order to sterilize the scene. ",
"He took the wet towels from the edge of the floor and threw them haphazardly onto the urine-soaked tile floor. ",
"He tied the trash bag off and dropped it into his pack, while the tape recorder went into a small compartment on the outside. ",
"Reece did one final sweep of the room before checking Agnon's nonexistent pulse and changing out of his lab clothes. ",
"Then, hanging the DO NOT DISTURB sign on the door, he exited into the early morning darkness.",
"\n\n• • •\n\nBack at the condo, Reece sat at the kitchen table listening to the Saul Agnon interrogation tape. ",
"He made notes, stopping and rewinding the tape at more than one juncture to ensure that he had the details correct. ",
"If this was a lie, it was a well-crafted one. ",
"If it was the truth, it was mind-blowing. ",
"After reviewing his notes, Reece pulled a piece of paper from the bag in his pocket and removed the list. ",
"He unfolded it and looked at Lucy's drawing before turning it over and smoothing it flat on the table. ",
"With the pencil he'd been carrying in the bag, he drew a line through Agnon's name. ",
"He then added more names to the list based on his notes from his interrogation:\n\nJOSH HOLDER\n\nMARCUS BOYKIN\n\nSAUL AGNON\n\nSTEVE HORN\n\nCJNG, MEXICO\n\nADMIRAL GERALD PILSNER\n\nMIKE TEDESCO\n\nJ. D. HARTLEY\n\nLORRAINE HARTLEY\n\nIt was time to take Marco del Toro up on his generous offer.",
"\n\n## CHAPTER 44\n\nPalm Springs, California\n\nTHE HOUSEKEEPER HAD respected the DO NOT DISTURB sign on the door of Casita 134 the previous day, but it was now well after the guest's appointed checkout time on Sunday and she had cleaned and restocked all the other rooms on her list. ",
"She tapped loudly on the door with her keycard.",
"\n\n\"Housekeeping!\"",
"\n\nBut for the sound of classical music playing softly somewhere inside the room, silence.",
"\n\n\"Housekeeping!\"",
"\n\nNothing.",
"\n\n\"Housekeeping, I am coming inside!\"",
"\n\nShe inserted her master keycard into the slot and the lock clicked open. ",
"Reaching into the room and turning on the light as she swung the door open, her peripheral vision caught a human form slumped in a chair. ",
"She began to apologize for her intrusion until her eyes focused on the dead man, an odor the likes of which she had never experienced shocking her system.",
"\n\n\"Dios Mio!\"",
"\n\nShe slammed the door shut and ran screaming for her supervisor.",
"\n\n• • •\n\nWhen homicide detective Anthony Gutierrez arrived, the responding patrol officers had already cordoned off the scene. ",
"The officer outside the door nodded at the detective and motioned him inside the room where another officer was waiting. ",
"The smell of death hit Gutierrez's nostrils as soon as he crossed through the doorway. ",
"A quick glance at the body established that calling EMS had been a waste of time and resources.",
"\n\nThe departed was naked and his entire body was devoid of color, except for his lower legs, which looked to be filled with dark red wine. ",
"Gravity had caused the man's blood, no longer under pressure from a beating heart, to pool in his legs. ",
"His eyes were closed and his mouth was open. ",
"But for the startling lack of color, the look on his face made him appear to be asleep.",
"\n\nThe manner of his death was apparent from the array of drug paraphernalia on the table beside him: a syringe, a soot-colored metal spoon with the dried residue of what was likely either prescription drugs or heroin, a Bic lighter, a cocktail glass containing a small amount of brown liquid, and empty liquor bottles that appeared to be from the room's minibar. ",
"Surgical tubing was wrapped tightly around the body's left bicep and a puncture wound was evident on the forearm.",
"\n\n\"Another overdose, Detective?\" ",
"asked the patrol officer, almost rhetorically.",
"\n\n\"Yeah, I'd say that's pretty obvious. ",
"Anything else in the room?\"",
"\n\n\"Nothing out of the ordinary. ",
"There's some puke on the floor over there, piss all over the bathroom. ",
"Looks like this guy was partying pretty hard.\"",
"\n\n\"Who is he?\"",
"\n\nThe officer glanced down at a pocket-size notebook. \"",
"His ID and the name badge from his conference say he's Saul Agnon from L.A. The resort manager confirmed the room was booked in that name by a guy attending some lawyer conference.\"",
"\n\n\"When's the last time anyone saw him alive?\"",
"\n\n\"All of the attendees have left the conference but, according to the maid, he had a do-not-disturb sign on his door all day yesterday. ",
"Maid came in at approximately two thirty-five this afternoon to clean the room and saw the body. ",
"She says she didn't touch anything. ",
"My guess is he's been dead since sometime Friday night.\"",
"\n\n\"I'd agree based on the body. ",
"I'll call around to some of the folks at the conference and see if we can find out anything, but my guess is that this is a straight-up accidental overdose. ",
"Probably heroin or poly-substance. ",
"It's nothing like Northern California, but we still get at least one of these a month. ",
"Thirty-something white guys are dropping like flies.\"",
"\n\n\"Can't imagine injecting yourself with that shit. ",
"Makes my skin crawl.\" ",
"The officer winced at the mere thought.",
"\n\n\"Addiction is a powerful force. ",
"This guy's a lawyer, probably makes more scratch than both of us put together, and he dies butt naked in a hotel room trying to get high.\" ",
"Detective Gutierrez shook his head. \"",
"I'll snap some pictures. ",
"Call the ME, and we'll get him bagged up and out of here.\"",
"\n\n## CHAPTER 45\n\nPoint Loma, California\n\nREECE SLOWED HIS LAND CRUISER and eased into a parking space off the main drag in Point Loma, just across the bay from Naval Air Station North Island, the Navy's large real estate holding that occupied the majority of Coronado Island.",
"\n\nReece had always liked Point Loma. ",
"There were some beautiful homes here, with great views of San Diego, its bay, Coronado, and the Pacific. ",
"He loved the smell of the ocean, and Point Loma was San Diego's maritime metropolis. ",
"He drove by the front gate to the Marine Corps Recruiting Depot, one of two boot camps where young recruits began their journey into the Corps. ",
"Crossing streets with names like Nimitz, Farragut, and Roosevelt, he passed yacht builders, boat repair shops, the exclusive San Diego Yacht Club, and a host of fishermen preparing for yet another day at sea.",
"\n\nTraffic had been light this early on a weekday, but Reece knew that a certain local coffee shop would be open and ready for business. ",
"The coffee shop looked like a small Victorian house, which it had been at some point years ago. ",
"With two stories and a charming front deck it could easily have been mistaken for an historic home, rather than the small-batch roaster it was. ",
"The inside was as appealing as the outside, with large overstuffed chairs and couches arranged among antique coffee tables of just the appropriate size. ",
"The walls were adorned with an assortment of old books, which always made Reece feel comfortable and at home.",
"\n\nAs early as it was, Reece was not the first customer of the day. ",
"A girl in her early twenties sat pecking away at her laptop, probably a student from Point Loma Nazarene University, just up and over the hill, while across the room sat a grizzled old fisherman deep in thought.",
"\n\nReece ordered a large black coffee. ",
"Ordinarily he would have added something sweet, but today he ordered it the same way his friend who usually accompanied him to this particular coffee shop would do it. ",
"Reece smiled, recalling how his larger companion would always make some comment about guys who spruce up their coffee, as he shook his head watching Reece add honey or sugar with a dash of cream, or worse yet, adding nothing because he ordered a latte.",
"\n\nToday, that Teammate wasn't there to give Reece a hard time about his coffee predilections. ",
"He was waiting for Reece farther up the road.",
"\n\nReece fired up the Land Cruiser and headed up the hill, turning onto Cabrillo Memorial Drive. ",
"The higher Reece climbed, the more beautiful the view became, the homes and businesses retreating to give way to the natural beauty of the Pacific coastline.",
"\n\nReece pulled into a small dirt lot facing east and took in the view. ",
"Naval Base Point Loma, home to San Diego's submarine fleet, was just coming to life below him, while across the bay he had a commanding view of North Island, Coronado, downtown San Diego, Imperial Beach, and on into Mexico.",
"\n\nHis coffee sufficiently cooled, Reece rested his arm on the open window and took a sip of the strong black liquid that he was sure once flowed through the veins of the friend he had come to see, based on the copious amounts Reece had observed him consume on a daily basis over the years. ",
"Watching a Ticonderoga-class guided-missile cruiser pass through San Diego Bay into the open waters of the Pacific, Reece could not help but be impressed. ",
"That one ship contained more combat power than most small countries. ",
"Its imposing presence represented United States diplomacy abroad and traced its origins back to the Continental Navy during the Revolutionary War. ",
"To Reece, it looked like freedom.",
"\n\nReece allowed another smile as he thought about how his friend would have been impressed that he knew the ship below was a Ticonderoga-class. ",
"Usually, when his friend would ask him to identify a certain ship in their wanderings, Reece would answer, \"That's a big gray one.\" ",
"Reece's professional life had been spent studying the unconventional side of warfare: insurgencies, guerrilla tactics, and terrorism. ",
"On those subjects he was more than well versed.",
"\n\nCoffee in hand, Reece exited the cruiser and began the walk to meet his friend. ",
"It had been too long. ",
"The intermittent muffled sound from the sub base below would occasionally break over the hill to interrupt a distant lawn mower and the cadence of sprinklers on a section of grass across the street. ",
"The peaceful chirping of birds in a light morning breeze was the perfect complement to the serenity of Fort Rosecrans National Cemetery.",
"\n\nReece ascended the steps into a small white nondescript building and entered his friend's name in the computer to locate his final resting place: section and gravesite number. ",
"He had made this trek with Senior Chief Martin Hackathorn on many an occasion, attending too many funerals together over the years. ",
"War does that. ",
"They always stopped at the small Victorian house coffee shop at the base of the hill before paying their respects to those taken too soon.",
"\n\nOne becomes familiar with the layout of national cemeteries in times of war, and Reece was no different. ",
"He knew exactly where to go. ",
"It was a good spot.",
"\n\nThough he knew precisely where he was going, Reece took his time getting there. ",
"He was dressed respectfully in slacks, his customary Salomon shoes, and a tucked-in button-up shirt. ",
"Black wraparound Gatorz sunglasses shielded his eyes from the early morning glare. ",
"A light jacket hid the Glock 19 concealed in his waistband, which he was sure was a violation of policy or law, probably both, and possibly even etiquette, but Martin would not want Reece to visit his gravesite unarmed, of that Reece was certain.",
"\n\nWhite headstones stood out in sharp contrast with the green grass of the rolling hills. ",
"One thing the country did well was keep up national cemeteries. ",
"Reece passed row after row in solemn respect; lives ending in dates 1914, 1877, 1966, 1944, 1917, 1898, 2006, 1900, and 2016 had found peace here. ",
"Those dates corresponded with events in a country that had seen little rest from war: the Indian War Campaign, the Mexican Campaign, World War I, Vietnam, World War II, the Haitian Campaign, Korea, the Spanish-American War, Iraq, and Afghanistan. ",
"Every generation seemed to be represented, and every generation had answered the call. ",
"This generation was the repository of that accumulated knowledge of war. ",
"Reece did not intend to let it go to waste.",
"\n\nReece wondered where he would go when it was his time. ",
"With what he was about to do, he wasn't sure. ",
"He hoped they would honor the request in his will to be buried alongside Lauren and Lucy. ",
"He wanted to be next to them for eternity.",
"\n\nReece didn't realize he had stopped walking, nor did he remember how long he had been standing there, coffee still cooling in his hand, eyes welling up, looking at the grave of his friend, the big man with the beard whose head Reece had last held when it wasn't even attached to his body.",
"\n\nReece took a knee in front of the headstone, lowered his head, and didn't speak. ",
"His thoughts were focused beyond the grave. ",
"Sorry, buddy, Reece thought. ",
"We never should have gone on that mission. ",
"I knew it and we went anyway. ",
"But, the truth of it is, we were set up before we even deployed. ",
"I'm the only one left. ",
"They took Lucy, Lauren, and our unborn son, and I don't have long. ",
"The bastards that killed you, killed us all back in this country during our work-up. ",
"Don't worry, though. ",
"I still have a bit more time. ",
"I know who they are now and I'm hunting them. ",
"They don't know it yet, but they will soon. ",
"I'm coming for them and I'm going to put them all in the ground.",
"\n\nStanding, Reece took another look at the grave, emblazing the words etched there into his memory before turning to make his way back through the warriors of battles past.",
"\n\nWritten on the headstone, under \"Martin F. Hackathorn, April 4th 1975–June 14th 2017, U.S. Navy, Afghanistan,\" was one simple word: PATRIOT.",
"\n\nReece was coming.",
"\n\nDeath was coming for them all.",
"\n\n## PART THREE\n\n## THE RECKONING\n\n## CHAPTER 46\n\nTijuana, Mexico\n\nMARCO HAD GOTTEN REECE across the border without much trouble. ",
"The Range Rover that carried them south through Imperial Beach and Otay Mesa and into the San Ysidro border-crossing checkpoint was a version called the Sentinel. ",
"Built by Land Rover's Special Vehicle Operations unit in Great Britain, it could withstand armor-piercing incendiary bullets and shrapnel from hand grenades. ",
"With a 510-horsepower engine and a retooled suspension, it was a serious piece of machinery. ",
"Reece shuddered to think what it had cost. ",
"Up-armored Suburbans led and trailed the Range Rover, looking a bit like a presidential motorcade with a British twist. ",
"It seemed a bit high-profile to Reece, but this was Marco's department, and he seemed more than confident that he could get his friend back and forth across the border.",
"\n\nReece couldn't help but tense up when they passed through the checkpoint into Mexico, but they drove through without so much as a pause. ",
"At midnight there was not the usual backup of cross-border daily labor, causing hours of delay at peak travel times that happened to coincide with San Diego's steadily growing number of commuters also going to and from work. ",
"Marco smiled watching Reece visibly relax as they sped south. ",
"Reece wondered how many Mexican and American laws he had just broken, knowing the contents of his load-out bag behind the seats.",
"\n\nDarkness enveloped the motorcade as it made its way into the heart of Tijuana. ",
"Things had gotten so bad there in recent years that the Navy had issued a directive forbidding sailors from partaking in liberty south of the border. ",
"The bars that used to bustle with U.S. military personnel from the second-largest naval port in the country were now just hosts to college students from San Diego and Los Angeles too young to get into the bars and nightclubs of Southern California.",
"\n\nTaking a sharp left down what appeared to be a dead-end alley, the vehicles abruptly turned into what looked to Reece like a garage chop shop. ",
"They pulled into spots obviously reserved for the boss as corrugated sliding doors came down behind them.",
"\n\n\"We're here,\" Marco said, smiling.",
"\n\n\"We're where?\" ",
"Reece inquired, leaning forward to get a better look at his surroundings.",
"\n\n\"My Tijuana offices.\"",
"\n\nMarco laughed as he saw a puzzled look cross Reece's face. \"",
"You expected better, sí ?\"",
"\n\n\"Well, it's a bit different from your usual digs.\"",
"\n\n\"Ah, yes, it reminds me of my humble beginnings. ",
"Plus, I can concentrate here without the unwelcome distractions brought on by success. ",
"Come,\" Marco continued, tilting his head in the direction of his door. \"",
"We have much to discuss.\"",
"\n\nReece grabbed his load-out bag from the back of the Range Rover as Marco's security detail spread out into what looked to be their customary posts to keep an eye on surveillance camera footage of the surrounding area. ",
"A group of six nondescript cars were parked neatly in one corner of the garage. ",
"They looked like they would fit in nicely with Tijuana traffic and not arouse any suspicion if Marco needed to move around the city with anonymity. ",
"A small gym was set up in one corner of the garage along with an impressive array of wrestling mats.",
"\n\n\"Is this how you've been beating me all these years? ",
"Sneaking into Mexico to train while I'm overseas?\"",
"\n\n\"Ha! ",
"One must do what one can. ",
"I know you read your Sun Tzu. ",
"Luckily tonight's foe has not,\" Marco called out as he bounded up a set of stairs to what Reece assumed would be his office overlooking the garage. ",
"Reece followed as hastily as he could, encumbered by the weight of his large bag.",
"\n\nMarco's office was neat and orderly, even minimalist. ",
"A row of security monitors lined one wall on the far side, allowing Marco to overlook the garage floor through large windows positioned to face the enormous doors.",
"\n\n\"What business do you run from here?\" ",
"Reece asked.",
"\n\nMarco looked his companion in the eye. \"",
"I have many businesses, my friend. ",
"I can run most of them from anywhere, but certain meetings and ventures require a place such as this.\" ",
"He paused. \"",
"Did you ever wonder how I got my American citizenship so quickly?\"",
"\n\n\"I assumed it was because your U.S. business interests would generate good tax dollars.\"",
"\n\n\"Ah, yes, this is true. ",
"But I have other dealings that are of interest to certain agencies of your government.\"",
"\n\n\"It's your government now, too,\" Reece reminded Marco with a nod.",
"\n\n\"Very true, amigo, very true. ",
"I know it is hard to understand, but what we will do tonight will help both my business interests and our countries. ",
"I will explain more later. ",
"For now, you just have to trust me.\"",
"\n\n\"I trust you, Marco. ",
"Otherwise I wouldn't be here.\"",
"\n\n\"I know. ",
"Let's review those pictures again.\"",
"\n\nThey had gone over the target package made up of the intelligence that Ben Edwards had delivered before crossing the border, but both men wanted to review it one last time. ",
"Reece knew Marco was the one person who could get him to his target. ",
"Marco had said yes without even knowing exactly what Reece had in mind. ",
"After hearing Reece out, Marco offered his security detail as an assault force but Reece decided against it; they could get him to and from his target and set up as a blocking element, but that was all. ",
"This was his war.",
"\n\n\"Okay,\" Marco said when they had gone over it again. \"",
"When do we leave?\"",
"\n\n\"You said it was about twenty minutes to the target house,\" Reece said, looking at his watch. \"",
"Let's leave in thirty minutes, giving us a time on target of 0300.\"",
"\n\n\"Bien. ",
"Treinta minutos. ",
"I will ready the men and cars. ",
"They will be, how do you say it? ",
"Our 'mobility package'?\" ",
"Marco said, clearly pleased with his use of military lingo.",
"\n\n\"Thanks, Marco. ",
"I won't forget this.\"",
"\n\nMarco nodded and left Reece alone to ready his gear.",
"\n\n• • •\n\nThe new Tijuana motorcade was a bit different than the one that had brought them into Mexico. ",
"Gone were the plush Range Rover and armored escort vehicles, replaced by unarmored, unremarkable everyday cars covered in dust and dents. ",
"Perfect for the night's mission. ",
"Reece just hoped they would start but was soon pleasantly surprised when he heard the engines crank up. ",
"It was apparent that the engines under the hoods were anything but ordinary. ",
"Marco smiled again, visibly enjoying surprising his friend.",
"\n\n\"Sun Tzu,\" he said again, with a mischievous twinkle in his eye. \"",
"Deception.\"",
"\n\nReece's current mobility package consisted of two cars that would be derelict vehicles almost anywhere in the United States but were an ideal fit for the streets of Tijuana. ",
"Marco and Reece were in the back of the lead vehicle. ",
"A driver and one of Marco's bodyguards sat in the front.",
"\n\n\"Diez minutos, Señor Toro,\" said the big man in the front passenger seat.",
"\n\nMarco nodded. ",
"He started to say something when his phone chirped. \"",
"Perdon,\" he said, answering, \"Sí,\" followed by a long pause. \"",
"Sí. ",
"Gracias.\" ",
"Hanging up, Marco turned to Reece. \"",
"My source inside has left the building. ",
"Fourteen men. ",
"Six women. ",
"No children. ",
"The women are hookers from Mexicali. ",
"They have to import them for security reasons. ",
"They have one scout on the roof with an AK and one in the front room with a shotgun.\"",
"\n\nReece nodded. ",
"His face was eerily calm. ",
"Marco had never seen his friend in work mode before, and even though he was not one to scare easily, inside he suddenly felt chilled. ",
"Reece was all business. ",
"Tonight that business was death.",
"\n\n\"Aquí,\" said the man in the front passenger seat about ten minutes later, the car slowing to a crawl.",
"\n\n\"Okay,\" Marco said. \"",
"This is it.\" ",
"He pointed to a dilapidated building at the end of the block.",
"\n\n\"Reece, when you kill these men, will your journey be over?\"",
"\n\nReece paused. \"",
"I'm just getting started. ",
"Thanks, buddy. ",
"I'll be back in a few.\"",
"\n\n## CHAPTER 47\n\nREECE MOVED QUICKLY AND quietly from the sidewalk into the abandoned building Marco had identified on Google Earth across and adjacent from the target building. ",
"It was a construction project that looked like it had not been worked on in years. ",
"Reece felt good. ",
"He was dressed in his field cammies with full battle kit. ",
"It had taken more than fifteen years of warfare to dial his gear in to where it was today, and with tonight's op Reece would add yet another country to the list of places where he had applied his trade. ",
"The only difference between the gear from his last deployment to Afghanistan and tonight was that the helmet he wore was his nonballistic issued \"bump\" helmet, his Kevlar one having been lost to the ambush in the graveyard of empires. ",
"He was also not burdened with the two radios he usually carried; that gave him added mobility on this mission. ",
"His NODs gave him a distinct edge over his enemy, and tonight Reece planned on using them to his full advantage.",
"\n\nThough he was fairly certain the building was deserted, he cleared it methodically and smoothly. ",
"Slow is smooth, smooth is fast. ",
"As he moved to the roof he was transported back to another place and time, patrolling through the streets of Ramadi with his sniper team, setting up in the dark of night to await their unsuspecting prey from an advantageous position. ",
"Tonight was similar, except that he was alone, and these were the men who had killed his family.",
"\n\nReece scanned the roof and moved to where he had a clear vantage point of the target house. ",
"It looked quiet. ",
"At first he thought Marco's informant had given them bad intel, since he didn't see the sentry on the roof. ",
"Another, more careful examination revealed the man sleeping in a chair, head back, an AK clearly visible propped against the railing next to him. ",
"Reece never would have used the roof during the day, but at night, with the technical advantage of his NODs, it offered a logical location from which to engage his first target.",
"\n\nReece knelt down and rested his rifle on the railing. ",
"He settled the IR laser from the ATPIAL, invisible to anyone without a night-vision device, attached to the top rail of his M4 on the bridge of the sentry's nose. ",
"Pressing the trigger, Reece sent a 77-grain Black Hills 5.56 bullet directly into the man's face. ",
"Reece settled the laser onto the man's chest and put two more into his center mass just for good measure, his suppressor muffling the sound of the shots. ",
"Then he stood and made his way back to the street.",
"\n\nHe passed Marco's vehicles as if in a blur, his movement smooth and steady, weapon up and trained at the front door of the target building. ",
"Locked. ",
"Shit. ",
"The informant was supposed to leave it open. ",
"If he had been with his assault team, Reece would have breached the door and begun clearing the house, as he had so many times throughout the war, but he was not with his assault team. ",
"Tonight he was the team.",
"\n\nReece immediately switched to his secondary method of entry and moved to the side of the structure. ",
"So similar to Ramadi. ",
"Finding the outside pipe he had identified through Ben's imagery, he quickly slung his rifle and began to carefully work his way up the side of the building. ",
"Not as easy as when I was an E4, Reece thought.",
"\n\nCresting the top of the building, Reece drew his pistol to cover the rooftop. ",
"Seeing only the dead sentry, he swung himself over the railing, holstering his pistol and bringing his M4 back around and into his shoulder in one fluid motion, before moving to the stairs leading down into the lion's den. ",
"Without knowing the exact layout of the interior, Reece was going to have to clear the entire building. ",
"Using angles much like a police officer with a flashlight and a handgun, Reece could instead use his NODs and M4 IR light/laser combo to clear each room. ",
"If he lost the element of surprise or the advantage afforded him by his night vision, things could go south in a hurry.",
"\n\nThe building smelled of burnt cannabis, urine, and sweat, a disgusting combination. ",
"Working his way into the first hallway of the third floor, Reece identified a partially open door to his left and closed doors to the other three rooms in the hallway. ",
"Pulling his M4 back at an angle into the crook of his elbow and body, Reece slowly pushed the door open. ",
"A lone figure could be seen lying facedown on the bed, wearing shorts and a tank top, sheets covering one leg. ",
"It looked like he was dead already. ",
"Continuing his scan of the room, Reece took everything in, his mind working to identify targets. ",
"Clear, well, almost clear. ",
"Reece leveled his laser at the back of the sleeping man's head and depressed the trigger, sending one round into his brain, which exploded onto the pillow and bed frame. ",
"One down. ",
"Reece held his breath. ",
"From the looks of it, these guys had been up partying most of the night, but it was never wise to underestimate your opponent.",
"\n\nBack into the hallway and on to the next room. ",
"Nothing to suggest Reece's suppressed shot had been heard. ",
"This door was unlocked and Reece opened it as quietly as possible. ",
"Two people were visible sleeping in bed. ",
"A grotesquely obese gang member lay naked, facing up, one leg draped over the side and resting on the floor. ",
"A petite young woman lay naked next to him on her back. ",
"Reece hoped that she partied hard enough to keep her from waking up. ",
"He didn't want to kill her, but if her waking up would compromise his mission he had no qualms about putting her down. ",
"Reece shifted his M4 to his left hand, gently releasing a small bungee cord that held a centuries-old tool that he and his men had learned still reigned supreme as one of the quietest ways to end a man's life. ",
"Reece raised the Winkler/Sayoc tomahawk, taking careful aim at the side of the sleeping man's head in the center of the temple, and drove it powerfully downward, through his brain, killing him instantly. ",
"Quickly Reece shifted to the woman and prepared to deliver her kill strike. ",
"She stretched and stirred, settling back into a comfortable sleeping position, unaware that the angel of death had passed her over this night.",
"\n\nSmoothly securing his 'hawk back into the sheath, he transitioned the M4 to his primary hand and moved back into the hallway. ",
"Two more doors on this floor. ",
"Eleven more men and five more females to contend with if the intel was correct. ",
"Next door. ",
"Locked. ",
"Fuck. ",
"Reece reached for his lockpicking set. ",
"No sense in kicking in a door and alerting a numerically superior force to his presence. ",
"Clicking on a small green LED light on the side of his helmet attached to a flexible neck allowed Reece to direct it appropriately. ",
"He slightly tilted his helmet up to allow him to see under his NODs to work the lock. ",
"As he inserted the first pick, the door began to move.",
"\n\nReece's right hand moved back to his M4, bringing it up while at the same time he identified his threat. ",
"Standing in front of him was a young woman wearing only panties, and behind her, sitting awake on the bed, was a fighting-age male clearly just getting out of bed and unsure of what was happening. ",
"Reece's left hand clamped around the throat of the girl in front of him as he made entry into the room. ",
"Sensing commotion at the door, her male companion stood up to make sense of what was happening, only to catch two rounds in the stomach from Reece's M4, fired from a position of retention. ",
"Reece drove the young woman into the floor, firing three more rounds into the target before him. ",
"Letting out a loud grunt, the barely awake man absorbed the next three rounds in the upper chest and neck, grabbing helplessly at his throat as blood sprayed from the deadly wound, sinking to the floor in a gurgle of death throes.",
"\n\nReece quickly scanned the rest of the room to ensure it was clear and then yanked the young prostitute to her feet by the throat and onto the bed. \"",
"Por favor, no,\" she managed to cough out, \"por favor, no.\" ",
"Reece had no reservations about sending her to the afterlife but wouldn't do so unless it were absolutely necessary. ",
"Pulling her up again by the throat, he moved her across the room back to the doorway, pinning her against the wall so he could look out into the hallway with his NODs. ",
"Still quiet. ",
"Frogman luck, Reece thought.",
"\n\n\"Por favor, no,\" she whispered again, her eyes wide with fright.",
"\n\n\"Silencio,\" Reece hissed, pushing her down to her knees and then forcing her to prone out on the floor. ",
"With an efficiency based on years of practice and execution, Reece pulled plastic zip ties from his plate carrier, quickly binding the young woman's hands and feet. ",
"Looking around the room, Reece settled on a sock near the dead man's shoes and stuffed it into her mouth, securing it with another zip tie. ",
"He then ushered her to her feet and back onto the bed, using a third tie to secure her to the metal bed frame.",
"\n\n\"Silencio,\" he ordered again in a hushed tone. ",
"Her terrified eyes acknowledged understanding.",
"\n\nReece moved back to the side of the door and ejected his partially used magazine, replacing it with a fresh one. ",
"Stowing the other away in case he needed it later, he examined the hallway yet again. ",
"Still quiet.",
"\n\nIf he had had his troop with him, the building would have been secure by now. ",
"As this was a solo mission, Reece still had a ways to go.",
"\n\nLast door of the top floor. ",
"Unlocked. ",
"Reece pushed it open. ",
"His first thought was how in the hell could these people not have heard the commotion next door. ",
"His next was, how in the hell could I not have heard them through the wall. ",
"Two naked and heavily tattooed gang members were pounding away at one of the prostitutes. ",
"She was on her hands and knees, taking one man from behind while taking the other in her mouth. ",
"Even with a small candle burning on the ground in the corner, none of them noticed the door inch open or the muzzle of Reece's rifle rise to chest height and fire two rounds into the upper back of the man working away at her from behind. ",
"If the other man noticed the reason for his friend's demise, he didn't show it. ",
"As the first dead man fell forward and collapsed onto the back of the woman in front of him, his partner in crime looked down in amazement to see his chest suddenly erupt into an unnatural violent mess of blood and tissue. ",
"His mind was just starting to realize what had happened when Reece's next round found its way through his left eye socket, tearing through the rational-thinking hemisphere of his brain and sending him down in the most unnatural of positions against the bloodstained headboard. ",
"Reece moved his IR laser back to the first man and put a security round in his head before swiftly committing to the room and kicking the first man off the female. ",
"She stayed facedown, not moving. ",
"For a second, Reece thought he had accidentally shot her, but then he realized the blood and tissue that covered her body were not her own; she was merely in shock from the two men she was just having sex with suddenly die on top of her, showering her in a bloody mist.",
"\n\nReece let her live, zip-tied her to the bed, performed another tactical reload, retaining the semi-used magazine, and moved back into the hallway. ",
"Clear.",
"\n\nSix down. ",
"Three prostitutes of the six total alive on the top floor. ",
"Eight more hostiles and three more noncombatants to contend with. ",
"Move.",
"\n\nReece had become an instrument of death. ",
"Nothing felt more natural to him than moving through a target. ",
"He had done it at all tactical levels on the battlefield and now he was progressing through a new target, one that had no idea what was coming.",
"\n\nDown into the stairwell, scanning, clearing, processing every detail, weapon up and ready.",
"\n\nAs Reece slowly pushed open the door to the second floor, he first sensed and then saw movement, meeting a juiced-up gangbanger in boxers running down the hallway with a stainless steel revolver in his hand. ",
"He must have heard or sensed something amiss upstairs. ",
"The sixth sense at work. ",
"He caught five 5.56 bullets in the chest as Reece shot him down. ",
"Killing men in close quarters was not as easy as the movies or local defensive weapons courses would have one believe; sometimes men die hard. ",
"There was no magic formula in the real world that would guarantee that someone would go down and stay down. ",
"The \"two to the body, one to the head\" popularized as the Mozambique technique was quickly dispelled in the realities of modern combat. ",
"Reece and his men shot their targets down; whether it took one shot or ten, you shot them into the ground.",
"\n\nA light switch was thrown at the end of the hall, and it erupted in a cheap flickering glow. ",
"Reece saw the man at the end of the hall, who had taken away the advantage of night vision, wearing jeans and a T-shirt, tattoos up the side of his neck and bald skull. ",
"Reece's shot down the hallway missed his mark as he pushed his helmet back on his head to see under the NODs in the new, lighted environment. ",
"The T-shirted man scrambled for his open door.",
"\n\nWanting to get to him before he could get to a weapon, Reece charged down the hallway firing the M4 into the open door of the T-shirted man's room, clearing it by taking the angle and firing as he went. ",
"Not the usual protocol, but without a team of highly trained assaulters behind him, he needed to improvise.",
"\n\nAs Reece attempted to get a better angle on the door, a heavily tattooed arm shot out of the room, grabbing his barrel and pinning him to the end of the hallway wall. ",
"Jeez, this guy is strong. ",
"With the M4 pushed against Reece's chest, it was combat ineffective. ",
"Reece grabbed the shaved tattooed head in front of him, smashing his helmet and NODs into the man's face twice before pushing both of them off the wall and back into the open door to the room. ",
"Reece registered a female voice screaming and saw a naked woman out of the corner of his eye, grasping desperately at sheets as she watched the death match taking place in front of her. ",
"Reece's kick off the wall propelled them both into the small bedside table, sending them crashing to the floor. ",
"His opponent was heavily muscled and outweighed Reece by a good twenty pounds. ",
"Landing on top of Reece, he wound up to deliver a crushing blow to the commando's face. ",
"Reece brought his head forward as the punch came down, connecting the man's fist to Reece's helmet.",
"\n\nIt's strange the things one notices in combat. ",
"Through the screams of the naked prostitute, the flickering of the lights, and the crushing weight of the gangbanger on top of him, Reece saw the bandage. ",
"It was not professionally done but Reece knew instantly what it was: the bandage of a gunshot wound. ",
"This was the man Lauren had wounded protecting their daughter. ",
"A rage like he had never known boiled up inside him. ",
"Locking the bigger man's right arm to his body and trapping his right leg with Reece's left leg, Reece executed a jiujitsu move called the uma-plata, sending his enemy over and onto the ground. ",
"In one fluid movement practiced many times in training, Reece pulled a sharp dagger from its position on his plate carrier and sank it into the throat of his wife's killer. ",
"The eyes in his shaved head opened wide as he continued to struggle. ",
"Reece pushed down harder, withdrew the blade, and reinserted it with a sawing motion across his opponent's throat until his squirming stopped and he lay dead in a growing pool of blood.",
"\n\nReece had no time for reflection. ",
"Bullets cascaded into the room from directly across the hall. ",
"AK fire. ",
"Reece knew the sound well. ",
"The rounds were being sprayed into the room without any real discipline, racking across the back wall and cutting across the upper body of the screaming prostitute, silencing her forever. ",
"Reece grabbed a frag grenade from a pouch on his belt, pulled the pin, and sent it careening into the adjacent room. ",
"Luckily, the construction was cinder block and could take a solid hit. ",
"When the grenade exploded, it sent debris flying into the hallway and into the room Reece now occupied. ",
"Taking advantage of the confusion from the blast, Reece flew across the hallway. ",
"There was no need for security rounds. ",
"One gangbanger and one woman lay dead, their bodies mangled from the violent blast, contorted into unearthly positions that signified death.",
"\n\nNine targeted individuals down. ",
"Three females upstairs alive. ",
"Two females dead on second floor.",
"\n\nNow on the opposite side of the hallway from the stairwell, Reece reached out and killed the lights that still flickered after the grenade blast. ",
"Adjusting his NODs, he did another tactical reload and scanned the hallway from a position of cover inside the room that the grenade had rendered clear.",
"\n\nOne door was still closed on this floor. ",
"Reece cleared the room that the man with the handgun appeared to have come from. ",
"A larger woman in a dirty shirt was crouched in the corner, knees tight to her chest. ",
"Her eyes were closed and she appeared to be praying. ",
"Reece let her be and moved to the closed door. ",
"Twisting the knob and throwing it open, he flattened himself against the hallway wall, half expecting a hail of bullets to burst through. ",
"Instead there was nothing. ",
"Reece slowly cleared around the door so he could see as much of the room as possible. ",
"Still nothing. ",
"He then made entry. ",
"Quickly sweeping the room and clearing all corners, he discovered it empty. ",
"One floor to go.",
"\n\nReaching the stairwell door, Reece took a breath. ",
"Time to finish the job. ",
"Pushing the door open, Reece cleared both up and down the stairway. ",
"He began to work his way down when the first floor came alive with the sounds of war. ",
"Reece positioned himself so he had a clear view and line of fire to the first-floor stairwell door. ",
"He could clearly discern AK fire and what sounded like M4s and shotgun blasts. ",
"He heard yelling and commotion in Spanish getting closer to the downstairs door. ",
"More shouting and more gunfire. ",
"Suddenly the door Reece was covering flew open and in stumbled what were clearly two hostiles. ",
"They started to charge up the stairs when Reece cut them to shreds, the door slowly closing behind them. ",
"Reece refocused on the door, saw it begin to open, and began to apply pressure to his trigger.",
"\n\n\"Reece! ",
"Reece! ",
"It's me,\" came Marco's voice up the stairs. ",
"Reece checked up as he saw his friend cautiously inch his face into view.",
"\n\n\"Okay, I see you, buddy!\" ",
"Reece called out. \"",
"You clear down there?\"",
"\n\n\"Sí, my friend!\" ",
"came the reply.",
"\n\n\"Coming down!\" ",
"Reece shouted back.",
"\n\nReece descended the stairs, weapon at the ready, all senses heightened and alert. ",
"He stepped over the two bodies at the bottom of the stairs as Marco opened the door for him. ",
"In the hallway were Marco and three of his security detail. ",
"Strewn on the floor were two more dead gangbangers and one dead woman. ",
"One of Marco's detail had another man on his knees, head against the wall.",
"\n\nReece turned to Marco. \"",
"Well, that didn't work out as quietly as I thought. ",
"How long until the police get here?\"",
"\n\n\"No policía esta noche, amigo.\" ",
"Marco sounded confident. \"",
"The night is ours. ",
"We saved this one for you,\" he said while motioning toward the man on his knees. \"",
"Do you want to ask him any questions?\"",
"\n\nReece looked at Marco and back to the prisoner, his eyes cold as ice.",
"\n\n\"No,\" Reece said as he walked toward their detainee, lowered his M4, and executed him on his knees. \"",
"Let's go.\"",
"\n\nMarco looked at his security detail, shrugged, and headed for the door.",
"\n\n## CHAPTER 48\n\nBird Rock, California\n\nTHE SUN WAS COMING UP over the San Diego skyline when Reece returned from his foray south of the border. ",
"He'd thanked Marco profusely for his generosity and loyalty and was told, \"It was nothing, amigo.\" ",
"The events of the past weeks had caused Reece to sit back and take stock of his friendships. ",
"What he'd learned about loyalty was surprising. ",
"Some friends had leaned in hard to help in his time of need, while others had backed away. ",
"Some would have thought that his fellow SEALs would have rallied around him, but with the exception of Ben Edwards, that hadn't been the case. ",
"Most of his closest friends in the Teams had been killed in the ambush; others were probably too scared of retribution from Pilsner. ",
"It was a disappointment, but still, Reece couldn't blame them. ",
"Old friends like Marco and Liz, as well as new friends like Katie, had been there for him in ways that he'd never forget. ",
"The truth was that most SEALs he knew just needed to stay focused on preparing for war. ",
"That was their job, and any distraction from it only hindered mission success. ",
"That was how it had to be.",
"\n\nFrom the outside looking in, one would think what Reece had done just a few hours earlier would cause thoughts of introspection, regret, and possibly even confusion. ",
"Movies and books often portrayed soldiers having a difficult time taking a life in combat and then struggling to deal with the psychological aftereffects of their actions.",
"\n\nTo Reece killing was one of the most natural things one could do; it was hardwired into his DNA. ",
"If he were to think about it, Reece would conclude that the only reason he was alive today was that, throughout history, people in his lineage had been good at fighting to defend the tribe and at providing sustenance for their families. ",
"Killing was not so much about taking a life, it was about sustaining life: the lives of your countrymen, your unit, your family, yourself. ",
"That Reece did it exceptionally well did not bother him. ",
"Killing was what he did better than anything else.",
"\n\nHe remembered being surprised by the feeling he experienced the first time he killed another man in combat. ",
"If one was to trust the experts, he should have felt instant remorse, regret, and confusion, even anger. ",
"It was as if society expected those who have taken lives in defense of their nation to immediately require counseling to assist them through their grief. ",
"Perhaps that convenient narrative allowed civilized society to better deal with their detachment from the realities of warfare, while sending young men to die in the mountains, jungles, deserts, and cities of foreign lands difficult to find on a map.",
"\n\nThe truth was less complex. ",
"The truth was primal.",
"\n\nReece felt no such remorse. ",
"The first time he killed and every time thereafter, he had felt a different emotion: relief. ",
"Relief might seem like an odd reaction, especially to the uninitiated. ",
"It was not relief in the sense that Reece discovered he could kill; he had never really worried about that. ",
"It was relief in the sense that his training, his skills, his instincts, his intellect, his dedication to understanding his enemy and the conflict in which they were engaged had not been found wanting. ",
"It was relief to be alive. ",
"Reece had a natural ability not just to fight but also to lead. ",
"Those two attributes had drawn his men to his side and built a trust not found elsewhere in polite society. ",
"It was what Reece was born to do.",
"\n\nHe didn't do it because he liked it. ",
"He did it because it was required to ensure the survival of his men, his country, and his family. ",
"It wasn't that Reece felt no emotion from his years in combat; he was far from a sociopath. ",
"In combat units, sociopaths got good people killed and were weeded out as soon as possible.",
"\n\nWhen the topic came up in preparation for war, Reece would share with his men a story of the most important shot he had taken in combat. ",
"He framed it as the most important shot he didn't take. ",
"In an exceptionally brutal firefight in the streets of Fallujah, with bullets flying past and enemy mortars coming in, Reece cleared a dusty street corner and brought his rifle up, putting a man dressed in the black garb of the enemy into the crosshairs of his ACOG. ",
"At that point, anyone in the streets of Fallujah was considered a viable target by the commander's interpretation of the rules of engagement, but something about this didn't look quite right. ",
"The man was on a bicycle, riding slowly away from the fight. ",
"Could he be attempting to flank or attack elements in the rear? ",
"Possibly, though something about the man's body language and the way he rode the bike suggested otherwise. ",
"Reece couldn't quite figure out what it was, but his gut instinct and his morality caused him to remove his finger from the trigger and watch the man until he rode out of sight. ",
"Reece had reached down, switched frequencies on his MBITR, and transmitted a description of the man and his direction of travel to support elements in the rear. ",
"As he was about to sprint across the street to continue the push to retake the city, a mortar exploded on the opposite corner, forcing him back against the building and showering him with debris and dust. ",
"Had Reece not paused and watched the man in black ride away from the fight, or had Reece killed him and moved on, he would have been standing exactly where the mortar had landed. ",
"The man on the bicycle, moving away from the battle, had probably saved Reece's life. ",
"Combat was also about discretion, and he never regretted not taking that shot. ",
"Sometimes the most important shots in battle are the ones not taken.",
"\n\nReece understood that killing was necessary; it was his duty; it was his calling; and he wasn't about to stand back and let someone else go into the fray when his country was at war and he was of able mind and body. ",
"This is what Reece did. ",
"He would have liked nothing more than for future generations to never experience war. ",
"He also knew that if history was any indication, war was something to always prepare for.",
"\n\nReece stripped off his blood- and sweat-soaked cammies, dropping them onto the floor of the condo's garage. ",
"He broke down his M4 for cleaning, the insides caked with carbon blowback from using the suppressor. ",
"As per his post-op ritual, he replaced the batteries in his NODs, ATPIAL laser, and flashlight. ",
"His helmet along with his rifle went to the bedroom with him. ",
"Be prepared, Reece. ",
"He leaned the carbine against the nightstand and picked up his phone for a Signal and SpiderOak check. ",
"With no activity on either account, he shut it down before showering off the blood, dirt, and grime of the past few hours, until finally pulling the sheets over his head to grab a few hours of much-needed rest.",
"\n\n• • •\n\nBANG BANG BANG! ",
"Reece rolled out of bed and grabbed his M4, training the suppressed muzzle on the bedroom door. ",
"He heard a muffled voice that sounded like it was coming from the top of the steps outside. \"",
"It's me, bro! ",
"Let me in!\" ",
"BANG BANG BANG. ",
"Reece lowered the muzzle and shook his head. ",
"Fucking Ben. ",
"Holding the M4 loosely at his side by the pistol grip, he walked out of the bedroom wearing a T-shirt and boxers to let his friend in through the front door.",
"\n\n\"Viva Mexico! ",
"I brought you some tacos. ",
"Wasn't sure if you had time to stop and eat while you were down there.\" ",
"Ben was as chipper as ever. ",
"He looked Reece up and down and winced. \"",
"Do you just hang out all day in your drawers now, bro?\"",
"\n\n\"Just trying to get some sleep,\" Reece answered wearily.",
"\n\n\"Still haven't shaved? ",
"You're not going hipster on me, are you? ",
"Though, it does nicely complement those undies. ",
"Do you think you're going back to Afghanistan or something?\"",
"\n\n\"Or something,\" Reece muttered, still waking up.",
"\n\n\"Dude, you have the three-letter agencies going crazy,\" Ben continued, throwing a fat dip of Copenhagen into his mouth. \"",
"Your little excursion to Margaritaville has the DEA and my people all excited. ",
"They have no idea what the story is. ",
"The DEA thinks the Sinaloa Cartel is making a big move on New Generation, and the CIA is convinced that the Zetas made the hit and are trying to push their way into Baja. ",
"They definitely don't know it was some gringo from San Diego who hangs around in his underwear all day.\"",
"\n\n\"It was good, Ben. ",
"I got the guys that . . . ",
"I got the men that killed Lauren and Lucy.\" ",
"Reece struggled. \"",
"And, I found out some other stuff that's gonna blow your mind.\" ",
"Reece took a bite of his taco and waited until he'd swallowed to finish his thought. \"",
"This whole thing was some kind of shady clinical trial. ",
"Capstone Capital is promising those involved billions and they've sold their souls for cash.\"",
"\n\n\"Are you sure?\" ",
"Ben asked.",
"\n\n\"Absolutely. ",
"This shit goes really high up the food chain. ",
"Even Pilsner was involved. ",
"He's the one who put the drug into my troop and ultimately the one who sold us out overseas. ",
"They have new trials under way right now with a new group of SEALs. ",
"I just can't figure out the mechanics of how they got us ambushed in Afghanistan.\"",
"\n\n\"I can,\" Ben replied with uncharacteristic seriousness. \"",
"We watch a lot of the big Islamic groups in the States for obvious reasons, big mosques, charity groups, that sort of thing. ",
"We're not supposed to work on U.S. soil, but we do it interagency style so it's all 'legal.' ",
"Of course, lots of innocent people come and go in those communities, but every once in a while there's something that doesn't fit. ",
"A few months ago, I saw some traffic on a Navy O-6 making regular visits to an Islamic charity group in San Diego. ",
"It's one thing to have some enlisted guy decide he's going to follow Allah, but a high-level officer to start meeting with questionable Muslim groups is out of the ordinary. ",
"You want to know who the O-6 was?\"",
"\n\n\"You know I do.\"",
"\n\n\"Captain Leonard Howard, the admiral's JAG.\"",
"\n\n\"Fuck me.\"",
"\n\n\"No, fuck him, bro. ",
"His visits with the imam stopped just before you guys got ambushed overseas. ",
"They haven't met together since.\"",
"\n\nReece had another name to add to his list.",
"\n\n• • •\n\n\"This thing looks like a target package,\" Reece stated, taking the thick file from Ben and beginning to leaf through it.",
"\n\n\"That's because it is, bro. ",
"Everything you need is in there. ",
"The imam that Howard met with is Hammadi Izmail Masood. ",
"He lives in the mosque. ",
"It is more of a mini-compound really, though surprisingly open. ",
"You would think they would be a bit more security conscious. ",
"They call it the Islamic Center for Peace and Prosperity of Southern California. ",
"The mosque should clear out Wednesday after Ishu. ",
"Do you know what that is?\"",
"\n\n\"Yeah, evening prayer. ",
"When does it go down this time of year?\"",
"\n\n\"Nine thirty. ",
"It will be fairly packed but will empty out quickly. ",
"I've already set you up with an alias and a backstory. ",
"You even have an appointment with Masood after prayer, so you have two days to get ready.\"",
"\n\nReece eyed Ben quizzically. \"",
"That's not really my style.\"",
"\n\n\"Trust me. ",
"This will work. ",
"This is what I do now, remember?\"",
"\n\n\"What? ",
"Set up assassinations of Islamic clergy on U.S. soil?\"",
"\n\n\"Reece, we missed this one. ",
"We had this guy in our sights for over a year and we missed it. ",
"If we hadn't, maybe your troop would still be alive. ",
"Your government let you down. ",
"We knew this guy was as bad as they come. ",
"Outwardly he condemns terrorism and is the face of moderate Islam in Southern California, posting videos on YouTube disparaging Islamic extremists and calling for an end to violence. ",
"In reality, his group is a conduit for funneling money to ISIS. ",
"I'm talking millions of dollars. ",
"While he preaches peace, his money helps ISIS behead Americans on camera for the world to see.\"",
"\n\n\"I thought ISIS was focused on Iraq, Syria, and the Levant? ",
"Why would Howard go through an ISIS guy to set up an attack in Afghanistan?\"",
"\n\n\"Don't be fooled, bro. ",
"Al-Qaeda and ISIS are not as far apart ideologically as it would seem. ",
"It's all about the caliphate, man. ",
"Twelfth-century shit. ",
"ISIS used to be AQ in Iraq, remember?\"",
"\n\n\"Oh, I remember,\" Reece said, thinking of the blood and energy he and his men had invested in hunting them down over the years, \"but I thought they had a very public split not long ago.\"",
"\n\n\"Well, they did. ",
"ISIS is the new kid on the block. ",
"Very popular, and far surpassing AQ in fundraising. ",
"That, along with their vicious attacks on Shia and even moderate Sunnis, have run counter to more recent AQ proclamations of Islamic unity. ",
"They appeal to the next generation of jihadi and are much more adept at recruiting, specifically using social media, than AQ ever was. ",
"AQ's message was to join up because Islamic lands are under attack by the West. ",
"ISIS flipped it around. ",
"Their messaging is all about being on the offensive. ",
"Very powerful stuff and something we haven't even begun to counter.\"",
"\n\n\"That doesn't answer the question as to why Howard and Pilsner used them instead of AQ or Taliban.\"",
"\n\n\"That question is exactly why they went the ISIS route: to throw people off the track. ",
"Logically it would make sense to use an AQ- or Taliban-affiliated network, but if you want to throw up a roadblock, use ISIS.\"",
"\n\n\"Unbelievable,\" Reece said, shaking his head.",
"\n\n\"Recently, ISIS and AQ leadership have recognized the power of collaboration. ",
"They can be a much more effective force if their energies are focused on destroying us instead of each other. ",
"Pilsner and Howard have access to the same intelligence channels that I do and they would have known the same thing. ",
"ISIS and AQ can channel resources and kill us today, then work out their differences tomorrow.\"",
"\n\n\"So, the government wants Masood dead, and you figured I am a good guy to get it done?\"",
"\n\n\"Not exactly, brother, though he does need to die. ",
"This guy has funded more terrorism than the Blind Sheikh ever could have hoped to back in the day, yet he promotes himself as a moderate Muslim, denouncing all violence and terrorism. ",
"He was the connection to the Pakistani Taliban who planned and executed the ambush of your troop in Afghanistan. ",
"I know you are going to take him down. ",
"Least I can do is help. ",
"My superiors don't know anything about this. ",
"It's totally off the books.\"",
"\n\n\"So how does the alias and backstory work?\" ",
"Reece asked, back on task.",
"\n\n\"You are a graduate student at USD in international business and have an elective world comparative religion class. ",
"You want to interview Masood for a paper you are writing on world religions and politics. ",
"Part of the mandate for their Islamic center is outreach, so this is not an odd request. ",
"They are very open and inviting. ",
"I have Masood's cell and center business phone numbers under surveillance. ",
"If he calls to check out your creds at USD, I divert the call and confirm your enrollment in graduate school.\" ",
"Ben smiled, obviously quite proud of himself.",
"\n\n\"And, do me a favor,\" Ben continued, handing Reece a small package, \"leave this with the fucker when you kill him. ",
"Wish I could go with you on this one, buddy. ",
"Hypocrites drive me crazy.\"",
"\n\n• • •\n\nReece had checked and double-checked his gear for the next phase of his mission of vengeance. ",
"All there was to do now was wait, but there was somewhere that he needed to go first.",
"\n\nHe steered his Cruiser through a quiet neighborhood and parked at a small church, continuing on foot. ",
"The streets were deserted at this late hour; anyone attempting to follow him in a vehicle would be easy to spot. ",
"Still, he took an indirect route, winding his way through a maze of residential streets, the silence broken only by the occasional barking dog. ",
"His path took him down an alley where he stopped and pretended to tie his shoe. ",
"Satisfied that no one was behind him, he cut between two homes and paused at the base of a large eucalyptus tree. ",
"Grabbing on to the lowest branch, he scrambled up the trunk and straddled a massive fork. ",
"Taking off his pack, Reece removed his bump helmet with its attached NODs, securing them to his head. ",
"The dark suburban scene was suddenly bright green through his goggles, thanks to the amplified illumination of the half-moon and stars. ",
"He scooted out on the branch until his feet dangled over a wooden privacy fence. ",
"Taking advantage of his night vision and his elevated perch, Reece carefully scanned the area for any sign of movement. ",
"Seeing nothing out of place, he swung his leg over the limb and dropped into the soft grass of his backyard. ",
"Drawing the Glock from his waistband, Reece moved to a knee and took in the scene silently for a full two minutes.",
"\n\nThe house was dark and appeared from the outside to be undisturbed since he'd last left it. ",
"He walked across the yard and peered over the side gate toward the front of the house, where he saw Lauren's Cherokee in the driveway and the police tape still strung around the massive eucalyptus that had been the centerpiece of his lawn. ",
"The base of the tree had been converted into a makeshift shrine by the neighbors, with cards, handwritten notes, candles, and stuffed animals covering a significant portion of the front yard.",
"\n\nReece holstered his Glock and activated the IR illumination on the side of his helmet before retrieving a Strider SMF folding knife from his pants pocket. ",
"Seeing no sign of a booby trap, Reece slipped the knife's blade between the upper and lower panes to the window of his small guest room, disengaging the lock. ",
"Here goes nothing. ",
"Reece slid the lower pane upward; the window opened easily: nothing exploded. ",
"Reece exhaled in relief. ",
"He took off his pack and lowered it through the window. ",
"Twenty years of training and more than a decade of urban combat had taught Reece that there is no graceful way for a grown man to climb through a window. ",
"He boosted himself up and rolled forward through the opening. ",
"The Glock came out and Reece slowly and painstakingly cleared his home, room by room and closet by closet.",
"\n\nMoving into Lucy's room, Reece removed his helmet and sat on the tiny bed, surrounded by relics of her short time on earth. ",
"As his eyes adjusted to the darkness, he took in the sights and smells of his little girl's sanctuary. ",
"Her room was perfectly intact, as if some invisible force had protected it from the hundreds of indiscriminately fired rounds that shredded the rest of their home. ",
"As he sat there among his daughter's belongings, it was as if nothing bad had ever happened.",
"\n\nA tiny ceramic impression of her newborn footprint sat on a shelf next to a framed photograph of their young family taken at her christening. ",
"He stood smiling in his only suit, holding Lucy in her heirloom gown. ",
"A beaming Lauren stood by his side in a black dress that complemented her fit frame, her arm around Reece's back. ",
"Damn, she looked beautiful.",
"\n\nThe photo brought him back to those two weeks of leave following a past deployment when he was able to spend nearly every day with the two loves of his life. ",
"Looking back on it now, it was the happiest time of his life. ",
"Reece knew that he would never feel such happiness, pride, or contentment again.",
"\n\nOn Lucy's bed was a camouflage Team Seven blanket with her name, date of birth, and weight embroidered on it in pink—a gift from his troop. ",
"He ran his hand across the smooth fabric, feeling the threads where her name was written just like he was touching the blond curls on her head. ",
"He sat there for hours, taking in the sights and smells of his past in silent meditation. ",
"He didn't let outside thoughts invade his tranquility; this was time with his family.",
"\n\n• • •\n\nReece made a few stops at various stores in San Diego the next day: a tuxedo shop, two electronics stores, a fabric retailer, and a hardware store. ",
"He paid cash for everything, just to slow down any investigations that could be under way. ",
"He purchased a white tuxedo vest, a yard of white nylon fabric, heavyweight thread, a box of three-inch framing nails, insulated copper wire, a small wired lightbulb, a silicone-controlled rectifier, a safe arm switch, a nine-volt battery, and three prepaid cell phones.",
"\n\nReece laid out the items from his shopping trip on the kitchen table of the safe house alongside Lauren's sewing machine, which he'd dug out of Lucy's closet after his vigil in her room. ",
"The Bernina machine had been a gift from his mother. ",
"Lauren, God love her, was not one for sewing and he was sure that she'd never so much as plugged it in. ",
"He laid the white tuxedo vest on the table facedown next to two M112 1.25 pound blocks of C-4 plastic explosive. ",
"Using a fixed blade, Reece cut the wrapping from the two explosive blocks to expose the claylike contents. ",
"The two blocks were combined into a single mass, which Reece rolled flat using a rolling pin. ",
"C-4 is an extremely stable explosive that would need a lot more than a rolling pin to set it off. ",
"Even so, modifying military explosives was technically a violation of more than a few regulations, and having seen the mangled bodies of insurgents whose homemade concoctions went off ahead of schedule, Reece took his time. ",
"Pushing those thoughts aside, he continued to shape the mass until he was satisfied with its size and thickness.",
"\n\nThe nails came in strips of twenty-five, designed to feed into a carpenter's nail gun. ",
"Reece placed the nail strips on top of the explosive and pressed them into the surface until the entire face was covered with steel. ",
"He then moved the explosive sheet onto the vest and covered it with the white nylon fabric. ",
"Using scissors, he cut the material until it covered the deadly mix and pinned it in place. ",
"This was going to be the hard part; Reece hadn't used a sewing machine since ninth-grade home economics class and he wasn't exactly a master at it then.",
"\n\nNearly every military unit had men who were gifted at sewing. ",
"Before the war created an entire industry of custom tactical nylon-focused gear companies, SEAL parachute riggers trained in sewing to repair parachutes would make side money customizing nylon gear for their teammates. ",
"Unfortunately, Reece had never spent much time in the riggers' loft learning that particular skill. ",
"The good news was that it didn't have to be pretty; it just had to hold everything together. ",
"After watching several YouTube videos on the basics of sewing, he fed the vest fabric into the machine.",
"\n\nReece was confident that his future career would not be as a tailor but he got the job done. ",
"Leaving a small opening on the bottom right-hand corner of the nylon, he tied off the heavy thread to secure the stitches. ",
"He held the vest upright to test his work and, to his relief, everything stayed in place. ",
"Next Reece removed two of the three prepaid phones from their boxes and plugged both into their wall chargers. ",
"He used each phone to call the other to ensure that they functioned, that the numbers were correct, and that any cell phone carrier welcome texts or remote updates had all come through. ",
"He had seen even experienced terrorist bomb makers forget to do this and end up splattered across a wall when an unexpected text completed the circuit. ",
"Using a white paint marker, Reece drew a large X on one phone and wrote that phone's number on the back of the other. ",
"He also entered the phone number as a contact on the second prepaid model.",
"\n\nThis is where things could get tricky. ",
"Reece wished he had an EOD tech to help him, but luckily, information that would have been tightly controlled when he first entered the Teams was now freely available to the world on the Internet. ",
"He pried the back from the phone marked with an X and poked around until he could determine which wire did what. ",
"He identified those leading to the vibration mechanism and clipped them free of their attachment, twisting the wires from the lightbulb onto the vibrator wires and dialing the number that he'd placed into the other phone's contact list. ",
"The phone on the table began to ring, illuminating the bulb. ",
"Satisfied that sufficient electrical current was flowing from the detached wires, Reece added the safe arm switch, which controlled the flow of electricity from the phone to the more deadly end of the device, and tested it in the on and off positions to ensure it would break the circuit to the cap. ",
"He then wired in the silicone-controlled rectifier designed to hold back the energy until hit with a trickle of electricity that would allow the full charge into the cap.",
"\n\nIt was always hard for Reece to believe how these basic devices could cause such widespread terror and destruction, how a few hours of shopping could result in a mechanism for war. ",
"He disconnected the light and removed the battery from the phone, just to be safe. ",
"He then carefully removed a blasting cap from its plastic case and twisted its two wires onto those from the phone and nine-volt, wrapping the connected wires in electrical tape and slipping the device into the vest pocket. ",
"He pushed the blasting cap through the hole he'd left in the nylon fabric and buried it into the C-4 inside. ",
"He double-checked everything to ensure that he hadn't made any errors, then hid the vest under the bed in the second bedroom. ",
"He would use the phone plugged into the wall to charge both batteries and would place a battery into the vest phone just before it was ready for use. ",
"It would only get called once.",
"\n\n## CHAPTER 49\n\nSan Diego, California\n\nWEDNESDAY CAME QUICKLY, though Reece did have a chance to rest, regroup, and reflect on his personal jihad. ",
"He did not question the righteousness of his cause. ",
"His only prayer was that he get to the end of his list before the authorities or the tumor took his life. ",
"Prioritize and execute.",
"\n\nReece hoped he looked the part. ",
"What did a master's business student taking an elective in comparative religion look like, anyway? ",
"Reece had spent a year at the Naval Postgraduate School studying defense analysis with an emphasis on combating terrorism and asymmetrical warfare. ",
"He remembered his professors wearing a lot of tweed coats, so he picked one up, along with some nonprescription horned-rimmed glasses. ",
"A leather cross-body satchel completed the look.",
"\n\nReece tried to put on his least menacing expression before exiting his Land Cruiser and heading toward the mosque, passing an auto body shop and an abandoned warehouse as he walked. ",
"It wasn't the best part of town but it wasn't the worst, just a neglected neighborhood that you would move out of as soon as you had the chance. ",
"Reece felt naked leaving his pistol in the car but he didn't know if he would be frisked before meeting Masood or if he would have to walk through a metal detector. ",
"If it had been a legitimately sanctioned mission he would have forwarded those questions to his intelligence department in the form of an RFI, or request for information, but not having his accustomed support network, he was on his own to improvise.",
"\n\nThe satchel held the instrument of Masood's impending death. ",
"Reece just hoped he could get in front of the imam alone. ",
"The target package had stressed that in order to maintain credibility and cover for action, the mosque was a legitimate force for good, performing religious services in accordance with moderate Islamic doctrine: officiating marriages, offering family counseling services, and helping San Diego's downtrodden. ",
"That their masjid's moderate outward stance was really a front for ISIS would have surprised more than a few of the faithful. ",
"Reece wondered what those Muslims who willingly gave money to Masood in accordance with the Third Pillar of Islam would do if they knew it was going to further the radical militant branch of their religion in the guise of charity.",
"\n\nApproaching the mosque along an avenue with more than a few burnt-out streetlights, Reece found himself walking down a different street in a different war: the streets of Baghdad's Al-Jihad neighborhood, in the Al-Rashid District, 2006. ",
"After the Al-Askari Mosque bombing in February, the country had descended into anarchy. ",
"Sunni-on-Shia violence escalated to the point of civil war, with bodies stacking up in the streets by the thousands, making an already tumultuous situation even more chaotic.",
"\n\nReece had been assigned to a CIA covert action program at the height of the insurgency: a small group of American advisors running a top tier Iraqi special operations force. ",
"Even though Iraq was technically a sovereign country and the unit was Iraqi, and totally off the books as far as the United States was officially concerned, they still had to get permission from both senior U.S. military leaders and CIA officials to enter mosques because of the political constraints of having U.S. personnel assigned in an \"advisory\" role.",
"\n\nIn the midst of that carnage, Reece's team had tracked a high-value individual to a mosque in the early morning hours, and had him fixed with human assets on the ground and technical surveillance in the air. ",
"Mosques were routinely used by the enemy as places of sanctuary, where they could plan and hide with impunity. ",
"Even though the Law of Armed Conflict clearly stated that a religious site would lose its immunity if it were used for a military purpose, U.S. senior military and political leaders were so scared of the fallout from hitting a religious site that they in effect allowed the enemy to plan attacks against U.S. forces from them without fear of reprisal. ",
"The insurgents knew it and took full advantage.",
"\n\nReece had used the gray area in which his unit operated to skirt that technicality and had thrown the enemy off base with a highly successful campaign focused on targeting the insurgents where they felt safe and secure. ",
"The CIA side of the house, along with their attorneys, were in full support, but when the senior Army general in Iraq found out about the program he had his chief of staff read Reece the riot act. ",
"He demanded Reece call him for approval if they needed to hit someone using a mosque as refuge, which is how Reece and his team ended up waiting for more than an hour as the general took his time deciding if he should grant permission for Reece's predominately Iraqi unit to enter the entirely Iraqi mosque. ",
"That delay provided enough time for enemy elements in the Al-Jihad neighborhood to surreptitiously surround Reece's small force.",
"\n\nUnfortunately for the enemy, Reece had quietly moved snipers into overwatch, had multiple aircraft circling and a QRF of Bradley Fighting Vehicles staged four blocks away. ",
"What could have been a surgical spec ops direct-action capture/kill mission turned into a forty-minute gun battle. ",
"Miraculously, Reece's force emerged relatively unscathed. ",
"Perhaps that is where Reece's distrust of senior officers began.",
"\n\nTonight's crusade was personal and had nothing to do with sensitivity toward Islam or the Law of Armed Conflict. ",
"Tonight was different. ",
"Reece was under no constraints. ",
"He was unhindered by rules, regulations, laws, or societal norms. ",
"He was on the warpath, and his appetite for revenge was insatiable. ",
"Hammadi Izmail Masood had facilitated the worst loss of life in U.S. special operations history, and tonight he was going to pay.",
"\n\n## CHAPTER 50\n\nREECE PASSED A VACANT LOT filled with weeds and approached the small domed building from the sidewalk, joining two other worshippers headed inside for evening prayer. ",
"He attempted to slouch his shoulders a bit in an effort to look less threatening as he passed a wrought-iron gate and walked up the entrance steps.",
"\n\nA young Middle Eastern–looking man occupied an office just inside the building to the right with a sign in English reading: \"Welcome. ",
"Front Office.\"",
"\n\n\"Ah, excuse me?\" ",
"Reece said.",
"\n\n\"Yes,\" he responded cordially, rising from his desk and approaching Reece.",
"\n\n\"As-salāmu 'alaykum,\" he said, using the traditional Arabic \"peace be upon you\" greeting, which Reece had heard many times the world over.",
"\n\n\"Wa 'alaykumu s-salām,\" Reece responded, shaking hands and then touching his right hand to his heart. \"",
"I'm Draper Kauffman from USD. ",
"I have an appointment with Imam Masood after evening prayer. ",
"I was invited to observe tonight as well but don't know exactly what to do,\" he continued with a warm smile.",
"\n\n\"Ah yes, you are the master's student from USD. ",
"It is our pleasure to host you tonight. ",
"The prayer room for men is downstairs. ",
"We have another for women upstairs. ",
"Please remove your shoes. ",
"You may observe from the back of the room and then afterward Imam Masood will talk with you about the virtues of Islam and the noble work of the center as well as answer any other questions you may have.\"",
"\n\n\"I hate to impose. ",
"Thank you so much for having me. ",
"This comparative religion class is part of my international business program, but I am really excited about it.\"",
"\n\n\"We do this all the time, so it is no imposition. ",
"In fact, community outreach is one of the guiding principles of the center.\"",
"\n\nReece descended the narrow staircase. ",
"Donations certainly had not been used to update the facility. ",
"Reece guessed that the humble surroundings were what drew many of the patrons to this particular Islamic center.",
"\n\nThere were only about a dozen people preparing for evening prayer when Reece entered the room. ",
"They were performing the ritual ablution at a large round sink, washing in accordance with traditional Islamic practice. ",
"Reece skipped the washing and took his place in the observation area behind the congregates. ",
"All were men in conservative dress. ",
"A few more than half looked to be of Middle Eastern ancestry, with the remainder a mix of African Americans and Caucasians.",
"\n\nThe room was exceptionally clean and sparse, which allowed those gathered to clear their minds and arrange their prayer mats facing East toward Mecca. ",
"Reece recognized Masood immediately from the target package photos and YouTube videos he had studied in preparation for this evening's mission. ",
"Masood took his place as imam at the front of the assembly and began the salat in Arabic. ",
"Reece's Arabic language skills were terrible, but he knew enough to recognize a few words and phrases. ",
"Masood began with \"allahu akbar,\" reciting the traditional opening and then transitioning the service through the different phases of prayer: standing, bowing, prostrating, and sitting. ",
"Reece knew this ceremony was the formal way of subjecting oneself to, and remembering, Allah. ",
"There was a certain beauty to the service, a focus and devotion that Reece couldn't help but admire.",
"\n\nThere was no doubt that there was a crisis in Islam, and it was playing out on the world stage in a spectacle of violence. ",
"Reece had experience with Muslims running the gamut from those who were Muslim in name only, to those who adhered to the pillars and tenets of Islam as best they could—similar to Christians who went to church on Christmas and Easter—right down the line to those Muslims who had been indoctrinated by an archaic ideology of hate that pursued a political agenda and would stop at nothing short of seeing all nonbelievers put to the sword. ",
"Those were the ones who could only be stopped with a bullet to the head, and at accomplishing that, Reece was exceptionally good.",
"\n\nMasood finished with the taslim, \"Assalamu alaikum wa rahmatullah,\" before quietly making his way to the back to greet Reece.",
"\n\n\"Mr. Kauffman,\" he said, in a heavily British-influenced Pakistani accent, \"welcome to the center. ",
"Thank you for coming.\"",
"\n\n\"Thank you for having me. ",
"The salat was beautiful. ",
"I have always respected the value and ritual of daily prayer. ",
"It would be a better world if more people took the time to give thanks and remembrance as you do.\"",
"\n\n\"Thank you. ",
"That is why we are here. ",
"To give believers a safe place in which to practice the facets of Islam and raise awareness about the pillars of our faith. ",
"Please join me in my office, where we can have tea and continue our discussion.\"",
"\n\nReece followed Masood back up the stairs and down a short hallway to his small office, stopping at the front of the mosque to say good night to the man who had greeted Reece upon his arrival and was just getting ready to depart. ",
"Masood moved with a fluid grace that belied his fifty-five years of age. ",
"His hair was black and cut short, which contrasted with the gray of his close-cropped beard. ",
"He wore earth-tone slacks and a long-sleeved button-up shirt without a collar instead of the more traditional thawb, probably in the spirit of Southern California inclusiveness.",
"\n\n\"Please take a seat,\" Masood said, gesturing to one of two modest chairs in front of his desk as he set an old teapot on a single-burner electric hot plate on a small table positioned against the wall: an improvised tea-making station. ",
"Reece wondered how it hadn't burned the place to the ground yet. ",
"The room seemed to Reece what he presumed the office of a professor at an underfunded community college would look like. ",
"There were stacks of papers on the desk and a small bookshelf behind it, adorned with what appeared to be numerous religious texts. ",
"The walls were bare save for one framed work of Islamic calligraphy.",
"\n\nMasood noticed Reece looking at the painting.",
"\n\n\"Beautiful, isn't it? ",
"It's a rendition of a Mir-Ali Heravi Tabrizi. ",
"Brilliant calligrapher from the fifteenth century. ",
"It is a reminder that the Islamic Golden Age was really not that long ago.\"",
"\n\n\"I thought the Golden Age ended earlier than that,\" offered Reece.",
"\n\n\"Some scholars would suggest that, but the evidence proves it lasted up through the sixteenth century. ",
"This is to remind me of how far we have fallen and how much work there is to be done. ",
"Call it . . . ",
"inspiration.\" ",
"He smiled. \"",
"The Holy Qu'ran states that 'God does not change the condition of a people until they change what is in their hearts.' ",
"My calling is to help change what is in their hearts. ",
"Now, how can I assist you this evening?\"",
"\n\n\"Well, first of all, thank you for taking the time. ",
"I'm in a fairly ambitious international business program at USD, and one of my electives is comparative religion. ",
"It's a team project and my part is to interview a well-respected Muslim leader about the current state of Islam in the world today.\"",
"\n\n\"Well, that certainly is a topic I spend a lot of my time researching and speaking about at the center and as a guest speaker around the country. ",
"As you probably know, Islam is the second-largest religion in the world as well as the fastest growing.\"",
"\n\n\"Why do you think that is?\" ",
"Reece inquired.",
"\n\n\"Islam is a way of life. ",
"It is about subjugating oneself to Allah and following the Pillars of Islam. ",
"It offers a code to live by that is appealing to a mounting number of adherents. ",
"It will be our Golden Age once again, but this time through inclusiveness.\"",
"\n\n\"What do you say to those who point to the draconian measures some Islamic countries take to control their populations and force adherence to sharia law, like throwing homosexuals from buildings to their deaths, flogging young girls who want to go to school, and beheading nonbelievers?\"",
"\n\n\"The role of the center is not to compel nonbelievers to join Islam. ",
"The Prophet Muhammad, peace be upon him, says that 'there is no compulsion in religion' and we certainly do not believe in subordinating U.S. law to sharia law. ",
"Those who practice the abhorrent punishments you mention do nothing but hurt the cause and turn world sentiment against those of us who espouse the true tenets of Islam. ",
"We are a religion of peace that some have hijacked for their own self-serving, destructive means. ",
"In fact, I use Friday prayer to call for peace and unity. ",
"I have been condemned by some, but if we are going to live together in harmony we must learn to accept each other's differences. ",
"The United States is the perfect place to show the world how both Muslims and non-Muslims can work and live together in peace.\"",
"\n\nThis guy was polished. ",
"He had the air and presence of an academic, with the charisma of an elder statesman.",
"\n\n\"Why do you think the intolerant brand of Islam is currently flourishing in the Muslim world?\" ",
"asked Reece, trying his best to sound like a grad student.",
"\n\n\"It saddens me deeply to have to agree with you, Mr. Kauffman. ",
"Corrupt politics and sluggish economic conditions plague much of the Muslim world. ",
"Radical Islam does not represent the vast, vast majority of Muslims worldwide, and almost all of those killed in Islamic terrorist attacks are in fact Muslim,\" he said, shaking his head. \"",
"The answers, though, also lie within the religion. ",
"Islam was once a force for good throughout the world and can be again. ",
"Education is the key, Mr. Kauffman. ",
"Education is the key.\"",
"\n\n\"Sir, do you mind if I use my computer to take notes?\" ",
"asked Reece.",
"\n\n\"Not at all. ",
"Be my guest.\"",
"\n\n\"How are statements about peace, unity, and responsibility like those you just made interpreted in the Islamic community at large? ",
"Do you worry about your safety?\" ",
"Reece continued as he reached into his satchel, removing an old laptop computer.",
"\n\nInstead of recycling old computers or selling them, Reece and Lauren had just stacked them in a closet in the name of data security. ",
"This particular one was state-of-the-art back in 1998. ",
"He had taken it from his home during the previous night's visit. ",
"It was quite a bit larger than today's ubiquitous MacBook Air, and with the keyboard, internal components, and touchpad removed it fit Reece's Winkler/Sayoc Tomahawk perfectly.",
"\n\n\"Statements of inclusiveness and tolerance are not always received favorably by those with differing agendas, nor is criticism of Islam, as you are no doubt aware. ",
"It pains me to say that other imams have even issued fatwas against me, but those who have done so do not have the legal authority necessary for them to be legitimate, nor do they truly understand the history and intent of a true fatwa. ",
"So I feel as safe as one can in these times of trouble.\"",
"\n\nReece studied the older man's face. ",
"Everything he was saying squared with Reece's studies and firsthand experience in the Muslim world. ",
"How could he talk with Reece with such authority and logic about the state of Islam and then facilitate the same terror he was condemning with such conviction? ",
"How can this guy be such a good liar? ",
"He should run for political office.",
"\n\n\"Hammadi,\" Reece said, intentionally switching to the imam's first name and wrapping his hand around his tomahawk's maple-wood shaft, hidden by the open laptop screen, \"do you know Captain Leonard Howard?\"",
"\n\nMasood paused, successfully hiding his surprise. \"",
"No, that name is not familiar.\"",
"\n\n\"Oh, you may have forgotten. ",
"He's the Navy attorney that contacted you to arrange the ambush of my SEAL troop in Afghanistan by your friends in the Pakistani Taliban. ",
"How much did it cost to have my men killed?\"",
"\n\nThis time Masood did not try to feign ignorance or redirect. ",
"Instead he paused and took a deep breath, his eyes narrowing.",
"\n\n\"Ah, James Reece. ",
"I did not recognize you. ",
"You look different from your picture in the paper from your wife's and daughter's funeral. ",
"The beard suits you well, and the glasses are a nice touch. ",
"Too bad your family were kafir and are now in the fires of hell.\" ",
"He spat out kafir like it was the most vile word in existence.",
"\n\nReece slowly closed the lid to the laptop and placed his 'hawk on top.",
"\n\nMasood's eyes looked questioningly, almost unbelievably, at the ancient weapon in Reece's hand and then back to meet Reece's icy stare.",
"\n\n\"You should be happy, Masood. ",
"Dying like this makes you a martyr. ",
"Now, that may or may not be true, and it really doesn't matter to me in the least. ",
"What matters to me is that you die, just like the true believers you send out to sacrifice themselves for the cause. ",
"Tonight it's your turn.\"",
"\n\nAs Reece stood to deliver his justice, Masood lunged for his desk drawer with surprising speed, bringing out a small CZ 75 Compact 9mm pistol. ",
"If he had kept it with a round in the chamber he might have had a chance, but the time it took to reach the slide and chamber a round was more than enough time for Reece's swing to connect with his quarry's hand in its attempt to bring the weapon to bear. ",
"With the heaviest part of the tomahawk resting in its head, it hit the inside of Masood's right wrist with its full force, destroying bones, muscles, and tendons, while severing arteries and veins and sending the CZ pistol clattering to the floor.",
"\n\nMasood screamed out in pain, grabbing at his right hand, which only remained attached by a thin shred of muscle and skin, smothered in the slippery ooze of its altered state.",
"\n\nReece moved with the precision of a man who was no stranger to violence, unfazed by the coppery scent of fresh blood in the air or the primal screams of the man he had come to kill.",
"\n\nIt was then that the headache dropped Reece to the ground.",
"\n\n• • •\n\nThe blinding pain was like a thousand shards of crushed glass grinding together inside his brain. ",
"This one lasted longer than his previous episodes but not long enough for Masood to reach his CZ.",
"\n\nIt had taken the imam a few seconds to realize that this was his opportunity to escape or go for his pistol. ",
"He chose the latter and was two steps into his dash for the gun when Reece's tomahawk buried itself in the back of his upper thigh, sending him crashing to the floor.",
"\n\nComing out of his incapacitation, Reece grabbed a handful of Masood's loose clothing to twist himself upward and swing the 'hawk down in a powerful arch, terminating in his prey's upper back, just shy of his spine. ",
"Using the embedded hawk as a fulcrum, Reece pulled himself into a kneeling position over the broken body beneath him.",
"\n\nReece had to give his adversary credit. ",
"Even with one severed hand, a thigh cut to the bone squirting blood profusely, and a tomahawk embedded in his back, he made one last effort to reach for his weapon with his good hand. ",
"Rotating the tomahawk to the side, Reece disengaged it from Masood's back and used it to keep him from his pistol by slamming it down like an angry hammer, cutting off four of Masood's five fingers, which stretched out to claw for the gun. ",
"Another bloodcurdling scream escaped Masood's lips and was cut short by one last swing of the 'hawk, the tip of its blade shaped into an evil spike by the master bladesmith who had crafted it for this exact purpose, carving its way through Masood's temple and into his brain, causing a massive intracerebral hemorrhage, and making him a martyr for the faith.",
"\n\n• • •\n\nReece extracted the tomahawk from Masood's crushed skull and looked to the door. ",
"No footsteps in the hall betrayed a visitor. ",
"No alarms. ",
"Nothing to signify anything amiss.",
"\n\nStill, Reece had to work fast.",
"\n\nCutting off a head was more work than one would think, even with a razor-sharp tomahawk, and Reece had to press Masood's head into the floor with his left hand while chopping through the neck, gristle, and spine to finally free it from the body with his right. ",
"Reece did not relish decapitating a human body, nor did he hesitate or shy from the task. ",
"Sixty-eight U.S. servicemen were dead because of the conspiracy that this piece of meat helped facilitate. ",
"It was time to send a message to the others that he was coming for them, too.",
"\n\nPutting the decapitated head into his satchel, Reece moved down the dark hall toward the exit, tomahawk at his side but ready nonetheless. ",
"He paused at the front door, looking outside through the glass. ",
"Nothing moved. ",
"Just gloomy streets in a part of town no one cared much about. ",
"Turning off the exterior light, Reece descended the steps toward the sidewalk, pausing only momentarily at the wrought-iron gate to impale the head of Imam Hammadi Izmail Masood on a sharp vertical spire, tossing the black flag of ISIS that had been in the package Ben had given him at the safe house over it for good measure.",
"\n\nThe night's work was just getting started.",
"\n\n## CHAPTER 51\n\nREECE NEEDED TO REGROUP. ",
"He was not yet done, and he had some preparations to make before launching his next mission.",
"\n\nThese damn headaches might just get me killed before I can finish the list, Reece thought as he made his way back to the safe house to refit.",
"\n\nReece took out his notes and the poster board floor plan of Holder's apartment and reviewed them thoroughly. ",
"A lot had transpired since his last visit, and he didn't want to rely on his memory. ",
"He studied the video he'd shot in the model apartment as well, to ensure he knew the layout back to front. ",
"He had continued to practice picking the lock identical to Holder's every chance he got and had become quite adept at working it not only quickly but also quietly. ",
"Stealth would be the key on this one. ",
"If he blew it, there would be no hiding what had transpired.",
"\n\nHe went to his stack of gear in Ben's garage, retrieved his issued Heckler & Koch Mk 24 Mod 0 handgun, and threaded on the long black suppressor. ",
"This .45-caliber pistol was the smaller replacement for the old Mk23, a behemoth of a handgun that was a perfect example of bureaucratic blundering. ",
"To create something so heavy and cumbersome that when it came time to go to war it was left to gather dust in the armory was typical of the military's procurement and acquisition process. ",
"He then pulled a length of 550-cord from a kit bag and cut it with the folding knife clipped inside the pocket of his pants. ",
"He wet one end of the cord with his mouth and fished it through the lanyard loop molded into the handgun's grip. ",
"He ran the other end of the cord around the back of his neck until the suppressed handgun dangled at his belt line. ",
"Reece then tied the other end of the cord off and wrapped the large loop repeatedly around the grip before applying a small piece of rigger's tape to hold it in place. ",
"He arranged the remainder of the gear he would need and double-checked that everything was in order before loading up the Cruiser with what looked to be enough equipment to sustain him through a deployment. ",
"Putting on a pair of dark gray running pants, a black fleece pullover, and a pair of lightweight running shoes, he picked up his backpack and headed out the back door.",
"\n\n• • •\n\nIt was a weeknight and the traffic was almost nonexistent at this hour. ",
"He steered off I-5 and pulled into the parking lot of the medical office. ",
"He turned off the motor and headlights, sitting quietly in the vehicle with the windows down for nearly an hour, taking in the sights and sounds, or lack thereof. ",
"He pulled on a set of nitrile gloves and then reached into the pack on the passenger's seat and removed the handgun, unraveling the long loop of cord before slipping it over his head. ",
"He unzipped his fleece jacket and dropped the .45 down inside.",
"\n\nAt 3:00 a.m., he climbed out of the vehicle, put on his unzipped pack, and pulled the waistband of his dark workout pants up and over the dangling handgun's suppressor. ",
"There's no great way to conceal a suppressed handgun, particularly when you're not wearing a belt. ",
"The 550-cord loop kept the gun inside his waistband, where it wouldn't flop around, but also allowed him enough slack to fire the gun at a close range target if the need arose. ",
"It wasn't ideal, but it would work.",
"\n\nHe climbed cautiously over the short chain link fence, being careful not to let the handgun catch on anything. ",
"After crossing the well-lit parking lot, he stopped next to Holder's building and slipped the smaller PVS-18 night-vision mono scope attached to what operators referred to as a \"skull-crusher\" to his head. ",
"The skull-crusher was essentially a steel headband sturdy enough to carry the weight of night optics. ",
"It was lightweight and less bulky than a helmet, though its downside was how it got its nickname—it hurt your skull like hell. ",
"Carefully, he approached Holder's door and listened. ",
"I hope this asshole isn't an insomniac. ",
"He slipped his picks into the lock and slowly rotated his hands to unlock the door. ",
"Thanks to his lube job last time around, the door swung open without making a sound.",
"\n\nHe stepped into the dark living room of the apartment and quietly shut the door behind him. ",
"The pitch-dark room became visible in various shades of green and black as he scanned with the small night scope. ",
"The ambient light in the apartment, from the digital clock on the microwave to the standby light on the television, glowed brightly. ",
"Reece drew the suppressed HK and held it at the position of retention against his chest. ",
"He stood perfectly still for what he thought was about a minute, listening for any sign that he'd awakened his target, thankfully hearing nothing but the hum of the appliances. ",
"He moved slowly down the hallway, conscious of every movement so as not to make a single unnecessary sound. ",
"He reached the door to Holder's bedroom and once again stopped and listened for any sign of movement. ",
"Satisfied, he reached out and touched the doorknob with his gloved hand. ",
"Turning the knob as slowly as his patience allowed, he cursed silently to himself as barely audible clicking sounds came from inside the doorknob assembly. ",
"He opened the door with his left hand while gripping his handgun with the right, his body bladed to the right to make it difficult for someone hiding behind the door to wrestle the gun from him.",
"\n\nJosh Holder was lying spread-eagle on his back, wearing only a pair of dark briefs; the sheets were pushed down to the foot of the bed. ",
"This guy must get night sweats. ",
"Reece stepped into the room slowly and, on top of the dresser, found what he was looking for: Holder's DOD-issued SIG 9mm, tucked inside a Kydex belt holster. ",
"The handgun was a smaller version of the one Reece had used during his time with the Teams.",
"\n\nHe had struggled with this part of the plan for days, debating whether to do what was smart or what was just. ",
"Shooting Holder with his own gun would look to the investigators like a probable suicide and would likely buy him a few more days of surprise before the net tightened. ",
"On the other hand, he couldn't think of anything more righteous than killing the man who had somehow gotten the drop on Boozer with his friend's beloved cartridge. ",
"The fact that the .45 ACP was suppressed was icing on the cake and decreased his chances of being seen or heard as he made his exit. ",
"He decided that he'd shoot Holder with the .45, pick up his empty brass, and then leave the man's 9mm lying cocked on his chest with a round missing from the magazine. ",
"It wouldn't fool the detectives very long, but then again, it wouldn't have to.",
"\n\nReece was standing over Holder's supine form to determine the best angle for his shot, considering it was supposed to look like a suicide, when Holder emitted a surprising gasp and his torso catapulted upward to a sitting position, his eyes opened wide. ",
"The man's sudden movement startled Reece, who hesitated for a brief moment before shoving the HK's suppressor directly into Holder's open mouth—he could feel Holder's teeth shatter from the violent intrusion—and quickly squeezed the trigger.",
"\n\nThe muffled sound was amplified by the acoustics of the small bedroom as Holder's brains splattered instantly against the white drywall, his body collapsing backward onto the bed. ",
"Reece didn't panic, but Holder's nightmare certainly startled him. ",
"That's for you, Boozer.",
"\n\nReece grabbed Holder's SIG from the dresser, pulling it from its holster, ejecting and retaining a round, and leaving the hammer cocked to make it look as if it had been fired, then dropped it onto Holder's bare chest, picked up his .45 brass, and backed out of the room. ",
"He shut the bedroom door and flipped his NODs upward as he hurried toward the front door of the apartment. ",
"He wasn't sure if his .45-caliber round had penetrated the drywall and ended up in the neighbor's flat-screen or dishwasher or if it would have been intrusive enough to wake them up at this hour of the night. ",
"If it had, Reece figured he had about thirty seconds to spare until that neighbor called 911, came to investigate, or both.",
"\n\nHe closed Holder's apartment door behind him and pulled his lock picks out of his pocket, fumbling in his rush and dropping one of the picks to the ground. ",
"Get your shit together, Reece. ",
"Relax, work the lock. ",
"He took a deep breath, inserted the picks into the lock, and got the door secured once again. ",
"Then, taking off across the parking lot at a dead sprint, he leapt over the fence like an Olympic hurdler. ",
"Tossing his pack on the seat, he started the Cruiser and slowly drove away from the scene, waiting until he was around the backside of the medical office before he turned on his headlights and pointed his truck in the direction of Orange County.",
"\n\n## CHAPTER 52\n\nCapstone Capital Corporate Offices\n\nLos Angeles, California\n\nSTEVE HORN THRIVED ON being in control, but under the current circumstances, he did not feel in control at all. ",
"He sat in his office, unable to summon anyone who could bring him all the answers. ",
"His right-hand man, the glue that kept this project together, had died of a drug overdose, of all things. ",
"The toxicology reports hadn't come back yet but the detectives were certain it was what was termed a reckless overdose, the same type they saw all too frequently. ",
"He checked with his own independent sources in law enforcement, who all confirmed that, yes, this thing walked and talked like a run-of-the-mill prescription drug death.",
"\n\nThe circle of people \"in the know\" on this project was extremely small, as it had to be by necessity. ",
"First of all, there was only a finite amount of money to go around; you could only make so many nine-figure promises before running out of equity. ",
"Second, the sensitivity on this investment was off the charts. ",
"Fewer than a dozen people on the planet knew all of the pieces to this puzzle, and one of them was dead. ",
"Horn couldn't help from wondering whether one thing had anything to do with the other.",
"\n\nThe office door opened suddenly and his assistant Kelsie burst through with a look of panic on her face. \"",
"Mr. Horn, I'm so sorry but that was Detective Weatherly on the phone. ",
"He said that Josh Holder was found dead in his apartment early this morning. ",
"They say he shot himself. ",
"He was always so sweet to me, Mr. Horn.\" ",
"She burst into tears and sank into one of the large leather chairs facing Horn's desk, her head in her hands.",
"\n\nThat was no fucking suicide. ",
"Horn grabbed his iPhone and scrolled down to find Marcus Boykin's name. ",
"He touched the screen to dial his mobile number and heard it go straight to voice mail. ",
"On a hunch, he typed Boykin's name into the search bar on his desktop computer. ",
"The first link sent chills down his spine.",
"\n\nwww.wyomingnews.com\n\nSTAR VALLEY MAN KILLED IN HUNTING ACCIDENT\n\nMarcus Boykin, 57, of Star Valley Ranch was found dead in his vehicle . . .",
"\n\n\"Kelsie, get me Mike Tedesco on the phone! ",
"NOW!\"",
"\n\n## CHAPTER 53\n\nNaval Special Warfare Command\n\nCoronado, California\n\nDURING THE DRIVE FROM his home, Tedesco had accepted his fate as atonement for his actions. ",
"His heart was filled with an immense sense of regret for getting himself mixed up in this project in the first place. ",
"Goddamn Steve Horn. ",
"At least his family wouldn't be harmed; in that he found some comfort. ",
"In his last act he had found his courage.",
"\n\nMike Tedesco took a deep breath and opened the door of his Bentley coupe. ",
"Despite the lightweight blend of his bespoke Savile Row suit and open collar, he was sweating profusely. ",
"His knees were weak as he began the short walk to the building's entrance. ",
"The guard inside the door recognized him immediately and handed him a visitor's badge through the slot under the bulletproof glass. ",
"Tedesco walked the halls in a fog, unable to focus or wash the blank look of despair from his face. ",
"Those who recognized him regarded him with great curiosity. ",
"The man who usually walked these halls with an aristocratic air of confidence, great charm, and an impeccable appearance now looked like he was on his way to the gallows.",
"\n\nThe admiral's aide rose from his desk as Tedesco walked past him to open the doors into Pilsner's office. \"",
"Mr. Tedesco, is the admiral expecting you?\" ",
"he asked in vain as Tedesco opened the paneled door and walked inside.",
"\n\nAdmiral Pilsner was sitting behind his desk in a starched khaki uniform, his nose still bandaged but the deep black eyes fading out to a grotesque purple and yellow. ",
"The look on his face indicated surprise. ",
"It wasn't like Mike to drop by without his assistant calling ahead first to arrange it. ",
"He was even more surprised at Tedesco's disheveled appearance. ",
"Tedesco stopped a few feet short of Pilsner's desk just as the admiral's aide stumbled through the door behind him.",
"\n\n\"Sir, I'm sorry, I tried to intercept him—\"\n\n\"It's okay, Mr. Tedesco is always welcome in my office, you know that. ",
"Have a seat, Mike. ",
"What's the problem? ",
"You look terrible.\"",
"\n\nJust then, a cell phone began to ring from inside Tedesco's coat. ",
"The ringer was set to sound like an old-fashioned dial telephone. ",
"Riiinnng . . . . ",
"riiinnng . . .",
"\n\n\"Mr. Tedesco, you can't have a cell phone in this building!\" ",
"cried the aide, who strictly obeyed the security protocols of WARCOM.",
"\n\nTedesco retrieved the phone, which appeared to be a cheap prepaid model, and held it across the table for Admiral Pilsner. \"",
"It's for you, Gerald,\" he said in a tone that haunted the room.",
"\n\nThe admiral accepted it with disbelief and looked at the phone dumbfounded, as if he'd never seen one before. ",
"Slowly, he put it up to his ear. \"",
"Hello, who is this?\"",
"\n\nMike Tedesco closed his eyes. ",
"This was to be his penance.",
"\n\n\"This is your executioner, you fucking disgrace. ",
"You wiped out my troop and my family, and you did it all for money and a promotion. ",
"I'll see you in hell, motherfucker.\"",
"\n\nJames Reece hit SEND on a second cell phone, connecting a call to the one strapped to Mike Tedesco. ",
"The phone received the incoming call and sent a burst of electrons to a cluster of wires leading to a blasting cap loaded with PETN. ",
"The blasting cap detonated and forced a high-explosive response from the 2.5 pounds of C-4 sewn inside the suicide vest worn underneath Tedesco's dress shirt.",
"\n\nTedesco's body tamped the force of the explosion, forcing all the energy forward toward Admiral Pilsner's desk. ",
"That energy turned the strips of framing nails embedded in the face of the C-4 into red hot shrapnel moving at well beyond the speed of sound, shredding Admiral Pilsner's face and upper torso like a dozen shotgun rounds. ",
"The blast sent chunks of his charred skull through the massive windows, which exploded instantly from the overpressure, propelling thousands of shards of glass onto the beautiful beach below. ",
"Tedesco's body was cut completely in half by the blast, and the parts of Admiral Pilsner that extended above his massive wooden desk simply ceased to exist.",
"\n\n• • •\n\nReece set down the cell phone on the late Mike Tedesco's dining room table and looked at Tedesco's widow, who sat just feet away, gently rocking their newborn infant. ",
"Janet Tedesco quickly went back to stroking her baby's head but she thought she detected a hint of sadness in the big man's eyes. ",
"When she looked back up, he was gone.",
"\n\n## CHAPTER 54\n\nSan Diego, California\n\nLEONARD HOWARD HAD BEEN somewhat of a failure in the civilian practice of law. ",
"He did well academically in law school but was unprepared for the chaotic workload of a civil litigator. ",
"He also found that, despite his dreams to the contrary, he was abysmal in the courtroom. ",
"Whenever the partners would send him in to cover a routine motion hearing, he would panic. ",
"His confidence would shatter, his mouth would go powder-dry, and his voice would crack.",
"\n\nHe was quickly let go from the firm and found himself adrift. ",
"There was only one place where a lazy lawyer who was scared of the courtroom could thrive: government service. ",
"A law school friend told him about the Navy JAG program, and he was immediately sold. ",
"The uniform brought him instant pride and prestige, and the complicated bureaucracy of the military gave him an environment in which to excel. ",
"He particularly loved signing his emails \"Judge,\" an unauthorized way to psychologically elevate himself through the electronic communications medium.",
"\n\nMore than two decades into his uniformed service, Howard had risen to the rank of captain and was the judge advocate general of the Naval Special Warfare Command. ",
"When his friends and neighbors in the San Diego suburb of East Lake mistakenly referred to him as a SEAL because of his work on the staff of a SEAL flag officer, Howard never corrected them. ",
"Admiral Pilsner treated him like a trusted ally, and together they wielded the full power and influence of the U.S. Navy against anyone who stood in their way. ",
"It was very much \"us\" versus \"them.\" ",
"Pilsner's political connections had made him a likely candidate to run the Pentagon, and Howard would rise alongside him as his most trusted confidant.",
"\n\nCaptain Howard had an appointment that morning and would be arriving to work at WARCOM later than usual. ",
"Most men his age were long past the stage of needing braces on their teeth, but Howard's teeth had been in such horrible shape from a lifetime of neglect that his wife had finally convinced him to do something about it. ",
"She secretly hoped it would help his chronic halitosis as well as his appearance. ",
"The Navy denied his application to have braces put on, citing the purely cosmetic reason of his request. ",
"Unfortunately for him, the same bureaucracy in which he prospered could also be an insurmountable hurdle to climb. ",
"He shelled out the money to pay for the braces himself and had a regular visit with his civilian orthodontist out in the suburbs.",
"\n\nHe turned off his cell phone during the office visit per the sign on the door, powering it back up as he walked outside to what they now called a sports activity vehicle.",
"\n\nHis Navy-issued BlackBerry came alive with every conceivable alert when he turned it on and it reconnected to the network: voice mails, text messages, and emails had all come through while his device had been turned off. ",
"He scanned the emails first and stopped in his tracks as he opened the most recent message:\n\nEXPLOSION AT WARCOM: 2 DEAD, EVACUATE IMMEDIATELY\n\nHe checked the voice mail from his deputy, a wave of nausea coming over him when he heard the news that Admiral Pilsner had been killed by an explosion in his office, likely a terrorist attack.",
"\n\nHe immediately hit his local news app to see if there was more updated information available. ",
"Heart pounding, blinking to clear his vision, Howard tried to fight back what felt like an anxiety attack as he read the headline in shock.",
"\n\nLOCAL MODERATE ISLAMIC LEADER DECAPITATED IN BRUTAL HATE CRIME.",
"\n\nInstantly clicking on the link, he read:\n\nSan Diego Imam Hammadi Izmail Masood was murdered late last night in an apparent hate crime. ",
"His decapitated head was found this morning by neighbors, impaled on the spike of a wrought iron gate to the mosque where he lived and served as the director of Islamic Services for the Islamic Center for Peace and Prosperity of Southern California.",
"\n\nWithout hesitation, he dialed his wife's mobile number. \"",
"Amy, listen to me, don't talk. ",
"Go get the kids out of school right now and take them to the airport. ",
"I'll meet you there. ",
"No, I don't have time to explain, and yes, it has to do with what you're seeing on the news. ",
"Gerald is dead. ",
"We have to go now. ",
"I'll meet you at the ticket counter. ",
"Throw some warm-weather clothes in a bag and go.\"",
"\n\nLeonard Howard climbed into his BMW X3 and sped out of the parking lot toward San Diego International Airport.",
"\n\n## CHAPTER 55\n\nAlpine, California\n\nBY THE TIME THE NEWS of the explosion broke, Reece was on the road to the town of Alpine, in the mountains northeast of San Diego. ",
"Forty minutes later, he was winding his way up the dirt road toward the Canyon, a private thousand-yard rifle range owned by his friend Clint Harris. ",
"Harris had hoped to turn the site, built on an old runway high in the hills, into a full training complex for military and law enforcement use. ",
"Unfortunately he'd been sued by environmental groups and tied up in litigation ever since. ",
"He could still use the range for private guests; he just couldn't run it as a business until the lawsuits were settled.",
"\n\nHarris was a smart and successful businessman and was no joke with a rifle. ",
"He had spent time behind the scope in Southeast Asia, and even at sixty-eight years of age, he could still match and often surpass the skills of Reece's top snipers. ",
"He loved having Reece and his operators up to the range to train so he could test himself against the best. ",
"Harris was also an \"off the grid\" kind of guy and had no great love for the federal government. ",
"When Reece had approached him with this ask, he agreed without hesitation. ",
"Even though Harris didn't have a family, he risked imprisonment and financial ruin if he were ever discovered to have aided Reece's escape.",
"\n\nReece knew the combinations to both gates en route to the compound and steered directly toward the open roll-up garage door where Harris stored and maintained the vehicles used on the training site. ",
"Harris backed a Polaris Ranger utility vehicle up to the tailgate of Reece's cruiser and was busy transferring gear, including a parting gift from Marco, from the cruiser to the Ranger before Reece could get the vehicle into park. ",
"Marco had his driver deliver a backpack filled with $100,000 in multiple denominations of U.S. currency soon after their Mexico excursion so that Reece would not be able to refuse it. ",
"Inside was a handwritten note reading, \"Just in case you need traveling money, my friend. ",
"Keep the change.—Marco.\" ",
"Reece jumped out alongside Harris and helped him continue loading the heavy Pelican weapons cases and bags into the bed of the Ranger.",
"\n\n\"Can't thank you enough for this, Clint. ",
"I mean it.\"",
"\n\n\"You'd do it for me, Reece, that's all that matters. ",
"Now say goodbye to your girlfriend here; I promise it'll be a quick death.\"",
"\n\nReece patted his beloved Land Cruiser to say goodbye after many years of faithful service. ",
"He knew that it would be gone by sunrise the next morning, probably at the bottom of the nearby Loveland Reservoir. ",
"Harris pulled the chains to lower the garage door and they both climbed into the Ranger. ",
"The noise of the Polaris's engine made it too loud to talk as they drove the short distance to the range. ",
"There wasn't much to say anyway. ",
"Harris stopped at the north corner of the long, flat range and pulled a Motorola radio from his belt.",
"\n\n\"Tider, this is the Canyon, do you read me?\"",
"\n\n\"I've got you, Canyon, I'm five minutes out,\" replied a female voice with a southern accent that was discernible, even over the scratchy radio signal.",
"\n\n\"Roger, we're ready for you here. ",
"You've got light winds from the west, less than three miles per hour. ",
"Range is clear.\"",
"\n\n\"Roger, Canyon, see you in five.\"",
"\n\n\"There she is.\" ",
"Harris pointed to a speck on the horizon directly to the north. ",
"As the speck grew closer, Reece could hear the humming sound of a turboprop. ",
"The aircraft flew directly over their position before making a sweeping turn that put it in line with the opposite end of the old thousand-yard runway. ",
"With the gears folded down and locked, and with the flaps at full extension, the pilot put the Pilatus PC-12 NG down just ahead of the impact berm, taking advantage of every foot of available runway.",
"\n\nThe sleek single-engine aircraft was painted silver and looked very much like a bird of prey. ",
"The plane's deceleration was rapid and, within seven hundred yards of the landing spot the plane was taxiing at normal speed. ",
"The pilot passed the men in the Polaris and turned the plane 180 degrees, pointing the nose back in the direction it had come from. ",
"The plane came to a stop and the engine's RPMs decreased audibly as it went into ground idle, the engine continuing to run with the props feathered so as not to create any thrust. ",
"A few seconds later, the engine shut off and the prop began to slow.",
"\n\nAlmost immediately the cabin door on the left side of the aircraft folded downward and all five feet, five inches of Liz Riley stood in the cabin door. ",
"She was wearing aviator sunglasses and her hair was pulled back into a ponytail, covered by a crimson University of Alabama ball cap. ",
"She looked like she'd walked out of a CrossFit class instead of the cockpit of an aircraft, wearing a gray tank top and tight black nylon yoga pants. ",
"Her shoulders and arms were muscular without being masculine, courtesy of the gym addiction born during the rehab from her wartime injuries. ",
"Her right shoulder and part of her right arm were highlighted in a mural of intricate tattoos. ",
"She hopped swiftly down the steps of the Pilatus and embraced Reece in a bear hug.",
"\n\n\"I'm so sorry about everything, Reece, I really am.\"",
"\n\nReece returned the hug firmly, Liz being the closest thing to a sister he'd ever had. \"",
"Your turn to save my ass, Liz.\"",
"\n\n\"Gladly! ",
"Let's get your gear loaded and get you out of here.\"",
"\n\nLiz grabbed one of the kit bags and ran up the steps into the aircraft's cabin. ",
"She set the bag down and stood in the door.",
"\n\n\"Y'all hand that stuff up to me. ",
"I need to get the balance right.\"",
"\n\nThe men began offloading the Ranger's utility bed onto the deck of the aircraft while Riley placed the various bags and cases in spots of her choosing. ",
"She wasn't the kind of girl whom you offered to help with the bags. ",
"She stood at the front of the cabin, pointing at the various items of kit as she made calculations in her head.",
"\n\n\"Okay, boys, we're loaded. ",
"Get in, Reece.\"",
"\n\nReece embraced Harris in a half handshake, half hug.",
"\n\n\"See you when you get back,\" Harris said.",
"\n\nReece nodded with a look that was unmistakable in its meaning. ",
"I'm not coming back. ",
"Then he climbed the steps into the cabin. ",
"Liz pointed at his seat in the cockpit and pulled the stairway door up, securing it. ",
"She climbed nimbly into the left seat, put on her headset, and talked herself through a rapid preflight checklist. ",
"Satisfied, she started the engine and ran the throttle up to full power, watching the tachometer rise. ",
"With the engine screaming, she released the wheel brakes and applied pitch to the spinning propeller blades. ",
"The aircraft surged forward, pushing Reece back into his seat as it accelerated down the dirt strip. ",
"Seven hundred yards from their starting point, Liz pulled back on the yoke and the nose pointed rapidly skyward. ",
"The Pilatus cleared the impact berm by a healthy margin and gained altitude as the landing gear retracted into the fuselage.",
"\n\nLiz turned the aircraft east and spoke for the first time since she'd assumed the controls. \"",
"So, where to, Reece?\"",
"\n\n## CHAPTER 56\n\nCapstone Capital Corporate Offices\n\nLos Angeles, California\n\nHORN HAD HIS ASSISTANT arrange the videoconference in the same frosted glass room at Capstone where he'd hosted J. D. Hartley. ",
"This time it was Secretary Hartley calling, and it would take all of his negotiating skills to talk her down. ",
"He had to keep this deal on the rails or everything would be lost. ",
"The large LCD screen went from solid blue to an image of the secretary's conference room at the Pentagon. ",
"One of Hartley's aides confirmed that the video was live and then exited the camera's view, presumably to summon the secretary herself.",
"\n\nLorraine Hartley without professional makeup and lighting was not a pretty sight and the video image did not help bolster her appearance. ",
"She looked exhausted and stressed; clearly she was not happy with the way things had spun out of control.",
"\n\n\"Horn, I cannot believe that I let you and J.D. talk me into this thing. ",
"Pilsner is dead, Steve, blown out of his office window like confetti, and one of my best fundraisers is dead with him.\"",
"\n\n\"Madame Secretary, I am deeply saddened by the loss of the admiral and Mike. ",
"Both were great men.\"",
"\n\n\"Oh, save me the condolence act, Horn. ",
"They were hardly great men. ",
"All I care about is this thing staying under the radar—and with the bodies piling up, that is not what is happening.\"",
"\n\n\"Madame Secretary, I understand why you're upset; I really do. ",
"These are setbacks to be sure, but let's be honest, those men had served their purpose on this project. ",
"We now have less equity to share and, better yet, a platform to catapult you into the White House. ",
"This is your moment, Madame Secretary.\"",
"\n\n\"What are you talking about? ",
"How is this mess going to do anything other than land me in prison?\"",
"\n\n\"No one is going to prison, Lorraine. ",
"This is exactly the kind of issue that you need to establish yourself as a strong leader. ",
"Don't let that lame-duck president be the face of this thing. ",
"Call a primetime press conference and tell the public about James Reece the terrorist. ",
"He'll have every hick-town cop in the country chasing him, and we know he won't let them take him alive. ",
"You'll look like you're already in the Oval Office and you can use it to pass that domestic surveillance bill that you've been trying so desperately to get through Congress. ",
"The public will be scared shitless, and you'll be their savior.\"",
"\n\n\"You make a good point, Steve: we could really capitalize on this. ",
"But how do we know Reece isn't coming after us?\"",
"\n\n\"I have an asset that I've been holding in reserve, Lorraine, who can lead him right to his own demise. ",
"Get your best military or law enforcement units to hunt him down and tighten the noose, and my guys can finish the job. ",
"We give credit to whoever you want to owe you one and we move forward with the next round of trials. ",
"This thing is going to work, Lorraine. ",
"You're going to be president, and we're going to make billions with a b.\"\n\n\"I'm giving you one last shot on this, Horn. ",
"This had better work or I'll make sure you never see another dollar out of this agency's budget.\"",
"\n\n\"It will work, Lorraine, trust me.\"",
"\n\n## CHAPTER 57\n\nRILEY HAD FLOWN VFR out of North Las Vegas Airport, where she had returned in order to file a flight plan back to her home field in Texas. ",
"So long as she obeyed the visual flight rules no one would question where she flew or, more important, where she'd landed. ",
"Once they were back on the ground in Nevada, Reece stayed in the cockpit, wearing a hat and sunglasses, while Riley filed her flight plan and supervised the refueling of the aircraft.",
"\n\nLiz got permission from the North Vegas tower to take off and they began the long trek to East Texas. ",
"Reece trusted Liz Riley in a way he trusted few, if any, other people in his life. ",
"He hadn't told the whole story from start to finish to anyone and doing so took up most of the nearly four-hour flight.",
"\n\nHe started at the beginning, during the peculiar pre-mission planning before the ambush, all the way through the tragic events that followed. ",
"He told her about the tumors, the unauthorized clinical trial, and the involvement of the Hartleys. ",
"He told her how he'd created the list and had been working his way down it as efficiently as possible. ",
"The truth was, Reece wasn't a cold-blooded killer, and he needed Riley's moral compass to lean on. ",
"He wanted to ensure that he was doing the right thing, the thing that would make his men and his family proud. ",
"Liz was a good listener, never interrupting, letting Reece's discourse serve as his confessional.",
"\n\nIt was not lost on Reece, or on Liz, that he was transforming into an insurgent. ",
"His methods of killing blending his skills as an operator with the lessons he had learned over his years in special operations studying terrorists, guerrillas, subversives, and assassins. ",
"If he had spent time thinking about it, he would have realized that his physical transformation matched the psychological one taking place within. ",
"He had raided the armory of his enemy and adopted clothes to blend into the populace, his long hair and beard making him look more like a logger from Oregon than a military man.",
"\n\nReece had always taken a hard line against prisoner abuse, regardless of what atrocity that prisoner had just committed. ",
"Even in the hard-core world of the SEAL Teams they were called anything but prisoners, detainees being the more polite term, though Reece always thought that sounded more like what cops did at traffic stops than what happened in war. ",
"As soon as they were flex-tied, their safety became the responsibility of the troop. ",
"Reece had no tolerance for any violence against the enemy once they were cuffed and under his control. ",
"It was one of the things that differentiated the United States from the enemy. ",
"Now Reece had violated that most basic tenet of warfare, executing a man on his knees in Mexico. ",
"He had desecrated the body of the dead imam and left his head impaled on a spike in front of the mosque, forced another conspirator to wear a suicide vest onto a military installation to assassinate a high-ranking officer, murdered a federal agent while he slept, put a long-range projectile through the brain of an accountant, and tortured an attorney before intentionally overdosing him on narcotics. ",
"All that was prologue; he was not yet finished merging his highly honed abilities as a warfighter with the guerrilla tactics used against larger, more conventional militaries by terrorists the world over. ",
"His skills were the perfect fusion of elite special operator and cunning insurgent.",
"\n\n\"Reece, you are the strongest man that I've ever met, and I grew up around enough real men to know the difference. ",
"You've done it right your entire career, your entire life, and you don't deserve any of this. ",
"Lord knows that Lauren and sweet Lucy didn't deserve it. ",
"Most would have cracked under that pressure and crawled into a hole. ",
"I hope you don't regret anything that you've done to avenge your family and your men because, as far as I'm concerned, there's nothing that you could do to these monsters that would be over-the-top. ",
"There isn't a day that goes by that I don't think about your risking your life to save my butt in Iraq. ",
"I will land this damn plane in Lorraine Hartley's front yard if that's what I need to do to help you.\"",
"\n\n\"I hope you don't think less of me, but I can't let these people get away with this,\" he said with intensity.",
"\n\n\"Reece, have I ever told you about my grandfather?\"",
"\n\n\"No, I don't think so. ",
"Your dad's dad?\"",
"\n\n\"No, my mother's daddy. ",
"He was the county sheriff back home. ",
"He was murdered in cold blood by some shitbag who'd just gotten out of jail. ",
"This was back in 1977, before I was even born. ",
"The guy that killed him sat on death row getting three squares a day for thirty years. ",
"Then some appellate court decides that he's ineligible for the death penalty. ",
"These big-city Harvard lawyers line up to defend murderers like him. ",
"Who's sticking up for us? ",
"I never got to meet my grandfather, and our family will never get justice. ",
"Your Teammates, those Rangers, the pilots and aircrew: none of those guys will get to hug their wives, coach their son's Little League games, or walk their daughters down the aisle. ",
"One of those 160th pilots, Chief Hansen, went to flight school with me. ",
"We all called him Swede because he looked like a huge Viking. ",
"He wanted to be an attack pilot, but he couldn't fit in anything other than a Chinook. ",
"He had a wife and three boys at home. ",
"He'd never even met his youngest, born just before he was killed on deployment. ",
"He was too mission critical to get emergency leave. ",
"My heart breaks for his wife and those boys. ",
"You'll never get to see Lauren or Lucy again or even meet your son. ",
"The system will protect the Hartleys, and they'll keep getting richer and more powerful. ",
"She'll be in the White House, and you'll still be trying to get people to believe your crazy conspiracy theory. ",
"No, Reece, if you're looking for someone to tell you you're doing something sinful, you've come to the wrong place. ",
"You hunt down every one of these fuckers and do justice for your family and all of those warriors' families.\" ",
"She paused. \"",
"Kill them, Reece. ",
"Kill them all.\"",
"\n\nUnsure how to respond, Reece remained silent as Liz collected her thoughts.",
"\n\n\"I'll do anything that I can to help,\" she said softly.",
"\n\n\"Thanks, Liz, you're doing enough already. ",
"I hate it that you're sticking your neck out this far for me. ",
"Sooner or later they're gonna figure out that you were involved.\"",
"\n\n\"Maybe they will, maybe they won't. ",
"Whatever happens, it'll be better than getting tortured and gang-raped by a bunch of jihadis in Iraq. ",
"Pretty sure the FBI can't cut my head off. ",
"I owe you my life, Reece, and besides, y'all are like family. ",
"They murdered the closest things to a sister and a niece I've ever had.\"",
"\n\n## CHAPTER 58\n\nGhost Rose Ranch, Texas\n\nLIZ RILEY'S EMPLOYER KEPT both of his planes in a hangar on his ranch between Houston and College Station. ",
"Liz lived on the property in a small but well-appointed and clean cabin, which would be Reece's home until he could figure out his next move. ",
"Only a skeleton crew of staff were on the ranch, with the boss out of town, and none of them would bother Miss Riley's guest. ",
"She landed the Pilatus on the paved private airstrip and taxied toward a hangar that looked as clean as an operating room.",
"\n\n\"Welcome to Ghost Rose Ranch,\" she said, shutting down the engine and beginning her postflight checklist while Reece climbed back into the passenger cabin.",
"\n\n\"Just leave your gear in the plane if you want to, no one will bother it,\" Liz called from the cockpit. ",
"Reece nodded and found a small overnight bag that contained some clothes and toiletries, then opened the hatch and let down the stairs. ",
"He was desperate to stand on solid ground and stretch his legs after spending half the day in the small airplane. ",
"He paced around the hangar as Liz attended to the plane. ",
"Eventually she too climbed down the stairs and went through a series of stretches to loosen up her stiff body.",
"\n\n\"How's your back?\" ",
"Reece asked, referring to the injury that had ended her career as an Army aviator.",
"\n\n\"It's okay. ",
"It gets stiff when I spend all day in the plane, though. ",
"Nothing that a glass of Pinot Grigio won't fix.\"",
"\n\nShe flew like a man but drank like a girl. ",
"Reece always thought her to be an odd paradox of tomboy and girly-girl and he was constantly surprised by things that she said or did that made her seem too much of either one or the other.",
"\n\nA Ford F-350 King Ranch truck pulled up in front of the hangar and a small man in a western shirt, jeans, and boots tipped his Stetson to Liz and nodded his head at Reece.",
"\n\n\"Señora Riley.\"",
"\n\n\"That's Ernesto,\" said Liz. \"",
"He'll drive us to my place. ",
"Don't worry, he knows how to keep his mouth shut.\"",
"\n\nThey climbed into the pickup and Reece took in the sights of the sprawling ranch as they made the ten-minute drive to Riley's cabin.",
"\n\n• • •\n\nIslamorada, Florida\n\nIt had cost Leonard Howard a fortune, but he had been able to get himself and his family on a red-eye flight from San Diego to Atlanta and then down to Fort Lauderdale, where they rented a car for the drive to Islamorada in the Florida Keys. ",
"They arrived at the rental house exhausted, but happy to be safe, and as far away from San Diego as the U.S. borders allowed. ",
"That nut job Reece had to be operating without any kind of support, and there was no way he'd be able to make his way across the country without being captured. ",
"Besides, how would he ever find them here with no intel assets?",
"\n\nHoward and his family had lain low the first day and caught up on sleep but now they were growing more comfortable with their tropical surroundings and were beginning to explore a bit. ",
"His teenage son and daughter complained at first about the lack of a beach near the house but quickly realized that a world of aquatic wonders lay just below the water's surface, among the flats and reefs that made the Keys a snorkeling and diving destination. ",
"Howard bought them snorkeling gear at a local dive shop and they spent most of the day exploring their new world. ",
"Leonard and his wife were satisfied sitting on the porch and reading. ",
"She read architectural and interior design magazines while he read a new Brad Thor novel he'd picked up in the Atlanta airport. ",
"This is the way they'd live the rest of their lives once he cashed in on what he and the late Admiral Pilsner simply called \"the Project.\"",
"\n\n• • •\n\nGhost Rose Ranch, Texas\n\nReece followed Liz up the steps of her cabin and into the small living room. \"",
"Can I get you anything?\" ",
"she asked as she headed for the kitchen. \"",
"I've got beer, wine, water, not much else. . . .\"",
"\n\n\"I'll take a beer, I guess, and maybe some lights. ",
"This place is like a cave,\" Reece said, squinting at the photos on the mantel. ",
"There were pictures of Liz in her flight suit in front of her Kiowa in what was obviously Iraq, one of her father pinning on her wings at flight school graduation, and another that stopped him short: Liz, along with Reece, Lauren, and Lucy, all smiles at Christmas, happiness frozen in time.",
"\n\nLiz walked back into the living room carrying a bottle of Coors Light for Reece and a glass of white wine for herself. \"",
"I finally get a man back to my place and he's the one non–family member I can't have fun with.\"",
"\n\nReece quickly recovered and pulled himself away from the photo.",
"\n\n\"Are family members off-limits where you come from? ",
"I didn't realize that,\" he joked.",
"\n\n\"I'm from Alabama, asshole, not Tennessee.\" ",
"Riley punched Reece on the upper arm as she sat down on the couch next to him. \"",
"You can use my Wi-Fi if you need it. ",
"We can't get a landline out here so it's all via satellite. ",
"I think it's secure but I can't promise anything. ",
"You know how risky that stuff is these days. ",
"I got three prepaid phones for you as well. ",
"I wouldn't use any of them more than once, if I were you.\"",
"\n\n\"Okay, thanks.\"",
"\n\nIt was risky but necessary. ",
"Reece connected to the Wi-Fi signal and checked his SpiderOak folder for a message from Ben Edwards. ",
"He found one that was nothing more than a series of numbers and letters followed by \"JAG.\" ",
"It took Reece a moment to realize that the characters were grid coordinates and that Ben was leading him to a loose end, one of the few remaining names on his list.",
"\n\n\"What do you have there?\" ",
"Liz asked.",
"\n\n\"A message from Ben,\" Reece responded. \"",
"Looks like it's the location of my next target.\"",
"\n\n\"Good ol' Ben,\" Liz said, reminiscing. \"",
"I remember him hitting on me constantly when I visited you and Lauren out in Coronado. ",
"I think he had just been picked up by the Agency. ",
"He always gave me the creeps. ",
"I think he was married at the time and his wife was right there!\"",
"\n\n\"Sounds like Ben. ",
"He always had a bit of trouble with those wedding vows.\"",
"\n\n\"Where's the target?\" ",
"Liz asked.",
"\n\n\"Florida. ",
"The Keys.\"",
"\n\nThe problem was getting there. ",
"It was the most bottlenecked spot in the United States, with one road in and out and surrounded by water on all sides. ",
"If this were a SEAL mission, the water would be the easy way in. ",
"They could use aircraft, a larger vessel, or even a submarine to drop him and his men in CRRC Zodiac boats offshore, where they'd ride as far as they could before swimming in silently below the surface using closed-circuit breathing apparatus gear that left no telltale bubbles to give away their positions. ",
"The irony was that, despite being a highly trained maritime commando, Reece didn't have access to so much as a canoe.",
"\n\nReece had spent some time in South Florida as a kid but that was decades ago and that part of the country had changed dramatically since then. ",
"Before the war he and his Teammates had conducted demonstrations for the crowds at the UDT/SEAL Museum in Fort Pierce, so he did have some semi-local contacts. ",
"He'd hit it off while he was down there with some really good local guys who liked to spearfish and had kept in touch with a few via email. ",
"Still, he didn't know them well enough to reach out for help as the most wanted man in America, which he suspected he was well on his way to becoming as law enforcement began putting the puzzle together.",
"\n\nHe also knew that there were some small private airstrips in South Florida where the more entrepreneurial and sophisticated black market businessmen had brought in bales of contraband marijuana known as \"square grouper\" during the 1970s and '80s, but the feds still watched them closely as part of their counterdrug efforts. ",
"He couldn't think of another way in that gave him a reasonable chance of getting out and decided he'd have to rely once again on the generosity of his friend Marco. ",
"Reece excused himself and walked out onto the cabin's front porch. ",
"He used one of the throwaway phones to reach out to his Mexican benefactor and, sure enough, Marco had contacts in Miami who would arrange for no-questions-asked transportation. ",
"There would be a car waiting for him at the FBO at the Opa-Locka airport, northwest of Miami.",
"\n\n\"So, it looks like you won't get to have a man stay overnight after all,\" he told Liz as he walked back inside.",
"\n\n\"Where to then, my fugitive friend?\"",
"\n\n\"Miami, then I'll drive down to the Keys. ",
"How long would it take us to fly there?\"",
"\n\nLiz looked toward the ceiling and did some quick math in her head. \"",
"Probably three and a half hours, depending on the winds.\"",
"\n\nReece looked at his watch. \"",
"Maybe we will have a sleepover; too late to pull this off tonight. ",
"I need to look at the imagery and do some planning anyway. ",
"Does this cavern have a guestroom?\"",
"\n\n• • •\n\nEarly the next morning Liz filed a flight plan and they headed for the Sunshine State. ",
"Their flight path straddled the white sands of the Gulf coast and the forgotten shorelines of the Big Bend as the Florida peninsula arched southward toward the Caribbean. ",
"After passing over Sarasota, Riley turned due east, crossing the seemingly endless expanse of islands and Everglades.",
"\n\nWhat looked like a solid wall of saw grass from ground level appeared more like hundreds of intertwined snakes from above. ",
"Small rivers, creeks, and streams ran among clumps of dry or semidry land where vegetation grew. ",
"Navigating it by water would be nearly impossible.",
"\n\nThe desolate habitat, far more varied than most believed, was a stark contrast to the highly populated coastlines of Florida that attracted tourists the world over. ",
"This must have been what all of South Florida looked like before men came with dredges to turn a sea of grass into a concrete jungle. ",
"When hurricanes came to reclaim the ancient swampscape, they built taller levees and deeper canals to hold back the tide of nature. ",
"The westernmost barriers of the levee system drew across the state like a line in the sand between raw beauty and manufactured civilization. ",
"Cookie-cutter neighborhoods stretched eastward toward the Atlantic, and a gridlike maze of asphalt snaked with traffic.",
"\n\nReece stayed in the plane while Liz checked in with the FBO and located his ride, a 2004 Dodge Ram truck with keys under the mat. ",
"She returned to the plane and gave Reece a thumbs-up.",
"\n\n\"Your ride is there, just like your friend said it would be. ",
"You sure you don't want me to come along and help out?\"",
"\n\n\"No, Liz, this is my show. ",
"You're sticking your neck out further than I want you to as it is.\"",
"\n\n\"Did you see me getting my head cut off by some hooded asshole on YouTube? ",
"No? ",
"Oh yeah, that's because some SEAL I'd never met before stuck his neck out for me.\"",
"\n\n\"Well, I'm glad I saved your ass back then 'cause I sure needed you this week.\"",
"\n\n\"Go do what you gotta do and call me if you need a hot extract. ",
"There are airfields all over down here: Marathon, Key Largo, Tavernier; there's even a private strip down on Summerland Key that I could probably talk my way into. ",
"You call and I'll be there.\"",
"\n\n\"Liz, I seriously can't thank you enough. ",
"I'll see you in a few hours.\"",
"\n\n\"Be safe, Reece, be safe.\"",
"\n\nReece started the truck, cranked the air-conditioning, and headed out into the southbound surface streets of Miami. ",
"There is the Miami that tourists see, with brilliantly lit skylines, art deco architecture, and white sandy beaches, and then there was this one. ",
"Much of Miami's population is made up of first- or second-generation Americans, immigrants from third-world, Latin American, and Caribbean nations who found refuge in the opportunities offered by Florida's growing economy. ",
"The predictable results of that mass transplant are entire neighborhoods that appear to have been plucked from Havana, Bogota, or Port-au-Prince: places where iron bars cover every window and doorway, English is rarely spoken or read, and the occasional chicken, pig, or even cow can be found in an urban backyard. ",
"Reece had done some drug interdiction operations as an enlisted SEAL down in South America during the pre-9/11 days, and the sights and sounds of these neighborhoods brought him back to those more innocent times. ",
"He made his way south and west onto the Palmetto Expressway, pulling into an aggressive flow of traffic that would give L.A. a run for its money.",
"\n\nReece chuckled as he thought of a trip to Miami a few years earlier, when he and some Army special operators staged a mock attack on a prison facility that was set to be demolished. ",
"The troops snuck ashore and planted breaching charges to blast their way through the thick concrete walls of the erstwhile correctional facility. ",
"When the charges detonated, residents of a nearby housing project thought that they were being raided by SWAT teams and rushed to flush narcotics down the toilets. ",
"The effect of hundreds of toilets being flushed nearly simultaneously overwhelmed the utility infrastructure, and it took hours for the area to regain normal water pressure. ",
"They probably took more drugs off the street inadvertently that night than the local police would have seized in a month.",
"\n\nReece finally made his way to Florida City and down into the string of islands known as \"the Keys.\" ",
"The roughly one-hundred-mile chain stretched along the roads and bridges of a single highway, with each mile designated by a numerical marker that counted down to zero as you headed toward Key West. ",
"Just about every location in the Keys was referenced by its corresponding mile marker. ",
"As you counted down the mile markers and migrated farther south on U.S. 1, you saw fewer signs of Miami's influence and more artifacts of Old Florida. ",
"The long-standing roadside motels and dive restaurants, relics from the 1950s and '60s, reminded Reece of road trips with his parents and grandparents as a kid. ",
"If only his children could have lived to know such carefree days.",
"\n\n## CHAPTER 59\n\nIslamorada, Florida\n\nAMY HOWARD WAS TAKING an afternoon nap while the kids watched a movie on the large flat-screen television in the living room. ",
"Leonard asked the children if they'd like to join him for a walk, but they declined. ",
"They were both at the age where they preferred to spend as little time with mom and dad as possible and they were worn out from snorkeling all morning under the Florida sun.",
"\n\nHoward wore a wide-brimmed sun hat, lightweight nylon Columbia fishing clothing, and Teva rafting sandals as he walked down the coquina driveway toward the access road to U.S. 1. ",
"A sidewalk paralleled the highway before connecting to a nature trail that offered a dry look at some of the miles of mangrove swamps that formed the core of the local ecosystem. ",
"At one point, the trail entered a cathedral of overhanging trees, which provided some welcome shade from the blazing sun. ",
"Despite the slow pace and the short distance he'd covered, Howard was already sweating in the oppressive humidity. ",
"He couldn't imagine this place in August. ",
"As pretty as it was here, he'd take California any day.",
"\n\nHe heard what sounded like footsteps behind him and turned to see the source of the sound. ",
"When he did, he was hit in the jaw by a blow that sent the world to black and him toppling down onto the concrete sidewalk. ",
"He awoke with a man astride him, raining blows down on his face. ",
"He tried to bring his hands up to block the punches, but his arms were pinned down by a death grip from the man's thighs. ",
"Reece had pummeled Howard's face to a bloody pulp, but stopped himself before beating the weaker man to death. ",
"That would have been too painless an end for the man who sold Reece's troop out to the Taliban out of pure greed. ",
"He took off his leather belt and looped it around Howard's neck like a leash, dragging him off the sidewalk and into the mangrove swamp, the JAG crawling behind him as best he could. ",
"When they were fifty yards from the trail, Howard's arms gave out and he became dead weight. ",
"Reece dropped the belt, letting the man's head fall to the soft ground before picking the lawyer up in a fireman's carry and wading into the water. ",
"The mangroves were like a maze and Reece had to pay attention to find his way back the way he'd come. ",
"He was more than a little relieved when he rounded a corner and saw the bow of the \"borrowed\" Hewes flats boat riding low against the water. ",
"He tossed the semiconscious Howard over the gunwale and bound his hands and feet with flex-cuffs for the ride.",
"\n\nOff the main chain of islands that were bisected by the highway and railroad were numerous islands of varying sizes and shapes that were accessible only by boat. ",
"Reece steered the Hewes northward across the clean waters of Florida Bay in search of a suitable spot away from the prying eyes and ears of civilization. ",
"He didn't have to go far. ",
"The shallow draft of the flats boat allowed him to cross over countless underwater obstacles by simply raising the outboard motor. ",
"Standing on the poling platform in shorts and a T-shirt and moving the boat with a long fiberglass pole, he looked to any observer like just another angler looking for bonefish in this world-class fishing destination. ",
"Reece found a protected cove where he could pull the boat in close to the shore and dropped anchor.",
"\n\nThe admiral's JAG had regained consciousness and was jabbering on endlessly, taking no responsibility for his part in the plot to kill Reece's troop and family, begging for his life, and blaming everyone he could think of for the current predicament. ",
"Reece cut the plastic ties binding Howard's feet and tossed the senior officer over the side, watching him flail wildly until he discovered the water was only chest deep.",
"\n\nReece slid over the gunwale and shoved the naval judge advocate toward the mangrove-tangled shoreline. ",
"Howard tripped constantly on the exposed roots of the native trees and it took them what seemed like an eternity to reach the dry sandy ground of the island. ",
"The JAG fell to his knees in front of a sabal palm tree and began to pray loudly. ",
"Reece looked down in disgust at a man who would seek the help of God after sending so many good men to early deaths without remorse. ",
"Howard's hat had fallen off somewhere, and Reece attempted to grasp a handful of the man's balding hair, but what was left after the military-regulation haircut slipped through his fingers. ",
"On his second attempt, Reece grabbed the petrified attorney by the throat and hoisted him skyward, holding an evil-looking blade in the other hand.",
"\n\n\"Stand the fuck up!\" ",
"he growled as he yanked the captain to his feet and shoved him back against the tree. \"",
"I want you to know what's happening to you. ",
"You are a traitor, a coward, and a disgrace to the uniform you wore. ",
"You served sixty-eight good men up to the enemy on a silver fucking platter so that you could rise alongside that shitty excuse for an admiral. ",
"You are the lowest piece of human shit alive. ",
"Look at me! ",
"Look at me when I talk to you, motherfucker!\" ",
"Just as his enemy had lost control in their quest for power, Reece lost control and succumbed to the primal need for vengeance, all the emotions of the past several weeks boiling to the surface as he stood in front of the Navy attorney who had facilitated the deaths of his men half a world away.",
"\n\n\"I don't know what you're talking about, Reece. ",
"I'm just a JAG. ",
"I don't know what you're saying,\" Howard pled with his eyes closed, blood still streaming down his battered face.",
"\n\nHis denial sent Reece over the edge with rage. ",
"It was time for Howard to die. ",
"Reece slashed him across the lower abdomen with the curved blade of his razor-sharp Half-Face karambit knife, splitting the lawyer's abdominal wall and sending his intestines spilling out onto the marshy ground.",
"\n\nHoward released an animalistic screech and grasped for his bowels, desperately trying to shove them back inside the gaping opening. ",
"The wound bled surprisingly little.",
"\n\n\"My God, my God . . .\" ",
"were the only words he could muster, repeating them over and over in agony, his pleas for divine intervention going unanswered.",
"\n\nReece showed no mercy, dropping the karambit to the ground and pulling his Dynamis Razorback belt knife from his waistband. ",
"He wielded the knife with violent grace, deftly skewering Howard's intestines with the tip of the blade, but carefully not severing them, then jammed the tip of the knife into the soft, pulpy trunk of the tree, tethering the JAG to it with his own entrails.",
"\n\n\"Walk,\" Reece said in a calm voice that contrasted sharply from the screams of rage he'd used just seconds earlier. \"",
"Walk around this tree or I'll gut your kids while you watch.\"",
"\n\nLeonard Howard stumbled forward in shocked silence, making his way slowly around the tree's circumference, all the while wrapping himself tighter and tighter to the trunk with his own intestines, finally collapsing to the ground, convulsing in tears with his back against the trunk.",
"\n\n\"Please, please, don't leave me here. ",
"Please,\" he breathed. \"",
"I'll tell you anything you need to know.\"",
"\n\n\"That's just it, Howard,\" Reece said, leaning in close. \"",
"I've already got what I need. ",
"Now I'm just going to watch you die.\"",
"\n\n\"I . . . ",
"didn't . . . ",
"want . . . ",
"to . . .\"",
"\n\n\"You didn't want to what? ",
"You didn't want to kill my troop? ",
"You didn't want to kill my wife, my daughter . . . ",
"my son? ",
"Not good enough, Howard. ",
"Not even close. ",
"Don't worry, you won't die in vain. ",
"Your death serves a purpose. ",
"You get to send a message to what's left of your band of conspirators. ",
"If you're lucky, you'll go into shock before the rats start eating you alive.\"",
"\n\nGazing up at his killer, Howard remembered the look Reece had given him back in the admiral's office in what seemed so long ago. ",
"Death. ",
"Reece stared into the hollow eyes of the dead man at his feet, his stomach a gaping hole that would provide ample sustenance for the creatures of the swamp. ",
"The bowel smell overwhelmed Reece's nostrils. ",
"Howard was already attracting flies and mosquitos. ",
"The crows and rats would come next, followed by the crabs. ",
"An American crocodile was not out of the question in these parts. ",
"He would probably live for several hours as he was slowly eaten alive by the jungle, so long as his heart held out. ",
"It would be a couple of days before anyone would find what was left of his body and that would be just enough time for Reece to prepare the final stages of his plan.",
"\n\nReece wiped his karambit clean on Howard's soaked pant leg and walked swiftly back toward the boat, the SEAL-designed Razorback blade securing Howard to the tree leaving no question as to the identity of the JAG's executioner.",
"\n\nReece didn't reflect upon what had possessed him to inflict such a ruthless act, but he was a student of warfare; it had come from the deep recesses of his subconscious memory. ",
"The Incas had devised this gruesome method of execution centuries ago in order to send a message. ",
"North American tribes, including the Shawnee, had used it as well. ",
"Sendero Luminoso in Peru adopted it in the 1980s as a brutally effective method to win the minds of locals and dissuade the government from being overly effective in their efforts to eradicate them. ",
"While the indigenous tribes and the modern terrorist group did it to strike fear into the souls of those that opposed them, Reece did it as the visceral act of a man overcome by rage.",
"\n\nLet those whom he hunted lose sleep wondering if they were to meet with a similar fate.",
"\n\n## CHAPTER 60\n\nTHE DRIVE NORTH WAS frustrating. ",
"The lone artery that runs the length of the Keys was choked with tourists, residents, and fishermen towing boats to various points north. ",
"To a man who had just blown up an admiral in his office, shot a federal agent in his bed, decapitated a terrorist, and left a man disemboweled and dying in a mangrove swamp, the stop-and-go traffic was maddening.",
"\n\nReece would be hard to recognize with his hat, sunglasses, and beard but a driver's license check would bring the full weight of U.S. law enforcement scrambling in his direction. ",
"A simple traffic stop would likely result in the end of Reece's mission. ",
"He was careful not to speed when the traffic let up enough for that to be a possibility and he used his turn signals like a teenager trying to pass driver's ed. ",
"North of Key Largo, traffic relented a bit, and the flow northward toward Miami put him slightly more at ease.",
"\n\nReece tensed as the truck reached the southern end of Miami's suburban sprawl. ",
"Aggressive drivers cut in and out of lanes and, at three miles per hour over the posted speed limit, Reece felt like he was driving a farm tractor. ",
"He sped up a bit to stay in the flow of traffic but maintained his position in the right lane. ",
"He glanced down at the folded-up map on his lap and prepared to merge onto the Palmetto Expressway for his return to the airfield. ",
"As he eased the pickup onto the access road for 826, he was suddenly cut off by a tricked-out orange Honda Civic that looked like a prop car from one of the Fast and Furious movies. ",
"He hit the brakes to avoid colliding with the tiny coupe and heard a screech of tires followed by the crunch of metal and plastic. ",
"Reece's head slammed backward in the headrest as the inertia of the rear-end collision pushed his borrowed truck forward and then to a stop.",
"\n\nFuck. ",
"It was a hard hit but Reece was none the worse for wear. ",
"I can't believe this whole thing could go south over a fender bender. ",
"Think, Reece. ",
"You'd better talk your way out of this one.",
"\n\nReece looked in the side mirror to see a morbidly overweight man, roughly his own age, climb down from his lifted Ford Excursion. ",
"The driver was walking directly toward Reece's driver's-side door, as swiftly as his considerable bulk allowed. ",
"Reece took a deep breath and forced a smile as he opened the truck door and stepped out to meet the fast-approaching driver.",
"\n\nThe other man was within arm's reach by the time Reece had his feet on the ground. ",
"Dressed in orange and green Miami Hurricanes athletic shorts and a white tank top that showed off his heavy investment in tattoos, the large man carried himself with the air of a bully, one of those guys who act as if their size comes from muscle rather than fat. ",
"He pointed his finger toward Reece's face and tilted his head forward to look over his mirrored sunglasses. ",
"The man's face was red with anger and spittle flew from his lips as he shouted.",
"\n\n\"Oye! ",
"You wrecked my truck, you gringo maricón!\"",
"\n\nReece raised his hands in mock surrender.",
"\n\n\"Sorry, man. ",
"That guy cut me off, and I had to slam on the brakes to keep from crashing into him. ",
"I'm sure we can work this out, I've got good insurance.\" ",
"I have no idea who this truck is registered to or whether it even has insurance. ",
"I wonder whether USAA will drop me for being a domestic terrorist?",
"\n\nTheir accident was backing up traffic. ",
"Horns were blowing and impatient drivers began crossing the diagonally striped merge lines to drive around them and access the Palmetto. ",
"The man stepped even closer to Reece, well inside his reach.",
"\n\n\"Fuck your insurance, punta, you're gonna pay me for this shit right now or I'm gonna shoot your fucking ass.\" ",
"It was doubtful that this guy had a gun in his elastic waistband but he probably had one in the car.",
"\n\n\"Easy, friend, easy. ",
"Let's just exchange information and get on our way. ",
"We don't need to wait around for the cops to come.\"",
"\n\nA woman, who Reece assumed to be the man's wife or girlfriend, stepped out of the passenger side of the truck screaming in Spanish and waving her arms. ",
"As Reece tried to calm the man down, whatever she was saying appeared to make him even more agitated. ",
"She kept pointing at the damage and screaming while Reece pled with the man to relax.",
"\n\n\"My wife is calling the cops right now, this shit is all your fault.\"",
"\n\n\"We don't need to do that, man, I can pay you cash. ",
"Just follow me to an ATM.\"",
"\n\nThe driver turned his head to look back at his wife.",
"\n\n\"Too late,\" was all he said before Reece's left arm encircled his antagonist's right arm, tying it up and rendering it useless while at the same time driving his right hand straight up, palm open, into the underside of the man's chin. ",
"The force of Reece's blow broke the jaw and destroyed what was probably a bad set of teeth anyway, but more important, it caused the man's brain to hit the back of his skull and bounce back inside his head, sending a shockwave through his nervous system and knocking him immediately unconscious. ",
"The man's knees buckled, and gravity sent all 380 pounds directly downward. ",
"His head smashed on the asphalt street with a sickening thunk. ",
"His female companion jumped from the car screaming, a phone pressed to her ear.",
"\n\nReece leapt into the driver's seat of his truck and pulled the shift lever down into drive. ",
"He slammed on the accelerator and felt the truck strain as the tires spun, barely moving forward. ",
"The accident had entangled the two heavy vehicles into one gigantic train of steel. ",
"Reece put the Dodge in neutral, pressed a button on the left side of the dash to engage the four-wheel drive, and put the truck into its lowest gear. ",
"He accelerated forward, dragging the heavier Ford SUV behind him as the engine raced to produce enough torque. ",
"He knew he couldn't travel far this way, but for now, it was all he had.",
"\n\nI've gotta get out of this truck. ",
"He drove up the sweeping overpass toward the expressway, leaving the fat man's hysterical wife behind, and glanced down at the map to determine his next move. ",
"The map gave him an idea. ",
"As he reached the middle of a long turn, he swerved right and then left as he slammed on the brakes. ",
"The two trucks slid into position, blocking both lanes of the highway overpass from one concrete guardrail to the other. ",
"He engaged the parking brake on the Dodge and put the keys and map into his pocket. ",
"He slid over the bench seat to the passenger side and grabbed his backpack from the floorboard as he opened the passenger door. ",
"Horns were already blowing as he climbed over the guardrail and dangled from the edge. ",
"Fuck me. ",
"Reece released his grip, dropped his chin to his chest, and placed his feet and bent knees together to prepare for what was surely to be a painful impact.",
"\n\nIt had been almost twenty years since the Army black-hat instructors at Fort Benning had taught Reece the parachute landing fall, or PLF for short, but there are some things that you never forget. ",
"The balls of his feet hit the gravel and he rolled to his side, distributing the impact of the fall from his feet, onto his calves, thighs, hips, and back. ",
"The technique, developed to allow rapidly descending parachutists to avoid injury, also worked well for a man on the run to drop from a highway overpass onto the railbed below. ",
"Reece's body had endured lots of wear and tear since his jump school days as a young SEAL, and he lay still for a moment to assess his body's condition. ",
"He felt hurt, not injured, so he rolled into the prone position and up into a kneel. ",
"His right knee buckled slightly as he put his weight on it but he was able to hobble forward with minimal pain.",
"\n\nNone of the commuters seemed to notice or care that a man had climbed onto the Metrorail platform from the rails below. ",
"They were all too engrossed in their smartphones. ",
"A young boy did notice, but when he tried to tell his mother that a man had fallen from the sky and landed on the tracks, she nodded at him while continuing her online shopping spree. ",
"Dadeland was the commuter rail system's terminus, and a train arrived after less than a minute of waiting.",
"\n\nIf anyone outside Miami had ever heard of Dadeland, it was probably because of the 1979 \"Dadeland Massacre,\" a bloody shoot-out in a parking lot that came to symbolize Miami's epidemic of drug violence. ",
"Reece hoped there wasn't going to be a second bloody shoot-out in Dadeland but he was ready, just in case. ",
"He unzipped the backpack to allow him access to his handgun and held the bag down at his left side as he stepped onto the train. ",
"The entire side of the Metrorail car was painted with a Wi-Fi advertisement, which prompted Reece to retrieve his iPhone from the back pocket of his pack. ",
"He prayed they hadn't found a way to track it but he had no choice other than the \"burner\" phone he was saving for a last resort. ",
"He powered up the device, connected to the Wi-Fi signal, and opened the Signal app.",
"\n\nhad to ditch the truck. ",
"on the metro heading north from the Dadeland station green line. ",
"need to plan an extract soon, cops probably looking for me.",
"\n\nLiz Riley must have been looking at her phone since her response came back almost immediately.",
"\n\nI'll make a plan, wait one.",
"\n\nReece pulled the map out of his pocket and began looking at options. ",
"The SEAL in him told him to go to the water but there didn't appear to be a maritime route to an airfield unless he could get ahold of a boat. ",
"He looked up, hearing sirens, but they were headed away from him, toward the crash scene. ",
"His phone vibrated.",
"\n\nUnless you have to bail, stay on the green line until the Okeechobee station—looks like 20 stops. ",
"I'll get a ride and pick you up there.",
"\n\nReece consulted the station map on the wall of the metro car and looked down at the map. ",
"Shit. ",
"I'm gonna be stuck on this damn train forever.",
"\n\nOk. ",
"I'll let you know if I have to divert. ",
"What are you driving? ",
"If it gets hot, leave me and I'll make my own way.",
"\n\nReece moved to the front of the car and leaned against the corner so that he could see the entire space. ",
"Everyone appeared to be engrossed in their phones, and no one paid him any attention. ",
"Apparently between the beard, the ball cap, and the sunglasses, he wasn't recognizable from the media reports he assumed must be out by now, though he had yet to see any.",
"\n\nAs the train worked its way north, Reece examined the South Miami landscape, keeping a sharp eye out for any sign of law enforcement activity. ",
"Then it was through the University of Miami campus, passing next to the baseball field. ",
"He breathed a sigh of relief every time the doors shut and the train continued northward.",
"\n\nThe tracks paralleled U.S. 1 and took Reece north through downtown Miami and its towering skyscrapers. ",
"Reece couldn't believe how the city's skyline had changed since his last visit here. ",
"The ride continued through some slum areas north of downtown before turning westward into mainly residential areas. ",
"From the train Reece could view the roofs of tract homes arranged in perfect grids as far as the eye could see. ",
"The scene reminded him a bit of some of the crowded cityscapes that he'd seen in places like Baghdad and Manila. ",
"After a painfully long train ride, the station diagram indicated that Reece was one stop away from Okeechobee. ",
"He pulled the iPhone out and saw that he had a message alert. ",
"He logged back into Signal and saw a new message from Liz.",
"\n\nOut front. ",
"Black Honda minivan. ",
"All clear.",
"\n\nReece scanned the area around the approaching station as much as possible through the train's windows. ",
"The car came to a stop and the doors jolted open. ",
"A few passengers disembarked quickly and fewer still brushed past them to board the train without a sliver of courtesy or patience. ",
"Reece had figured out the timing of the stops after enduring station after station, staring intently at the screen of his phone as the passengers came and went. ",
"When he knew he had a second or two before the doors began to close, he feigned surprise and sprinted off the car. ",
"Anyone who had been shadowing him from inside the train would be heading off to the next station without him. ",
"A quick glance back at the platform confirmed that no one had exited behind him.",
"\n\nReece pulled his hat down tight to remain as protected as possible from any facial recognition cameras that might be at the station. ",
"Grant money from Homeland Security had helped create a surveillance state in population centers across the nation, and mass transit systems were some of the most popular sites.",
"\n\nThe rail platform was elevated above ground level, which allowed Reece a good vantage point from which to observe the area. ",
"Looking over the rail, he spotted Liz's borrowed minivan idling next to the curb below. ",
"Nothing appeared out of the ordinary, but this was exactly the kind of choke point where ambushes took place. ",
"Reece made up his mind that, if things went bad, he would not involve Liz any further. ",
"She'd done more than enough by now and had long since repaid her debt. ",
"He had a hunch that, at this point in the game, she was helping out of her own anger over the murder of her friend Lauren and her adopted niece, Lucy. ",
"Getting one of the few true friends he had left in the world arrested or killed wasn't part of Reece's plan.",
"\n\nIt's now or never. ",
"Reece took a deep breath and tightened his grip on the handgun inside his backpack. ",
"As he made his way quickly down the stairs, he heard the sliding doors open on the van. ",
"Liz obviously had eyes on the steps in her rearview mirror and had pressed the button to open the automatic doors. ",
"He saw the van's brake lights come on, indicating that Liz had put the vehicle into gear and was ready to go. ",
"He scanned the parking lot as inconspicuously as possible as he walked down the sidewalk that ran parallel to the van. ",
"His knee still throbbed a bit from his PLF onto the platform but he was confident that the injury was relatively minor and he could run if he had to. ",
"As his forward progress brought him alongside the van, he reached in and grabbed the inside handle, slinging himself into the backseat. ",
"The van lurched forward as soon as his feet left the sidewalk, and Liz sped toward the station exit.",
"\n\nReece drew the Glock from inside the pack as the sliding doors began to close, alert for anything out of the ordinary. ",
"Liz turned underneath the rail line and onto West Twentieth Street, making a quick turn left and then gunning the engine to merge onto the Hialeah Expressway. ",
"If the feds were going to make a traffic stop, they would have done it before now. ",
"She glanced up into the rearview mirror through her aviation glasses.",
"\n\n\"You okay, bubba?\"",
"\n\nReece breathed a sigh of relief.",
"\n\n\"Better now. ",
"Thanks for the pickup. ",
"How'd you get wheels?\"",
"\n\n\"FBOs almost always have cars or vans that you can borrow. ",
"They make so much money selling you fuel that they'll do anything to make you happy. ",
"Did you wreck your friend's truck already?\"",
"\n\n\"I did. ",
"I'll tell you about it in the air. ",
"People here drive like shit.\"",
"\n\n\"You've destroyed two perfectly good vehicles in like twenty-four hours. ",
"People are gonna stop lending you stuff.\"",
"\n\nAs they drove eastward, paralleling the Metrorail tracks, it became obvious that they were retracing Reece's path from just minutes earlier.",
"\n\n\"Don't say a word, Reece, I've never been to this city in my life.\"",
"\n\n\"I didn't say a thing, Liz. ",
"Just do your thing.\"",
"\n\nThey turned left at East Eighth Avenue and the neighborhood became even more residential. ",
"It occurred to Reece that if he had to bail out of the vehicle, this maze of houses, fences, and small backyards would make pursuit difficult unless the cops brought in a helo. ",
"He took note when they crossed a small canal, undoubtedly made when the land was drained to make it a hospitable suburbia. ",
"As they neared the airport, the scene became increasingly industrial. ",
"Their path took them through warehouses with loading docks, building supply companies, and auto repair shops. ",
"Reece was pretty sure he'd seen a gunfight scene in an old episode of Miami Vice that was filmed in this area.",
"\n\n\"Anything hit the news about me yet?\" ",
"Reece asked.",
"\n\n\"Not yet. ",
"I figured it would have by now. ",
"They are still saying the attack on the admiral was either terrorism or workplace violence, depending on which news channel you watch.\"",
"\n\n\"They know. ",
"All they need to do is talk to Tedesco's wife, and the pieces will fall into place. ",
"They're probably figuring out their plan before hitting the news outlets.\"",
"\n\nReece could hear a private jet on final approach above them as Liz drove north through an intersection. ",
"The light turned yellow as she crossed the parallel street, and she hit the accelerator so as not to run a red light. ",
"As if in slow motion, the light turned red above them as a green and white Miami-Dade Police Dodge Charger sat at the traffic light to their right. ",
"The police car turned right and sped up behind them.",
"\n\n## CHAPTER 61\n\n\"OH SHIT, REECE. ",
"So sorry.\"",
"\n\nThe Charger maintained its pace just a few feet behind the minivan for an agonizing ten seconds.",
"\n\n\"Maybe he won't pull us over?\" ",
"she said hopefully.",
"\n\nJust then the red and blue light bar illuminated and the siren let loose a short blast that made Liz jump in her seat. ",
"She checked her mirror as she engaged her turn signal and pulled over to the curb.",
"\n\n\"Don't say a word, Reece, and please don't shoot him,\" Liz said, remembering her grandfather.",
"\n\n\"Check.\"",
"\n\nReece faced forward and slipped the Glock under his right thigh, putting both hands on his knees, where they would be easily seen. ",
"Liz put the vehicle in park and removed the University of Alabama ball cap from her head. ",
"She quickly pulled the elastic band from her ponytail and flipped her head side to side to let her hair down. ",
"With her right hand she tugged at her tank top to expose as much cleavage as she could and put on her most seductive smile.",
"\n\nThe officer who appeared at the window was young, fit, and Latin, with a uniform that was meticulously pressed. ",
"Liz thought he looked like a guy you'd see in a Spanish-language soap opera, which made her own acting performance that much easier. ",
"She pulled off her Ray-Bans to give him a look into her blue eyes. ",
"Her ample southern accent became even more pronounced as she addressed the officer while sounding like a character from Gone with the Wind.",
"\n\n\"I am so sorry, Officer. ",
"That light changed, and I didn't know what to do.\"",
"\n\nDespite the gravity of the situation, Reece nearly burst out laughing.",
"\n\n\"Can I see your license, registration, and proof of insurance please, ma'am.\"",
"\n\n\"Yes, sir, of course.\"",
"\n\nShe retrieved her license from a small zippered bag on the passenger seat and opened the glove box to look for the rest of the documents. ",
"When Reece noticed the officer's eyes shift to check out Liz's fit body instead of watching her hands for a weapon, he was pretty sure that her acting job was paying off.",
"\n\n\"This is a loaner van from the airport's FBO, so I hope it has everything in here.\"",
"\n\nShe was relieved to see a short stack of paperwork when she opened the compartment, and grabbed the entire pile. ",
"She thumbed through the documents on her lap and quickly found a Florida vehicle registration sheet and a small insurance card. ",
"She placed her license on top and handed the stack to the stone-faced officer.",
"\n\n\"I'm so sorry, I'm a pilot and had to pick up my client in Miami Lakes. ",
"I don't know this area and was trying to do too many things at once.\"",
"\n\nThe officer glanced at Reece in the backseat and held his stare for several seconds, clearly sizing him up. ",
"Despite his disheveled appearance, Reece put on the most pleasant face possible. \"",
"I'll be right back, ma'am.\"",
"\n\nThe officer retreated to his patrol car, where, Reece assumed, he was running both Liz and the van in his computer database. ",
"They were about to find out very quickly whether he was the subject of a nationwide manhunt and if anyone in the law enforcement community had tied him to Liz Riley.",
"\n\nI don't want to shoot this poor bastard but hope is never a good plan. ",
"If there is even a hint he is onto us, I need to disable him, his vehicle, and his radio and drive east to find a marina. ",
"Steal a boat and head offshore. ",
"Think with your dick, Officer.",
"\n\nReece shifted his eyes between the watch on his wrist and the rearview mirror, counting the minutes and looking for any sign that the officer was making a radio call. ",
"Four minutes passed before the door opened on the police car. ",
"Reece studied the officer's body language as he approached. ",
"His right hand held a metal ticket book, not his sidearm, and his left hand hung calmly at his side. ",
"His stride showed swagger rather than fear. ",
"Any sane human approaching someone who they thought was an armed and dangerous domestic terrorist suspect would approach with more caution or stay in their car and call in SWAT.",
"\n\nThe officer rested the metal ticket book on the van's windowsill where Liz could read it.",
"\n\n\"Ma'am, I've written you a warning for failure to obey a traffic control device, which would have cost you two hundred and four dollars, and three points on your license. ",
"If you're a pilot, you should be more careful than that. ",
"Please sign the warning on the bottom line.\"",
"\n\nLiz leaned forward to sign the warning and made sure to allow the officer as much of a view down her tank top as possible. ",
"It worked, as he paid no attention to Reece whatsoever.",
"\n\n\"That is very understanding of you, Officer. ",
"Thank you so much for not giving me a ticket.\"",
"\n\n\"Yes, ma'am, please have a good day and try to be more careful. ",
"This copy is yours. ",
"If I pull you over again, I'm going to have to write you a ticket.\"",
"\n\n\"Yes, sir, I promise that won't happen.\"",
"\n\nThe officer finally broke into a smile and nodded to Liz.",
"\n\n\"Please have a safe flight, Miss Riley.\"",
"\n\n\"Oh, I will, thank you so much, sir.\"",
"\n\nThe officer was nearly blushing as he turned to walk back to his car. ",
"When he got to the rear of the minivan he came to a dead stop, paused, and turned back toward the window. ",
"Reece subconsciously flexed his right hand and took a deep breath to fight his racing heart rate. ",
"The officer stooped downward so that he had a direct view at Reece.",
"\n\n\"Sir, why don't you have any luggage?\"",
"\n\nReece did his best to force a smile. \"",
"I just flew down here to look at some real estate. ",
"I didn't stay overnight so what little I brought is in the plane.\"",
"\n\nThe officer stared at Reece for a moment, looked back at Liz, and nodded his head.",
"\n\n\"Safe travels.\"",
"\n\nHoly fuck, that was close.",
"\n\nLiz started the van and put it into gear, pulling onto the road before the officer had even returned to his Charger. ",
"Reece felt the surge of euphoria that always followed a life-or-death encounter. ",
"His head began to swim with endorphins the way it usually did after a successful mission or firefight overseas.",
"\n\n\"Reece, do you mind if your pilot for this evening flies intoxicated?\"",
"\n\nReece exhaled a giant lung full of air. \"",
"I'll tell you what, I have never been so glad to have a hot female gym rat for a pilot.\"",
"\n\nLiz looked back at Reece in the mirror and flashed an embarrassed grin. ",
"She immediately pulled her top up and reached over to put her hat on.",
"\n\nTen minutes later, she was all business as she meticulously went through the preflight checklist. ",
"Neither Reece's nor Liz's blood pressures began to return to normal until they were wheels-up over northern Dade County.",
"\n\n## CHAPTER 62\n\nThe Pentagon\n\nArlington Country, Virginia\n\nGENERALS LEWANDOWSKY and Stuart waited in the secure conference room. ",
"They were given specific instructions not to include any deputies or aides in the meeting, which was highly unusual, if not unprecedented. ",
"Lewandowsky was nearing the end of his tenure as the chairman of the Joint Chiefs of Staff. ",
"He had been a stud fighter pilot, one of the few fortunate enough to see air-to-air combat during Operation Desert Storm. ",
"He also played the political game well enough to have risen to the pinnacle of the military food chain. ",
"Mentally, he already had one foot out the door as he looked forward to sitting on a few corporate boards in retirement. ",
"He had a laid-back demeanor that made him well liked among both his fellow generals and the men serving below him.",
"\n\nEwell Stuart was very much the opposite: intense, opinionated, and decisive. ",
"A native of rural Virginia and direct descendant of Civil War general J. E. B. Stuart, General Stuart was probably liked by no one, but respected by all. ",
"He'd spent his early career as an infantry officer in the Ranger Battalions before being selected for the Army's Special xxxxxxx xxxx at Fort Bragg. ",
"He was currently in charge of the Joint Special Operations Command, xxxxx xxxxxxxx xxxx xxx xxx xxxx xxxx xx xxxx xx xxx xxxx xxxx xxxx xxxxxx xx xxx xxxxxxxxxx xxxxxxx xx xxxx xxxxx xxx xxxxx.",
"\n\nNeither man liked or respected Secretary Hartley, though both understood and valued the U.S. tradition of civilian control of the military. ",
"Hartley was a pure politician, checking the SECDEF box to build her credentials for a White House run. ",
"It wasn't just that she was a phony who didn't take the job seriously, it was her blatant practice of funneling every dollar she could muster through her husband's consulting firm that they found so offensive. ",
"If you wanted to sell a fighter jet, aircraft carrier, or armored vehicle to the military, you'd better hire J. D. Hartley. ",
"Want the contract to run the mess hall at Bagram? ",
"Retain J. D. Hartley. ",
"The Hartleys treated the Pentagon like the world's largest ATM.",
"\n\nLike many politicians, Lorraine Hartley had started out with good intentions. ",
"As a college student, with the help of a few of the more radical faculty members, she became outraged at what she came to see as injustices imposed by the U.S. government on countries around the globe. ",
"When she met J.D., she found a partner who would help her change the world. ",
"After J.D.'s election to Congress, their lives transformed dramatically. ",
"Everywhere she went, she was told how great she was, how smart she was, how talented she was. ",
"Before long, she was believing every word of it. ",
"The entitled behavior of both Congressman and Mrs. Hartley became increasingly outrageous, but in D.C. there were always suit-clad enablers willing to keep things quiet. ",
"By the time she was appointed secretary of defense, Madame Hartley had become the epitome of what her twenty-year-old self had sought to stand up against.",
"\n\nBoth men had busy calendars, and it was fifteen minutes after the scheduled meeting time when the SECDEF finally arrived with her deputy secretary and young female aide carrying an iPad. ",
"The message was clear: you can't bring your staff, but I can bring mine. ",
"You weren't supposed to bring electronic devices into a secure room such as this, but neither man was willing to fall on a sword over that point. ",
"She greeted both men with a plastic smile before taking her seat at the head of the conference table. ",
"She was wearing a classic black suit made by St. John Knits, her usual attire. ",
"Her propensity for wearing all black, concocted after a focus group determined she was \"most trusted\" in that color, combined with her sour demeanor, was the reason for her nickname among the military officers who worked around her: \"the Undertaker.\" ",
"Though no one ever dared used the moniker in front of her, her network of civilian rats let her know that she was so named. ",
"The fact that she was viewed as intimidating and insensitive pleased her.",
"\n\nThe Joint Chiefs don't have direct command authority over military units; that structure flows directly from the SECDEF to the combatant commands. ",
"Though previous SECDEFs relied upon the Joint Chiefs for their advice and expertise, Hartley rarely did. ",
"Secretary Hartley acted as if Lewandowsky weren't even in the room as she directed her comments only to General Stuart.",
"\n\n\"I've just come from a meeting with the secretary of homeland security. ",
"The blast that killed Admiral Pilsner came from a suicide vest. ",
"The man wearing the vest was a financier with no terror connections, and he did so because his family was being held hostage.\" ",
"She left out the fact that she'd known Mike Tedesco for well over ten years. \"",
"The man who strapped the vest on him was a SEAL officer, the one who led that shit show in Afghanistan that got everyone killed. ",
"We have reliable information that he's hiding out in some shack in New Hampshire; my people can provide you with the details. ",
"General Stuart, I want your SEALs up there as soon as humanly possible. ",
"One of our contract security firms will send a team to accompany them.\"",
"\n\n\"I'm sorry, ma'am, but, as I'm sure you're aware, the Posse Comitatus Act prevents us from using military forces in such a role on U.S. soil. ",
"This is an FBI mission,\" Stuart responded.",
"\n\n\"I didn't ask you for a legal opinion, General. ",
"I went to Harvard Law School and don't want or need you to tell me what I can and can't do. ",
"I'm telling you to get your SEALs on a plane and get their asses to New Hampshire.\"",
"\n\n\"I cannot give that order, ma'am. ",
"It violates the Constitution.\"",
"\n\n\"Fuck the Constitution!\"",
"\n\nThe SECDEF's aide, who hadn't said a word thus far, glanced up from her iPad and interrupted. \"",
"Actually, Madame Secretary, it's not in the Constitution. ",
"Posse Comitatus is part of the U.S. Code, it's federal law. ",
"It didn't even apply to the Navy until 1992.\"",
"\n\nThe SECDEF looked annoyed at her aide for the correction, but directed her anger back at General Stuart. \"",
"What are you, a fucking Eagle Scout? ",
"You give that order or not only will I demand your resignation and get it, but I will make sure that your beloved command is defunded into obscurity and that your men are reassigned to conventional units. ",
"You will be responsible for the death of special operations.\"",
"\n\nStuart sat back, stunned.",
"\n\n\"What's it gonna be, Stuart, are you gonna give the order or do I have to keep firing generals until I find one that will do his job?\"",
"\n\n## CHAPTER 63\n\nxxxxx xxxxxxx xxxxxxxxxxx xxxxx\n\nxxx xxxx, xxxxxxxx\n\nSENIOR CHIEF FRED STRAIN had sent the recall text out to the Iridium satellite pagers of the operators in his assault team less than an hour ago. ",
"There was no excuse for missing that recall and now each member of his eight-man team was assembled in the conference space attached to their squadron room.",
"\n\n\"All right, guys, this is a frigging crazy one.\" ",
"Fred was trying to stop swearing so much. ",
"He gave it up along with drinking after his wife gave him an ultimatum: stop drinking or leave the Teams. ",
"Fred had stopped drinking.",
"\n\nHe almost shook his head as he chose his next words carefully.",
"\n\n\"We are going after one of our own. ",
"Are you all aware of what happened at WARCOM?\" ",
"Heads nodded up and down. ",
"It had been hard to miss. ",
"The media loved the SEALs these days. ",
"Even before the bin Laden mission catapulted them to cult hero status, there had been movies, books, video games, and other high-profile missions that had brought them into the spotlight. \"",
"You are not going to believe this, but the evidence is pointing to a SEAL as the perpetrator.\"",
"\n\nLooks of disbelief were shared among the group. ",
"Nobody liked WARCOM, and everyone had an intense dislike for the current admiral, but to blow him up? ",
"That seemed a bit out there. ",
"The current working theory in the media was that it was an Islamic terrorist group seeking retribution.",
"\n\n\"Who's the guy, Senior?\" ",
"one of the younger SEALs asked.",
"\n\nFred paused; he almost couldn't bring himself to say it. \"",
"Lieutenant Commander James Reece.\"",
"\n\n\"No fucking way!\" ",
"the younger SEAL shouted, shaking his head. \"",
"No fucking way! ",
"He was my platoon commander before I came here. ",
"Total stud! ",
"Prior enlisted. ",
"He gets it. ",
"No way that guy did this.\"",
"\n\nEnlisted SEALs' contempt for officers was well documented. ",
"Every now and again there would be one who broke the mold, who was admired for his leadership, battlefield prowess, aggressiveness, and character. ",
"James Reece was one such man.",
"\n\n\"Sorry, Smitty. ",
"It looks like it's true.\"",
"\n\n\"Well, if he did this, he had one damn good reason.\"",
"\n\n\"Doesn't matter the reason, Smitty. ",
"He did it. ",
"Plain and simple. ",
"I knew him as well. ",
"We were paired up in sniper school and operated together back in the early days. ",
"As solid as they come. ",
"His family has a long history in the Teams.\"",
"\n\n\"Did he skip the country, Fred? ",
"Is that why they called us in?\" ",
"another SEAL asked.",
"\n\n\"Well, now here is where it gets a bit convoluted. ",
"You are all going to be asked to sign additional nondisclosures for what is about to happen.\"",
"\n\n\"Really?\" ",
"Smitty piped in. \"",
"More nondisclosures? ",
"You mean the hundred other ones we signed don't cover this? ",
"What the fuck, Senior?\"",
"\n\n\"Just listen up, Smitty, and let me get through this.\"",
"\n\n\"Sorry, Senior.\"",
"\n\n\"Okay, this is an unprecedented situation. ",
"This SEAL, who as we can see from what he did at WARCOM, is not your typical officer who just does his two platoons and then goes to a staff job for the next fifteen to twenty-five years—this guy knows what he's doing. ",
"A SEAL domestic terrorist. ",
"It's bound to hit the news soon. ",
"They are still calling it an act of terrorism, but that's going to change in short order, and we want to be up and out of here before it does so it doesn't put him more on edge than he already is. ",
"He is still in the country and the SECDEF wants him apprehended as soon as possible.\"",
"\n\n\"Fred, I haven't been paying much attention to the west coast stuff in the news. ",
"How many people did he kill at WARCOM with that blast?\" ",
"asked one of the Team's more laid-back guys, who looked like he was in a perpetual state of drunkenness.",
"\n\n\"That's just the thing, only two: the admiral and some L.A. finance guy. ",
"The admiral's aide had his eardrums blown out but other than that, no one else was injured. ",
"Apparently he wrapped this L.A. guy in an S-vest, took his family hostage, and made him detonate himself in the admiral's office.\"",
"\n\n\"No way!\" ",
"said the laid-back operator, finally showing signs of waking up. \"",
"That's hard-core shit. ",
"I'm starting to like this guy.\"",
"\n\n\"Cut it out, Paul,\" Fred said curtly. \"",
"This is serious business. ",
"We cannot underestimate him. ",
"This is a mission just like any other. ",
"Put the fact that he is a SEAL out of your minds except in the context that we are going up against a formidable adversary. ",
"He's had a lot of the same training that we have and has seen his share of combat. ",
"Whatever his beef was with the admiral and this finance guy is none of our concern. ",
"What is our concern is planning a mission to kill or capture this HVI,\" he said, intentionally verbalizing the high-value individual terminology used overseas.",
"\n\n\"Hey, Fred, you said he was still in the U.S.,\" commented one of the more thoughtful SEALs in the group. \"",
"How can we go after him here? ",
"Doesn't Posse Comitatus still apply?\"",
"\n\n\"That's where the nondisclosures come in, gentlemen. ",
"SECDEF has suspended Posse Comitatus through an executive order signed by the president. ",
"We will be operating on U.S. soil, using all assets at our disposal to kill or capture our target.\"",
"\n\n\"What? ",
"Can she even do that? ",
"Why us? ",
"Why not just use HRT?\" ",
"the SEAL asked, using the acronym for the FBI's elite Hostage Rescue Team.",
"\n\n\"SECDEF wants us . . .\" ",
"Strain hesitated. \"",
"She wants us because, according to her intelligence sources, Reece's next target is the president.\"",
"\n\nEyebrows went up around the table as the gravity and complexity of the situation unfolded before them.",
"\n\nFred paused, scanning the room. \"",
"If anyone has a problem with going after this target or operating on U.S. soil, let me know now.\"",
"\n\nNobody moved.",
"\n\n\"Okay then. ",
"He's in a cabin in the mountains of New Hampshire. ",
"I don't know how they know this. ",
"The target package is slim. ",
"It says single-source HUMINT with no technical corroboration. ",
"Like I said, this is a weird one. ",
"There is a bird waiting on us at NAS Oceania,\" Fred continued, referencing the naval air station down the road from base. \"",
"We need to be airborne in an hour. ",
"We will cover specifics when we land in Vermont. ",
"From there we will make our way into New Hampshire. ",
"There is no time to more fully vet this or let it develop. ",
"SECDEF wants this done yesterday, and we are the force of choice. ",
"Any questions?\" ",
"Fred looked from one operator to the next.",
"\n\nFred regretted the next words that came out of his mouth as soon as he said them. \"",
"You don't have to like it. ",
"You just have to do it.\" ",
"What a dumbass thing to say, he thought.",
"\n\n\"Smitty, a word please,\" Fred said as the crew got up to grab their gear and head to the airfield.",
"\n\n\"Yeah, Senior?\" ",
"Smitty asked as soon as the door was closed.",
"\n\n\"Smitty, you are one hell of an operator, and I'd want you by my side going through a door anytime.\"",
"\n\n\"But . . . ?\"",
"\n\n\"But, you won't be coming with us on this. ",
"And,\" the Team chief quickly added, \"before you protest or say anything else, this is not your decision. ",
"I am ordering you off the mission. ",
"I can't have guys that know and respect Reece on this op. ",
"I know you understand.\"",
"\n\nSmitty tried to hide the relief on his face. ",
"He was conflicted like never before. ",
"He couldn't let his Team down, nor could he go after the man he looked up to as the best combat leader he had ever worked with, someone he would follow into the fires of hell. ",
"Taking the decision out of his hands was the sign of a good leader.",
"\n\nSmitty simply nodded, bowed his head, and walked from the room without his usual energy.",
"\n\nFred took a breath. \"",
"Son of a bitch,\" he whispered to no one but himself. ",
"Taking another deep breath, he strode from the room to ready his gear.",
"\n\n## CHAPTER 64\n\nThe Pentagon\n\nArlington County, Virginia\n\nTHE STORY PREEMPTED EVERY network broadcast and monopolized the cable news channels. ",
"Off-the-record quotes from \"senior officials\" at the Department of Defense were used to tease the story, ensuring massive coverage. ",
"Anchors gave viewers a countdown to the prime-time press conference that would be given by Secretary of Defense Lorraine Hartley, while reporters broadcasting from the dozens of satellite trucks crowded in front of the gates of the Naval Amphibious Base Coronado referenced reports of a \"domestic terrorist\" being responsible for the blast that killed decorated SEAL Admiral Gerald Pilsner.",
"\n\nAt 8:00 p.m. Eastern Time, Secretary Hartley strode confidently toward the blue lectern at the Pentagon in a somber black suit. ",
"Her face exuded competence and control, a steady hand during these tragic times. ",
"Never let a tragedy go to waste. ",
"All that was missing from the scene, she thought, was the Presidential Seal on the podium.",
"\n\n\"My fellow Americans,\" she began in a voice devoid of her usual New England accent. \"",
"It is with great sadness that I address you today to report yet another case of violent extremism in this great nation. ",
"This week a respected California businessman's family was held hostage by a domestic terrorist who forced the man to wear a suicide vest onto a military installation. ",
"This act of terrorism took the life of a great American hero and the commander of all U.S. Navy SEALs, Admiral Gerald Pilsner. ",
"Tragically, the admiral's killer was one of his own SEAL officers, a disgraced extremist veteran who faces criminal charges for his negligence as a commander in combat, negligence and incompetence that lead to the deaths of over sixty SEALs, Army Rangers, and Army pilots and air crewmen. ",
"It was, and is, the worst special operations disaster in American history. ",
"The man responsible for this unprecedented disaster is Lieutenant Commander James Reece. ",
"It is thought that his guilt over the ambush in Afghanistan drove him to target Admiral Pilsner and it is suspected that he is also responsible for several other murders over the past weeks in Southern California, including the atrocious slaying of a peaceful Muslim cleric and another vicious killing just this week in the Florida Keys where he took the life of another American hero, U.S. Navy Captain Leonard Howard.\"",
"\n\nSecretary Hartley paused for dramatic effect, the silence broken only by the shutter clicks of the print photographers' cameras.",
"\n\n\"Lieutenant Commander James Reece is at large and should be considered well armed and extremely dangerous. ",
"A nationwide law enforcement effort to locate and arrest him is already in progress but, unfortunately, the labors of our brave men and women in law enforcement are being hampered by extremists on the right who have put so-called privacy concerns over the safety of Americans from the scourge of terror. ",
"I have asked the president to sign an executive order enacting various emergency measures necessary to catch Mr. Reece and prevent others like him from murdering their fellow citizens. ",
"I also call on Congress to act swiftly to pass the bipartisan Domestic Security Act so that we can all live safely and without fear. ",
"Since 9/11 we have looked outward for the threats of terror. ",
"This xenophobic focus on so-called foreign terrorists has caused us to overlook the true threats to liberty brewing here at home. ",
"Extremists such as Timothy McVeigh, Randy Weaver, Eric Rudolph, and James Reece should be the real targets in our fight against terror. ",
"I stand ready to defend this nation from all enemies, foreign and domestic, and with your help, we will bring James Reece to justice, or we will bring justice swiftly down upon him. ",
"I'll take your questions.\"",
"\n\nAn attractive female reporter from one of the networks stood and was recognized for a question spoon-fed to her earlier by Hartley's Press Secretary.",
"\n\n\"Secretary Hartley, is it true that Commander Reece's pregnant wife and daughter were murdered in their home several weeks ago and that James Reece is suspected of committing those murders?\"",
"\n\n\"That's right, Meredith, and, yes, we do suspect that he was involved. ",
"This also brings up another point about the mental health of our men and women in uniform. ",
"Mental health and PTSD are serious issues that we as a nation must address. ",
"I call on our scientific community to dedicate their resources to addressing these problems. ",
"We need to declare war, not on members of our community who are of a certain religion, but on post-traumatic stress disorder. ",
"Next question, yes, Andrew?\"",
"\n\nAndrew Harrison was a reporter and legal expert for one of the cable news networks.",
"\n\n\"Secretary Hartley, can you confirm that James Reece used 'assault weapons' with high-capacity clips for some of the murders in California?\"",
"\n\n\"Yes, Andrew, we know that he used a military-style AK-47 machine gun with an illegal clip to kill a Muslim American cabdriver in Los Angeles. ",
"That man's only offenses were having dark skin and worshipping a different God. ",
"Now his wife is without a husband and his children are without a father. ",
"One more question.\"",
"\n\nWilliam Brantley was the elder statesman of American broadcasters, with a career that spanned back to his time as a young war correspondent in the closing days of the Vietnam War.",
"\n\n\"Madame Secretary, perhaps this isn't the time for such a question, but you've led this nation steadfastly through so many tragedies. ",
"Will you announce for us your intention to run for president of the United States?\"",
"\n\nDon't lay it on so thick, William. \"",
"Thanks, William, but this isn't about me. ",
"This is about the American heroes who have paid the ultimate price to defend our nation. ",
"This is about bringing a terrorist to justice. ",
"Thank you all, God bless the victims of these tragedies, and God bless the United States of America.\"",
"\n\nThe secretary stood for a full five seconds and stared into the television cameras before turning to exit stage right.",
"\n\nI nailed it.",
"\n\n• • •\n\nAngels Camp, California\n\nKatie Buranek watched the secretary's speech, aghast. ",
"She was a bit shocked that Reece had apparently turned Mike Tedesco into a human claymore mine in Pilsner's office, but even more, she was disgusted by the outlandish allegations made against him. ",
"She could buy that he'd killed Pilsner and Tedesco, God knew they had it coming, but there was no way that he had anything to do with the death of his wife and child. ",
"She knew firsthand that the story about Reece \"murdering\" the cabdriver was a lie, even down to what type of weapon he'd used. ",
"She was also confident that Reece was no extremist. ",
"He never once mentioned politics in any of their conversations. ",
"To paint a hero like James Reece as a xenophobic fascist was an affront to everything she knew about the man and his family, whom she so admired. ",
"It was time for her to get in the fight, this time wearing her journalist hat, working an editorial that would likely be the sole voice against the Hartleys' massive public relations machine.",
"\n\n## CHAPTER 65\n\nCoös County, New Hampshire\n\nFRED STILL BELIEVED IN the Constitution. ",
"He had dedicated his life to supporting and defending it. ",
"Like many senior enlisted SEALs, Fred had his college degree. ",
"Unlike most SEALs, he was also working on a master's degree in philosophy, of all things. ",
"He loved history, specifically the history of warfare, but he tempered that with the peace that studying philosophy brought him. ",
"His guys sometimes called him the warrior-poet, a title he wore with honor. ",
"That the president and SECDEF had suspended Posse Comitatus bothered him. ",
"He was old enough to remember the fiascos that were Waco and Ruby Ridge in the early 1990s. ",
"He was just a kid at the time but remembered the political firestorm that ensued when it was discovered that XXXXXXXXXX advisors had been on the ground assisting the ATF at Waco. ",
"Federal government overreach was still something about which most Americans were extremely apprehensive.",
"\n\nWhat had caused Fred even more concern was the group of men who met him and his team at Mount Washington Regional Airport in New Hampshire. ",
"Twenty private security contractors from a firm called Capstone Security were awaiting him. ",
"A call back to his command confirmed that the SECDEF had already personally called to ensure the SEALs would support the contractors. ",
"The reason for the support role, he was assured, was some legal necessity related to Posse Comitatus. ",
"Fred was enraged. ",
"This was complete bullshit. ",
"These security contractors were not here to apprehend Reece, they were here to assassinate him. ",
"Fred knew the law and understood the Constitution. ",
"He also knew he had pledged an oath to obey the orders of those appointed over him. ",
"It was these two conflicting allegiances that gnawed at his soul.",
"\n\nSpeeding over mountain roads brought him back to the moment.",
"\n\n\"Slow down, Clarke,\" he ordered gruffly. \"",
"We need to get to the target in one piece.\"",
"\n\nThe UAV on loan from Department of Homeland Security showed no signs of life at the mountain cabin. ",
"Far removed from the paved roads of the New Hampshire countryside, it looked like an idyllic retreat, at least from the feed Fred was watching on the iPad mini in his lap.",
"\n\nFred moved his HK 416 rifle to the side and tapped the transmit button on the MBITR radio secured in the gear on his plate carrier. \"",
"Lead, slow it down,\" he cautioned to the first vehicle in the convoy.",
"\n\nThey all wore their gray shipboarding kit, minus any flotation, so as not to look overtly military. ",
"The gray, nondescript uniforms made them appear more like a big-city SWAT team than a group of battle-hardened SEALs. ",
"The only giveaway was that each operator's helmet did not match the unexceptional gray of their uniforms and body armor. ",
"Operators could become attached to their helmets. ",
"Helmets of multicam or AOR1 desert digital camo sat in their laps so as not to alert local citizens that war had come to town.",
"\n\n\"What? ",
"You getting too old for this, Senior?\" ",
"quipped one of the newer members of the team from the backseat of the rented Suburban.",
"\n\n\"No. ",
"I just want us all to arrive at the drop-off point alive.\"",
"\n\n\"Good copy, Senior,\" responded the younger man.",
"\n\n\"Hey, Senior, why didn't they just use local cops to get this guy. ",
"I heard what Smitty said about him being a good operator and all, but he's only one guy and he's just a vanilla SEAL,\" Clarke said, using the unofficial, semiderogatory term XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX used to describe those SEALs and Army SOF operators not in their particular units.",
"\n\n\"Hey!\" ",
"Fred responded with more emotion in his voice than he intended. \"",
"This guy is not just a vanilla SEAL, and you know I hate that term. ",
"He is an HVI. ",
"A domestic terrorist. ",
"He is our targeted individual. ",
"Do not underestimate him, do you understand?\"",
"\n\n\"Understood, Senior.\"",
"\n\n\"That goes for everyone,\" Fred said, clicking his radio once more. \"",
"Listen up, gentlemen. ",
"We are one hour out. ",
"Do not, I say again, do not underestimate this guy.\"",
"\n\n\"Good copy,\" came the trail vehicle's reply.",
"\n\nFred settled back into his seat. ",
"The rental Suburban and Tahoe would get them as far as a drop-off point on the opposite side of a steep mountain behind the cabin. ",
"From there they would patrol in to observe from high ground. ",
"Then they would make entry under the cover of darkness and apprehend America's most famous domestic terrorist.",
"\n\n• • •\n\nReece knew they would come. ",
"He didn't know how many or exactly when, but he knew they would come. ",
"He spent little time pondering whom they would send. ",
"Would it be private contractors? ",
"A possibility, considering the resources of the conspiracy in which he found himself an unwitting pawn. ",
"Local sheriff? ",
"Reece hoped not. ",
"FBI Hostage Rescue Team? ",
"A probability, considering they had the authority to operate on U.S. soil. ",
"XXXXXXXXXXXXXXXXXX Maybe, depending on how desperate the SECDEF had become.",
"\n\nWhoever came for him was a part of that conspiracy. ",
"They were coming to prevent him from completing his mission and that was something Reece could not allow.",
"\n\nReece felt no allegiance to anything or anyone. ",
"His sole purpose was to make those who killed his family account for what they had done. ",
"They had taken everything from him. ",
"Now it was his turn.",
"\n\nWhen they came for him, the last piece of the puzzle would fall into place. ",
"Reece prayed he was wrong, but even before he heard the helicopter he knew he was not.",
"\n\nHis pursuers were instruments of a group of conspirators who had subverted the system for their own benefit. ",
"Power and money were formidable motivators to those in life with no purpose other than their own self-aggrandizement. ",
"Had Reece died in Afghanistan as they had planned, his family would still be alive, Horn and his cronies would be more wealthy than most ever dreamed possible, Admiral Pilsner would be on his way to a seat on the Joint Chiefs of Staff, and Lorraine Hartley would be on her way to the presidency. ",
"Unfortunately for all of them, Reece was still alive. ",
"He was alive and set on a reckoning, one that would see them all to early graves.",
"\n\nHe was nearing the end of his journey and would soon join his wife and daughter. ",
"Just a few more people to kill, and, if he was right about an approaching assault force, there would be one more name to add to the list.",
"\n\nFrom his elevated position Reece had a clear view of the road leading to the remote dirt turnaround area where it appeared that hikers sometimes parked their cars. ",
"This time of year it was empty.",
"\n\nReece heard the rotors of the chopper well before he saw it. ",
"Even at this distance Reece knew what it was. ",
"The helicopter didn't surprise him, though they should have kept it farther back until the assault had commenced. ",
"What surprised him was the number of people they sent. ",
"The lead black Suburban was followed by a Chevy Tahoe and two ten-pac passenger vans. ",
"Reece watched them exit their vehicles and gather into a loose formation. ",
"These were no hikers or Boy Scouts on a field trip. ",
"These were the men sent to kill him. ",
"It was an odd conglomeration of what looked to be military or paramilitary forces and private contractors. ",
"A few stood out as professional soldiers, while others appeared to give off an air of invincibility and arrogance. ",
"Two even lit up cigarettes. ",
"He counted close to thirty attackers.",
"\n\nIt was time. ",
"The enemy had massed, was unaware, and was in the kill zone. ",
"Reece picked up the MK 186 wireless firing device that he had linked with a string of six claymore mines yesterday morning. ",
"The MK 186 was bulky and old but it worked. ",
"He had set them up in a classic L-shaped ambush, adhering to the old military adage Keep it simple. ",
"The Mk 48 7.62 machine gun lay next to him along with his M4 with M203 grenade launcher and two LAW rockets.",
"\n\nHe looked back at the force readying to kill him and armed the MK 186 with the push of a button. ",
"In this game, you lived by the sword and died by the sword. ",
"The men 150 yards away and below him knew that well. ",
"It was their turn to die by the sword.",
"\n\nSomething stopped Reece cold. ",
"He pushed disarm on the MK 186 and picked up his binos. ",
"Something about the way one of the men below moved gave him pause. ",
"It looked to be the leader wearing gray op cammies and gear. ",
"A bit of a beard and longer sandy hair gave him the appearance of a contractor, but his demeanor suggested something else. ",
"Reece focused the binos in on the man who was seconds away from being eviscerated into eternity.",
"\n\nDamn it, Fred, what are you doing down there? ",
"Reece thought, looking down at his old sniper school partner. ",
"Some of them are your brothers, Reece. ",
"They're hunting you, but they don't deserve to die today. ",
"They have no idea the part they are playing in this game.",
"\n\nWithout another thought, Reece dropped the binos, grabbed his M4, and disappeared into the bush, leaving an empty target for Freddy Strain to ponder.",
"\n\nOnly one person on earth knew he was going to the cabin.",
"\n\nReece now knew the final name to add to his list.",
"\n\n## CHAPTER 66\n\nKATIE BURANEK'S STORY WENT live on a lesser-known, though legitimate, news site at 5:00 a.m. Eastern Time. ",
"Her more mainstream outlets wouldn't touch it, fearing backlash from the administration in the name of limited access and IRS audits. ",
"Drudge picked it up by 6:00 a.m. and it was on all of the morning political talk shows an hour later. ",
"The conspiracy theorists bought into the story hook, line, and sinker. ",
"Talk radio hosts were jumping up and down over it by noon. ",
"Stories like this popped up all the time, but Katie's credibility as one of a few true investigative reporters left in the business gave this one legs.",
"\n\nShe didn't make accusations, despite having the evidence to do so, but instead asked the readers to think for themselves. ",
"What was a Bentley-driving political bundler with close ties to the Hartleys doing in the WARCOM admiral's office in the first place? ",
"Why didn't the secretary of defense acknowledge her close relationship with Tedesco during her remarks? ",
"Why would a highly decorated SEAL with a half-dozen combat deployments suddenly go rogue and start taking out members of his chain of command? ",
"She had on-the-record quotes from former commanders, peers, and subordinates of Reece who all agreed that he would never do such a thing, a few throwing in the caveat \"without a really good reason.\" ",
"They also agreed, to a man, that he would have never hurt his wife and daughter. ",
"And why would the SECDEF not accept the alibi that he was at Balboa Naval Medical Center when his family was killed, as the police investigators did? ",
"Why deal in facts when you can simply issue statements that the media will parrot?",
"\n\nKatie posed questions about Capstone Capital and its status as one of J.D. Hartley's clients. ",
"Why was a California-based private equity firm getting an annual $100 million appropriation out of his wife's budget? ",
"Wasn't the idea of having the spouse of a cabinet secretary lobbying her agency fundamentally corrupt? ",
"These questions, which the Hartleys had successfully avoided in the past, were now too juicy for the mainstream press to ignore and could seriously damage her chances of becoming the next president.",
"\n\nHartley's communications staff was in full crisis mode, putting far more time and effort into this story than they ever did to any Pentagon issue. ",
"Though Hartley's close advisors were all technically DOD employees, they were political professionals who had followed her into the job and would follow her out. ",
"They decided that the best course of action was to stonewall and retaliate. ",
"They refused to acknowledge that the article, which they dismissed as \"fake news,\" raised any real issues of substance and they attacked Buranek as a \"conservative bomb-thrower,\" despite her history of equal criticism of both political parties. ",
"The secretary herself made no official statement in response to the article, instead coordinating a contrived scene with a friendly reporter as she and her staff walked into the White House for a briefing.",
"\n\n\"These people have been attacking J.D. and me for years and they've always lied. ",
"Conservatives can't swallow that the real threats to America are among their own ranks. ",
"They're focused on foreign 'threats' when we are radicalizing our own citizens into extremism through talk radio and the Internet. ",
"This blogger is part of the problem, not part of the solution. ",
"We can be free from this fear with the passage of the Domestic Security Act.\"",
"\n\nChew on that, Katie whatever your name was.",
"\n\n## CHAPTER 67\n\nBennington County, Vermont\n\n\"WHAT KIND OF a shopping list is this, Reece?\" ",
"asked a skeptical Liz Riley.",
"\n\nReece smiled. \"",
"It's one for the ages, Liz. ",
"Any questions about it?\"",
"\n\nLiz and Reece had flown from Florida to a small private airport in Vermont used mostly by retired locals with a passion for flying and a few wealthy families from New York and Connecticut who liked to escape to the woods on the weekends. ",
"They were able to rent a small private hangar to use as a home base while preparing the final phase of their mission. ",
"Liz arranged it en route and explained to the manager that they were doing a site survey for her boss for an upcoming retreat. ",
"After Reece aborted the ambush of the assault force sent to take him out at Ben's cabin, he made his way back to Liz at the airfield to begin final preparations for the remainder of the list.",
"\n\n\"A glassware chemistry set? ",
"Round-bottom flask? ",
"Catch flask? ",
"Clamps?\"",
"\n\n\"It's for distillation,\" explained Reece.",
"\n\nLiz raised an eyebrow and continued, \"plastic five-gallon bucket, a wooden broom, fertilizer, high-yield stump remover, Liquid Fire drain cleaner, a bedsheet set, a string of Christmas tree lights, a hot glove, fifteen-inch-long, six-inch-diameter plastic PVC pipe with collar; copper bowls, coffee filters, candles, cold packs? ",
"You sure you need all this?\"",
"\n\nReece just nodded. \"",
"Any questions?\"",
"\n\n\"Let me see: um, concrete cleaner, pool cleaner, hydrogen peroxide, a set of shot glasses, a heat lamp, a wireless doorbell? ",
"Are you doing what I think you are doing, Reece?\"",
"\n\n\"Probably. ",
"Don't worry, Liz. ",
"This is for one person in particular. ",
"It will be precise and is meant to send a message.\"",
"\n\n\"You certainly know how to send a message, my friend. ",
"Okay, I'm on it. ",
"Guessing you want me to spread this around and not pick it all up at Terrorism 'R' Us?\"",
"\n\nHe ignored her attempt at humor. \"",
"I've already identified the chemistry equipment on Craigslist. ",
"Just explain that your high school kid loves science and asked for a set for his birthday. ",
"Pretend like you have no idea what it's for. ",
"Everything else, spread out and pay cash. ",
"We still have plenty from the stash that Marco gave us. ",
"I have a list of stores here that should carry what we need,\" Reece said, handing Liz the list, which included addresses. \"",
"It's going to be a long day, Liz. ",
"Even though you could get all this stuff between a couple of hardware stores, a nursery, and a Radio Shack, visit multiple stores in multiple towns so it doesn't look like you are doing what you are actually doing.\"",
"\n\n\"Is making this thing dangerous? ",
"I don't want you to blow yourself up. ",
"Or me, for that matter.\"",
"\n\n\"It's not without danger, I'll tell you that. ",
"Remember the EFPs in Iraq?\"",
"\n\n\"Of course. ",
"Those fucking things,\" Liz said with disgust, shaking her head.",
"\n\nThey both knew people killed and others maimed for life from the plague of explosively formed penetrators. ",
"A basic and effective weapon, EFPs consist of pipes, explosive chains, and metal plates that, when detonated, turn into molten slugs or \"penetrators,\" focused from the high-velocity force of the charge and allowing them to slice through armored vehicles with ease. ",
"Although developed in World War II and later tested extensively by Hezbollah in Lebanon, they really came into their own and into the public consciousness following the invasion of Iraq. ",
"With significant assistance from Iran, they were smuggled into Iraq across centuries-old ratlines, predominately to Shiite militias and Badr Brigade splinter groups. ",
"Introduced to that theater in force in 2005, they would defeat the world's most technologically superior armor, causing death, destruction, and psychological terror. ",
"One of the deadliest asymmetrical weapons used against Allied forces in modern times, EFPs and other Improvised Explosive Devices accounted for more than 50 percent of all U.S. causalities in Iraq and Afghanistan and untold suffering from the 33,000 physically wounded. ",
"The corresponding psychological toll was incalculable, but extended well into the hundreds of thousands.",
"\n\nFor a minor investment in personnel and material, the enemy was able to bring a superpower to its knees. ",
"This rudimentary, cheap, and relatively small tactical weapon caused damage far in excess of its size and became a weapon of strategic importance. ",
"Reece had spent years of his life pressuring the enemy threat network in Iraq, mapping out, dismantling, and destroying IED cells throughout the country. ",
"Now, on home soil, he planned to turn this weapon against one of the men who stood to profit from the deaths of his troop and his family.",
"\n\n\"And I need you to do me a big favor, Liz. ",
"I need you to get in touch with Raife.\"",
"\n\nLiz paused. ",
"Raife had been like a brother to Reece in the Teams. ",
"They had met in college and entered the Navy together, one as an officer and one enlisted. ",
"An event in Iraq years earlier had caused Raife to leave the SEAL teams under circumstances no one but Reece fully understood.",
"\n\n\"Are you sure that's a good idea? ",
"Do you think he will help?\"",
"\n\n\"I know he will. ",
"It will just be better coming from you. ",
"You might have to do a little sleuthing to track him down. ",
"You can get to him through his family offices if you get creative. ",
"I hate to add this to everything else I need you to do today, but it's the only way.\"",
"\n\n\"I got it, Reece. ",
"I still have his sister's contact information, so I'll get through to him somehow.\"",
"\n\n\"Great. ",
"When you do, read him this,\" Reece said, handing Liz a folded-up note. \"",
"It's detailed instructions and a big ask, but I know he'll do it.\"",
"\n\n\"I sure hope so,\" Liz said, reading through the note with a hint of skepticism in her eyes.",
"\n\n\"Oh, and we need a Sprinter van.\"",
"\n\n\"Oh, just a Sprinter van?\" ",
"Liz quipped.",
"\n\n\"I located a used one online not far away. ",
"It doesn't have the New York plates that I'm looking for but we can steal some along the way.\"",
"\n\n\"Won't buying it in cash seem suspicious?\"",
"\n\n\"Possibly. ",
"It's a year old and it looks like the guy just needs money. ",
"If it does arouse suspicion, by the time it's followed up on it will be too late. ",
"I just need something that can blend into the New York delivery vehicle scene, and this should be perfect.\"",
"\n\nLiz looked at the floor, opened her mouth to say something, and then stopped.",
"\n\n\"Liz?\" ",
"inquired Reece.",
"\n\n\"James, what happens when this is over?\"",
"\n\n\"Focus on the mission, Liz.\"",
"\n\n\"I knew you would say that,\" she said with a hint of disappointment in her voice.",
"\n\n\"I'm sorry you are so deep into this, Liz. ",
"That was never my intention and it's my one regret about this whole thing.\"",
"\n\n\"Fuck you, James. ",
"I am in this because I choose to be. ",
"I want to be here and I want to take these guys down. ",
"They have it coming.\"",
"\n\nReece nodded. \"",
"First thing we need to do is get you a wig or something for your shopping spree today. ",
"They will eventually piece this together, Liz. ",
"Have no misconception about that. ",
"A disguise might just slow them down a bit. ",
"I've talked with Marco. ",
"When this thing goes south—and Liz, it will go south—he's got a place for you in Mexico. ",
"I've been there. ",
"It's not the States, but you will run his Mexico flight operations and live on his estate south of Puerto Vallarta. ",
"He has lawyers who can help work on a deal to get you back to the U.S. and keep you out of prison. ",
"Whatever they tell you to tell investigators about me, do it. ",
"Unfortunately, that's the best I can do for you.\"",
"\n\nLiz bowed her head again. ",
"It was a lot to take in.",
"\n\n\"Focus on the mission, Reece,\" she said, turning to go borrow the airfield's loaner car.",
"\n\n• • •\n\nIt took Liz a full day and into the evening to track down everything on Reece's grocery list. ",
"They had driven together to the home of the man selling the Sprinter van. ",
"Apparently his wife was not as excited about converting it into a small camper van as he was, so he was selling it to get them something she would enjoy as well. ",
"He had purchased it as a cargo van so he could outfit it himself, which made it ideal for the job Reece had in mind. ",
"If he thought it was odd that Reece stayed in the airport's vehicle, he didn't let on. ",
"He was just happy someone was willing to pay cash for his impulse buy. ",
"After Liz acquired the Sprinter she switched vehicles with Reece and began her quest for the items on her shopping list.",
"\n\nWhen Liz returned to the hangar later that evening she found Reece securing something to the inside of the Sprinter van. ",
"It was a desk he had liberated from a small office attached to the hangar. ",
"On the wall of the hangar was the outline of what appeared to be a large SUV.",
"\n\n\"What's up, Reece?\"",
"\n\n\"Just getting prepped. ",
"How'd it go? ",
"Any problems?\" ",
"Reece asked.",
"\n\n\"Surprisingly few. ",
"I did some quick research on the more obscure items and came up with a backstory in case anyone started asking questions. ",
"Most of the guys were extremely helpful.\"",
"\n\n\"I'll bet,\" Reece said with a knowing gleam in his eye.",
"\n\n\"They all just seemed happy someone was buying their stuff,\" Liz said with a grin.",
"\n\n\"Great. ",
"And how'd it go with Raife?\"",
"\n\n\"I got through to his sister, Victoria. ",
"She gave me his current contact numbers and said she would pass on the information. ",
"We also coordinated a place for me to drop off your gear for Raife after we part ways here. ",
"That was the best I could do.\"",
"\n\n\"He'll take care of it.\"",
"\n\n\"I sure hope so. ",
"How's your science experiment preparation going?\"",
"\n\n\"I'll be able to build the device with the materials you picked up today. ",
"Remember the July seventh bombings in London a few years back? ",
"Similar stuff. ",
"Though this one will be targeted and more precise. ",
"I am in no way an explosives expert, so I want you to stay clear as I do this. ",
"I could very well blow myself sky-high.\"",
"\n\n\"You're a Navy SEAL, for Christ's sake. ",
"Can't you build a bomb that won't blow us up?\"",
"\n\n\"We have EOD guys that are the real experts in this sort of thing. ",
"I learned all this from studying the enemy overseas, taking down their bomb factories. ",
"They don't quite take the precautions we would here in our explosives courses in the States. ",
"Every now and then the enemy would do our job for us and blow themselves up by being careless. ",
"I wish I had a few more blocks of C-4, but I used what I had on the admiral, and my claymores are back in the New Hampshire woods, so I'll have to do this the insurgent way.\"",
"\n\n\"What's this?\" ",
"Liz asked, pointing to the vehicle outline on the wall.",
"\n\n\"J. D. Hartley moves around New York in an up-armored Suburban. ",
"It's a serious setup. ",
"Withstands up to 7.62 ammunition and even smaller IEDs. ",
"We used the same ones protecting the interim Iraqi government officials back in Iraq. ",
"It seemed like everyone wanted to kill those guys. ",
"Anyway, that is a measured outline of a Suburban. ",
"I want to know exactly where I have to stop the van to line up the EFP I'll have secured on the desk in the back. ",
"The explosive will turn the copper bowl you purchased into a molten slug, which will cut right through the armor—and right through J. D. Hartley.\"",
"\n\n\"What if he has someone with him?\"",
"\n\n\"Then it just wasn't their day.\" ",
"He paused, \"Liz, I'll do everything I can to make sure it's just Hartley.\"",
"\n\n\"When is this going down, Reece?\"",
"\n\n\"A reporter friend of mine contacted a paparazzi photographer she knows in New York City to ask about Hartley. ",
"She said she was doing a piece on him and wanted some up-to-date on-the-ground information. ",
"Apparently he is spending his nights with a blonde real estate agent in SoHo. ",
"I even have the address.\"",
"\n\n• • •\n\nLiz watched Reece from across the hangar. ",
"If he blew himself up, he did not want her to die as well. ",
"She watched as he cautiously emptied fertilizer into a bucket of water, stirring it with the broom handle before adding a golden-red fluid from the chemistry set catch flask. ",
"He then slowly poured what had then transformed into a milky white froth onto one of the bedsheets he had strung between a set of chairs. ",
"To Liz it reminded her of the jellies she would make with her grandmother as a child, watching the liquid slowly drip through cheesecloth over the kitchen table. ",
"Reece focused the heat lamp on the bedsheet and then moved to a table farther away from the concoction he had just created, presumably to limit the damage in case the next batch did not go as planned. ",
"From her vantage point, it was difficult for Liz to tell what he was doing. ",
"She could see him mixing shots of what appeared to be the pool and concrete cleaners with nail polish remover into the chemistry glassware, swirling it around and then pouring it into a coffee filter he had secured over a round-bottom flask. ",
"She could tell he was being as meticulous as possible during this portion of the process and she wondered whether this was the part where terrorists sometimes unintentionally exploded.",
"\n\nWith pliers he pulled the bullet out of a 5.56mm cartridge case and poured the powder on the table. ",
"Liz was transfixed, thinking that at any moment she might watch as the man she was closest to in this world entered the next. ",
"From a string of red, green, yellow, and blue Christmas tree lights, Reece cut a single bulb, heating up the end with a candle, before dipping it into water to break off the tip. ",
"She knew this was a delicate part of the procedure as she watched Reece pack the cartridge case with his newly created mixture and place the broken light inside, securing it with hot glue. ",
"It dawned on her that from elements that usually brought happiness and joy, Christmas and swimming pools, Reece was brewing up a mixture of death.",
"\n\nWhen he was done, Reece stood and slowly moved away from the table. ",
"He looked tired and relieved.",
"\n\n\"That went well,\" he said. \"",
"The good old 'mujahideen slam.' ",
"And, we're even still alive.\"",
"\n\n\"Will wonders never cease,\" Liz replied, obviously as relieved as he was.",
"\n\n\"It will take at least overnight to dry the urea nitrate on the bedsheets. ",
"That's the equivalent of TNT and will be the primary explosive. ",
"The heat lamps should help speed up the process. ",
"The dangerous part is done. ",
"Tomorrow I'll pack the PVC pipe with the explosive and place the copper bowl under the collar, set the firing cap I just made into the back, and attach the lightbulb to the wireless doorbell. ",
"Not bad for an amateur.\"",
"\n\n\"I'm just glad we are all still in one piece,\" Liz stated.",
"\n\n\"Me too. ",
"Let's get some rest. ",
"Over the next few days we're going to need it.\"",
"\n\n## CHAPTER 68\n\nNew York, New York\n\nANTHONY CRAIG DID NOT like his job. ",
"Well, it wasn't his job per se; it was the person his job required him to drive around New York that he disliked. ",
"As a young black kid growing up in Brooklyn in the 1960s and '70s, he had been headed down a dark path. ",
"That was until his father took a day off from his janitorial duties at an investment bank on Wall Street, something Anthony could only remember him doing that one time, in order to take him to lunch. ",
"Instead of getting a bite to eat, they had walked to the Marine Corps recruiting office on Chambers Street. ",
"The Marines had knocked the chip off his shoulder and turned his life around. ",
"After his father's early death from a heart attack, Anthony left the Corps and returned home to New York City. ",
"He married a woman whom he'd met at church and they raised two children, who were both now in college on academic scholarships. ",
"Now in his mid-fifties, he was proud of the life he had created. ",
"He was not proud of the man he was driving around.",
"\n\nIt wasn't that J. D. Hartley treated him poorly; in fact, it was just the opposite. ",
"Despite Hartley's philandering, he was generally well-liked by everyone. ",
"Hartley was at a point in his life where his adultery was a part of his persona and even an element of his national identity. ",
"He had been elected to Congress from the great state of California despite being caught red-handed on multiple occasions in compromising situations, both financial and extramarital, but what was acceptable in California was not palatable to a national electorate. ",
"After a failed presidential election bid, he had let his wife take the spotlight as she worked her way through positions of power all the way up to secretary of defense. ",
"J.D. had occupied himself running his consulting company, lobbying and building his foundation with the mission of bringing computers and education to the third world. ",
"This allowed him to attend fundraisers where he was the toast of the evening, surrounded by adoring women who found his mischievous ways intensely alluring.",
"\n\nWhat offended Anthony wasn't the lifestyle or elitism of his current employer. ",
"It was the fact that J. D. Hartley had assumed from day one that, because Anthony was black, he was by default a liberal Democrat and supportive of the Hartley's political leanings. ",
"Anthony had seen liberal policies fail his community time and time again, promoting an entitlement culture that he believed was the cause of the problems, rather than the solution to them. ",
"In any event, Anthony was a man of God and a professional. ",
"He smiled and made small talk when necessary, always on time and always gassed up and ready to go.",
"\n\nToday his boss had made him wait longer than usual. ",
"Anthony had parked the Suburban right in front of the SoHo apartment where Hartley had spent the night with his latest mistress, a well-endowed real estate agent in her early thirties. ",
"He must have really been on a roll, as he'd spent the entire day with her in the apartment building, finally calling for Anthony in the late afternoon. ",
"The doorman allowed Anthony to park in the loading zone while he waited for the former congressman.",
"\n\nAnthony had the satellite radio set to a classical music station as he surveyed the Manhattan evening. ",
"He loved the hustle of New York and would never think of working elsewhere. ",
"The vitality of the people moving along the sidewalks, the constant stream of traffic, and the majesty of the buildings never got old for him. ",
"It was his city.",
"\n\nThe melancholy of Richard Strauss's \"Im Abendrot\" filled the Suburban. ",
"Anthony loved classical music almost as much as he loved New York. ",
"Pairing the two was majestic. ",
"Knowing that the piece was written with the calm acceptance of death as its inspiration seemed in sharp contrast with the life surrounding Anthony's current piece of early evening New York energy.",
"\n\nA wave from the doorman signified that Congressman Hartley was headed down. ",
"Anthony exited his vehicle, pushing the heavy armored door open, and moved to the right rear passenger side to open the door as Hartley exited the building with a spring in his step.",
"\n\n\"Good evening, Anthony,\" Hartley said with a confident smile full of magnificent white teeth as he approached the car in an immaculate navy blue suit and bright yellow tie. \"",
"Sorry to keep you waiting, but duty called.\"",
"\n\n\"Good evening, Congressman,\" Anthony replied as he opened the door for his employer, shutting it behind him and making his way around the front.",
"\n\nThe black Sprinter van almost knocked him off his feet.",
"\n\n\"Whoa!\" ",
"Anthony stammered as he regained his balance. \"",
"Hey!\" ",
"He yelled at the Sprinter driver.",
"\n\nThe van had pulled in right next to the congressman's Suburban, so close that it had knocked the left side-view mirror off the vehicle.",
"\n\nThese young delivery guys are crazy, thought Anthony, bringing his arms up in an incredulous shrug as if to say, Well, now what?",
"\n\nAs he moved back to the front of the Suburban, he got a good look at the driver of the van. ",
"With a full beard and unkempt hair, he looked more like a mountain man than a delivery driver. ",
"It was when he slid from the front seat and moved parallel and forward of the pinned vehicle that Anthony realized this was no delivery driver.",
"\n\nTime seemed to slow for Anthony as he looked through the front window to see Hartley in the backseat reading his paper, unmoved by the commotion caused by the Sprinter. ",
"Switching his attention back toward the van driver, he noticed something small and white in his left hand. ",
"He appeared to be looking not at Hartley and not at the Suburban but at the people on the sidewalk. ",
"It was only then that Anthony realized what was happening. ",
"He had to get Hartley out of the car. ",
"That was his last thought before a sound he had not heard since his basic demolition training in the Marine Corps thirty-five years earlier erupted from the Sprinter. ",
"Fire, deafening noise, and a shockwave unlike anything he had ever experienced reverberated through his body and sucked the air from his lungs. ",
"The congressman's Suburban rocked onto its side against the curb while the front of the apartment building absorbed an impact that Anthony thought might take down the building. ",
"Wide-eyed, he stared at the formerly peaceful streets that had just been transformed into a war zone. ",
"When he turned back toward the bearded man, all he saw was traffic and chaos.",
"\n\n## CHAPTER 69\n\nREECE TURNED THE CORNER and ran east, blending in among the masses of humanity desperate to flee the site of the explosion. ",
"He couldn't help but think of similar images from television sixteen years earlier, images that sent Reece and his brothers to far corners of the globe in search of those responsible. ",
"Improvise, Reece. ",
"He saw an opportunity and reacted instantly, grabbing a wide-brimmed black hat from the head of a Hassidic Jew jogging in front of him. ",
"The man turned instantly to his left to recover his sacred hat, but Reece brushed past the man on his right side and continued forward. ",
"The sheeplike crowd sensed the lack of danger and began to slow as human curiosity started to set in. ",
"Much to Reece's shock, people began pulling out their phones to check news sites, take video, and even to post to social media accounts, lest anyone miss a single moment of their shared life experience.",
"\n\nGetting caught carrying a gun in New York City was an absolute no-go. ",
"As much as Reece loved his Glock 19 for its reliability and durability, it was a little big to conceal from a trained eye. ",
"Getting spotted by a sharp-eyed NYPD officer for carrying a concealed handgun would bring his mission to a screeching halt. ",
"He'd have a tough time talking his way out of the encounter, and shooting it out with the cops here was a really bad plan. ",
"He wasn't about to go unarmed at this point, though, so he had compromised firepower for concealment. ",
"The Glock 43 was a compact, single-stack magazine version of the larger Austrian pistol that shared its 9mm chambering. ",
"Reece's pistol had been extensively customized by Zev Technologies in Oxnard, California, and Reece could shoot it almost as well as he could its larger relative. ",
"With the slim but powerful handgun in an appendix holster, Reece could defend himself and potentially break contact if it were absolutely necessary. ",
"He desperately hoped that wouldn't be the case.",
"\n\nReece slowed his pace to a jog and eased to the edge of the crowd. ",
"Switching to a brisk walk, he turned north down an alley, placing the hat atop his head. ",
"Removing his backpack as he walked, he took out a black Arc'teryx fleece and pulled it on. ",
"The disguise wouldn't bear close scrutiny but, along with his full beard, it would work at first glance.",
"\n\nThe alley took Reece to another eastbound street, where he turned right and began looking for a cab. ",
"It had been years since he'd visited New York, and it took him a few tries before he decoded the meaning of the light bars on the taxi's roofs. ",
"Finally spotting an empty car, Reece walked out in front of it to block its path. ",
"The driver stopped and he quickly climbed inside. \"",
"Brooklyn, Best Buy on Belt Parkway,\" Reece said, in his best Eastern European accent, uncertain whether his mimicry even matched his preposterous disguise.",
"\n\nThe ordinarily bad Manhattan traffic turned to near-instant gridlock as news of the explosion spread across the borough. ",
"The rumor mill came alive with speculation, half-truths, and blatant lies, panic spreading like a wildfire in a gale. ",
"What should have been a short drive turned into a painful crawl. ",
"The driver, who appeared to be from somewhere in central Africa, turned up the local news station to listen to the breaking story. ",
"Reece braced for a description of the bomber and lowered his head as if in prayer. ",
"It struck him that now wouldn't be a terrible time to ask the man upstairs for help. ",
"Please, God, all I've ever asked of you was to watch over my family. ",
"Let me avenge their deaths.",
"\n\nInitial eyewitness accounts indicated the perpetrator was a male of Middle Eastern descent. ",
"The tall American of Scandinavian ancestry, dressed as a Jew from Eastern Europe, had to chuckle at the description. ",
"Maybe Hartley has a point about our xenophobia after all.",
"\n\nAs they crossed into Brooklyn, Reece reached into the pocket of his jeans for the last of his throwaway cell phones. ",
"It was a flip phone, without the benefit of a full keyboard, so it took him longer than normal to type out the text message:\n\npick me up at mom's in 30\n\nDarkness came early this time of year and so by the time the taxi made its way into the shopping area near Coney Island, night had fallen. ",
"Reece paid the hefty cab fare in cash, leaving a 20 percent tip, enough not to be remembered as a guy who stiffed the driver, but not generous enough to stand out. ",
"It would probably be too late by the time anyone tracked down the driver, but there was no use taking unnecessary chances. ",
"The other side could always get lucky. ",
"He climbed out of the cab into the chilly night air; the temperature had dropped into the high forties and it was starting to rain. ",
"Perfect. ",
"Reece stood for a moment and pretended to use his cell phone as the cab sped away in search of his next fare.",
"\n\nReece walked south, past a hotel, a wholesale club, and a Mercedes dealership. ",
"As he passed through a relatively dark area between the lights of two businesses, he took the ill-fitting hat from his head and flung it like a Frisbee off into the weeds. ",
"He retrieved a battered ball cap from one of his old platoons out of his pack and pulled it on low and tight. ",
"The insignia would be meaningless to all but a few people, most of whom were dead. ",
"See you soon, boys.",
"\n\nReece turned right on Bay Forty-First Street and headed toward the water. ",
"Airports and train stations were full of cops, surveillance cameras, and sophisticated software to track the comings and goings of passengers. ",
"Marinas, however, were what Churchill would have called the \"soft underbelly\" of transit, with minimal if any security or surveillance. ",
"The Marine Basin Marina was scheduled to close at 5:00 p.m. and the employees were too engrossed in their closing rituals to notice a solitary figure walk through the gate in the rainy darkness. ",
"Reece could see the running lights of his exfil ride floating just off the end of the marina's long pier. ",
"The boat, expertly driven, pulled close as he approached, the driver controlling the throttles to keep the vessel from smashing into the concrete pilings in the choppy waters. ",
"Reece walked off the end of the pier and landed on the deck with well-practiced grace. ",
"The driver seemed to take no notice as he accelerated the boat away from the shoreline.",
"\n\n\"Thanks for the ride, Raife,\" Reece said as he approached the driver at the helm.",
"\n\n\"Don't mention it, eh?\" ",
"Raife Hastings replied without taking his eyes off the water. ",
"He spoke with a slight accent that most would assume to be South African. ",
"Reece knew better.",
"\n\n## CHAPTER 70\n\nFishers Island, New York\n\nTHE 38-FOOT PROTECTOR TAURANGA bobbed in the dark waters of Fishers Island Sound, between Fishers Island, New York, and Ram Island, Connecticut. ",
"Located at the eastern tip of Long Island Sound, Fishers Island had long been associated with the military as a base for naval forces up to and through World War II. ",
"These days it was the lesser-known cousin to the Hamptons, though at only nine miles long and one mile wide, it was arguably more exclusive. ",
"Once a guardian to the waters of the northeastern United States, it was now an escape for the ultrarich, with two private clubs and one of the most sought after rounds of golf on earth. ",
"With less than 250 year-round residents, it was the perfect escape for the country's most discerning families. ",
"In late October few lights burned in the homes spaced generously along the shoreline. ",
"Reece had his thermal imager focused on one in particular.",
"\n\nThey had timed it for a slack tide, as currents were exceptionally strong here. ",
"There was very little maritime traffic tonight due to the wind and weather, which both continued to build, but the triple 350-horsepower outboard motors of the Protector had no trouble holding station in the rough seas. ",
"Originally built for the New Zealand Coast Guard, its ridged fiberglass hull and surrounding inflatable chambered Hypalon tubes made it strikingly similar to the RIBs that SEALs had used in maritime operations for most of Reece's time in the Navy, though this one was built with luxury, not effectiveness in war, as its guiding design principle. ",
"Rain pelted down around them, but neither man seemed to care. ",
"Good operating weather.",
"\n\nRaife manned the helm. ",
"He had been quiet most of the trip. ",
"At two inches taller than Reece's six feet but with shoulders to match, he looked like an MMA fighter trapped in a cowboy's body who somehow found himself captaining a ship at sea. ",
"Wisps of dirty-blond hair snuck from beneath a black watch-cap-style beanie and betrayed the fact that this guy did not spend much time in a boardroom. ",
"The scar that ran from the corner of his left eye and ended just shy of his upper lip gave his rugged features a menacing look. ",
"Even though it was dark, his green eyes pierced the night like a nocturnal predator.",
"\n\n\"Okay. ",
"I've seen what I needed to,\" said Reece, lowering his thermal. \"",
"Take me around to windward. ",
"I don't want to come right in on them. ",
"They probably expect that coming from a Frogman.\"",
"\n\nRaife nodded but didn't say a word. ",
"He pushed the throttle forward and the agile boat sprang to life, easily handling the choppy waves and turbulent weather for which it was engineered. ",
"Deftly piloting around the eastern tip of the island, he slowed his advance and maneuvered the Protector west. ",
"Anyone looking from shore would think he was just one more rich yachtsman who didn't check the weather and had bitten off more than he could chew, now making his way back home to Long Island in his expensive toy, choosing to avoid the notoriously hard-to-navigate shallow rocks of the Sound, termed \"the Clumps.\"",
"\n\n\"This is good,\" Reece told his larger companion. \"",
"Just over a mile offshore.\"",
"\n\nKatie had accessed her work database and spent hours sifting through public and private records of the Hartleys, attempting to piece together the SECDEF's most probable location. ",
"There had to be a place off the books where she would hole up. ",
"Then Katie found it. ",
"Hidden deep within the convoluted financials of the Hartley Family Foundation was a write-off for a Foundation Planning Office. ",
"The address was a post office box in New York but a phone number listed on one of the mandatory 501(c)(3) forms had a Connecticut prefix. ",
"Katie narrowed her search to counties bordering Connecticut and cross-referenced those with geo-data location information embedded in the newer digital photos taken of the couple over the last three years. ",
"Matching that data, Katie found what she was looking for. ",
"She passed the information to Reece via Signal and wished him luck.",
"\n\nTracking down Steve Horn had not proven to be the most difficult of tasks. ",
"What tipped the scales toward the nautical utopia of northern New York came from Liz, who had activated her contacts in the aviation community. ",
"A day after the mission to kill Reece in New Hampshire had ended in a dry hole, a Gulfstream IV owned by Capstone Capital landed at Francis S. Gabreski Airport in Westhampton Beach, New York, where it remained with its pilots on standby. ",
"Utilizing her knowledge and associates in the industry, Liz had discovered that Horn had chartered a Eurocopter AS350 helicopter to make the thirty-seven-nautical-mile flight from Westhampton to Fishers that same day, as the airfield on the island was not nearly long enough to accommodate something the size of a Gulfstream. ",
"All signs pointed to Fishers.",
"\n\nRaife watched his former Teammate adjust the last of his gear he had liberated from his cage back in Coronado. ",
"Reece was dressed in a black wetsuit. ",
"The areas of his face and neck not covered by his beard were painted a pattern of black and dark green, and a Draeger LAR V rebreather was strapped to the front of his chest. ",
"His M4 was secured inside a shoot-through waterproof bag to ensure that it would work when he got to shore. ",
"A waterproof backpack with a valve for ballast held his web gear and other over-the-beach mission essentials. ",
"Attached to his weight belt was an \"attack board.\" ",
"This neutrally buoyant plastic rectangle about the size of a small laptop was built around the bubble of an exceptionally tough compass. ",
"It also held a G-Shock watch set to the stopwatch feature, along with a depth gauge, all illuminated by a tiny chemlite wrapped in black rigger's tape so that only a sliver of light escaped. ",
"These tools would allow him to navigate to his target undetected.",
"\n\nHis gear ready, Reece stood, faced his friend, and extended his hand. ",
"Raife paused but clasped it in a firm grip. \"",
"Thank you,\" Reece said over the roar of the downpour, more sincerely than he'd ever said anything in his life.",
"\n\n\"What you need has been put in place. ",
"It's confirmed.\"",
"\n\n\"Thank you,\" Reece said yet again.",
"\n\n\"I owed you,\" Raife said, clearly stressing the past tense of the word.",
"\n\nReece managed a slight smile, then moved to the leeward edge of the Protector's inflatable sponson, pulled his mask over his darkened face, inserted his mouthpiece, and initiated the prebreathing sequence to purge his body of carbon dioxide before beginning his insertion on the pure oxygen rebreathing system. ",
"After a few minutes of breathing through the system on the surface he was ready to go.",
"\n\n\"Hey, Reece? ",
"This evens us up,\" Raife said firmly.",
"\n\nReece nodded and slipped into the dark waters of the Atlantic.",
"\n\n## CHAPTER 71\n\nJ. D. AND LORRAINE HARTLEY had rented the Fishers Island home for the past fifteen years through a shell corporation attached to their family foundation. ",
"It afforded them both the anonymity they sometimes required as well as a healthy write-off for tax purposes. ",
"It sat just off a beautiful beach facing New London, Connecticut. ",
"Nothing like living the good life to help the world's downtrodden. ",
"Though not nearly as opulent as homes belonging to families with names like Rockefeller and Du Pont, it was not quite a shack, either. ",
"Despite their picturesque location, the Hartleys had been eyeing an estate on the east end of the island, closer to the golf course.",
"\n\nA rock stairway built into the cliff led to a perfectly manicured lawn above which a New England–style home straight out of a Currier & Ives print sat surveying its domain. ",
"J.D. had spent considerably more time there over the years since his untimely departure from politics. ",
"He found it was the perfect place to conceal his philandering ways from the watchful eyes of the paparazzi, not to mention his wife, who had proven much more adept at the political game than her ne'er-do-well husband.",
"\n\nTonight that ne'er-do-well husband was missing from the picture of classic east coast perfection. ",
"His body was confirmed to have been the one inside an armored Chevrolet Suburban outside the SoHo apartment of a blonde less than half his age. ",
"It took a few hours to confirm the identity of the congressman, due to the fact that there was not much left of him after he was eviscerated by a slug of molten copper that turned his armored car and his body into an inferno of melted steel, glass, flesh, and bone.",
"\n\n\"How the fuck did that bastard find him?\" ",
"Lorraine Hartley asked as much to herself as to the well-dressed Steve Horn next to her. ",
"She had enough trouble tracking down her husband. ",
"That Reece was able to do it with apparent ease made her even angrier. ",
"She noted the calm, composed demeanor of the man next to her. ",
"He was beginning to annoy her with how, even in their current predicament, he still maintained an element of style and poise.",
"\n\nSteve Horn swirled the Rémy Martin Louis XIII cognac in his crystal snifter, leaned back in the massive leather chair, and looked into the smoldering embers of the fire in the great stone fireplace before him, noticing that the secretary of defense seemed much more concerned with how Reece found her husband than she was with the fact that he was now dead. ",
"He chose his words carefully before responding.",
"\n\n\"Listen to me, Lorraine,\" he began, sounding almost condescending. \"",
"This entire venture has no doubt taken a turn for the worse. ",
"I made my money being strong when others were weak, looking for opportunity in the chaos. ",
"In this case, Madame Secretary, we have an opportunity, an opportunity to make even more money than before.\"",
"\n\nLorraine Hartley couldn't believe what he was saying. ",
"Even at a time like this, he still thought about how to maximize profits.",
"\n\n\"While Commander Reece has been running around killing everyone like a madman, he has also been stacking the deck in our favor and playing right into our hands. ",
"With Boykin, Holder, Saul, Howard, Pilsner, and now your husband, God rest his soul, out of the way, we stand to make a significantly greater sum of money, not to mention there are far fewer loose lips. ",
"With your capital still intact and with you the seemingly obvious choice to win your party's nomination for the presidency, you will be able to push FDA approvals for the vital drugs needed to inoculate our servicemen from the ravages of PTSD before they go into combat. ",
"Think, Lorraine, who better to push for this initiative than a female president whose very husband was murdered by a veteran suffering the effects of PTSD? ",
"Also, thanks to Commander Reece, you will be able to greatly expand the powers of the executive branch and pass the Domestic Security Act. ",
"We get richer and more powerful, and the country gets safer. ",
"And we can all live without fear,\" he added for effect.",
"\n\n\"Steve, you don't get it, do you? ",
"He is going to kill us all.\"",
"\n\n\"Nonsense.\" ",
"He could see she was coming unglued. ",
"He could not have that in a commander in chief he planned to control. ",
"It was unbecoming.",
"\n\n\"Do I need to remind you what he's done so far, Steve?\" ",
"she said, almost on the verge of hysteria. \"",
"He cut off that Muslim cleric's head. ",
"He left it on a spike outside the mosque! ",
"He gutted poor Howard! ",
"My people tell me he was eaten alive!\"",
"\n\n\"Madam Secretary, I want you to listen very carefully to what I am about to tell you. ",
"What happens here tonight, perhaps tomorrow, perhaps the next, will catapult you into the White House.\"",
"\n\nHartley looked at him incredulously. ",
"Has he lost his mind?",
"\n\n\"We are not safe here, Madame Secretary. ",
"At some point very soon, that maniac Reece will make an attempt to kill us, which is exactly what we want. ",
"Our trap is set. ",
"It is time we finished this.\"",
"\n\n\"You said my house here would be safe,\" she stated meekly.",
"\n\n\"I had to get you here, Lorraine. ",
"It is nearly impossible to hide everything in today's age of information. ",
"Someone who knows how to dig will find it, and in this case,\" he said, pausing, \"someone did.\"",
"\n\n## CHAPTER 72\n\nREECE'S SCAN VIA BOTH thermal and night vision from the Protector had yielded nothing out of the ordinary. ",
"Maybe they weren't there? ",
"Maybe he had missed his shot. ",
"Another headache had hit him on the way in, though this one was not nearly as severe as the one that almost crippled him in the mosque. ",
"He never knew which headache might be his last. ",
"Not knowing the speed with which his tumor was growing made it even more imperative that he finish the names on his list before joining his wife and daughter. ",
"The insertion via LAR V, a classic Frogman combat swimmer operation, allowed him to avoid the thermals and night vision of any security detail.",
"\n\nEnding up under the long-abandoned dock attached to a part of Fishers Island still owned by the Navy and occasionally used to monitor submarine activity off the coast, Reece used a pylon to conceal his combat peek, slowly scanning the beach, cliffs, stairs, and high ground of the long-defunct outpost. ",
"Conspiracy theories had swirled around the island for years that the prohibited area was operating some sort of biological weapons development lab, akin to the rumors surrounding Plum Island, to the south. ",
"Reece hoped tonight that the speculations were just that, rumors.",
"\n\nReece unhooked his Draeger, flooded it, and let it sink away. ",
"Then he attached his fins to his weight belt and dropped them to the ocean floor before working his way under the dock to the rocky shore. ",
"He was committed. ",
"The rain and wind masked any noise he made removing his M4 from its waterproof bag and quickly transitioned out of his wetsuit and into his AOR2 woodland-patterned camouflage combat pants and shirt. ",
"He slipped his magazine carrier over his head and attached his pistol belt to his waist. ",
"Then, donning his bump helmet with NODs, he scanned ahead and moved toward the stairs.",
"\n\nAt the top of the steps, Reece turned and headed northeast, coming to a kneel in a small clearing to listen and observe. ",
"The weather played to his advantage tonight, masking his movement and keeping civilized people indoors, where it was dry and warm. ",
"Reece studied the GPS he always kept on the stock of his M4, bringing back memories of the last time he had checked it, just prior to the ambush in Afghanistan. ",
"It would all be over soon.",
"\n\nMoving as if guided by the souls of those warriors who could not exact vengeance themselves, Reece pushed through the thick woods of the island paradise, past red oaks, American beech, and red maples, aided by the howling wind and pelting rain. ",
"It was a good night for a reckoning.",
"\n\nSticking to the wood line, Reece skirted the meadows and ponds, giving the large homes he encountered a wide berth even though they were essentially abandoned at this time of year. ",
"Unencumbered by the usual weight of his body armor, he worked his way swiftly and silently toward his target. ",
"The thick shrubs and grasses, soft earth, and decaying logs through which he now moved reminded him more of Central America than what he had assumed he would find off the coast of New York. ",
"He would have loved to explore wilderness like this with his children, had they not been murdered by those he now hunted.",
"\n\nArriving at what overseas he would have termed his \"set point,\" Reece stopped again just back from the tree line, looking out at his target building. ",
"The rain combined with the humidity created by his body during his patrol from the Atlantic side of the island caused his NODs to fog up with irritating regularity, though it certainly was better than not having them at all. ",
"Reece settled into a comfortable position and observed his objective.",
"\n\nFinally he saw them, sitting out of the rain in the dry warmth of the idling SUV, with a commanding view of the water just to the side of the opulent home's driveway. ",
"The four men, who were undoubtedly supposed to be out in the elements patrolling the perimeter, were sitting in the Chevy Tahoe texting away to fight the boredom. ",
"Apparently they didn't think it was possible for him to get there this quickly, which explained the absence of a rear security element. ",
"Through his NODs he could see their faces illuminated by the light of their smartphones; all of them not only distracted from their jobs by the lure of the digital world, but their night vision ruined by the LCD screens. ",
"They undoubtedly had access to NODs, but none appeared to be wearing them.",
"\n\nOdd. ",
"The same senses that had kept him and his men alive on the front lines of the war on terror until that last deployment were now telling him something was wrong. ",
"Last time you didn't listen to that voice you got your entire element killed, Reece. ",
"Last time I cared about keeping my men alive. ",
"Now it is just me, and I am already dead.",
"\n\nPatience, Reece. ",
"No need to rush to your death. ",
"Make it count and finish the job. ",
"Keep scanning.",
"\n\nThat's when he spotted the sniper.",
"\n\n## CHAPTER 73\n\nTO THE SOUTH, FIFTY YARDS off the main home, sat a quintessential guest cottage built in the same style as its larger companion. ",
"A flicker of light, perhaps from a headlamp or cigarette lighter, illuminated a window and then went out. ",
"Sometimes that's all it takes in this game.",
"\n\nIt was a good position, an urban hide site, out of the elements, in control of the high ground with a commanding view of the water, dock, and beach below. ",
"The goons in the Tahoe were bait. ",
"The sniper was there to finish him. ",
"Their mistake had been assuming Reece would come directly from the sea; that, and not posting rear security.",
"\n\nReece crept farther back into the wood line and worked his way into the dead space behind the cottage, stopping once again to look and listen for anything out of the ordinary. ",
"Satisfied that he had the critical element of surprise in his favor, he moved smoothly from tree to tree until he was standing at the entrance to the cottage, M4 at the ready. ",
"The door was unlocked and Reece slowly pushed it to the side.",
"\n\n\"Hey, Tim, you're suppose to radio in before coming over!\" ",
"the sniper said angrily, turning from his seated position at a table, set up the same way a bench-rest shooter would in competition. ",
"He was situated in the back of the small living area, furniture pushed to the side to give the gunman an unobscured view and clear bullet path down to the low ground. ",
"Reece's M4 spat once, the suppressor muffling the sound to an almost inaudible level, with the howling wind as a backdrop. ",
"The bullet impacted his would-be killer's head with a wet thwack, throwing brains and tissue over what Reece recognized as an Accuracy International .338 Lapua topped with a Schmidt & Bender scope. ",
"Nice rifle.",
"\n\nReece approached the contorted body and, slinging his carbine, found the man's radio and headset, listened for a moment for any incoming radio traffic, and then attached it to his web gear before moving back into the storm.",
"\n\nOne more group of contractors to deal with. ",
"To Reece it mattered little that they undoubtedly had wives, children, girlfriends, or parents waiting for them at home. ",
"To him they were mere targets, obstacles blocking him from his ultimate objective. ",
"To that end they were going down. ",
"When you lived this life, that was part of the contract. ",
"Don't let it be a surprise when the reaper comes to call.",
"\n\nReaching into his pack, Reece readied the demolition charge, the last of his armory acquisitions from back in Coronado. ",
"It seemed like years ago that he had started preparing for this evening's mission, though in a way he had been preparing for it his entire life. ",
"Starting the timer on the MK147 time-delay firing device, Reece set it for a ten-minute countdown. ",
"He crawled on his hands and knees to the rear of the SUV and slid the demo as far forward as he could reach. ",
"Then, retreating from the vehicle, he set his sights on the mansion.",
"\n\n## CHAPTER 74\n\nSTEVE HORN WAS ON his third brandy when he felt, rather than saw, the figure emerge from the shadows. ",
"Though he knew it was a possibility, he couldn't quite fathom how Reece had made it past the contractors; they were supposed to be the toughest mercenaries available. ",
"Even with one last fail-safe contingency plan still in place to kill the Navy commando, Horn was surprised by the fear the dark man in NODs appearing from nowhere instilled in him.",
"\n\n\"Commander Reece!\" ",
"Horn said in a louder voice than necessary, in an attempt to bolster his confidence and composure.",
"\n\nLorraine Hartley jumped in her seat at Horn's abrupt shout.",
"\n\nReece moved slowly into the room, lifting his NODs back on his helmet. ",
"His dark beard, face paint, and gear dripping rainwater only added to his intimidating appearance.",
"\n\nIn front of the fire, sitting with Lorraine Hartley and Steve Horn, a brandy in one hand and what appeared to be a small box in the other, was Ben Edwards. ",
"Reece had expected all three. ",
"What he didn't expect was the fourth person; kneeling on the rug next to Ben, hands bound behind her back, a bandana running between her teeth and tied around her head, face battered and hair a mess, was Katie Buranek.",
"\n\n\"You son of a bitch!\" ",
"Reece hissed, raising the M4.",
"\n\n\"Ah . . .\" ",
"Ben said, holding up and shaking the box in his hand.",
"\n\nIn response to Reece's questioning look, Ben brushed Katie's hair back with the hand holding his snifter, revealing multiple strands of what looked to be thin yellow rope wrapped around her neck.",
"\n\n\"Yeah, that's det cord, buddy, and yes, this is a detonator,\" he said, shaking the box once more. \"",
"You don't have these little toys in the Teams yet, bro. ",
"In case you were wondering, my thumb has depressed the button here. ",
"As soon as it comes off, pop! ",
"Off comes Katie's head.\"",
"\n\nReece kept his weapon trained on Ben but had a healthy eye on the SECDEF and Horn.",
"\n\n\"You don't look surprised to see me, bro.\"",
"\n\n\"I couldn't believe it when I finally put it together, Ben. ",
"I had my suspicions but the assault force at your cabin confirmed it. ",
"You were the only one who knew I was going there.\"",
"\n\n\"Yeah, I figured that would cue you in. ",
"Mistake on my part. ",
"It did allow you to almost finish your list, though, which helped us out immensely, by the way. ",
"I still can't believe you had those guys in a textbook ambush and let them live. ",
"Getting soft, buddy.\"",
"\n\n\"How could you be involved in this, Ben? ",
"How could you be a part of killing Lauren and Lucy?\"",
"\n\n\"Shit, bro, I didn't do that. ",
"By the time I was brought in, those decisions were made. ",
"The SECDEF here just wanted me to see what you knew about the tumors. ",
"I had no idea they were going to kill your family. ",
"Once they did, there was no turning back the clock. ",
"I'm sorry how it went down, bro, but this is bigger than you or me.\"",
"\n\n\"So you kept it from me and then used me to kill off everyone who knew about the experiments. ",
"SECDEF gets elected, the Domestic Safety Act gets passed, and you all make your fortunes from RD4895.\"",
"\n\n\"Everybody has a price, bro. ",
"Apparently mine has ten figures.\"",
"\n\nReece stared at his best friend in a disgusted rage.",
"\n\n\"That's why you never gave me any location information on this guy?\" ",
"Reece asked gesturing toward Horn. \"",
"You needed him to keep this plan moving forward. ",
"You needed him in place for your payday?\"",
"\n\n\"You were always the smart one, Reece. ",
"And yeah, that was why you weren't killed at the condo. ",
"You were being so efficient tying up our loose ends while at the same time increasing our share of the profits that the logical business decision was to allow you to keep at it, up until now that is. ",
"I was actually nervous you would put it together quicker than you did. ",
"Those emotions got you, bro. ",
"Kept you from seeing the whole picture.\"",
"\n\n\"And J. D. Hartley?\" ",
"Reece asked, looking at the SECDEF.",
"\n\nNot able to even form a sentence, Lorraine Hartley looked in loathing at Steve Horn.",
"\n\n\"Don't act surprised, Lorraine,\" Horn said in partial dismissal. \"",
"His death helps propel you into the White House with the sympathy vote. ",
"You haven't spent the night in the same house in years. ",
"He was a liability to your campaign as it was. ",
"Don't pretend like you are going to miss him.\"",
"\n\n\"You concocted a plan to let Reece keep killing our business partners and didn't inform me?\" ",
"the SECDEF asked Horn in shock.",
"\n\n\"As much as I'd like to take credit for that part of the plan, I can't. ",
"It was all Ben's idea. ",
"Following your jihadi's failure to take him out on the streets of L.A., Ben went a bit further off the reservation and devised a plan that allowed Reece to continue his crusade, making us all richer in the process. ",
"When he finally read me in after Reece killed Holder, Tedesco, and Pilsner, I thought it was genius. ",
"Can't believe I didn't think of it myself.\"",
"\n\nSecretary Hartley shook her head in disbelief as Horn continued: \"Ben's actually a lot smarter than he looks. ",
"Don't be fooled by the tattoos. ",
"He's been right about a lot of things, including the fact that Reece would make it past my contractors and into this very room; hence our insurance policy tied up on the floor there,\" he said, pointing at Katie. \"",
"Your friend had more faith in your skills than I did, Mr. Reece; well founded, it now seems.\"",
"\n\n\"Here's what's going to happen, bro,\" Ben said. \"",
"Horn is going to make us all very rich. ",
"Almost everyone else who stood to profit from this is dead, thanks to you. ",
"Yeah, you will have to do a little time, but the SECDEF will pardon you with her newfound presidential powers, blaming your actions on the ravages of PTSD. ",
"I am going to disappear, never to be heard from again, and you and Katie can live happily ever after. ",
"Maybe they can even operate on that tumor of yours and save your life?\"",
"\n\nBen looked at Katie, her eyes wide with a mixture of revulsion and horror. \"",
"Oh, and Katie is just here to ensure you make the right decision. ",
"I'm sorry about your family, Reece, I really am. ",
"Nothing can bring them back now. ",
"Let's all do the smart thing. ",
"The pardon is a gift. ",
"Katie's life is a gift. ",
"Don't fuck this up, bro.\"",
"\n\nReece looked at Katie, then back to Ben, his eyes the picture of resolve.",
"\n\nHorn broke the silence with a loud, slow clap, pulling himself out of his chair to take a more domineering position above the other conspirators.",
"\n\n\"Ben, that was a lovely breakdown of the plan. ",
"Thank you, but I've had a change of heart. ",
"I am modifying the terms of the deal. ",
"Our negotiating power has shifted. ",
"Let's clean this mess up right now, shall we?\"",
"\n\n\"What do you mean, Horn?\" ",
"asked Ben skeptically.",
"\n\n\"Tonight, Commander,\" Horn said, turning his attention to Reece as if presenting an investment opportunity to a client, \"you get to actually save a life instead of taking one. ",
"You get to save Katie. ",
"You get to save her by dying.\"",
"\n\nReece hadn't dropped the M4, but he did shift it toward Horn, the SECDEF tensing up as the barrel passed across her face.",
"\n\n\"Come on, Reece,\" Horn said in an almost bored, exasperated tone. \"",
"You are not leaving here alive. ",
"You are half-dead now from that tumor, if I understand correctly. ",
"If you kill any of us, Ben lets go of that button, and you kill the one friend you have left, who seems to be quite fond of you, by the way. ",
"Shoot yourself or let us shoot you, it matters not either way. ",
"Point being, you keep Katie alive, and we all move on with our liv—\"\n\nHorn never finished his sentence. ",
"The explosion from the charge in the driveway split the SUV in half, turning the Capstone Security men into human mulch. ",
"The blast shattered the multitude of windows on the mansion's front and sent a shockwave through every room.",
"\n\nReece's first bullet caught Horn between his nose and mouth, forever leaving him with a look of surprise on what was left of his face. ",
"He was dead before he hit the ground.",
"\n\n\"Nooo!\" ",
"screamed the SECDEF, crawling up onto her chair, covering her ears with her hands. ",
"Reece's next two rounds found their way into her upper chest. ",
"A third to her head completed the job.",
"\n\nReece settled back on Ben.",
"\n\n\"What the fuck, Reece?\" ",
"exclaimed Ben in amazement, holding up the detonator. \"",
"What the . . . . ?\"",
"\n\nReece's M4 finished the night's deadly business, firing two 77-grain Black Hills 5.56 rounds at 2,340 feet per second directly into Ben Edwards's face at ten feet. ",
"His head snapped back, empting its contents onto the chair behind him, and his hand came off the button.",
"\n\n• • •\n\nKatie screamed through the bandana that stifled her cries, but surprisingly her head stayed intact. ",
"Reece stepped forward and fired two more rounds into Ben's face, then slung his weapon and knelt down to help Katie.",
"\n\nHe cut the bandana off her head before slicing the zip tie that held her hands behind her back. ",
"Falling forward into him, Katie sobbed uncontrollably.",
"\n\n\"It's all right, Katie, it's all right,\" Reece repeated, stroking her hair and holding her tight to him.",
"\n\n\"We have to go, Katie. ",
"We don't have much time, we have to go. ",
"Can you walk?\" ",
"he asked, helping her to her feet and replacing his magazine with a fresh one from his chest rig.",
"\n\n\"Yes, I can walk.\"",
"\n\n\"Okay, follow me.\"",
"\n\nReece led Katie outside, finding the shed he had identified on satellite imagery. ",
"Next to the shed was an old seventeen-foot Boston Whaler Montauk on a trailer. ",
"Gas cans were set between the boat and the shed. ",
"Reece picked up the first one. ",
"Empty. ",
"Then he picked up the second one and shook it. ",
"Plenty of gas. ",
"He handed it to Katie and picked up another. ",
"Full.",
"\n\n\"Follow me,\" Reece ordered again, already moving back to the house.",
"\n\n\"Pour that gas around the room, furniture, drapes, anything that will burn.\" ",
"Katie did as requested. ",
"It felt good to take action against these monsters who had grabbed her in the dead of night from her brother's home.",
"\n\nReece doused the bodies with gas and then told Katie to run to the door. ",
"Looking down at the symbol on his father's old Zippo, Reece slid his thumb over the striker, grinding sparks off the flint and igniting the fuel to produce a flame. ",
"Tossing it onto Ben Edwards's body, Reece followed close behind.",
"\n\n• • •\n\nIt was still raining when they hit the street, the summer home beginning to flame up behind them and the SUV smoldering in the driveway.",
"\n\n\"Airfield is four miles west. ",
"Can you run that far?\"",
"\n\n\"Yes, but why don't we take this?\" ",
"Katie asked, pointing to an exquisitely restored 1973 two-tone forest green and alpine white Toyota FJ55 Land Cruiser parked next to the shed. ",
"Residents of Fishers Island loved their classic cars.",
"\n\nReece couldn't suppress his grin, then looked back at the flaming house.",
"\n\n\"I think I just melted the keys.\"",
"\n\nKatie smiled, opened the driver's-side door, and pulled a set from the ignition.",
"\n\n\"It's a Fishers Island thing,\" she said.",
"\n\n\"Well, that's working smarter. ",
"Let's go.\"",
"\n\nReece took the wheel, and Katie squeezed in beside him. ",
"They were on the road before the volunteer fire department had their boots on.",
"\n\n## CHAPTER 75\n\nREECE LOOKED AT THE luminous dials on his watch. ",
"Liz would be landing in six minutes. ",
"This was cutting it close. ",
"Her instructions were to wait for thirty minutes and then take off. ",
"If he didn't show up, she was to assume he was dead.",
"\n\nBy the time they made the four-mile drive, Liz had already taxied to the north end of the runway, spun the plane around, and began readying for take off. ",
"Reece ditched the truck and moved Katie to the waiting aircraft. ",
"The door folded downward.",
"\n\n\"Who is this?\" ",
"Liz shouted from the cabin door, past the hot exhaust of the outtake.",
"\n\n\"Liz, this is Katie. ",
"Katie, Liz.\"",
"\n\n\"Well, get in and let's get out of here,\" Liz shot back.",
"\n\n\"I'm not coming, Liz. ",
"I'm taking the secondary extraction. ",
"This is going to be a mess. ",
"I am not bringing you two down with me.\"",
"\n\n\"Get in the fucking plane, James,\" Liz ordered impatiently.",
"\n\nReece ignored her and turned to Katie.",
"\n\n\"Take this,\" he said, pressing a minicassette recorder and thumb drive into her hand. \"",
"These are the only copies. ",
"Everything those bastards said in there is on the cassette, along with some other admissions from Saul Agnon. ",
"The thumb drive has all the emails and intel that Ben gave me to help back things up. ",
"That should keep you busy for a while. ",
"Somebody has to set the record straight for my men and my family. ",
"You might even get another journalism award out of it.\" ",
"He smiled.",
"\n\n\"Where are you going, James?\" ",
"Katie asked with tears beginning to stream from her eyes.",
"\n\n\"I'm going to die, Katie. ",
"They killed me before I even left on that last deployment to Afghanistan. ",
"They killed all my guys before we even left. ",
"It's my turn now.\"",
"\n\nHe ushered her up the steps. ",
"She was too shocked to say anything. ",
"Liz just glared at him with eyes that shot fire.",
"\n\n\"Get in the plane, James?\" ",
"she tried again.",
"\n\n\"I love you, Liz, now get out of here.\"",
"\n\nAs Reece stepped back to close the door, Katie turned sharply in her seat, snapping out of her trance.",
"\n\n\"Reece, how did you know Ben didn't have that detonator connected? ",
"How did you know he wouldn't blow my head off?\"",
"\n\nReece paused, looked Katie in the eye, and over the sound of the wind, the propeller, and the rain, replied, \"I didn't,\" before shutting the door and moving off at a run toward the marina.",
"\n\n## EPILOGUE\n\nAtlantic Ocean\n\nPresent Day\n\nREECE AWOKE BELOW DECK, the sound of the Beneteau Oceanis 48 cutting through the water and the flapping of the sails waking him from his thirty-minute catnap. ",
"After throwing his feet out of his bunk he made his way topside and into the light. ",
"The storm that had kept him busy for the first three days after departing Fishers Island had subsided, leaving beautiful rolling seas and steady winds.",
"\n\nRaife's sister Victoria had sailed the Beneteau from their Martha's Vineyard home down to Fishers Island the day before Reece's assault, removing all the electronics per Reece's request. ",
"He had also instructed Raife to report it stolen, but somehow doubted he would. ",
"That Victoria could handle the massive forty-eight-foot sailboat on her own spoke volumes about her competence and seamanship; Reece was struggling to just keep the boat headed in the right direction. ",
"He had sailed as a kid, though nothing this large and complex. ",
"Luckily, the Navy had seen fit to send him to a civilian sailing school years ago. ",
"The idea was that he would have the ability to rent sailboats around the world and use them to conduct surveillance or to blend in with local maritime traffic and insert SEALs into denied areas. ",
"He didn't know how much longer he had to live. ",
"He doubted if he would make it to Europe or Africa before the tumor killed him. ",
"He was at peace and he was ready to leave the world behind. ",
"He thought about Lucy and cried for her, for the life she would never have, and he thought about Lauren and the second child they would never bring into the world. ",
"He was ready to join them.",
"\n\nOne beautiful sunset turned into another stunning sunrise, and Reece continued to sail. ",
"Victoria had seen to it that the boat was filled with provisions for a long voyage: water, food, and medical supplies. ",
"What would he do if he were still alive when he reached the Old World or the Dark Continent? ",
"Turn south and continue sailing until the tumor took him? ",
"Maybe he would go for a swim and never surface? ",
"Maybe that would deliver him to Lauren and Lucy? ",
"He knew he wasn't long for this world, so he might as well continue sailing until the sea or the tumor decided it was his time. ",
"Either way, his work on earth was done.",
"\n\nSitting on deck at the starboard helm steering station, the storm a distant memory, and with the blaze orange sun setting behind him to the west, Reece reached into his pocket and removed a Ziploc bag. ",
"Pausing, he slowly opened it and unfolded the paper within, drawing lines through the last of the names on his list.",
"\n\nJOSH HOLDER\n\nMARCUS BOYKIN\n\nSAUL AGNON\n\nSTEVE HORN\n\nCJNG, MEXICO\n\nADMIRAL GERALD PILSNER\n\nMIKE TEDESCO\n\nJ. D. HARTLEY\n\nLORRAINE HARTLEY\n\nLEONARD HOWARD\n\nHAMMADI IZMAIL MASOOD\n\nBEN EDWARDS\n\nHe looked at the list without a hint of remorse. ",
"It was done.",
"\n\nThen, hesitating briefly, he turned it over and smiled, running his fingers over the crayon drawings of his beautiful wife and daughter under an arching rainbow, the perfect splendor of which only the young and innocent can capture. ",
"His eyes glistened over, and a tear fell onto his most treasured possession.",
"\n\n\"I'm coming, baby girl,\" Reece whispered, rubbing his eyes. \"",
"I'll be with you soon. ",
"I love you.\"",
"\n\nWith that, he moved to the stern and, watching the sun drop below the horizon, he touched the paper to his heart and let it fall from his grasp, committing it forever to the peace and tranquility of the sea.",
"\n\n• • •\n\nFBI Headquarters\n\nWashington, D.C.\n\nIn the days following the revelation that Secretary of Defense Hartley and financier Steve Horn had been found shot to death and incinerated along with an unidentified body in a Fishers Island mansion, on the heels of Congressman J. D. Hartley's targeted assassination in SoHo, the conspiracy theorists went into overdrive, cluttering the Internet and airways with one explanation after another.",
"\n\nCongress appointed a special prosecutor to investigate and make sense of the mess because so many government officials were involved, all of them dead thanks to one Lieutenant Commander James Reece, current whereabouts unknown.",
"\n\nThings really got interesting when investigative journalist Katie Buranek published the first in a series of scathing stories exposing a conspiracy involving illegal testing of drugs on the nation's most elite special operators, the sharing of top-secret NSA-gathered intelligence information with certain individuals in the financial industry to assist in the assassination of innocent civilians, and a program of intentional radicalization of jihadi assets by elements of the U.S. government for domestic terrorist operations, leading all the way to the SECDEF herself. ",
"Ms. Buranek was uncooperative in assisting investigators to unravel the story, instead telling them to wait for her next exposé.",
"\n\nAmong the piles of evidence collected by the special prosecutor was a cell phone belonging to James Reece of Coronado, California. ",
"Having not been used in the preceding weeks that Reece was on the move, it sat untouched on the dresser of his California home until it was subsequently collected by investigators.",
"\n\nLater, after it had been tagged, exploited, and stored into evidence, a call had come in and gone to voice mail.",
"\n\n• • •\n\nHead and Spine Associates\n\nLa Jolla, California\n\n\"Um, hello, Mr. Reece, this is Dr. German. ",
"We've been trying to get in touch with you. ",
"We usually don't leave messages like this, but I wanted you to hear this as soon as possible. ",
"Your biopsy came back and, under the circumstances, it is the best news that we could expect. ",
"Your tumor is what's called a cerebral convexity meningioma, which is a very common and slow-growing lesion. ",
"Based on the type and location of the mass, I am very confident that I can remove it surgically. ",
"We are talking a seventy-five percent or better survival rate. ",
"It could be causing you headaches, which is nothing to be alarmed about. ",
"Please call us back and my assistant will schedule you an appointment for a follow-up. ",
"We can speak in more detail at my office. ",
"Again, sorry to have to leave this on your voice mail, but I didn't want you to worry needlessly. ",
"Have a great day, and enjoy your new lease on life, Commander.\"",
"\n\n## GLOSSARY OF TERMS\n\nAC-130 SPECTRE: A ground support aircraft used by the U.S. military, based on the C-130 cargo plane. ",
"AC-130s are armed with a 105mm howitzer, 40mm cannons, and 7.62mm miniguns, and are considered the premier close air support weapon of the U.S. arsenal.",
"\n\nAccuracy International: A British company producing high-quality precision rifles, often used for military sniper applications.",
"\n\nACOG: Advanced Combat Optical Gunsight. ",
"A magnified optical sight designed for use on rifles and carbines made by Trijicon. ",
"The ACOG is popular among U.S. forces as it provides both magnification and an illuminated reticle that provides aiming points for various target ranges.",
"\n\nAQ: Al-Qaeda. ",
"Meaning \"the Base\" in Arabic. ",
"A radical Islamic terrorist organization once led by Osama bin Laden.",
"\n\nAQI: Al-Qaeda in Iraq. ",
"An Al-Qaeda-affiliated Sunni insurgent group that was active against U.S. forces. ",
"Elements of AQI eventually evolved into ISIS.",
"\n\nAT-4: Tube-launched 84mm anti-armor rocket produced in Sweden and used by U.S. forces since the 1980s. ",
"The AT-4 is a throwaway weapon: after it is fired, the tube is discarded.",
"\n\nATF/BATFE: Bureau of Alcohol, Tobacco, Firearms and Explosives. ",
"A federal law enforcement agency, formally part of the Department of the Treasury, which doesn't seem overly concerned with alcohol or tobacco.",
"\n\nATPIAL: Advanced Target Pointer/Illuminator Aiming Laser. ",
"A weapon-mounted device that emits both visible and infrared target designators for use with or without night observation devices. ",
"Essentially, an advanced military-grade version of the \"laser sights\" seen in popular culture.",
"\n\nBDA: Bomb/Battle damage assessment. ",
"The practice of assessing damage inflicted on a target from a stand-off weapon, most typically a bomb or air-launched missile.",
"\n\nBenghazi: A city in the North African nation of Libya and the site of the 2012 attack on the U.S. consulate. ",
"The U.S. ambassador to Libya, a Foreign Service Information Management Officer, and two CIA Global Response Staff members (both former SEALs) were killed in the attack.",
"\n\nBeretta 92D: A double-action-only 9mm handgun that is a variant of the 92F used by much of the U.S. military. ",
"The 92D does not use a manual safety and its bobbed hammer cannot be manually cocked.",
"\n\nBeretta 92F: Double-action 9mm handgun that has been the standard-issue sidearm for the bulk of the U.S. military since 1985, as well as a favorite of action movie propmasters. ",
"In 2017, the U.S. Army selected the M17, manufactured by SIG Sauer, to replace the Beretta.",
"\n\nBlind Sheikh: Nickname for Omar Abdel-Rahman, who is currently serving a life prison sentence for his role in the 1993 World Trade Center bombing.",
"\n\nBUD/S: Basic Underwater Demolition/SEAL training. ",
"The six-month selection and training course required for entry into the SEAL teams, held in Coronado, California. ",
"Widely accepted as among the most brutal military selection courses in the world, with an average 80 percent attrition rate.",
"\n\nC-4: Composition 4. ",
"A plastic explosive compound known for its stability and malleability.",
"\n\nC-5: Lockheed Martin \"Galaxy\" aircraft used as a military transport. ",
"The C-5 is one of the largest functional aircraft ever produced.",
"\n\nCH-47: Boeing \"Chinook\" twin-engine heavy-lift helicopter used by the U.S. Army. ",
"Often used in Afghanistan's mountains due to its high service ceiling, the Chinook is a large aircraft that resembles a flying school bus.",
"\n\nCIA: Central Intelligence Agency.",
"\n\nCJSOTF: Combined Joint Special Operations Task Force. ",
"A regional command that controls special operations forces from various services and friendly nations.",
"\n\nCRRC: Combat Rubber Raiding Craft. ",
"Inflatable \"Zodiac-style\" boats used by SEALs and other maritime troops.",
"\n\nCZ-75: 9mm handgun designed in 1975 and produced in the Czech Republic.",
"\n\nDam Neck: An annex to NAS Oceana near Virginia Beach, Virginia, where nothing interesting, whatsoever, happens.",
"\n\nDCIS: Defense Criminal Investigation Service.",
"\n\nDEA: Drug Enforcement Administration.",
"\n\nDelta Force: A classic 1986 film starring Chuck Norris, title of the 1983 autobiography by the unit's first commanding officer and popular name for the Army's Special XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX\n\nDOD: Department of Defense.",
"\n\nDOJ: Department of Justice.",
"\n\nEchols Legend: A best-quality hunting rifle designed and hand built by gunmaker D'Arcy Echols of Millville, Utah. ",
"Considered by many to be the highest-quality sporting rifle ever made.",
"\n\nEFP: Explosively Formed Penetrator/Projectile. ",
"A shaped explosive charge that forms a molten projectile used to penetrate armor. ",
"Such munitions were widely used by insurgents against coalition forces in Iraq.",
"\n\nEMS: Emergency Medical Services. ",
"Fire, paramedic, and other emergency personnel.",
"\n\nEOD: Explosive Ordnance Disposal. ",
"The military's explosives experts, who are trained to, among other things, disarm or destroy improvised explosive devices or other munitions.",
"\n\nEotech: An unmagnified holographic gunsight for use on rifles and carbines, including the M4. ",
"The sight is designed for rapid target acquisition, which makes it an excellent choice for close-quarters battle. ",
"Can be fitted with a detachable 3x magnifier for use at extended ranges.",
"\n\nFBI: Federal Bureau of Investigation.",
"\n\nFDA: Food and Drug Administration.",
"\n\nFOB: Forward Operating Base. ",
"A secured forward military position used to support tactical operations. ",
"Can vary from small and remote outposts to sprawling complexes.",
"\n\nFobbit: A service member serving in a noncombat role who rarely, if ever, leaves the safety of the Forward Operating Base.",
"\n\nFrog Hog: SEAL groupie. ",
"Frequently sighted in and around Coronado and Virginia Beach watering holes.",
"\n\nGlock: An Austrian-designed, polymer-framed handgun popular with police forces, militaries, and civilians throughout the world. ",
"Glocks are made in various sizes and chambered in several different cartridges.",
"\n\nGPS: Global Positioning System. ",
"Satellite-based navigation system that provides a precise location anywhere on earth.",
"\n\nGRG: Gridded Reference Graphic. ",
"An annotated aerial map or photograph with various sectors of areas of interest separated and identified by gridlines.",
"\n\nHell Week: The crucible of BUD/S training. ",
"Five days of constant physical and mental stress with little sleep.",
"\n\nHK416: M4 clone engineered by the German firm of Heckler & Koch to operate using a short-stroke gas pistol system instead of the M4's direct-impingement gas system. ",
"Used by select special operations units in the U.S. and abroad. ",
"May or may not have been the weapon used to kill xxxxxxxxxxxxx.",
"\n\nHRT: Hostage Rescue Team. ",
"The FBI's elite counterterrorism and hostage rescue force, based out of Quantico, VA.",
"\n\nHUMINT: Human intelligence. ",
"Information gleaned through traditional human-to-human methods.",
"\n\nHVI/HVT: High-value individual/High-value target. ",
"An individual who is important to the enemy's capabilities and is therefore specifically sought out by a military force.",
"\n\nIED: Improvised explosive device. ",
"A homemade bomb, whether crude or complex, often used by insurgent forces overseas.",
"\n\nIR: Infrared. ",
"The part of the electromagnetic spectrum with a longer wavelength than light but a shorter wavelength than radio waves. ",
"Invisible to the naked eye but visible with night observation devices. ",
"Example: an IR laser aiming device.",
"\n\nISIS: Islamic State of Iraq and the Levant, or Islamic State of Iraq and Syria. ",
"Radical Sunni terrorist group. ",
"Also referred to as ISIL. ",
"The bad guys.",
"\n\nISR: Intelligence, surveillance, and reconnaissance.",
"\n\nJAG: Judge advocate general. ",
"Decent television series and the military's legal department.",
"\n\nJSOC: Joint Special Operations Command. ",
"A component command of SOCOM, XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.",
"\n\nKaffir: An Arabic term used by Muslims to describe a subset of society who have read and rejected the message of the Qur'an; or, a derogatory term for a nonbeliever of Islam.",
"\n\nLangley: The Northern Virginia location where the Central Intelligence Agency is headquartered. ",
"Often used as shorthand for CIA.",
"\n\nLaw of armed conflict: A segment of public international law that regulates the conduct of armed hostilities.",
"\n\nLAW rocket: M-72 Light Anti-armor Weapon. ",
"A disposable, tube-launched 66mm unguided rocket in use with U.S. forces since before the Vietnam War.",
"\n\nM-1911/1911A1: .45-caliber pistol used by U.S. forces since before World War I.\n\nM-203: A 40mm single-shot grenade launcher that can be fit to the underside of the M4 carbine to provide an indirect fire capability.",
"\n\nM4: The standard assault rifle of the majority of U.S. military forces, including the U.S. Navy SEALs. ",
"The M4 is a shortened carbine variant of the M16 rifle that fires a 5.56x45mm cartridge. ",
"The M4 is a modular design that can be adapted to numerous configurations, including different barrel lengths.",
"\n\nMACV-SOG: Military Assistance Command, Vietnam–Special Operations Group. ",
"A joint special operations unit consisting primarily of Army special forces, Navy SEALs, and CIA personnel during the Vietnam War. ",
"Many of their missions remain highly classified to this day.",
"\n\nMahdi Militia: An insurgent Shia militia, loyal to cleric Muqtada al-Sadr, that opposed U.S. forces in Iraq during the height of that conflict.",
"\n\nMBITR: AN/PRC-148 Multiband Inter/Intra Team Radio. ",
"A handheld multiband, tactical software-defined radio, commonly used by special operations forces to communicate during operations.",
"\n\nMIL DOT: A reticle-based system used for range estimation and long-range shooting, based on the milliradian unit of measurement.",
"\n\nMK 186: An intelligent two-way radio system designed to initiate explosive devices, including claymore mines.",
"\n\nMk 23: A massive .45-caliber handgun adopted by SOCOM and produced by Heckler & Koch that epitomizes wasteful bureaucratic spending.",
"\n\nMk 24 MOD 0: A .45-caliber handgun made by Heckler & Koch, used by SEALs. ",
"This handgun is often equipped with a sound suppressor or \"silencer.\"",
"\n\nMk 48 MOD 1: A belt-fed 7.62x51mm light machine gun designed for use by special operations forces. ",
"Weighing 18 pounds unloaded, the Mk-48 can fire 730 rounds per minute to an effective range of 800 meters and beyond.",
"\n\nNCIS: Naval Criminal Investigative Service. ",
"A federal law enforcement agency whose jurisdiction includes the U.S. Navy and Marine Corps. ",
"Also a popular television program with at least two spin-offs.",
"\n\nNOD: Night observation device. ",
"Commonly referred to as \"night vision goggles,\" these devices amplify ambient light, allowing the user to see in low-light environments. ",
"Special operations forces often operate at night to take full advantage of such technology.",
"\n\nNSW: Naval Special Warfare. ",
"The Navy's special operations force, includes SEAL teams.",
"\n\nOH-58D: A now-obsolete helicopter, nicknamed the \"Kiowa,\" used by the U.S. Army for observation, utility, armed reconnaissance, and fire support operations.",
"\n\nOODA Loop: Observe/Orient/Decide/Act. ",
"A decision cycle theory developed by Colonel John Boyd of the U.S. Air Force.",
"\n\nP226: 9mm handgun made by SIG Sauer, the standard-issue sidearm for SEALs.",
"\n\nP229: A compact handgun made by SIG Sauer, often used by federal law enforcement officers, chambered in 9mm as well as other cartridges.",
"\n\nPakistani Taliban: An Islamic terrorist group comprised of various Sunni Islamist militant groups based in the northwestern Federally Administered Tribal Areas along the Afghan border in Pakistan.",
"\n\nPETN: PEntaerythritol TetraNitrate. ",
"An explosive compound used in blasting caps to initiate larger explosive charges.",
"\n\nPLF: Parachute landing fall. ",
"A technique taught to military parachutists to prevent injury when making contact with the earth. ",
"Round canopy parachutes used by airborne forces fall at faster velocities than other parachutes and require a specific landing sequence. ",
"More often than not ends up as feet-ass-head.",
"\n\nPTSD: Post-traumatic stress disorder. ",
"A mental condition that develops in association with shocking or traumatic events. ",
"Commonly associated with combat veterans.",
"\n\nPVS-15: Also known as the M953, a purpose-built ground operations binocular night observation device currently issued to members of U.S. Special Operations Command.",
"\n\nPVS-18: A night observation device that can be used as a handheld pocket scope, eye-mounted monocular, or weapon sight when mounted in conjunction with a laser or night-vision-compatible primary optic.",
"\n\nQRF: Quick Reaction Force, a contingency force on standby to assist operations in progress.",
"\n\nRHIB/RIB: Rigid Hull Inflatable Boat/Rigid Inflatable Boat. ",
"A lightweight but high-performance boat constructed with a solid fiberglass or composite hull and flexible tubes at the gunwale (sides).",
"\n\nROE: Rules of engagement. ",
"Rules or directives that determine what level of force can be applied against an enemy in a particular situation or area.",
"\n\nSAP: Special Access Program. ",
"Security protocols that provide highly classified information with safeguards and access restrictions that exceed those for regular classified information. ",
"Really secret stuff.",
"\n\nSCI: Sensitive compartmented information. ",
"Classified information concerning or derived from sensitive intelligence sources, methods, or analytical processes. ",
"Often found on private basement servers in upstate New York or bathroom closet servers in Denver.",
"\n\nScouts and Raiders: A joint Army-Navy maritime commando unit created after Pearl Harbor and distinguished through actions in the North African, European, and Pacific Theaters of World War II. ",
"Direct forefathers of today's SEALs.",
"\n\nSEAL: SEa Air and Land. ",
"The three environments in which SEALs operate. ",
"The U.S. Navy's special operations force.",
"\n\nSERE: Survival, Evasion, Resistance, Escape. ",
"A military training program that includes realistic role-playing as a prisoner of war. ",
"SERE students are subjected to highly stressful procedures, sometimes including waterboarding, as part of the course curriculum.",
"\n\nSIGINT: Signals intelligence. ",
"Intelligence derived from electronic signals and systems used by foreign targets, such as communications systems, radars, and weapons systems.",
"\n\nSMU: Special Mission Unit. ",
"Elite special operations units that fall under the command of JSOC. ",
"If we told you any more, we'd have to kill you.",
"\n\nSOCOM: United States Special Operations Command. ",
"The Unified Combatant Command charged with overseeing the various Special Operations Component Commands of the U.S. Army, Marine Corps, Navy, and Air Force. ",
"Headquartered at MacDill Air Force Base in Tampa, Florida.",
"\n\nSpecial Reconnaissance Team: NSW teams that conduct special activities, ISR, and provide intelligence support to the SEAL Teams.",
"\n\nSSE: Sensitive site exploitation. ",
"A term used to describe collecting information, material, and persons from a designated location and analyzing them to answer information requirements, facilitate subsequent operations, or support criminal prosecution. ",
"Basically, grabbing everything that looks important for later use.",
"\n\nS-Vest: Suicide vest. ",
"An explosive-packed garment worn on the body that turns a human into a deadly area weapon. ",
"A tactic employed frequently by insurgent and terrorist groups.",
"\n\nSWAT: Special Weapons And Tactics. ",
"Paramilitary law enforcement teams trained and equipped to respond to special incidents. ",
"Can vary wildly in terms of capability and effectiveness. ",
"Dog owners beware.",
"\n\nTaliban: An Islamic fundamentalist political movement and terrorist group in Afghanistan. ",
"U.S. and coalition forces have been at war with members of the Taliban since late 2001.",
"\n\nTDFD: Time Delay Firing Device. ",
"An explosive initiator that allows for detonation at a determined period of time. ",
"A fancy version of a really long fuse.",
"\n\nTIC: Troops In Contact. ",
"A firefight involving U.S. or friendly forces.",
"\n\nTOC: Tactical Operations Center. ",
"A command post for military operations. ",
"A TOC usually includes a small group of personnel who guide members of an active tactical element during a mission from a secured area.",
"\n\nTOR Network: A computer network designed to conceal a user's identity and location. ",
"TOR allows for anonymous communication.",
"\n\nTS: Top secret. ",
"Information the unauthorized disclosure of which reasonably could be expected to cause exceptionally grave damage to national security that the original classification authority is able to identify or describe. ",
"Can also describe an individual's level of security clearance.",
"\n\nTST: Time-sensitive target. ",
"A target requiring immediate response because it is highly lucrative, a fleeting target of opportunity, or it poses (or will soon pose) a danger to friendly forces.",
"\n\nUAV: Unmanned aerial vehicle. ",
"A fancy acronym for drones, which have become the staple of aerial imagery for law enforcement and military surveillance activities both inside the United States and abroad. ",
"UAVs can range vastly in both size and capability.",
"\n\nUCMJ: Uniform Code of Military Justice. ",
"Disciplinary and criminal code that applies to members of the U.S. military.",
"\n\nVPN: Virtual private network. ",
"A private network that enables users to send and receive data across shared or public networks using an encrypted tunnel to increase privacy and security.",
"\n\nWARCOM/NAVSPECWARCOM: United States Naval Special Warfare Command. ",
"The U.S. Navy's special operations force and the maritime component of United States Special Operations Command. ",
"Headquartered in Coronado, California, WARCOM is the administrative command for subordinate NSW groups comprising eight SEAL teams, one SEAL Delivery Vehicle (SDV) team, three Special Boat teams, and two Special Reconnaissance teams.",
"\n\n## ACKNOWLEDGMENTS\n\nNO BOOK CAN BE written in a bubble, and that is certainly the case here. ",
"There are many people to thank for helping make this novel a reality, some of whom can be named, and some of whom cannot, because they are still working in the shadows.",
"\n\nFirst and foremost, this book would still be sitting on my nightstand, or in a folder on my computer, if not for Brad Thor. ",
"To say I have no words to express how thankful I am for your advice, your counsel, and for taking a risk on me would be an understatement. ",
"Brad, thank you for making this lifelong dream come true. ",
"You gave me a piece of advice that I will never forget when we first spoke. ",
"You said, \"the only difference between a published author and an unpublished author is that the published author never quit.\" ",
"You would have made an exceptional Team Guy.",
"\n\nAnd, to the amazing Emily Bestler. ",
"It is never good for an author to be at a loss for words, but our every interaction has left me speechless. ",
"A better mentor, editor, publisher and friend is not to be found. ",
"Thank you for reading the manuscript and seeing its potential. ",
"What started over a long coffee in Manhattan that I never wanted to end has turned into the fulfillment of a lifelong dream. ",
"Thank you for everything.",
"\n\nThe engine of this speeding train is our agent, Alexandra Machinist. ",
"Your aggressive and energetic spirit is contagious. ",
"Thank you for making this such an incredible experience.",
"\n\nTo the entire team at Emily Bestler Books. ",
"Thank you for your support and guidance. ",
"A special thank you to Lara Jones, for ensuring everything stayed on track, and to our publicist, David Brown, for pulling me, albeit reluctantly, into the unfamiliar world of \"tweets,\" \"likes,\" and \"friends.\" ",
"Nobody does it better. ",
"And, to Ann Pryor, a master of marketing, for leading the charge into that uncharted territory.",
"\n\nTo Vince Flynn, for your leadership in blazing the path for a new generation of thriller writers. ",
"A true master of the craft, you live on and continue to influence through your remarkable work. ",
"You are missed.",
"\n\nTo Lee Child, who welcomed me into the club of scribes and made me feel like I belonged before I even finished the novel. ",
"Thank you for your encouragement on the title and for your advice. ",
"As you can see, I took it.",
"\n\nTo Stephen Hunter, for crafting a fictional former scout/sniper that has inspired more than a few to seek the Hog's Tooth. ",
"Thank you for sharing your gift with the world and for your kindness to me. ",
"I eagerly await your next novel.",
"\n\nTo David Morrell, for creating one of the most iconic characters to ever grace the page and screen, and for being one of the first to mention SEALs in a thriller back in 1984 before many people knew what they were. ",
"Thank you for connecting me with ITW and for your sage counsel.",
"\n\nTo Brad Taylor, for mentoring me through the unique pitfalls associated with the transition from special operations to publishing. ",
"Thank you for taking the time to guide me around the land mines.",
"\n\nTo Terry Flynn, my oldest friend, going back to the preschool playground, who was also the first person to read and review the manuscript—your initial critique made this a better book.",
"\n\nTo Christian Sommer, for parting with his 1985 Navy SEAL edition of Gung-Ho magazine back in the sixth grade. ",
"It had quite the influence, and I still treasure it today.",
"\n\nTo Chris and Courtney Cox, for your example of strength and courage in the face of unimaginable adversity. ",
"Your grace and poise under pressure, becoming the very definition of resolve is a lesson to us all.",
"\n\nTo David Lehman, who read a first copy on a well-deserved vacation in Turks and Caicos while trying to keep the pages from blowing down the beach. ",
"I'll have it bound next time.",
"\n\nTo Graham Hill, for your thoughtful comments and insistence that your law review skills would catch all our poor grammar.",
"\n\nTo Dave Kilcullen, for your influence on an entire generation of warfighters. ",
"Our nation is in your debt.",
"\n\nTo Jeff Rotherham, for reading the demolition-centric sections of the book and ensuring they were close to the way a terrorist would do it while making sure we left out enough key details to keep this out of the how-to section.",
"\n\nTo Brent Bogart at Tradewind Technologies, for guiding me through the world of covert communications in a way even I could understand. ",
"I know it's not perfect, but I didn't want to give away all your secrets.",
"\n\nThank you to \"Goat,\" for your mentorship during some interesting times in Iraq and for your service to the country.",
"\n\nTo Justin Henderson, a man of integrity, loyalty, and wisdom beyond his years; thank you—you know what for. ",
"Someday I might even write a book about it.",
"\n\nTo Mike Atkinson, for your continued mentorship and support, and for standing with me when it counted.",
"\n\nTo Wayne Gregory, for everything you do for our service members. ",
"It does not go unnoticed.",
"\n\nTo Katie Pavlich, for being there when I needed you. ",
"I'll never be able to thank you enough.",
"\n\nTo Jason Salata, for your patience, humor, and support.",
"\n\nTo Lacey Biles, for your friendship and all you do for freedom.",
"\n\nTo Biss. ",
"Thank you for inviting me to that Reds game and follow-on King Ranch trip. ",
"It changed the course of my life.",
"\n\nTo Larry Sheakley and Lou Lauch, for bidding on that auction item, and to Ric Kayne, for inviting me to lunch on your yacht. ",
"It turned into so much more.",
"\n\nTo Larry Vickers, for your friendship, wisdom, unprecedented knowledge of firearms, and service to the nation.",
"\n\nTo Tom Davin, one of the best business leaders of this generation. ",
"Thank you for always having time for me and never making it seem like a burden. ",
"You exemplify the warrior-guardian.",
"\n\nTo George Kollitides, for your energy and enthusiasm in all that you do.",
"\n\nTo Trig French, for inviting me to Camp Fire Club of America. ",
"It's an honor to know you.",
"\n\nTo Hoby Darling, a great leader and a better friend. ",
"Thank you for welcoming us into our new home and for your inspiration on the workout front. ",
"You are a machine!",
"\n\nTo Andrew Kline, for not just reading the book but for all you do for my family. ",
"I am humbled beyond words. ",
"The difference you make in the lives of people you touch is astounding.",
"\n\nTo Darren LaSorte, for an incredible omelet and unwavering loyalty. ",
"I think I'll keep you around.",
"\n\nTo Kevin O'Malley, Jimmy Klein, and Frank Lecrone, the best collection of friends a guy could ever have. ",
"We have more adventures to come!",
"\n\nTo the Brothers of the Mystic Lodge, for your unwavering support. ",
"A better band of pirates would be impossible to find.",
"\n\nTo Dom Raso, patriot, founder of Dynamis Alliance and the personification of brotherhood.",
"\n\nTo Alec Wolf, Andrew Arrabito, and John Devine, for always being there.",
"\n\nTo Eric Frohardt and Jeff Houston, warriors.",
"\n\nTo Sean Haberberger, for being a great Teammate, in our platoons and out.",
"\n\nTo Jon Dubin, my brother in arms. ",
"Thank you for what you do at the FBI and for including me in Lanai. ",
"Amazing!",
"\n\nTo Pat McNamara, for your service, drive, energy, and expertise.",
"\n\nTo Jocko Willink, for two incredible pre-deployment unit level training cycles.",
"\n\nTo Josh and Audrey Waldron, for your early book review, great feedback, and friendship.",
"\n\nTo Daniel and Karen Winkler, for your kindness, exceptional craftsmanship, and dedication to those at the tip of the spear. ",
"Your influence goes far beyond the blades.",
"\n\nTo Angus McQueen, Revan McQueen, Katie McQueen, Tony Makris, Melanie Hill, Lacey Duffy, Carl Warner, Eric Van Horn, and Hayley Holmes. ",
"It has been an eventful year. ",
"Thank you for your support.",
"\n\nTo Keith Walawender, Mike Biller, Matt Coufalik, Wally McLallen, and Nick Pontikes at Tomahawk Strategic Solutions. ",
"You have put together an incredible team!",
"\n\nTo Dr. Rob Bray, surgeon extraordinaire, mentor, friend, and patriot. ",
"The country owes you a debt of gratitude, though I doubt your contributions will ever be declassified. ",
"Thank you for your guidance and support throughout the transition from Naval service. ",
"We think about your generosity every day—and thank you for a steady hand during my spine surgery.",
"\n\nTo Rick and Esther Rosenfield, words can't describe my feelings for you both—thank you for adopting me and my entire family—we couldn't do this without you.",
"\n\nTo Nick and Tina Cousoulis, for your love story.",
"\n\nTo Clint and Heidi Smith at Thunder Ranch, for your support in all aspects of life and for always saying yes even before you know the question.",
"\n\nTo James Jarrett, for teaching me to think logically while staying devoted to my principles, a debt I will never be able to repay. ",
"Thank you for your service and sacrifice to the country in the jungles of Vietnam and for paving the way for the current generation of special operations warriors. ",
"I am humbled and honored by your continued mentorship and guidance.",
"\n\nTo Jim and Nancy Demetriades, for your brilliance, example, and kindness.",
"\n\nTo Ross Perot, for what you do without recognition behind the scenes for our military and their families, and for what you did for mine.",
"\n\nTo Wayne LaPierre, for your steadfast leadership in the face of unimaginable pressures. ",
"Thank you for standing strong and fighting for all of us. ",
"And to Pete Brownell, Richard Childress, Woody Phillips, Millie Hallow, Wayne Sheets, Scott Christman, Andrew Arulanandam, Joe Debergalis, Doug Hamlin, Jim Kohlmeyer, Amy Hunter, Chris Dewitt, Lisa Supernaugh, Deb Sargol, and everyone at the NRA for standing the line and for the tireless work you do in behalf of all Americans day in and day out. ",
"Thank you for fighting for our rights, and for giving those who fought for it a free country to come home to.",
"\n\nTo Josh Powell, for your vision and determination.",
"\n\nTo James Yeager, for your attitude, and for your early and enthusiastic support.",
"\n\nTo Shane Mahoney, for your eloquence and passion in defense of wild places and the animals that inhabit them.",
"\n\nTo Jeff Crane, Phil Hoon, PJ Carleton, and the staff at the Congressional Sportsman's Foundation, for always including me—it's my turn to help now.",
"\n\nTo Hugh Wiley, Larry Keane, and everyone at the National Shooting Sports Foundation, for your leadership and for putting on SHOT Show, an event with no equal.",
"\n\nTo Mac Minard at Montana Guides and Outfitters Association Big Hearts Under the Big Sky program, for all you do for veterans and their families.",
"\n\nTo the staff at the Department of Defense Office of Prepublication and Review—you have a thankless task but your efforts are appreciated.",
"\n\nTo Larry Ellison, for your inspiration, for showing us what is possible, always making us feel welcome and for reintroducing us to tennis and sailing—I still think George Marshall is the most influential General of the twentieth century, by the way.",
"\n\nTo the Chicago Crew of Jimmy and Pam Linn, Danny Wolff, and Shelly Sorosky—I am looking forward to our next linkup.",
"\n\nTo Jimmy Spithill, for reading an early version of the book and going through the sailing chapter—I hope I didn't butcher it too bad.",
"\n\nTo Jonny Sanchez, for sitting next to Brad at that fundraiser.",
"\n\nTo Scott Grimes, for your example and friendship—my next book just might have that real estate protagonist.",
"\n\nTo Greg Garrison, for loaning me your car . . . ",
"for a year.",
"\n\nTo the Coronado Book and Beer Club, we may have finally found a book everyone will read.",
"\n\nTo Becky Stein, for your early read of the prologue and for wanting to read more.",
"\n\nTo D'Arcy Echols, for taking the time to read the book—you make one heck of a rifle.",
"\n\nTo Roman Tsunder and Terry Hardy—thank you for PTTOW! ",
"You have created something truly special.",
"\n\nTo Ben Bosanac, for your insights and support.",
"\n\nTo Jon Hart, not many people can say they changed an industry. ",
"Well done, my friend. ",
"And to John Barklow at Sitka Gear. ",
"Thank you for your time in uniform and for spending all those years on Kodiak refining your skills and passing them on to the next generation of Frogmen. ",
"There are few, if any, better in the woods.",
"\n\nTo Tim Fallon, Chip Beaman, Doug Prichard, Dave Knesek, and the instructors at FTW Ranch—I wish I'd had your levels of skill when I was behind the glass in Iraq.",
"\n\nTo Craig Flynn, even though I am not sure you actually read the book. ",
"Thank you for your unwavering support and loyalty.",
"\n\nTo Razor and Sylvia Dobbs, for opening your home and hearts to our family.",
"\n\nTo everyone who read early copies of the manuscript and provided valuable feedback: Billy Birdzell, Spencer Bray, Mike Schoby, Ryan Rich, Jed Davis, Ross Seyfried, Ron Jensen, Brian Rosen, Melissa Petro, Alan Must, and both Jeff Johnstons. ",
"To Christopher Ball, for your aviation expertise. ",
"To Dr. Montoya, Dr. Bucolo, and Dr. Smalley, for helping us unravel the intricacies of beta-blockers and brain tumors. ",
"To Will Searcy, for your expertise in all things postmortem.",
"\n\nTo Steve Magennis, for your extremely helpful update on Afghanistan and to all those that provided expertise in aviation, seamanship, communications, explosives, and ballistics. ",
"All errors are mine alone.",
"\n\nTo Derek Anderson and Pete Osyf at Winston and Strawn for shepherding me through the DOD review process, and Brad Bondi, Brock Bosson, Michael Wheatley, and Danny Stemp at Cahill Gordon and Reindel, for your support on the business side of things.",
"\n\nTo Evan West, Sean Parnell, and the Branding Freedom team for your creativity and expertise in what was completely uncharted territory. ",
"Thank you.",
"\n\nTo Michael Davidson, Adnan Kifayat, and the entire Gen Next team, you are doing amazing things for the future of our country—count me in! ",
"Your leadership and expertise in countering violent extremism is inspiring. ",
"Big problems require bold leadership and innovative solutions, so I encourage readers to learn more about the Gen Next Foundation. ",
"Their global security portfolio includes the Against Violent Extremism network—the first and only network of former violent extremists to thwart recruitment and radicalization—and the Redirect Method—an anti-extremist advertising campaign that redirects individuals to compelling counter-narrative content. ",
"Together, they are the only private sector led solutions to combat the ideology of violent extremism. ",
"I support the organization and encourage others to get involved as well, because our security depends on innovation and leadership.",
"\n\nTo those at the SEAL Family Foundation, Special Forces Charitable Trust, All Eagles Oscar, The National Ability Center, Special Operations Warrior Foundation, The Honor Foundation, and all organizations working tirelessly in support of our warriors and their families. ",
"To The Brain Treatment Center, for their commitment and assistance treating war fighters struggling with Posttraumatic Stress Disorder after serving in the longest sustained combat operations in our nation's history. ",
"And to those at Valor for Life and DISC Sport and Spine Center, for providing veterans with no-cost surgical spine care and best practices in the treatment of PTSD.",
"\n\nTo David and Nancy, for raising such an amazing daughter.",
"\n\nTo my mom, Caroline, for reading what I know is not \"her type of book\" but suffering through it and providing incredible feedback—thank you for introducing me to a lifelong love of reading—your days of correcting my papers apparently did not end when I left for college. ",
"To my dad, George, for reading what is most definitely \"his kind of book\" and guiding me through the waters around Fishers. ",
"To my brother, Roger, a professor of music composition, for helping with the music selection, and my sister, Emily, and her husband, Scott, for their encouragement after reading an early version of the prologue.",
"\n\nTo Brigadier General and Mrs. Kenneth Strong, in whose Hill House this book was written and to whom I will always be indebted.",
"\n\nTo Emily Wood, for putting up with this venture and opening your home to me. ",
"Thank you.",
"\n\nMost of all, for my beautiful wife, Faith—thank you for believing in me. ",
"I am more in awe of you each and every day. ",
"And to our three children—thank you for showing me what is truly important.",
"\n\nAnd finally, to the other half of this writing team, Keith Wood—without you I'd still be pecking away at the keyboard, trying to figure out how to start the book. ",
"Your skill with the written word brought this story to life. ",
"I hope I carried my share of the ruck. ",
"Here's to many more.",
"\n\n## ABOUT THE AUTHOR\n\nJACK CARR is a former Navy SEAL sniper and current writer. ",
"He lives with his wife and three children in Park City, Utah. ",
"This is his first novel.",
"\n\nVisit him at OfficialJackCarr.com\n\nEMILYBESTLERBOOKS.COM\n\nMEET THE AUTHORS, WATCH VIDEOS AND MORE AT\n\nSimonandSchuster.com\n\nAuthors.SimonandSchuster.com/Jack-Carr\n\n Facebook.com/EmilyBestler \n @EmilyBestler\nWe hope you enjoyed reading this Simon & Schuster ebook.",
"\n\n* * *\n\nGet a FREE ebook when you join our mailing list. ",
"Plus, get updates on new releases, deals, recommended reads, and more from Simon & Schuster. ",
"Click below to sign up and see terms and conditions.",
"\n\nCLICK HERE TO SIGN UP\n\nAlready a subscriber? ",
"Provide your email again so we can register this ebook and send you more of what you like to read. ",
"You will continue to receive exclusive offers in your inbox.",
"\n\nAn Imprint of Simon & Schuster, Inc.\n\n1230 Avenue of the Americas\n\nNew York, NY 10020\n\nwww.SimonandSchuster.com\n\nThis book is a work of fiction. ",
"Any references to historical events, real people, or real places are used fictitiously. ",
"Other names, characters, places, and events are products of the author's imagination, and any resemblance to actual events or places or persons living or dead is entirely coincidental.",
"\n\nCopyright © 2018 by Jack Carr Enterprises, LLC\n\nAll rights reserved, including the right to reproduce this book or portions thereof in any form whatsoever. ",
"For information, address Atria Books Subsidiary Rights Department, 1230 Avenue of the Americas, New York, NY 10020.",
"\n\nFirst Emily Bestler Books/Atria Books hardcover edition March 2018\n\n and colophon are trademarks of Simon & Schuster, Inc.\n\nFor information about special discounts for bulk purchases, please contact Simon & Schuster Special Sales at 1-866-506-1949 or business@simonandschuster.com.",
"\n\nThe Simon & Schuster Speakers Bureau can bring authors to your live event. ",
"For more information, or to book an event, contact the Simon & Schuster Speakers Bureau at 1-866-248-3049 or visit our website at www.simonspeakers.com.",
"\n\nInterior design by Dana Sloan\n\nJacket design by Pete Garceau\n\nJacket images © Nik Keevil/Arcangel (man); © Nik Keevil/Trevillion (blood); © Pgiam/iStock by Getty Images (city)\n\nAuthor photograph by Clay Goswick\n\nLibrary of Congress Cataloging-in-Publication Data\n\nNames: Carr, Jack (Joint pseudonym) author.",
"\n\nTitle: The terminal list : a thriller / Jack Carr.",
"\n\nDescription: New York : Atria/Emily Bestler Books, 2018. ",
"| Series: Terminal list ; 1 | Description based on print version record and CIP data provided by publisher.",
"\n\nIdentifiers: LCCN 2017029713 (print) | LCCN 2017044303 (ebook) | ISBN 9781501180835 (eBook) | ISBN 9781501180811 (hardback) | ISBN 9781501180828 (mass market)\n\nSubjects: LCSH: United States. ",
"Navy. ",
"SEALs—Fiction. ",
"| Serial murders—Fiction. ",
"| Political corruption—Fiction. ",
"| Retribution—Fiction. ",
"| BISAC: Fiction / Thrillers. ",
"| FICTION / Suspense. ",
"| GSAFD: Mystery fiction. ",
"| Suspense fiction.",
"\n\nClassification: LCC PS3603.A774235 (ebook) | LCC PS3603.A774235 T4 2018 (print) | DDC 813/.6—dc23\n\nLC record available at <https://lccn.loc.gov/2017029713>\n\nISBN 978-1-5011-8081-1\n\nISBN 978-1-5011-8083-5 (ebook)\n"
] | {
"pile_set_name": "Books3"
} | [
0,
0.017241379310344827,
0.010752688172043012,
0,
0,
0,
0,
0.007352941176470588,
0.020618556701030927,
0,
0,
0.010101010101010102,
0,
0,
0,
0.008547008547008548,
0.005649717514124294,
0,
0,
0,
0,
0,
0,
0.020202020202020204,
0,
0.02127659574468085,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.00909090909090909,
0,
0,
0.017543859649122806,
0,
0,
0,
0,
0.012578616352201259,
0,
0,
0,
0,
0.0125,
0,
0,
0,
0.007462686567164179,
0,
0.008695652173913044,
0,
0.009389671361502348,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.011904761904761904,
0,
0,
0.008064516129032258,
0,
0,
0.006756756756756757,
0.008403361344537815,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.008928571428571428,
0,
0,
0,
0,
0.02702702702702703,
0,
0,
0,
0,
0,
0.005952380952380952,
0.007633587786259542,
0,
0,
0,
0,
0.006369426751592357,
0,
0,
0,
0,
0.012048192771084338,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.00819672131147541,
0.01020408163265306,
0,
0.033707865168539325,
0,
0,
0,
0.005263157894736842,
0,
0,
0.008547008547008548,
0,
0,
0,
0,
0,
0,
0,
0,
0.004608294930875576,
0,
0,
0.007575757575757576,
0,
0,
0.005263157894736842,
0.004424778761061947,
0,
0.009259259259259259,
0,
0,
0,
0,
0.0136986301369863,
0.006944444444444444,
0,
0,
0,
0,
0.005649717514124294,
0,
0,
0.021739130434782608,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.006024096385542169,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.003968253968253968,
0,
0,
0.015151515151515152,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.005813953488372093,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.004484304932735426,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.013513513513513514,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.005154639175257732,
0,
0,
0,
0,
0.038461538461538464,
0,
0,
0,
0.05,
0.020833333333333332,
0,
0.014705882352941176,
0.014705882352941176,
0,
0,
0,
0,
0,
0,
0,
0,
0.06060606060606061,
0,
0,
0,
0,
0.015873015873015872,
0,
0,
0,
0,
0,
0,
0.06666666666666667,
0,
0,
0.016666666666666666,
0.02,
0,
0,
0,
0.013513513513513514,
0,
0,
0,
0,
0.031746031746031744,
0,
0.023809523809523808,
0,
0,
0.00980392156862745,
0,
0,
0,
0,
0.03125,
0,
0.009009009009009009,
0,
0,
0.05,
0,
0,
0,
0,
0,
0,
0.022900763358778626,
0.011111111111111112,
0.02127659574468085,
0.006369426751592357,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.07692307692307693,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.03571428571428571,
0,
0.007692307692307693,
0,
0,
0,
0.004629629629629629,
0.01694915254237288,
0,
0,
0,
0.008,
0.03125,
0,
0,
0,
0,
0.025,
0,
0,
0.02197802197802198,
0,
0.0625,
0.034482758620689655,
0,
0,
0,
0,
0,
0,
0,
0,
0.012048192771084338,
0.023255813953488372,
0,
0.025,
0.09090909090909091,
0,
0,
0,
0.014925373134328358,
0,
0,
0,
0.014492753623188406,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.023255813953488372,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.009174311926605505,
0.014492753623188406,
0.0125,
0,
0.010135135135135136,
0,
0.02666666666666667,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.021739130434782608,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.007042253521126761,
0.0032258064516129032,
0,
0.02702702702702703,
0,
0.03125,
0,
0.0072992700729927005,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.007692307692307693,
0,
0,
0,
0,
0.007142857142857143,
0,
0,
0,
0,
0.004784688995215311,
0,
0,
0,
0.014492753623188406,
0,
0,
0,
0,
0.006024096385542169,
0,
0,
0.005747126436781609,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.005747126436781609,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.024691358024691357,
0,
0.023529411764705882,
0.02857142857142857,
0,
0.008,
0,
0.009433962264150943,
0,
0.0048543689320388345,
0.013071895424836602,
0,
0.008264462809917356,
0.007692307692307693,
0,
0.015384615384615385,
0,
0.008771929824561403,
0.02702702702702703,
0,
0,
0.01764705882352941,
0.011363636363636364,
0.015151515151515152,
0,
0,
0,
0,
0,
0,
0,
0.017543859649122806,
0,
0,
0.008130081300813009,
0,
0.01098901098901099,
0,
0,
0,
0,
0,
0.004545454545454545,
0.029411764705882353,
0.024691358024691357,
0.02040816326530612,
0,
0,
0.009852216748768473,
0,
0,
0.015873015873015872,
0.007936507936507936,
0,
0,
0.016666666666666666,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.0125,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.043478260869565216,
0,
0,
0.008928571428571428,
0,
0,
0,
0,
0.004545454545454545,
0,
0.010101010101010102,
0,
0,
0,
0.02666666666666667,
0,
0.029411764705882353,
0,
0,
0,
0,
0.004830917874396135,
0.013333333333333334,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.007194244604316547,
0,
0,
0.01282051282051282,
0.009900990099009901,
0.004484304932735426,
0,
0.006472491909385114,
0,
0.0058823529411764705,
0.017857142857142856,
0,
0,
0,
0,
0,
0,
0,
0.016129032258064516,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.037037037037037035,
0,
0,
0.009900990099009901,
0.02702702702702703,
0,
0,
0,
0,
0.043478260869565216,
0,
0.038461538461538464,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.011764705882352941,
0,
0,
0,
0,
0,
0.05555555555555555,
0,
0,
0.007751937984496124,
0.024390243902439025,
0,
0,
0,
0.019801980198019802,
0,
0.01694915254237288,
0.017241379310344827,
0.020833333333333332,
0,
0.016666666666666666,
0,
0.020833333333333332,
0.030303030303030304,
0,
0,
0.01694915254237288,
0,
0,
0,
0,
0,
0.01818181818181818,
0,
0.03571428571428571,
0.02,
0.015151515151515152,
0.023809523809523808,
0,
0.006535947712418301,
0,
0,
0,
0,
0.03333333333333333,
0,
0,
0.018867924528301886,
0,
0,
0.011111111111111112,
0,
0,
0,
0,
0,
0.015625,
0,
0,
0,
0,
0.006329113924050633,
0.004629629629629629,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.0070921985815602835,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.006896551724137931,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.00980392156862745,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.02631578947368421,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.010416666666666666,
0,
0.01694915254237288,
0.024390243902439025,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.008,
0,
0,
0.006622516556291391,
0,
0,
0,
0,
0.007142857142857143,
0,
0.00881057268722467,
0,
0.010752688172043012,
0,
0,
0.010256410256410256,
0.012987012987012988,
0.00423728813559322,
0,
0.02564102564102564,
0.018518518518518517,
0.01098901098901099,
0.01694915254237288,
0,
0,
0,
0,
0,
0,
0.00904977375565611,
0.011560693641618497,
0.013157894736842105,
0,
0,
0,
0.011904761904761904,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.0625,
0,
0,
0,
0,
0,
0,
0.011904761904761904,
0.008130081300813009,
0,
0.021739130434782608,
0,
0.010869565217391304,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.03225806451612903,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.014084507042253521,
0,
0,
0,
0.013157894736842105,
0.03389830508474576,
0,
0,
0,
0.016666666666666666,
0.016129032258064516,
0,
0.1,
0,
0.03333333333333333,
0.0072992700729927005,
0,
0.010810810810810811,
0.025974025974025976,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.017543859649122806,
0,
0.004484304932735426,
0,
0.012048192771084338,
0,
0.02142857142857143,
0,
0.009259259259259259,
0,
0,
0.010638297872340425,
0,
0,
0,
0,
0,
0,
0,
0,
0.013157894736842105,
0,
0,
0,
0,
0.00819672131147541,
0.006666666666666667,
0,
0,
0,
0,
0.021897810218978103,
0,
0,
0,
0,
0,
0,
0,
0.005681818181818182,
0,
0,
0.010101010101010102,
0,
0,
0,
0,
0,
0,
0.005050505050505051,
0.006622516556291391,
0.015151515151515152,
0,
0,
0,
0,
0,
0,
0,
0.01818181818181818,
0,
0.01639344262295082,
0.06896551724137931,
0,
0,
0,
0.017241379310344827,
0,
0.022222222222222223,
0,
0.011811023622047244,
0.019230769230769232,
0.004347826086956522,
0,
0.012195121951219513,
0,
0,
0,
0,
0,
0,
0,
0,
0.006172839506172839,
0,
0,
0.010416666666666666,
0,
0.00684931506849315,
0,
0,
0,
0,
0.00625,
0,
0,
0.011764705882352941,
0.006578947368421052,
0.012269938650306749,
0,
0,
0.008403361344537815,
0,
0,
0.00558659217877095,
0,
0,
0.007042253521126761,
0.0056179775280898875,
0.010309278350515464,
0.012195121951219513,
0,
0.006756756756756757,
0,
0.011627906976744186,
0.0044444444444444444,
0.003676470588235294,
0,
0.00975609756097561,
0.02127659574468085,
0,
0.00851063829787234,
0.006896551724137931,
0,
0.004273504273504274,
0,
0.009433962264150943,
0,
0,
0,
0,
0.009174311926605505,
0,
0.0048543689320388345,
0,
0,
0,
0.006993006993006993,
0,
0.004048582995951417,
0.006896551724137931,
0.0136986301369863,
0.0036231884057971015,
0,
0,
0,
0,
0,
0,
0.006329113924050633,
0.007575757575757576,
0,
0,
0,
0.008130081300813009,
0,
0,
0.004975124378109453,
0,
0,
0.006578947368421052,
0,
0.006493506493506494,
0.015151515151515152,
0.008,
0,
0.005714285714285714,
0,
0,
0,
0,
0,
0.0125,
0,
0.018518518518518517,
0.004878048780487805,
0.005847953216374269,
0,
0,
0.016666666666666666,
0.010869565217391304,
0,
0,
0.005434782608695652,
0,
0.006622516556291391,
0,
0,
0.07142857142857142,
0.03571428571428571,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.011764705882352941,
0,
0.0045662100456621,
0.038461538461538464,
0,
0,
0,
0,
0,
0,
0,
0.08333333333333333,
0,
0,
0,
0.014705882352941176,
0,
0.05555555555555555,
0,
0,
0,
0,
0.009345794392523364,
0,
0,
0,
0.010526315789473684,
0,
0,
0,
0,
0.02631578947368421,
0,
0,
0,
0.010869565217391304,
0,
0,
0,
0,
0,
0,
0.013157894736842105,
0,
0.01694915254237288,
0,
0.009345794392523364,
0.011764705882352941,
0,
0.020833333333333332,
0,
0.015503875968992248,
0.00684931506849315,
0.03333333333333333,
0,
0,
0.02564102564102564,
0,
0.006802721088435374,
0.027777777777777776,
0.00847457627118644,
0.009174311926605505,
0.007042253521126761,
0,
0.00980392156862745,
0.006493506493506494,
0,
0,
0.023255813953488372,
0,
0,
0.011111111111111112,
0,
0,
0.0213903743315508,
0.016216216216216217,
0.02127659574468085,
0,
0.0070921985815602835,
0.015625,
0.009523809523809525,
0.006802721088435374,
0.010416666666666666,
0,
0,
0.008928571428571428,
0,
0,
0,
0.015151515151515152,
0,
0.013333333333333334,
0,
0.008547008547008548,
0,
0.04878048780487805,
0.0072992700729927005,
0.008264462809917356,
0.009345794392523364,
0.009950248756218905,
0,
0,
0,
0.020689655172413793,
0.012578616352201259,
0.030303030303030304,
0,
0,
0,
0,
0.02,
0,
0.006369426751592357,
0.005291005291005291,
0.023255813953488372,
0.07692307692307693,
0.08333333333333333,
0,
0.018867924528301886,
0,
0,
0.018867924528301886,
0,
0,
0.0392156862745098,
0,
0.021739130434782608,
0.005952380952380952,
0.025,
0,
0,
0,
0.016129032258064516,
0,
0.030303030303030304,
0.00823045267489712,
0.008547008547008548,
0.023255813953488372,
0.006734006734006734,
0.0053475935828877,
0,
0.00684931506849315,
0.00641025641025641,
0,
0.009433962264150943,
0.017699115044247787,
0,
0.047619047619047616,
0,
0,
0.018518518518518517,
0,
0,
0,
0,
0.010752688172043012,
0.014084507042253521,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.011111111111111112,
0.027777777777777776,
0.010638297872340425,
0,
0,
0,
0,
0,
0,
0.005494505494505495,
0,
0,
0.0037735849056603774,
0,
0,
0,
0,
0,
0.038461538461538464,
0,
0.01639344262295082,
0,
0,
0,
0,
0.009009009009009009,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.007042253521126761,
0,
0.011627906976744186,
0.005813953488372093,
0,
0.009433962264150943,
0.007352941176470588,
0.011834319526627219,
0.01818181818181818,
0.004608294930875576,
0.008695652173913044,
0,
0,
0,
0,
0.011363636363636364,
0,
0,
0,
0,
0,
0,
0.010638297872340425,
0,
0,
0,
0,
0,
0.038461538461538464,
0,
0,
0,
0.009523809523809525,
0,
0,
0,
0,
0,
0.038461538461538464,
0,
0,
0,
0,
0.017241379310344827,
0.024390243902439025,
0.047619047619047616,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.021739130434782608,
0.030303030303030304,
0,
0,
0,
0.02127659574468085,
0,
0,
0.030303030303030304,
0.0625,
0,
0,
0.006024096385542169,
0,
0.006802721088435374,
0,
0,
0.006172839506172839,
0,
0,
0.010101010101010102,
0,
0,
0,
0,
0.011235955056179775,
0,
0,
0.005681818181818182,
0,
0,
0,
0,
0,
0.02127659574468085,
0,
0.010582010582010581,
0,
0,
0.009174311926605505,
0,
0,
0.006329113924050633,
0.004761904761904762,
0,
0.029411764705882353,
0,
0,
0,
0,
0,
0,
0,
0.009708737864077669,
0,
0,
0,
0.011904761904761904,
0,
0,
0,
0,
0,
0,
0,
0.011834319526627219,
0,
0,
0,
0,
0.008333333333333333,
0,
0,
0,
0.015151515151515152,
0,
0.004807692307692308,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.01,
0.013888888888888888,
0,
0,
0,
0,
0.014084507042253521,
0.014925373134328358,
0,
0,
0,
0,
0.02127659574468085,
0,
0.023809523809523808,
0,
0,
0,
0,
0,
0,
0,
0,
0.0136986301369863,
0,
0.014084507042253521,
0.014705882352941176,
0,
0,
0,
0,
0,
0,
0.022727272727272728,
0,
0,
0,
0,
0,
0,
0,
0.038461538461538464,
0.014285714285714285,
0,
0,
0,
0.011111111111111112,
0.017543859649122806,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.013513513513513514,
0,
0.017241379310344827,
0,
0,
0,
0.008849557522123894,
0,
0,
0,
0.01282051282051282,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.007692307692307693,
0.02702702702702703,
0,
0,
0,
0,
0,
0,
0,
0.0064516129032258064,
0.0196078431372549,
0,
0.03225806451612903,
0.010101010101010102,
0,
0,
0,
0,
0.058823529411764705,
0.014492753623188406,
0,
0.037037037037037035,
0,
0,
0,
0,
0,
0,
0,
0.007518796992481203,
0,
0,
0,
0,
0,
0,
0,
0,
0.037037037037037035,
0,
0,
0,
0.0196078431372549,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.014705882352941176,
0.007462686567164179,
0.009174311926605505,
0.027777777777777776,
0,
0,
0.023809523809523808,
0.024390243902439025,
0,
0.030303030303030304,
0,
0,
0,
0,
0,
0,
0,
0.024390243902439025,
0.011363636363636364,
0,
0.0056179775280898875,
0,
0,
0,
0.007633587786259542,
0,
0,
0,
0.007142857142857143,
0.027586206896551724,
0,
0,
0.058823529411764705,
0.03076923076923077,
0,
0.012987012987012988,
0,
0.011764705882352941,
0,
0,
0,
0,
0,
0.0625,
0,
0,
0.0064516129032258064,
0,
0,
0,
0,
0.01020408163265306,
0,
0,
0.09090909090909091,
0.030303030303030304,
0,
0.013513513513513514,
0.018867924528301886,
0,
0,
0,
0.022222222222222223,
0,
0.007936507936507936,
0,
0,
0.010101010101010102,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.02564102564102564,
0,
0,
0,
0.01,
0,
0,
0,
0,
0,
0.023809523809523808,
0,
0,
0,
0.007936507936507936,
0,
0.01818181818181818,
0.015151515151515152,
0.02702702702702703,
0,
0,
0,
0,
0.010638297872340425,
0.012658227848101266,
0.006230529595015576,
0,
0,
0,
0,
0.006896551724137931,
0,
0,
0,
0,
0,
0,
0.005952380952380952,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.008403361344537815,
0,
0.015625,
0,
0,
0,
0,
0.009615384615384616,
0,
0,
0.017543859649122806,
0,
0,
0,
0,
0,
0,
0.024390243902439025,
0.015228426395939087,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.015873015873015872,
0,
0,
0,
0.01639344262295082,
0,
0.041666666666666664,
0,
0,
0,
0.04,
0,
0,
0.07142857142857142,
0,
0.014084507042253521,
0,
0,
0.009259259259259259,
0,
0.013513513513513514,
0,
0,
0,
0,
0,
0.01098901098901099,
0.005291005291005291,
0.014084507042253521,
0,
0.005952380952380952,
0,
0.025,
0,
0,
0,
0.006289308176100629,
0,
0,
0,
0,
0.010416666666666666,
0,
0,
0,
0,
0,
0,
0,
0.014925373134328358,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.013333333333333334,
0,
0,
0,
0,
0,
0.008130081300813009,
0,
0,
0,
0,
0,
0.027777777777777776,
0,
0,
0,
0,
0,
0,
0.008620689655172414,
0,
0,
0,
0.007407407407407408,
0.005263157894736842,
0,
0.008928571428571428,
0,
0,
0,
0.021739130434782608,
0,
0.011111111111111112,
0.006666666666666667,
0.014492753623188406,
0.011111111111111112,
0,
0,
0,
0.005319148936170213,
0,
0,
0,
0,
0,
0.009433962264150943,
0,
0,
0,
0.005076142131979695,
0,
0.016,
0.01694915254237288,
0,
0,
0,
0.01818181818181818,
0.008333333333333333,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.025,
0,
0,
0.010309278350515464,
0,
0.018691588785046728,
0,
0,
0,
0,
0,
0,
0.01282051282051282,
0,
0.019230769230769232,
0,
0.018518518518518517,
0,
0,
0,
0,
0,
0.013513513513513514,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.007462686567164179,
0.011494252873563218,
0,
0,
0,
0.007194244604316547,
0,
0,
0,
0,
0,
0.019230769230769232,
0,
0,
0,
0.014925373134328358,
0.0072992700729927005,
0.038461538461538464,
0,
0,
0,
0.02564102564102564,
0.013157894736842105,
0,
0.038461538461538464,
0,
0.004366812227074236,
0.08333333333333333,
0.05555555555555555,
0,
0,
0,
0,
0,
0.05,
0,
0,
0.02631578947368421,
0,
0,
0,
0.058823529411764705,
0,
0,
0.02040816326530612,
0,
0,
0,
0,
0,
0.011494252873563218,
0,
0,
0.013888888888888888,
0,
0,
0,
0,
0,
0,
0,
0,
0.0041841004184100415,
0,
0,
0.16666666666666666,
0.16666666666666666,
0,
0,
0.007380073800738007,
0.02,
0,
0,
0,
0,
0,
0.010869565217391304,
0.01020408163265306,
0,
0.009174311926605505,
0,
0,
0.03333333333333333,
0,
0,
0,
0.014925373134328358,
0,
0,
0,
0,
0,
0,
0.041666666666666664,
0,
0,
0,
0,
0.007575757575757576,
0.006578947368421052,
0,
0.00392156862745098,
0.015873015873015872,
0,
0.007352941176470588,
0,
0,
0.0053475935828877,
0.02,
0.01639344262295082,
0,
0,
0,
0,
0.019230769230769232,
0,
0.008547008547008548,
0.010380622837370242,
0.02857142857142857,
0.015706806282722512,
0,
0.014184397163120567,
0,
0.02702702702702703,
0,
0,
0,
0.008,
0,
0,
0,
0.01694915254237288,
0,
0,
0,
0.0136986301369863,
0.017543859649122806,
0,
0,
0,
0.012195121951219513,
0,
0.007246376811594203,
0,
0,
0,
0,
0.02,
0,
0,
0,
0.007751937984496124,
0,
0,
0,
0,
0,
0,
0,
0,
0.009174311926605505,
0.009523809523809525,
0.011494252873563218,
0,
0,
0,
0.034482758620689655,
0,
0,
0,
0,
0,
0.03333333333333333,
0,
0,
0.021739130434782608,
0,
0.0136986301369863,
0,
0,
0,
0,
0.006756756756756757,
0,
0,
0,
0,
0,
0,
0.010309278350515464,
0,
0,
0.015151515151515152,
0.0056179775280898875,
0.00980392156862745,
0,
0,
0,
0,
0.011764705882352941,
0.011235955056179775,
0,
0.011494252873563218,
0.008130081300813009,
0,
0.005,
0,
0.022222222222222223,
0,
0.008403361344537815,
0.009345794392523364,
0,
0.00684931506849315,
0.021739130434782608,
0,
0.028169014084507043,
0.007042253521126761,
0.006993006993006993,
0.006060606060606061,
0,
0,
0,
0,
0,
0,
0.03125,
0,
0,
0,
0,
0,
0,
0.017543859649122806,
0,
0,
0,
0,
0,
0,
0,
0.008928571428571428,
0.02040816326530612,
0,
0,
0,
0,
0,
0.016129032258064516,
0,
0,
0.027777777777777776,
0,
0,
0,
0.014084507042253521,
0,
0,
0,
0,
0,
0.0625,
0,
0,
0,
0,
0,
0,
0,
0.01098901098901099,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.006211180124223602,
0,
0,
0.014388489208633094,
0,
0.04,
0,
0,
0,
0.013888888888888888,
0.00546448087431694,
0.012195121951219513,
0.011152416356877323,
0.0078125,
0,
0.006369426751592357,
0,
0.0034129692832764505,
0,
0,
0.02040816326530612,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.006802721088435374,
0.011764705882352941,
0,
0,
0.007246376811594203,
0.008333333333333333,
0,
0,
0,
0,
0,
0,
0.02127659574468085,
0,
0,
0.05263157894736842,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.018518518518518517,
0,
0,
0,
0,
0,
0,
0.016129032258064516,
0,
0,
0,
0.014705882352941176,
0,
0,
0,
0,
0,
0,
0,
0.016666666666666666,
0,
0,
0,
0.01694915254237288,
0,
0.02857142857142857,
0.014285714285714285,
0,
0,
0,
0,
0.006896551724137931,
0.015384615384615385,
0.02702702702702703,
0,
0,
0.007142857142857143,
0,
0.01098901098901099,
0,
0,
0.02,
0.00819672131147541,
0.08333333333333333,
0,
0.017241379310344827,
0,
0.02727272727272727,
0.011627906976744186,
0,
0.006944444444444444,
0,
0.0078125,
0,
0.022222222222222223,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.016129032258064516,
0,
0,
0,
0,
0,
0.004291845493562232,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.009345794392523364,
0.0070921985815602835,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.03389830508474576,
0,
0,
0,
0,
0,
0,
0,
0,
0.013888888888888888,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.022727272727272728,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.008928571428571428,
0.010416666666666666,
0,
0,
0,
0,
0,
0,
0.0125,
0.012987012987012988,
0.0136986301369863,
0,
0.007575757575757576,
0.007575757575757576,
0.00510204081632653,
0.018867924528301886,
0,
0,
0.009523809523809525,
0,
0,
0.005263157894736842,
0.01,
0,
0.047619047619047616,
0.047619047619047616,
0.0625,
0.02564102564102564,
0,
0,
0,
0,
0,
0.047619047619047616,
0.008,
0.043478260869565216,
0,
0,
0,
0,
0,
0,
0,
0,
0.02702702702702703,
0,
0,
0,
0,
0.01694915254237288,
0,
0,
0,
0,
0,
0.037037037037037035,
0,
0,
0,
0,
0,
0.011363636363636364,
0.008403361344537815,
0,
0.012578616352201259,
0,
0.037037037037037035,
0,
0,
0.012738853503184714,
0,
0,
0.016,
0,
0,
0.011049723756906077,
0,
0,
0,
0,
0.0044444444444444444,
0.016736401673640166,
0,
0.009433962264150943,
0,
0,
0.006711409395973154,
0.005714285714285714,
0,
0,
0,
0,
0.012048192771084338,
0.012578616352201259,
0.014084507042253521,
0,
0,
0.0072992700729927005,
0,
0.010309278350515464,
0,
0,
0,
0.007936507936507936,
0.005208333333333333,
0.0036496350364963502,
0.01694915254237288,
0,
0,
0,
0,
0,
0,
0,
0.03076923076923077,
0,
0.01,
0,
0.010752688172043012,
0.008620689655172414,
0,
0.05555555555555555,
0.004016064257028112,
0.023622047244094488,
0,
0.004,
0,
0.006622516556291391,
0,
0,
0.006944444444444444,
0,
0,
0,
0,
0,
0,
0,
0.04,
0,
0,
0,
0,
0.021052631578947368,
0,
0.012345679012345678,
0.003472222222222222,
0.009615384615384616,
0,
0,
0.008695652173913044,
0.009708737864077669,
0,
0,
0,
0.009433962264150943,
0,
0,
0,
0.013071895424836602,
0,
0,
0.00980392156862745,
0.008,
0,
0,
0,
0.03225806451612903,
0,
0,
0.0136986301369863,
0,
0.013888888888888888,
0,
0,
0,
0.01694915254237288,
0,
0.007246376811594203,
0.016,
0.01092896174863388,
0.02040816326530612,
0.013333333333333334,
0,
0,
0,
0.015625,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.02702702702702703,
0.02857142857142857,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.015151515151515152,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.006329113924050633,
0,
0,
0,
0,
0,
0,
0,
0,
0.005208333333333333,
0,
0.01,
0.01098901098901099,
0,
0,
0,
0,
0.0064516129032258064,
0,
0.004081632653061225,
0,
0.005681818181818182,
0.008547008547008548,
0.006600660066006601,
0.006329113924050633,
0.006329113924050633,
0,
0,
0.0070921985815602835,
0,
0,
0.011695906432748537,
0,
0,
0.007633587786259542,
0.010869565217391304,
0,
0.0051813471502590676,
0,
0,
0.009174311926605505,
0,
0,
0,
0,
0.0072992700729927005,
0,
0.005813953488372093,
0.010638297872340425,
0,
0.008333333333333333,
0,
0.009708737864077669,
0,
0.004081632653061225,
0,
0.012422360248447204,
0.0196078431372549,
0,
0.010309278350515464,
0.03225806451612903,
0,
0,
0,
0,
0,
0,
0.022222222222222223,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.014705882352941176,
0,
0,
0,
0,
0,
0.04,
0,
0,
0,
0,
0.008620689655172414,
0,
0,
0,
0.007751937984496124,
0,
0,
0,
0.02127659574468085,
0.007575757575757576,
0.00819672131147541,
0.0125,
0.021739130434782608,
0.011363636363636364,
0.01834862385321101,
0,
0,
0,
0,
0,
0,
0.02666666666666667,
0,
0,
0,
0,
0,
0,
0.016129032258064516,
0,
0.015037593984962405,
0.014285714285714285,
0.015625,
0.011627906976744186,
0,
0,
0,
0,
0,
0,
0.014492753623188406,
0,
0,
0,
0.013157894736842105,
0,
0,
0.010869565217391304,
0,
0,
0.01639344262295082,
0,
0.01694915254237288,
0.0051813471502590676,
0,
0.02040816326530612,
0.041666666666666664,
0.012987012987012988,
0,
0,
0,
0,
0.0625,
0,
0.019230769230769232,
0,
0.0078125,
0.0625,
0,
0,
0.013333333333333334,
0,
0,
0,
0,
0,
0.01020408163265306,
0.007194244604316547,
0,
0,
0,
0,
0.01282051282051282,
0.0136986301369863,
0.02564102564102564,
0.03225806451612903,
0,
0,
0.011764705882352941,
0,
0,
0.008403361344537815,
0,
0,
0,
0.023255813953488372,
0,
0,
0.015151515151515152,
0,
0,
0,
0,
0.011363636363636364,
0,
0,
0.010752688172043012,
0,
0,
0,
0.037037037037037035,
0.012658227848101266,
0,
0,
0.016666666666666666,
0,
0,
0,
0,
0,
0.015151515151515152,
0,
0,
0.008547008547008548,
0,
0.007633587786259542,
0,
0,
0,
0,
0.00909090909090909,
0.00819672131147541,
0,
0,
0,
0.0091324200913242,
0,
0,
0,
0,
0,
0,
0.015151515151515152,
0,
0.007936507936507936,
0,
0,
0,
0,
0,
0.008547008547008548,
0.009174311926605505,
0,
0,
0,
0.007633587786259542,
0,
0,
0,
0,
0,
0,
0,
0,
0.01098901098901099,
0,
0,
0.0030211480362537764,
0.008620689655172414,
0,
0,
0,
0.011111111111111112,
0,
0,
0,
0,
0.008,
0,
0,
0.004201680672268907,
0.006756756756756757,
0,
0,
0,
0,
0,
0.010526315789473684,
0,
0,
0,
0,
0,
0.02,
0.012195121951219513,
0,
0,
0,
0,
0.010638297872340425,
0,
0.027777777777777776,
0,
0,
0.007352941176470588,
0,
0.018518518518518517,
0,
0,
0.012987012987012988,
0,
0,
0.014285714285714285,
0,
0.034482758620689655,
0,
0,
0.015384615384615385,
0,
0,
0.012658227848101266,
0.01818181818181818,
0.012987012987012988,
0,
0,
0.008064516129032258,
0,
0.016666666666666666,
0.0125,
0,
0,
0,
0.006289308176100629,
0,
0,
0.016129032258064516,
0.012987012987012988,
0,
0,
0,
0.01639344262295082,
0.0056179775280898875,
0,
0.008620689655172414,
0.006993006993006993,
0.011111111111111112,
0,
0.006872852233676976,
0.0091324200913242,
0.010309278350515464,
0.00966183574879227,
0.012738853503184714,
0.005847953216374269,
0.022727272727272728,
0.011235955056179775,
0,
0,
0.01652892561983471,
0.016,
0.010416666666666666,
0,
0,
0,
0.006711409395973154,
0,
0,
0,
0,
0,
0.02857142857142857,
0.017543859649122806,
0,
0,
0,
0,
0,
0,
0,
0,
0.0125,
0,
0,
0.014925373134328358,
0,
0.013245033112582781,
0,
0,
0,
0,
0.011363636363636364,
0,
0,
0,
0,
0.006172839506172839,
0.00823045267489712,
0.004405286343612335,
0,
0,
0,
0,
0,
0,
0,
0,
0.01639344262295082,
0,
0,
0,
0,
0,
0.011904761904761904,
0.019417475728155338,
0,
0,
0,
0.007692307692307693,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.014423076923076924,
0.009615384615384616,
0.009174311926605505,
0,
0,
0,
0,
0,
0,
0.010526315789473684,
0,
0,
0.06666666666666667,
0.023255813953488372,
0,
0,
0,
0,
0,
0,
0,
0.014285714285714285,
0,
0,
0,
0.006607929515418502,
0,
0,
0,
0,
0,
0,
0,
0.009708737864077669,
0,
0,
0,
0,
0.07692307692307693,
0,
0,
0.013157894736842105,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.009615384615384616,
0,
0,
0,
0,
0,
0.005376344086021506,
0,
0,
0.008771929824561403,
0,
0,
0.06666666666666667,
0.012195121951219513,
0,
0.007246376811594203,
0,
0,
0,
0,
0.02247191011235955,
0,
0,
0.016666666666666666,
0,
0,
0,
0,
0,
0,
0.013157894736842105,
0,
0,
0.02564102564102564,
0,
0,
0,
0,
0,
0,
0,
0.016129032258064516,
0,
0,
0,
0,
0.023809523809523808,
0,
0,
0,
0.014925373134328358,
0,
0.014492753623188406,
0,
0,
0.00819672131147541,
0.00847457627118644,
0,
0.008333333333333333,
0,
0,
0,
0.008032128514056224,
0,
0,
0,
0,
0,
0,
0.01639344262295082,
0,
0.004524886877828055,
0.010638297872340425,
0.007518796992481203,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.007633587786259542,
0,
0,
0,
0.00909090909090909,
0,
0,
0,
0.010416666666666666,
0.017391304347826087,
0,
0,
0,
0.030303030303030304,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.007246376811594203,
0,
0.014084507042253521,
0.011235955056179775,
0,
0,
0,
0,
0,
0,
0.009523809523809525,
0,
0,
0,
0.004761904761904762,
0,
0,
0,
0.008849557522123894,
0,
0,
0,
0,
0,
0.023809523809523808,
0,
0.009009009009009009,
0,
0.004975124378109453,
0.006896551724137931,
0,
0,
0.004048582995951417,
0.01020408163265306,
0,
0,
0,
0,
0.010309278350515464,
0,
0,
0,
0,
0.014084507042253521,
0.021739130434782608,
0,
0,
0,
0,
0,
0,
0,
0.024691358024691357,
0,
0,
0.022727272727272728,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.012048192771084338,
0,
0.010101010101010102,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.014084507042253521,
0.023255813953488372,
0.01,
0,
0.009615384615384616,
0.012345679012345678,
0,
0,
0,
0,
0,
0.01098901098901099,
0,
0,
0.008849557522123894,
0,
0,
0.006666666666666667,
0.02531645569620253,
0.010869565217391304,
0.013333333333333334,
0.007407407407407408,
0.007874015748031496,
0.0037174721189591076,
0,
0,
0.0064516129032258064,
0.004545454545454545,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.008620689655172414,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.010752688172043012,
0,
0,
0,
0,
0.01694915254237288,
0,
0,
0,
0,
0,
0.023255813953488372,
0,
0.008,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.021739130434782608,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.013333333333333334,
0,
0,
0,
0,
0,
0.0031847133757961785,
0.005714285714285714,
0.023529411764705882,
0,
0.008264462809917356,
0,
0,
0,
0,
0,
0,
0.007407407407407408,
0.006666666666666667,
0.007633587786259542,
0,
0.005128205128205128,
0,
0.007246376811594203,
0.012244897959183673,
0.020833333333333332,
0,
0.012345679012345678,
0.008928571428571428,
0,
0,
0,
0.007751937984496124,
0.011235955056179775,
0,
0,
0,
0.024691358024691357,
0.020833333333333332,
0,
0,
0,
0,
0.01282051282051282,
0,
0.014285714285714285,
0,
0,
0,
0,
0.02,
0,
0,
0,
0.017241379310344827,
0,
0.017857142857142856,
0.0070921985815602835,
0,
0,
0,
0,
0,
0.008130081300813009,
0.006711409395973154,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.013888888888888888,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.007042253521126761,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.005747126436781609,
0,
0,
0,
0,
0,
0.007874015748031496,
0,
0,
0,
0.003484320557491289,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.005681818181818182,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.006369426751592357,
0,
0.0070921985815602835,
0,
0.017241379310344827,
0,
0.010526315789473684,
0,
0,
0,
0,
0,
0,
0,
0.0064516129032258064,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.015625,
0.015151515151515152,
0,
0,
0,
0.023809523809523808,
0,
0,
0,
0,
0,
0.011627906976744186,
0,
0,
0.017543859649122806,
0,
0.006211180124223602,
0,
0.012195121951219513,
0.008695652173913044,
0,
0.006134969325153374,
0,
0.0064516129032258064,
0,
0,
0,
0.017699115044247787,
0.007042253521126761,
0,
0.02127659574468085,
0,
0.013333333333333334,
0,
0.024390243902439025,
0.025,
0.008,
0,
0.007633587786259542,
0,
0,
0,
0,
0,
0,
0,
0,
0.02666666666666667,
0,
0,
0,
0.030303030303030304,
0.014285714285714285,
0,
0,
0,
0.023255813953488372,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.016129032258064516,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.008547008547008548,
0,
0,
0,
0.014084507042253521,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.011904761904761904,
0.0045045045045045045,
0.0056179775280898875,
0,
0.00625,
0,
0,
0,
0.017543859649122806,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.006666666666666667,
0,
0,
0,
0.014925373134328358,
0,
0,
0,
0,
0,
0,
0.009174311926605505,
0,
0,
0.008928571428571428,
0,
0.006896551724137931,
0.043478260869565216,
0,
0,
0,
0,
0.024390243902439025,
0,
0,
0.01818181818181818,
0,
0.009708737864077669,
0.008771929824561403,
0,
0,
0,
0,
0,
0,
0,
0,
0.018691588785046728,
0.011904761904761904,
0,
0.0410958904109589,
0,
0.006622516556291391,
0.006622516556291391,
0,
0,
0.011494252873563218,
0,
0,
0,
0,
0,
0.012345679012345678,
0,
0,
0,
0,
0,
0.0055248618784530384,
0.007142857142857143,
0,
0.004464285714285714,
0.003236245954692557,
0,
0,
0,
0,
0,
0,
0,
0,
0.047619047619047616,
0,
0.037037037037037035,
0,
0,
0,
0.043478260869565216,
0,
0.02857142857142857,
0,
0.005847953216374269,
0,
0,
0.008,
0,
0,
0,
0.011111111111111112,
0,
0,
0.023255813953488372,
0,
0.03225806451612903,
0,
0,
0,
0.006329113924050633,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.006060606060606061,
0,
0,
0,
0.009009009009009009,
0.009259259259259259,
0,
0.006711409395973154,
0,
0,
0,
0,
0,
0,
0,
0.007142857142857143,
0,
0,
0,
0,
0,
0.011494252873563218,
0,
0,
0,
0,
0,
0,
0,
0,
0.01818181818181818,
0.01,
0,
0.006211180124223602,
0.010101010101010102,
0,
0.008771929824561403,
0,
0,
0,
0,
0.013422818791946308,
0,
0.012987012987012988,
0,
0,
0,
0,
0,
0,
0,
0.012578616352201259,
0,
0,
0,
0,
0,
0,
0,
0.0425531914893617,
0,
0,
0,
0.008695652173913044,
0.0064516129032258064,
0,
0,
0,
0,
0,
0,
0,
0,
0.023255813953488372,
0,
0,
0,
0,
0,
0,
0.027777777777777776,
0,
0,
0,
0,
0,
0.015625,
0,
0,
0.0111731843575419,
0,
0.011764705882352941,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.0625,
0,
0,
0,
0,
0,
0.022727272727272728,
0,
0,
0,
0,
0,
0,
0,
0.007352941176470588,
0,
0,
0.00684931506849315,
0,
0,
0,
0,
0,
0,
0,
0.02531645569620253,
0,
0.009708737864077669,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.007462686567164179,
0,
0,
0,
0.00847457627118644,
0,
0,
0,
0,
0,
0,
0,
0,
0.00980392156862745,
0,
0,
0,
0,
0,
0,
0,
0.010416666666666666,
0,
0,
0.008547008547008548,
0,
0,
0,
0,
0,
0,
0.009259259259259259,
0,
0,
0,
0.009009009009009009,
0,
0,
0.006711409395973154,
0,
0,
0.005649717514124294,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.008620689655172414,
0.01020408163265306,
0.007462686567164179,
0,
0,
0,
0,
0.006289308176100629,
0,
0,
0.043478260869565216,
0,
0,
0,
0,
0.037037037037037035,
0.011904761904761904,
0.010752688172043012,
0,
0,
0,
0,
0,
0,
0,
0.014492753623188406,
0,
0,
0,
0,
0.008333333333333333,
0,
0.005952380952380952,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.017543859649122806,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.004901960784313725,
0.0196078431372549,
0.04,
0,
0,
0,
0,
0,
0,
0,
0,
0.005681818181818182,
0,
0.019230769230769232,
0,
0,
0,
0,
0.014285714285714285,
0,
0,
0.009615384615384616,
0,
0,
0,
0.004807692307692308,
0.023529411764705882,
0.047619047619047616,
0.020202020202020204,
0,
0.023255813953488372,
0.02127659574468085,
0.024691358024691357,
0.01,
0,
0,
0.014492753623188406,
0,
0,
0.02631578947368421,
0,
0,
0,
0,
0.00980392156862745,
0,
0,
0.004651162790697674,
0,
0,
0.015384615384615385,
0,
0,
0,
0,
0,
0.013333333333333334,
0,
0,
0.010869565217391304,
0,
0,
0.006134969325153374,
0.012345679012345678,
0,
0.013888888888888888,
0,
0,
0,
0,
0,
0,
0.015384615384615385,
0,
0.011764705882352941,
0,
0,
0.01818181818181818,
0,
0.027777777777777776,
0,
0,
0.034482758620689655,
0.010526315789473684,
0,
0,
0.06666666666666667,
0.029411764705882353,
0,
0,
0.023809523809523808,
0.043478260869565216,
0,
0.0625,
0,
0,
0.037037037037037035,
0,
0.009615384615384616,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.022727272727272728,
0,
0,
0,
0,
0,
0,
0.02631578947368421,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.011494252873563218,
0,
0,
0,
0,
0,
0.03225806451612903,
0,
0.045454545454545456,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.006944444444444444,
0.009259259259259259,
0,
0.006329113924050633,
0,
0,
0,
0,
0,
0.005494505494505495,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.009708737864077669,
0.011904761904761904,
0.007194244604316547,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.007874015748031496,
0,
0,
0.010526315789473684,
0,
0,
0,
0,
0,
0,
0.030303030303030304,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.010309278350515464,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.02702702702702703,
0,
0,
0.007272727272727273,
0,
0.009523809523809525,
0.011764705882352941,
0.013888888888888888,
0.02403846153846154,
0,
0,
0,
0,
0.009174311926605505,
0.014925373134328358,
0.004739336492890996,
0,
0,
0.003968253968253968,
0.010638297872340425,
0,
0.020833333333333332,
0.006369426751592357,
0,
0,
0.0034482758620689655,
0,
0,
0.006802721088435374,
0,
0.006944444444444444,
0,
0,
0,
0,
0,
0,
0.007352941176470588,
0,
0.007575757575757576,
0,
0,
0,
0,
0,
0,
0.009900990099009901,
0.012048192771084338,
0.0040650406504065045,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.022222222222222223,
0,
0.0034482758620689655,
0,
0,
0,
0,
0,
0,
0,
0.029850746268656716,
0,
0,
0,
0,
0,
0,
0,
0.02112676056338028,
0,
0,
0,
0.006134969325153374,
0,
0,
0.023255813953488372,
0,
0.005952380952380952,
0,
0,
0.016129032258064516,
0,
0,
0.006666666666666667,
0,
0,
0,
0.027777777777777776,
0,
0,
0.043478260869565216,
0.016129032258064516,
0,
0,
0,
0,
0.013888888888888888,
0,
0.004545454545454545,
0,
0.013513513513513514,
0,
0,
0,
0,
0,
0.03333333333333333,
0.013513513513513514,
0,
0.017857142857142856,
0.006134969325153374,
0,
0,
0.023809523809523808,
0,
0,
0,
0,
0,
0,
0,
0.014925373134328358,
0,
0,
0,
0,
0.043478260869565216,
0,
0,
0,
0.005714285714285714,
0.014492753623188406,
0.027777777777777776,
0.009852216748768473,
0,
0.017857142857142856,
0,
0,
0,
0.1111111111111111,
0,
0,
0,
0,
0.01694915254237288,
0.05555555555555555,
0,
0.018518518518518517,
0.009708737864077669,
0,
0,
0,
0,
0.01694915254237288,
0,
0,
0.005681818181818182,
0.018518518518518517,
0.017857142857142856,
0.02666666666666667,
0.0625,
0,
0,
0,
0,
0.027777777777777776,
0,
0,
0,
0,
0.02702702702702703,
0,
0,
0,
0,
0.007462686567164179,
0,
0,
0,
0.043478260869565216,
0,
0,
0,
0,
0,
0,
0,
0.0056179775280898875,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.009259259259259259,
0,
0,
0.017857142857142856,
0.006134969325153374,
0,
0,
0,
0.007042253521126761,
0,
0,
0,
0,
0,
0,
0,
0.006329113924050633,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.01694915254237288,
0,
0,
0,
0,
0,
0,
0,
0,
0.013157894736842105,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.009345794392523364,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.004201680672268907,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.04,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.015873015873015872,
0,
0.005154639175257732,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.013157894736842105,
0,
0,
0,
0.014705882352941176,
0,
0,
0,
0,
0,
0.010526315789473684,
0.009523809523809525,
0,
0,
0,
0.022727272727272728,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.010752688172043012,
0.016666666666666666,
0,
0.013513513513513514,
0.038461538461538464,
0,
0,
0,
0.038461538461538464,
0,
0,
0,
0.014084507042253521,
0,
0,
0.0136986301369863,
0.013793103448275862,
0.010101010101010102,
0,
0,
0,
0.006993006993006993,
0.015037593984962405,
0,
0.02459016393442623,
0,
0,
0,
0.005952380952380952,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.030303030303030304,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.009345794392523364,
0,
0.012422360248447204,
0,
0.00558659217877095,
0,
0.012658227848101266,
0,
0,
0.041666666666666664,
0,
0,
0,
0,
0,
0,
0,
0.019417475728155338,
0,
0,
0,
0,
0,
0,
0.0625,
0,
0.07692307692307693,
0,
0,
0,
0,
0.03571428571428571,
0.024390243902439025,
0,
0,
0,
0,
0,
0,
0,
0.008130081300813009,
0.012658227848101266,
0,
0.017543859649122806,
0,
0.047619047619047616,
0,
0.045454545454545456,
0,
0,
0,
0,
0.010752688172043012,
0,
0.1,
0,
0,
0.037037037037037035,
0,
0,
0,
0.01694915254237288,
0,
0,
0,
0.008695652173913044,
0,
0.029411764705882353,
0,
0.043478260869565216,
0,
0,
0,
0,
0,
0.015503875968992248,
0,
0,
0.03571428571428571,
0,
0,
0,
0.012345679012345678,
0,
0,
0,
0,
0,
0,
0,
0.011111111111111112,
0.03225806451612903,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.01092896174863388,
0.015625,
0,
0.010526315789473684,
0.016129032258064516,
0.02631578947368421,
0,
0.028169014084507043,
0,
0,
0.05263157894736842,
0,
0,
0.029411764705882353,
0.019230769230769232,
0.007142857142857143,
0,
0.0125,
0.041666666666666664,
0,
0,
0.0297029702970297,
0.011235955056179775,
0.015873015873015872,
0,
0.025,
0,
0.017094017094017096,
0.021052631578947368,
0.011235955056179775,
0,
0.005434782608695652,
0.008849557522123894,
0,
0,
0,
0,
0,
0,
0.00847457627118644,
0.011111111111111112,
0,
0,
0.013333333333333334,
0.009009009009009009,
0.022222222222222223,
0.008547008547008548,
0,
0,
0,
0,
0.009615384615384616,
0,
0,
0,
0,
0,
0.00980392156862745,
0,
0,
0,
0,
0,
0,
0.004166666666666667,
0,
0.012738853503184714,
0,
0,
0,
0,
0,
0,
0,
0.009433962264150943,
0.007936507936507936,
0,
0,
0,
0,
0.014285714285714285,
0.008771929824561403,
0,
0,
0,
0,
0.007042253521126761,
0,
0,
0,
0,
0,
0,
0.010582010582010581,
0.018867924528301886,
0,
0.008849557522123894,
0,
0,
0.01020408163265306,
0,
0,
0,
0,
0,
0,
0,
0.015625,
0.0045662100456621,
0,
0,
0.009708737864077669,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.01015228426395939,
0,
0,
0,
0,
0,
0,
0,
0,
0.009174311926605505,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.006756756756756757,
0,
0,
0.005434782608695652,
0,
0.006060606060606061,
0.004016064257028112,
0.015873015873015872,
0,
0,
0.007936507936507936,
0.004347826086956522,
0.0041841004184100415,
0,
0,
0.005681818181818182,
0.0028011204481792717,
0,
0,
0,
0,
0,
0.015228426395939087,
0.003246753246753247,
0.0078125,
0.005747126436781609,
0,
0,
0.015625,
0.008695652173913044,
0,
0,
0,
0,
0.007751937984496124,
0.005434782608695652,
0,
0,
0.07142857142857142,
0,
0.09090909090909091,
0,
0,
0,
0.06666666666666667,
0.01639344262295082,
0,
0.02,
0,
0,
0,
0,
0.00980392156862745,
0,
0,
0,
0,
0,
0,
0,
0.008928571428571428,
0,
0,
0,
0,
0,
0,
0.006944444444444444,
0,
0,
0,
0.010638297872340425,
0,
0.008,
0.004576659038901602,
0.007751937984496124,
0,
0.009900990099009901,
0,
0,
0,
0,
0,
0,
0,
0.008064516129032258,
0,
0.004329004329004329,
0,
0,
0,
0.004201680672268907,
0,
0,
0,
0,
0,
0,
0,
0,
0.013333333333333334,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.008771929824561403,
0.007575757575757576,
0,
0.009615384615384616,
0,
0,
0.037037037037037035,
0.012987012987012988,
0,
0,
0,
0.014084507042253521,
0.006211180124223602,
0.0058823529411764705,
0,
0,
0,
0,
0,
0,
0.010309278350515464,
0.017241379310344827,
0.015384615384615385,
0,
0.005319148936170213,
0,
0.014084507042253521,
0.027777777777777776,
0,
0,
0,
0.06666666666666667,
0,
0,
0,
0,
0.007407407407407408,
0,
0,
0.005681818181818182,
0.006024096385542169,
0,
0,
0,
0,
0.00625,
0,
0,
0.004830917874396135,
0,
0,
0,
0.021739130434782608,
0,
0.015873015873015872,
0,
0.05,
0,
0,
0,
0,
0,
0,
0.0072992700729927005,
0,
0,
0,
0,
0,
0.006896551724137931,
0,
0.004048582995951417,
0,
0,
0,
0,
0.010309278350515464,
0,
0,
0.004608294930875576,
0,
0,
0,
0.004166666666666667,
0.00558659217877095,
0,
0,
0,
0,
0,
0.0038022813688212928,
0,
0,
0,
0,
0,
0,
0,
0.009202453987730062,
0,
0,
0,
0,
0.009009009009009009,
0,
0,
0.006097560975609756,
0.02631578947368421,
0,
0.02027027027027027,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.0048543689320388345,
0,
0,
0.018867924528301886,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.00980392156862745,
0,
0,
0,
0.007246376811594203,
0,
0.018867924528301886,
0.01098901098901099,
0,
0,
0.006097560975609756,
0.007518796992481203,
0,
0,
0.0078125,
0.008298755186721992,
0.01098901098901099,
0.014925373134328358,
0.043478260869565216,
0.0072992700729927005,
0,
0,
0,
0.006329113924050633,
0,
0,
0,
0,
0.004081632653061225,
0.005263157894736842,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.009259259259259259,
0.02857142857142857,
0.012987012987012988,
0,
0.024390243902439025,
0,
0,
0.027777777777777776,
0,
0.0125,
0,
0.014084507042253521,
0.044444444444444446,
0.2,
0.006172839506172839,
0,
0.05,
0,
0,
0.02631578947368421,
0.009523809523809525,
0,
0,
0.01,
0,
0,
0.009174311926605505,
0.022727272727272728,
0.014285714285714285,
0.005952380952380952,
0,
0.011363636363636364,
0,
0.017391304347826087,
0.00847457627118644,
0.05263157894736842,
0,
0,
0.014705882352941176,
0,
0,
0,
0.015873015873015872,
0.014492753623188406,
0.007936507936507936,
0.015873015873015872,
0,
0,
0,
0.03125,
0,
0,
0,
0,
0.0196078431372549,
0.007518796992481203,
0.012658227848101266,
0.008771929824561403,
0.00904977375565611,
0,
0.00641025641025641,
0.005681818181818182,
0.007692307692307693,
0,
0,
0,
0,
0,
0,
0,
0,
0.011627906976744186,
0,
0,
0.012121212121212121,
0.010471204188481676,
0.0125,
0,
0.019867549668874173,
0.018691588785046728,
0.004545454545454545,
0,
0.009523809523809525,
0,
0,
0,
0.008968609865470852,
0.002967359050445104,
0,
0.007194244604316547,
0.015384615384615385,
0.0072992700729927005,
0.008032128514056224,
0,
0,
0,
0,
0,
0.0625,
0,
0,
0,
0.026785714285714284,
0.005952380952380952,
0.006666666666666667,
0.006944444444444444,
0,
0,
0.01282051282051282,
0,
0,
0.010416666666666666,
0.013333333333333334,
0.007194244604316547,
0.004975124378109453,
0.017316017316017316,
0.005434782608695652,
0,
0.04,
0.014925373134328358,
0,
0,
0,
0,
0.010752688172043012,
0.008620689655172414,
0.02247191011235955,
0.009433962264150943,
0,
0.019801980198019802,
0,
0.006578947368421052,
0.027777777777777776,
0,
0,
0,
0,
0.015625,
0,
0,
0,
0,
0,
0,
0,
0,
0.006493506493506494,
0.007462686567164179,
0.006666666666666667,
0,
0,
0,
0.018518518518518517,
0.02247191011235955,
0.03225806451612903,
0,
0,
0.012195121951219513,
0,
0,
0,
0.012987012987012988,
0,
0,
0,
0,
0.018518518518518517,
0.023255813953488372,
0,
0,
0,
0.011764705882352941,
0,
0,
0,
0,
0.008849557522123894,
0.008064516129032258,
0.010526315789473684,
0,
0.00975609756097561,
0.00909090909090909,
0,
0.018867924528301886,
0,
0.007142857142857143,
0,
0,
0.01680672268907563,
0.012658227848101266,
0,
0,
0,
0,
0,
0,
0.010101010101010102,
0,
0,
0,
0.025,
0,
0,
0.011494252873563218,
0,
0.005747126436781609,
0,
0.014492753623188406,
0.020833333333333332,
0.009433962264150943,
0,
0,
0.02564102564102564,
0,
0,
0.02702702702702703,
0,
0,
0.00546448087431694,
0.009615384615384616,
0.012048192771084338,
0,
0,
0.01,
0,
0.010101010101010102,
0,
0.020618556701030927,
0.012048192771084338,
0,
0,
0,
0,
0,
0,
0,
0,
0.010309278350515464,
0,
0,
0,
0,
0,
0.03508771929824561,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.02127659574468085,
0,
0,
0.014492753623188406,
0,
0,
0.016483516483516484,
0.027777777777777776,
0,
0.011494252873563218,
0.02631578947368421,
0,
0,
0,
0.029411764705882353,
0.011235955056179775,
0.008928571428571428,
0,
0,
0,
0,
0,
0.012987012987012988,
0,
0.022222222222222223,
0,
0.015384615384615385,
0,
0,
0.023255813953488372,
0,
0,
0.006711409395973154,
0.007042253521126761,
0.007936507936507936,
0,
0,
0.009433962264150943,
0,
0,
0.017543859649122806,
0,
0,
0.012195121951219513,
0,
0,
0.020833333333333332,
0,
0,
0.017341040462427744,
0.058823529411764705,
0.03225806451612903,
0,
0,
0.007462686567164179,
0.003676470588235294,
0,
0.006211180124223602,
0,
0.0053475935828877,
0.0038314176245210726,
0.008771929824561403,
0.014285714285714285,
0.0078125,
0.007246376811594203,
0.008928571428571428,
0,
0,
0,
0,
0,
0.013745704467353952,
0.00819672131147541,
0,
0,
0,
0,
0,
0.0125,
0,
0,
0,
0,
0,
0,
0,
0,
0.019801980198019802,
0.01098901098901099,
0.012195121951219513,
0,
0.1,
0.023809523809523808,
0,
0.047619047619047616,
0.011494252873563218,
0.02,
0,
0,
0.05,
0,
0,
0.1,
0,
0,
0,
0,
0.015384615384615385,
0.003246753246753247,
0,
0,
0.0125,
0,
0,
0,
0.006060606060606061,
0,
0.0056179775280898875,
0,
0.008849557522123894,
0,
0.022727272727272728,
0,
0.014285714285714285,
0,
0,
0,
0,
0,
0.010416666666666666,
0,
0.008547008547008548,
0,
0.010309278350515464,
0,
0,
0,
0,
0,
0,
0.022727272727272728,
0,
0,
0,
0.034482758620689655,
0,
0.012987012987012988,
0,
0,
0,
0,
0.006097560975609756,
0,
0.022727272727272728,
0,
0,
0,
0.00684931506849315,
0,
0,
0,
0,
0.005434782608695652,
0,
0.006097560975609756,
0,
0,
0,
0,
0.011494252873563218,
0,
0,
0,
0,
0.011764705882352941,
0,
0.016574585635359115,
0,
0,
0.008695652173913044,
0,
0,
0,
0,
0,
0,
0.009009009009009009,
0.008771929824561403,
0.01092896174863388,
0.010752688172043012,
0,
0.00980392156862745,
0,
0.00909090909090909,
0,
0,
0,
0,
0,
0,
0.003952569169960474,
0.0058823529411764705,
0,
0.006329113924050633,
0.012195121951219513,
0,
0.005263157894736842,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.0033783783783783786,
0,
0.0625,
0.008849557522123894,
0,
0.03225806451612903,
0,
0.007462686567164179,
0,
0,
0,
0,
0.007782101167315175,
0,
0,
0.0035211267605633804,
0,
0,
0,
0.01694915254237288,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.04,
0,
0,
0,
0,
0,
0.015267175572519083,
0,
0,
0,
0.0196078431372549,
0,
0,
0,
0,
0.017543859649122806,
0,
0.01020408163265306,
0.014925373134328358,
0.005025125628140704,
0,
0,
0,
0.007246376811594203,
0,
0,
0,
0,
0.00909090909090909,
0,
0,
0,
0,
0.005494505494505495,
0,
0,
0,
0,
0,
0,
0,
0.007575757575757576,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.015151515151515152,
0,
0.0072992700729927005,
0,
0,
0,
0,
0,
0,
0,
0.00980392156862745,
0,
0,
0,
0.038461538461538464,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.006666666666666667,
0.009009009009009009,
0,
0,
0,
0,
0,
0,
0.011904761904761904,
0,
0,
0,
0,
0.010050251256281407,
0,
0,
0.006535947712418301,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.012048192771084338,
0,
0,
0,
0.010416666666666666,
0,
0.014084507042253521,
0,
0,
0,
0.01,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.011363636363636364,
0,
0.009523809523809525,
0,
0,
0,
0,
0.009009009009009009,
0.016129032258064516,
0.034482758620689655,
0,
0.047619047619047616,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.005681818181818182,
0,
0.011363636363636364,
0,
0.011494252873563218,
0,
0.013245033112582781,
0,
0,
0,
0,
0.008695652173913044,
0.00909090909090909,
0,
0.006666666666666667,
0,
0.01,
0.008264462809917356,
0.006289308176100629,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.007042253521126761,
0,
0.03333333333333333,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.009433962264150943,
0,
0,
0,
0.058823529411764705,
0,
0,
0,
0,
0.008264462809917356,
0,
0.010526315789473684,
0,
0.007518796992481203,
0.022222222222222223,
0,
0,
0,
0.007518796992481203,
0,
0,
0,
0,
0,
0,
0,
0,
0.0058823529411764705,
0,
0,
0,
0,
0,
0.014492753623188406,
0,
0,
0,
0.015748031496062992,
0.006060606060606061,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.005649717514124294,
0.01098901098901099,
0,
0,
0,
0.008,
0,
0,
0,
0,
0,
0,
0,
0.01694915254237288,
0,
0,
0,
0,
0,
0.014925373134328358,
0,
0,
0,
0,
0.011904761904761904,
0,
0,
0.008403361344537815,
0,
0,
0,
0,
0,
0.013513513513513514,
0,
0,
0.008333333333333333,
0.023076923076923078,
0,
0.021739130434782608,
0,
0,
0,
0,
0.012658227848101266,
0.012987012987012988,
0.006711409395973154,
0.025906735751295335,
0.007042253521126761,
0.019417475728155338,
0,
0.008064516129032258,
0,
0.045454545454545456,
0.047619047619047616,
0.0125,
0,
0,
0.0136986301369863,
0,
0,
0.0058823529411764705,
0.006493506493506494,
0.010582010582010581,
0,
0,
0,
0,
0.00398406374501992,
0,
0,
0.006711409395973154,
0.009523809523809525,
0.025210084033613446,
0,
0.015625,
0,
0.01282051282051282,
0.007751937984496124,
0,
0.013888888888888888,
0,
0,
0.023809523809523808,
0,
0.010869565217391304,
0,
0,
0,
0,
0.020618556701030927,
0,
0.016666666666666666,
0.022222222222222223,
0.018518518518518517,
0.02702702702702703,
0,
0,
0,
0.007352941176470588,
0.004629629629629629,
0,
0,
0.023809523809523808,
0.009433962264150943,
0.038461538461538464,
0,
0,
0.02127659574468085,
0,
0,
0,
0.005291005291005291,
0.010638297872340425,
0,
0,
0,
0,
0,
0,
0,
0.029411764705882353,
0,
0.022222222222222223,
0,
0,
0,
0,
0,
0,
0,
0,
0.034482758620689655,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.022727272727272728,
0.029411764705882353,
0,
0.05263157894736842,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.0091324200913242,
0.037037037037037035,
0,
0,
0.011764705882352941,
0,
0,
0.009615384615384616,
0,
0,
0,
0,
0,
0,
0,
0.024390243902439025,
0,
0,
0,
0,
0,
0,
0,
0.009259259259259259,
0,
0,
0,
0.02247191011235955,
0,
0,
0,
0,
0,
0.04054054054054054,
0.038461538461538464,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.015151515151515152,
0,
0,
0,
0,
0,
0,
0.01,
0,
0,
0,
0,
0,
0.009523809523809525,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.006944444444444444,
0.007575757575757576,
0.007692307692307693,
0.007692307692307693,
0,
0,
0.011111111111111112,
0,
0,
0,
0.015748031496062992,
0.006920415224913495,
0,
0.011235955056179775,
0.007142857142857143,
0.007692307692307693,
0.009174311926605505,
0,
0.005405405405405406,
0.007518796992481203,
0,
0.007692307692307693,
0.029411764705882353,
0.005494505494505495,
0,
0.013245033112582781,
0.015625,
0.0136986301369863,
0,
0,
0,
0,
0.03571428571428571,
0.011764705882352941,
0.014084507042253521,
0.006896551724137931,
0,
0,
0,
0.0055248618784530384,
0,
0,
0.02631578947368421,
0.023809523809523808,
0,
0,
0.019801980198019802,
0,
0,
0,
0.01015228426395939,
0.005988023952095809,
0.007874015748031496,
0,
0,
0.00684931506849315,
0.005235602094240838,
0,
0,
0.016129032258064516,
0,
0,
0,
0.02702702702702703,
0.010869565217391304,
0.00558659217877095,
0,
0.007042253521126761,
0.010869565217391304,
0.007462686567164179,
0.00980392156862745,
0.05555555555555555,
0,
0.010416666666666666,
0,
0,
0,
0,
0.022727272727272728,
0,
0.0196078431372549,
0.011695906432748537,
0.007407407407407408,
0,
0,
0.00847457627118644,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.006600660066006601,
0,
0,
0,
0,
0,
0,
0,
0,
0.014285714285714285,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.04,
0,
0.02666666666666667,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.010135135135135136,
0.018518518518518517,
0,
0,
0,
0.006024096385542169,
0,
0,
0.021739130434782608,
0,
0,
0.011627906976744186,
0,
0.019230769230769232,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.020833333333333332,
0,
0,
0,
0,
0.006622516556291391,
0,
0,
0,
0.007462686567164179,
0.00980392156862745,
0,
0,
0.006622516556291391,
0,
0.022388059701492536,
0,
0,
0,
0,
0.013333333333333334,
0,
0.03125,
0,
0,
0.005050505050505051,
0.013422818791946308,
0.006172839506172839,
0,
0.004081632653061225,
0.004878048780487805,
0,
0,
0,
0,
0,
0.022222222222222223,
0,
0.03571428571428571,
0,
0.03571428571428571,
0,
0.008333333333333333,
0,
0.007874015748031496,
0.010471204188481676,
0,
0,
0,
0,
0,
0.006042296072507553,
0,
0,
0,
0,
0,
0,
0.05555555555555555,
0,
0,
0,
0,
0,
0.027777777777777776,
0,
0,
0,
0,
0.017857142857142856,
0.008130081300813009,
0.029411764705882353,
0.004651162790697674,
0,
0,
0,
0,
0,
0,
0.015873015873015872,
0,
0,
0.0053475935828877,
0.006024096385542169,
0,
0.007407407407407408,
0,
0,
0,
0,
0,
0.022222222222222223,
0,
0.07142857142857142,
0,
0.01098901098901099,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.013888888888888888,
0,
0.010752688172043012,
0,
0,
0.08333333333333333,
0,
0,
0,
0,
0,
0,
0,
0.012658227848101266,
0.1111111111111111,
0,
0,
0.03333333333333333,
0,
0.022222222222222223,
0,
0.05,
0,
0,
0,
0,
0,
0.02127659574468085,
0,
0,
0.041666666666666664,
0.011235955056179775,
0,
0,
0,
0,
0,
0.03571428571428571,
0,
0,
0.009708737864077669,
0,
0,
0.008547008547008548,
0,
0,
0.016666666666666666,
0.008130081300813009,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.011904761904761904,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.023809523809523808,
0,
0.014492753623188406,
0,
0,
0,
0.005747126436781609,
0,
0.01818181818181818,
0.015151515151515152,
0,
0,
0,
0,
0,
0.008771929824561403,
0.00684931506849315,
0,
0,
0.02702702702702703,
0,
0.008849557522123894,
0,
0.01282051282051282,
0,
0,
0,
0,
0,
0.006172839506172839,
0,
0.013157894736842105,
0,
0,
0,
0.007936507936507936,
0,
0,
0,
0,
0,
0,
0,
0,
0.013333333333333334,
0,
0.015625,
0,
0,
0.005208333333333333,
0,
0.016666666666666666,
0,
0,
0,
0,
0,
0,
0.005,
0.009259259259259259,
0,
0.018018018018018018,
0,
0,
0,
0.011627906976744186,
0,
0,
0.003787878787878788,
0,
0,
0,
0.012345679012345678,
0.016483516483516484,
0.005291005291005291,
0.01694915254237288,
0,
0,
0.005405405405405406,
0.006578947368421052,
0.010101010101010102,
0.009523809523809525,
0,
0,
0,
0.0273972602739726,
0.014925373134328358,
0,
0.00510204081632653,
0.01282051282051282,
0.005494505494505495,
0.005681818181818182,
0,
0.00684931506849315,
0,
0,
0.02127659574468085,
0,
0.030303030303030304,
0,
0.007692307692307693,
0,
0,
0.006993006993006993,
0.011695906432748537,
0,
0,
0.01694915254237288,
0,
0.011976047904191617,
0,
0.005649717514124294,
0,
0,
0,
0.005434782608695652,
0.05555555555555555,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.006134969325153374,
0.006711409395973154,
0,
0,
0,
0,
0,
0.009708737864077669,
0,
0,
0,
0.0064516129032258064,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.012345679012345678,
0,
0,
0,
0,
0,
0,
0.014705882352941176,
0,
0,
0,
0,
0,
0,
0,
0.016129032258064516,
0,
0,
0.010638297872340425,
0,
0,
0,
0,
0,
0,
0,
0,
0.005780346820809248,
0,
0,
0,
0,
0.011049723756906077,
0,
0,
0,
0,
0.015625,
0,
0,
0,
0,
0,
0,
0.003205128205128205,
0.019230769230769232,
0,
0.016574585635359115,
0,
0.047619047619047616,
0.015625,
0,
0.0048543689320388345,
0.017241379310344827,
0.014925373134328358,
0.012987012987012988,
0.006944444444444444,
0.008403361344537815,
0.006134969325153374,
0,
0.008849557522123894,
0,
0.005714285714285714,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.014814814814814815,
0.007575757575757576,
0.005714285714285714,
0,
0,
0,
0.006944444444444444,
0,
0,
0.02247191011235955,
0,
0.014084507042253521,
0,
0,
0.005555555555555556,
0,
0.014285714285714285,
0,
0,
0,
0.017857142857142856,
0,
0.006134969325153374,
0.0049261083743842365,
0.0036900369003690036,
0.00641025641025641,
0.007194244604316547,
0,
0,
0.027777777777777776,
0,
0,
0,
0,
0,
0.017241379310344827,
0,
0,
0,
0.043478260869565216,
0,
0,
0.009708737864077669,
0,
0,
0,
0.009345794392523364,
0,
0,
0,
0.027777777777777776,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.003278688524590164,
0,
0,
0.015625,
0,
0,
0,
0,
0,
0,
0,
0.006211180124223602,
0,
0,
0,
0,
0,
0.005263157894736842,
0,
0,
0.0044444444444444444,
0,
0,
0.006134969325153374,
0,
0.004524886877828055,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.01639344262295082,
0,
0,
0,
0.015151515151515152,
0,
0,
0,
0.008264462809917356,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.005988023952095809,
0.005555555555555556,
0.047619047619047616,
0,
0.01639344262295082,
0,
0,
0.012658227848101266,
0,
0.009174311926605505,
0,
0.034482758620689655,
0,
0.018867924528301886,
0.01015228426395939,
0.009900990099009901,
0,
0,
0,
0.041666666666666664,
0.023809523809523808,
0,
0.016129032258064516,
0,
0,
0,
0,
0,
0,
0,
0.023255813953488372,
0.038461538461538464,
0,
0,
0,
0,
0,
0,
0,
0.00980392156862745,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.043478260869565216,
0.02857142857142857,
0.011627906976744186,
0.014705882352941176,
0.013888888888888888,
0,
0,
0,
0,
0.03225806451612903,
0,
0.043478260869565216,
0.004651162790697674,
0.019801980198019802,
0,
0.017857142857142856,
0,
0.004694835680751174,
0.010752688172043012,
0.0196078431372549,
0,
0,
0.00641025641025641,
0.00980392156862745,
0,
0.01282051282051282,
0.015151515151515152,
0.02040816326530612,
0,
0,
0,
0.041666666666666664,
0,
0.02666666666666667,
0,
0.02040816326530612,
0,
0,
0,
0,
0,
0.045454545454545456,
0,
0.043478260869565216,
0,
0.008130081300813009,
0,
0,
0,
0.0070921985815602835,
0,
0.009615384615384616,
0,
0,
0,
0,
0.1,
0.012048192771084338,
0,
0,
0.03571428571428571,
0,
0.01818181818181818,
0,
0.006024096385542169,
0,
0,
0.017241379310344827,
0,
0.018518518518518517,
0.009433962264150943,
0.04,
0,
0,
0,
0,
0,
0.011904761904761904,
0,
0,
0,
0,
0,
0,
0.022222222222222223,
0,
0,
0,
0.041666666666666664,
0,
0.02666666666666667,
0.006060606060606061,
0.015625,
0,
0,
0,
0,
0.02097902097902098,
0,
0,
0,
0.012195121951219513,
0,
0,
0,
0.017241379310344827,
0,
0,
0.02702702702702703,
0,
0,
0,
0.00641025641025641,
0.015384615384615385,
0,
0,
0.014492753623188406,
0.08695652173913043,
0.16666666666666666,
0.017241379310344827,
0.041666666666666664,
0,
0,
0,
0.03278688524590164,
0.025,
0,
0,
0,
0.011627906976744186,
0,
0,
0,
0,
0.03125,
0.017543859649122806,
0.03571428571428571,
0,
0,
0,
0,
0,
0.020833333333333332,
0.034482758620689655,
0,
0.024390243902439025,
0.019230769230769232,
0.014492753623188406,
0,
0.005263157894736842,
0.009852216748768473,
0,
0,
0.015873015873015872,
0,
0,
0,
0.012048192771084338,
0,
0,
0,
0,
0.012195121951219513,
0,
0,
0,
0,
0,
0,
0.04081632653061224,
0,
0,
0.004901960784313725,
0,
0.004166666666666667,
0,
0,
0,
0,
0,
0,
0,
0.011363636363636364,
0.008733624454148471,
0.005226480836236934,
0.0078125,
0.007518796992481203,
0,
0,
0.0297029702970297,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.0625,
0,
0.014492753623188406,
0.04,
0.012195121951219513,
0.022222222222222223,
0,
0.0136986301369863,
0.015151515151515152,
0.006993006993006993,
0,
0,
0,
0,
0,
0,
0.017857142857142856,
0,
0,
0,
0.02197802197802198,
0.006756756756756757,
0,
0.008771929824561403,
0,
0,
0,
0.028169014084507043,
0.015625,
0.024096385542168676,
0.007246376811594203,
0.05714285714285714,
0.017857142857142856,
0,
0.02702702702702703,
0,
0,
0.008849557522123894,
0.02127659574468085,
0.02564102564102564,
0.011857707509881422,
0.034482758620689655,
0.008620689655172414,
0,
0,
0,
0,
0,
0,
0.027777777777777776,
0,
0,
0,
0,
0.05128205128205128,
0.027777777777777776,
0.03225806451612903,
0,
0,
0,
0,
0,
0,
0,
0.029411764705882353,
0,
0.029411764705882353,
0,
0.022222222222222223,
0,
0.005988023952095809,
0,
0,
0.03571428571428571,
0.011764705882352941,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0.036585365853658534,
0,
0.038461538461538464,
0,
0,
0,
0,
0.023809523809523808,
0.025,
0.011363636363636364,
0.01020408163265306,
0.03125,
0,
0.022727272727272728,
0,
0,
0.009523809523809525,
0.011235955056179775,
0.00909090909090909,
0.013333333333333334,
0.022900763358778626,
0,
0.006896551724137931,
0.018518518518518517,
0,
0.007692307692307693,
0,
0.014925373134328358,
0.013157894736842105,
0,
0,
0,
0.021739130434782608,
0.021505376344086023,
0,
0.030303030303030304,
0,
0,
0.03333333333333333,
0.03508771929824561,
0.012658227848101266,
0,
0.025974025974025976,
0.013157894736842105,
0.007246376811594203,
0.005050505050505051,
0.02631578947368421,
0,
0.03225806451612903,
0,
0,
0,
0,
0,
0,
0.006024096385542169,
0,
0.021505376344086023,
0.016129032258064516,
0,
0,
0,
0,
0,
0,
0.022727272727272728,
0,
0,
0.010309278350515464,
0,
0.038461538461538464,
0,
0.024390243902439025,
0,
0,
0,
0,
0,
0,
0.014705882352941176,
0,
0,
0.03821656050955414,
0.017241379310344827,
0.015384615384615385,
0.027777777777777776,
0,
0,
0,
0,
0,
0.02702702702702703,
0,
0,
0,
0,
0.011494252873563218,
0,
0,
0,
0,
0,
0.02857142857142857,
0,
0.007407407407407408,
0,
0.02564102564102564,
0,
0,
0,
0,
0,
0,
0,
0.02,
0,
0,
0,
0,
0,
0.017699115044247787,
0.017167381974248927,
0,
0,
0.007936507936507936,
0,
0.017241379310344827,
0,
0,
0.022727272727272728,
0.02702702702702703,
0,
0,
0,
0,
0,
0.014084507042253521,
0,
0,
0.022222222222222223,
0,
0.009523809523809525,
0,
0.010526315789473684,
0.01,
0,
0,
0,
0,
0,
0.016,
0,
0,
0.004608294930875576,
0.015873015873015872,
0.007518796992481203,
0,
0.005376344086021506,
0.026785714285714284,
0,
0.01834862385321101,
0,
0.006711409395973154,
0,
0.008130081300813009,
0.0125,
0,
0.004366812227074236,
0.014598540145985401,
0,
0,
0.00909090909090909,
0,
0.009615384615384616,
0.014925373134328358,
0,
0.01818181818181818,
0,
0.017543859649122806,
0.015384615384615385,
0,
0.013333333333333334,
0,
0.023622047244094488,
0,
0.008928571428571428,
0.014492753623188406,
0,
0,
0.013513513513513514,
0.03125,
0,
0,
0,
0,
0.012048192771084338,
0,
0,
0.014285714285714285,
0,
0.028037383177570093,
0,
0.014705882352941176,
0,
0.02197802197802198,
0.0410958904109589,
0.043478260869565216,
0.02666666666666667,
0.027777777777777776,
0.014705882352941176,
0,
0.015151515151515152,
0.012345679012345678,
0.02247191011235955,
0.007936507936507936,
0,
0.06569343065693431,
0,
0,
0.0423728813559322,
0,
0.013888888888888888,
0,
0,
0,
0.012658227848101266,
0.04,
0.020689655172413793,
0.007518796992481203,
0,
0,
0.013333333333333334,
0.007246376811594203,
0.011111111111111112,
0,
0.04310344827586207,
0,
0.019230769230769232,
0.012195121951219513,
0,
0.026845637583892617,
0.0125,
0.00684931506849315,
0.007194244604316547,
0.00796812749003984,
0.02564102564102564,
0.007407407407407408,
0.03125,
0,
0.02,
0,
0.011111111111111112,
0.012048192771084338,
0.011627906976744186,
0.03571428571428571,
0,
0.020833333333333332,
0,
0,
0.05714285714285714,
0,
0,
0.03067484662576687,
0.013888888888888888,
0,
0.013157894736842105,
0.045454545454545456,
0.02,
0.025210084033613446,
0,
0.005555555555555556,
0,
0.0321285140562249,
0.021739130434782608,
0,
0.02142857142857143,
0,
0.007633587786259542,
0.003257328990228013,
0,
0,
0.01845018450184502,
0.004608294930875576,
0.006097560975609756,
0,
0.003663003663003663,
0.008064516129032258,
0.009478672985781991,
0.015625,
0.012658227848101266,
0,
0,
0,
0,
0.006060606060606061,
0,
0,
0,
0.024390243902439025,
0.016129032258064516,
0,
0.014925373134328358,
0.017241379310344827,
0.010752688172043012,
0,
0,
0,
0,
0.006802721088435374,
0,
0,
0.012658227848101266,
0.008695652173913044,
0.014084507042253521,
0.012987012987012988,
0.019736842105263157,
0.02912621359223301,
0.019230769230769232,
0.01694915254237288,
0.009345794392523364,
0.015544041450777202,
0.16666666666666666,
0,
0,
0,
0,
0,
0,
0,
0,
0.014018691588785047
] | 0.004811 | 5 |
[
"Lupin Manhattan Lights - 9cm Potted Perennial x1 Growing Chart\n\nGrowing Guides\n\nDelivery\n\nOur products are all grown with the utmost care and to high standards of quality. ",
"We regularly check our nursery stock to determine exactly when they will be at the optimum time for despatch.",
"\n\nWe despatch our fresh, nursery-grown live plants (including vegetables, trees and flowers) when they are at a stage of growth ready for you, the customer, to plant on at home.",
"\n\nThe delivery period shown on your order confirmation indicates when you can expect to receive your order and we will endeavour to despatch your plants in this period within 7-14 days\n\nLupin Manhattan Lights - 9cm Potted Perennial x1\n\nWas £6.99. ",
"Now £2.49\n\nVarieties suitables for cutting\n\nWill flower well in full sun\n\nHardy Perennial - sow indoors or on a seedbed (April-June); transplant later to flower for many seasons\n\nInject colour and fun into your garden with yellow and purple lupins that emulate skyscrapers by night. ",
"Add drama to pots and to your borders with these beautiful flowers. ",
"Position lots close together for big impact.",
"\n\nPlant with yellow and purple bedding like nemesias in front of your lupins for a contrast in texture and size. ",
"Nearby yellow day lilies, yellow rudbeckias and purple echinops will enhance lupiin Manhattan Lights nicely.",
"\n\nLupins work wonders to the soil too with their naturally occurring nodules in the soil that convert nitrogen from the air to usable nitrates for all your plants."
] | {
"pile_set_name": "Pile-CC"
} | [
0.005813953488372093,
0,
0.005649717514124294,
0,
0.0035335689045936395,
0,
0,
0,
0,
0
] | 0.0015 | 5 |
[
"#!",
"/usr/bin/env bash\n# Base16 Atelier Cave - Gnome Terminal color scheme install script\n# Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/cave)\n\n[[ -z \"$PROFILE_NAME\" ]] && PROFILE_NAME=\"Base 16 Atelier Cave Dark\"\n[[ -z \"$PROFILE_SLUG\" ]] && PROFILE_SLUG=\"base-16-ateliercave-dark\"\n[[ -z \"$DCONF\" ]] && DCONF=dconf\n[[ -z \"$UUIDGEN\" ]] && UUIDGEN=uuidgen\n\ndset() {\n local key=\"$1\"; shift\n local val=\"$1\"; shift\n\n if [[ \"$type\" == \"string\" ]]; then\n val=\"'$val'\"\n fi\n\n \"$DCONF\" write \"$PROFILE_KEY/$key\" \"$val\"\n}\n\n# because dconf still doesn't have \"append\"\ndlist_append() {\n local key=\"$1\"; shift\n local val=\"$1\"; shift\n\n local entries=\"$(\n {\n \"$DCONF\" read \"$key\" | tr -d '[]' | tr , \"\\n\" | fgrep -v \"$val\"\n echo \"'$val'\"\n } | head -c-1 | tr \"\\n\" ,\n )\"\n\n \"$DCONF\" write \"$key\" \"[$entries]\"\n}\n\n# Newest versions of gnome-terminal use dconf\nif which \"$DCONF\" > /dev/null 2>&1; then\n [[ -z \"$BASE_KEY_NEW\" ]] && BASE_KEY_NEW=/org/gnome/terminal/legacy/profiles:\n\n if [[ -n \"`$DCONF list $BASE_KEY_NEW/`\" ]]; then\n if which \"$UUIDGEN\" > /dev/null 2>&1; then\n PROFILE_SLUG=`uuidgen`\n fi\n\n if [[ -n \"`$DCONF read $BASE_KEY_NEW/default`\" ]]; then\n DEFAULT_SLUG=`$DCONF read $BASE_KEY_NEW/default | tr -d \\'`\n else\n DEFAULT_SLUG=`$DCONF list $BASE_KEY_NEW/ | grep '^:' | head -n1 | tr -d :/`\n fi\n\n DEFAULT_KEY=\"$BASE_KEY_NEW/:$DEFAULT_SLUG\"\n PROFILE_KEY=\"$BASE_KEY_NEW/:$PROFILE_SLUG\"\n\n # copy existing settings from default profile\n $DCONF dump \"$DEFAULT_KEY/\" | $DCONF load \"$PROFILE_KEY/\"\n\n # add new copy to list of profiles\n dlist_append $BASE_KEY_NEW/list \"$PROFILE_SLUG\"\n\n # update profile values with theme options\n dset visible-name \"'$PROFILE_NAME'\"\n dset palette \"['#19171c', '#be4678', '#2a9292', '#a06e3b', '#576ddb', '#955ae7', '#398bc6', '#8b8792', '#655f6d', '#be4678', '#2a9292', '#a06e3b', '#576ddb', '#955ae7', '#398bc6', '#efecf4']\"\n dset background-color \"'#19171c'\"\n dset foreground-color \"'#8b8792'\"\n dset bold-color \"'#8b8792'\"\n dset bold-color-same-as-fg \"true\"\n dset use-theme-colors \"false\"\n dset use-theme-background \"false\"\n\n unset PROFILE_NAME\n unset PROFILE_SLUG\n unset DCONF\n unset UUIDGEN\n exit 0\n fi\nfi\n\n# Fallback for Gnome 2 and early Gnome 3\n[[ -z \"$GCONFTOOL\" ]] && GCONFTOOL=gconftool\n[[ -z \"$BASE_KEY\" ]] && BASE_KEY=/apps/gnome-terminal/profiles\n\nPROFILE_KEY=\"$BASE_KEY/$PROFILE_SLUG\"\n\ngset() {\n local type=\"$1\"; shift\n local key=\"$1\"; shift\n local val=\"$1\"; shift\n\n \"$GCONFTOOL\" --set --type \"$type\" \"$PROFILE_KEY/$key\" -- \"$val\"\n}\n\n# Because gconftool doesn't have \"append\"\nglist_append() {\n local type=\"$1\"; shift\n local key=\"$1\"; shift\n local val=\"$1\"; shift\n\n local entries=\"$(\n {\n \"$GCONFTOOL\" --get \"$key\" | tr -d '[]' | tr , \"\\n\" | fgrep -v \"$val\"\n echo \"$val\"\n } | head -c-1 | tr \"\\n\" ,\n )\"\n\n \"$GCONFTOOL\" --set --type list --list-type $type \"$key\" \"[$entries]\"\n}\n\n# Append the Base16 profile to the profile list\nglist_append string /apps/gnome-terminal/global/profile_list \"$PROFILE_SLUG\"\n\ngset string visible_name \"$PROFILE_NAME\"\ngset string palette \"#19171c:#be4678:#2a9292:#a06e3b:#576ddb:#955ae7:#398bc6:#8b8792:#655f6d:#be4678:#2a9292:#a06e3b:#576ddb:#955ae7:#398bc6:#efecf4\"\ngset string background_color \"#19171c\"\ngset string foreground_color \"#8b8792\"\ngset string bold_color \"#8b8792\"\ngset bool bold_color_same_as_fg \"true\"\ngset bool use_theme_colors \"false\"\ngset bool use_theme_background \"false\"\n\nunset PROFILE_NAME\nunset PROFILE_SLUG\nunset DCONF\nunset UUIDGEN\n"
] | {
"pile_set_name": "Github"
} | [
0,
0.002103602419142782
] | 0.001052 | 5 |