texts
sequence
meta
dict
scores
sequence
avg_score
float64
0
0.51
num_sents
int64
5
5
[ "Q:\n\nSpring webflux and reading from database\n\nSpring 5 introduces the reactive programming style for rest APIs with webflux. ", "I'm fairly new to it myself and was wondering wether wrapping synchronous calls to a database into Flux or Mono makes sense preformence-wise? ", "If yes, is this the way to do it: \n@RestController\npublic class HomeController {\n\n private MeasurementRepository repository;\n\n public HomeController(MeasurementRepository repository){\n this.repository = repository;\n }\n\n @GetMapping(value = \"/v1/measurements\")\n public Flux<Measurement> getMeasurements() {\n return Flux.fromIterable(repository.findByFromDateGreaterThanEqual(new Date(1486980000L)));\n }\n\n}\n\nIs there something like an asynchronous CrudRepository? ", "I couldn't find it.", "\n\nA:\n\nOne option would be to use alternative SQL clients that are fully non-blocking. ", "Some examples include:\nhttps://github.com/mauricio/postgresql-async or https://github.com/finagle/roc. ", "Of course, none of these drivers is officially supported by database vendors yet. ", "Also, functionality is way much less attractive comparing to mature JDBC-based abstractions such as Hibernate or jOOQ.", "\nThe alternative idea came to me from Scala world. ", "The idea is to dispatch blocking calls into isolated ThreadPool not to mix blocking and non-blocking calls together. ", "This will allow us to control the overall number of threads and will let the CPU serve non-blocking tasks in the main execution context with some potential optimizations.", "\nAssuming that we have JDBC based implementation such as Spring Data JPA which is indeed blocking, we can make it’s execution asynchronous and dispatch on the dedicated thread pool.", "\n@RestController\npublic class HomeController {\n\n private final MeasurementRepository repository;\n private final Scheduler scheduler;\n\n public HomeController(MeasurementRepository repository, @Qualifier(\"jdbcScheduler\") Scheduler scheduler) {\n this.repository = repository;\n this.scheduler = scheduler;\n }\n\n @GetMapping(value = \"/v1/measurements\")\n public Flux<Measurement> getMeasurements() {\n return Mono.fromCallable(() -> repository.findByFromDateGreaterThanEqual(new Date(1486980000L))).publishOn(scheduler);\n }\n\n}\n\nOur Scheduler for JDBC should be configured by using dedicated Thread Pool with size count equal to the number of connections.", "\n@Configuration\npublic class SchedulerConfiguration {\n private final Integer connectionPoolSize;\n\n public SchedulerConfiguration(@Value(\"${spring.datasource.maximum-pool-size}\") Integer connectionPoolSize) {\n this.connectionPoolSize = connectionPoolSize;\n }\n\n @Bean\n public Scheduler jdbcScheduler() {\n return Schedulers.fromExecutor(Executors.newFixedThreadPool(connectionPoolSize));\n }\n\n}\n\nHowever, there are difficulties with this approach. ", "The main one is transaction management. ", "In JDBC, transactions are possible only within a single java.sql.", "Connection. ", "To make several operations in one transaction, they have to share a connection. ", "If we want to make some calculations in between them, we have to keep the connection. ", "This is not very effective, as we keep a limited number of connections idle while doing calculations in between.", "\nThis idea of an asynchronous JDBC wrapper is not new and is already implemented in Scala library Slick 3. ", "Finally, non-blocking JDBC may come along on the Java roadmap. ", "As it was announced at JavaOne in September 2016, and it is possible that we will see it in Java 10.", "\n\nA:\n\nBased on this blog you should rewrite your snippet in following way\n@GetMapping(value = \"/v1/measurements\")\npublic Flux<Measurement> getMeasurements() {\n return Flux.defer(() -> Flux.fromIterable(repository.findByFromDateGreaterThanEqual(new Date(1486980000L))))\n .subscribeOn(Schedulers.elastic());\n}\n\nA:\n\nSpring data support reactive repository interface for Mongo and Cassandra.", "\nSpring data MongoDb Reactive Interface\nSpring Data MongoDB provides reactive repository support with Project Reactor and RxJava 1 reactive types. ", "The reactive API supports reactive type conversion between reactive types.", "\npublic interface ReactivePersonRepository extends ReactiveCrudRepository<Person, String> {\n\n Flux<Person> findByLastname(String lastname);\n\n @Query(\"{ 'firstname': ?", "0, 'lastname': ?", "1}\")\n Mono<Person> findByFirstnameAndLastname(String firstname, String lastname);\n\n // Accept parameter inside a reactive type for deferred execution\n Flux<Person> findByLastname(Mono<String> lastname);\n\n Mono<Person> findByFirstnameAndLastname(Mono<String> firstname, String lastname);\n\n @InfiniteStream // Use a tailable cursor\n Flux<Person> findWithTailableCursorBy();\n\n}\n\npublic interface RxJava1PersonRepository extends RxJava1CrudRepository<Person, String> {\n\n Observable<Person> findByLastname(String lastname);\n\n @Query(\"{ 'firstname': ?", "0, 'lastname': ?", "1}\")\n Single<Person> findByFirstnameAndLastname(String firstname, String lastname);\n\n // Accept parameter inside a reactive type for deferred execution\n Observable<Person> findByLastname(Single<String> lastname);\n\n Single<Person> findByFirstnameAndLastname(Single<String> firstname, String lastname);\n\n @InfiniteStream // Use a tailable cursor\n Observable<Person> findWithTailableCursorBy();\n}\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0.007042253521126761, 0.010121457489878543, 0, 0.011627906976744186, 0.019417475728155338, 0, 0.00847457627118644, 0.0196078431372549, 0.008547008547008548, 0, 0.0055248618784530384, 0.01308139534883721, 0.014705882352941176, 0, 0, 0, 0, 0, 0, 0, 0.015873015873015872, 0.01, 0.0025, 0.013605442176870748, 0.013513513513513514, 0.005813953488372093, 0, 0.0035149384885764497, 0, 0.002421307506053269 ]
0.00598
5
[ "Saudi Arabia's energy minister said Sunday he's positive OPEC and partnered nations will meet their production cut commitments to balance oil markets in 2019, despite what he described as a slower than anticipated pace by some.", "\n\n\"We've already done it, we've done enough,\" Saudi Energy Minister Khalid al-Falih told CNBC on Sunday in Abu Dhabi, when asked what OPEC's largest producer would do to balance markets this year. \"", "Not only the kingdom but other countries, we've heard from the Emirates, I've talked repeatedly to my colleagues in Iraq, they've already taken action,\" he told CNBC's Hadley Gamble.", "\n\nHe then mentioned the performance of the largest non-OPEC producer that's partnered with the cartel on cuts: \"Russia has started, slower than I'd like, but they've started, and I am sure as they did as in 2017 they'll catch up and be a positive contributor to re-balancing the market.\"", "\n\nOPEC members, along with several other countries, in December agreed on output cuts totaling 1.2 million barrels per day in order to stem a sinking market and support their own export-dependent economies. \"", "OPEC plus\" refers to the group's cooperation with the non-OPEC producers like Russia and other former Soviet states, as well as Mexico. ", "Russia was more reluctant to cut its output, as its growth is heavily dependent on robust crude exports.", "\n\nRussia has initially let the Saudis shoulder the bulk of output cuts. ", "The top OPEC ally, which in late 2016 began a cooperation agreement with Riyadh to stabilize oil prices, has often said that $60 per barrel is enough to meet its economic needs. ", "Moscow in December said it would cut production by 50,000 to 60,000 barrels a day in January, while Saudi pledged a cut of 900,000 barrels." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.004405286343612335, 0.015151515151515152, 0.01098901098901099, 0.003484320557491289, 0.004807692307692308, 0.007352941176470588, 0, 0, 0.0056179775280898875, 0 ]
0.005181
5
[ "Quantitative evaluation of tricuspid regurgitation by digital simulation of cardiac time-activity curves.", "\nTo estimate tricuspid regurgitation (TR) quantitatively, a curve fitting method by computer has been employed. ", "Transport in the right cardiac chambers after intravenous bolus injection of macro-aggregated albumin labeled with technetium 99m (99mTc-MAA) was recorded in anterior view by a gammacamera system. ", "Disturbance of the dilution curves from the left heart can be avoided by using 99mTc-MAA injection. ", "To know the radioisotope activity during the transport, time-activity curves are recorded for the superior vena cava, right atrium, and right ventricle. ", "Parametric differential equations, obtained from compartmental analysis, interpret these curves mathematically. ", "The rate of regurgitation is determined by comparison, using an iterative process, between the original and simulated curves. ", "The whole process is performed automatically by computer. ", "The calculated regurgitation value correlated well with the value from the analog simulation. ", "The method clearly separated those with TR from those without TR. ", "This digital simulation for estimating parameters using a compartmental model is a feasible tool in detecting and quantifying TR." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0.005076142131979695, 0, 0, 0, 0, 0, 0, 0, 0 ]
0.000461
5
[ "So I have no revolvers at the moment. ", "I really like Ruger firearms. ", "I would like to buy a Ruger .357 Magnum revolver but need some help deciding what to get.", "\n\nIf I had to pic from current offerings, it would be a KSP-341X SP101. ", "Just wondering if there are past models that would be considered a classic .357 Mag Ruger revolver that I should also consider that would be comparable to or even better than the KSP-341X SP101." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0, 0.005154639175257732 ]
0.001031
5
[ "The Internet and the World Wide Web (“Web”) have changed the landscape of information delivery and affected numerous aspects of life. ", "One benefit of this technological development is the ability to conduct business transactions globally via the Internet. ", "As the volume of commerce conducted over the network continues to increase, collections of business units or organizations are working together to pool resources and expertise in order to achieve a common business objective. ", "Organizations are sharing services and resources across enterprise boundaries in order to undertake collaborative projects that could not be undertaken individually or to offer composed services that could not be provided by individual organizations.", "\nA growing array of workflow automation technologies has emerged to help organizations in a collaborative environment manage activities in the workflow process. ", "In particular, workflow management applications are designed to electronically route the right information to the right participant at the right time. ", "It enables the flow of work between participants within the same organization or different organizations to be defined and tracked.", "\nHowever, workflow management with multi-participants can be very complex. ", "Consequently, the integrity and security of the process can be compromised. ", "For example, a workflow management may fail to define policies to ensure proper assignment of access privileges. ", "This problem is further aggravated with new participants constantly joining the collaborative environment. ", "Indeed, it can become difficult to verify the identity and access privileges of the participant. ", "In some cases, a participant may trigger the execution activity, unintended or with malicious intentions. ", "In addition, a privileged participant may activate an activity which is already executed or is not supposed to be activated. ", "Consequently, the integrity of the workflow process may be greatly compromised.", "\nAs established above, there is an increasing need to manage workflow processes in such collaborative environments involving multi-participants. ", "A secured cross-organizational workflow environment enables identification of privileged participants and enforces the control over the execution of activities." ]
{ "pile_set_name": "USPTO Backgrounds" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0
5
[ "Loxostege virescalis\n\nLoxostege virescalis is a species of moth of the family Crambidae described by Achille Guenée in 1854. ", "It is found in parts of Europe, including France, Germany, Switzerland, Austria, Croatia, Bulgaria and Hungary.", "\n\nExternal links\n European distribution\n\nCategory:Pyraustinae\nCategory:Moths of Europe" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.008, 0, 0 ]
0.002667
5
[ "Arthrostylidium judziewiczii\n\nArthrostylidium judziewiczii is a species of Arthrostylidium bamboo in the grass family. ", "The species is native to Central America, the West Indies, northern South America, and southern Mexico.", "\n\nReferences \n\njudziewiczii" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0, 0, 0 ]
0
5
[ "Q:\n\nDetermine the probability that all first 3 balls are black, knowing that at least one of them is black.", "\n\nA box has 10 balls, 6 of which are black and 4 are white. ", "Three balls are removed randomly from the box. ", "Determine the probability that all first 3 balls are black, knowing that at least one of them is black.", "\n\nAttempt:\nSo we need to calculate $P($obtain $3$ black balls$|$ at least $1$ is black$)$. We can separate this probability into three different probabilities:\n$$ P(\\text{Obtain 3 black balls}|\\text{At least 1 is black}) = P(\\text{Obtain 3 black balls}|\\text{1 is black}) + P(\\text{Obtain 3 black balls}|\\text{2 are black}) + P(\\text{Obtain 3 black balls}|\\text{3 are black}) $$\nThe last probability, I suppose, is equal to $(6/10) \\times (5/9) \\times (4/8) $. ", "The first two I'm unsure how to calculate.", "\n\nA:\n\nBy definition\n$$\nP(\\text{ $3$ black balls }| \\text{ at least $1$ black ball })= \\frac{ P(\\text{ $3$ black balls and at least $1$ black ball )}}{P(\\text{ at least $1$ black ball })}\\ .", "\n$$\nNow $\\ P(\\text{ $3$ black balls and at least $1$ black ball })=$$P(\\text{ $3$ black balls }) $, so what is $\\ P(\\text{ $3$ black balls }) $, and what is $\\ P(\\text{ at least $1$ black ball })\\ $?", "\n\nA:\n\nThe easy way to solve it is to observe that the solution can be represented as\n$$\\frac{\\mathbb{P}[BBB]}{1-\\mathbb{P}[WWW]}=\\frac{\\frac{\\binom{6}{3}}{\\binom{10}{3}}}{1-\\frac{\\binom{4}{3}}{\\binom{10}{3}}}=\\frac{\\binom{6}{3}}{\\binom{10}{3}-\\binom{4}{3}}=\\frac{6\\times5\\times4}{10\\times9\\times8-4\\times3\\times2}=\\frac{5}{30-1}=\\frac{5}{29}$$\n\nA:\n\nThe RHS in your effort is the (unconditional) probability to obtain 3 black balls (so is not the same as the LHS).", "\n\nLet $B$ denote the number of black balls and let $W$ the number of white balls.", "\nThen:\n$$P(B=3\\mid B\\geq1)=P(B=3,B\\geq1)/P(B\\geq1)=P(B=3)/(1-P(W=3))$$\nHere $P(B)=\\frac6{10}\\frac59\\frac48$ and $P(W=3)=\\frac4{10}\\frac39\\frac28$.\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0, 0, 0.0021691973969631237, 0, 0, 0, 0.0021598272138228943, 0, 0 ]
0.000394
5
[ "Q:\n\nJavaScript: toggle links active/deactive\n\nHow do I toggle HTML links from being active / deactive using JavaScript?", "\nWithin my HTML, I have 2 hyper links that call a JavaScript function to sort a table:\n<a href=\"javascript:sort('asc');\">ASC</a> | <a href=\"javascript:sort('desc');\">DESC</a>\n\nWhat I would like to do is when someone clicks the \"ASC\" link, it then deactives the \"ASC\" hyperlink (no longer a link) so that only now the \"DESC\" link is active.", "\nThen, if the person presses the \"DESC\" link, it then disables the \"DESC\" link and re-enables the \"ASC\" link.", "\nEssentially, I want to toggle between which link is active, either: \"ASC\" or \"DESC\"\nI assume you can do this with JavaScript but am not sure how?", "\nAny ideas?", "\n\nA:\n\nDoesn't strictly \"remove\" the A tag, but removes the \"linkness\" (by removing the href) from the tag.", "\nEdit: slightly better version (now tested):\n<script type=\"text/javascript\" >\n\n function mySort( sortorder) {\n\n // enable the other link\n otherOrder = (sortorder == 'asc') ? '", "desc' : 'asc';\n document.getElementById(otherOrder).setAttribute(\"href\", \"#\");\n document.getElementById(otherOrder).onclick = function() {mySort(this.id)};\n\n //disable this link\n document.getElementById(sortorder).removeAttribute(\"href\");\n document.getElementById(sortorder).onclick = \"\";\n\n //perform the sort\n doSort(sortorder);\n }\n</script>\n\n<a id=\"asc\" href=\"#\" onclick=\"mySort(this.id)\" >ASC</a> | <a id=\"desc\" href=\"#\" onclick=\"mySort(this.id)\" >DESC</a>\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0.008403361344537815, 0.0029498525073746312, 0, 0.00684931506849315, 0, 0, 0, 0 ]
0.002275
5
[ "Q:\n\nAn algorithm to generate subsets of a set satisfying certian conditions\n\nSuppose I am given a sorted list of elements and I want to generate all subsets satisfying some condition, so that if a given set does not satisfy the condition, then a larger subset will also not satisfy it, and all sets of one element do satisfy it.", "\nFor example, given a list of all positive integers smaller than 100, determine subsets whose sum is smaller than 130: (100,29) (0,1,40), (0), etc...\nHow can I do that (preferably in Python)?", "\nThanks! :)", "\n\nA:\n\nYou can generate all the subsets using a Branch-and-bound technique: you can generate all the subsets in an incremental fashion (generating superset of subsets already determined), using as a prune condition \"does not explore this branch of the tree if the root does not satify the constraint\".", "\nIf you want to be generic regarding the constraint, I think this is the best strategy.", "\nBe sure to write in a correct manner the code that generates the subsets, otherwise you generate many time the same subsets: in order to avoid memoization, which can be time-consuming due to map lookups and introduce memory overhead, you can generate the subsets in that manner:\nGetAllSubsets(List objects) {\n List generated = {};\n GetAllSubsets(generated, [], objects);\n return generated;\n}\n\nGetAllSubsets(List subsetGenerated, List objectFixed, List objectsToFix) {\n GetAllSubsets(subsetGenerated, objectFixed, objectsToFix.sublist(1, objectsToFix.length());\n if (satisfy(toCheck = objectsFixed.add(objectsToFix.get(0)))) {\n subsetGenerated.add(toCheck);\n GetAllSubsets(subsetGenerated, toCheck, objectsToFix.sublist(1, objectsToFix.length());\n }\n}\n\nIn fact, the subsets added by the first invocation of GetAllSubsets doesn't have the first element of objectsToFix, where the subsets added by the second call (if the pruning condition isn't violated) have that element, so the intersection of the two sets of subsets generated is empty.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0, 0, 0, 0.003734827264239029, 0 ]
0.000534
5
[ "\"One should either write ruthlessly what one believes to be the truth, or else shut up.\" — ", "Arthur Koestler\n\nThe unstable isotope of insanity that is feminism reached critical mass a few months ago when radical feminist Cathy Brennan threatened legal action against the socialist magazine Jacobin, which published an article by Samantha Allen that included this:\n\nA small but vocal band of activists known as “Radfems” see transgender women like myself as a blight on the feminist movement, but — because their views are not representative of the feminist movement as a whole — many trans-inclusive feminists refer to them as TERFs, or Trans-Exclusionary Radical Feminists.", "\nThe chief TERF figurehead is a Maryland attorney named Catherine Brennan who once served as a liaison on the American Bar Association’s Commission on Sexual Orientation and Gender Identity. ", "In July of 2012, a petition circulated to have Brennan removed from that position because, to put it mildly, she flatly rejected the “Gender Identity” half of her job description.", "\nApart from a sordid internet history of harassing, misgendering, and mocking trans people, Brennan co-authored a letter with Elizabeth Hungerford to the United Nations Entity for Gender Equality and the Empowerment of Women, to argue against — yes, against — legal protections based on “gender identity or expression.”", "\n\nYeah, she’ll sue you: “Catherine Brennan, whose views are critiqued in the essay as being transphobic, has instructed her lawyer David Diggs to prepare litigation against Jacobin magazine.”", "\n\nTruth is an unassailable defense, however, and it is difficult to answer “no” to the question, “Is Cathy Brennan transphobic?”", "\n\nCathy Brennan you potentially jeopardised this youths life to satisfy your hate of all people diverse.", "\nI have resisted in the past contacting your law firm and exposing you as the vile monster you are, but you are really really trying my desire to remain above your contemptuous behaviour. ", "Quit this Brennan or I will.", "\nYou are despicable Cathy Brennan. ", "I will tell you that to your face. ", "Use that for your next screen grab.", "\n\nThat is to say, once you buy a ticket on the baby-killing man-hating lesbian feminist express bus to Crazyville, it makes perfect sense. ", "A transgender porn performer named Drew Deveaux coined the term “cotton ceiling” to describe the division between genetic women (called “ciswomen”) and “transwomen”:\n\nBasically, it means that cis queer women will be friends with us and talk day and night about trans rights and ending transmisogyny, but will still not consider us viable sexual partners.", "\nThe term cotton ceiling is a reference to the “glass ceiling” that second wave feminist identified in the workforce, wherein women could only advance so high in the workforce but could not break through into positions of power and authority. ", "The cotton represents underwear, signifying sex.", "\nThe theory of the cotton ceiling is useful in identifying the dynamic trans women are experiencing, and is meant to open up conversation around desirability’s intersections with transmisogyny and transphobia.", "\n\nRi-iiight. ", "If you were a radical lesbian feminist, wouldn’t you be angry about this? ", "This wasn’t the trip you signed up for, after all. ", "By blurring the line between male and female, transgenderism challenges your radical feminist commitment to man-hating.", "\n\nTo combat this existential threat to her radical worldview, Brennan created an anti-transgender blog called “Pretendbians,” which is funny as hell, if you’re a right-wing sexist homophobe like me. ", "As a lesbian feminist, Brennan feels she is at liberty to say stuff about trannies that would make Fred Phelps blush with shame.", "\n\nCathy Brennan . . . ", "is a lesbian radical feminist who’s made it her life goal to stalk, humiliate and endanger the lives of trans women, whom she believes are “fake” women trying to destroy feminism by infiltrating it. . . .", "\nCathy Brennan is a despicable human being, and if she hates you, you know you’re doing something right.", "\n\nSorry You’re A Vanillacentric\nPrivileged Trans Oppressor\n. . . ", "Why should the trans community have respect for a group of racist white radical feminists who have attacked our humanity and femininity for four decades with deleterious effects on our lives? . . .", "\n[Brennan] also published the pre-transition names of trans feminine activists who have called out her vile behavior, used her access to the legal system as an attorney to frack with the legal gender change of another trans critic . . .", "\nOh yeah, did I forget to mention she was on the opposing side when Baltimore County, MD was debating passing trans human rights coverage? . .", "\nTrans community, you cannot ignore in the vain hope she will go away someone who has the access to policy making tables that Brennan has and the willingness to use it against us. ", "It’s a dangerous combination when you have a trans bigot willing and unrepentantly able to not only express anti-trans attitudes, but is actively working to inject them into policies that will have deleterious effects upon the entire trans community not only here in the United States but around the world.", "\n\nYes, that’s it: Welcome to the transgender Two-Minute Hate, with Cathy Brennan in the role of feminism’s Emmanuel Goldstein.", "\n\nHow much further down the Crazyville Road can these radical moonbats travel before they begin killing each other in the manner of Cambodia, Yugoslavia or Rwanda? ", "When that happens, I’m sure, they’ll find a way to blame it on the heteronormative patriarchy.", "\n\nWith all due respect, 99% of the time gender aligns with sex at birth. ", "The intrasexual – those born whose sex is not apparent are outliers and their clinical issues should be treated with great care.", "\n\nIs the tragedy of David Reimer not lesson enough? ", "Dr. Money should burn in hell.", "\n\nThe whole POLITICAL idea that gender is fluid and malleable and that people can “identify” at whim (see: California’s new law allowing self-identity to determine restroom use or team sport participation) is an exercise in power not science.", "\n\nSurgery is not been a “cure” for transsexuals and the tragedy of suicide rates among those that have transitioned again points to the fact that their issues are between their ears not their legs.", "\n\nThe Duke lacrosse lynching was based on ideological prejudices, but in some places, – Steubenville comes to mind – stuff like that actually happens, and is tolerated.", "\n\nFootball increases the burden on alleged victims as well. ", "Stonewalling, inaction, character assassination, diminishing the crime itself and\nthreatening texts after an alleged attack by a Notre Dame football\nplayer led Lizzy Seeberg to take her own life. ", "Her experience reportedly led at least one Notre Dame student not to report an alleged rape by another player. ", "This is not just a major college football problem. ", "We saw a similar problems in high school football in Maryville, Missouri and Steubenville, Ohio. ", "Looking at the statistics, we can presume the aforementioned cases and others at Missouri, Montana or Vanderbilt are mere iceberg tips.", "\n\nWith all due respect, 99% of the time gender aligns with sex at birth.", "\n\nI’d put it at 99.7% but close enough.", "\n\nThe intrasexual – those born whose sex is not apparent are outliers\n\nI think you mean “intersex” not “intrasex”.", "\n\nTechnically, that’s 1 in 60, but as the majority are asymptomatic, requiring lab tests to detect, “one in a few hundred” or even “one in a thousand” for cases of complete ambiguity is more useful.", "\n\nIs the tragedy of David Reimer not lesson enough? ", "Dr. Money should burn in hell.", "\n\nA figure straight out of a Greek tragedy. ", "He did so much good, then at the end of his career, something so awful, so inexcusable, out of hubris that he’ll only be remembered as a monster. ", "Which he was, at the end. ", "May his socks rot.", "\n\nThe whole POLITICAL idea that gender is fluid and malleable and that\npeople can “identify” at whim (see: California’s new law allowing\nself-identity to determine restroom use or team sport participation) is\nan exercise in power not science.", "\n\nThe Californian law has nothing to do with the pernicious notion that gender is fluid or malleable.", "\n\nIt’s clearly not, for all but a small handful of genuine outliers, one in quite a few million, not one in a few thousand as with transsexuality..\n\nPlease don’t be taken in by the propaganda and misinformation about it. ", "All it does is summarise in one place dozens of different parts in existing laws both state and federal to do with Trans and Intersex kids.", "\n\nI’ll quote the digest in full.", "\n\nExisting law\nprohibits public schools from discriminating on the basis of specified\ncharacteristics, including gender, gender identity, and gender\nexpression, and specifies various statements of legislative intent and\nthe policies of the state in that regard. ", "Existing law requires that\nparticipation in a particular physical education activity or sport, if\nrequired of pupils of one sex, be available to pupils of each sex.", "\nThis\nbill would require that a pupil be permitted to participate in\nsex-segregated school programs and activities, including athletic\nteams and competitions, and use facilities consistent with his or\nher gender identity, irrespective of the gender listed on the pupil’s\nrecords.", "\n\nSo if a kid is female, but listed as male due to bureaucratic error, or being Intersex, or being Trans – you go by gender identity, which by custom is determined by consistent appearance over a long period, often medical reports, interviews with counselors etc on a case by case basis. ", "You can’t make hard and fast rules, for while there are hundreds of kids like this in the California school system, circumstances might be completely different between them.", "\n\nConsider the case of a child with 5ARD. ", "Born looking female, female birth certificate, grows male genitalia at puberty (barring medical intervention).", "\nThis can either cause or cure Gender Dysphoria.", "\nSeehttp://www.usrf.org/news/010308-guevedoces.html\n\nSchool administrators aren’t lawyers. ", "They need a straightforward summary of what existing law says, and its intent.", "\n\nSurgery is not been a “cure” for transsexuals\n\n95% cure rate. ", "As near as we can tell, 100% if treatment starts early.", "\n\nProfessionals who take responsibility for these youth and are willing to\nhelp should yet be fully aware of the impact of their interventions. ", "In\nthis article, the pros and cons of the various approaches to youngsters\nwith GID are presented, hopefully inciting a sound scientific\ndiscussion of the issue.", "\n\ntheir issues are between their ears not their legs.", "\n\nCorrect – in the lymbic nucleus and other areas in fact. ", "If the Superior Parietal Lobule is feminised, then female genitalia is required (regardless of overall Gender Identity, but there’s a pretty good correlation there).", "\n\nAs for talking cures :\n\nTreatment aimed at trying to change a person’s gender identity and expression to become more congruent with sex assigned at birth has been attempted in the past without success (Gelder & Marks, 1969; Greenson, 1964), particularly in the long term (Cohen-Kettenis & Kuiper, 1984; Pauly, 1965). ", "Such treatment is no longer considered ethical.", "\n\nI liked it better in the good old days when people just stayed the gender they were born. ", "I don’t understand women who become men so that they can then have sex with men and men who become women who then have sex with women People mutilate themselves for some disordered thinking and my insurance has to go up to pay for this surgery? ", "There are either too many hormones in the water system, the evil/corrupt political culture wants to destroy the traditional family, the devil is at work and/or people just need to realize that you don’t have to mutilate yourself in order to perhaps have some personality traits that don’t fit with your supposed gender type, Probably all four.", "\n\nBased on the current record in this proceeding initiated by an\nacceptable NCD complaint from an aggrieved party, the Departmental\nAppeals Board (Board) has determined that the NCD (National Coverage\nDetermination) record in this case “is not complete and adequate to\nsupport the validity of the NCD” denying Medicare coverage for\ntranssexual surgery “for sex reassignment of transsexuals.” ", "42 C.F.R. §\n426.525(c)(3); NCD 140.3. ", "The submissions of the aggrieved party and the\namici curiae, to which the Centers for Medicare & Medicaid Services\n(CMS) elected not to respond to defend the NCD, demonstrate that the\npremises for the NCD, which was based on a 1981 review of medical and\nscientific sources published between 1966 and 1980, are not reasonable\nin light of subsequent developments. ", "This proceeding will thus move on\nto discovery and taking of evidence as provided in 42 C.F.R. §§ 426.532\nand 426.540. ", "This ruling does not address the ultimate question of\nwhether the NCD as written is valid under the reasonableness standard,\nbut only whether the existing NCD record on which the NCD was based is\ncomplete and adequate to support its validity.", "\n\nNCD 140.3, Transsexual Surgery\nDocket No. ", "A-13-47\nNCD Ruling No. ", "2\nDecember 2, 2013\nBOARD RULING THAT NCD RECORD IS NOT COMPLETE AND ADEQUATE TO SUPPORT THE VALIDITY OF THE NCD\n\nThe fact that anybody ever took Mary Daly’s insanity as serious public rational discourse speaks to the irrationality of the TERF movement in general. ", "Total Cyanide Koolaid Land.", "\n\nOfficialPro January 5th, 2014 @ 12:28 am\n\nROFL That’s so true! ", "XD\n\nrobcrawford2 January 5th, 2014 @ 1:23 am\n\nEr, Zoe, I remember when you were a guy. ", "And said you were the father of a son. ", "That you had a congenital condition that required you to undergo gender reassignment.", "\n\nThat all strikes me as a completely different situation than someone with “normal” genetics who decides to do it.", "\n\nAnd, frankly, I’ve heard more feminists demanding we IGNORE slavery and FGM and women as literal property because it’s all just right-wing distractions from the REAL problems than agitating that anything be done about it.", "\n\nHere’s the effects. ", "The only cure we’ve ever found that works (and we’ve tried pretty much everything) is transition.", "\n\nPotential Therapeutic Errors When Using Binary Based Terminology to Explain the Gender Variant Condition Anne Vitale Ph.D. November 11, 2006\n\nSecondly, “Dysphoria,” defined by Marriam-Webster’s Collegiate\ndictionary as “a state of feeling unwell or unhappy,” or in the American\nCollege Dictionary as “a state of dissatisfaction, anxiety,\nrestlessness, or fidgeting” is simply too soft a word to describe the\nangst most clinicians see on intake with this population. ", "At best it may\nbe an apt descriptor for individuals who, despite strong evidence to\nthe contrary, are making an extraordinary effort to convince themselves\nthat they are sex/gender congruent. ", "These individuals make life\ndecisions such as getting married and having children not only because\nthey may find it appealing to have a spouse and have children but with\nthe added hope that this activity will ease or erase their obsessive\ncross gender thoughts. ", "Although there may be instances where these\nspecial efforts succeed, (i.e. the incongruity is mild) the more likely\noutcome is a realization they have actually made matters worse.", "\nTypically, at time of presentation these individuals report that either\ntheir lives are in ruin, or they are very afraid that if their gender\nvariant condition was to become known they would loose all that they\ncherish and be ostracized from family, friends and the ability to\nsupport themselves. ", "High anxiety and deep depression with concurrent\nsuicide ideation is common. ", "One of the most extreme cases I have treated\nwas that of a 50 year old genetic male, married and the father of 3\ngrown children with an international reputation as a scientist who\nreported to me that the reason he finally sought out treatment for his\ngender issues was because the number of times he found himself curled up\nin the corner of his office in the fetal position muffling his cry was\nincreasing. ", "That is not dysphoria, that is pure misery.", "\nYou get the same effects with patients who have had genitals damaged in war, accident, cancer etc.", "\n\nAs to why – we’re not sure. ", "All we can do is record the facts. ", "Patients who need to transition do better if treated than patients who aren’t. ", "Death rate cut by a factor of 10. ", "Nothing else works.", "\n\nIn young kids, the few who we can definitely be sure are trans (most who present with Gender Dysphoria aren’t, they’re just pre-gay) function as well as controls after treatment. ", "You can’t tell the difference on psych tests.", "\n\nThose who get treated late can do as well, but statistically, don’t. ", "Some wounds never fully heal. ", "But that’s true of life generally.", "\n\nCemeteries can be pretty bleak places, but when it is on the\noutskirts of a faceless Dutch suburb under a grey January sky, it feel\nabout as about as desolate as you can possibly get. ", "When you are\nvisiting the grave of a child who killed herself in her early teens, the\nfeeling of despair, especially when accompanied by her mother, gives\nway to an urge to weep bitterly. ", "It is an urge which I am unable to\nresist as I do the maths subtracting the date of death from the day she\nwas born. ", "It is one thing to be told Juliaantje* was only 14, but to see\nit carved in marble was too much to bear. ", "Holding her photograph her\nmother sobs uncontrollably as I hug her while she in turn hugs a\nprecious photograph.", "\n\nThe picture is of a sunny, smiling, apparently bubbly teenager, with\nlong hair and a grey T-shirt. ", "There is nothing in the picture to suggest\nthat she was transgender, but that is the reason she took her life.", "\n\nWhen she was 12 her mother tried to have her put onto hormone blockers\nto delay puberty. ", "She didn’t want to develop body hair, a deep voice or\nhave wet dreams. ", "She had already self-harmed when young, trying to slice\nher penis off with a pair of scissors. ", "However, in what was clearly a\nborderline decision, the psychologists decided to that she should not be\ngiven these drugs. ", "She should be given counselling instead. ", "In despair\nher mother, a single parent, tried to take her to the United States, but\nthe air fare and the £200 a month cost of these drugs was way beyond\nher means. ", "Her father had no money either and both sets of grandparents\ndidn’t want to know.", "\n\nTwo years later the talking therapy failed. ", "Juliaantje took a massive\noverdose and died, having self-harmed, abused alcohol and other\nsubstances for more than a year before that.", "\n\n“She was an intelligent and lively girl.” ", "Her mother tells me through\nthe tears and a large glass of Genever in a nearby café, probably the\nonly thing that can deaden the pain of losing her only child. “", "She had a\ngreat future ahead of her, she could have done anything, been a doctor,\na lawyer her teachers said…” Her voice breaks. ", "Her happy nature had\ndisappeared when male puberty really hit. “", "Her voice broke and she\nstarted to get facial hair and hair on her chest. ", "She wore make up and\nturtle-neck jumpers to hide it all, but she simply couldn’t deal with\nthe way her body was developing…”\n\nDid she blame the psychiatrists? ", "No. ", "Psychiatry is never going to be an\nexact science, there will always be people who don’t fit into their\ncategories. ", "She does however, feel that they could have given her the\nbenefit of the doubt. “", "The effects of hormone blockers are easy to\nreverse, you just stop taking them…” There would have been no risk to\nher daughter if, at any time she decided that she did not want to be a\ngirl she could simply have stopped, and male puberty would have started.", "\nHormone Blockers are essentially a way for\nyoung trans people and children to leave their options open. ", "They open\nan extended open window of choice, which gives them time to think about\ntheir future, a time during which young people can decide whether they\nwish to remain the sex they were assigned at birth, whether that be male\nor female, or whether they need gender reassignment surgery after the\nage of 18. ", "Talking to mothers of transgender children in the UK who have\nbeen prescribed hormone blockers, usually at great cost (£200 a month\nplus the cost of a consultation in and flight to the United States) one\nthing comes across loudly and clearly; “I would rather have a live\ndaughter than a dead son.” ", "One of them told me. ", "One mother had\nremortgaged her house to pay the cost of these drugs knowing what her\nchild was like, she realised that this would probably be the only way to\nkeep her alive.", "\n\nAnother mother talked of how her young child had been prescribed a\ncocktail of a dozen drugs, including Ritalin, because of behaviour\nproblems at home and at school. ", "Yet when her child was recognised as\ntransgender everything changed. ", "As soon as she was treated as a girl,\nthe tantrums, the bedwetting, the crying, the screaming, the\nhyperactivity, the violence, just stopped, as did the need for any of\nthe drugs. “", "She became happy and contented almost overnight, just\nbecause we treated her like a girl! ", "The psychologist who spotted this\nprobably saved her life.”", "\n\nPredictably the accusation of “child abuse” has been levelled at those\nwho advocate prescribing hormone blockers to children between the ages\nof 12 and 15 (they already are prescribed to those over the age of 16)\nin the UK. ", "This flies in the face of the evidence in both the United\nStates and Holland, where these drugs have been successfully, and\nharmlessly prescribed for many years. ", "It also flies in the face of the\nexperience of parents of transgender children, who have lived a\nday-to-day existence, hoping that their child is still alive and in one\npiece. ", "Until her daughter was prescribed hormone blockers at age 16 one\nmother told me of the anguish she and her husband felt when their child\nhad gone missing for a few days when she was 14. “", "We really thought we\nwould never see her again. ", "Every time the phone rang we thought it would\nbe the police wanting us to identify a body.”", "\n\nThe tentative diagnosis (after 5 years of tests and examination of responses to various hormones…) is the 3 beta hydroxysteroid dehydrogenase deficient (3BHSD) form of congenital adrenal hyperplasia (CAH). ", "Atypical too, late onset and non salt wasting. ", "Usually the sex change it causes happens before birth, not after, but sometimes it can happen late in life, as with me.", "\n\nCAH cause women to masculinise. ", "Often almost imperceptibly, but in about 10% of cases they’re effectively men.", "\n\nThe fact that the change for me was welcome (female neurology) and natural (needed some surgery to reconstruct the mess left after the change, it’s rarely complete), seems to me to be a minor detail.", "\n\nI used to look mostly male. ", "That sucked really, really badly. ", "Now I’m just a plain-jane middle aged frimpy female academic. ", "That suits me fine, and would have done even if my life history had been more usual.", "\n\n“Cathy Brennan . . . ", "is a lesbian radical feminist who’s made it her life\ngoal to stalk, humiliate and endanger the lives of trans women, whom\nshe believes are “fake” women trying to destroy feminism by infiltrating\nit. . . .”", "\n\nJust like all the lesbian and bisexual garbage of women who infiltrated the women’s movement way back when and made it into the sexual sewer that it is now. ", "They didn’t destroy feminism, they completely perverted it to the junk that it is now.", "\n\nThis is so lovely to watch.", "\n\n“Cathy Brennan is a despicable human being, and if she hates you, you know you’re doing something right.”", "\n\nThat’s what I think when I hear the LGBT and liberal mob saying they hate my critique of their destructive and perverted sexuality agenda. ", "That such harmful people have taken over academia has such profoundly negative consequences for the country. ", "Sad, sad.", "\n\nIn any case, lovely job, McCain, in fighting the “down your throats” people!", "\n\nWouldn’t a DNA test be able to show you if someone is a man or a woman?", "\n\nBeyond biology (which seems to be your obsession), there is something about being a woman that men simply do not “get.” (", "I am likewise sure that I would never be able to “pass” as a man among men.) ", "Psychologists have long noted that women don’t accept trans women as their own, regardless of physical appearance. ", "There is just something “off” about them that is difficult to quantify but is, nevertheless, real.", "\n\nThey can cut and take all the hormones they want, dress up in a skirt, but they are still men. ", "This is not “crazy”; it is reality. ", "But for those whose raison d’etre is denying reality, that would seem crazy, would it not?", "\n\nbridget January 5th, 2014 @ 10:59 am\n\nStupid question, but why would a guy have such a hang-up about the “rape culture”? ", "If you lived as a man until your early middle age, then you likely have zero idea of what you’re talking about.", "\n\nI do feel sorry for you, but wish you would understand that we’re not going to up end the entire structure of our society for your particular problem.", "\n\nbridget January 5th, 2014 @ 11:58 am\n\nI don’t need to be a Latin scholar to know that cis and trans are opposites: I learned that in organic chemistry class. ", "Unlike organic chemistry, wherein “cis” desribes a meaningful characteristic of a molecule, “cis-gendered” merely means” not disordered.” ", "It should be evidence of how far society has fallen that people are trying to make “not disordered” into an actual term.", "\n\nThat you even ask such a question indicates deep cluelessness on the subject. ", "But it does make your wild accusations of “reality denial” understandable.", "\n\nThese situations are not usual, not common. ", "But then, we’re not talking about common, usual situations are we? ", "Most people aren’t transsexual. ", "Only 1 in 300 men don’t have the usual 46,XY chromosomes most men have, and even fewer women do. ", "But they exist, despite your belief that not only do they not, they can’t. ", "A belief that denies reality.", "\n\nOne could say that’s rather elegant.", "\nI have been known to do it myself.", "\n\nBut even if I thought it was un-beautiful, I’d have no right to do more than state that my preference differed, not that yours was “wrong” in any way. ", "De gustibus non est disputandum.", "\n\n“He or She” is usually fine. “", "S/he” though is more usually perjorative.", "\n\nIn a context where one is talking about trans people, it’s, best avoided.", "\n\nBridget January 6th, 2014 @ 10:13 am\n\nAlan, I’m an engineer. ", "In our world, if a test correctly gives the result 99.3% of the time (or, as per the giving birth part, something like 99.999% of the time), it is almost always an acceptable test.", "\n\nDespite being a “rocket scientist,” you cannot distinguish between the rules and the exceptions thereto. ", "Sorry, Alan, but that’s not my problem.", "\n\nLet us not be distracted by your “But in this totally random case, the opposite result happened!” ", "agenda. ", "The original problem is a discussion about how trans “women” are invading women’s spaces and get really upset when lesbians won’t do them.", "\n\nAlan, please explain what a medical journal will tell us about the social problems therein. (", "Here’s a clue, rocket scientist: absolutely nothing.)", "\n\nSHAMELESS CAPITALISM\n\nThe Other McCain is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for this blog to earn fees by linking to Amazon.com and affiliated sites." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0.008605851979345954, 0.015706806282722512, 0.00558659217877095, 0.012539184952978056, 0.015706806282722512, 0.0078125, 0.009615384615384616, 0, 0.03571428571428571, 0.02857142857142857, 0, 0, 0.007194244604316547, 0.002824858757062147, 0, 0, 0, 0, 0, 0, 0, 0.005025125628140704, 0.015625, 0.045454545454545456, 0, 0.009615384615384616, 0, 0, 0, 0, 0.005555555555555556, 0, 0.015873015873015872, 0, 0, 0.0273972602739726, 0, 0.019230769230769232, 0.03333333333333333, 0.004132231404958678, 0, 0.011904761904761904, 0, 0.015306122448979591, 0.009009009009009009, 0, 0, 0.007407407407407408, 0.027777777777777776, 0.02564102564102564, 0, 0, 0.019230769230769232, 0.03333333333333333, 0, 0, 0, 0, 0.004132231404958678, 0, 0, 0.007194244604316547, 0, 0, 0, 0, 0.003472222222222222, 0, 0.023809523809523808, 0, 0.020833333333333332, 0.01098901098901099, 0, 0, 0, 0, 0.006211180124223602, 0, 0, 0.012121212121212121, 0.0219435736677116, 0, 0, 0, 0, 0.015306122448979591, 0.02631578947368421, 0.013812154696132596, 0, 0.012396694214876033, 0, 0, 0.007575757575757576, 0, 0, 0.022988505747126436, 0, 0, 0, 0.008968609865470852, 0, 0, 0.002136752136752137, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0055248618784530384, 0, 0, 0, 0, 0, 0, 0, 0.009523809523809525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.007462686567164179, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.011904761904761904, 0, 0, 0, 0, 0, 0.006172839506172839, 0, 0, 0, 0, 0.004807692307692308, 0, 0, 0.029411764705882353, 0, 0, 0, 0, 0, 0, 0.043478260869565216, 0, 0, 0, 0, 0.009345794392523364, 0, 0, 0, 0.01282051282051282, 0, 0, 0, 0, 0, 0, 0, 0.011111111111111112, 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, 0.02564102564102564, 0, 0, 0, 0.010526315789473684, 0, 0.008368200836820083 ]
0.004094
5
[ "Monitoring asthma in childhood.", "\nThe goal of asthma treatment is to obtain clinical control and reduce future risks to the patient. ", "However, to date there is limited evidence on how to monitor patients with asthma. ", "Childhood asthma introduces specific challenges in terms of deciding what, when, how often, by whom and in whom different assessments of asthma should be performed. ", "The age of the child, the fluctuating course of asthma severity, variability in clinical presentation, exacerbations, comorbidities, socioeconomic and psychosocial factors, and environmental exposures may all influence disease activity and, hence, monitoring strategies. ", "These factors will be addressed in herein. ", "We identified large knowledge gaps in the effects of different monitoring strategies in children with asthma. ", "Studies into monitoring strategies are urgently needed, preferably in collaborative paediatric studies across countries and healthcare systems." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0, 0, 0, 0, 0, 0 ]
0
5
[ "Dash-Oh the conqueror: ...Death shouldn't be rushed, one should saver it like fine wine and enjoy it's aroma. ", "But if in consideration of your impatience I must kill you now, then so be it..Applejack: *Charging* Enough talk! ", "Defend yourself Dash! ", "HRAAAAAHHHHG!!!*Cut away to Twilight slowly walking looking super serious*" ]
{ "pile_set_name": "OpenWebText2" }
[ 0, 0, 0, 0 ]
0
5
[ "// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*-\n// Copyright (c) 2007, Google Inc.\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\n// met:\n// \n// * Redistributions of source code must retain the above copyright\n// notice, this list of conditions and the following disclaimer.", "\n// * Redistributions in binary form must reproduce the above\n// copyright notice, this list of conditions and the following disclaimer\n// in the documentation and/or other materials provided with the\n// distribution.", "\n// * Neither the name of Google Inc. nor the names of its\n// contributors may be used to endorse or promote products derived from\n// this software without specific prior written permission.", "\n// \n// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n// \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n// A PARTICULAR PURPOSE ARE DISCLAIMED. ", "IN NO EVENT SHALL THE COPYRIGHT\n// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", "\n//\n// ---\n// Author: Mike Belshe\n// \n// To link tcmalloc into a EXE or DLL statically without using the patching\n// facility, we can take a stock libcmt and remove all the allocator functions.", "\n// When we relink the EXE/DLL with the modified libcmt and tcmalloc, a few\n// functions are missing. ", " This file contains the additional overrides which\n// are required in the VS2005 libcmt in order to link the modified libcmt.", "\n//\n// See also\n// http://groups.google.com/group/google-perftools/browse_thread/thread/41cd3710af85e57b\n\n#include <config.h>\n\n#ifndef _WIN32\n# error You should only be including this file in a windows environment!", "\n#endif\n\n#ifndef WIN32_OVERRIDE_ALLOCATORS\n# error This file is intended for use when overriding allocators\n#endif\n\n#include \"tcmalloc.cc\"\n\nextern \"C\" {\n\nvoid* _malloc_base(size_t size) {\n return malloc(size);\n}\n\nvoid _free_base(void* p) {\n free(p);\n}\n\nvoid* _calloc_base(size_t n, size_t size) {\n return calloc(n, size);\n}\n\nvoid* _recalloc(void* p, size_t n, size_t size) {\n void* result = realloc(p, n * size);\n memset(result, 0, n * size);\n return result;\n}\n\nvoid* _calloc_impl(size_t n, size_t size) {\n return calloc(n, size);\n}\n\nsize_t _msize(void* p) {\n return MallocExtension::instance()->GetAllocatedSize(p);\n}\n\nHANDLE __acrt_heap = nullptr;\n\nbool __acrt_initialize_heap() {\n new TCMallocGuard();\n return true;\n}\n\nbool __acrt_uninitialize_heap(bool) {\n return true;\n}\n\nintptr_t _get_heap_handle() {\n return 0;\n}\n\nHANDLE __acrt_getheap() {\n return __acrt_heap;\n}\n\n// The CRT heap initialization stub.", "\nint _heap_init() {\n // We intentionally leak this object. ", " It lasts for the process\n // lifetime. ", " Trying to teardown at _heap_term() is so late that\n // you can't do anything useful anyway.", "\n new TCMallocGuard();\n return 1;\n}\n\n// The CRT heap cleanup stub.", "\nvoid _heap_term() {\n}\n\n// We set this to 1 because part of the CRT uses a check of _crtheap !", "= 0\n// to test whether the CRT has been initialized. ", " Once we've ripped out\n// the allocators from libcmt, we need to provide this definition so that\n// the rest of the CRT is still usable.", "\nvoid* _crtheap = reinterpret_cast<void*>(1);\n\nint _set_new_mode(int flag) {\n return tc_set_new_mode(flag);\n}\n\nint _query_new_mode() {\n return tc_query_new_mode();\n}\n\n} // extern \"C\"\n\n#ifndef NDEBUG\n#undef malloc\n#undef free\n#undef calloc\nint _CrtDbgReport(int, const char*, int, const char*, const char*, ...) {\n return 0;\n}\n\nint _CrtDbgReportW(int, const wchar_t*, int, const wchar_t*, const wchar_t*, ...) {\n return 0;\n}\n\nint _CrtSetReportMode(int, int) {\n return 0;\n}\n\nextern \"C\" void* _malloc_dbg(size_t size, int , const char*, int) {\n return malloc(size);\n}\n\nextern \"C\" void _free_dbg(void* ptr, int) {\n free(ptr);\n}\n\nextern \"C\" void* _calloc_dbg(size_t n, size_t size, int, const char*, int) {\n return calloc(n, size);\n}\n#endif // NDEBUG\n" ]
{ "pile_set_name": "Github" }
[ 0.01652892561983471, 0, 0, 0.005154639175257732, 0, 0.0056179775280898875, 0.015544041450777202, 0, 0, 0.009345794392523364, 0.005434782608695652, 0, 0, 0, 0, 0, 0, 0, 0.0026455026455026454 ]
0.003172
5
[ "Bug#320384: What Can You Do To Livve 14 Extra Yeaars? - ", "Debian\n\nThis is a discussion on Bug#320384: What Can You Do To Livve 14 Extra Yeaars? - ", "Debian ; Stuff? ", "I should think so. ", "We've practice enough was as if\nthat in the white dust which lifted could not help it, mother,\nsaid kitty. ", "Help it! ", "Oh i'm sure he didn't. ", "Mr. Fortescue?", "\nfeed pigeons? ", "There a lot when ...\n\nBug#320384: What Can You Do To Livve 14 Extra Yeaars?", "\n\nStuff? ", "I should think so. ", "We've practice enough was as if\nthat in the white dust which lifted could not help it, mother,\nsaid kitty. ", "Help it! ", "Oh i'm sure he didn't. ", "Mr. Fortescue?", "\nfeed pigeons? ", "There a lot when mr frettlby lived there,'\nhe." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0.0625, 0, 0.009345794392523364, 0, 0, 0.07142857142857142, 0, 0, 0, 0, 0.009345794392523364, 0, 0, 0.07142857142857142, 0, 0 ]
0.012447
5
[ "Q:\n\nandroid: button incorporated with GestureListener: onScroll\n\nI have a button (a boy), of which I wish that, when the boy is touched, it can scroll left or right according to the gesture of the user's finger.", "\nSo I have implemented as follows:\nDeclaration:\nGestureDetector myGesture;\nmyGesture = new GestureDetector(getContext(), new MyOnGestureListener());\n\nRegister:\n image_boy.setOnTouchListener(new OnTouchListener()\n {\n @Override\n public boolean onTouch(View v, MotionEvent event) \n {\n return myGesture.onTouchEvent(event);\n }\n });\n image_boy.setClickable(true); \n\nClass:\n class MyOnGestureListener implements OnGestureListener{\n\n @Override\n public boolean onDown(MotionEvent arg0) \n {\n // TODO Auto-generated method stub\n return false;\n }\n\n @Override\n public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) \n {\n return false;\n }\n\n @Override\n public void onLongPress(MotionEvent e) \n {\n // TODO Auto-generated method stub\n\n }\n\n @Override\n public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY) \n {\n boy_x = ((int) e2.getX());\n if (boy_x > (viewWidth - BOY_WIDTH))\n {\n boy_x = viewWidth - BOY_WIDTH - 10;\n }\n\n if (boy_x <0)\n {\n boy_x = 0 + 10; \n }\n image_boy.setX(boy_x); \n image_boy.setY(viewHeight - BOY_HEIGHT); \n\n return true;\n }\n\n @Override\n public void onShowPress(MotionEvent e) {\n // TODO Auto-generated method stub\n\n }\n\n @Override\n public boolean onSingleTapUp(MotionEvent e) {\n // TODO Auto-generated method stub\n return false;\n }}; \n} \n\nQuestion:\nThe boy, once touched / pressed, can scroll left and right, but it looks obviously weird, as \n\nonce touched and scrolled, the boy will scroll to the correct direction, but switching / shaking with 2 boy images, left and right interchanging during its journey\nwhen the finger movement is stopped (still touching), the boy will go back to either the original position or new position (very unstable)\n\nHow could this be solved?", "\n\nA:\n\nI have managed to implement using another way using onTouch's ACTION_MOVE:\n button_test= (Button) findViewById(R.id.button_test);\n button_test.setOnTouchListener(new OnTouchListener()\n { \n private float x, y; \n private int mx, my; \n public boolean onTouch(View v, MotionEvent event) \n { \n switch(event.getAction()) \n { \n case MotionEvent.", "ACTION_DOWN: \n x = event.getX(); \n y = event.getY(); \n case MotionEvent.", "ACTION_MOVE: \n mx = (int)(event.getRawX() - x); \n my = (int)(event.getRawY() - 50 - y); \n button_test.setX(mx);\n button_test.setY(my);\n\n break; \n } \n return true; \n }}); \n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0.004739336492890996, 0.00557361820715281, 0.004651162790697674, 0, 0.007194244604316547 ]
0.004432
5
[ "ANIMAL activists are combing a forest in eastern China for more than 1000 kittens rescued from a meat supplier only to be let loose by local authorities, an organiser said Monday.", "\n\nAnimal protection volunteers and local police intercepted a truck \"filled with cats'' destined for dinner plates last week, said an activist surnamed Ni from the Wuxi Small Animal Protection Association in eastern Jiangsu province.", "\n\nBut local government officials released the felines - some as young as four months old - into a nearby mountain forest to fend for themselves, Mr Ni said.", "\n\n\"They were being sent to Guangzhou to be eaten by people,'' said.", "\n\n\"We didn't want to release them, our volunteers had places to keep them. ", "It's definitely irresponsible.''", "\n\nVolunteers are now scouring the hillsides with cages in an attempt to capture the cats, and hope to put those found up for adoption, Mr Ni said, adding that more than 50 have been retrieved in the last week.", "\n\n\"Some of the cats are hungry, and haven't eaten, while others have been run over by cars,'' he said.", "\n\nThe state-run Beijing Youth Daily said Sunday that authorities seized the cats because the lorry owner did not have the correct documents, but decided to release the animals into the wild as there was no source of funds to have them put down.", "\n\nChina's small but growing ranks of animal activists have staged a number of rescues in recent years.", "\n\nCats are not commonly eaten in most parts of China but some restaurants, particularly in the south, continue to serve them as food.", "\n\nAround 600 cats stuffed into wooden crates and on their way to such a fate were rescued after a truck crash in January.", "\n\nA convoy of trucks carrying some 500 dogs to be sold as meat was stopped by volunteers on a highway in Beijing in 2011 and the animals retrieved.", "\n\nChina does not have any laws to protect non-endangered animals.", "\n\nOriginally published as Search for 1000 kittens in forest" ]
{ "pile_set_name": "OpenWebText2" }
[ 0, 0.008583690987124463, 0.00641025641025641, 0, 0, 0, 0.004784688995215311, 0, 0.004098360655737705, 0, 0, 0, 0, 0, 0 ]
0.001592
5
[ "[Desktop Entry]\nName=puppetry\nComment=App to build end-to-end automation tests without a line of code\nExec=AppRun\nTerminal=false\nType=Application\nIcon=puppetry\nStartupWMClass=puppetry\nX-AppImage-Version=1.0.0\nCategories=Development;\nX-AppImage-BuildId=1DCjekL5UEmzbHmHi68XMZoc58u\n\n[AppImageHub]\n# Dear upstream developer, please include update information in your AppImage\n# (e.g., with appimagetool -u) so that users can easily update the AppImage\nX-AppImage-Signature=no valid OpenPGP data found. ", "the signature could not be verified. ", "Please remember that the signature file (.sig or .asc) should be the first file given on the command line. ", "\nX-AppImage-Type=2\nX-AppImage-Architecture=x86_64\n" ]
{ "pile_set_name": "Github" }
[ 0.006012024048096192, 0, 0, 0 ]
0.001503
5
[ "Let me ask again in a different way ;-) Specifically about LCD style\nantialiasing.", "\nWhat about a context attribute \"antialiasRenderingQualityHint\" for now with\n2 settings \"default\" and \"displayDependent\"\ncontext.antialiasRenderingQualityHint = \"displayDependent\"\nI'm thinking of it like this. ", "The canvas spec does not say how antialiasing\nworks or even that it exists so right now a UA is free to antialias in\nanyway it sees fit. ", "It can do no antialiasing. ", "It can do LCD antialiasing.", "\nIt can do alpha antialiasing. ", "It can use different algorithms. ", "In fact, the\nsoftware rasterizers between Firefox and Chrome already antialias different\nas do different GPUs.", "\nAll we're looking for is some way to hint that we'd prefer LCD antialiasing\nif the UA thinks it's best for a given situation. ", "We already can't count on\na certain quality or algorithm\ncontext.antialiasRenderingQualityHint = \"displayDependent\"\nThe advantage to this hint is that\n(a) a UA is free it ignore it and rendering will not be any worse/better\nthan it is now\nand\n(b) as the world moves to HD-DPI everywhere UAs will pick alpha-AA and\nthings just magically work.", "\nAs for rotating, scaling, blending a cavnas it's up to the app to opt into\nthis hint and it's up to the UA when to honor it.", "\nI'm not seeing the downside here. ", "You're not breaking anything because the\napp already has no idea what kind of AA a UA is using. ", "The hint is forward\ncompatible as well.", "\nThe only place I see an issue is UA zooming. ", "But if the app really cares\nand if we really care we can provide an API to figure out the zoom level.", "\nThen an app that cares can change the size of their canvas's backingstore\nso its 1:1 device pixels for a given zoom level and re-render. ", "Lots of apps\nwould like to do that with or without the proposed \"hint\" as it would let\nthem zoom in a way that matches the text and svg on the page.", "\nEverybody wins! :-)", "\n1) not ant alias\n2) antialias in any way it sees fit\ncould happily implement LCD style AA and still be spec complien" ]
{ "pile_set_name": "Pile-CC" }
[ 0.012195121951219513, 0, 0.0072992700729927005, 0, 0.037037037037037035, 0, 0, 0.01818181818181818, 0.015748031496062992, 0.002932551319648094, 0.008, 0, 0.010416666666666666, 0, 0.021739130434782608, 0.009900990099009901, 0, 0, 0, 0.008547008547008548 ]
0.0076
5
[ "Elżbietów, Sochaczew County\n\nElżbietów is a village in the administrative district of Gmina Teresin, within Sochaczew County, Masovian Voivodeship, in east-central Poland.", "\n\nReferences\n\nCategory:Villages in Sochaczew County" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0, 0 ]
0
5
[ "Q:\n\nWhat are the best translations of Descartes books?", "\n\nI'm planning on reading some of Descartes' books like Meditations on First Philosophy and Discourse on Method.", "\nI was wondering what are the best translations of these books and if there are any free downloadable ebooks of them?", "\n\nA:\n\nFor Descartes' major philosophical works the current Cambridge tr., '", "The Philosophical Writings of Descartes', is probably the best both in terms of the Latin and French scholarship that has gone into it and in terms of philosophical finesse by which it is informed. ", "Other translations, Hackett's or Penguin's, are pretty good but are not so complete (include fewer texts) than the Cambridge edition.", "\nThere are downloadable versions of both texts and of other Cartesian works. ", "The trouble is this : the versions that are downloadable are usually old and copyright-expired, hence seldom any longer the best translations; and the best translations are not usually (freely) downloadable. ", "However, you sites listed below offer good translations. ", " \n__________________________________________________________________________\nThe Philosophical Writings of Descartes: Volume 1\n Descartes, Rene/ Stoothoff, Robert/ Murdoch, Dugald/ Cottingham, John.", "\nISBN 10: 052128807X / ISBN 13: 9780521288071\nPublished by Cambridge Univ Pr, 1985.", "\nThe Philosophical Writi-iu9ngs of Descartes: Volume 2\nDescartes, Rene/ Stoothoff, Robert/ Murdoch, Dugald (Translator)/ Cottingham, John. ", "ISBN 10: 0521288088 / ISBN 13: 9780521288088\nPublished by Cambridge Univ Pr, 1985.", "\nThe Philosophical Writings of Descartes: Volume 3 The Correspondence\nDescartes, Rene/ Stoothoff, Robert/ Murdoch, Dugald/ Kenny, Anthony/ Cottingham, John. ", "ISBN 10: 0521423503 / ISBN 13: 9780521423502\nPublished by Cambridge Univ Pr, 1991.", "\nONLINE : \nDiscourse : https://www.earlymoderntexts.com/assets/pdfs/descartes1637.pdf\nMeditations : https://www.earlymoderntexts.com/assets/pdfs/descartes1641.pdf\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0, 0, 0.005050505050505051, 0.007518796992481203, 0, 0, 0, 0.025252525252525252, 0.012048192771084338, 0.03597122302158273, 0.012195121951219513, 0.03821656050955414, 0.012195121951219513, 0.012195121951219513 ]
0.01004
5
[ "// Copyright 2014 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\npackage ipv4\n\nimport (\n\t\"net\"\n\t\"syscall\"\n\t\"unsafe\"\n\n\t\"golang.org/x/net/internal/iana\"\n\t\"golang.org/x/net/internal/socket\"\n)\n\nvar (\n\tctlOpts = [ctlMax]ctlOpt{\n\t\tctlTTL: {sysIP_TTL, 1, marshalTTL, parseTTL},\n\t\tctlPacketInfo: {sysIP_PKTINFO, sizeofInetPktinfo, marshalPacketInfo, parsePacketInfo},\n\t}\n\n\tsockOpts = map[int]*sockOpt{\n\t\tssoTOS: {Option: socket.", "Option{Level: iana.", "ProtocolIP, Name: sysIP_TOS, Len: 4}},\n\t\tssoTTL: {Option: socket.", "Option{Level: iana.", "ProtocolIP, Name: sysIP_TTL, Len: 4}},\n\t\tssoMulticastTTL: {Option: socket.", "Option{Level: iana.", "ProtocolIP, Name: sysIP_MULTICAST_TTL, Len: 4}},\n\t\tssoMulticastInterface: {Option: socket.", "Option{Level: iana.", "ProtocolIP, Name: sysIP_MULTICAST_IF, Len: sizeofIPMreqn}, typ: ssoTypeIPMreqn},\n\t\tssoMulticastLoopback: {Option: socket.", "Option{Level: iana.", "ProtocolIP, Name: sysIP_MULTICAST_LOOP, Len: 4}},\n\t\tssoReceiveTTL: {Option: socket.", "Option{Level: iana.", "ProtocolIP, Name: sysIP_RECVTTL, Len: 4}},\n\t\tssoPacketInfo: {Option: socket.", "Option{Level: iana.", "ProtocolIP, Name: sysIP_PKTINFO, Len: 4}},\n\t\tssoHeaderPrepend: {Option: socket.", "Option{Level: iana.", "ProtocolIP, Name: sysIP_HDRINCL, Len: 4}},\n\t\tssoICMPFilter: {Option: socket.", "Option{Level: iana.", "ProtocolReserved, Name: sysICMP_FILTER, Len: sizeofICMPFilter}},\n\t\tssoJoinGroup: {Option: socket.", "Option{Level: iana.", "ProtocolIP, Name: sysMCAST_JOIN_GROUP, Len: sizeofGroupReq}, typ: ssoTypeGroupReq},\n\t\tssoLeaveGroup: {Option: socket.", "Option{Level: iana.", "ProtocolIP, Name: sysMCAST_LEAVE_GROUP, Len: sizeofGroupReq}, typ: ssoTypeGroupReq},\n\t\tssoJoinSourceGroup: {Option: socket.", "Option{Level: iana.", "ProtocolIP, Name: sysMCAST_JOIN_SOURCE_GROUP, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq},\n\t\tssoLeaveSourceGroup: {Option: socket.", "Option{Level: iana.", "ProtocolIP, Name: sysMCAST_LEAVE_SOURCE_GROUP, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq},\n\t\tssoBlockSourceGroup: {Option: socket.", "Option{Level: iana.", "ProtocolIP, Name: sysMCAST_BLOCK_SOURCE, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq},\n\t\tssoUnblockSourceGroup: {Option: socket.", "Option{Level: iana.", "ProtocolIP, Name: sysMCAST_UNBLOCK_SOURCE, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq},\n\t\tssoAttachFilter: {Option: socket.", "Option{Level: sysSOL_SOCKET, Name: sysSO_ATTACH_FILTER, Len: sizeofSockFprog}},\n\t}\n)\n\nfunc (pi *inetPktinfo) setIfindex(i int) {\n\tpi.", "Ifindex = int32(i)\n}\n\nfunc (gr *groupReq) setGroup(grp net.", "IP) {\n\tsa := (*sockaddrInet)(unsafe.", "Pointer(&gr.", "Group))\n\tsa.", "Family = syscall.", "AF_INET\n\tcopy(sa.", "Addr[:], grp)\n}\n\nfunc (gsr *groupSourceReq) setSourceGroup(grp, src net.", "IP) {\n\tsa := (*sockaddrInet)(unsafe.", "Pointer(&gsr.", "Group))\n\tsa.", "Family = syscall.", "AF_INET\n\tcopy(sa.", "Addr[:], grp)\n\tsa = (*sockaddrInet)(unsafe.", "Pointer(&gsr.", "Source))\n\tsa.", "Family = syscall.", "AF_INET\n\tcopy(sa.", "Addr[:], src)\n}\n" ]
{ "pile_set_name": "Github" }
[ 0, 0, 0.019230769230769232, 0.005277044854881266, 0.05263157894736842, 0.025, 0.05263157894736842, 0.025, 0.05263157894736842, 0, 0.05263157894736842, 0.01639344262295082, 0.05263157894736842, 0.01098901098901099, 0.05263157894736842, 0.011904761904761904, 0.05263157894736842, 0.011904761904761904, 0.05263157894736842, 0.011904761904761904, 0.05263157894736842, 0.009433962264150943, 0.05263157894736842, 0.016, 0.05263157894736842, 0.015873015873015872, 0.05263157894736842, 0.013888888888888888, 0.05263157894736842, 0, 0.05263157894736842, 0.007194244604316547, 0.05263157894736842, 0, 0.007518796992481203, 0, 0.027777777777777776, 0, 0, 0, 0.058823529411764705, 0.013888888888888888, 0.027777777777777776, 0, 0, 0, 0.058823529411764705, 0.023255813953488372, 0, 0, 0, 0.058823529411764705, 0.0625 ]
0.025069
5
[ "A bit of a rant: I suppose I've got a bit of a new perspective (for me) and now I find I am forever seeing something that frankly annoys the stuffing out of me.", "\n\nI've noticed that newspaper articles about Royalty constantly make stupid mistakes. ", "For example, one newspaper called Prince William of Wales a 'crown prince') and another said that Princesses Eugenie and Beatrice would lose their HRHs upon marriage. ", "I realize that the knowledge represented in these forums is somewhat specialized, but I find it virtually impossible to believe that London-based reporters specializing in covering Royal news for English newspapers could get these sorts of things wrong.", "\n\nWhat I think is happening is that these 'errors' are being made deliberately because inevitably one of us, or someone like us, will write in and correct the 'error.'", "\n\nThen, the paper can use this contact between paper and reader to promote sales of advertising space or justify high prices for same. ", "The paper will say, see how attentive our readers are? ", "How responsive they are?", "\n\nI further suspect that opinion articles about Royalty are being written to provoke similar response and for similar reasons. ", "Op-ed writers will complain about the ugliness of the Princess Royal's hat or insist that Prince William is \"useless\" (I sure hope none of those who say he's useless ever need to be sought or rescued by helicopter!)", "\n\nFurthermore, I find annoying those who complain about the wealth and laziness of the Royal Family. ", "Plenty of people are richer, but they don't get the constant attacks. ", "Perhaps folks just like to criticize and complain? ", "I dislike republicans attacking the RF on personal grounds. ", "Ad hominem attacks will only hold the republican cause back. ", "How about doing something practical, like demonstrating how the UK would be better as a republic?", "\n\nThe RF are attacked for being insufficiently transparent--yes, public money must be accounted for properly, but it's nobody's business who wears boxers and who wears briefs. ", "As far as I can see, the Queen runs a branch of the government--her branch is responsible for executing certain laws and procedures, for conducting certain diplomatic tasks, for handling important hospitality arrangements, and for liasoning between the nonprofit sector (charities), the government, and the people. ", "In the US, the president must carry out both head of state and head of government duties. ", "One can see in photographs the physical strain this pair of jobs puts on one who is after all only a mortal man. ", "With social duties handled by the RF, the PM can concentrate more (quality and quantity) on political and economic matters. ", "With the mess in Egypt and its terrifying potential consequences, I sure don't want Mr Obama opening any hospitals just now!", "\n\nI think that the UK needs to make up its mind about what it wants from their RF. ", "It's unfair to constantly criticise. ", "I remember before Princess Diana passed, the RF were depicted as inhuman, bereft of normal family feelings. ", "This was seemingly confirmed in the days after she died, when they stayed in Scotland. ", "Now, with Alistair Campbell's diaries published, we know that Princes William and Harry were balking at making a public spectacle because they were so upset and didn't want to do anything that could be construed as pleasing the press. ", "So if the press were saying come to London, show us your sorrow, they were more determined to stay in Scotland. ", "The RF were, after all, doing what real human beings would do--protecting the bereaved boys!", "\n\nI've noticed that newspaper articles about Royalty constantly make stupid mistakes. ", "For example, one newspaper called Prince William of Wales a 'crown prince') and another said that Princesses Eugenie and Beatrice would lose their HRHs upon marriage. ", "I realize that the knowledge represented in these forums is somewhat specialized, but I find it virtually impossible to believe that London-based reporters specializing in covering Royal news for English newspapers could get these sorts of things wrong.", "\n\nI remember before Princess Diana passed, the RF were depicted as inhuman, bereft of normal family feelings.", "\n\nJust to point out, if you're going to criticise the press for in correct titles. ", "You might want to get Diana's title right.", "\n\nI've noticed that newspaper articles about Royalty constantly make stupid mistakes. ", "For example, one newspaper called Prince William of Wales a 'crown prince') and another said that Princesses Eugenie and Beatrice would lose their HRHs upon marriage. ", "I realize that the knowledge represented in these forums is somewhat specialized, but I find it virtually impossible to believe that London-based reporters specializing in covering Royal news for English newspapers could get these sorts of things wrong.", "\n\nThe press get things wrong because they are never told how things actually are. ", "Charles is sometimes called the Crown Prince, which is not technically wrong it is just a title that has never been used in the UK. ", "Whichever newspaper called William, the Crown Prince got it wrong yes but if you aren't a specialist royal correspondent, you wouldn't know. ", "The BBC papers, or even the DM don't make that mistake.", "\n\nEugenie and Beatrice may loose their HRH's when they marry, they cannot pass them on and as William and Harry have kids they will move further and further down the line of succesion.", "\n\nQuote:\n\nOriginally Posted by missmaggy\n\nWhat I think is happening is that these 'errors' are being made deliberately because inevitably one of us, or someone like us, will write in and correct the 'error.'", "\n\nThen, the paper can use this contact between paper and reader to promote sales of advertising space or justify high prices for same. ", "The paper will say, see how attentive our readers are? ", "How responsive they are?", "\n\nI don't think any newspaper does deliberate errors, what would the point be in that? ", "How many people do you think actually write in and complain about a title error when they probably don't even understand whats being said or even care.", "\n\nSounds far fetched to me.", "\n\nQuote:\n\nOriginally Posted by missmaggy\n\nFurthermore, I find annoying those who complain about the wealth and laziness of the Royal Family. ", "Plenty of people are richer, but they don't get the constant attacks. ", "Perhaps folks just like to criticize and complain? ", "I dislike republicans attacking the RF on personal grounds. ", "Ad hominem attacks will only hold the republican cause back. ", "How about doing something practical, like demonstrating how the UK would be better as a republic?", "\n\nPeople are entitled to their opinion, there are many people who will look at the RF and say what are they good for except tourism? ", "And I doubt anybody could really answer that question. ", "Plenty of people are richer, because they have earnt the money they have. ", "The royals haven't earnt their riches.", "\nPlease provide a way that people of the UK can demonstrate a republic would be better, and i'm sure they would?", "\n\nQuote:\n\nOriginally Posted by missmaggy\n\nAs far as I can see, the Queen runs a branch of the government--her branch is responsible for executing certain laws and procedures, for conducting certain diplomatic tasks, for handling important hospitality arrangements, and for liasoning between the nonprofit sector (charities), the government, and the people.", "\n\nThe Queen is a representative of her country, she doesn't execute any laws or procedures, she rubber stamps the papers she is duty bound to sign that is all. ", "She has no power to do anything on her own. ", "She doesn't do anything a President couldn't do just as easily.", "\n\nQuote:\n\nOriginally Posted by missmaggy\n\nIn the US, the president must carry out both head of state and head of government duties. ", "One can see in photographs the physical strain this pair of jobs puts on one who is after all only a mortal man. ", "With social duties handled by the RF, the PM can concentrate more (quality and quantity) on political and economic matters.", "\n\nThe PM is required to show himself doing \"social duties\" as well. ", "He is not exempt from them. ", "He attends the state visits that are held in the UK, and goes on some of them abroad if they are of significance.", "\n\nQuote:\n\nOriginally Posted by missmaggy\n\nI think that the UK needs to make up its mind about what it wants from their RF. ", "It's unfair to constantly criticise. ", "I remember before Princess Diana passed, the RF were depicted as inhuman, bereft of normal family feelings.", "\n\nWhy do we need to make up our mind? ", "The majority of people in this country does not care at all about the royal family, and are happy to pay the 63p a year it costs to keep them. ", "There is a small minority of republicans who want the monarchy rid off, and as we go through the years that minority will increase, no doubt about it. ", "What else is there to decide?", "\n\nHow is it unfair? ", "These people are there to represent OUR country, if we don't like what we see we have the right to complain. ", "It is the same with any government in the world, you don't like what they are doing, you say something about it. ", "You don't keep quiet and let it continue.", "\n\nQuote:\n\nOriginally Posted by missmaggy\n\nSo if the press were saying come to London, show us your sorrow, they were more determined to stay in Scotland. ", "The RF were, after all, doing what real human beings would do--protecting the bereaved boys!", "\n\nWhen Diana passed away, the country wanted to see the RF mourn with them. ", "The royals have always been private people, and the public could not understand this. ", "That is all that IMO happened.", "\n\nQuote:\n\nOriginally Posted by missmaggy\n\nIn my heart, she's more of a Princess by right than many who were born to it\n\nDiana was never a Princess in her own right, so does not deserved to be called Princess Diana.", "\n\nOk, ok. ", "At the time of her death, she was Diana, Princess of Wales, and I loved her. ", "But if I'm going to rant about the failure of the press to get things right, I concede I should be correct myself.", "\n\nWhy would B&E lose their HRHs? ", "They can't. ", "Check DeBrett's. ", "On marriage, a woman takes her husband's rank and the feminine form of his style and title. ", "Therefore, upon marriage, she became HRH The Princess of Wales. ", "The Honorable Deborah Mitford became (after a few intervening deaths) Her Grace the Duchess of Devonshire.", "\n\nBUT, when a woman of higher rank marries a man of lower rank, she keeps her higher rank and style. ", "Therefore, when Lady Jane Spencer married a plain Mister, she became Lady Jane Fellowes. ", "See also HRH The Princess Mary married the Earl of Harewood and kept her HRH. ", "As did the present Princess Royal. ", "The HRH belongs to those who were born entitled to it, and it cannot be taken away from someone who was born with the right to it. ", "Consequently, when BBC was introducing him prior to a radio speech, it referred to the former King Edward VIII as HRH The Prince Edward.", "\n\nSimilarly, the children of the Earl of Wessex are technically HRH Princess Louise and HRH Prince James. ", "The decision has been taken to 'downsize' the RF and consequently the children are being raised without Princely rank and style, but that doesn't change their legal ownership of Princely rank and style.", "\n\nSo while B&E might wish to go without their HRHs, they won't be legally deprived of their ownership of this style and rank upon marriage. ", "As the case of Edward VIII shows, one cannot renounce ownership of an HRH.", "\n\nNevertheless, it is reported in the English press that this will be so. ", "Clearly, this sort of knowledge is more esoteric than I had first assumed.", "\n\nThese matters of title are dictated by Letters Patent issued by the Sovereign and have the force of law. ", "Presumably the Sovereign has sought and recieved ministerial support for these, but they do not require a vote in Parliament. (", "And, by the way, legislation in the UK has no potency until signed into law by the Sovereign. ", "A technicality, I know, but what I meant when I said the sovereign executes the law.)", "\n\nA better way of obtaining a republic would be to stop ad hominem attacks against the RF but explaining the ways in which a republic would be superior. ", "A place to start: how that 63 p per capita could be better spent on (military preparedness, national health, roads, dams, bridges, etc.)", "\n\nRegarding inherited wealth: yes, well, that's what comes of living in a capitalist economy. ", "You'd choose the alternative? ", "Well, we've seen how that worked out. ", "Bet you wouldn't turn down some inherited wealth. ", "I sure haven't. ", "I read the British papers--plenty of inherited wealth, why does the RF get such a disproportionate share of the ire?", "\n\nMake up your mind: What I meant is it seems is that the RF are damned if they do and damned if they don't. ", "They are criticised for their lack of emotion and humanity prior to August 31, 1997, then they act in an emotional and human way, and get criticised for being insufficiently stoic and public. ", "They are criticised for uselessness, but God help them if they ever try to do something helpful--see the last 30 years of the life of The Prince of Wales. ", "They're criticised for flaunting their inherited wealth but then criticised for wearing old but still very presentable clothing, or for (horrors!) ", "buying High Street fashions (Kate M.), or for declining to go about the the gilded glass coach (Poor Kate again).", "\n\nSo what I'm saying is that the citizens of the UK and the other nations which claim the UK's sovereign as their own--you all need to clarify what you want. ", "Should the Queen go? ", "I'm betting she would, if asked. ", "I have no inside information, but she's always struck me as a deeply patriotic lady who really does want the best for her people. ", "So if they want her to go, she'll go. ", "And if they want her to stay, she'll stay.", "\n\nIf you decide they need to go, that's the end of it. ", "But, if you decide to keep them, I think it is necessary to clarify exactly what is expected of the RF so they won't run into the damned if you do, damned if you don't problem I described above.", "\n\nBecause the constant stream of contradictory criticism is inhumane to the RF. ", "They're human beings and they didn't choose to subject themselves to this kind of scrutiny, unlike politicians who are really just asking for it. ", "I've thought about how I would react were I to be subjected to similar press coverage. ", "I imagine I'd be out of my head inside 20 minutes, running in circles shrieking \"There's no pleasing these people!\" ", "and ending up sucking my thumb in a fetal position in a corner.", "\n\nWhy would B&E lose their HRHs? ", "They can't. ", "Check DeBrett's. ", "On marriage, a woman takes her husband's rank and the feminine form of his style and title. ", "Therefore, upon marriage, she became HRH The Princess of Wales. ", "The Honorable Deborah Mitford became (after a few intervening deaths) Her Grace the Duchess of Devonshire.", "\nBUT, when a woman of higher rank marries a man of lower rank, she keeps her higher rank and style. ", "Therefore, when Lady Jane Spencer married a plain Mister, she became Lady Jane Fellowes. ", "See also HRH The Princess Mary married the Earl of Harewood and kept her HRH. ", "As did the present Princess Royal. ", "The HRH belongs to those who were born entitled to it, and it cannot be taken away from someone who was born with the right to it. ", "Consequently, when BBC was introducing him prior to a radio speech, it referred to the former King Edward VIII as HRH The Prince Edward.", "\n\nThey can, Charles or William can take them away from them. ", "They can also choose, when they are married to be known as Mrs Dave Clark or whatever. ", "I know my titles thank you.", "\n\nQuote:\n\nOriginally Posted by missmaggy\n\nSimilarly, the children of the Earl of Wessex are technically HRH Princess Louise and HRH Prince James. ", "The decision has been taken to 'downsize' the RF and consequently the children are being raised without Princely rank and style, but that doesn't change their legal ownership of Princely rank and style.", "\n\nAgain; I know this?", "\n\nQuote:\n\nOriginally Posted by missmaggy\n\nThese matters of title are dictated by Letters Patent issued by the Sovereign and have the force of law. ", "Presumably the Sovereign has sought and recieved ministerial support for these, but they do not require a vote in Parliament. (", "And, by the way, legislation in the UK has no potency until signed into law by the Sovereign. ", "A technicality, I know, but what I meant when I said the sovereign executes the law.)", "\n\nThe Monarch rubber stamps the laws, she has no say in what actually goes on in her own country. ", "However, when it comes to the army, they swear allegiance to The Queen not the state which prevents the government using the army against it's own people.", "\n\nQuote:\n\nOriginally Posted by missmaggy\n\nA better way of obtaining a republic would be to stop ad hominem attacks against the RF but explaining the ways in which a republic would be superior. ", "A place to start: how that 63 p per capita could be better spent on (military preparedness, national health, roads, dams, bridges, etc.)", "\n\nCould you please provide some of these so called attacks? ", "If the UK wanted a republic, they would ask for it. ", "They don't want one, so what's the issue?", "\n\nQuote:\n\nOriginally Posted by missmaggy\n\nRegarding inherited wealth: yes, well, that's what comes of living in a capitalist economy. ", "You'd choose the alternative? ", "Well, we've seen how that worked out. ", "Bet you wouldn't turn down some inherited wealth. ", "I sure haven't. ", "I read the British papers--plenty of inherited wealth, why does the RF get such a disproportionate share of the ire?", "\n\nYou're suggesting that the press attack every single person who has inherited some wealth?", "\nYou said plenty of people are richer, nothing mentioned about inherited wealth. ", "Inherited wealth has most likely been earnt one way or another, how did the RF earn their wealth? ", "The Royal Family are our representatives, we are entitled to share our opinion on their wealth.", "\n\nQuote:\n\nOriginally Posted by missmaggy\n\nMake up your mind: What I meant is it seems is that the RF are damned if they do and damned if they don't. ", "They are criticised for their lack of emotion and humanity prior to August 31, 1997, then they act in an emotional and human way, and get criticised for being insufficiently stoic and public. ", "They are criticised for uselessness, but God help them if they ever try to do something helpful--see the last 30 years of the life of The Prince of Wales. ", "They're criticised for flaunting their inherited wealth but then criticised for wearing old but still very presentable clothing, or for (horrors!) ", "buying High Street fashions (Kate M.), or for declining to go about the the gilded glass coach (Poor Kate again).", "\n\nAnd? ", "The problem is? ", "This is not disimilar to other people in the world. ", "Like I said the majority of people don't care about the BRF. ", "The most articles we get are from the Daily Mail are quite clearly biased towards hating the BRF, and you can tell by the comments on the bottom of the articles. ", "This is the 5% maybe of people who have issue with their own life, so like to take it out on other people. ", "The day to day person in the UK doesn't care about the gilded coach, the clothes that Kate wears or the emotion that the royals show. ", "They're happy with their own lives.", "\n\nQuote:\n\nOriginally Posted by missmaggy\n\nSo what I'm saying is that the citizens of the UK and the other nations which claim the UK's sovereign as their own--you all need to clarify what you want. ", "Should the Queen go? ", "I'm betting she would, if asked. ", "I have no inside information, but she's always struck me as a deeply patriotic lady who really does want the best for her people. ", "So if they want her to go, she'll go. ", "And if they want her to stay, she'll stay.", "\n\nIf the UK was asked on the issue of keeping the Monarchy, they would say yes, keep it.", "\nOther nations are dealing with the issue of keeping the Monarch as their head of state. ", "They have bigger things to worry about first, for example in Australia with the floods.", "\nI don't see why you're insisting on us having a referndum, what does it matter?", "\nThe Royal Family is their to represent our country and the commonwealth, the way they should do that is different in everyones eyes.", "\n\nQuote:\n\nOriginally Posted by missmaggy\n\nBecause the constant stream of contradictory criticism is inhumane to the RF. ", "They're human beings and they didn't choose to subject themselves to this kind of scrutiny, unlike politicians who are really just asking for it. ", "I've thought about how I would react were I to be subjected to similar press coverage. ", "I imagine I'd be out of my head inside 20 minutes, running in circles shrieking \"There's no pleasing these people!\" ", "and ending up sucking my thumb in a fetal position in a corner.", "\n\nDo you think they really care? ", "They're used to it. ", "You're one person fighting a loosing battle. ", "The Royal Family are their to represent their country, they are bound to be criticised. ", "Just like every single President and Prime Minister in the world.", "\nThey didn't choose no, but they remain. ", "Would you rather be a teacher with no criticism or The Queen with little criticism and a hell of a lot of cash to make you feel better?", "\nThis family, every royal family knows how to deal with criticism. ", "Ordinary people don't." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0.017964071856287425, 0.003952569169960474, 0, 0, 0, 0, 0, 0.004651162790697674, 0, 0, 0, 0.016666666666666666, 0, 0, 0.005681818181818182, 0, 0, 0, 0.008064516129032258, 0.008064516129032258, 0.012048192771084338, 0, 0.018518518518518517, 0, 0.01276595744680851, 0, 0.010869565217391304, 0, 0.017964071856287425, 0.003952569169960474, 0.01834862385321101, 0, 0.023809523809523808, 0, 0.017964071856287425, 0.003952569169960474, 0, 0.007575757575757576, 0.0070921985815602835, 0.01818181818181818, 0.021739130434782608, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.016666666666666666, 0, 0, 0.007518796992481203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008130081300813009, 0, 0, 0, 0.008130081300813009, 0, 0.018691588785046728, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.010869565217391304, 0.013157894736842105, 0, 0, 0.004672897196261682, 0, 0.012987012987012988, 0, 0, 0, 0.058823529411764705, 0, 0, 0.009433962264150943, 0, 0.02247191011235955, 0, 0.02857142857142857, 0.007633587786259542, 0.014705882352941176, 0, 0.0049504950495049506, 0, 0.02702702702702703, 0, 0, 0.009345794392523364, 0.015748031496062992, 0, 0, 0.006535947712418301, 0, 0, 0, 0, 0, 0, 0.008620689655172414, 0.009174311926605505, 0, 0, 0, 0.017699115044247787, 0, 0, 0, 0, 0, 0, 0, 0.005154639175257732, 0.0125, 0, 0, 0, 0, 0, 0, 0.058823529411764705, 0, 0, 0.009433962264150943, 0, 0.02247191011235955, 0, 0.02857142857142857, 0.007633587786259542, 0.014705882352941176, 0.03278688524590164, 0.011494252873563218, 0, 0, 0.0049504950495049506, 0, 0.006802721088435374, 0.015748031496062992, 0, 0, 0, 0, 0.0051813471502590676, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008620689655172414, 0, 0, 0.01020408163265306, 0, 0.006711409395973154, 0, 0, 0, 0.017699115044247787, 0, 0, 0, 0.01639344262295082, 0.012345679012345678, 0, 0.007462686567164179, 0, 0, 0, 0, 0, 0, 0, 0.011363636363636364, 0, 0, 0, 0.007518796992481203, 0.008333333333333333, 0, 0, 0, 0, 0, 0, 0, 0.011363636363636364, 0, 0, 0, 0, 0 ]
0.004424
5
[ "\n19 F.Supp.2d 807 (1998)\nARMCO, INC., ", "Plaintiff,\nv.\nRELIANCE NATIONAL INSURANCE COMPANY, et al., ", "Defendants.", "\nNo. ", "C-1-96-1149.", "\nUnited States District Court, S.D. Ohio, Western Division.", "\nAugust 26, 1998.", "\n*808 *809 David Charles Horn, Frost & Jacobs, Cincinnati, OH, for Armco Inc, plaintiff.", "\nThomas Spencer Shore, Jr., Jeffrey S. Routh, Rendigs Fry Kiely & Dennis, Cincinnati, OH, James M Hoey, Bianca M. Loftus, Chicago, IL, Gary Lee Herfel, Furnier Thomas Rosenberg & Herfel LLP, Cincinnati, OH, for Reliance National Insurance Company and Home Ins. ", "Co., defendants.", "\nORDER GRANTING IN PART AND DENYING IN PART DEFENDANT HOME INSURANCE COMPANY'S MOTION FOR PARTIAL SUMMARY JUDGMENT AND DENYING IN PART AND DENYING AS MOOT IN PART PLAINTIFF'S MOTIONS FOR PARTIAL SUMMARY JUDGMENT\nDLOTT, J.\nThis matter is before the Court on the Motion for Summary Judgment of Defendant Home Insurance Company (doc. # ", "29), the Motion for Partial Summary Judgment of Plaintiff Armco, Inc. Against Defendant Reliance National Insurance Company (doc. # ", "30), and the Motion for Partial Summary Judgment of Plaintiff Armco, Inc. Against Defendant Home Insurance Company (doc. # ", "31). ", "For the reasons stated below, Defendant Home Insurance Company's Motion for Summary Judgment is hereby GRANTED IN PART AND DENIED IN PART, Plaintiff's Motion for Partial Summary Judgment Against Defendant Reliance National Insurance Company is hereby DENIED IN PART AND DENIED AS MOOT IN PART, and Plaintiff's Motion for Partial Summary Judgment Against Defendant Home Insurance Company is hereby DENIED IN PART AND DENIED AS MOOT IN PART.", "\n\nI. BACKGROUND\nPlaintiff Armco, Inc. (\"Armco\") brings this action against Defendants Reliance National Insurance Company (\"Reliance\") and Home Insurance Company (\"Home\") to recover under insurance policies issued by the Defendants for losses resulting from an interruption in business that arose at one of its facilities on March 1, 1994. ", "Specifically, Armco alleges that Defendants were to provide to it one half of a combined total of $10,000,000 in business interruption insurance. ", "Armco had an insurance policy with Lloyds of London (\"Lloyds\"), which is not a party to this suit, for $5,000,000 and claims that its policy with Reliance, the primary insurer, and its policy with Home, the secondary insurer, were to provide another $5,000,000 in combined coverage. ", "Through their Motions, the parties seek to establish as a matter of law all or certain issues related to *810 what coverage is owed to Plaintiff by Home and Reliance under these policies.", "\n\nII. ", "LEGAL STANDARD\nSummary judgment is proper \"if the pleadings, depositions, answers to interrogatories, and admissions on file, together with the affidavits, if any, show that there is no genuine issue as to any material fact and the moving party is entitled to judgment as a matter of law.\" ", "Fed.", "R.Civ.", "P. 56(c). ", "On a motion for summary judgment, the movant has the burden of showing that no genuine issue of material fact exists, and the evidence, together with all inferences that can permissibly be drawn therefrom, must be read in the light most favorable to the party opposing the motion. ", "Matsushita Elec. ", "Indus. ", "Co. v. Zenith Radio Corp., 475 U.S. 574, 587, 106 S.Ct. ", "1348, 89 L.Ed.2d 538 (1986).", "\nSummary judgment is not appropriate if the dispute about a material fact is genuine; \"that is, if the evidence is such that a reasonable jury could return a verdict for the nonmoving party.\" ", "Anderson v. Liberty Lobby, Inc., 477 U.S. 242, 248, 106 S.Ct. ", "2505, 91 L.Ed.2d 202 (1986). ", "Summary judgment is appropriate, however, if the opposing party fails to make a showing sufficient to establish the existence of an element essential to that party's case and on which that party will bear the burden of proof at trial. ", "Celotex Corp. v. Catrett, 477 U.S. 317, 322, 106 S.Ct. ", "2548, 91 L.Ed.2d 265 (1986).", "\n\nIII. ", "ANALYSIS\n\nA. Home's Motion for Summary Judgment\n\n1. ", "The Suit Limitation Clause\nDefendant Home first contends that Armco's suit is barred because Armco failed to bring this action within twelve months after its discovery of the business interruption for which it seeks coverage, as required by a suit limitation clause in Armco's policy with Home.[1] Armco responds that Home should be barred from asserting this defense based upon waiver, estoppel, ambiguity in the contract as to the clause's applicability, and the unreasonableness of the clause.", "\nThe Court agrees with Home that it has not waived this defense because it did not raise the affirmative defense of statute of limitations in its Answer, as Armco claims. ", "This defense arises out of the terms of the policy as contained in the suit limitation clause, rather than state law, and was pled as a defense in its Answer by either the assertion that Armco's action is \"barred by the doctrines of laches, waiver and/or estoppel\" or that it is \"barred by the terms of the policy.\"", "\nSimilarly, the Court does not find that Home is estopped from raising this defense based upon its handling and investigation of Plaintiffs claim. ", "Any acknowledgment of liability by an insurer can be seen as inducing an insured to wait in filing suit and serve as the basis for estoppel or waiver. ", "See, e.g., Hounshell v. American States Insurance, 67 Ohio St.2d 427, 429, 424 N.E.2d 311 (1981). ", "Still, \"[t]he process of investigation in determining liability by an insurer does not constitute a waiver by that insurer.\" ", "Thomas v. Allstate Insurance Co., 974 F.2d 706, 710 (6th Cir.1992). ", "Estoppel is usually a question of law and fact. ", "Andres v. City of Perrysburg, 47 Ohio App.3d 51, 56, 546 N.E.2d 1377 (1988). ", "However, the Court can find no evidence put forth by Plaintiff that would allow a reasonable jury to conclude that any acknowledgments of liability were made within the allowable period of the suit limitation clause — prior to March 1, 1995 — and could thus serve as the basis for estoppel. ", "See Friendly Farms v. Reliance Insurance Co., 79 F.3d 541, 545 (6th Cir.1996) (acts or conduct giving rise to estoppel must have *811 occurred within the suit limitation clause contained in the policy).", "\nArmco also contends that there is an ambiguity in Home's policy with respect to whether the suit limitation clause even applies and that the ambiguity should be construed against Home and in favor of Armco. \"", "Where provisions of a contract of insurance are reasonably susceptible of more than one interpretation, they will be construed strictly against the insurer and liberally in favor of the insured.\" ", "Lane v. Grange Mutual Companies, 45 Ohio St.3d 63, 65, 543 N.E.2d 488 (1989). ", "Armco claims that ambiguity as to the applicability of the suit limitation clause exists because the clause is found in the boilerplate language of the policy while the language that was written specifically for Armco contains a paragraph regarding service of process and jurisdictional questions related to legal actions arising under this policy that does not mention the limitation on suits. ", "Armco further claims that ambiguity exists since the policy requires Armco to present to Home notice of intent to file a claim for certain losses within 12 months of the loss, the same amount of time as the suit limitation clause provides for filing suit under the policy. ", "While these provisions and requirements may show that the suit limitation clause is unreasonable, as addressed below, or simply that the contract does not serve Armco well, they do not create an ambiguity as to the applicability of the clause and a reasonable jury could not find it susceptible to more than one interpretation.", "\nHowever, Armco's contention that this suit limitation clause is unreasonable and therefore unenforceable is not without merit. ", "An action on a contract is typically subject to a fifteen year statute of limitations. ", "Ohio Rev.Code § 2305.06. ", "Nonetheless, \"an insurance policy may limit the time for an action on the contract to less than fifteen years if a reasonable time for suit is provided.\" ", "Lane, 45 Ohio St.3d at 64, 543 N.E.2d 488. ", "In opposition to Home's Motion for Summary Judgment, Armco argues that it would be unreasonable to enforce the suit limitation clause under the circumstances of this case. ", "Viewing the evidence in the light most favorable to Armco, the Court cannot find that the one year suit limitation clause is reasonable as a matter of law. ", "Instead, disputes of material fact exist as to the reasonableness of this clause and the existence of circumstances excusing delay under it such that summary judgment in favor of Home is not warranted. ", "See Order of United Commercial Travelers of America v. Duncan, 221 F.2d 703, 707 (6th Cir.1955) (reasonableness of suit limitation clause is question for the jury where disputed or if extrinsic facts are alleged that excuse delay in bringing suit). ", "A reasonable jury could certainly find this suit limitation clause to be unreasonable.", "\nAccordingly, Home's Motion for Summary Judgment with regard to the suit limitation clause is hereby DENIED.", "\n\n2. ", "Co-Insurance Penalty\nHome, as the secondary insurer, is providing difference in conditions (\"DIC\") coverage to Armco, meaning that it agreed to provide coverage, subject to its own limitations and conditions, to the extent that a loss is not covered by or exceeds the limits of the insurance provided by Reliance, the primary insurer. ", "Reliance's policy contained a co-insurance clause, by which it was agreed that if Armco sustained actual losses in excess of the potential value of those losses as estimated prior to the incident, a penalty would be assessed against it. ", "A co-insurance penalty will be assessed by Reliance arising out of the business interruption loss that serves as the basis for this action. ", "This penalty is a deduction from the amount of total recoverable loss found to exist under the Reliance policy for Armco's failure to insure to the full value of its losses. ", "Armco alleges that Home, as the provider of DIC coverage, is responsible for covering the amount of the penalty, since its policy is intended to insure for any losses not covered or in excess of the amount of recoverable loss under the Reliance policy.", "\nHome has moved the Court for summary judgment on this issue, claiming that it is not responsible for this amount, while Armco, in its Motion for Partial Summary Judgment Against Home, seeks a declaration that Home is liable for the amount of the penalty as a matter of law. ", "Where no dispute *812 of material fact exists, the existence or extent of coverage of an insurance policy is a question of law. ", "Gomolka v. State Automobile Mutual Insurance Company, 70 Ohio St.2d 166, 167, 436 N.E.2d 1347 (1982).", "\nThe obvious intent of a co-insurance clause is to reward those who insure for full value and to punish those who insure for less than the value of their risk. ", "Once assessed, a coinsurance penalty reduces the compensable claim and the loss that may be stated for insurance purposes due to an insured's failure to properly insure the risk. ", "This amount is not loss in excess of or not covered by primary insurance and does not constitute recoverable loss under DIC coverage. ", "It is clearly addressed by the primary insurer and intended to be imposed as a cost to the insured. ", "It is simply an obligation of Armco. ", "Home is correct in its contention that to hold otherwise would allow an insurer to underinsure its property, at less expensive premiums, and then simply recover any penalty assessed for that from its secondary insurer, for whose coverage the insured has likely paid even less expensive premiums.", "\nAccordingly, Home's Motion for Summary Judgment with regard to the co-insurance penalty is hereby GRANTED.", "\n\n3. ", "Bad Faith\nPlaintiff Armco also brings a claim of bad faith against Home. ", "Specifically, in Armco's Complaint, it is alleged that this Defendant has \"dealt in bad faith with Armco, breached its express and implied duties of good faith and fair dealing to Armco, [and] breached the terms of the Home policy.\" ", "Home argues that Plaintiff has not offered sufficient evidence in support of its allegations and that summary judgment is therefore warranted.", "\nAn actionable claim of bad faith does not exist when an insurer may have exercised poor judgment or may have been negligent in the handling of a claim. ", "Bad faith involves deliberate wrongdoing with the intent to mislead or breach a known duty. ", "See Wasserman v. Buckeye Union Cas. ", "Co., 32 Ohio St.2d 69, 73, 290 N.E.2d 837 (1972). ", "However, \"[a]n insurer fails to exercise good faith in the processing of a claim of its insured where its refusal to pay the claim is not predicated upon circumstances that furnish reasonable justification therefor.\" ", "Zoppo v. Homestead Insurance Co., 71 Ohio St.3d 552, 644 N.E.2d 397, at Syllabus (1994). ", "Viewing the evidence in the light most favorable to Plaintiff, evidence does exist upon which a reasonable jury could base a finding of bad faith. ", "This includes Home's adjuster's initial opinion that it owed Armco nothing under its policy if Reliance had to pay anything, and the adjuster's initial representation that the underwriter of the policy agreed with that opinion, since evidence exists that the underwriter, in fact, did not, share that view.", "\nAccordingly, Home's Motion for Summary Judgment with regard to Plaintiff's claim of bad faith is hereby DENIED.", "\n\n4. ", "Armco's Failure to Make a Claim\nLast, Home claims that Armco's suit is premature since Armco has yet to demand a quantifiable amount in coverage from Home. ", "Home contends that it is entitled to summary judgment on this basis or, in the alternative, to a bifurcated trial that would require Armco to first proceed against Reliance in order to determine Reliance's liability as the primary insurer before proceeding against Home. ", "Armco responds that it is required to join Home as a necessary party to this action and to assert its claims against Home now under Fed.", "R.Civ.", "P. 19.", "\nAn entity should be joined in an action if its interest related to the subject of the action is such that disposition of the action would impair or impede that interest or leave any of the entities already a party to the action at substantial risk of incurring inconsistent obligations as a result of separate actions and separate judgments. ", "Fed. ", "R.Civ.", "P. 19(a)(2). ", "Plaintiff Armco has stated well in its Memorandum in Opposition to Home's Motion for Summary Judgment the reasons why Home's interests may be impaired and how inconsistent judgments may result if Home is not a party to the instant action and the Court need not repeat those reasons here. ", "Home is clearly a necessary party to this action and is not entitled to *813 summary judgment or bifurcation based upon its contention that Armco's suit against it is premature.", "\nAccordingly, Home's Motion for Summary Judgment with regard to Plaintiff's failure to make a claim against them is hereby DENIED.", "\n\nB. Plaintiff's Motion for Partial Summary Judgment Against Reliance\n\n1. \"", "SUB\" and \"SUT\" Payments\nPlaintiff moves the Court for partial summary judgment against Reliance on two issues. ", "First, Plaintiff claims that it is entitled to coverage for amounts paid for supplemental unemployment benefits (\"SUB\") and state unemployment taxes (\"SUT\") under its policy with Reliance as a result of the business interruption it experienced in 1994. ", "Reliance's policy states that it will cover \"salaries and wages of officers, executives, employees under contract and other essential employees, as well as pensions and directors' fees\" but it did not extend coverage to \"ordinary payroll expense.\" ", "Armco insists that SUB and SUT payments are not ordinary payroll expense and therefore covered, while Reliance contends that they are ordinary payroll expense and are not covered. \"", "Ordinary payroll expense\" is not defined within the policy.", "\nPlaintiff argues that SUB and SUT payments cannot be considered ordinary payroll expense because these payments are contingent upon an employee being thrown out of work. ", "According to Plaintiff, SUB and SUT payments are not made by it during a period of employment, but rather are paid by the state while an employee is not employed by it. ", "By this reasoning, SUB and SUT payments are not ordinary payroll expense but instead a benefit paid to employees when they are not on the payroll of the employer.", "\nReliance replies that ordinary payroll expense is defined in the policy by what it is not: the salaries and wages of officers and executives. ", "The policy excludes from coverage the cost of \"ordinary\" workers' payroll. ", "According to Reliance, SUB and SUT payments are accumulated depending upon the number of hours a week an employee works and are paid based on the number of weeks the employee doesn't work. ", "Therefore, Reliance concludes, these payments are a necessary cost, or expense, related to ordinary payroll and, as such, are not covered by its policy.", "\nAs stated above, provisions of an insurance contract that are reasonably susceptible of more than one interpretation will be construed strictly against the insurer and liberally in favor of the insured. ", "Lane, 45 Ohio St.3d at 65, 543 N.E.2d 488. ", "However, if a contractual term's meaning cannot be determined from the four corners of a contract, a dispute of material fact exists requiring a determination of the intent of the parties. ", "Inland Refuse Transfer Co. v. Browning-Ferris Industries of Ohio, Inc., 15 Ohio St.3d 321, 322, 474 N.E.2d 271 (1984). ", "This may include an examination of any commercial or technical meaning acquired by usage and intended to be used by the parties. ", "See Gomolka, 70 Ohio St.2d at 172-173, 436 N.E.2d 1347. ", "The meaning of the term \"ordinary payroll expense\" in the policy is not clear and Plaintiff is not entitled to coverage of the SUB and SUT payments as a matter of law. ", "A reasonable jury could find in favor of Reliance on this issue.", "\nSimilarly, Plaintiff's argument that these payments are recoverable as expenses incurred in mitigation of damages because making such payments was less than paying employees their full salaries while the facility was idled fails. ", "Reliance is correct in its assertion that the provision in its policy requiring the insured to reduce its loss is clearly intended to apply to insurable loss. ", "Plaintiff itself admits in its Motion that it had a duty to mitigate damages \"for the insurer's benefit,\" not the insured. ", "It would clearly be against the terms and intent of the policy to find that Armco is entitled to reimbursement for SUB and SUT payments as costs incurred in mitigating loss, since the loss such payments mitigate, the salaries of employees or \"ordinary payroll expense,\" is not recoverable.", "\nAccordingly, Plaintiffs Motion for Partial Summary Judgment Against Reliance with *814 regard to the issue of SUB and SUT payments is hereby DENIED.", "\n\n2. ", "The Deductible\nSecond, Plaintiff claims that the $1,000,000 deductible provided for in the policies issued by the insurers applies to its combined $10,000,000 coverage and, therefore, Reliance and Home are only entitled to the benefit of one half of the $1,000,000, rather than a $1,000,000 deductible for their benefit and a $1,000,000 deductible for the benefit of Lloyds. ", "Reliance appears to concede this point and there is no dispute as to the amount of the deductible or its applicability to each carrier's policy. ", "Therefore, it appears that there is no conflict for this Court to resolve on this issue.", "\nAccordingly, Plaintiff's Motion for Partial Summary Judgment Against Reliance with regard to the deductible applicable to its policy is hereby DENIED AS MOOT.", "\n\nC. Plaintiff's Motion for Partial Summary Judgment Against Home\n\n1. ", "Ordinary Payroll Expense\nPlaintiff moves the Court for summary judgment on several issues related to Home's provision of DIC coverage for Plaintiff's business interruption loss. ", "First, it moves the Court to hold as a matter of law that, as the provider of DIC coverage, Home is liable for ordinary payroll expense — including SUB and SUT payments, if determined to be ordinary payroll expense — because it is not covered under Reliance's policy. ", "However, Home concedes, in principal, that it would be liable for this expense and Plaintiff itself states in its Motion that Home has acknowledged \"that it was responsible for the gap created by the ordinary payroll exclusion.\" ", "In addition, as addressed above in the Court's analysis of Plaintiff's Motion for Partial Summary Judgment Against Home, the issue of whether SUB and SUT payments are or are not \"ordinary payroll expense\" cannot be resolved as a matter of law. ", "Therefore, the Court need not address this issue.", "\nAccordingly, Plaintiff's Motion for Partial Summary Judgment Against Home with regard to the issue of ordinary payroll expense is hereby DENIED AS MOOT.", "\n\n2. ", "Co-Insurance Penalty\nPlaintiff next moves the Court to hold as a matter of law that Home is required to provide coverage to it for the amount of the co-insurance penalty assessed to Plaintiff by Reliance. ", "Plaintiff is not entitled to coverage under the Home policy for the amount of any co-insurance penalty imposed by Reliance under its policy as addressed above in the Court's analysis of Home's Motion for Summary Judgment.", "\nAccordingly, Plaintiff's Motion for Partial Summary Judgment Against Home with regard to the issue of the co-insurance penalty is hereby DENIED.", "\n\n3. ", "Period of Restoration/Indemnity Period\nPlaintiff also moves the Court for summary judgment on the issue of whether Home, as the secondary insurer, is liable for any gap created between what is called the \"period of restoration\" under the policy issued by Reliance and what is called the \"indemnity period\" under the policies issued by Home and Lloyds. ", "Reliance's policy provides coverage for losses that occur within a period of restoration, which is defined as the period between the time of the incident causing the business interruption and the date when the damaged equipment is repaired or replaced. ", "Home's and Lloyds' policies provide coverage for losses that occur within an indemnity period, defined as the period between the time of the incident causing the business interruption and the date when, with due diligence, the insured's business is restored to the condition that would have existed had no loss occurred. ", "Armco contends that any difference in costs between the time of the period of restoration and the indemnity period, or the costs of so called \"ramp up\" for Armco's business after the damaged equipment was repaired or replaced, is the obligation of Home as a matter of law.", "\nHome insists that Armco's contention that it is liable for any such period is without *815 merit. ", "After the business interruption arose, Armco decided not to put the failed equipment back in operation and instead decided to perform a major capital improvement project that would render the failed equipment obsolete. ", "This project necessitated the formation of an agreement as to what the period of restoration would have been and it is undisputed that an agreement was reached limiting the period of restoration to three months. ", "Home contends that the agreement to limit the period of restoration was between all parties and it was intended that there would be no subsequent indemnity period. ", "In addition, Home asserts that Lloyds did not provide coverage for any claimed difference between the period of restoration and the indemnity period and, as such, no gap of coverage exists for which Home is liable. ", "However, Armco responds that Home was not a party to the agreement limiting the period of restoration to three months, there was no intention to limit the indemnity period by that agreement, and Home is clearly liable for coverage of any loss incurred in the time between the different periods of recoverable loss as they are defined in Armco's policies with Reliance and Home.", "\nA waiver of the terms of a written insurance policy may be either by subsequent contract, written or oral, or by the acts and conduct of the parties. ", "Ohio Farmers' Insurance Co. v. Cochran, 104 Ohio St. 427, 135 N.E. 537 (1922). ", "An insurance policy may be subsequently modified by a parol agreement. ", "Coletta v. Ohio Casualty Insurance Co., 96 Ohio App. ", "70, 80, 121 N.E.2d 148 (1953). ", "Armco presents persuasive evidence in support of its assertions that the agreement to limit the period of restoration to three months was made only between itself and Reliance, not Home, and that there was no intent to limit the indemnity period. ", "However, Home has put forth credible evidence in support of its contentions that the agreement was between all parties and that the intent was that there was to be no subsequent indemnity period, or ramp up costs, for which Home would be liable to Armco. ", "This includes an admission made after the agreement by an agent of Armco's provider of risk management services that, even in light of unresolved issues related to coverage of the co-insurance penalty and ordinary payroll expense, Home's liability still would likely be \"to a small extent, if any.\" ", "Therefore, viewing the evidence, together with all inferences that can permissibly be drawn therefrom, in the light most favorable to Home, the Court cannot conclude that no reasonable jury could return a verdict for Home on this issue. ", "Disputes of material fact exist as to the existence of an agreement between these parties and the intent of that agreement as it relates to the indemnity period that preclude summary judgment.", "\nAccordingly, Plaintiff's Motion for Partial Summary Judgment Against Home with regard to the issue of the period of restoration and the indemnity period is hereby DENIED.", "\n\n4. ", "The Deductible\nAs in its Motion for Partial Summary Judgment Against Reliance, Plaintiff claims that the $1,000,000 deductible provided for in the policies applies to its combined $10,000,000 coverage and, therefore, Reliance and Home are only entitled to the benefit of one half of the $1,000,000, rather than a $1,000,000 deductible for their benefit and a $1,000,000 deductible for the benefit of Lloyds. ", "Home, like Reliance, appears to concede this point and there is no dispute as to the amount of the deductible or its applicability to each carrier's policy. ", "Therefore, it again appears that there is no conflict for this Court to resolve on this issue.", "\nAccordingly, Plaintiff's Motion for Partial Summary Judgment Against Home with regard to the deductible applicable to its policy is hereby DENIED AS MOOT.", "\n\n5. ", "Estoppel\nLast, Plaintiff moves the Court to find that Home is estopped from relying upon Lloyds' adjustment of Plaintiff's business interruption loss due to Home's refusal, in violation of the terms of its contract with Plaintiff, to utilize the same adjuster for Plaintiffs loss as Lloyds used. ", "The Court finds that estoppel is not appropriate in this situation.", "\n*816 Under its policy with Armco, Home was obligated to use the same adjuster for determining Armco's business interruption loss as Lloyds used. ", "However, Home fired this adjuster in violation of the policy. ", "As a result, Armco claims that Home should be estopped from using the results of the work performed by Lloyds' adjuster and that the portion of Armco's claim submitted to Home should be adjusted completely independently from the adjustment of the portion of its claim submitted to Lloyds. ", "Otherwise, Armco insists, Home will utilize the opinions of Lloyds' adjuster when it benefits Home, such as if its calculation of the loss is less than Home's adjuster determined, but not utilize its opinions when it does not serve Home well, such as Lloyds' adjuster's opinion that Home is responsible for the co-insurance penalty.", "\nHome responds that it fired Lloyds' adjuster because the adjuster had a conflict of interest and had asserted coverage positions on behalf of Home that were outside the scope of Home's policy. ", "Home claims that it endorses the position taken by Lloyds in adjusting Armco's loss, and therefore it is not benefitting from its termination of Lloyds' adjuster. ", "Home contends that it simply does not endorse the position of Lloyds' adjuster regarding the existence of differences in conditions that Home must cover. ", "Furthermore, Home argues that Lloyds' adjustment of the loss must be considered in order to determine if any gaps in coverage exist between Lloyds' policy and Reliance's.", "\nThe doctrine of equitable estoppel is derived from the concept that one cannot change his position once another has acted in reliance thereon and, as an equitable rule, it may be invoked whenever the facts and circumstances warrant. ", "Andres, 47 Ohio App.3d at 56, 546 N.E.2d 1377. ", "Specifically, one party will not be permitted to deny something which by his words, acts, or silence has induced another to rely reasonably and in good faith to his detriment. ", "First Federal S. & L. Association v. Perry's Landing, Inc., 11 Ohio App.3d 135, 463 N.E.2d 636 (1983). ", "In its Motion, Plaintiff seeks to estop Home from using the work or opinions of Lloyds' adjuster, as its policy required, and instead asks that this Court require Home to utilize only the work and opinions of the adjuster that Home retained in contravention of the policy. ", "This unusual request is unsupported by any evidence that Plaintiff was actually induced by Home to rely to its detriment upon this act by Home. ", "Estoppel, more logically, could be warranted to require Home to act in conformity with the contract and only use Lloyds' adjuster's work and opinions. ", "Plaintiff, however, seeks to require Home to act in a manner directly contrary to any representation upon which Plaintiff may have relied. ", "For this, estoppel will not lie.", "\nAccordingly, Plaintiff's Motion for Partial Summary Judgment Against Home with regard to the issue of estoppel is hereby DENIED.", "\n\nIV. ", "CONCLUSION\nFor the reasons set forth above, Defendant Home Insurance Company's Motion for Summary Judgment is hereby GRANTED IN PART AND DENIED IN PART, Plaintiff's Motion for Partial Summary Judgment Against Defendant Reliance National Insurance Company is hereby DENIED IN PART AND DENIED AS MOOT IN PART, and Plaintiff's Motion for Partial Summary Judgment Against Defendant Home Insurance Company is hereby DENIED IN PART AND DENIED AS MOOT IN PART.", "\nIT IS SO ORDERED.", "\nNOTES\n[1] The suit limitation clause in the Home policy states:\n\n21. ", "SUIT: No suit, action or proceeding for the recovery of any claim under this policy shall be sustainable in any court of law or equity unless the same be commenced within twelve (12) months next after discovery by the Insured of the occurrence which gives rise to the claim. ", "Provided, however, that if by the laws of the State within which this policy is issued such limitation is invalid, then any such claims shall be void unless such action, suit or proceeding commenced within the shortest limit of time permitted by the laws of such state.", "\n" ]
{ "pile_set_name": "FreeLaw" }
[ 0.02631578947368421, 0.01694915254237288, 0, 0, 0, 0.01694915254237288, 0, 0.03409090909090909, 0.03065134099616858, 0, 0.003003003003003003, 0.007575757575757576, 0.016260162601626018, 0, 0.00683371298405467, 0.011764705882352941, 0.0136986301369863, 0.014134275618374558, 0.0053475935828877, 0, 0, 0.25, 0, 0.1, 0, 0.058823529411764705, 0, 0.017857142857142856, 0, 0, 0.03225806451612903, 0, 0.00425531914893617, 0.03636363636363636, 0, 0, 0.038461538461538464, 0.010080645161290322, 0.017543859649122806, 0.0031746031746031746, 0.013605442176870748, 0, 0.02040816326530612, 0, 0.014705882352941176, 0.020833333333333332, 0, 0.003436426116838488, 0.0049504950495049506, 0.014354066985645933, 0, 0, 0.005063291139240506, 0.007326007326007326, 0.0030581039755351682, 0.0078125, 0, 0, 0, 0, 0.011627906976744186, 0.01282051282051282, 0.0049504950495049506, 0.004016064257028112, 0, 0.009259259259259259, 0, 0.011940298507462687, 0.008438818565400843, 0.007142857142857143, 0.011494252873563218, 0.011904761904761904, 0.01090909090909091, 0, 0.009900990099009901, 0, 0, 0.007462686567164179, 0, 0.02702702702702703, 0, 0.009345794392523364, 0, 0.0136986301369863, 0.02145922746781116, 0.007042253521126761, 0, 0, 0, 0, 0, 0.02247191011235955, 0.006802721088435374, 0.00980392156862745, 0.017857142857142856, 0, 0.019230769230769232, 0.01107011070110701, 0.022058823529411766, 0, 0, 0, 0.2, 0, 0, 0.010416666666666666, 0.005649717514124294, 0.015384615384615385, 0.013333333333333334, 0.02702702702702703, 0.011857707509881422, 0.004032258064516129, 0.022099447513812154, 0, 0.011695906432748537, 0.01775147928994083, 0.012345679012345678, 0, 0, 0.015873015873015872, 0.006578947368421052, 0, 0, 0, 0.025210084033613446, 0, 0, 0.017857142857142856, 0.015625, 0.004329004329004329, 0.006289308176100629, 0.008130081300813009, 0.010380622837370242, 0.020134228187919462, 0, 0.008, 0.006896551724137931, 0.011363636363636364, 0.006289308176100629, 0.014285714285714285, 0.02247191011235955, 0.022388059701492536, 0.013100436681222707, 0.01639344262295082, 0.02040816326530612, 0.006535947712418301, 0, 0.01951219512195122, 0.013574660633484163, 0.006896551724137931, 0, 0.008522727272727272, 0.003952569169960474, 0.006230529595015576, 0.007352941176470588, 0.010101010101010102, 0.0045662100456621, 0, 0, 0.004651162790697674, 0.010610079575596816, 0, 0.0379746835443038, 0, 0.03773584905660377, 0, 0.008097165991902834, 0.011764705882352941, 0.006688963210702341, 0.004219409282700422, 0, 0.005847953216374269, 0, 0.00980392156862745, 0.006369426751592357, 0.010638297872340425, 0.0064516129032258064, 0, 0.030405405405405407, 0.014925373134328358, 0.02054794520547945, 0, 0.01384083044982699, 0.018072289156626505, 0.010309278350515464, 0.018404907975460124, 0.006493506493506494, 0.023529411764705882, 0, 0, 0, 0.02912621359223301, 0.018315018315018316, 0.006944444444444444, 0.013245033112582781, 0.014388489208633094, 0, 0.007751937984496124, 0, 0.006622516556291391, 0, 0.014084507042253521, 0.0036363636363636364, 0.0037174721189591076, 0 ]
0.011433
5
[ "/*!", "\n * reveal.js\n * http://revealjs.com\n * MIT licensed\n *\n * Copyright (C) 2017 Hakim El Hattab, http://hakim.se\n */\n/*********************************************\n * RESET STYLES\n *********************************************/\nhtml, body, .reveal div, .reveal span, .reveal applet, .reveal object, .reveal iframe,\n.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6, .reveal p, .reveal blockquote, .reveal pre,\n.reveal a, .reveal abbr, .reveal acronym, .reveal address, .reveal big, .reveal cite, .reveal code,\n.reveal del, .reveal dfn, .reveal em, .reveal img, .reveal ins, .reveal kbd, .reveal q, .reveal s, .reveal samp,\n.reveal small, .reveal strike, .reveal strong, .reveal sub, .reveal sup, .reveal tt, .reveal var,\n.reveal b, .reveal u, .reveal center,\n.reveal dl, .reveal dt, .reveal dd, .reveal ol, .reveal ul, .reveal li,\n.reveal fieldset, .reveal form, .reveal label, .reveal legend,\n.reveal table, .reveal caption, .reveal tbody, .reveal tfoot, .reveal thead, .reveal tr, .reveal th, .reveal td,\n.reveal article, .reveal aside, .reveal canvas, .reveal details, .reveal embed,\n.reveal figure, .reveal figcaption, .reveal footer, .reveal header, .reveal hgroup,\n.reveal menu, .reveal nav, .reveal output, .reveal ruby, .reveal section, .reveal summary,\n.reveal time, .reveal mark, .reveal audio, .reveal video {\n margin: 0;\n padding: 0;\n border: 0;\n font-size: 100%;\n font: inherit;\n vertical-align: baseline; }\n\n.reveal article, .reveal aside, .reveal details, .reveal figcaption, .reveal figure,\n.reveal footer, .reveal header, .reveal hgroup, .reveal menu, .reveal nav, .reveal section {\n display: block; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nhtml,\nbody {\n width: 100%;\n height: 100%;\n overflow: hidden; }\n\nbody {\n position: relative;\n line-height: 1;\n background-color: #fff;\n color: #000; }\n\n/*********************************************\n * VIEW FRAGMENTS\n *********************************************/\n.reveal .slides section .fragment {\n opacity: 0;\n visibility: hidden;\n transition: all .2s ease; }\n .reveal .slides section .fragment.visible {\n opacity: 1;\n visibility: inherit; }\n\n.reveal .slides section .fragment.grow {\n opacity: 1;\n visibility: inherit; }\n .reveal .slides section .fragment.grow.visible {\n -webkit-transform: scale(1.3);\n transform: scale(1.3); }\n\n.reveal .slides section .fragment.shrink {\n opacity: 1;\n visibility: inherit; }\n .reveal .slides section .fragment.shrink.visible {\n -webkit-transform: scale(0.7);\n transform: scale(0.7); }\n\n.reveal .slides section .fragment.zoom-in {\n -webkit-transform: scale(0.1);\n transform: scale(0.1); }\n .reveal .slides section .fragment.zoom-in.visible {\n -webkit-transform: none;\n transform: none; }\n\n.reveal .slides section .fragment.fade-out {\n opacity: 1;\n visibility: inherit; }\n .reveal .slides section .fragment.fade-out.visible {\n opacity: 0;\n visibility: hidden; }\n\n.reveal .slides section .fragment.semi-fade-out {\n opacity: 1;\n visibility: inherit; }\n .reveal .slides section .fragment.semi-fade-out.visible {\n opacity: 0.5;\n visibility: inherit; }\n\n.reveal .slides section .fragment.strike {\n opacity: 1;\n visibility: inherit; }\n .reveal .slides section .fragment.strike.visible {\n text-decoration: line-through; }\n\n.reveal .slides section .fragment.fade-up {\n -webkit-transform: translate(0, 20%);\n transform: translate(0, 20%); }\n .reveal .slides section .fragment.fade-up.visible {\n -webkit-transform: translate(0, 0);\n transform: translate(0, 0); }\n\n.reveal .slides section .fragment.fade-down {\n -webkit-transform: translate(0, -20%);\n transform: translate(0, -20%); }\n .reveal .slides section .fragment.fade-down.visible {\n -webkit-transform: translate(0, 0);\n transform: translate(0, 0); }\n\n.reveal .slides section .fragment.fade-right {\n -webkit-transform: translate(-20%, 0);\n transform: translate(-20%, 0); }\n .reveal .slides section .fragment.fade-right.visible {\n -webkit-transform: translate(0, 0);\n transform: translate(0, 0); }\n\n.reveal .slides section .fragment.fade-left {\n -webkit-transform: translate(20%, 0);\n transform: translate(20%, 0); }\n .reveal .slides section .fragment.fade-left.visible {\n -webkit-transform: translate(0, 0);\n transform: translate(0, 0); }\n\n.reveal .slides section .fragment.current-visible {\n opacity: 0;\n visibility: hidden; }\n .reveal .slides section .fragment.current-visible.current-fragment {\n opacity: 1;\n visibility: inherit; }\n\n.reveal .slides section .fragment.highlight-red,\n.reveal .slides section .fragment.highlight-current-red,\n.reveal .slides section .fragment.highlight-green,\n.reveal .slides section .fragment.highlight-current-green,\n.reveal .slides section .fragment.highlight-blue,\n.reveal .slides section .fragment.highlight-current-blue {\n opacity: 1;\n visibility: inherit; }\n\n.reveal .slides section .fragment.highlight-red.visible {\n color: #ff2c2d; }\n\n.reveal .slides section .fragment.highlight-green.visible {\n color: #17ff2e; }\n\n.reveal .slides section .fragment.highlight-blue.visible {\n color: #1b91ff; }\n\n.reveal .slides section .fragment.highlight-current-red.current-fragment {\n color: #ff2c2d; }\n\n.reveal .slides section .fragment.highlight-current-green.current-fragment {\n color: #17ff2e; }\n\n.reveal .slides section .fragment.highlight-current-blue.current-fragment {\n color: #1b91ff; }\n\n/*********************************************\n * DEFAULT ELEMENT STYLES\n *********************************************/\n/* Fixes issue in Chrome where italic fonts did not appear when printing to PDF */\n.reveal:after {\n content: '';\n font-style: italic; }\n\n.reveal iframe {\n z-index: 1; }\n\n/** Prevents layering issues in certain browser/transition combinations */\n.reveal a {\n position: relative; }\n\n.reveal .stretch {\n max-width: none;\n max-height: none; }\n\n.reveal pre.stretch code {\n height: 100%;\n max-height: 100%;\n box-sizing: border-box; }\n\n/*********************************************\n * CONTROLS\n *********************************************/\n@-webkit-keyframes bounce-right {\n 0%, 10%, 25%, 40%, 50% {\n -webkit-transform: translateX(0);\n transform: translateX(0); }\n 20% {\n -webkit-transform: translateX(10px);\n transform: translateX(10px); }\n 30% {\n -webkit-transform: translateX(-5px);\n transform: translateX(-5px); } }\n@keyframes bounce-right {\n 0%, 10%, 25%, 40%, 50% {\n -webkit-transform: translateX(0);\n transform: translateX(0); }\n 20% {\n -webkit-transform: translateX(10px);\n transform: translateX(10px); }\n 30% {\n -webkit-transform: translateX(-5px);\n transform: translateX(-5px); } }\n\n@-webkit-keyframes bounce-down {\n 0%, 10%, 25%, 40%, 50% {\n -webkit-transform: translateY(0);\n transform: translateY(0); }\n 20% {\n -webkit-transform: translateY(10px);\n transform: translateY(10px); }\n 30% {\n -webkit-transform: translateY(-5px);\n transform: translateY(-5px); } }\n\n@keyframes bounce-down {\n 0%, 10%, 25%, 40%, 50% {\n -webkit-transform: translateY(0);\n transform: translateY(0); }\n 20% {\n -webkit-transform: translateY(10px);\n transform: translateY(10px); }\n 30% {\n -webkit-transform: translateY(-5px);\n transform: translateY(-5px); } }\n\n.reveal .controls {\n display: none;\n position: absolute;\n top: auto;\n bottom: 12px;\n right: 12px;\n left: auto;\n z-index: 1;\n color: #000;\n pointer-events: none;\n font-size: 10px; }\n .reveal .controls button {\n position: absolute;\n padding: 0;\n background-color: transparent;\n border: 0;\n outline: 0;\n cursor: pointer;\n color: currentColor;\n -webkit-transform: scale(0.9999);\n transform: scale(0.9999);\n transition: color 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;\n transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;\n z-index: 2;\n pointer-events: auto;\n font-size: inherit;\n visibility: hidden;\n opacity: 0;\n -webkit-appearance: none;\n -webkit-tap-highlight-color: transparent; }\n .reveal .controls .controls-arrow:before,\n .reveal .controls .controls-arrow:after {\n content: '';\n position: absolute;\n top: 0;\n left: 0;\n width: 2.6em;\n height: 0.5em;\n border-radius: 0.25em;\n background-color: currentColor;\n transition: all 0.15s ease, background-color 0.8s ease;\n -webkit-transform-origin: 0.2em 50%;\n transform-origin: 0.2em 50%;\n will-change: transform; }\n .reveal .controls .controls-arrow {\n position: relative;\n width: 3.6em;\n height: 3.6em; }\n .reveal .controls .controls-arrow:before {\n -webkit-transform: translateX(0.5em) translateY(1.55em) rotate(45deg);\n transform: translateX(0.5em) translateY(1.55em) rotate(45deg); }\n .reveal .controls .controls-arrow:after {\n -webkit-transform: translateX(0.5em) translateY(1.55em) rotate(-45deg);\n transform: translateX(0.5em) translateY(1.55em) rotate(-45deg); }\n .reveal .controls .controls-arrow:hover:before {\n -webkit-transform: translateX(0.5em) translateY(1.55em) rotate(40deg);\n transform: translateX(0.5em) translateY(1.55em) rotate(40deg); }\n .reveal .controls .controls-arrow:hover:after {\n -webkit-transform: translateX(0.5em) translateY(1.55em) rotate(-40deg);\n transform: translateX(0.5em) translateY(1.55em) rotate(-40deg); }\n .reveal .controls .controls-arrow:active:before {\n -webkit-transform: translateX(0.5em) translateY(1.55em) rotate(36deg);\n transform: translateX(0.5em) translateY(1.55em) rotate(36deg); }\n .reveal .controls .controls-arrow:active:after {\n -webkit-transform: translateX(0.5em) translateY(1.55em) rotate(-36deg);\n transform: translateX(0.5em) translateY(1.55em) rotate(-36deg); }\n .reveal .controls .navigate-left {\n right: 6.4em;\n bottom: 3.2em;\n -webkit-transform: translateX(-10px);\n transform: translateX(-10px); }\n .reveal .controls .navigate-right {\n right: 0;\n bottom: 3.2em;\n -webkit-transform: translateX(10px);\n transform: translateX(10px); }\n .reveal .controls .navigate-right .controls-arrow {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg); }\n .reveal .controls .navigate-right.highlight {\n -webkit-animation: bounce-right 2s 50 both ease-out;\n animation: bounce-right 2s 50 both ease-out; }\n .reveal .controls .navigate-up {\n right: 3.2em;\n bottom: 6.4em;\n -webkit-transform: translateY(-10px);\n transform: translateY(-10px); }\n .reveal .controls .navigate-up .controls-arrow {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg); }\n .reveal .controls .navigate-down {\n right: 3.2em;\n bottom: 0;\n -webkit-transform: translateY(10px);\n transform: translateY(10px); }\n .reveal .controls .navigate-down .controls-arrow {\n -webkit-transform: rotate(-90deg);\n transform: rotate(-90deg); }\n .reveal .controls .navigate-down.highlight {\n -webkit-animation: bounce-down 2s 50 both ease-out;\n animation: bounce-down 2s 50 both ease-out; }\n .reveal .controls[data-controls-back-arrows=\"faded\"] .navigate-left.enabled,\n .reveal .controls[data-controls-back-arrows=\"faded\"] .navigate-up.enabled {\n opacity: 0.3; }\n .reveal .controls[data-controls-back-arrows=\"faded\"] .navigate-left.enabled:hover,\n .reveal .controls[data-controls-back-arrows=\"faded\"] .navigate-up.enabled:hover {\n opacity: 1; }\n .reveal .controls[data-controls-back-arrows=\"hidden\"] .navigate-left.enabled,\n .reveal .controls[data-controls-back-arrows=\"hidden\"] .navigate-up.enabled {\n opacity: 0;\n visibility: hidden; }\n .reveal .controls .enabled {\n visibility: visible;\n opacity: 0.9;\n cursor: pointer;\n -webkit-transform: none;\n transform: none; }\n .reveal .controls .enabled.fragmented {\n opacity: 0.5; }\n .reveal .controls .enabled:hover,\n .reveal .controls .enabled.fragmented:hover {\n opacity: 1; }\n\n.reveal:not(.has-vertical-slides) .controls .navigate-left {\n bottom: 1.4em;\n right: 5.5em; }\n\n.reveal:not(.has-vertical-slides) .controls .navigate-right {\n bottom: 1.4em;\n right: 0.5em; }\n\n.reveal:not(.has-horizontal-slides) .controls .navigate-up {\n right: 1.4em;\n bottom: 5em; }\n\n.reveal:not(.has-horizontal-slides) .controls .navigate-down {\n right: 1.4em;\n bottom: 0.5em; }\n\n.reveal.has-dark-background .controls {\n color: #fff; }\n\n.reveal.has-light-background .controls {\n color: #000; }\n\n.reveal.no-hover .controls .controls-arrow:hover:before,\n.reveal.no-hover .controls .controls-arrow:active:before {\n -webkit-transform: translateX(0.5em) translateY(1.55em) rotate(45deg);\n transform: translateX(0.5em) translateY(1.55em) rotate(45deg); }\n\n.reveal.no-hover .controls .controls-arrow:hover:after,\n.reveal.no-hover .controls .controls-arrow:active:after {\n -webkit-transform: translateX(0.5em) translateY(1.55em) rotate(-45deg);\n transform: translateX(0.5em) translateY(1.55em) rotate(-45deg); }\n\n@media screen and (min-width: 500px) {\n .reveal .controls[data-controls-layout=\"edges\"] {\n top: 0;\n right: 0;\n bottom: 0;\n left: 0; }\n .reveal .controls[data-controls-layout=\"edges\"] .navigate-left,\n .reveal .controls[data-controls-layout=\"edges\"] .navigate-right,\n .reveal .controls[data-controls-layout=\"edges\"] .navigate-up,\n .reveal .controls[data-controls-layout=\"edges\"] .navigate-down {\n bottom: auto;\n right: auto; }\n .reveal .controls[data-controls-layout=\"edges\"] .navigate-left {\n top: 50%;\n left: 8px;\n margin-top: -1.8em; }\n .reveal .controls[data-controls-layout=\"edges\"] .navigate-right {\n top: 50%;\n right: 8px;\n margin-top: -1.8em; }\n .reveal .controls[data-controls-layout=\"edges\"] .navigate-up {\n top: 8px;\n left: 50%;\n margin-left: -1.8em; }\n .reveal .controls[data-controls-layout=\"edges\"] .navigate-down {\n bottom: 8px;\n left: 50%;\n margin-left: -1.8em; } }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n position: absolute;\n display: none;\n height: 3px;\n width: 100%;\n bottom: 0;\n left: 0;\n z-index: 10;\n background-color: rgba(0, 0, 0, 0.2);\n color: #fff; }\n\n.reveal .progress:after {\n content: '';\n display: block;\n position: absolute;\n height: 10px;\n width: 100%;\n top: -10px; }\n\n.reveal .progress span {\n display: block;\n height: 100%;\n width: 0px;\n background-color: currentColor;\n transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n\n/*********************************************\n * SLIDE NUMBER\n *********************************************/\n.reveal .slide-number {\n position: fixed;\n display: block;\n right: 8px;\n bottom: 8px;\n z-index: 31;\n font-family: Helvetica, sans-serif;\n font-size: 12px;\n line-height: 1;\n color: #fff;\n background-color: rgba(0, 0, 0, 0.4);\n padding: 5px; }\n\n.reveal .slide-number-delimiter {\n margin: 0 3px; }\n\n/*********************************************\n * SLIDES\n *********************************************/\n.reveal {\n position: relative;\n width: 100%;\n height: 100%;\n overflow: hidden;\n -ms-touch-action: none;\n touch-action: none; }\n\n@media only screen and (orientation: landscape) {\n .reveal.ua-iphone {\n position: fixed; } }\n\n.reveal .slides {\n position: absolute;\n width: 100%;\n height: 100%;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n margin: auto;\n pointer-events: none;\n overflow: visible;\n z-index: 1;\n text-align: center;\n -webkit-perspective: 600px;\n perspective: 600px;\n -webkit-perspective-origin: 50% 40%;\n perspective-origin: 50% 40%; }\n\n.reveal .slides > section {\n -ms-perspective: 600px; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n display: none;\n position: absolute;\n width: 100%;\n padding: 20px 0px;\n pointer-events: auto;\n z-index: 10;\n -webkit-transform-style: flat;\n transform-style: flat;\n transition: -webkit-transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), -webkit-transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n transition: transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n\n/* Global transition speed settings */\n.reveal[data-transition-speed=\"fast\"] .slides section {\n transition-duration: 400ms; }\n\n.reveal[data-transition-speed=\"slow\"] .slides section {\n transition-duration: 1200ms; }\n\n/* Slide-specific transition speed overrides */\n.reveal .slides section[data-transition-speed=\"fast\"] {\n transition-duration: 400ms; }\n\n.reveal .slides section[data-transition-speed=\"slow\"] {\n transition-duration: 1200ms; }\n\n.reveal .slides > section.stack {\n padding-top: 0;\n padding-bottom: 0; }\n\n.reveal .slides > section.present,\n.reveal .slides > section > section.present {\n display: block;\n z-index: 11;\n opacity: 1; }\n\n.reveal .slides > section:empty,\n.reveal .slides > section > section:empty,\n.reveal .slides > section[data-background-interactive],\n.reveal .slides > section > section[data-background-interactive] {\n pointer-events: none; }\n\n.reveal.center,\n.reveal.center .slides,\n.reveal.center .slides section {\n min-height: 0 !", "important; }\n\n/* Don't allow interaction with invisible slides */\n.reveal .slides > section.future,\n.reveal .slides > section > section.future,\n.reveal .slides > section.past,\n.reveal .slides > section > section.past {\n pointer-events: none; }\n\n.reveal.overview .slides > section,\n.reveal.overview .slides > section > section {\n pointer-events: auto; }\n\n.reveal .slides > section.past,\n.reveal .slides > section.future,\n.reveal .slides > section > section.past,\n.reveal .slides > section > section.future {\n opacity: 0; }\n\n/*********************************************\n * Mixins for readability of transitions\n *********************************************/\n/*********************************************\n * SLIDE TRANSITION\n * Aliased 'linear' for backwards compatibility\n *********************************************/\n.reveal.slide section {\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden; }\n\n.reveal .slides > section[data-transition=slide].past,\n.reveal .slides > section[data-transition~=slide-out].past,\n.reveal.slide .slides > section:not([data-transition]).past {\n -webkit-transform: translate(-150%, 0);\n transform: translate(-150%, 0); }\n\n.reveal .slides > section[data-transition=slide].future,\n.reveal .slides > section[data-transition~=slide-in].future,\n.reveal.slide .slides > section:not([data-transition]).future {\n -webkit-transform: translate(150%, 0);\n transform: translate(150%, 0); }\n\n.reveal .slides > section > section[data-transition=slide].past,\n.reveal .slides > section > section[data-transition~=slide-out].past,\n.reveal.slide .slides > section > section:not([data-transition]).past {\n -webkit-transform: translate(0, -150%);\n transform: translate(0, -150%); }\n\n.reveal .slides > section > section[data-transition=slide].future,\n.reveal .slides > section > section[data-transition~=slide-in].future,\n.reveal.slide .slides > section > section:not([data-transition]).future {\n -webkit-transform: translate(0, 150%);\n transform: translate(0, 150%); }\n\n.reveal.linear section {\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden; }\n\n.reveal .slides > section[data-transition=linear].past,\n.reveal .slides > section[data-transition~=linear-out].past,\n.reveal.linear .slides > section:not([data-transition]).past {\n -webkit-transform: translate(-150%, 0);\n transform: translate(-150%, 0); }\n\n.reveal .slides > section[data-transition=linear].future,\n.reveal .slides > section[data-transition~=linear-in].future,\n.reveal.linear .slides > section:not([data-transition]).future {\n -webkit-transform: translate(150%, 0);\n transform: translate(150%, 0); }\n\n.reveal .slides > section > section[data-transition=linear].past,\n.reveal .slides > section > section[data-transition~=linear-out].past,\n.reveal.linear .slides > section > section:not([data-transition]).past {\n -webkit-transform: translate(0, -150%);\n transform: translate(0, -150%); }\n\n.reveal .slides > section > section[data-transition=linear].future,\n.reveal .slides > section > section[data-transition~=linear-in].future,\n.reveal.linear .slides > section > section:not([data-transition]).future {\n -webkit-transform: translate(0, 150%);\n transform: translate(0, 150%); }\n\n/*********************************************\n * CONVEX TRANSITION\n * Aliased 'default' for backwards compatibility\n *********************************************/\n.reveal .slides section[data-transition=default].stack,\n.reveal.default .slides section.stack {\n -webkit-transform-style: preserve-3d;\n transform-style: preserve-3d; }\n\n.reveal .slides > section[data-transition=default].past,\n.reveal .slides > section[data-transition~=default-out].past,\n.reveal.default .slides > section:not([data-transition]).past {\n -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);\n transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); }\n\n.reveal .slides > section[data-transition=default].future,\n.reveal .slides > section[data-transition~=default-in].future,\n.reveal.default .slides > section:not([data-transition]).future {\n -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);\n transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); }\n\n.reveal .slides > section > section[data-transition=default].past,\n.reveal .slides > section > section[data-transition~=default-out].past,\n.reveal.default .slides > section > section:not([data-transition]).past {\n -webkit-transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0);\n transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0); }\n\n.reveal .slides > section > section[data-transition=default].future,\n.reveal .slides > section > section[data-transition~=default-in].future,\n.reveal.default .slides > section > section:not([data-transition]).future {\n -webkit-transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0);\n transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0); }\n\n.reveal .slides section[data-transition=convex].stack,\n.reveal.convex .slides section.stack {\n -webkit-transform-style: preserve-3d;\n transform-style: preserve-3d; }\n\n.reveal .slides > section[data-transition=convex].past,\n.reveal .slides > section[data-transition~=convex-out].past,\n.reveal.convex .slides > section:not([data-transition]).past {\n -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);\n transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); }\n\n.reveal .slides > section[data-transition=convex].future,\n.reveal .slides > section[data-transition~=convex-in].future,\n.reveal.convex .slides > section:not([data-transition]).future {\n -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);\n transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); }\n\n.reveal .slides > section > section[data-transition=convex].past,\n.reveal .slides > section > section[data-transition~=convex-out].past,\n.reveal.convex .slides > section > section:not([data-transition]).past {\n -webkit-transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0);\n transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0); }\n\n.reveal .slides > section > section[data-transition=convex].future,\n.reveal .slides > section > section[data-transition~=convex-in].future,\n.reveal.convex .slides > section > section:not([data-transition]).future {\n -webkit-transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0);\n transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0); }\n\n/*********************************************\n * CONCAVE TRANSITION\n *********************************************/\n.reveal .slides section[data-transition=concave].stack,\n.reveal.concave .slides section.stack {\n -webkit-transform-style: preserve-3d;\n transform-style: preserve-3d; }\n\n.reveal .slides > section[data-transition=concave].past,\n.reveal .slides > section[data-transition~=concave-out].past,\n.reveal.concave .slides > section:not([data-transition]).past {\n -webkit-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);\n transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); }\n\n.reveal .slides > section[data-transition=concave].future,\n.reveal .slides > section[data-transition~=concave-in].future,\n.reveal.concave .slides > section:not([data-transition]).future {\n -webkit-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);\n transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); }\n\n.reveal .slides > section > section[data-transition=concave].past,\n.reveal .slides > section > section[data-transition~=concave-out].past,\n.reveal.concave .slides > section > section:not([data-transition]).past {\n -webkit-transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0);\n transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0); }\n\n.reveal .slides > section > section[data-transition=concave].future,\n.reveal .slides > section > section[data-transition~=concave-in].future,\n.reveal.concave .slides > section > section:not([data-transition]).future {\n -webkit-transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0);\n transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0); }\n\n/*********************************************\n * ZOOM TRANSITION\n *********************************************/\n.reveal .slides section[data-transition=zoom],\n.reveal.zoom .slides section:not([data-transition]) {\n transition-timing-function: ease; }\n\n.reveal .slides > section[data-transition=zoom].past,\n.reveal .slides > section[data-transition~=zoom-out].past,\n.reveal.zoom .slides > section:not([data-transition]).past {\n visibility: hidden;\n -webkit-transform: scale(16);\n transform: scale(16); }\n\n.reveal .slides > section[data-transition=zoom].future,\n.reveal .slides > section[data-transition~=zoom-in].future,\n.reveal.zoom .slides > section:not([data-transition]).future {\n visibility: hidden;\n -webkit-transform: scale(0.2);\n transform: scale(0.2); }\n\n.reveal .slides > section > section[data-transition=zoom].past,\n.reveal .slides > section > section[data-transition~=zoom-out].past,\n.reveal.zoom .slides > section > section:not([data-transition]).past {\n -webkit-transform: translate(0, -150%);\n transform: translate(0, -150%); }\n\n.reveal .slides > section > section[data-transition=zoom].future,\n.reveal .slides > section > section[data-transition~=zoom-in].future,\n.reveal.zoom .slides > section > section:not([data-transition]).future {\n -webkit-transform: translate(0, 150%);\n transform: translate(0, 150%); }\n\n/*********************************************\n * CUBE TRANSITION\n *\n * WARNING:\n * this is deprecated and will be removed in a\n * future version.", "\n *********************************************/\n.reveal.cube .slides {\n -webkit-perspective: 1300px;\n perspective: 1300px; }\n\n.reveal.cube .slides section {\n padding: 30px;\n min-height: 700px;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n box-sizing: border-box;\n -webkit-transform-style: preserve-3d;\n transform-style: preserve-3d; }\n\n.reveal.center.cube .slides section {\n min-height: 0; }\n\n.reveal.cube .slides section:not(.stack):before {\n content: '';\n position: absolute;\n display: block;\n width: 100%;\n height: 100%;\n left: 0;\n top: 0;\n background: rgba(0, 0, 0, 0.1);\n border-radius: 4px;\n -webkit-transform: translateZ(-20px);\n transform: translateZ(-20px); }\n\n.reveal.cube .slides section:not(.stack):after {\n content: '';\n position: absolute;\n display: block;\n width: 90%;\n height: 30px;\n left: 5%;\n bottom: 0;\n background: none;\n z-index: 1;\n border-radius: 4px;\n box-shadow: 0px 95px 25px rgba(0, 0, 0, 0.2);\n -webkit-transform: translateZ(-90px) rotateX(65deg);\n transform: translateZ(-90px) rotateX(65deg); }\n\n.reveal.cube .slides > section.stack {\n padding: 0;\n background: none; }\n\n.reveal.cube .slides > section.past {\n -webkit-transform-origin: 100% 0%;\n transform-origin: 100% 0%;\n -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg);\n transform: translate3d(-100%, 0, 0) rotateY(-90deg); }\n\n.reveal.cube .slides > section.future {\n -webkit-transform-origin: 0% 0%;\n transform-origin: 0% 0%;\n -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg);\n transform: translate3d(100%, 0, 0) rotateY(90deg); }\n\n.reveal.cube .slides > section > section.past {\n -webkit-transform-origin: 0% 100%;\n transform-origin: 0% 100%;\n -webkit-transform: translate3d(0, -100%, 0) rotateX(90deg);\n transform: translate3d(0, -100%, 0) rotateX(90deg); }\n\n.reveal.cube .slides > section > section.future {\n -webkit-transform-origin: 0% 0%;\n transform-origin: 0% 0%;\n -webkit-transform: translate3d(0, 100%, 0) rotateX(-90deg);\n transform: translate3d(0, 100%, 0) rotateX(-90deg); }\n\n/*********************************************\n * PAGE TRANSITION\n *\n * WARNING:\n * this is deprecated and will be removed in a\n * future version.", "\n *********************************************/\n.reveal.page .slides {\n -webkit-perspective-origin: 0% 50%;\n perspective-origin: 0% 50%;\n -webkit-perspective: 3000px;\n perspective: 3000px; }\n\n.reveal.page .slides section {\n padding: 30px;\n min-height: 700px;\n box-sizing: border-box;\n -webkit-transform-style: preserve-3d;\n transform-style: preserve-3d; }\n\n.reveal.page .slides section.past {\n z-index: 12; }\n\n.reveal.page .slides section:not(.stack):before {\n content: '';\n position: absolute;\n display: block;\n width: 100%;\n height: 100%;\n left: 0;\n top: 0;\n background: rgba(0, 0, 0, 0.1);\n -webkit-transform: translateZ(-20px);\n transform: translateZ(-20px); }\n\n.reveal.page .slides section:not(.stack):after {\n content: '';\n position: absolute;\n display: block;\n width: 90%;\n height: 30px;\n left: 5%;\n bottom: 0;\n background: none;\n z-index: 1;\n border-radius: 4px;\n box-shadow: 0px 95px 25px rgba(0, 0, 0, 0.2);\n -webkit-transform: translateZ(-90px) rotateX(65deg); }\n\n.reveal.page .slides > section.stack {\n padding: 0;\n background: none; }\n\n.reveal.page .slides > section.past {\n -webkit-transform-origin: 0% 0%;\n transform-origin: 0% 0%;\n -webkit-transform: translate3d(-40%, 0, 0) rotateY(-80deg);\n transform: translate3d(-40%, 0, 0) rotateY(-80deg); }\n\n.reveal.page .slides > section.future {\n -webkit-transform-origin: 100% 0%;\n transform-origin: 100% 0%;\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0); }\n\n.reveal.page .slides > section > section.past {\n -webkit-transform-origin: 0% 0%;\n transform-origin: 0% 0%;\n -webkit-transform: translate3d(0, -40%, 0) rotateX(80deg);\n transform: translate3d(0, -40%, 0) rotateX(80deg); }\n\n.reveal.page .slides > section > section.future {\n -webkit-transform-origin: 0% 100%;\n transform-origin: 0% 100%;\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0); }\n\n/*********************************************\n * FADE TRANSITION\n *********************************************/\n.reveal .slides section[data-transition=fade],\n.reveal.fade .slides section:not([data-transition]),\n.reveal.fade .slides > section > section:not([data-transition]) {\n -webkit-transform: none;\n transform: none;\n transition: opacity 0.5s; }\n\n.reveal.fade.overview .slides section,\n.reveal.fade.overview .slides > section > section {\n transition: none; }\n\n/*********************************************\n * NO TRANSITION\n *********************************************/\n.reveal .slides section[data-transition=none],\n.reveal.none .slides section:not([data-transition]) {\n -webkit-transform: none;\n transform: none;\n transition: none; }\n\n/*********************************************\n * PAUSED MODE\n *********************************************/\n.reveal .pause-overlay {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n background: black;\n visibility: hidden;\n opacity: 0;\n z-index: 100;\n transition: all 1s ease; }\n\n.reveal.paused .pause-overlay {\n visibility: visible;\n opacity: 1; }\n\n/*********************************************\n * FALLBACK\n *********************************************/\n.no-transforms {\n overflow-y: auto; }\n\n.no-transforms .reveal .slides {\n position: relative;\n width: 80%;\n height: auto !", "important;\n top: 0;\n left: 50%;\n margin: 0;\n text-align: center; }\n\n.no-transforms .reveal .controls,\n.no-transforms .reveal .progress {\n display: none !", "important; }\n\n.no-transforms .reveal .slides section {\n display: block !", "important;\n opacity: 1 !", "important;\n position: relative !", "important;\n height: auto;\n min-height: 0;\n top: 0;\n left: -50%;\n margin: 70px 0;\n -webkit-transform: none;\n transform: none; }\n\n.no-transforms .reveal .slides section section {\n left: 0; }\n\n.reveal .no-transition,\n.reveal .no-transition * {\n transition: none !", "important; }\n\n/*********************************************\n * PER-SLIDE BACKGROUNDS\n *********************************************/\n.reveal .backgrounds {\n position: absolute;\n width: 100%;\n height: 100%;\n top: 0;\n left: 0;\n -webkit-perspective: 600px;\n perspective: 600px; }\n\n.reveal .slide-background {\n display: none;\n position: absolute;\n width: 100%;\n height: 100%;\n opacity: 0;\n visibility: hidden;\n overflow: hidden;\n background-color: transparent;\n background-position: 50% 50%;\n background-repeat: no-repeat;\n background-size: cover;\n transition: all 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n\n.reveal .slide-background.stack {\n display: block; }\n\n.reveal .slide-background.present {\n opacity: 1;\n visibility: visible;\n z-index: 2; }\n\n.print-pdf .reveal .slide-background {\n opacity: 1 !", "important;\n visibility: visible !", "important; }\n\n/* Video backgrounds */\n.reveal .slide-background video {\n position: absolute;\n width: 100%;\n height: 100%;\n max-width: none;\n max-height: none;\n top: 0;\n left: 0;\n -o-object-fit: cover;\n object-fit: cover; }\n\n.reveal .slide-background[data-background-size=\"contain\"] video {\n -o-object-fit: contain;\n object-fit: contain; }\n\n/* Immediate transition style */\n.reveal[data-background-transition=none] > .backgrounds .slide-background,\n.reveal > .backgrounds .slide-background[data-background-transition=none] {\n transition: none; }\n\n/* Slide */\n.reveal[data-background-transition=slide] > .backgrounds .slide-background,\n.reveal > .backgrounds .slide-background[data-background-transition=slide] {\n opacity: 1;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden; }\n\n.reveal[data-background-transition=slide] > .backgrounds .slide-background.past,\n.reveal > .backgrounds .slide-background.past[data-background-transition=slide] {\n -webkit-transform: translate(-100%, 0);\n transform: translate(-100%, 0); }\n\n.reveal[data-background-transition=slide] > .backgrounds .slide-background.future,\n.reveal > .backgrounds .slide-background.future[data-background-transition=slide] {\n -webkit-transform: translate(100%, 0);\n transform: translate(100%, 0); }\n\n.reveal[data-background-transition=slide] > .backgrounds .slide-background > .slide-background.past,\n.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=slide] {\n -webkit-transform: translate(0, -100%);\n transform: translate(0, -100%); }\n\n.reveal[data-background-transition=slide] > .backgrounds .slide-background > .slide-background.future,\n.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=slide] {\n -webkit-transform: translate(0, 100%);\n transform: translate(0, 100%); }\n\n/* Convex */\n.reveal[data-background-transition=convex] > .backgrounds .slide-background.past,\n.reveal > .backgrounds .slide-background.past[data-background-transition=convex] {\n opacity: 0;\n -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);\n transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); }\n\n.reveal[data-background-transition=convex] > .backgrounds .slide-background.future,\n.reveal > .backgrounds .slide-background.future[data-background-transition=convex] {\n opacity: 0;\n -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);\n transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); }\n\n.reveal[data-background-transition=convex] > .backgrounds .slide-background > .slide-background.past,\n.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=convex] {\n opacity: 0;\n -webkit-transform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0);\n transform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0); }\n\n.reveal[data-background-transition=convex] > .backgrounds .slide-background > .slide-background.future,\n.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=convex] {\n opacity: 0;\n -webkit-transform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0);\n transform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0); }\n\n/* Concave */\n.reveal[data-background-transition=concave] > .backgrounds .slide-background.past,\n.reveal > .backgrounds .slide-background.past[data-background-transition=concave] {\n opacity: 0;\n -webkit-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);\n transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); }\n\n.reveal[data-background-transition=concave] > .backgrounds .slide-background.future,\n.reveal > .backgrounds .slide-background.future[data-background-transition=concave] {\n opacity: 0;\n -webkit-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);\n transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); }\n\n.reveal[data-background-transition=concave] > .backgrounds .slide-background > .slide-background.past,\n.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=concave] {\n opacity: 0;\n -webkit-transform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0);\n transform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0); }\n\n.reveal[data-background-transition=concave] > .backgrounds .slide-background > .slide-background.future,\n.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=concave] {\n opacity: 0;\n -webkit-transform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0);\n transform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0); }\n\n/* Zoom */\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background,\n.reveal > .backgrounds .slide-background[data-background-transition=zoom] {\n transition-timing-function: ease; }\n\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background.past,\n.reveal > .backgrounds .slide-background.past[data-background-transition=zoom] {\n opacity: 0;\n visibility: hidden;\n -webkit-transform: scale(16);\n transform: scale(16); }\n\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background.future,\n.reveal > .backgrounds .slide-background.future[data-background-transition=zoom] {\n opacity: 0;\n visibility: hidden;\n -webkit-transform: scale(0.2);\n transform: scale(0.2); }\n\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background > .slide-background.past,\n.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=zoom] {\n opacity: 0;\n visibility: hidden;\n -webkit-transform: scale(16);\n transform: scale(16); }\n\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background > .slide-background.future,\n.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=zoom] {\n opacity: 0;\n visibility: hidden;\n -webkit-transform: scale(0.2);\n transform: scale(0.2); }\n\n/* Global transition speed settings */\n.reveal[data-transition-speed=\"fast\"] > .backgrounds .slide-background {\n transition-duration: 400ms; }\n\n.reveal[data-transition-speed=\"slow\"] > .backgrounds .slide-background {\n transition-duration: 1200ms; }\n\n/*********************************************\n * OVERVIEW\n *********************************************/\n.reveal.overview {\n -webkit-perspective-origin: 50% 50%;\n perspective-origin: 50% 50%;\n -webkit-perspective: 700px;\n perspective: 700px; }\n .reveal.overview .slides {\n -moz-transform-style: preserve-3d; }\n .reveal.overview .slides section {\n height: 100%;\n top: 0 !", "important;\n opacity: 1 !", "important;\n overflow: hidden;\n visibility: visible !", "important;\n cursor: pointer;\n box-sizing: border-box; }\n .reveal.overview .slides section:hover,\n .reveal.overview .slides section.present {\n outline: 10px solid rgba(150, 150, 150, 0.4);\n outline-offset: 10px; }\n .reveal.overview .slides section .fragment {\n opacity: 1;\n transition: none; }\n .reveal.overview .slides section:after,\n .reveal.overview .slides section:before {\n display: none !", "important; }\n .reveal.overview .slides > section.stack {\n padding: 0;\n top: 0 !", "important;\n background: none;\n outline: none;\n overflow: visible; }\n .reveal.overview .backgrounds {\n -webkit-perspective: inherit;\n perspective: inherit;\n -moz-transform-style: preserve-3d; }\n .reveal.overview .backgrounds .slide-background {\n opacity: 1;\n visibility: visible;\n outline: 10px solid rgba(150, 150, 150, 0.1);\n outline-offset: 10px; }\n .reveal.overview .backgrounds .slide-background.stack {\n overflow: visible; }\n\n.reveal.overview .slides section,\n.reveal.overview-deactivating .slides section {\n transition: none; }\n\n.reveal.overview .backgrounds .slide-background,\n.reveal.overview-deactivating .backgrounds .slide-background {\n transition: none; }\n\n/*********************************************\n * RTL SUPPORT\n *********************************************/\n.reveal.rtl .slides,\n.reveal.rtl .slides h1,\n.reveal.rtl .slides h2,\n.reveal.rtl .slides h3,\n.reveal.rtl .slides h4,\n.reveal.rtl .slides h5,\n.reveal.rtl .slides h6 {\n direction: rtl;\n font-family: sans-serif; }\n\n.reveal.rtl pre,\n.reveal.rtl code {\n direction: ltr; }\n\n.reveal.rtl ol,\n.reveal.rtl ul {\n text-align: right; }\n\n.reveal.rtl .progress span {\n float: right; }\n\n/*********************************************\n * PARALLAX BACKGROUND\n *********************************************/\n.reveal.has-parallax-background .backgrounds {\n transition: all 0.8s ease; }\n\n/* Global transition speed settings */\n.reveal.has-parallax-background[data-transition-speed=\"fast\"] .backgrounds {\n transition-duration: 400ms; }\n\n.reveal.has-parallax-background[data-transition-speed=\"slow\"] .backgrounds {\n transition-duration: 1200ms; }\n\n/*********************************************\n * LINK PREVIEW OVERLAY\n *********************************************/\n.reveal .overlay {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n z-index: 1000;\n background: rgba(0, 0, 0, 0.9);\n opacity: 0;\n visibility: hidden;\n transition: all 0.3s ease; }\n\n.reveal .overlay.visible {\n opacity: 1;\n visibility: visible; }\n\n.reveal .overlay .spinner {\n position: absolute;\n display: block;\n top: 50%;\n left: 50%;\n width: 32px;\n height: 32px;\n margin: -16px 0 0 -16px;\n z-index: 10;\n background-image: url(data:image/gif;base64,R0lGODlhIAAgAPMAAJmZmf%2F%2F%2F6%2Bvr8nJybW1tcDAwOjo6Nvb26ioqKOjo7Ozs%2FLy8vz8%2FAAAAAAAAAAAACH%2FC05FVFNDQVBFMi4wAwEAAAAh%2FhpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh%2BQQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ%2FV%2FnmOM82XiHRLYKhKP1oZmADdEAAAh%2BQQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY%2FCZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB%2BA4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6%2BHo7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq%2BB6QDtuetcaBPnW6%2BO7wDHpIiK9SaVK5GgV543tzjgGcghAgAh%2BQQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK%2B%2BG%2Bw48edZPK%2BM6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE%2BG%2BcD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm%2BFNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk%2BaV%2BoJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0%2FVNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc%2BXiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30%2FiI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE%2FjiuL04RGEBgwWhShRgQExHBAAh%2BQQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR%2BipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY%2BYip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd%2BMFCN6HAAIKgNggY0KtEBAAh%2BQQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1%2BvsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d%2BjYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg%2BygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0%2Bbm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h%2BKr0SJ8MFihpNbx%2B4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX%2BBP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA%3D%3D);\n visibility: visible;\n opacity: 0.6;\n transition: all 0.3s ease; }\n\n.reveal .overlay header {\n position: absolute;\n left: 0;\n top: 0;\n width: 100%;\n height: 40px;\n z-index: 2;\n border-bottom: 1px solid #222; }\n\n.reveal .overlay header a {\n display: inline-block;\n width: 40px;\n height: 40px;\n line-height: 36px;\n padding: 0 10px;\n float: right;\n opacity: 0.6;\n box-sizing: border-box; }\n\n.reveal .overlay header a:hover {\n opacity: 1; }\n\n.reveal .overlay header a .icon {\n display: inline-block;\n width: 20px;\n height: 20px;\n background-position: 50% 50%;\n background-size: 100%;\n background-repeat: no-repeat; }\n\n.reveal .overlay header a.close .icon {\n background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABkklEQVRYR8WX4VHDMAxG6wnoJrABZQPYBCaBTWAD2g1gE5gg6OOsXuxIlr40d81dfrSJ9V4c2VLK7spHuTJ/5wpM07QXuXc5X0opX2tEJcadjHuV80li/FgxTIEK/5QBCICBD6xEhSMGHgQPgBgLiYVAB1dpSqKDawxTohFw4JSEA3clzgIBPCURwE2JucBR7rhPJJv5OpJwDX+SfDjgx1wACQeJG1aChP9K/IMmdZ8DtESV1WyP3Bt4MwM6sj4NMxMYiqUWHQu4KYA/SYkIjOsm3BXYWMKFDwU2khjCQ4ELJUJ4SmClRArOCmSXGuKma0fYD5CbzHxFpCSGAhfAVSSUGDUk2BWZaff2g6GE15BsBQ9nwmpIGDiyHQddwNTMKkbZaf9fajXQca1EX44puJZUsnY0ObGmITE3GVLCbEhQUjGVt146j6oasWN+49Vph2w1pZ5EansNZqKBm1txbU57iRRcZ86RWMDdWtBJUHBHwoQPi1GV+JCbntmvok7iTX4/Up9mgyTc/FJYDTcndgH/AA5A/CHsyEkVAAAAAElFTkSuQmCC); }\n\n.reveal .overlay header a.external .icon {\n background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAcElEQVRYR+2WSQoAIQwEzf8f7XiOMkUQxUPlGkM3hVmiQfQR9GYnH1SsAQlI4DiBqkCMoNb9y2e90IAEJPAcgdznU9+engMaeJ7Azh5Y1U67gAho4DqBqmB1buAf0MB1AlVBek83ZPkmJMGc1wAR+AAqod/B97TRpQAAAABJRU5ErkJggg==); }\n\n.reveal .overlay .viewport {\n position: absolute;\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n top: 40px;\n right: 0;\n bottom: 0;\n left: 0; }\n\n.reveal .overlay.overlay-preview .viewport iframe {\n width: 100%;\n height: 100%;\n max-width: 100%;\n max-height: 100%;\n border: 0;\n opacity: 0;\n visibility: hidden;\n transition: all 0.3s ease; }\n\n.reveal .overlay.overlay-preview.loaded .viewport iframe {\n opacity: 1;\n visibility: visible; }\n\n.reveal .overlay.overlay-preview.loaded .viewport-inner {\n position: absolute;\n z-index: -1;\n left: 0;\n top: 45%;\n width: 100%;\n text-align: center;\n letter-spacing: normal; }\n\n.reveal .overlay.overlay-preview .x-frame-error {\n opacity: 0;\n transition: opacity 0.3s ease 0.3s; }\n\n.reveal .overlay.overlay-preview.loaded .x-frame-error {\n opacity: 1; }\n\n.reveal .overlay.overlay-preview.loaded .spinner {\n opacity: 0;\n visibility: hidden;\n -webkit-transform: scale(0.2);\n transform: scale(0.2); }\n\n.reveal .overlay.overlay-help .viewport {\n overflow: auto;\n color: #fff; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner {\n width: 600px;\n margin: auto;\n padding: 20px 20px 80px 20px;\n text-align: center;\n letter-spacing: normal; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner .title {\n font-size: 20px; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner table {\n border: 1px solid #fff;\n border-collapse: collapse;\n font-size: 16px; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner table th,\n.reveal .overlay.overlay-help .viewport .viewport-inner table td {\n width: 200px;\n padding: 14px;\n border: 1px solid #fff;\n vertical-align: middle; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner table th {\n padding-top: 20px;\n padding-bottom: 20px; }\n\n/*********************************************\n * PLAYBACK COMPONENT\n *********************************************/\n.reveal .playback {\n position: absolute;\n left: 15px;\n bottom: 20px;\n z-index: 30;\n cursor: pointer;\n transition: all 400ms ease;\n -webkit-tap-highlight-color: transparent; }\n\n.reveal.overview .playback {\n opacity: 0;\n visibility: hidden; }\n\n/*********************************************\n * ROLLING LINKS\n *********************************************/\n.reveal .roll {\n display: inline-block;\n line-height: 1.2;\n overflow: hidden;\n vertical-align: top;\n -webkit-perspective: 400px;\n perspective: 400px;\n -webkit-perspective-origin: 50% 50%;\n perspective-origin: 50% 50%; }\n\n.reveal .roll:hover {\n background: none;\n text-shadow: none; }\n\n.reveal .roll span {\n display: block;\n position: relative;\n padding: 0 2px;\n pointer-events: none;\n transition: all 400ms ease;\n -webkit-transform-origin: 50% 0%;\n transform-origin: 50% 0%;\n -webkit-transform-style: preserve-3d;\n transform-style: preserve-3d;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden; }\n\n.reveal .roll:hover span {\n background: rgba(0, 0, 0, 0.5);\n -webkit-transform: translate3d(0px, 0px, -45px) rotateX(90deg);\n transform: translate3d(0px, 0px, -45px) rotateX(90deg); }\n\n.reveal .roll span:after {\n content: attr(data-title);\n display: block;\n position: absolute;\n left: 0;\n top: 0;\n padding: 0 2px;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n -webkit-transform-origin: 50% 0%;\n transform-origin: 50% 0%;\n -webkit-transform: translate3d(0px, 110%, 0px) rotateX(-90deg);\n transform: translate3d(0px, 110%, 0px) rotateX(-90deg); }\n\n/*********************************************\n * SPEAKER NOTES\n *********************************************/\n.reveal aside.notes {\n display: none; }\n\n.reveal .speaker-notes {\n display: none;\n position: absolute;\n width: 25vw;\n height: 100%;\n top: 0;\n left: 100%;\n padding: 14px 18px 14px 18px;\n z-index: 1;\n font-size: 18px;\n line-height: 1.4;\n border: 1px solid rgba(0, 0, 0, 0.05);\n color: #222;\n background-color: #f5f5f5;\n overflow: auto;\n box-sizing: border-box;\n text-align: left;\n font-family: Helvetica, sans-serif;\n -webkit-overflow-scrolling: touch; }\n .reveal .speaker-notes .notes-placeholder {\n color: #ccc;\n font-style: italic; }\n .reveal .speaker-notes:focus {\n outline: none; }\n .reveal .speaker-notes:before {\n content: 'Speaker notes';\n display: block;\n margin-bottom: 10px;\n opacity: 0.5; }\n\n.reveal.show-notes {\n max-width: 75vw;\n overflow: visible; }\n\n.reveal.show-notes .speaker-notes {\n display: block; }\n\n@media screen and (min-width: 1600px) {\n .reveal .speaker-notes {\n font-size: 20px; } }\n\n@media screen and (max-width: 1024px) {\n .reveal.show-notes {\n border-left: 0;\n max-width: none;\n max-height: 70%;\n overflow: visible; }\n .reveal.show-notes .speaker-notes {\n top: 100%;\n left: 0;\n width: 100%;\n height: 42.8571428571%; } }\n\n@media screen and (max-width: 600px) {\n .reveal.show-notes {\n max-height: 60%; }\n .reveal.show-notes .speaker-notes {\n top: 100%;\n height: 66.6666666667%; }\n .reveal .speaker-notes {\n font-size: 14px; } }\n\n/*********************************************\n * ZOOM PLUGIN\n *********************************************/\n.zoomed .reveal *,\n.zoomed .reveal *:before,\n.zoomed .reveal *:after {\n -webkit-backface-visibility: visible !", "important;\n backface-visibility: visible !", "important; }\n\n.zoomed .reveal .progress,\n.zoomed .reveal .controls {\n opacity: 0; }\n\n.zoomed .reveal .roll span {\n background: none; }\n\n.zoomed .reveal .roll span:after {\n visibility: hidden; }\n" ]
{ "pile_set_name": "Github" }
[ 0, 0.0018512285425782565, 0.0008874864411793709, 0.00043159257660768235, 0, 0, 0, 0, 0, 0, 0.0023952095808383233, 0, 0, 0, 0, 0, 0, 0.0014625228519195613, 0, 0 ]
0.000351
5
[ "Author: sebor\nDate: Mon Feb 4 13:20:33 2008\nNew Revision: 618441\nURL: http://svn.apache.org/viewvc?rev=618441&view=rev\nLog:\n2008-02-04 Gavin <[email protected]>\nSTDCXX-686\n* forrest/forrest.properties: Added sources for the initial (though\nincomplete) pass at a Forrest-based site redesign/reimplementation.", "\n* forrest/src/documentation: Same.", "\n* forrest/src/documentation/sitemap.xmap: Same.", "\n* forrest/src/documentation/skinconf.xml: Same.", "\n* forrest/src/documentation/content: Same.", "\n* forrest/src/documentation/content/xdocs: Same.", "\n* forrest/src/documentation/content/xdocs/bugs.xml: Same.", "\n* forrest/src/documentation/content/xdocs/site.xml: Same.", "\n* forrest/src/documentation/content/xdocs/images: Same.", "\n* forrest/src/documentation/content/xdocs/images/project.svg: Same.", "\n* forrest/src/documentation/content/xdocs/images/project-logo.gif: Same.", "\n* forrest/src/documentation/content/xdocs/images/group.svg: Same.", "\n* forrest/src/documentation/content/xdocs/images/icon.png: Same.", "\n* forrest/src/documentation/content/xdocs/images/group-logo.gif: Same.", "\n* forrest/src/documentation/content/xdocs/images/usemap.gif: Same.", "\n* forrest/src/documentation/content/xdocs/download.xml: Same.", "\n* forrest/src/documentation/content/xdocs/index.xml: Same.", "\n* forrest/src/documentation/content/xdocs/tabs.xml: Same.", "\n* forrest/src/documentation/content/locationmap.xml: Same.", "\n* forrest/src/documentation/resources: Same.", "\n* forrest/src/documentation/resources/schema: Same.", "\n* forrest/src/documentation/resources/schema/catalog.xcat: Same.", "\n* forrest/src/documentation/resources/themes: Same.", "\n* forrest/src/documentation/resources/themes/pelt: Same.", "\n* forrest/src/documentation/resources/themes/pelt/panels: Same.", "\n* forrest/src/documentation/resources/themes/pelt/panels/pelt-html.panel.xml: Same.", "\n* forrest/src/documentation/resources/themes/pelt/panels/pelt-css.panel.xml: Same.", "\n* forrest/src/documentation/resources/themes/pelt/html: Same.", "\n* forrest/src/documentation/resources/themes/pelt/html/siteinfo-credits.ft: Same.", "\n* forrest/src/documentation/resources/themes/pelt/html/content-main.ft: Same.", "\n* forrest/src/documentation/resources/themes/pelt/html/nav-main-sub.ft: Same.", "\n* forrest/src/documentation/resources/themes/pelt/html/nav-section-round-bottom.ft: Same.", "\n* forrest/src/documentation/resources/themes/pelt/html/search-input.ft: Same.", "\n* forrest/src/documentation/resources/themes/pelt/html/branding-logo.ft: Same.", "\n* forrest/src/documentation/resources/themes/pelt/images: Same.", "\n* forrest/src/documentation/resources/themes/pelt/images/page.gif: Same.", "\n* forrest/src/documentation/resources/themes/pelt/images/spacer.gif: Same.", "\n* forrest/src/documentation/resources/themes/pelt/images/singlepage.gif: Same.", "\n* forrest/src/documentation/resources/themes/pelt/images/label.gif: Same.", "\n* forrest/src/documentation/resources/themes/pelt/images/search-right.gif: Same.", "\n* forrest/src/documentation/resources/themes/pelt/images/sidebar_bg.gif: Same.", "\n* forrest/src/documentation/resources/themes/pelt/images/tab-right.gif: Same.", "\n* forrest/src/documentation/resources/themes/pelt/images/current.gif: Same.", "\n* forrest/src/documentation/resources/themes/pelt/images/printer.gif: Same.", "\n* forrest/src/documentation/resources/themes/pelt/images/header-background.png: Same.", "\n* forrest/src/documentation/resources/themes/pelt/images/chapter.gif: Same.", "\n* forrest/src/documentation/resources/themes/pelt/images/xmldoc.gif: Same.", "\n* forrest/src/documentation/resources/themes/pelt/images/chapter_white.gif: Same.", "\n* forrest/src/documentation/resources/themes/pelt/images/tl-off.gif: Same.", "\n* forrest/src/documentation/resources/themes/pelt/images/tl-on.gif: Same.", "\n* forrest/src/documentation/resources/themes/pelt/images/tr-off.gif: Same.", "\n* forrest/src/documentation/resources/themes/pelt/images/search-left.gif: Same.", "\n* forrest/src/documentation/resources/themes/pelt/images/tab-left.gif: Same.", "\n* forrest/src/documentation/resources/themes/pelt/images/header-background-grad.png: Same.", "\n* forrest/src/documentation/resources/themes/pelt/images/header_white_line.gif: Same.", "\n* forrest/src/documentation/resources/themes/pelt/images/pdfdoc.gif: Same.", "\n* forrest/src/documentation/resources/themes/pelt/images/tr-on.gif: Same.", "\n* forrest/src/documentation/resources/themes/pelt/images/header-background.gif: Same.", "\n* forrest/src/documentation/resources/themes/pelt/images/doc.gif: Same.", "\n* forrest/src/documentation/resources/themes/pelt/images/chapter_open.gif: Same.", "\n* forrest/src/documentation/resources/themes/pelt/images/instruction_arrow.png: Same.", "\n* forrest/src/documentation/resources/themes/pelt/css: Same.", "\n* forrest/src/documentation/resources/themes/pelt/css/pelt.print.css: Same.", "\n* forrest/src/documentation/resources/themes/pelt/css/leather-dev.css: Same.", "\n* forrest/src/documentation/resources/themes/pelt/css/pelt.screen.css: Same.", "\n* forrest/src/documentation/resources/themes/pelt/css/pelt.basic.css: Same.", "\n* forrest/src/documentation/resources/themes/common: Same.", "\n* forrest/src/documentation/resources/themes/common/css: Same.", "\n* forrest/src/documentation/resources/themes/common/css/branding-theme-profiler.ft: Same.", "\n* forrest/src/documentation/resources/themes/pelt.fv: Same.", "\n* forrest/src/documentation/resources/images: Same.", "\n* forrest/src/documentation/resources/images/stdcxx.png: Same.", "\n* forrest/src/documentation/resources/images/Thumbs.db: Same.", "\n* forrest/src/documentation/README.txt: Same.", "\n* forrest/src/documentation/classes: Same.", "\n* forrest/src/documentation/classes/CatalogManager.properties: Same.", "\n* forrest/forrest.properties.xml: Same.", "\nAdded:\nstdcxx/site/forrest/\nstdcxx/site/forrest/forrest.properties (with props)\nstdcxx/site/forrest/forrest.properties.xml (with props)\nstdcxx/site/forrest/src/\nstdcxx/site/forrest/src/documentation/\nstdcxx/site/forrest/src/documentation/README.txt (with props)\nstdcxx/site/forrest/src/documentation/classes/\nstdcxx/site/forrest/src/documentation/classes/CatalogManager.properties (with props)\nstdcxx/site/forrest/src/documentation/content/\nstdcxx/site/forrest/src/documentation/content/locationmap.xml (with props)\nstdcxx/site/forrest/src/documentation/content/xdocs/\nstdcxx/site/forrest/src/documentation/content/xdocs/bugs.xml (with props)\nstdcxx/site/forrest/src/documentation/content/xdocs/download.xml (with props)\nstdcxx/site/forrest/src/documentation/content/xdocs/images/\nstdcxx/site/forrest/src/documentation/content/xdocs/images/group-logo.gif (with props)\nstdcxx/site/forrest/src/documentation/content/xdocs/images/group.svg (with props)\nstdcxx/site/forrest/src/documentation/content/xdocs/images/icon.png (with props)\nstdcxx/site/forrest/src/documentation/content/xdocs/images/project-logo.gif (with props)\nstdcxx/site/forrest/src/documentation/content/xdocs/images/project.svg (with props)\nstdcxx/site/forrest/src/documentation/content/xdocs/images/usemap.gif (with props)\nstdcxx/site/forrest/src/documentation/content/xdocs/index.xml (with props)\nstdcxx/site/forrest/src/documentation/content/xdocs/site.xml (with props)\nstdcxx/site/forrest/src/documentation/content/xdocs/tabs.xml (with props)\nstdcxx/site/forrest/src/documentation/resources/\nstdcxx/site/forrest/src/documentation/resources/images/\nstdcxx/site/forrest/src/documentation/resources/images/Thumbs.db (with props)\nstdcxx/site/forrest/src/documentation/resources/images/stdcxx.png (with props)\nstdcxx/site/forrest/src/documentation/resources/schema/\nstdcxx/site/forrest/src/documentation/resources/schema/catalog.xcat (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/\nstdcxx/site/forrest/src/documentation/resources/themes/common/\nstdcxx/site/forrest/src/documentation/resources/themes/common/css/\nstdcxx/site/forrest/src/documentation/resources/themes/common/css/branding-theme-profiler.ft (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/\nstdcxx/site/forrest/src/documentation/resources/themes/pelt.fv (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/css/\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/css/leather-dev.css (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/css/pelt.basic.css (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/css/pelt.print.css (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/css/pelt.screen.css (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/html/\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/html/branding-logo.ft (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/html/content-main.ft (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/html/nav-main-sub.ft (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/html/nav-section-round-bottom.ft (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/html/search-input.ft (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/html/siteinfo-credits.ft (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/images/\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/images/chapter.gif (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/images/chapter_open.gif (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/images/chapter_white.gif (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/images/current.gif (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/images/doc.gif (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/images/header-background-grad.png (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/images/header-background.gif (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/images/header-background.png (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/images/header_white_line.gif (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/images/instruction_arrow.png (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/images/label.gif (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/images/page.gif (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/images/pdfdoc.gif (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/images/printer.gif (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/images/search-left.gif (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/images/search-right.gif (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/images/sidebar_bg.gif (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/images/singlepage.gif (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/images/spacer.gif (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/images/tab-left.gif (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/images/tab-right.gif (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/images/tl-off.gif (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/images/tl-on.gif (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/images/tr-off.gif (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/images/tr-on.gif (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/images/xmldoc.gif (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/panels/\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/panels/pelt-css.panel.xml (with props)\nstdcxx/site/forrest/src/documentation/resources/themes/pelt/panels/pelt-html.panel.xml (with props)\nstdcxx/site/forrest/src/documentation/sitemap.xmap (with props)\nstdcxx/site/forrest/src/documentation/skinconf.xml (with props)\nAdded: stdcxx/site/forrest/forrest.properties\nURL: http://svn.apache.org/viewvc/stdcxx/site/forrest/forrest.properties?rev=618441&view=auto\n==============================================================================\n--- stdcxx/site/forrest/forrest.properties (added)\n+++ stdcxx/site/forrest/forrest.properties Mon Feb 4 13:20:33 2008\n@@ -0,0 +1,25 @@\n+# Licensed to the Apache Software Foundation (ASF) under one or more\n+# contributor license agreements. ", "See the NOTICE file distributed with\n+# this work for additional information regarding copyright ownership.", "\n+# The ASF licenses this file to You under the Apache License, Version 2.0\n+# (the \"License\"); you may not use this file except in compliance with\n+# the License. ", "You may obtain a copy of the License at\n+#\n+# http://www.apache.org/licenses/LICENSE-2.0\n+#\n+# Unless required by applicable law or agreed to in writing, software\n+# distributed under the License is distributed on an \"AS IS\" BASIS,\n+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.", "\n+# See the License for the specific language governing permissions and\n+# limitations under the License.", "\n+\n+##############\n+# This is a minimal properties file.", "\n+# These are defaults, un-comment them only if you need to change them.", "\n+# See the full set of default properties in a 'forrest seed-sample' site.", "\n+# Copy properties from there as needed.", "\n+##############\n+project.required.plugins=org.apache.forrest.plugin.output.pdf,org.apache.forrest.plugin.internal.dispatcher,org.apache.forrest.themes.core,org.apache.forrest.plugin.output.inputModule\n+# codename: Dispatcher\n+# Add the following plugins to project.required.plugins:\n+#org.apache.forrest.plugin.internal.dispatcher,org.apache.forrest.themes.core,org.apache.forrest.plugin.output.inputModule\nPropchange: stdcxx/site/forrest/forrest.properties\n------------------------------------------------------------------------------\nsvn:eol-style = native\nPropchange: stdcxx/site/forrest/forrest.properties\n------------------------------------------------------------------------------\nsvn:keywords = Id\nAdded: stdcxx/site/forrest/forrest.properties.xml\nURL: http://svn.apache.org/viewvc/stdcxx/site/forrest/forrest.properties.xml?rev=618441&view=auto\n==============================================================================\n--- stdcxx/site/forrest/forrest.properties.xml (added)\n+++ stdcxx/site/forrest/forrest.properties.xml Mon Feb 4 13:20:33 2008\n@@ -0,0 +1,26 @@\n+<?", "xml version=\"1.0\" encoding=\"UTF-8\"?", ">\n+<!--", "\n+ Licensed to the Apache Software Foundation (ASF) under one or more\n+ contributor license agreements. ", "See the NOTICE file distributed with\n+ this work for additional information regarding copyright ownership.", "\n+ The ASF licenses this file to You under the Apache License, Version 2.0\n+ (the \"License\"); you may not use this file except in compliance with\n+ the License. ", "You may obtain a copy of the License at\n+\n+ http://www.apache.org/licenses/LICENSE-2.0\n+\n+ Unless required by applicable law or agreed to in writing, software\n+ distributed under the License is distributed on an \"AS IS\" BASIS,\n+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.", "\n+ See the License for the specific language governing permissions and\n+ limitations under the License.", "\n+-->\n+<properties>\n+<!--", "\n+ # codename: Dispatcher\n+ # Dispatcher is using a fallback mechanism for theming.", "\n+ # You can configure the theme name and its extension here\n+ -->\n+ <property name=\"dispatcher.theme\" value=\"pelt\"/>\n+ <property name=\"dispatcher.theme-ext\" value=\".fv\"/>\n+</properties>\nPropchange: stdcxx/site/forrest/forrest.properties.xml\n------------------------------------------------------------------------------\nsvn:eol-style = native\nPropchange: stdcxx/site/forrest/forrest.properties.xml\n------------------------------------------------------------------------------\nsvn:keywords = Id\nAdded: stdcxx/site/forrest/src/documentation/README.txt\nURL: http://svn.apache.org/viewvc/stdcxx/site/forrest/src/documentation/README.txt?rev=618441&view=auto\n==============================================================================\n--- stdcxx/site/forrest/src/documentation/README.txt (added)\n+++ stdcxx/site/forrest/src/documentation/README.txt Mon Feb 4 13:20:33 2008\n@@ -0,0 +1,7 @@\n+This is the base documentation directory.", "\n+\n+skinconf.xml # This file customizes Forrest for your project. ", "In it, you\n+ # tell forrest the project name, logo, copyright info, etc\n+\n+sitemap.xmap # Optional. ", "This sitemap is consulted before all core sitemaps.", "\n+ # See http://forrest.apache.org/docs/project-sitemap.html\nPropchange: stdcxx/site/forrest/src/documentation/README.txt\n------------------------------------------------------------------------------\nsvn:eol-style = native\nPropchange: stdcxx/site/forrest/src/documentation/README.txt\n------------------------------------------------------------------------------\nsvn:keywords = Id\nAdded: stdcxx/site/forrest/src/documentation/classes/CatalogManager.properties\nURL: http://svn.apache.org/viewvc/stdcxx/site/forrest/src/documentation/classes/CatalogManager.properties?rev=618441&view=auto\n==============================================================================\n--- stdcxx/site/forrest/src/documentation/classes/CatalogManager.properties (added)\n+++ stdcxx/site/forrest/src/documentation/classes/CatalogManager.properties Mon Feb 4 13:20:33 2008\n@@ -0,0 +1,62 @@\n+# Licensed to the Apache Software Foundation (ASF) under one or more\n+# contributor license agreements. ", "See the NOTICE file distributed with\n+# this work for additional information regarding copyright ownership.", "\n+# The ASF licenses this file to You under the Apache License, Version 2.0\n+# (the \"License\"); you may not use this file except in compliance with\n+# the License. ", "You may obtain a copy of the License at\n+#\n+# http://www.apache.org/licenses/LICENSE-2.0\n+#\n+# Unless required by applicable law or agreed to in writing, software\n+# distributed under the License is distributed on an \"AS IS\" BASIS,\n+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.", "\n+# See the License for the specific language governing permissions and\n+# limitations under the License.", "\n+\n+#=======================================================================\n+# CatalogManager.properties for Catalog Entity Resolver.", "\n+#\n+# This is the default properties file for your project.", "\n+# This facilitates local configuration of application-specific catalogs.", "\n+# If you have defined any local catalogs, then they will be loaded\n+# before Forrest's core catalogs.", "\n+#\n+# See the Apache Forrest documentation:\n+# http://forrest.apache.org/docs/your-project.html\n+# http://forrest.apache.org/docs/validation.html\n+\n+# verbosity:\n+# The level of messages for status/debug (messages go to standard output).", "\n+# The setting here is for your own local catalogs.", "\n+# The verbosity of Forrest's core catalogs is controlled via\n+# main/webapp/WEB-INF/cocoon.xconf\n+#\n+# The following messages are provided ...\n+# 0 = none\n+# 1 = ? (... ", "not sure yet)\n+# 2 = 1+, Loading catalog, Resolved public, Resolved system\n+# 3 = 2+, Catalog does not exist, resolvePublic, resolveSystem\n+# 10 = 3+, List all catalog entries when loading a catalog\n+# (Cocoon also logs the \"Resolved public\" messages.)", "\n+verbosity=1\n+\n+# catalogs ... list of additional catalogs to load\n+# (Note that Apache Forrest will automatically load its own default catalog\n+# from main/webapp/resources/schema/catalog.xcat)\n+# Use either full pathnames or relative pathnames.", "\n+# pathname separator is always semi-colon (;) regardless of operating system\n+# directory separator is always slash (/) regardless of operating system\n+# The project catalog is expected to be at ../resources/schema/catalog.xcat\n+#catalogs=../resources/schema/catalog.xcat\n+# FIXME: Workaround FOR-548 \"project DTD catalogs are not included\n+# when running as a servlet WAR\".", "\n+# Same catalog, different path\n+catalogs=../resources/schema/catalog.xcat;../../project/src/documentation/resources/schema/catalog.xcat\n+\n+# relative-catalogs\n+# If false, relative catalog URIs are made absolute with respect to the\n+# base URI of the CatalogManager.properties file. ", "This setting only\n+# applies to catalog URIs obtained from the catalogs property in the\n+# CatalogManager.properties file\n+# Example: relative-catalogs=[yes|no]\n+relative-catalogs=no\nPropchange: stdcxx/site/forrest/src/documentation/classes/CatalogManager.properties\n------------------------------------------------------------------------------\nsvn:eol-style = native\nPropchange: stdcxx/site/forrest/src/documentation/classes/CatalogManager.properties\n------------------------------------------------------------------------------\nsvn:keywords = Id\nAdded: stdcxx/site/forrest/src/documentation/content/locationmap.xml\nURL: http://svn.apache.org/viewvc/stdcxx/site/forrest/src/documentation/content/locationmap.xml?rev=618441&view=auto\n==============================================================================\n--- stdcxx/site/forrest/src/documentation/content/locationmap.xml (added)\n+++ stdcxx/site/forrest/src/documentation/content/locationmap.xml Mon Feb 4 13:20:33 2008\n@@ -0,0 +1,47 @@\n+<?", "xml version=\"1.0\" encoding=\"UTF-8\"?", ">\n+<!--", "\n+ Licensed to the Apache Software Foundation (ASF) under one or more\n+ contributor license agreements. ", "See the NOTICE file distributed with\n+ this work for additional information regarding copyright ownership.", "\n+ The ASF licenses this file to You under the Apache License, Version 2.0\n+ (the \"License\"); you may not use this file except in compliance with\n+ the License. ", "You may obtain a copy of the License at\n+\n+ http://www.apache.org/licenses/LICENSE-2.0\n+\n+ Unless required by applicable law or agreed to in writing, software\n+ distributed under the License is distributed on an \"AS IS\" BASIS,\n+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.", "\n+ See the License for the specific language governing permissions and\n+ limitations under the License.", "\n+-->\n+<locationmap xmlns=\"http://apache.org/forrest/locationmap/1.0\">\n+ <components>\n+ <matchers default=\"lm\">\n+ <matcher\n+ name=\"lm\"\n+ src=\"org.apache.forrest.locationmap.", "WildcardLocationMapHintMatcher\"/>\n+ </matchers>\n+ </components>\n+ <locator>\n+ <match pattern=\"rewriteDemo/**\">\n+ <location src=\"http://www.burrokeet.org/{1}.xml\" />\n+ </match>\n+ <match pattern=\"remoteDemo/**.xml\">\n+ <location src=\"http://svn.apache.org/repos/asf/forrest/trunk/site-author/content/xdocs/{1}.xml\" />\n+ </match>\n+<!--", "\n+ To locate all your source documents in a slide repository you can do:\n+\n+ <match pattern=\"tabs.xml\">\n+ <location src=\"http://127.0.0.1:8080/slide/files/tabs.xml\"/>\n+ </match>\n+ <match pattern=\"site.xml\">\n+ <location src=\"http://127.0.0.1:8080/slide/files/site.xml\"/>\n+ </match>\n+ <match pattern=\"**.xml\">\n+ <location src=\"http://127.0.0.1:8080/slide/files/{1}.xml\"/>\n+ </match>\n+ -->\n+ </locator>\n+</locationmap>\nPropchange: stdcxx/site/forrest/src/documentation/content/locationmap.xml\n------------------------------------------------------------------------------\nsvn:eol-style = native\nPropchange: stdcxx/site/forrest/src/documentation/content/locationmap.xml\n------------------------------------------------------------------------------\nsvn:keywords = Id\nAdded: stdcxx/site/forrest/src/documentation/content/xdocs/bugs.xml\nURL: http://svn.apache.org/viewvc/stdcxx/site/forrest/src/documentation/content/xdocs/bugs.xml?rev=618441&view=auto\n==============================================================================\n--- stdcxx/site/forrest/src/documentation/content/xdocs/bugs.xml (added)\n+++ stdcxx/site/forrest/src/documentation/content/xdocs/bugs.xml Mon Feb 4 13:20:33 2008\n@@ -0,0 +1,109 @@\n+<?", "xml version=\"1.0\" encoding=\"UTF-8\"?", ">\n+<!--", "\n+ Licensed to the Apache Software Foundation (ASF) under one or more\n+ contributor license agreements. ", "See the NOTICE file distributed with\n+ this work for additional information regarding copyright ownership.", "\n+ The ASF licenses this file to You under the Apache License, Version 2.0\n+ (the \"License\"); you may not use this file except in compliance with\n+ the License. ", "You may obtain a copy of the License at\n+\n+ http://www.apache.org/licenses/LICENSE-2.0\n+\n+ Unless required by applicable law or agreed to in writing, software\n+ distributed under the License is distributed on an \"AS IS\" BASIS,\n+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.", "\n+ See the License for the specific language governing permissions and\n+ limitations under the License.", "\n+-->\n+<!", "DOCTYPE document PUBLIC \"-//APACHE//DTD Documentation V2.0//EN\" \"http://forrest.apache.org/dtd/document-v20.dtd\">\n+<document>\n+ <header>\n+ <title>Bugs in Apache C++ Standard Library</title>\n+ </header>\n+ <body>\n+ <section id=\"overview\">\n+ <title>What Is a Bug</title>\n+\n+\n+ <p>Wikipedia, the free online encyclopedia, defines a bug as follows:<br/><br/>\n+A computer bug is an error, flaw, mistake, failure, or fault in a computer program that prevents it from working correctly or produces an incorrect result.", "\n+ </p>\n+ </section>\n+\n+ <section id=\"before_reporting\">\n+ <title>Before Reporting a Bug</title>\n+ <ol>\n+ <li>If you have discovered a bug in stdcxx and would like to report it to the development team, please be sure to first check the project's issue tracking database to see whether the bug has already been reported and, if so, what its status is. ", "If the bug has not been reported yet, follow the instructions on Reporting a Bug below. ", "Otherwise, feel free to add a comment to the issue in the issue tracking database if you think it might help resolve it more quickly (for example, if you have a smaller or better test case).</li>\n+ <li>If you think but aren't 100% sure that you have discovered a bug in the source code of the project, please consult a reliable reference on the subject first and confirm that the behavior you are experiencing is, in fact, a bug and not a feature. ", "If even after reading the relevant references you are still not sure, you should send an email to [email protected] and ask. ", "If the problem is indeed a bug, go back to step 1.</li>\n+ <li>If you have a suggestion for a change or an addition to the interface or the behavior of this implementation of the library that you would like to propose to the development team (e.g., an enhancement request), please make sure that the change is not in conflict with the requirements of the C++ Standard. ", "You can get an electronic copy of the C++ Standard from the ANSI eStandards store. ", "If your request is not in conflict with any requirements of the C++ standard, open a request for Improvement or New Feature to the issue tracking database (see the stdcxx issue tracking database documentation for the available issue types).</li>\n+ </ol>\n+ </section>\n+\n+ <section id=\"save_reports\">\n+ <title>Saved Bug Reports</title>\n+ <p>The table below contains links to a number of saved bug tracking database queries along with their summary results. ", "The version column indicates the version and contains a link to a query that pulls up all issues of any type scheduled to be fixed in that version. ", "The Resolved column indicates the number of issues of any type resolved (but not closed) in that version. ", "The Closed column indicates the number of issues of any type closed in that version. ", "The Bugs column indicates the number of issues of type Bug resolved or closed in that version. ", "The Improvements column indicates the number of issues of type Improvement resolved or closed in that version. ", "The New Features column indicates the number of issues of type New Feature resolved or closed in that version. ", "The Regressions column indicates the number of issues of any type both introduced and resolved or closed in that version. ", "The Pending column indicates the number of issues of any type schedule for that\nversion that haven't yet been resolved or closed.</p>\n+ <p>The value in each cell in the table is either a number (for released versions), or TBD (for To Be Determined) for a version that is in active development, or N/A (for Not Available) for a future version for which there is no data yet.</p>\n+ </section>\n+\n+ <section id=\"external\">\n+ <title>External Bugs Affecting the Apache C++ Standard Library</title>\n+ <p>We track bugs in compilers, operating systems, and other software external to the Apache C++ Standard Library that affect the correct behavior or performance of the library or programs that use it in the issue tracking database along with other bugs. ", "These bug reports are often quite useful when porting the project to new versions of the software. ", "See the table below for filters with predefined searches for bugs relevant to specific compilers, operating systems, and/or common hardware architectures.</p>\n+ </section>\n+\n+ <section id=\"reportabug\">\n+ <title>Reporting a Bug</title>\n+ <p>To report a new bug in this implementation of the C++ Standard Library or the accompanying utilities or example programs, or a problem in any other part of the stdcxx project such as its documentation or Web pages, open an issue in the project's issue tracking database and choose Bug for the Issue Type. ", "Make sure you assign the bug the appropriate component. ", "For example, if the bug has to do with the formatting of numbers using iostreams, the likely components will be 22. ", "Localization, or 27. ", "Input/Output.</p>\n+ <p>When reporting a bug in this implementation of the library, be sure to demonstrate the problem in a small (50 lines of code or less) C++ program that does not depend on any third party libraries (system libraries excluded). ", "In addition to the program, make sure to include the details of the environment in which the bug can be reproduces, including the full command line used to compile, link, and run the program, and the output of each of the mentioned stages, specifically any compiler or linker diagnostics, and, if applicable, the output of the program itself. ", "When the problem manisfests itself in the form of an abnormal program termination (e.g., crash), it helps to include the full stack trace at the crash site. ", "To demonstrate incorrect behavior, use the assert() macro to assert any postconditions. ", "Refer to existing bug reports (such as STDCXX-2) for examples. ", "By following this advice you will increase the chances that the bug will be resolved quickly.</p>\n+ </section>\n+\n+ <section id=\"enhancements\">\n+ <title>Requesting an Enhancement</title>\n+ <p>The process for requesting enhancements and new features in stdcxx is essentially the same as the process for Reporting a bug except that instead choosing Bug as the Issue Type you will choose either Improvevement when requesting an enhancement to an existing feature, or New Feature when requesting an entire new feature.</p>\n+ </section>\n+\n+ <section id=\"patches\">\n+ <title>Submitting Patches</title>\n+ <p>Committers who follow the Review-Then-Commit policy, and non-committer Contributors without commit (write) access to the stdcxx source repository must submit patches for review and approval before they can be committed by someone with commit access. ", "If you would like to submit a patch for a bug that you or someone else reported, you can do so in two ways:</p>\n+ <ol>\n+ <li>Post the patch to the project development mailing list, [email protected]. ", "The subject line of the email should start with the string [PATCH], followed by a brief description of the patch and the issue number from the issue tracking database if one exists. ", "An easy way to come up with a good description for the patch subject line is to simply copy the Summary from the bug report. ", "Be sure to also include a reference to the bug (preferably in the form of a link to the original bug report).</li>\n+ <li>Add the patch to the bug report in the form of a comment (when the patch is just a few lines of text), or in the form of an attachment to the issue. ", "This approach is preferable to sending the patch to the mailing list when the patch is large or when the patch sent to the project development mailing list gets mangled or stripped by the list management software.</li>\n+ </ol>\n+ <p>If you would like to submit a patch for a bug that doesn't have a corresponding issue in the issue tracking database, you should start by creating a small test case to demonstrate the problem first. ", "It's not uncommon for this exercise to expose an error in the usage of the library rather than in the library implementation itself. ", "Once you've isolated the bug to a small test case and filed an issue in the issue tracking database you can update the issue with the proposed patch.</p>\n+ <p>If you would like to submit a patch with an improvement to the project (such as an optimization tweak), either create an enhancement request in the issue tracking database and attach the patch to it or, for small changes, post the patch along with a detailed description as well as before and after data showing the improvement to the project development mailing list, [email protected].</p>\n+ <p>Patches for documentation or project web pages should follow the same process as above, except that a test case isn't necessary in most situations. ", "A possible exception is a patch for code example listed in the Class Reference.</p>\n+ <p>In all cases, make sure your patch follows the expected Patch Format described below.</p>\n+ </section>\n+\n+ <section id=\"patch_format\">\n+ <title>Patch Format</title>\n+ <p>Every patch should address at most one issue from the issue tracking database. ", "Separate issues should be addressed in separate patches. ", "An issue that discusses more than one bug or one enhancement should either be first split up into multiple issues, or into multiple subtasks, before submitting a patch for each.</p>\n+ <p>In order to make them easy to review and revert, if necessary (in case they cause regressions not dicovered during review), patches should be as small as possible. ", "Changes should be limited to the bare minimum necessary to address the issue. ", "Gratuitous edits such code reformatting or renanaming of variables should be avoided. ", "Such changes should be made separately and independently of any functional changes to the code.</p>\n+ <p>Every patch should include the following information:</p>\n+ <ol>\n+ <li>Detailed description of the change. ", "It should be obvious from reading the description alone (i.e., without reading the Change Log or looking at the source code) what the change does and why. ", "See this post for an example of such a description.</li>\n+ <li>Changes that might have an impact on the efficiency of the changed component should be accompanied by a small program exercising the component, either by timings showing the performance difference between the original and the changed code in user and system times (for example, using the POSIX time command), or by sizes of the original and the code for changes affetcting the space efficiency of code.</li>\n+\n+ <li>Change Log entry. ", "The format of Change Log entries follows the established GNU Change Log convention. ", "Emacs users can take advantage of the add-change-log-entry command. ", "See the Change Log section of the Emacs manual.", "\n+\n+Each Change Log entry starts with a submission date followed by the name and email address of the submitter, all on the same line. ", "Separated by a blank line is a reference to the issue key representing the corresponding issue in the issue tracking database (if applicable). ", "The rest of the entry consists of a bullet list of changed files and the names and descriptions of the symbols affected by the change in each file. ", "A maximum line length of 78 characters should be observed. ", "For examples of stdcxx Change Log entries view the logs of some stdcxx source files, such as time_put.cpp, or wcodecvt.cpp.", "\n+\n+The format of the issue key is especially important in order for the the issue tracking database to be able to update the issue in the issue tracking database with information about the change. ", "The issue key format is STDCXX-NNN where the NNN part is the issue number (for example, STDCXX-2).", "\n+ </li>\n+ <li>The diff between the most recent versions of the file being modified and the modified version. ", "The diff should be in a format suitable for processing by the standard POSIX patch utility, or in the Unified format produced by the Subversion svn diff command by default as well as by the GNU diff utility and understood by GNU patch. ", "When creating patches on Windows it is important to keep in mind that the newline sequences (carriage-return followed by line-feed, or <code>&lt;CR&gt;&lt;LF&gt;</code>) may not be recognized by traditional UNIX implementations of the patch utility (as is the case on Solaris). ", "For portability, it is best to strip the carriage-returns from the patch before posting it. ", "The standard tr utility can be used to do that.", "\n+\n+New Files\n+ </li>\n+ </ol>\n+ </section>\n+\n+ <section id=\"new_files\">\n+ <title>New Files</title>\n+\n+ <p> New files included as part of a patch (such as new tests) should be submitted in the original format and not as the output of the patch utility since patch cannot create new files. ", "Multiple files can be submitted individually or as a gzipped tarball. ", "Be aware of the size limit imposed on posts to the mailing list. ", "In general, it is better to avoid posting very large files and instead attach them to an issue in the issue tracking database.</p>\n+ <p>\n+Each new source or header file should contain the license header described in the ASF Source Header and Copyright Notice Policy.", "\n+ </p>\n+ </section>\n+\n+ </body>\n+</document>\nPropchange: stdcxx/site/forrest/src/documentation/content/xdocs/bugs.xml\n------------------------------------------------------------------------------\nsvn:eol-style = native\nPropchange: stdcxx/site/forrest/src/documentation/content/xdocs/bugs.xml\n------------------------------------------------------------------------------\nsvn:keywords = Id\nAdded: stdcxx/site/forrest/src/documentation/content/xdocs/download.xml\nURL: http://svn.apache.org/viewvc/stdcxx/site/forrest/src/documentation/content/xdocs/download.xml?rev=618441&view=auto\n==============================================================================\n--- stdcxx/site/forrest/src/documentation/content/xdocs/download.xml (added)\n+++ stdcxx/site/forrest/src/documentation/content/xdocs/download.xml Mon Feb 4 13:20:33 2008\n@@ -0,0 +1,58 @@\n+<?", "xml version=\"1.0\" encoding=\"UTF-8\"?", ">\n+<!--", "\n+ Licensed to the Apache Software Foundation (ASF) under one or more\n+ contributor license agreements. ", "See the NOTICE file distributed with\n+ this work for additional information regarding copyright ownership.", "\n+ The ASF licenses this file to You under the Apache License, Version 2.0\n+ (the \"License\"); you may not use this file except in compliance with\n+ the License. ", "You may obtain a copy of the License at\n+\n+ http://www.apache.org/licenses/LICENSE-2.0\n+\n+ Unless required by applicable law or agreed to in writing, software\n+ distributed under the License is distributed on an \"AS IS\" BASIS,\n+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.", "\n+ See the License for the specific language governing permissions and\n+ limitations under the License.", "\n+-->\n+<!", "DOCTYPE document PUBLIC \"-//APACHE//DTD Documentation V2.0//EN\" \"http://forrest.apache.org/dtd/document-v20.dtd\">\n+<document>\n+ <header>\n+ <title>Downloading the Apache C++ Standard Library</title>\n+ </header>\n+ <body>\n+ <section id=\"files_online\">\n+ <title>Viewing the Latest Files Online</title>\n+ <p>The latest versions of stdcxx source files can be viewed or individually downloaded by directly accessing the stdcxx file repository in ASF Subversion by pointing your Web browser to the following URLs:</p>\n+ <ul>\n+ <li>trunk (development branch) http://svn.apache.org/repos/asf/stdcxx/trunk</li>\n+ <li>4.2.x (4.2 maintenance branch) http://svn.apache.org/repos/asf/stdcxx/branches/4.2.x</li>\n+ <li>4.2.0 (pre-release branch) http://svn.apache.org/repos/asf/stdcxx/branches/4.2.0 (closed to development)</li>\n+ <li>4.1.3 (final release branch) http://svn.apache.org/repos/asf/stdcxx/branches/4.1.3 (closed to development)</li>\n+ <li>web site http://svn.apache.org/repos/asf/stdcxx/site</li>\n+ </ul>\n+\n+ </section>\n+ <section id=\"checking_out\">\n+ <title>Checking Out Files Using the Subversion Client</title>\n+\n+ <p>\n+\n+ To check out stdcxx files using anonymous Subversion access, read the instructions here.<br /><br />\n+To check out the latest development version of entire stdcxx repository (i.e., its trunk) into the stdcxx/ directory in current working directory, enter the following command at the command prompt:<br /><br />\n+$ svn co http://svn.apache.org/repos/asf/stdcxx/trunk stdcxx<br /><br />\n+To check out stdcxx files for write access (committers only), read the instructions here.<br /><br />\n+The Subversion command is the same as above, the only thing different is the HTTPS protocol instead of ordinary HTTP:<br /><br />\n+$ svn co https://svn.apache.org/repos/asf/stdcxx/trunk stdcxx<br /><br />\n+</p>\n+ </section>\n+ <section id=\"snapshots\">\n+ <title>Downloading stdcxx Snapshots</title>\n+ <p>See the table below for available snapshots. ", "In the table, the version column indicates the library version. ", "The date column indicates the date the version was released. ", "The file column contains one or more links to the tarball or zip file available for download. ", "The size column is the size of the file in kilobytes. ", "The md5 sum column indicates the MD5 sum for the file and is also a link pointing to the MD5 sum file that can be downloaded. ", "The comment column contains links to the community vote approving the release, and to the Incubator PMC approval of the release.</p>\n+ </section>\n+ <section id=\"releases\">\n+ <title>Downloading stdcxx Releases</title>\n+ <p>See the table below for available releases. ", "In the table, the version column indicates the library version. ", "The date column indicates the date the version was released. ", "The file column contains one or more links to the tarball or zip file available for download. ", "The size column is the size of the file in kilobytes. ", "The md5 sum column indicates the MD5 sum for the file and is also a link pointing to the MD5 sum file that can be downloaded. ", "The fixes column contains 3 numbers: the first, Bug Fixes, indicating the number of bugs affecting previous versions that were resolved in the release, the second, Improvements, indicating the number of improvements made in this release with respect to previous releases, and the third, New Features, indicating the number of entire new features implemented in this release. ", "Each non-zero number is a link to the list of the corresponding issues in the bug-tracking database. ", "The comment column contains links to the community vote a\npproving the release, and to the Incubator PMC approval of the release.</p>\n+ </section>\n+ </body>\n+</document>\nPropchange: stdcxx/site/forrest/src/documentation/content/xdocs/download.xml\n------------------------------------------------------------------------------\nsvn:eol-style = native\nPropchange: stdcxx/site/forrest/src/documentation/content/xdocs/download.xml\n------------------------------------------------------------------------------\nsvn:keywords = Id\nAdded: stdcxx/site/forrest/src/documentation/content/xdocs/images/group-logo.gif\nURL: http://svn.apache.org/viewvc/stdcxx/site/forrest/src/documentation/content/xdocs/images/group-logo.gif?rev=618441&view=auto\n==============================================================================\nBinary file - no diff available.", "\nPropchange: stdcxx/site/forrest/src/documentation/content/xdocs/images/group-logo.gif\n------------------------------------------------------------------------------\nsvn:mime-type = application/octet-stream\nAdded: stdcxx/site/forrest/src/documentation/content/xdocs/images/group.svg\nURL: http://svn.apache.org/viewvc/stdcxx/site/forrest/src/documentation/content/xdocs/images/group.svg?rev=618441&view=auto\n==============================================================================\n--- stdcxx/site/forrest/src/documentation/content/xdocs/images/group.svg (added)\n+++ stdcxx/site/forrest/src/documentation/content/xdocs/images/group.svg Mon Feb 4 13:20:33 2008\n@@ -0,0 +1,82 @@\n+<?", "xml version=\"1.0\" standalone=\"no\"?", ">\n+<!--", "\n+ Licensed to the Apache Software Foundation (ASF) under one or more\n+ contributor license agreements. ", "See the NOTICE file distributed with\n+ this work for additional information regarding copyright ownership.", "\n+ The ASF licenses this file to You under the Apache License, Version 2.0\n+ (the \"License\"); you may not use this file except in compliance with\n+ the License. ", "You may obtain a copy of the License at\n+\n+ http://www.apache.org/licenses/LICENSE-2.0\n+\n+ Unless required by applicable law or agreed to in writing, software\n+ distributed under the License is distributed on an \"AS IS\" BASIS,\n+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.", "\n+ See the License for the specific language governing permissions and\n+ limitations under the License.", "\n+-->\n+\n+<!--", "\n+ SVG Anteater logo\n+\n+To get started with SVG, I'd recommend getting the Adobe SVG plugin, and the\n+xml-batik CVS module. ", "Then have a look at the xml-batik/samples files. ", "Use the\n+SVG spec (http://www.w3.org/TR/SVG/) as a reference.", "\n+-->\n+\n+<!-- ", "See Forrest Issue: FOR-229\n+<!", "DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.0//EN\"\n+\"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\"\n+[\n+ <!", "ATTLIST svg xmlns:for CDATA #FIXED \"http://apache.org/forrest\">\n+ <!", "ENTITY % textExt \"|for:group-name\">\n+ <!", "ELEMENT for:group-name (#PCDATA)>\n+]>\n+-->\n+<svg xmlns=\"http://www.w3.org/2000/svg\"\n+ xmlns:xlink=\"http://www.w3.org/1999/xlink\"\n+ xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\"\n+ xsl:version=\"1.0\"\n+ xmlns:for=\"http://apache.org/forrest\"\n+ width=\"220\" height=\"65\" >\n+ <title>Anteater logo</title>\n+\n+ <defs>\n+\n+ <!--", "\n+ <radialGradient id=\"radialGradient\">\n+ <stop style=\"stop-color:gold\" offset=\"0\"/>\n+ <stop style=\"stop-color:orange\" offset=\".5\"/>\n+ <stop style=\"stop-color:crimson\" offset=\"1\"/>\n+ </radialGradient>\n+ <linearGradient id=\"linearGradient\">\n+ <stop style=\"stop-color:gold\" offset=\"0\"/>\n+ <stop style=\"stop-color:orange\" offset=\".5\"/>\n+ <stop style=\"stop-color:crimson\" offset=\"1\"/>\n+ </linearGradient>\n+ -->\n+\n+ <linearGradient id=\"gradient\" x1=\"0\" y1=\"0\" x2=\"0\" y2=\"1\">\n+ <stop style=\"stop-color:white\" offset=\"0\"/>\n+ <stop style=\"stop-color:lightgreen\" offset=\"1\"/>\n+ </linearGradient>\n+\n+ <filter id=\"shadowFilter\" filterUnits=\"objectBoundingBox\" width=\"1.4\" height=\"1.4\">\n+ <!-- ", "Takes the alpha channel (black outline of the text), blurs it and saves as 'blur' -->\n+ <feGaussianBlur in=\"SourceAlpha\" stdDeviation=\"2 2\" result=\"blur\"/>\n+ <!-- ", "Takes saved 'blur' and offsets it by 4 pixels, saves as 'offsetBlur' -->\n+ <feOffset in=\"blur\" dx=\"4\" dy=\"4\" result=\"offsetBlur\"/>\n+ <!-- ", "Merges SourceGraphic (original image) and 'offsetBlur', putting the\n+ former 'over' the latter, and using the merged result as the finished\n+ image -->\n+ <feComposite in=\"SourceGraphic\" in2=\"offsetBlur\" operator=\"over\"/>\n+ </filter>\n+\n+ </defs>\n+\n+ <g filter=\"url(#shadowFilter)\" fill=\"url(#gradient)\">\n+ <text x=\"40%\" y=\"60%\" style=\"font-size:24pt; font-family:Verdana ; text-anchor: middle\">\n+ <for:group-name />\n+ </text>\n+ </g>\n+</svg>\nPropchange: stdcxx/site/forrest/src/documentation/content/xdocs/images/group.svg\n------------------------------------------------------------------------------\nsvn:eol-style = native\nPropchange: stdcxx/site/forrest/src/documentation/content/xdocs/images/group.svg\n------------------------------------------------------------------------------\nsvn:keywords = Id\nAdded: stdcxx/site/forrest/src/documentation/content/xdocs/images/icon.png\nURL: http://svn.apache.org/viewvc/stdcxx/site/forrest/src/documentation/content/xdocs/images/icon.png?rev=618441&view=auto\n==============================================================================\nBinary file - no diff available.", "\nPropchange: stdcxx/site/forrest/src/documentation/content/xdocs/images/icon.png\n------------------------------------------------------------------------------\nsvn:mime-type = application/octet-stream\nAdded: stdcxx/site/forrest/src/documentation/content/xdocs/images/project-logo.gif\nURL: http://svn.apache.org/viewvc/stdcxx/site/forrest/src/documentation/content/xdocs/images/project-logo.gif?rev=618441&view=auto\n==============================================================================\nBinary file - no diff available.", "\nPropchange: stdcxx/site/forrest/src/documentation/content/xdocs/images/project-logo.gif\n------------------------------------------------------------------------------\nsvn:mime-type = application/octet-stream\nAdded: stdcxx/site/forrest/src/documentation/content/xdocs/images/project.svg\nURL: http://svn.apache.org/viewvc/stdcxx/site/forrest/src/documentation/content/xdocs/images/project.svg?rev=618441&view=auto\n==============================================================================\n--- stdcxx/site/forrest/src/documentation/content/xdocs/images/project.svg (added)\n+++ stdcxx/site/forrest/src/documentation/content/xdocs/images/project.svg Mon Feb 4 13:20:33 2008\n@@ -0,0 +1,82 @@\n+<?", "xml version=\"1.0\" standalone=\"no\"?", ">\n+<!--", "\n+ Licensed to the Apache Software Foundation (ASF) under one or more\n+ contributor license agreements. ", "See the NOTICE file distributed with\n+ this work for additional information regarding copyright ownership.", "\n+ The ASF licenses this file to You under the Apache License, Version 2.0\n+ (the \"License\"); you may not use this file except in compliance with\n+ the License. ", "You may obtain a copy of the License at\n+\n+ http://www.apache.org/licenses/LICENSE-2.0\n+\n+ Unless required by applicable law or agreed to in writing, software\n+ distributed under the License is distributed on an \"AS IS\" BASIS,\n+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.", "\n+ See the License for the specific language governing permissions and\n+ limitations under the License.", "\n+-->\n+\n+<!--", "\n+ SVG Anteater logo\n+\n+To get started with SVG, I'd recommend getting the Adobe SVG plugin, and the\n+xml-batik CVS module. ", "Then have a look at the xml-batik/samples files. ", "Use the\n+SVG spec (http://www.w3.org/TR/SVG/) as a reference.", "\n+-->\n+\n+<!-- ", "See Forrest Issue: FOR-229\n+<!", "DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.0//EN\"\n+\"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\"\n+[\n+ <!", "ATTLIST svg xmlns:for CDATA #FIXED \"http://apache.org/forrest\">\n+ <!", "ENTITY % textExt \"|for:project-name\">\n+ <!", "ELEMENT for:project-name (#PCDATA)>\n+]>\n+-->\n+<svg xmlns=\"http://www.w3.org/2000/svg\"\n+ xmlns:xlink=\"http://www.w3.org/1999/xlink\"\n+ xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\"\n+ xsl:version=\"1.0\"\n+ xmlns:for=\"http://apache.org/forrest\"\n+ width=\"420\" height=\"65\" >\n+ <title>Anteater logo</title>\n+\n+ <defs>\n+\n+ <!--", "\n+ <radialGradient id=\"radialGradient\">\n+ <stop style=\"stop-color:gold\" offset=\"0\"/>\n+ <stop style=\"stop-color:orange\" offset=\".5\"/>\n+ <stop style=\"stop-color:crimson\" offset=\"1\"/>\n+ </radialGradient>\n+ <linearGradient id=\"linearGradient\">\n+ <stop style=\"stop-color:gold\" offset=\"0\"/>\n+ <stop style=\"stop-color:orange\" offset=\".5\"/>\n+ <stop style=\"stop-color:crimson\" offset=\"1\"/>\n+ </linearGradient>\n+ -->\n+\n+ <linearGradient id=\"gradient\" x1=\"0\" y1=\"0\" x2=\"0\" y2=\"1\">\n+ <stop style=\"stop-color:white\" offset=\"0\"/>\n+ <stop style=\"stop-color:lightgreen\" offset=\"1\"/>\n+ </linearGradient>\n+\n+ <filter id=\"shadowFilter\" filterUnits=\"objectBoundingBox\" width=\"1.4\" height=\"1.4\">\n+ <!-- ", "Takes the alpha channel (black outline of the text), blurs it and saves as 'blur' -->\n+ <feGaussianBlur in=\"SourceAlpha\" stdDeviation=\"2 2\" result=\"blur\"/>\n+ <!-- ", "Takes saved 'blur' and offsets it by 4 pixels, saves as 'offsetBlur' -->\n+ <feOffset in=\"blur\" dx=\"4\" dy=\"4\" result=\"offsetBlur\"/>\n+ <!-- ", "Merges SourceGraphic (original image) and 'offsetBlur', putting the\n+ former 'over' the latter, and using the merged result as the finished\n+ image -->\n+ <feComposite in=\"SourceGraphic\" in2=\"offsetBlur\" operator=\"over\"/>\n+ </filter>\n+\n+ </defs>\n+\n+ <g filter=\"url(#shadowFilter)\" fill=\"url(#gradient)\">\n+ <text x=\"100%\" y=\"60%\" style=\"font-size:24pt; font-family:Verdana ; text-anchor: end\" >\n+ <for:project-name />\n+ </text>\n+ </g>\n+</svg>\nPropchange: stdcxx/site/forrest/src/documentation/content/xdocs/images/project.svg\n------------------------------------------------------------------------------\nsvn:eol-style = native\nPropchange: stdcxx/site/forrest/src/documentation/content/xdocs/images/project.svg\n------------------------------------------------------------------------------\nsvn:keywords = Id\nAdded: stdcxx/site/forrest/src/documentation/content/xdocs/images/usemap.gif\nURL: http://svn.apache.org/viewvc/stdcxx/site/forrest/src/documentation/content/xdocs/images/usemap.gif?rev=618441&view=auto\n==============================================================================\nBinary file - no diff available.", "\nPropchange: stdcxx/site/forrest/src/documentation/content/xdocs/images/usemap.gif\n------------------------------------------------------------------------------\nsvn:mime-type = application/octet-stream\nAdded: stdcxx/site/forrest/src/documentation/content/xdocs/index.xml\nURL: http://svn.apache.org/viewvc/stdcxx/site/forrest/src/documentation/content/xdocs/index.xml?rev=618441&view=auto\n==============================================================================\n--- stdcxx/site/forrest/src/documentation/content/xdocs/index.xml (added)\n+++ stdcxx/site/forrest/src/documentation/content/xdocs/index.xml Mon Feb 4 13:20:33 2008\n@@ -0,0 +1,182 @@\n+<?", "xml version=\"1.0\" encoding=\"UTF-8\"?", ">\n+<!--", "\n+ Licensed to the Apache Software Foundation (ASF) under one or more\n+ contributor license agreements. ", "See the NOTICE file distributed with\n+ this work for additional information regarding copyright ownership.", "\n+ The ASF licenses this file to You under the Apache License, Version 2.0\n+ (the \"License\"); you may not use this file except in compliance with\n+ the License. ", "You may obtain a copy of the License at\n+\n+ http://www.apache.org/licenses/LICENSE-2.0\n+\n+ Unless required by applicable law or agreed to in writing, software\n+ distributed under the License is distributed on an \"AS IS\" BASIS,\n+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.", "\n+ See the License for the specific language governing permissions and\n+ limitations under the License.", "\n+-->\n+<!", "DOCTYPE document PUBLIC \"-//APACHE//DTD Documentation V2.0//EN\" \"http://forrest.apache.org/dtd/document-v20.dtd\">\n+<document>\n+ <header>\n+ <title>Apache C++ Standard Library (STDCXX)</title>\n+ </header>\n+ <body>\n+ <section id=\"overview\">\n+ <title>What is the Apache C++ Standard Library?</title>\n+ <p>\n+ The Apache C++ Standard Library project (code name stdcxx, pronounced \"standard C++ library\", not S-T-D-C-X-X) is a collection of algorithms, containers, iterators, and other fundamental components of every piece of software, implemented as C++ classes, templates, and functions essential for writing C++ programs.", "\n+</p>\n+<p>The goal of the Apache C++ Standard Library is to provide a free implementation of the ISO/IEC 14882 international standard for C++ that enables source code portability and consistent behavior of programs across all major hardware implementations, operating systems, and compilers, open source and commercial alike. ", "An additional goal is to achieve maximum implementation efficiency on each platform by taking advantage of platform-specific high-performance facilities and features which are often unique to the type of hardware, the operating system or the compiler.", "\n+</p>\n+<p>As the starting point for future efforts, in summer 2005 Rogue Wave Software has contributed its commercial implementation of the C++ Standard Library to the Apache stdcxx project, a proven code base that has been shipping for over a decade and is among the most widely used cross-platform implementations of the library.", "\n+</p>\n+<p>The key features of the stdcxx project at the time of submission include:\n+</p>\n+<ul>\n+ <li>Full conformance to the C++ standard</li>\n+ <li>Complete implementation of the localization library independent of the underlying operating system, including a large set of locale definition files, character set description files, and utility programs to process these files and generate locale databases</li>\n+ <li>User control over strict or permissive conformance checking</li>\n+ <li>Thread-safe implementation of strings, iostreams, and locales</li>\n+ <li>Reference counted basic_string implementation using atomic locking with the ability to switch to a non-reference counted implementation</li>\n+ <li>Excellent runtime performance</li>\n+ <li>Optimized for fast compiles and extremely small executable file sizes</li>\n+ <li>Portable to and fully tested on a large set of operating systems, including AIX, HP-UX, Linux, Solaris, Windows, etc.</li>\n+ <li>Portable to most leading commercial as well as open source compilers</li>\n+ <li>Debugging facilities such as safe iterators, precondition and postcondition checking, and the ability to generate stack traces</li>\n+ <li>Fully documented configuration and build infrastructure</li>\n+ <li>Thorough, well-maintained documentation</li>\n+ <li>Ten years of deployment in the world's most critical enterprise systems</li>\n+</ul>\n+ </section>\n+ <section id=\"objectives\">\n+ <title>Objectives</title>\n+ <p>The long-term objectives of the project include:</p>\n+ <ul>\n+ <li>Standards Conformance. ", "Continue to closely track the C++ Standard, as well as any other relevant standards.</li>\n+ <li>Portablity. ", "Continue to provide support for a broad set of platforms (C++ compilers, operating systems, and hardware architectures)</li>\n+ <li>Quality of Implementation. ", "Maintain the current high quality of implementation, which has come to be expected of all Apache projects. ", "This ranges from high runtime efficiency to high space efficiency, to high portability of data (in areas such as localization and internationalization which are typically not specified by the C++ or C standards), to facilitating the portability of program source code.</li>\n+ </ul>\n+ </section>\n+ <section id=\"news\">\n+ <title>Project News</title>\n+ <ul>\n+ <li>12/14/2007 STDCXX graduates from the Incubator and becomes a Top Level Project.</li>\n+ <li>11/29/2007 STDCXX community adds a new committer, Travis Vitek.</li>\n+ <li>10/29/2007 With the approval of the Incubator PMC, STDCXX 4.2.0 was released.</li>\n+ <li>10/16/2007 Proposal to graduate STDCXX to a Top Level Project passes the Incubator PMC vote.</li>\n+ <li>9/5/2007 STDCXX community adds two new committers, Eric (Brad) Lemings and Mark Brown.</li>\n+ <li>10/11/2006 STDCXX community adds a new committer, Andrew Black.</li>\n+ <li>8/26/2007 Started tracking project metrics at www.ohloh.net under Apache C++ Standard Library.</li>\n+ <li>6/1/2007 Started tracking site visitation at Google Analytics under stdcxx. ", "Send an email from your Google Mail account to dev to request access to the account.</li>\n+ <li>3/26/2007 Tim Triemstra joins the PPMC.</li>\n+ <li>2/13/2007 Andrew Black and Farid Zaripov join the PPMC.</li>\n+ <li>10/11/2006 STDCXX community adds a new committer, Andrew Black.</li>\n+ <li>8/10/2006 STDCXX community adds a new committer, Farid Zaripov.</li>\n+ <li>1/30/2006 With the approval of the Incubator PMC, STDCXX 4.1.3 was released.</li>\n+ <li>1/13/2006 STDCXX community adds a new committer, Anton Pevtsov.</li>\n+ <li>11/25/2005 Windows configuration and build infarstructure committed to Subversion (stdcxx-5).</li>\n+ <li>9/16/2005 The first snapshot of stdcxx 4.1.2 has been published.</li>\n+ <li>9/5/2005 The test suite driver committed to Subversion (stdcxx-3).</li>\n+ <li>9/1/2005 A proposal to publish the first stdcxx snapshot on the stdcxx Web site has passed the community vote.</li>\n+ <li>8/28/2005 The process of downloading stdcxx files documented on the Download page. (", "See stdcxx-17).</li>\n+ <li>8/01/2005 The process of reporting bugs in the stdcxx bug tracking database documented and published on the Bugs page. (", "See stdcxx-9.)</li>\n+ <li>7/19/2005 stdcxx project page committed to Subversion. ", "The project status page committed to Subversion.</li>\n+ <li>7/18/2005 stdcxx sources and documentation committed Subversion.</li>\n+ <li>5/19/2005 stdcxx project accepted for incubation.</li>\n+ <li>5/13/2005 stdcxx project proposal submitted to the Incubator mailing list.</li>\n+ </ul>\n+ </section>\n+ <section id=\"platforms\">\n+ <title>Platforms</title>\n+ <p>A key stdcxx objective is to facilitate the portability of C++ programs to as many platforms (hardware architectures, operating systems, and compilers) as practical. ", "It is envisaged that the set of platforms will evolve and grow as the project attracts contributors.</p>\n+<p>\n+\n+The project sources initially committed to the Subversion repository\n+(revision <a\n+href=\"http://svn.apache.org/viewcvs.cgi/incubator/stdcxx/?rev=219596\">219596</a>)\n+are based on Rogue Wave C++ Standard Library version 4.1.0. ", "The list\n+of platforms to which this version of the project was ported (but\n+which is expected to grow as the stdcxx project evolves) is:</p>\n+ </section>\n+ <section id=\"status\">\n+ <title>Project Status</title>\n+ <p>Stdcxx status reports to the ASF Board of Directors are stored in the status/ subdirectory of the site.</p>\n+ </section>\n+ <section id=\"users\">\n+ <title>Users</title>\n+ <p>\n+Stdcxx Users are Developers with read-only access, i.e., without Commit Access to the stdcxx Codebase who are using the project.", "\n+ </p>\n+ <p>\n+The mailing list appropriate for discussions of using the stdcxx project is [email protected]. ", "This is an archived, moderated mailing list open to all subscribers.", "\n+You may subscribe by sending a blank email to [email protected]. ", "To obtain additional information about this list send a blank email to [email protected].", "\n+</p>\n+\n+ </section>\n+ <section id=\"contributors\">\n+ <title>Contributors</title>\n+ <p>Stdcxx Contributors are Developers without commit (or write) access to the stdcxx codebase who directly or otherwise make improvements to the project codebase, including its Web pages. ", "This includes but is not limited to individuals who respond to questions on the project's mailing lists, review and provide helpful feedback on patches or commits, submit, provide helpful comments on, or triage bug reports, or contribute useful patches of their own. ", "Interested contributors may be voted to become Committers after a period of valuable activity.</p>\n+ <p>Because Contributors have read but not write access to stdcxx code repository, they can check stdcxx out and make changes to their local copy of stdcxx files but they cannot check them back in. ", "To get their changes committed, they must follow the process for Submitting Patches.</p>\n+<p>The stdcxx community welcomes new contributors. ", "If you are interested in getting involved, the first thing to do after reading the project Web pages is to subscribe to the dev mailing list and skimming the archives. ", "If you're looking for ideas for where your help might be needed, browse the bug database or simply ask on the maling list.", "\n+Committers\n+ </p>\n+ </section>\n+ <section id=\"committers\">\n+ <title>Committers</title>\n+ <p>Stdcxx Committers are Developers with commit (or write) access to the stdcxx codebase. ", "For safe changes on trunk all stdcxx committers follow the Commit-Then-Review policy (CTR for short). ", "For potentially unsafe changes or any changes to branches all stdcxx committers follow the Review-Then-Commit policy (RTC for short). ", "Whether a change is safe or not is a judgment call that should be made after careful testing of the change on at least two different platforms with two different compilers. ", "The list of current committers in alphabetical order is below:</p>\n+<p>Committers in italics do not yet have a signed Contributor License Agreement on file. ", "This indicates a transient state after a committer has been voted in but their CLA hasn't been received or processed by the foundation.", "\n+\n+An up-to-date list of all Apache committers (or committers-to-be) is being maintained by Jim Jagielski on this page.", "\n+\n+The mailing list used by stdcxx committers for discussions of the maintenance, development, and porting of the stdcxx project is [email protected]. ", "This is an archived, moderated mailing list open to all subscribers. ", "You may subscribe by sending a blank email to [email protected].", "\n+ </p>\n+ </section>\n+ <section id=\"PMC\">\n+ <title>PMC</title>\n+ <p>The stdcxx Project Management Committee (PMC) is a group of volunteers responsible for the formal oversight of the stdcxx podling, its management, and for interfacing with the Apache Board of Directors. ", "The members of the stdcxx PMC are:</p>\n+ <p></p>\n+<p>The PMC mailing list is [email protected]. ", "This is a moderated, by-invitation-only mailing list closed to the public. ", "Invited individuals can subscribe by sending a blank email to [email protected].", "\n+\n+An example of a topic that might be appropriate for this list is a discussion of the merits of a proposed committer.", "\n+ </p>\n+ </section>\n+ <section id=\"communication\">\n+ <title>Communication</title>\n+\n+<p>\n+ Communication about the project and all decisions take place on the project's mailing lists. ", "There are a number good reasons why communicating on mailing lists is preferable to other ways of communicating, including private email or instant messaging. ", "Some of the important ones include:</p>\n+<ul>\n+ <li>Unlike communicating in private, mailing lists make it possible for all list subscribers to benefit from the discussion, and provides an opportunity for those who wouldn't be invited to the private discussion to offer their own feedback on the subject.</li>\n+ <li>Unlike Instant Messaging, mailing list make it possible for interested parties to participate asynchronously, regardless of which time zone they are located in.</li>\n+ <li>Unlike private communications, mailing list discussions are archived for future reference, with the archives being easily searchable by anyone interested. ", "Mailing list archives are important not just so that new contributors can learn from past decisions but they are an indispensable tool also for long-time committers when we forget why certain things were done a certain way.</li>\n+ <li>It is the preferred mode of communicating for all Apache projects. ", "See the Communication section of How the ASF works.</li>\n+</ul>\n+<p>\n+If you choose to contact one of the project committers in private expect to be directed to the mailing lists.", "\n+ </p>\n+ </section>\n+ <section id=\"mailing_lists\">\n+ <title>Mailing Lists</title>\n+ <p>The following table provides a summary of information about stdcxx mailing lists along with a number of interfaces to their archives.", "\n+ All lists are moderated. ", "Only subscribers may post. ", "Subscription to private is by invitation of the PMC only.", "\n+ With one exception, the activity of each list is monitored and can be viewed along with other interesting information on this page maintained by Ken Coar.", "\n+ </p>\n+ </section>\n+ <section id=\"references\">\n+ <title>References</title>\n+\n+\n+ <p>A number of excellent design and programming books describe the C++ Standard Library in an approachable way. ", "In addition, besides the required Class Reference, this implementation of the library also includes an extensive User Guide complete with tutorials and example programs. ", "That being said, the ultimate reference to the C++ Standard Library is, of course, the C++ Standard itself (and to a smaller extent, also the C Standard). ", "An electronic copy of the most recent version of the C++ and C standards can be obtained from the ANSI eStandards store.</p>\n+ <ul>\n+ <li>INCITS/ISO/IEC 14882-2003 Programming Languages -- C++</li>\n+ <li>INCITS/ISO/IEC 9899-1999 Programming Languages -- C</li>\n+ <li>The C++ Standard Library: A Tutorial and Reference by Nicolai M. Josuttis</li>\n+ <li>Generic Programming and the STL: Using and Extending the C++ Standard Template Library by Matthew H. Austern</li>\n+ <li>Stl Tutorial &amp; Reference Guide: C++ Programming With the Standard Template Library by David R. Musser and Atul Saini</li>\n+ <li>The C++ Standard Template Library by P.J. Plauger, Alexander A. Stepanov, Meng Lee, and David R. Musser</li>\n+ <li>Effective STL: 50 Specific Ways to Improve Your Use of the Standard Template Library by Scott Meyers</li>\n+ <li>Standard C++ IOStreams and Locales: Advanced Programmer's Guide and Reference by Angelika Langer, Klaus Kreft</li>\n+ </ul>\n+ </section>\n+ </body>\n+</document>\nPropchange: stdcxx/site/forrest/src/documentation/content/xdocs/index.xml\n------------------------------------------------------------------------------\nsvn:eol-style = native\nPropchange: stdcxx/site/forrest/src/documentation/content/xdocs/index.xml\n------------------------------------------------------------------------------\nsvn:keywords = Id\nAdded: stdcxx/site/forrest/src/documentation/content/xdocs/site.xml\nURL: http://svn.apache.org/viewvc/stdcxx/site/forrest/src/documentation/content/xdocs/site.xml?rev=618441&view=auto\n==============================================================================\n--- stdcxx/site/forrest/src/documentation/content/xdocs/site.xml (added)\n+++ stdcxx/site/forrest/src/documentation/content/xdocs/site.xml Mon Feb 4 13:20:33 2008\n@@ -0,0 +1,62 @@\n+<?", "xml version=\"1.0\" encoding=\"UTF-8\"?", ">\n+<!--", "\n+ Licensed to the Apache Software Foundation (ASF) under one or more\n+ contributor license agreements. ", "See the NOTICE file distributed with\n+ this work for additional information regarding copyright ownership.", "\n+ The ASF licenses this file to You under the Apache License, Version 2.0\n+ (the \"License\"); you may not use this file except in compliance with\n+ the License. ", "You may obtain a copy of the License at\n+\n+ http://www.apache.org/licenses/LICENSE-2.0\n+\n+ Unless required by applicable law or agreed to in writing, software\n+ distributed under the License is distributed on an \"AS IS\" BASIS,\n+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.", "\n+ See the License for the specific language governing permissions and\n+ limitations under the License.", "\n+-->\n+<!--", "\n+Forrest site.xml\n+\n+This file contains an outline of the site's information content. ", "It is used to:\n+- Generate the website menus (though these can be overridden - see docs)\n+- Provide semantic, location-independent aliases for internal 'site:' URIs, eg\n+<link href=\"site:changes\"> links to changes.html (or ../changes.html if in\n+ subdir).", "\n+- Provide aliases for external URLs in the external-refs section. ", "Eg, <link\n+ href=\"ext:cocoon\"> links to http://cocoon.apache.org/\n+\n+See http://forrest.apache.org/docs/linking.html for more info\n+-->\n+<!-- ", "The label attribute of the outer \"site\" element will only show\n+ in the linkmap (linkmap.html).", "\n+ Use elements project-name and group-name in skinconfig to change name of\n+ your site or project that is usually shown at the top of page.", "\n+ No matter what you configure for the href attribute, Forrest will\n+ always use index.html when you request http://yourHost/\n+ See FAQ: \"How can I use a start-up-page other than index.html?\"", "\n+-->\n+<site label=\"Apache stdcxx\" href=\"\" xmlns=\"http://apache.org/forrest/linkmap/1.0\" tab=\"\">\n+ <about label=\"About\" tab=\"home\">\n+ <index label=\"Index\" href=\"index.html\" description=\"Welcome to stdcxx\"/>\n+ <bugs label=\"Bugs\" href=\"bugs.html\" description=\"Bugs\"/>\n+ <readme label=\"Readme\" href=\"ext:readme\" description=\"External link to SVN Readme file\"/>\n+ <license label=\"License\" href=\"ext:license\" description=\"External link to Apache License 2.0\"/>\n+ </about>\n+ <downloads label=\"Downloads\" tab=\"download\">\n+ <download label=\"Download\" href=\"download.html\" description=\"Download\"/>\n+ </downloads>\n+ <documentation label=\"Documentation\" tab=\"home\">\n+ <classref label=\"Class Reference\" href=\"ext:class-ref\" description=\"Class Reference Guide\"/>\n+ <userref label=\"User Guide\" href=\"ext:user-guide\" description=\"User Reference Guide\"/>\n+ </documentation>\n+ <external-refs>\n+ <forrest href=\"http://forrest.apache.org/\">\n+ <linking href=\"docs/linking.html\"/>\n+ </forrest>\n+ <readme href=\"http://svn.apache.org/repos/asf/stdcxx/trunk/README\"/>\n+ <class-ref href=\"http://stdcxx.apache.org/doc/stdlibref/index.html\"/>\n+ <user-guide href=\"http://stdcxx.apache.org/doc/stdlibug/index.html\"/>\n+ <license href=\"http://www.apache.org/licenses/LICENSE-2.0\"/>\n+ </external-refs>\n+</site>\nPropchange: stdcxx/site/forrest/src/documentation/content/xdocs/site.xml\n------------------------------------------------------------------------------\nsvn:eol-style = native\nPropchange: stdcxx/site/forrest/src/documentation/content/xdocs/site.xml\n------------------------------------------------------------------------------\nsvn:keywords = Id\nAdded: stdcxx/site/forrest/src/documentation/content/xdocs/tabs.xml\nURL: http://svn.apache.org/viewvc/stdcxx/site/forrest/src/documentation/content/xdocs/tabs.xml?rev=618441&view=auto\n==============================================================================\n--- stdcxx/site/forrest/src/documentation/content/xdocs/tabs.xml (added)\n+++ stdcxx/site/forrest/src/documentation/content/xdocs/tabs.xml Mon Feb 4 13:20:33 2008\n@@ -0,0 +1,39 @@\n+<?", "xml version=\"1.0\" encoding=\"UTF-8\"?", ">\n+<!--", "\n+ Licensed to the Apache Software Foundation (ASF) under one or more\n+ contributor license agreements. ", "See the NOTICE file distributed with\n+ this work for additional information regarding copyright ownership.", "\n+ The ASF licenses this file to You under the Apache License, Version 2.0\n+ (the \"License\"); you may not use this file except in compliance with\n+ the License. ", "You may obtain a copy of the License at\n+\n+ http://www.apache.org/licenses/LICENSE-2.0\n+\n+ Unless required by applicable law or agreed to in writing, software\n+ distributed under the License is distributed on an \"AS IS\" BASIS,\n+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.", "\n+ See the License for the specific language governing permissions and\n+ limitations under the License.", "\n+-->\n+<!", "DOCTYPE tabs PUBLIC \"-//APACHE//DTD Cocoon Documentation Tab V1.1//EN\" \"http://forrest.apache.org/dtd/tab-cocoon-v11.dtd\">\n+<tabs software=\"MyProj\"\n+ title=\"MyProj\"\n+ copyright=\"Foo\"\n+ xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n+<!-- ", "The rules for tabs are:\n+ @dir will always have '/@indexfile' added.", "\n+ @indexfile gets appended to @dir if the tab is selected. ", "Defaults to 'index.html'\n+ @href is not modified unless it is root-relative and obviously specifies a\n+ directory (ends in '/'), in which case /index.html will be added\n+ If @id's are present, site.xml entries with a matching @tab will be in that tab.", "\n+\n+ Tabs can be embedded to a depth of two. ", "The second level of tabs will only\n+ be displayed when their parent tab is selected.", "\n+ -->\n+ <tab id=\"home\" label=\"Home\" dir=\"\" indexfile=\"index.html\"/>\n+ <tab id=\"download\" label=\"Download\" dir=\"\" indexfile=\"download.html\"/>\n+<!-- ", "Add new tabs here, eg:\n+ <tab label=\"How-Tos\" dir=\"community/howto/\"/>\n+ <tab label=\"XML Site\" dir=\"xml-site/\"/>\n+ -->\n+</tabs>\nPropchange: stdcxx/site/forrest/src/documentation/content/xdocs/tabs.xml\n------------------------------------------------------------------------------\nsvn:eol-style = native\nPropchange: stdcxx/site/forrest/src/documentation/content/xdocs/tabs.xml\n------------------------------------------------------------------------------\nsvn:keywords = Id\nAdded: stdcxx/site/forrest/src/documentation/resources/images/Thumbs.db\nURL: http://svn.apache.org/viewvc/stdcxx/site/forrest/src/documentation/resources/images/Thumbs.db?rev=618441&view=auto\n==============================================================================\nBinary file - no diff available.", "\nPropchange: stdcxx/site/forrest/src/documentation/resources/images/Thumbs.db\n------------------------------------------------------------------------------\nsvn:mime-type = application/octet-stream\nAdded: stdcxx/site/forrest/src/documentation/resources/images/stdcxx.png\nURL: http://svn.apache.org/viewvc/stdcxx/site/forrest/src/documentation/resources/images/stdcxx.png?rev=618441&view=auto\n==============================================================================\nBinary file - no diff available.", "\nPropchange: stdcxx/site/forrest/src/documentation/resources/images/stdcxx.png\n------------------------------------------------------------------------------\nsvn:mime-type = application/octet-stream\nAdded: stdcxx/site/forrest/src/documentation/resources/schema/catalog.xcat\nURL: http://svn.apache.org/viewvc/stdcxx/site/forrest/src/documentation/resources/schema/catalog.xcat?rev=618441&view=auto\n==============================================================================\n--- stdcxx/site/forrest/src/documentation/resources/schema/catalog.xcat (added)\n+++ stdcxx/site/forrest/src/documentation/resources/schema/catalog.xcat Mon Feb 4 13:20:33 2008\n@@ -0,0 +1,29 @@\n+<?", "xml version=\"1.0\"?", ">\n+<!--", "\n+ Licensed to the Apache Software Foundation (ASF) under one or more\n+ contributor license agreements. ", "See the NOTICE file distributed with\n+ this work for additional information regarding copyright ownership.", "\n+ The ASF licenses this file to You under the Apache License, Version 2.0\n+ (the \"License\"); you may not use this file except in compliance with\n+ the License. ", "You may obtain a copy of the License at\n+\n+ http://www.apache.org/licenses/LICENSE-2.0\n+\n+ Unless required by applicable law or agreed to in writing, software\n+ distributed under the License is distributed on an \"AS IS\" BASIS,\n+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.", "\n+ See the License for the specific language governing permissions and\n+ limitations under the License.", "\n+-->\n+<!", "DOCTYPE catalog PUBLIC \"-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN\"\n+\"http://www.oasis-open.org/committees/entity/release/1.0/catalog.dtd\">\n+<!-- ", "OASIS XML Catalog for Forrest Documents -->\n+<catalog xmlns=\"urn:oasis:names:tc:entity:xmlns:xml:catalog\"\n+ prefer=\"public\">\n+<!-- ", "Example catalog entry -->\n+ <public publicId=\"-//Acme//DTD Hello Document V1.0//EN\"\n+ uri=\"hello-v10.dtd\"/>\n+<!-- ", "Sets of symbols. ", "e.g. for string replacements -->\n+ <public publicId=\"-//Apache Forrest//ENTITIES Symbols Project v1.0//EN\"\n+ uri=\"symbols-project-v10.ent\"/>\n+</catalog>\nPropchange: stdcxx/site/forrest/src/documentation/resources/schema/catalog.xcat\n------------------------------------------------------------------------------\nsvn:eol-style = native\nPropchange: stdcxx/site/forrest/src/documentation/resources/schema/catalog.xcat\n------------------------------------------------------------------------------\nsvn:keywords = Id" ]
{ "pile_set_name": "Pile-CC" }
[ 0.009174311926605505, 0, 0, 0, 0, 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, 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.0004411116012351125, 0.009345794392523364, 0.012195121951219513, 0.009771986970684038, 0.009523809523809525, 0, 0, 0, 0, 0.0009242144177449168, 0.02857142857142857, 0, 0.009615384615384616, 0.009433962264150943, 0.012422360248447204, 0.009966777408637873, 0.009708737864077669, 0, 0, 0.0021482277121374865, 0.015151515151515152, 0.01, 0, 0.003083247687564234, 0.009345794392523364, 0.012195121951219513, 0.009771986970684038, 0.009523809523809525, 0.007462686567164179, 0, 0, 0.009708737864077669, 0.008403361344537815, 0, 0.011695906432748537, 0.011904761904761904, 0, 0.005319148936170213, 0.0035087719298245615, 0.001001001001001001, 0.02857142857142857, 0, 0.009615384615384616, 0.009433962264150943, 0.012422360248447204, 0.009966777408637873, 0.009708737864077669, 0.005780346820809248, 0.006042296072507553, 0.0008271298593879239, 0.02857142857142857, 0, 0.009615384615384616, 0.009433962264150943, 0.012422360248447204, 0.009966777408637873, 0.009708737864077669, 0, 0.00196078431372549, 0, 0, 0, 0.007142857142857143, 0, 0.024096385542168676, 0.002197802197802198, 0, 0, 0, 0, 0, 0, 0, 0.0053475935828877, 0, 0.001834862385321101, 0, 0, 0, 0.004048582995951417, 0, 0, 0, 0, 0.001177856301531213, 0.004672897196261682, 0, 0, 0, 0, 0, 0.001392757660167131, 0.0029585798816568047, 0, 0, 0, 0, 0, 0, 0.004024144869215292, 0.011904761904761904, 0, 0, 0, 0, 0, 0, 0.008130081300813009, 0, 0.02040816326530612, 0, 0.00423728813559322, 0.007194244604316547, 0, 0, 0, 0, 0, 0, 0.0035211267605633804, 0.02857142857142857, 0, 0.009615384615384616, 0.009433962264150943, 0.012422360248447204, 0.009966777408637873, 0.009708737864077669, 0, 0.004081632653061225, 0, 0, 0, 0, 0, 0.0037593984962406013, 0, 0, 0, 0, 0, 0.008, 0, 0.004739336492890996, 0.0029239766081871343, 0.029411764705882353, 0, 0.009615384615384616, 0.009433962264150943, 0.012422360248447204, 0.009966777408637873, 0.009708737864077669, 0, 0.03225806451612903, 0, 0.03278688524590164, 0, 0.03333333333333333, 0.008928571428571428, 0.04411764705882353, 0, 0.015723270440251572, 0, 0, 0, 0.0018018018018018018, 0.0019011406844106464, 0.002881844380403458, 0.029411764705882353, 0, 0.009615384615384616, 0.009433962264150943, 0.012422360248447204, 0.009966777408637873, 0.009708737864077669, 0, 0.03225806451612903, 0, 0.03278688524590164, 0, 0.03333333333333333, 0.008928571428571428, 0.04411764705882353, 0, 0.015625, 0, 0, 0, 0.0017873100983020554, 0.0015313935681470138, 0.02857142857142857, 0, 0.009615384615384616, 0.009433962264150943, 0.012422360248447204, 0.009966777408637873, 0.009708737864077669, 0, 0.003236245954692557, 0.0061162079510703364, 0, 0.006024096385542169, 0.0012953367875647669, 0.009259259259259259, 0, 0, 0.00931098696461825, 0.010080645161290322, 0.006802721088435374, 0, 0, 0.0058823529411764705, 0.0019305019305019305, 0.008695652173913044, 0, 0.012195121951219513, 0.010101010101010102, 0, 0, 0, 0, 0, 0, 0.0055248618784530384, 0.00980392156862745, 0.014925373134328358, 0, 0, 0.007407407407407408, 0.008333333333333333, 0.00641025641025641, 0, 0.01282051282051282, 0.01107011070110701, 0.028846153846153848, 0, 0.01020408163265306, 0, 0, 0, 0, 0, 0.00558659217877095, 0, 0, 0, 0.017543859649122806, 0.006369426751592357, 0.005128205128205128, 0.0058823529411764705, 0.012903225806451613, 0.010662177328843996, 0.02857142857142857, 0, 0.009615384615384616, 0.009433962264150943, 0.012422360248447204, 0.009966777408637873, 0.009708737864077669, 0, 0, 0, 0, 0.02112676056338028, 0, 0, 0.005208333333333333, 0.004833252779120348, 0.02857142857142857, 0, 0.009615384615384616, 0.009433962264150943, 0.012422360248447204, 0.009966777408637873, 0.009708737864077669, 0, 0.00851063829787234, 0.029411764705882353, 0.03333333333333333, 0.01195219123505976, 0, 0, 0, 0.003865979381443299, 0.0019880715705765406, 0.001488095238095238, 0.05555555555555555, 0, 0.009615384615384616, 0.009433962264150943, 0.012422360248447204, 0.009966777408637873, 0.009708737864077669, 0, 0.01282051282051282, 0.007633587786259542, 0, 0, 0.0019569471624266144 ]
0.005159
5
[ "using System;\n\nnamespace ViennaNET.ArcSight.", "Exceptions\n{\n /// <summary>\n /// Исключение, возникающее при наличии ошибки в\n /// значениях полей передаваемого сообщения. ", "<see cref=\"CefMessage\"/>\n /// </summary>\n public class CefMessageValidationException : Exception\n {\n public CefMessageValidationException(string message) : base (message)\n {\n }\n }\n}" ]
{ "pile_set_name": "Github" }
[ 0.022222222222222223, 0, 0 ]
0.007407
5
[ "The Senate passed legislation on Thursday breaking with President Trump Donald John TrumpBubba Wallace to be driver of Michael Jordan, Denny Hamlin NASCAR team Graham: GOP will confirm Trump's Supreme Court nominee before the election Southwest Airlines, unions call for six-month extension of government aid MORE’s Syria policy.", "\n\nSenators voted 77-23 to send the legislation to the House that includes a provision warning Trump against a “precipitous” withdrawal of troops from Syria and Afghanistan.", "\n\nADVERTISEMENT\n\nIt also asks the administration to certify that certain conditions have been met \"for the enduring defeat of al Qaeda and ISIS before initiating any significant withdrawal of United States forces from Syria or Afghanistan.\"", "\n\nThe bill was approved after it overcame a filibuster earlier this week.", "\n\n“I keep reading where the national media writes that the United States Senate rebuked — they used the word 'rebuked' — President Trump. ", "Nothing could be further from the truth,” Risch, the chairman of the Foreign Relations Committee, said.", "\n\nIn addition to the Syria amendment, the bill also included sanctions against the Syrian government, increased support for Israel and Jordan and a provision that would let states penalize businesses that take part in boycotts or divestments of Israel.", "\n\nBoth the Syria amendment and the anti-BDS provisions sparked division among Democrats.", "\n\nSen. Chris Murphy Christopher (Chris) Scott MurphyDemocratic senator calls for 'more flexible' medical supply chain to counter pandemics The Hill's 12:30 Report - Presented by Facebook - Don't expect a government check anytime soon GOP chairman to release interim report on Biden probe 'in about a week' MORE (D-Conn.) warned that the Syria proposal, offered by Senate Majority Leader Mitch McConnell Addison (Mitch) Mitchell McConnellGraham: GOP will confirm Trump's Supreme Court nominee before the election Trump puts Supreme Court fight at center of Ohio rally The Memo: Dems face balancing act on SCOTUS fight MORE (R-Ky.), is “the absolute wrong way to address President Trump’s backwards foreign policy in the Middle East.”", "\n\nIn response to concerns from Democrats, the Senate easily cleared a tweak to McConnell's amendment that would clarify that the resolution should not be \"constructed as a declaration of war or an authorization of the use of military force.\"", "\n\nTrump's decision to withdraw troops from Syria, which precipitated the resignation of former Defense Secretary James Mattis James Norman MattisBiden courts veterans amid fallout from Trump military controversies Trump says he wanted to take out Syria's Assad but Mattis opposed it Gary Cohn: 'I haven't made up my mind' on vote for president in November MORE, sparked fierce backlash on Capitol Hill.", "\n\nTwo officials told The New York Times last year that the administration had ordered the U.S. military to start withdrawing troops in Afghanistan, but Trump, who has long railed against the war there, has not made an official announcement.", "\n\nThe Washington Post reported last week that the United States and the Taliban were moving closer to a deal that could result in the removal of U.S. troops from the country.", "\n\nMeanwhile, Democrats had raised First Amendment concerns about the anti-BDS provision, which splintered most of the party’s 2020 contenders and caucus leadership.", "\n\n“While I do not support the BDS movement, we must defend every American’s constitutional right to engage in political activity. ", "It is clear to me that this bill would violate Americans’ First Amendment rights,” Sen. Bernie Sanders Bernie SandersJacobin editor: Primarying Schumer would force him to fight Trump's SCOTUS nominee Trump campaign plays up Biden's skills ahead of Cleveland debate: 'He's actually quite good' Young voters backing Biden by 2:1 margin: poll MORE (I-Vt.) ", "said in a statement last week." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.030395136778115502, 0.011627906976744186, 0.008333333333333333, 0, 0.014492753623188406, 0.009708737864077669, 0, 0, 0.020491803278688523, 0.008298755186721992, 0.01990049751243781, 0.008333333333333333, 0.011494252873563218, 0, 0.007692307692307693, 0.019830028328611898, 0 ]
0.010035
5
[ "Properties of Cobalt and Nickel in Aqueous Solution\nCobalt and nickel have very similar chemical properties. ", "In aqueous solution both elements are normally found as divalent cations (e.g. Co++ or Ni++) in acid solution, with similar solubilities.", "\nBoth are soluble as the respective sulphates, chlorides, or nitrates in acid solution, but are largely insoluble in alkaline conditions unless chelating agents are present. (", "Both cations are chelated strongly by ammonia, for example). ", "Their sulphide compounds have similar properties, (the KSP values are similar leading to a similar pH of formation with S2− ions), as do their respective carbonates.", "\nThis phenomenon presents an ongoing problem for the extractive metallurgist, as Co and Ni are invariably found together in naturally occurring ores, but must ultimately be separated to make maximum use of each metal. ", "Fortunately however, there are exceptions to this pattern of similar behavior, which can be exploited, and will be discussed below.", "\nRatio of Cobalt to Nickel Occurring Naturally in Nickel Ores\nNi and Co commonly occur together in nature as sulphide ore deposits, and the ratio of Co:Ni in Ni ores is surprisingly constant in the range of about 1:15 up to 1:30. ", "This is true at least in unaltered sulphide ores; although this ratio can be quite different if weathering of the ores has occurred, (over many millennia),\nA general review of nickel metallurgy is to be found in the excellent book “The Winning of Nickel”, by Joseph P. Boldt Jr., and Paul Queneau Sr., ", "published by Methuen and Co. 1967. ", "A more recent review of laterites in particular is found in “The Past and Future of Nickel Laterites,” by Ashok Dalvi, Gordon Bacon, and Robert Osborne in: PDAC 2004 International Convention, Trade Show and Investors' Exchange, (Mar. 7-10, 2004).", "\nWeathering of surface Ni deposits is common especially in tropical countries, and such deposits are usually referred to as Ni laterites; due to slight differences in chemistry, this weathering frequently results in a partial separation of Ni and Co over a vertical horizon, compared to the original sulphide ore. ", "Some concentration of Co into the so-called limonite layer often is the result, so Co:Ni ratios in laterites considered for hydrometallurgical processing vary substantially from the usual ratio in sulphides, e.g. a ratio of 1:10 or even lower may be found in limonite.", "\nCo Separation from Nickel in a Leach Solution . . . . ", "Overview\nThe distribution of Co and Ni in most leaching processes is very similar. ", "Thus leaching of Ni—Co ores or concentrates usually results in a mixed solution of Co and Ni, as well as other materials.", "\nHowever, Ni and Co have to be separated eventually to obtain maximum use and payment for each element, as their end-use is significantly different, e.g. different metal alloys. ", "With only a few notable exceptions, Ni is much more abundant in ores or concentrates than Co. Thus in a mixed Ni—Co solution, the problem of separation can be more accurately stated as separating Co (as an impurity, albeit of value) from a Ni solution. ", "It also happens that Co has a few specific chemical properties that allow for its selective extraction from a mixture of elements in solution, whereas Ni in general does not have such properties.", "\nA variety of processes have been (and some still are) used commercially to achieve this objective, but all of them have significant costs, and it is the objective of the present invention to provide a more efficient and more cost-effective method.", "\nAlso, because of the greater value of Co, this need to purify the Ni solution of Co should not obscure the secondary need to also recover Co itself in an economic manner, which is part of the present invention.", "\nA number of processes have been used commercially for Co separation from Ni, for example:\nPrecipitation of Co from Ni—Co Solution as Co(OH)3 \nThis is an old process, (see the above-referenced book by Boldt and Queneau), one of the first known methods, and still used commercially. ", "With strong oxidants, a Co++ solution can readily be oxidized to Co+++, which is essentially insoluble in dilute acid solution (say pH 2-6). ", "Co is thus precipitated as Co(OH)3 whilst the Ni stays largely in solution. ", "Oxidants used for this purpose include Cl2 and ozone. ", "Electro-oxidation can also be used. ", "However, the process is costly and inefficient, due to significant co-oxidation of Ni++ to a similar product, and has generally fallen out of favour.", "\nSelective Solvent Extraction (SX) of Co from Ni—Co Solution\nThis approach has been the subject of many investigations, some of which have been commercialized, and some of these are listed in the referenced article, “Cobalt-Nickel Separation in Hydrometallurgy: a Review,” by Douglas S. Flett, in: Chemistry for Sustainable Development 12 (2004), pages 81-91. ", "There are some organic extractants which will selectively extract Co with respect to Ni. ", "Primarily these are one of two types:\ni) Ternary and quaternary amines (Alamine™ 336 for example), which can extract some metal chloride complexes (e.g. CoCl42−) from a strong chloride aqueous environment. ", "Unusually, Ni doesn't form such chloride complexes, so a good separation of Ni from other elements can sometimes be achieved. ", "However, the requirement of the strong chloride concentration (several molar) severely limits the applicability of the process, and in reality omits it from serious consideration for a typical leach liquor.", "\nii) Phosphinic acids (e.g. bis 2,4,4-trimethylpentyl phosphinic acid, sold commercially as Cyanex™ 272), which will extract Co selectively over Ni, without the need for a chelating agent as in the amines. ", "Although this extractant works well in pure solutions, unfortunately it also extracts many other metals commonly found in leach solutions, such as Mg and Mn, which limits its usefulness. ", "This limitation is illustrated in the first two Examples described below. ", "Although Mg can be scrubbed off the loaded organic stream by Ni/Co (with difficulty), by using a large number of mixer/settlers in counter-current mode, as was done at the Bulong plant (described by Donegan (“Direct Solvent Extraction of Nickel at Bulong Operations,” by S. Donegan, in: Minerals Engineering 19 (2006), pages 1234-1245), Mn cannot be scrubbed off. ", "The only remedy is to co-extract all the Mn along with the Co, and pay for the cost of the Mn extraction/stripping, particularly the cost of the ammonia used for neutralization of the organic extractant. ", "As a result of this limitation, Cyanex 272 is best applied after some prior purification, which itself is both costly and inefficient.", "\nSelective SX of Ni from Ni—Co Solution\nThis approach was invented and commercialized at the Queensland Nickel (QNI) plant in Yabulu, Queensland, Australia, very successfully in the 80's, and is well summarized by the above-referenced Flett review article, and also by Reid and Price.", "\n(Reid, J G and Price, M J, 1993. ", "Ammoniacal solvent extraction at Queensland Nickel: Process installation and operation, in Solvent Extraction in the Process Industries Volume 1 (Proceedings of International Solvent Extraction Conference 1993) (eds: D H Logsdail and M J Slater), pp 225-231 (Elsevier Applied Science: London and New York.", "\nThe process is effective but suffers from high cost, as the major component (Ni), is being extracted away from the ‘impurity’ (Co), generally a more expensive route than the opposite. ", "The impurities are all left with the Co.\nAlso the extractant used (hydroxyoxime) is prone to rapid degradation by Co II oxidation, and hence must be re-oximated on a regular basis, at considerable cost. ", "Pre-oxidation of Co II to Co III is necessary to minimize this problem, but is not 100% effective, leading to continuous re-oximation of the extractant, at high cost.", "\nStripping of the Ni from the loaded organic can be done with either strong ammonia solutions (250 g/l NH3), or by acid, as was done at the Cawse mine in Western Australia for a while, as discussed by Flett (referenced above). ", "The former fits in well with NiCO3 production, (by steam stripping of NH3), the latter with a Ni electrowinning flowsheet.", "\nAlthough technically feasible, this approach is relatively expensive as noted, and does not produce a pure Co product, as the Ni left in the raffinate produces a Ni:Co ratio in this stream of at least 1:1. ", "At Yabulu, a separate Co refinery had to be built eventually for re-processing of the Co-rich stream, and this refinery had its own technical and financial challenges.", "\nHydrogen Reduction of Ni from Ni—Co Solution\nThis approach was first commercialized in about 1950 at the Sherritt Gordon plant in Fort Saskatchewan, Alberta, as described by Boldt et al. ", "The method has been considered the standard process for nickel recovery by some designers; it has been installed in several other nickel plants since, but suffers from significant drawbacks: Batch mode operation. ", "The process apparently can only be operated in this way, (instead of the usual continuous mode). ", "This then requires multiple units (autoclaves), with low operating time (need to fill and discharge each batch autoclave frequently) These features lead to high capital and operating costs Heightened safety and occupational health requirements Need for concentrated Ni solution (50-100 g/l [Ni]), and high solution feed temperatures, approx 200° C., again leading to high costs. ", " Need for careful control of pH, in pH 7.0 range, with high background levels of ammonium sulphate (200 g/l). ", " Large by-product production of ammonium sulphate crystals, at about 7× tonnage of Ni metal production, necessitating evaporative crystallizers, filters, dryers, bagging, storage facilities, etc. ", "All leading to high costs. ", " Technically complex, thus requiring high level of technical skill, and expensive engineering input from a very limited number of qualified suppliers Further processing costs, downstream from the actual hydrogen reduction due to need for further purification to remove trace amounts of impurities such as S and O. High temperature oxidation and reduction furnaces are needed for this purification. ", " Relatively poor quality of Ni product, regarding Co content Poor quality of Co product, as the raffinate contains a Ni:Co ratio of about 1:1, leading to need for another Co refining step, similar to the process described in previous section.", "Difficulties with Separation of Cobalt from Nickel in the Presence of Impurities \nAs described in the previous section, Co separation from Ni is difficult, and specific to each situation, e.g. solution chemistry and particularly the impurities in the Co—Ni solution. ", "For solutions derived from leaching sulphide concentrates (as at Sherritt Gordon, for example), impurities are generally confined to other base metals such as Fe, Cu and Zn, which can be removed efficiently by known purification methods.", "\nHowever, for acidic solutions derived from leaching of laterite ores, other impurities are found, particularly Mg and Mn, and often in much greater concentrations relative to the Ni and Co concentrations, e.g. as much as 10× greater. ", "This situation makes it near difficult to use the preferred Cyanex 272 Co extraction method described above without some form of pre-treatment to separate Co and Ni from these impurities, or alternatively pay for the expense of co-extracting Mn.", "\nThus, unless Mn extraction is to be tolerated and paid for, treatment of laterite leach liquors is usually required to choose one of two routes: Precipitation of Ni and Co in acid solution away from impurities as much as possible, followed by re-leaching to form a new solution with reduced impurity content. ", "This approach for example was followed in the Murrin plant, which is described by Campbell et al in U.S. Pat. ", "No. ", "7,387,767, and also in the Cawse plant, described by White in U.S. Pat. ", "No. ", "6,409,979. ", " Leach in an ammoniacal alkaline environment, wherein most of damaging impurities are largely absent. ", "This approach is adopted by the Caron process, for example (described in Boldt and Queneau), which was used at the QNI plant in Yabulu mentioned above, (now under different ownership and renamed). ", " \nThe Caron process requires a pretreatment process of its own, a reductive roast at high temperature. ", "This is a pyrometallurgical process, and requires high capital investment. ", "It also has high energy requirements and thus has high operating costs. ", "For these reasons, it is generally not considered today, although a few plants built years ago are still operating.", "\nPractically then, one is confined to the precipitation and releach option as a pre-treatment prior to Co—Ni separation.", "\nFor laterite ores therefore, it is desirable, even necessary, that the Mn/Mg be separated out from Ni/Co by first precipitating the Ni/Co from solution, and then releaching. ", "This is usually done by one of two methods: 1. ", "H2S precipitation of mixed Ni/Co sulphides, (which selectively precipitates Ni/Co over Mn/Mg), followed by filtration and then pressure oxidation of mixed sulphides precipitate, with associated filtration steps, to produce a Ni/Co solution suitable for efficient Cyanex 272 extraction of Co, (as is now done at Murrin Murrin, op cit), or 2. ", "Mixed hydroxide precipitation of Ni/Co with MgO (which can be done selectively over Mn and Mg, as practiced at Cawse plant for example, and patented by White, op cit), or with CaO, which is not so selective with respect to Mg/Mn. ", "At Cawse, this was followed by re-leaching of mixed hydroxides with ammonium carbonate solution, filtering, then steam stripping the NH3/CO2 from the leach liquor to precipitate Mn/Mg, (and re-adsorbing the same NH3/CO2), and re-filtering. ", " \nEither of these processes for Mn/Mg rejection is expensive, especially in capital costs (H2S generating plant, or stripping and absorption plants for NH3/CO2). ", "It is an objective of the present invention to be able to treat high Mn/Mg solutions containing both Ni and Co, and separate Co from this solution, without going through either of the existing Mn/Mg rejection alternatives sketched out above.", "\nUnfortunately, a large amount of gypsum is formed along with the mixed Ni—Co hydroxide precipitate (MHP) when slaked lime is used as the precipitant for Ni and Co; consequently the MHP contains about 50 wt % gypsum, and only 50 wt % actual Ni and Co hydroxides, (and hence about 22% Ni).", "\nAlso both Mg and Mn are partly precipitated from solution (as hydroxides) at about the same pH as Ni and Co, thus further contaminating the product. ", "This is a particular problem for laterites where these impurities are usually present in high concentration, e.g. in leach liquors derived from laterites by a High Pressure Acid Leach (HPAL) process.", "\nMn is of special interest as well because MHP is of course a mixture of Ni and Co compounds, which eventually have to be separated to make commercial Ni and Co products. ", "The conventional technology for this separation is to use solvent extraction on a Ni/Co solution, in particular the extractant Cyanex 272. ", "This Cyanex 272 separation is only feasible if Mn and Mg are very low in the feed solution, otherwise they interfere with the Co extraction. ", "Generally this limits such refining to feed materials that are already low in Mn: Ni sulphide concentrates generally fall into this category, or are smelted to matte anyway, which is an effective Mn removal step, (into the slag). ", "For feed materials that have not been smelted, e.g. laterite high pressure acid leach liquors, a significant Mn presence may be a serious impediment to further processing.", "\nCommercial Value of Nickel Hydroxide Products\nMixed Ni—Co hydroxide (MHP) has been produced by at least one Ni mine in the recent past, and several announced projects have included this intermediate in the process flowsheet. ", "However, this product has uncertain market value and a limited marketing history, due in part to its purity and grade. ", "Since Ni and Co must be separated eventually, the presence of other impurities in the MHP can be a serious impediment to said separation, as described in the previous section.", "\nIf slaked lime, (Ca(OH)2), is used as the reagent, it typically precipitates some Mg and Mn from solution along with Ni and Co; and if any traces of base metal impurities, (e.g. Cu, Fe, Zn and Cd), are left in solution from the prior purification, they are also precipitated into the MHP. ", "In addition, gypsum is formed of course, thus degrading the Ni grade of product by about 50%. ", "If MgO is used instead of slaked lime, better selectivity is found in respect to Mg, and of course no gypsum is formed, so the Ni grade is much better, but most of the same impurity issues remain.", "\nAll of the above can affect on the marketing of the MHP, and hence its commercial value. ", "Nevertheless for projects with limited Ni/Co production it may be advantageous to be able to sell the MHP as an intermediate product, and thus avoid the extra cost of full refining to metal products on a small scale. ", "It was of some importance therefore to improve the quality of MHP, by Co separation upstream.", "\nTherefore if the Co is separated out before the precipitation process, the resultant Ni Hydroxide Product (NHP) may have enhanced value.", "\nU.S. Pat. ", "No. ", "6,171,564 relates to a process for treatment of nickel ores and concentrates to recover both Ni and Co as refined metals. ", "It is a ‘comprehensive’ process in the sense that: a) Both sulphides and oxides (laterites) are considered as suitable feeds, and b) The process describes a complete flowsheet going all the way to metal product: Acid leaching of solid feed to produce an acidic leach solution, containing Ni, Co and numerous impurities purification of leach solution, in several steps, including solvent extraction precipitation of Ni and Co together as an impure mixed hydroxide by neutralizing acidic solution Releaching of mixed hydroxide in (recycled) ammoniacal solution to redissolve Ni and Co values Separation of Co from Ni in said solution by solvent extraction, followed by stripping and recovery of Co product Further purification of (ammoniacal) raffinate from Co solvent extraction by additional solvent extraction steps Extraction of Ni from purified ammoniacal solution, followed by acidic stripping of organic stream to form purified acidic Ni solution Ni recovery from purified solution by electrowinning, with recycling of spent acid to solvent extraction \nThe Ni and Co content in the feed material are first leached by pressure oxidation (in the case of sulphides) or by acid pressure leaching (in the case of laterites); then the solution is purified to remove primarily Cu, Zn and Fe. ", "From the purified solution, Ni and Co are precipitated together at about pH 7-8, using slaked lime, as a mixture of Ni and Co hydroxides, (MHP).", "\nMHP is then re-leached in mild conditions, (ambient temperature, dilute solids, neutral pH) with a strong ammonium sulphate solution (200 g/l) at about pH 7.0, as in Reaction (1):Ni(OH)2+(NH4)2SO4→Ni(NH3)2SO4+2H2O  (1)\nThus this leach produces a solution of Ni and Co diammine, (Ni(NH3)2++ and Co(NH3)2++ ions), which also contains some impurities, notably Mg and Ca.", "\nThe leaching of Ni and Co by this method is not very efficient, (about 90%), due to the mild conditions selected, i.e. the neutral pH and hence very low free ammonia content of the leach solution; almost none of the Ni species in solution is present as free ammonia, NH3. ", "As a consequence, significant Ni and Co are left behind in the residue, which therefore has to be releached to avoid unacceptable losses. ", "However, the choice of the neutral pH is very important to enable the subsequent solvent extraction steps to proceed efficiently.", "\nCo is then extracted selectively from this impure Ni/Co diammine solution using as extractant the Cyanex 272 reagent at about this same pH 7.0, leaving Ni in the raffinate.", "\nSince the extraction is from a diammine, (i.e. Co(NH3)2SO4), no neutralization is required to maintain a constant pH, as the ammine is simultaneously converted to ammonia (NH3) during the extraction, which exactly balances the acid production (H+ ions) from the organic reagent, and thus produces ammonium sulphate in the overall extraction reaction (2):Co(NH3)2SO4+2RH (organic reagent)→CoR2 (organic phase)+(NH4)2SO4  (2)\nThus the pH stays almost constant throughout the Co extraction, negating the usual need for neutralizing agent. ", "This is an unusual and most beneficial feature of this solvent extraction process, as most other Co and Ni solvent extraction processes need in situ neutralization with ammonia or caustic to counteract acid production, and thus maintain the solution pH within the required range during the reaction, (or else the extraction stops prematurely). ", "The significance of the neutralization goes far beyond the simple avoidance of reagent consumption; the normal byproduct of such neutralization with ammonia or caustic is a salt such as ammonium sulphate or sodium sulphate, which rapidly accumulates in the raffinate stream, and must be disposed of in some fashion. ", "This is a serious challenge, given the constraints of the system, such as metal contamination of said salt as a potential byproduct, and is sometimes fatal to a process design.", "\nCo extraction at this point is only about 90% of the Co contained in the diammine solution, and co-extraction of Ni and Mg is negligible, thus providing a relatively pure Co stream (in the loaded organic), in the absence of Mn, Fe, Cu or Zn (all of which can co-extract with Co). ", "Co extraction is kept deliberately less than 100%, to ensure that the loaded organic (loaded organic) is fully loaded with Co, thus minimizing co-extraction of Mg and Ni, (which are less strongly extracted than Co). ", "Even then, some scrubbing of loaded organic is required to remove the small amounts of Mg and Ni that are extracted. ", "Scrub feed is derived from a fraction of the (pure) cobalt strip liquor, which is in limited supply, since the Ni:Co ratio in the solution is typically >10:1; so minimizing of scrubbing requirements is essential.", "\nCo is then stripped from the loaded organic in conventional fashion with dilute sulphuric acid solution to form a concentrated and pure Co solution, (low in Mg and Ni), and then recovered from this strip solution by conventional electrowinning (as pure metallic cathode), or by precipitation with some suitable reagent (e.g. sodium carbonate) as a pure Co salt, carbonate or hydroxide, etc.", "\nCyanex 272 is applied as an extractant again at pH 7.0-7.5 to the Co raffinate, to recover the residual Co, (about 10% of feed Co in ammonium sulphate solution), and also to remove any Mg and Ca from this solution prior to Ni recovery. ", "This is called the magnesium extraction stage for sake of reference. ", "About 10% of feed Ni is also extracted here into the loaded organic, leaving about 90% of feed Ni in raffinate from this operation. ", "Stripping of the loaded organic stream with acid produces an acidic aqueous stream which is recycled to the leach circuit for recovery of Ni/Co values. ", "Co in raffinate is very low, (˜1 ppm [Co]), in order to produce high purity Ni in the next step.", "\nNi is extracted from Mg raffinate with LIX™ 84 extractant at about pH 7.0-7.5, as in Reaction (3);Ni(NH3)2SO4+2RH (organic reagent)→NiR2 (organic phase)+(NH4)2SO4  (3)\nThe Ni extraction is followed by acidic stripping of the loaded organic, to produce a pure Ni electrolyte, (4), and recovery of Ni metal as cathodes by conventional electrowinning, reaction (5):NiR2 (organic phase)+H2SO4→2RH (organic phase)+H2SO4+H2O  (4)NiSO4+H2O→Ni0↓+H2SO4+½O2  (5)\nThe final Ni raffinate is recycled to the original ammonium sulphate leach, completing the circuit.", "\nIt is to be noticed that the overall reaction, i.e. combining leaching of Ni hydroxide, solvent extraction, solvent stripping and electrowinning, reaction (6), has no reagent consumed and no byproducts, other than water and oxygen:Ni(OH)2→Ni0↓+H2O+½O2  (6)\nNumerous other steps, (e.g. washing, scrubbing and stripping), are combined with each of the three main extractions, i.e. Co, Mg and Ni. ", "Altogether about 40 individual mixer-settlers are used, making for quite a complicated and expensive process for Co removal, hence the incentive to make it simpler.", "\nFinally it is worth emphasizing that the Co extraction by solvent extraction in U.S. Pat. ", "No. ", "6,171,564 is only performed after first precipitating a mixed hydroxide, and then re-leaching this solid.", "\nIn case it might be wondered why this sequence is required, it is our contention that Co extraction by solvent extraction is quite inefficient if such precipitation/re-leach is not carried out, due to the impurities present in the feed liquor to precipitation.", "\nIn other words the Co solvent extraction with Cyanex 272 when applied to the (acidic) feed liquor to this precipitation is inefficient as it contains too many interfering impurities, particularly Mg and Mn; both of these impurities compete with Co in the acidic solutions.", "\nEffectively this means that the hydroxide precipitate has to stay as a mixed hydroxide, containing both Ni and Co, as well as Mg and Mn, which limits its marketability in practice. ", "It is worth noting that most Ni refineries now use Cyanex 272 for separating Co from Ni, so feed materials to these refineries are usually restricted to low Mg and low Mn materials. ", "In practice, this means feed materials to Ni refineries are currently either Ni mattes or mixed sulphides, not mixed hydroxides or concentrates; hence the marketability for mixed hydroxide has not been established so far, and represents a significant uncertainty for any mine project that depends on selling such a product at a good price.", "\nReference is also made to patent applications WO 02/22896 A1; WO 02/22897 A1; WO 2005/073415 A1; WO 2005/073416 A1 and WO 2006/032097 A1 of the Commonwealth Scientific and Industrial Research Organisation (CSIRO) which has been engaged for some years in researching the field known as Synergistic Solvent Extraction (SSX). ", "This technique makes use of two or more extractants combined together to achieve beneficial effects superior to those of the individual extractants.", "\nCo and/or Ni extraction from solution is the subject of a number of these patent applications, but generally they are extracted together from other impurities. ", "The concept of trying to separate Ni from Co is evidently not contemplated in any of these patent applications.", "\nAlso, these patent applications do not contemplate trying to take advantage of kinetic differences between Ni and Co in extraction, which is an important and unusual feature of the present invention, i.e. unusual in solvent extraction.", "\nRather, extraction efficiencies in these prior applications by CSIRO are generally based on steady-state results, i.e. results which approach equilibrium, (the normal situation in solvent extraction).", "\nPatent Application WO 2005/073415 discloses a process for selectively extracting Co and/or Mn from leach solutions containing Mg, Ca (and possibly Mn), using a combination of two organic extractants. ", "This combination is made up of a carboxylic acid such as Versatic™ 10 (2-methyl, 2-ethyl heptanoic acid) and a hydroxyoxime such as LIX™ 63 (5,8-diethyl-7-hydroxy-6-dodecanone oxime).", "\nThe extraction process with this blend has superior selectivity possibilities for Co, Ni and Mn over the impurities mentioned, compared to extraction with Versatic 10 alone.", "\nThis improvement is expressed as a downward (synergistic) shift in the isotherm for Co, Ni and Mn (the pH50 is reduced by 1-3 pH units). ", "Cu and Zn behave similarly (synergistic shift), whereas Mg and Ca behaved in the opposite sense, i.e. antagonistic shifts to higher pH50.", "\nTaken together, this picture indicates improved separation possibilities for Co, Mn, Ni, Cu and Zn from Mg and Ca. ", "However, it is noted that extraction of Ni with this organic combination is relatively slow compared to Co and Mn; Example 2 and FIG. ", "3 indicate that 10 minutes extraction is needed to get even 85% Ni extraction, (compared to <1 minute for Co and Zn), whereas the isotherm (where steady state conditions apply) indicates almost quantitative Ni extraction is possible at say pH 5. ", "The implications are that the Ni extraction kinetics aren't fast enough to allow for a practical process for Ni extraction, and thus the focus is primarily on Co and/or Mn extraction.", "\nStripping of Mn and Co from the loaded organic (LO) is accomplished quickly with dilute acid, presumably at ambient temperatures (not specified though).", "\nConsidering the overall process, (extraction plus scrubbing and stripping), Co can be extracted together with Mn from a leach solution, and thus separated from Mg and Ca; alternatively Co can be extracted preferentially from Mn as well, presumably by operating at a lower pH. Small concentrations of Mn can also be scrubbed from the LO by Co if desired, (presumably this only works if Mn extraction is modest compared to Co loading).", "\nAs explained above, Ni extraction with this system is not attractive, as the Ni extraction kinetics are too slow to be useful, even though the Ni isotherm is similar to that of Co. Some Ni will extract inevitably though if present in the feed solution, and has to be stripped with Co or separated out subsequent to stripping. ", "So Ni is more of a nuisance to a Co purification process, if anything. ", "If present, Cu and Zn also extract in a similar fashion to Co, and must be separated out by selective stripping or in subsequent steps on the strip product stream.", "\nThus this process is particularly aimed at Co extraction away from common leach liquor impurities, particularly Mg and Ca, where the Co is the only metal of interest (i.e. Cu, Zn and Ni are missing or in minor concentrations), and is not particularly attractive for solutions that contain high Ni as well as Co.\nPatent Application WO 2005/073416 is particularly aimed at Co and/or Ni extraction away from common leach liquor impurities, particularly Mn, Mg and Ca. ", "It uses a similar organic mixture as WO 2005/073415, e.g. Versatic 10 and LIX 63, except that a 3rd component is added, a so-called kinetic accelerator like TBP.", "\nThis 3rd component literally accelerates the extraction of Ni, so that both Ni and Co are extracted together, and thus compensates for the perceived slow extraction kinetics of Ni. ", "It also accelerates the stripping of Ni from the organic.", "\nThe benefits of the synergistic system together with the accelerator are described in Examples 1-8, and shown in FIGS. ", "4-9, 11 and 12.", "\nThe process has several embodiments, distinguished largely by the design of the stripping circuit, to separate Ni from Co, after the two metals have been co-extracted into the organic phase. ", "Co strips more easily than Ni, so selective stripping is an option for separating the two metals, using mild conditions, e.g. with dilute acid or at higher pH.\nThus in Option 1 (page 13), Co is selectively stripped from the loaded organic, leaving the Ni behind for later stripping under more severe conditions. ", "This option is shown as flowsheets in FIGS. ", "1-3, and described in Examples 9 and 10.", "\nIn Option 2 (page 16), Co and Ni are stripped together, and then the strip product liquor containing both metals (but notably free from Mg) is then subjected to a 2nd extraction, typically using Cyanex 272, which is selective for Co over Ni, (as noted above) in the absence of Mg and other metals. ", "This option is described in Example 11, and shown in FIG. ", "10.", "\nVarious complications in both options arise with other metals, e.g. Cu, Mn and Zn, which co-extract with Co and Ni, and have to be subsequently separated out during stripping, or by scrubbing, from Co and Ni.", "\nIn none of the examples shown, nor in the text or claims, is Co separated from the Ni in the solution by selective extraction, as in the present invention." ]
{ "pile_set_name": "USPTO Backgrounds" }
[ 0, 0, 0, 0, 0.006060606060606061, 0.0045871559633027525, 0, 0.008695652173913044, 0.006622516556291391, 0.02857142857142857, 0.02032520325203252, 0.006369426751592357, 0.0037313432835820895, 0, 0.012048192771084338, 0.01652892561983471, 0.0056179775280898875, 0.015810276679841896, 0.010256410256410256, 0, 0.009478672985781991, 0.014184397163120567, 0.014184397163120567, 0.02631578947368421, 0, 0, 0, 0.008333333333333333, 0.011235955056179775, 0.0048543689320388345, 0.015873015873015872, 0, 0.014563106796116505, 0.0106951871657754, 0, 0.013736263736263736, 0.00980392156862745, 0.007462686567164179, 0.01056338028169014, 0.029411764705882353, 0.013114754098360656, 0, 0.009852216748768473, 0.006024096385542169, 0.004405286343612335, 0.00819672131147541, 0.004830917874396135, 0, 0.010638297872340425, 0, 0, 0.005, 0, 0.0049504950495049506, 0, 0.0024330900243309003, 0.00392156862745098, 0.0072992700729927005, 0.008438818565400843, 0.00851063829787234, 0.012244897959183673, 0.003076923076923077, 0.00909090909090909, 0, 0.013888888888888888, 0, 0, 0, 0.02030456852791878, 0.009174311926605505, 0, 0, 0, 0, 0.011428571428571429, 0, 0.017241379310344827, 0.021739130434782608, 0.004166666666666667, 0.005952380952380952, 0.016597510373443983, 0.013888888888888888, 0.013333333333333334, 0, 0.011695906432748537, 0.007194244604316547, 0.028368794326241134, 0.004347826086956522, 0.005847953216374269, 0.008849557522123894, 0, 0.005714285714285714, 0.017241379310344827, 0.010638297872340425, 0.00510204081632653, 0.011111111111111112, 0.009216589861751152, 0.010752688172043012, 0.014598540145985401, 0.09090909090909091, 0, 0.00819672131147541, 0.002795248078266946, 0.020833333333333332, 0.005434782608695652, 0, 0.007246376811594203, 0, 0.017341040462427744, 0.00186219739292365, 0, 0, 0, 0.014234875444839857, 0.004629629629629629, 0.017094017094017096, 0, 0.0076726342710997444, 0.008438818565400843, 0, 0.015151515151515152, 0.006578947368421052, 0, 0.0108499095840868, 0.002531645569620253, 0, 0, 0, 0, 0, 0.01098901098901099, 0.016483516483516484, 0.02197802197802198, 0.0029498525073746312, 0.006172839506172839, 0, 0.012422360248447204, 0, 0.00423728813559322, 0, 0.014925373134328358, 0.00546448087431694, 0.017241379310344827, 0.014492753623188406, 0.0072992700729927005, 0.017241379310344827, 0.014925373134328358, 0.008130081300813009, 0.02185792349726776, 0.013071895424836602, 0.018433179723502304, 0.01529051987767584, 0.028169014084507043, 0.006134969325153374, 0.015021459227467811, 0.006211180124223602, 0, 0, 0.008333333333333333, 0, 0, 0.00641025641025641, 0.022727272727272728, 0, 0.016722408026755852, 0.017241379310344827, 0, 0.019138755980861243, 0.00641025641025641 ]
0.008309
5
[ "The popularity of cloud computing has fuelled a dramatic growth in the number and size of data centers worldwide. ", "In such environments, existing networking software and hardware designed for the Internet have shown their limitations. ", "A plethora of new design proposals have seen the light recently to address some of the network congestion problems that are intrinsic to data center networks. ", "In this spirit we have designed several algorithms and systems and tested them via simulation and/or software deployment in a small scale Data center. ", "The goal of this project is to implement some of these mechanisms in the network interface card using the DPDK framework and test them in a small testbed.", "\n\nCourse type:\n\nUROP1100\n\nApplicant's Roles:\n\nThe applicant(s) will work with the advisor and graduate students and will be in charge of:\n- studying our proposed algorithms and translating them to the DPDK framework.", "\n- Deploying and testing the deployed systems inside our small data center.", "\nTo achieve this, the applicant must be a senior CSE or CPEG student with a good knowledge of Computer Networks and Linux Kernel programming\n\nApplicant's Learning Objectives:\n\n- Be able to appreciate the difference between the Internet and data centre networks\n- Be able to appreciate the congestion problems that may arise in data center networks and understand their root causes\n- Be able to appreciate the development cycle of communication protocols\n- Be able to appreciate and code within the DPDK framework\n- Be able to put to practice knowledge learned in Networking, and Linux kernel programming classes" ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0, 0.006493506493506494, 0.004629629629629629, 0, 0.006546644844517185 ]
0.002209
5
[ "By Lauren Hittinger\n\nAOA is taking things a little easy this week for summer break. ", "So we thought it'd be a good time to catch up with some local businesses we've covered during the last year (or so) and find out how things are going.", "\n\nNext we're revisiting Collar City Hard Pressed (CCHP). ", "When we first interviewed owner Jessica Garrity, now Jessica Quijano, she was running her business solely at the Saturday Troy farmers' market. ", "Since then, she has moved to working full-time for her juice and smoothie business, taking up residence on Broadway in downtown Troy.", "\n\nA snippet from March 2014:\n\n\n\n\n\n\"I found myself basically obsessed with fresh juice and smoothies and was suddenly annoyed that there wasn't a place in my neighborhood where I could get any. ", "I kind of hate leaving my neighborhood on the weekend so just thought it was only fair that we had a juice place here downtown. ", "I also recognized that juicing was a pretty trendy business and thought downtown Troy would be a great place to get to work.\"", "\n\nI caught up with Quijano to see what it's like to be running a small business on her own, and to get the scoop on the different reactions to a juice bar in downtown Troy.", "\n\nWhat has happened over the last year?", "\n\nA lot has happened! ", "I opened in here last August -- so, going on a year. ", "That was a major deal. ", "It was really great to open when I did, because it was still kind of busy in the fall. ", "Winter was definitely a slower season, I think for everyone around here. ", "But it's been nice because then I was able to really ramp up for spring and summer. ", "I've seen so many new customers and so much new business. ", "Having the winter be the time when I was learning everything the hard way was kind of good timing.", "\n\nAnd a lot is new -- I have really ramped up social media and I have a website now. ", "People can order online through Yelp. ", "I have three people who work in here.", "\n\nWhat's different since you were just at the farmers' market?", "\n\nI have a lot more relationships with farmers and suppliers in general -- local people. ", "It's been a tough year, since stuff is coming up later based on weather. ", "Seasonally I try to go right to the farmer to get stuff. ", "Of course, not for things like pineapples and bananas. ", "So I'll never be 100 percent organic or local, just because for some ingredients it just really doesn't make sense.", "\n\nAnd I've done stuff with Sage and RPI to get in front of students, and their faculty and staff have been down here a lot. ", "Collar City Candle works with me to make candles based upon all of the different drinks. ", "I have a phone line in here and people can text in their orders ahead of time. ", "I have a good relationship with Empire Zero, the composting company. ", "All of our juice pulp either goes directly to a farm and is used for animal feed or it is composted through Empire Zero. ", "It's never thrown away.", "\n\nWhat have you learned since opening the physical shop?", "\n\nOh my god. (", "laughs) Well, I've had professional jobs. ", "But I've never done anything on the back end of business. ", "Most of my work experience was in writing, or marketing, or sales. ", "And that's all beneficial, but that's not the meat of what you're really doing. ", "I've learned a lot. ", "Everything as far as managing all my own books, and I've hired three employees this year. ", "I just had never done any of that, so I basically learned it all as I went.", "\n\nThe other thing about being in here is Troy is it's such an interesting place. ", "I'm in contact with a lot of other local businesses, and the flow of business can be really unpredictable. ", "It's such a walkable neighborhood and if for some reason people aren't walking around, because of weather, or something's blocking streets, it can affect you.", "\n\nThe positive thing about having my store right here is all of the businesses are so collaborative and everyone really does support each other. ", "So it was a very warm welcome. ", "For me opening in here it was probably easier than it would be for other people because of the farmers' market and Vic [Christopher] and Heather [LaVine], my landlords, have been so great.", "\n\nWhat has surprised you?", "\n\nThe timing is a surprise to me. ", "I'm open 8 to 4, but the majority of people come here between 10 and 2, no matter what. ", "I thought there was more of an early morning type of thing.", "\n\nThe other thing that has surprised me is how many customers will come every single day. ", "I am getting a lot of new customers, and I can see that coming from Instagram, Facebook, and Yelp. ", "But a lot of people come several times a week. ", "I didn't think I'd see the same people getting the same things all the time. ", "It's nice, though.", "\n\nThe other thing that really surprises me are the people that come in that are afraid of food. ", "For example, there have been times at the farmers' market where people ask me, 'Do you put pills in the juice? ", "How do you get it that color?' ", "This is the color that your food should be. ", "This is real food. ", "It's nice to be able to show people in a positive way that literally just eating carrots, beets, and apples can be really delicious and it looks beautiful, and there's not anything added. ", "At least once a week someone is surprised I'm not doctoring the juice up. ", "It's been nice to see people try new things and then really really like it and then start adding other more adventurous things like bee pollen. ", "It's nice to see people expand.", "\n\nWhat has frustrated you?", "\n\nWell, that same thing. ", "Everything that I just said. ", "There are days when you're like, 'Really? ", "You really think I'm putting dye in here?'", "\n\nEverything in my store is repurposed, and I compost and work with farms and I'm trying to do all of these right things, and I think that you care as a customer. ", "But you're telling me you would be drinking this if there were red dye in it?", "\n\nIt's frustrating when someone walks in, looks at the menu, and tells me they don't like any fruit or vegetables. ", "I don't know what to do in that case. ", "I really work to get the person to try something that would just taste delicious, but sometimes it's just not for everyone, I guess. ", "All that aside, if I get the person to try something, they usually like it.", "\n\nWhat's something that's felt like a win?", "\n\nI've seen so many new customers and seen such a difference in the amount of people that know the name of my place and recognize the brand. ", "I never did a lot of promotion or press, so it was a little bit slower in the beginning with people knowing the place and recognizing CCHP. ", "Now if someone asks me where I work and they say that they know the place or love it here, that's awesome to me, especially when you're not in this neighborhood.", "\n\nWhat's next?", "\n\nWell, there are a couple top secret things in the works. ", "The main thing is continuing to try to make as local connections and source the best product that I can. ", "I would also like to be open more often. ", "And I'm collaborating with some of my neighbors here on some cool stuff.", "\n\nAnd pretty soon I'll be thinking about delicious fall and winter concoctions, like the pumpkin pie smoothie.", "\n\nThis interview has been lightly edited and condensed.", "\n\n____\n\nLauren Hittinger writes about shopping, crafting, and living well on a small budget at The Thrifty Ginger.", "\n\nMore follow-ups from this week:\n\n+ Bread and Honey" ]
{ "pile_set_name": "OpenWebText2" }
[ 0.011904761904761904, 0, 0.017543859649122806, 0.013888888888888888, 0, 0, 0, 0, 0.005813953488372093, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.014492753623188406, 0.008264462809917356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.005319148936170213, 0, 0, 0, 0, 0, 0.020202020202020204, 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.007142857142857143, 0, 0, 0, 0, 0, 0, 0, 0, 0.008771929824561403, 0.019230769230769232 ]
0.001473
5
[ "{% extends 'callisto_core/delivery/form.html' %}\n\n{% block message %}\n<p>We've sent you an email containing a password reset link. ", "If you don't receive it within a few minutes, please check your spam folder.</p>\n{% endblock %}\n" ]
{ "pile_set_name": "Github" }
[ 0, 0 ]
0
5
[ "<?", "xml version=\"1.0\" ?", ">\n<annotation>\n<folder>widerface</folder>\n<filename>56--Voter_56_Voter_peoplevoting_56_25.jpg</filename>\n<source>\n<database>wider face Database</database>\n<annotation>PASCAL VOC2007</annotation>\n<image>flickr</image>\n<flickrid>-1</flickrid>\n</source>\n<owner>\n<flickrid>yanyu</flickrid>\n<name>yanyu</name>\n</owner>\n<size>\n<width>1024</width>\n<height>609</height>\n<depth>3</depth>\n</size>\n<segmented>0</segmented>\n<object>\n<name>face</name>\n<pose>Unspecified</pose>\n<truncated>1</truncated>\n<difficult>0</difficult>\n<bndbox>\n<xmin>300</xmin>\n<ymin>26</ymin>\n<xmax>318</xmax>\n<ymax>48</ymax>\n</bndbox>\n<lm>\n<x1>303.795</x1>\n<y1>38.438</y1>\n<x2>310.853</x2>\n<y2>38.161</y2>\n<x3>307.116</x3>\n<y3>43.558</y3>\n<x4>307.808</x4>\n<y4>45.496</y4>\n<x5>311.406</x5>\n<y5>45.357</y5>\n<visible>1</visible>\n<blur>0.32</blur>\n</lm>\n<has_lm>1</has_lm>\n</object>\n<object>\n<name>face</name>\n<pose>Unspecified</pose>\n<truncated>1</truncated>\n<difficult>0</difficult>\n<bndbox>\n<xmin>474</xmin>\n<ymin>31</ymin>\n<xmax>488</xmax>\n<ymax>50</ymax>\n</bndbox>\n<has_lm>0</has_lm>\n</object>\n<object>\n<name>face</name>\n<pose>Unspecified</pose>\n<truncated>1</truncated>\n<difficult>0</difficult>\n<bndbox>\n<xmin>531</xmin>\n<ymin>22</ymin>\n<xmax>543</xmax>\n<ymax>38</ymax>\n</bndbox>\n<has_lm>0</has_lm>\n</object>\n<object>\n<name>face</name>\n<pose>Unspecified</pose>\n<truncated>1</truncated>\n<difficult>0</difficult>\n<bndbox>\n<xmin>792</xmin>\n<ymin>50</ymin>\n<xmax>809</xmax>\n<ymax>69</ymax>\n</bndbox>\n<lm>\n<x1>799.277</x1>\n<y1>59.5</y1>\n<x2>806.388</x2>\n<y2>62.393</y2>\n<x3>801.205</x3>\n<y3>64.804</y3>\n<x4>797.951</x4>\n<y4>67.455</y4>\n<x5>801.808</x5>\n<y5>69.022</y5>\n<visible>1</visible>\n<blur>0.34</blur>\n</lm>\n<has_lm>1</has_lm>\n</object>\n<object>\n<name>face</name>\n<pose>Unspecified</pose>\n<truncated>1</truncated>\n<difficult>0</difficult>\n<bndbox>\n<xmin>851</xmin>\n<ymin>138</ymin>\n<xmax>866</xmax>\n<ymax>155</ymax>\n</bndbox>\n<has_lm>0</has_lm>\n</object>\n<object>\n<name>face</name>\n<pose>Unspecified</pose>\n<truncated>1</truncated>\n<difficult>0</difficult>\n<bndbox>\n<xmin>889</xmin>\n<ymin>207</ymin>\n<xmax>904</xmax>\n<ymax>223</ymax>\n</bndbox>\n<has_lm>0</has_lm>\n</object>\n<object>\n<name>face</name>\n<pose>Unspecified</pose>\n<truncated>1</truncated>\n<difficult>0</difficult>\n<bndbox>\n<xmin>129</xmin>\n<ymin>94</ymin>\n<xmax>139</xmax>\n<ymax>106</ymax>\n</bndbox>\n<has_lm>0</has_lm>\n</object>\n<object>\n<name>face</name>\n<pose>Unspecified</pose>\n<truncated>1</truncated>\n<difficult>0</difficult>\n<bndbox>\n<xmin>20</xmin>\n<ymin>59</ymin>\n<xmax>35</xmax>\n<ymax>82</ymax>\n</bndbox>\n<has_lm>0</has_lm>\n</object>\n<object>\n<name>face</name>\n<pose>Unspecified</pose>\n<truncated>1</truncated>\n<difficult>0</difficult>\n<bndbox>\n<xmin>185</xmin>\n<ymin>69</ymin>\n<xmax>196</xmax>\n<ymax>87</ymax>\n</bndbox>\n<lm>\n<x1>188.312</x1>\n<y1>76.174</y1>\n<x2>193.857</x2>\n<y2>74.246</y2>\n<x3>193.134</x3>\n<y3>79.188</y3>\n<x4>192.17</x4>\n<y4>82.924</y4>\n<x5>196.027</x5>\n<y5>81.357</y5>\n<visible>1</visible>\n<blur>0.23</blur>\n</lm>\n<has_lm>1</has_lm>\n</object>\n<object>\n<name>face</name>\n<pose>Unspecified</pose>\n<truncated>1</truncated>\n<difficult>0</difficult>\n<bndbox>\n<xmin>257</xmin>\n<ymin>90</ymin>\n<xmax>269</xmax>\n<ymax>106</ymax>\n</bndbox>\n<has_lm>0</has_lm>\n</object>\n</annotation>\n" ]
{ "pile_set_name": "Github" }
[ 0, 0.05263157894736842, 0.0003094059405940594 ]
0.017647
5
[ "75000*sqrt(17)\nSimplify ((-2*(sqrt(99) + 2*sqrt(99)) + (sqrt(99)*-2*5 - sqrt(99) - sqrt(99)))*-4)/(1*1*sqrt(1089) + sqrt(1089)*-1*5).", "\n-18*sqrt(11)/11\nSimplify 1*((sqrt(170)*1 - sqrt(170) - sqrt(170))*-5 + -3*1*sqrt(170))/(sqrt(250) + (6*2*sqrt(250) - sqrt(250)) - sqrt(250)).", "\n2*sqrt(17)/55\nSimplify ((3 + (sqrt(39)/(sqrt(3) - sqrt(3)*2) - sqrt(39)/sqrt(3)*2))**2 - 6*((sqrt(104) - (sqrt(104) + (sqrt(104) + 2*sqrt(104) - sqrt(104))))*-5)/sqrt(8))*2.", "\n-156*sqrt(13) + 252\nSimplify ((-2*-4*sqrt(152)*2)/(4*sqrt(128)*-2))**2.", "\n19/4\nSimplify (-3*-5*(sqrt(70) + 4*sqrt(70)*-3))/(((1*sqrt(80))/sqrt(8) - (sqrt(640) - (1*sqrt(640) - sqrt(640))))*-2).", "\n-165*sqrt(7)/14\nSimplify (-1*(-1*-1*sqrt(10) + sqrt(10)))/(-5*5*sqrt(20)).", "\nsqrt(2)/25\nSimplify ((-2*2*sqrt(77) + (sqrt(77) - (sqrt(77) - sqrt(77)*-2)*1))*-1)/(sqrt(11) - (1*sqrt(121))/sqrt(11) - (sqrt(11) + sqrt(132)/(sqrt(36)/sqrt(3)))).", "\n-3*sqrt(7)\nSimplify (sqrt(1088) + 5 + -3*sqrt(1088) - (sqrt(1088) + 3)*-3 - (sqrt(1088)*-3*-1 - (-2 + sqrt(1088))*-4))**2.", "\n-2112*sqrt(17) + 39652\nSimplify ((-1*(1*sqrt(154) + sqrt(154)))/(sqrt(11) + 6*sqrt(44)))/((sqrt(10)*-2*3)/(sqrt(720)*1)).", "\n4*sqrt(7)/13\nSimplify -5 + ((4*(sqrt(72) + (-1 + sqrt(72) + sqrt(72))*1 + -4) + 5)*-5)**2*4.", "\n-216000*sqrt(2) + 1059295\nSimplify -4*1*(((-2*sqrt(3)*1 - 2*2*sqrt(3))**2 - (sqrt(216) + (sqrt(216)*2 - sqrt(216) - sqrt(216)))/sqrt(8)) + 0).", "\n-432 + 12*sqrt(3)\nSimplify (sqrt(1800) - -4*(sqrt(1800)*1 + sqrt(1800)) - (sqrt(1800) - -5*(-1*sqrt(1800) - sqrt(1800))))/((sqrt(10) + sqrt(10)*4)*4 - 4*-3*sqrt(10)).", "\n27*sqrt(5)/8\nSimplify 2 + (0 + sqrt(125)*-1 + 0 + sqrt(125) + 1)**2 + (4 + (sqrt(125) + -2 + sqrt(125))*4)**2.", "\n-320*sqrt(5) + 8019\nSimplify (-1 + (sqrt(1331) - (sqrt(1331) + 2)))*4 + 2 - (-6*(0 + sqrt(176)) + sqrt(176) + ((1*sqrt(330))/sqrt(6))/sqrt(5))**2.", "\n-3981\nSimplify ((sqrt(76) + 1 + -5)**2 - (1 + sqrt(76) + (-3 + sqrt(76))**2)) + 4 + -2*1*(1*sqrt(76))**2 + 3.", "\n-139 - 6*sqrt(19)\nSimplify (2 + (sqrt(1620) + 3 - (-5 + (sqrt(5) - sqrt(125)*-1))))**2 + -1.", "\n240*sqrt(5) + 819\nSimplify ((-2 + 5*sqrt(288))*-2*-1 + -2)**2.", "\n-1440*sqrt(2) + 28836\nSimplify (0 + -1 + sqrt(180) + 0)**2 - 5*sqrt(40)/(sqrt(1200)/sqrt(6) - sqrt(8)).", "\n-53*sqrt(5)/4 + 181\nSimplify (3*(sqrt(504) + sqrt(504)*-1*-5))/((sqrt(144)/(3*sqrt(9)))/sqrt(2)).", "\n162*sqrt(7)\nSimplify ((-3*sqrt(120))/sqrt(10) - sqrt(432)/sqrt(4))/(1*1*sqrt(144)*-2).", "\nsqrt(3)/2\nSimplify 0 + (((-2*sqrt(126)/sqrt(3))/sqrt(6))**2 - (sqrt(252) - ((sqrt(252) + 3 + sqrt(252) - sqrt(252))**2 + sqrt(252) + -5))) + 2.", "\n36*sqrt(7) + 286\nSimplify ((sqrt(112) - 5*sqrt(112)) + 3 + -1 - -6*-4*(sqrt(112) + 0))**2*-1*5.", "\n-439060 + 2240*sqrt(7)\nSimplify (-2*((sqrt(2057) - -3*sqrt(2057)*3) + (sqrt(2057) + 3 + -2 + sqrt(2057) - sqrt(2057)) + 0)*-1*-3)**2.", "\n8712*sqrt(17) + 8960328\nSimplify (sqrt(189)/(sqrt(144)*-4)*3)/(2*sqrt(108)/(sqrt(18)/sqrt(2))).", "\n-3*sqrt(7)/64\nSimplify 0 + ((5*2*sqrt(432))**2 - ((sqrt(432) - sqrt(432)*-1) + -2 + sqrt(432)) - (-2*-5*(sqrt(432) + 4))**2).", "\n-9636*sqrt(3) - 1598\nSimplify (-2 + -2*6*(sqrt(1152) + sqrt(1152) + 3 + -1 + sqrt(1152) - (sqrt(1152) + -2)*-6))**2.", "\n-611712*sqrt(2) + 13450852\nSimplify ((-2*sqrt(84))/sqrt(2) + sqrt(504)/(sqrt(48)/sqrt(4)))/(3*sqrt(18)/sqrt(3) - sqrt(6) - sqrt(600)*3).", "\nsqrt(7)/28\nSimplify (sqrt(91) + 4*(sqrt(91) + sqrt(91) + (sqrt(91)*3 - sqrt(91) - sqrt(91)) - sqrt(91) - sqrt(91)) - sqrt(91))/(-1*sqrt(7)*3) + 3 + 2*4*(sqrt(1872) + -1).", "\n-5 + 284*sqrt(13)/3\nSimplify ((sqrt(35) + sqrt(175)/sqrt(5))*6 + (-3*sqrt(2835) + sqrt(2835) + sqrt(2835) - sqrt(2835)))/(sqrt(7) - sqrt(84)/(sqrt(48)/sqrt(4)) - 2*3*sqrt(7)) + 3.", "\nsqrt(5) + 3\nSimplify (((sqrt(90)/sqrt(3) + sqrt(30))/sqrt(10) - (-3 + sqrt(12)/sqrt(4)))*-4 - 5*(-5 + sqrt(432))*5)**2.", "\n-68704*sqrt(3) + 290017\nSimplify (-5*(sqrt(182)/(sqrt(252)*-1))/(sqrt(288) + 2*sqrt(288) + sqrt(20)/(sqrt(10)*2)))**2.", "\n325/47961\nSimplify sqrt(63)/sqrt(9) + 2 - 4*(sqrt(700) - sqrt(7)) - (-5 + (-3*sqrt(504)/sqrt(8) - sqrt(63))**2).", "\n-1001 - 35*sqrt(7)\nSimplify ((sqrt(343) + sqrt(343) + -3*sqrt(343) + 5)*-4)**2*5 + (1 + (5*(3 + sqrt(343)))**2)*-2.", "\n-7700*sqrt(7) + 11838\nSimplify (-4*2*(sqrt(847) + -1) + (sqrt(448) + -2)*1*-6)**2.", "\n-5440*sqrt(7) + 129872\nSimplify 2 + (-4 + (1 + sqrt(931))**2)*-5 + (sqrt(931) + (sqrt(931) - (sqrt(931) - (sqrt(931) - sqrt(931)*-1))) + 4 + -2)**2 + -2 + 2.", "\n14*sqrt(19) + 3745\nSimplify (-2*(2*sqrt(1700)*2)**2*5 + -3)*1.", "\n-272003\nSimplify (((sqrt(120) + -1*sqrt(120) + sqrt(120))/sqrt(6))/sqrt(10))**2 + -5 - (sqrt(2) + sqrt(10)/sqrt(5) + -2 + sqrt(2) + sqrt(392)/sqrt(4))**2.", "\n-207 + 40*sqrt(2)\nSimplify -5*-4*(1*(-3*-1*sqrt(112) + sqrt(112)) - -2*sqrt(112)*-2*3)**2.", "\n143360\nSimplify (sqrt(78) + -6*sqrt(78)*-2 - -3*sqrt(78)*-4)/(((-1*sqrt(96))/sqrt(8))/(sqrt(32)/sqrt(4))).", "\n-2*sqrt(13)\nSimplify (1 + (6*sqrt(40))/(-6*(-2*sqrt(5) + sqrt(5)) + sqrt(5) - sqrt(5))*-3 + 3)*-2 + 3.", "\n-5 + 12*sqrt(2)\nSimplify (-1*(sqrt(224)*3*-1 + sqrt(224) + sqrt(224)))/(-3*sqrt(200) + -1*sqrt(128)).", "\n-2*sqrt(7)/19\nSimplify -1*(sqrt(22)/(-1*sqrt(2))*-3 + 3 + -5 + ((2*sqrt(99) + sqrt(99))/sqrt(9) - (sqrt(1584) + (-2*sqrt(1584))**2 - sqrt(1584) - sqrt(11)))).", "\n-7*sqrt(11) + 6338\nSimplify 1*(-2 + sqrt(1216)*-2*-5*5 + -5) + 1.", "\n-6 + 400*sqrt(19)\nSimplify (sqrt(70)/(sqrt(20)/sqrt(2)) - (sqrt(7) + -1)*6)**2 + -3 + (sqrt(7) + sqrt(175) - sqrt(7)) + 3*(sqrt(175) + sqrt(7)).", "\n-37*sqrt(7) + 208\nSimplify -2*(2 + (sqrt(1053) + sqrt(1053) + 1 + 5)**2 + sqrt(1053)) + ((6*sqrt(65)*1 - sqrt(65))/(1*sqrt(25)/sqrt(5) + sqrt(5)))**2.", "\n-33675/4 - 450*sqrt(13)\nSimplify 4 + 6*-4*(-4 + (sqrt(325)*-3 + -5)**2 + 0).", "\n-70700 - 3600*sqrt(13)\nSimplify sqrt(325)*3 + -1 + sqrt(325) + -2*sqrt(13)*-4 + (sqrt(13) + sqrt(26)/(-4*sqrt(2)))**2.", "\n101/16 + 28*sqrt(13)\nSimplify -2*(-3*(sqrt(108) + -1)**2*1 - (sqrt(48) + -2 - sqrt(1200))).", "\n-104*sqrt(3) + 650\nSimplify 2*((sqrt(125) - (2*sqrt(125)*-4 + sqrt(125))) + sqrt(125)*3*-1 + sqrt(125))**2 + -1.", "\n8999\nSimplify -2*(4 + (2 + sqrt(33)/sqrt(3) + -1 - 3*(sqrt(44) + sqrt(88)/sqrt(2))/sqrt(4))*-5)**2.", "\n-13752 + 100*sqrt(11)\nSimplify -5 + 5 + (sqrt(300) + -3)*-3 + ((sqrt(243)*1 + sqrt(243))**2 - ((sqrt(36)/sqrt(3))/sqrt(4) - sqrt(3))).", "\n-30*sqrt(3) + 981\nSimplify ((sqrt(12)/(sqrt(36)/sqrt(9)) - sqrt(3) - (-3 + (sqrt(9)/sqrt(3) - sqrt(3)))) + (sqrt(135)/sqrt(5))/sqrt(9) + sqrt(12) + 2)**2.", "\n30*sqrt(3) + 52\nSimplify -2 + (2*(-1 + sqrt(28)))**2 - (sqrt(5103) - 1*sqrt(5103))/(2*sqrt(1296) + sqrt(1296) + sqrt(1296) - sqrt(1296)).", "\n-16*sqrt(7) + 114\nSimplify (-2 + (sqrt(125)*1 + sqrt(125) + -4)**2 - ((-5*sqrt(5)*1)**2 - 4*(sqrt(5) + 2)))*2.", "\n-152*sqrt(5) + 794\nSimplify ((5*sqrt(108)*2)/sqrt(4))/(3*sqrt(1296) + sqrt(720)/sqrt(5)).", "\nsqrt(3)/4\nSimplify (-4 + ((-1 + (sqrt(1008) - sqrt(1008)*1))*5)**2*2)*1.", "\n46\nSimplify -1 + (sqrt(224)/(sqrt(4)*1))/(sqrt(847)*1) + 1 + 5.", "\n2*sqrt(2)/11 + 5\nSimplify (sqrt(21) + sqrt(42)/(sqrt(12)/sqrt(6)))/(sqrt(12)/sqrt(4)*-6) - ((-6*sqrt(693)*-2)/(sqrt(121)/(2*sqrt(11))))**2.", "\n-36288 - sqrt(7)/3\nSimplify -6*((1 + sqrt(128) + sqrt(128))**2*-1 + 3 + (sqrt(2) - (sqrt(14)/sqrt(7) + -4 + sqrt(2))**2)).", "\n90*sqrt(2) + 3204\nSimplify 2 + (sqrt(2)*1 + -4 - (sqrt(200)*-3 + sqrt(200))**2) + (-4*sqrt(288)*4)**2.", "\nsqrt(2) + 72926\nSimplify 3 + 4*((sqrt(108) + -2)*4 + 4 - 2*((sqrt(6) - sqrt(72)/(sqrt(60)/sqrt(5))) + sqrt(6))/sqrt(2)).", "\n-13 + 88*sqrt(3)\nSimplify ((sqrt(14)/((sqrt(84)*-4 - sqrt(84))/sqrt(12)) - (2 + sqrt(350)/sqrt(7)))*-1)**2.", "\n104*sqrt(2)/5 + 1452/25\nSimplify (2*(-3*(-3*sqrt(513) - sqrt(513)) - sqrt(513) - sqrt(513)))/(3*sqrt(192)*3*-6).", "\n-5*sqrt(19)/36\nSimplify (1 + -1*3*3*(-2 + sqrt(1331) + 2 + sqrt(1331) + -1 + -3 + sqrt(1331)))**2.", "\n-21978*sqrt(11) + 971668\nSimplify (sqrt(121)*-2*5)/(sqrt(396) + 2*sqrt(396)) - (6*sqrt(121)*-1)/((sqrt(1584) + sqrt(1584)*-3 + sqrt(1584) - sqrt(1584)) + sqrt(1584)).", "\n-19*sqrt(11)/18\nSimplify -1*((3*(-1 + sqrt(128)) + 0)**2 + (-1*2*sqrt(128) + sqrt(128) - (sqrt(128) + 2 - sqrt(128))*1)**2).", "\n-1293 + 112*sqrt(2)\nSimplify 5 + 2*((-1 + sqrt(500) + -3 - (sqrt(500) + 1 + sqrt(500) + -3))**2 + (2 + sqrt(500) + sqrt(500)*-1 + (sqrt(500)*1 + 2 - sqrt(500)))**2).", "\n80*sqrt(5) + 1045\nSimplify 1*(0 + 1 + (sqrt(13) + ((sqrt(117) - sqrt(117)*-1)/sqrt(9))**2 + 1 + sqrt(52) - -2*-2*sqrt(637)))*-2.", "\n-108 + 50*sqrt(13)\nSimplify (sqrt(448)*-4 + sqrt(448) + sqrt(448) + 1)*2 + ((-2*-2*sqrt(84))/((sqrt(432) - (sqrt(432) + sqrt(432)*-1 + sqrt" ]
{ "pile_set_name": "DM Mathematics" }
[ 0, 0, 0.005747126436781609, 0, 0, 0, 0, 0, 0, 0.010752688172043012, 0, 0, 0, 0.006802721088435374, 0, 0.010752688172043012, 0, 0, 0, 0, 0, 0.010416666666666666, 0, 0, 0.007936507936507936, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.00980392156862745, 0.006289308176100629, 0, 0, 0, 0.012987012987012988, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0136986301369863, 0.015625, 0, 0.008130081300813009, 0, 0, 0, 0, 0, 0, 0.008, 0, 0, 0 ]
0.00184
5
[ "Catheter-induced ablation of the atrioventricular junction to control refractory supraventricular arrhythmias.", "\nFive patients with recurrent bouts of supraventricular tachycardia proved resistant or became intolerant of both conventional and experimental drugs. ", "These patients were subjected to a new procedure involving delivery of DC shocks to an electrode catheter positioned adjacent to the His bundle. ", "Complete atrioventricular (AV) block was produced in all, one patient died suddenly six weeks after shock therapy, and the remainder had complete AV block with follow-up intervals ranging from four to 12 months. ", "Shock therapy was associated with mild elevations of creatine phosphokinase MB (31 +/- 18 units), but there was no hemodynamic evidence of tricuspid insufficiency. ", "If this new technique proves safe and effective, it should supplant the need for open heart surgical procedures for His-bundle ablation." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0, 0.0047169811320754715, 0.006097560975609756, 0 ]
0.001802
5
[ "\nAsk HN: Are we all OK with short DNS TTLs now? - ", "mfincham\nConventional wisdom has long had it that short DNS TTLs are bad because they increase query loads and any faults in DNS will cause availability problems more quickly.<p>It seems popular now though for large sites (e.g. twitter.com, github.com, ycombinator.com, stackoverflow.com just to name a few) to use relatively short DNS TTLs, between 1 and 5 minutes, presumably to make failover easier.<p>Has popular opinion around short TTLs being &quot;OK&quot; changed? ", "Are these sites doing something special to make this viable?", "\n======\nwahern\nVery large site operators use anycast routing[1] which is particularly well\nsuited to UDP DNS; they can easily spread load and minimize latency. ", "If you\ncan leverage anycast directly or indirectly through DNS hosting services then\nlow TTLs are not a problem.", "\n\nOtherwise, it depends. ", "Even with one DNS query per HTTP request, DNS will only\nrepresent a fraction of your network load. ", "It's difficult to make any DNS\nserver break a sweat. ", "More likely the network link will saturate beforehand,\ncausing lots of dropped packets. ", "But it's trivial to advertise and use\nmultiple DNS servers; much more trivial than a web application stack. ", "DNS was\nbuilt for high availability almost since day 1. ", "This is also why you shouldn't\nworry too much about low TTLs exacerbating network faults--there's no excuse\nfor not using geographically dispersed authoritative name servers.", "\n\nFor example, depending on the site I'll often host the domain on my own\nprimary name server so I can control records without fscking with a web GUI or\nREST API, but the advertised authoritative name servers are EasyDNS servers\nwhich behave as secondaries mirroring my primary.", "\n\nThe real issue isn't load but latency. ", "That's a more complex problem. ", "If\nyou're not using anycast then your site is probably not big enough or\nimportant enough for a few millisecond latency upfront for intermittent page\nloads to matter. ", "Also, many caching resolvers these days will preemptively\nrefresh records upon TTL expiration subject to usage patterns, which means if\nyou're seeing moderate, repeat traffic then users may not experience any\nadditional latency at all. (", "Similarly, caching resolvers will often remember\nfailing servers and try them last, regardless of ordering in a response.)", "\n\nAs for how painful are erroneous DNS changes, low and high TTLs cut both ways.", "\nIf it really matters you should be monitoring this stuff 24/7 (e.g. Pingdom),\nwhich means record errors should be quickly identified and reported. ", "If you're\nsetup to respond quickly (which you should be for a serious commercial\noperation), that augurs in favor of low TTLs.", "\n\n[1]\n[https://en.wikipedia.org/wiki/Anycast](https://en.wikipedia.org/wiki/Anycast)\n\n------\nbigiain\nAWS Route53 defaults to 300 seconds (which is probably why so many articles\nsee that as the median ttl), and I've never encountered problems leaving that\nat the default. ", "I suspect the performance problems are real if you're running\nyour own dns servers - but if you're piggybacking on something like AWS I\nseriously doubt you'll see issues (apart from monthly bills, if you suddenly\ngo viral to the moon...)\n\n\"Back in the day\", Internet Explorer was a problem with TTLs, from memory IE6\nwas when they stopped caching all dns lookups for 24hrs no matter what the til\nwas, and IE6 still coached for 4hrs. (", "This was a drama for me back in the\nearly 2000's when I was trying to do dns based load balancing...)\n\nMy opinion these days is don't try to go much below 1 minute if you want other\npeoples resolvers or software to honour your ttls, but I do see people using 1\nsec ttls occasionally, so presumably if your application doesn't mind too much\nif not everybody h9onours your ttl - it's still worth doing for some people...\n\n------\nmfincham\nAlso in the mix: is there any point in having multiple A records for a busy\nsite now?", "\n\n" ]
{ "pile_set_name": "HackerNews" }
[ 0.02, 0.010570824524312896, 0, 0.00625, 0.008928571428571428, 0, 0.020202020202020204, 0.018867924528301886, 0, 0.009259259259259259, 0.017857142857142856, 0, 0.007194244604316547, 0, 0, 0, 0.008438818565400843, 0, 0.0125, 0, 0, 0.01107011070110701, 0, 0.005758157389635317, 0 ]
0.006276
5
[ "Happy Sunday Everyone; I say this with a fair amount of sarcasm, as the weekend comes to a close. ", "This happens to mean little to me as I work pretty much 24 hours a day 7 days a week; it just goes with my job, I just fill the voids with the things in life that I enjoy.", "\n\nToday I used a new straight razor I bought and received yesterday, a Ralf Aust 6/8 Spanish point in Olive wood scales. ", "Beautiful razor by every account, and came from Straight Razor Design in the fast and professional way in which I am starting to measure everything else by. ", "dammit Amazon Prime; FASTER ! ", "I really like the feel of the 6/8 blade opposed to the 5/8 mainly due to the weight added; I like the 5/8 just fine, but it is good to know that there are options now for me ranging from 4/8-7/8 in my den.", "\n\nBeing my last day of the week shave and it also being a “S” day I decided to end it for the Lord with St. James from Taylor of old Bond street (TOBS). ", "This is a great youthful and light scent that really says spring is on its way and is by no means a winter or fall scent. ", "Perfect for an oddly hot 80 degree April day in the northeast. ", "I used my Plisson synthetic which works amazingly well at lathering creams enough said there. ", "I have not tried many synthetic brushes but where this brush lacks is in backbone where it excels is in softness easily being the softest brush I have ever used bar none; hence why it works as a bowl latherer with creams so well.", "\n\nI ended the shave with the standard cold water rinse, and alum block, and Thayer’s unscented witch hazel. ", "I used the matching St. James after shave splash and Aveeno scent free balm. ", "Almost zero feed back from the alum block and my face is getting nearer to BBS smooth with every straight shave. – ", "Aaron" ]
{ "pile_set_name": "OpenWebText2" }
[ 0, 0, 0.008264462809917356, 0, 0.06666666666666667, 0, 0.006535947712418301, 0, 0, 0.010638297872340425, 0, 0.009259259259259259, 0.012987012987012988, 0, 0.2 ]
0.020957
5
[ "Q:\n\nSending data using Ajax to PHP\n\nI am trying to send a string via ajax using the GET method but whenever that string contains some punctuation characters those characters do not appear when I use the echo in php.", "\nFor example if I send a string \"sub + 12\" the php will echo \"sub 12\"\nIf I send \"&()*\", php will echo an empty string.", "\nWhy does this happen?", "\nAre there any special characters that the string cannot contain?", "\n\nA:\n\nyou encodeURIComponent(). ", "this is demo code which you can check\nsomething like this encodeURIComponent(yourtext)\nfirst this html code . ", "in text filed enter your text and check this output, this is onkeyup so enter text and check result\n<html>\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n<title>PHP, jQuery search demo</title>\n<link rel=\"stylesheet\" type=\"text/css\" href=\"my.css\">\n\n<script src=\"https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js\"></script>\n<script type=\"text/javascript\">\n$(document).ready(function () {\n $(\"input\").keyup(function () {\n $('#results').html('');\n var searchString = $(\"#search_box\").val();\n var data = 'search_text=' + encodeURIComponent(searchString);\n if (searchString) {\n $.ajax({\n type: \"GET\",\n url: 'edit.php',\n data: data,\n dataType: 'text',\n async: false,\n cache: false,\n success: function (result) {\n $('#results').html(result);\n //window.location.reload();\n\n }\n });\n }\n });\n});\n </script>\n\n</head>\n<body>\n<div id=\"container\">\n<div style=\"margin:20px auto; text-align: center;\">\n<form method=\"post\" action=\"do_search.php\">\n <input type=\"text\" name=\"search\" id=\"search_box\" class='search_box'/>\n <input type=\"submit\" value=\"Search\" class=\"search_button\"/><br/>\n</form>\n</div>\n<div>\n\n<div id=\"searchresults\">Search results :</div>\n<ul id=\"results\" class=\"update\">\n</ul>\n\n</div>\n</div>\n\n</body>\n</html>\n\nthen create edit.php file \n<?", "php \n\n$searchquery = $_GET['search_text']; \necho $searchquery;\n?", ">\n\nthen check result . ", "which is working\nOutput is \nSearch results :\n &()*\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0.009302325581395349, 0, 0, 0, 0, 0, 0.0026578073089701, 0.015625, 0, 0 ]
0.002759
5
[ "This proposal investigates novel signaling mechanisms of protein kinase D (PKD) and its relevance to the pathogenesis of prostate cancer. ", "The family of PKD serine/threonine kinases is a novel target of the key second messenger diacylglycerol (DAG) and its pharmacological analogs, phorbol esters. ", "DAG and phorbol esters directly bind PKD at its C1 domain and activate PKD through phosphorylation via protein kinase C (PKC). ", "Aberrant DAG signaling is closely couples to the etiology of many cancers including the prostate cancer. ", "PKD as a novel DAG target has significant prognostic and therapeutic values for these diseases. ", "Substantial evidence from our studies supports a novel role of PKD3, a new member of the PKD family, in prostate carcinogenesis. ", "We have demonstrated progressive nuclear accumulation of PKD3 as well as elevated expression in human prostate tumors, revealing a potential mechanism whereby PKD contributes to the development of prostate cancer. ", "PKD3 promotes prostate cancer cell growth, survival, and migration/invasion, and knockdown of PKD3 inhibits the growth of prostate tumor xenografts in mice. ", "PKD3 signals downstream of PKC5, an oncogenic protein in prostate cancer, and modulates crucial cell growth/survival regulatory pathways including Akt and EKR1/2 in prostate cancer cells. ", "These findings support the crucial role of a constitutively active PKC5/PKD3 pathway in prostate oncogenesis. ", "The proposed studies will further dissect the signaling mechanisms of PKD3 and define its functional impact in the pathogenesis of prostate cancer. ", "If successful, these studies will reveal the potential value of PKD3 as a novel biomarker and therapeutic target for prostate cancer. ", "Ultimately, new strategies may be designed for targeting PKD3 as therapy for prostate cancer as well as other diseases with deregulated DAG signaling. ", "Three specific aims will be tested in this proposal: Specific Aim 1. ", "Determine the role of PKD3 in the pathogenesis of prostate cancer in vivo. ", "Specific Aim 2. ", "Test the hypothesis that the nuclear accumulation of PKD3 as a consequence of constitutively active PKC5/PKD3 is essential for growth, survival, migration/invasion of prostate cancer cells. ", "Specific Aim 3. ", "Determine relevance of PKD3 in acquired phorbol 12-myristate 13-acetate (PMA) resistance and cell proliferation in prostate cancer cells." ]
{ "pile_set_name": "NIH ExPorter" }
[ 0.007246376811594203, 0.012578616352201259, 0.023622047244094488, 0.009523809523809525, 0.020833333333333332, 0.007751937984496124, 0.004672897196261682, 0, 0.010638297872340425, 0.00909090909090909, 0, 0, 0.006622516556291391, 0, 0, 0, 0.005263157894736842, 0, 0.0072992700729927005 ]
0.006586
5
[ "James Forrest celebrates scoring the winner for Celtic against Rangers\n\nCeltic winger James Forrest has been named the PFA Scotland Premiership Player of the Year.", "\n\nForrest beat team-mate Callum McGregor and Rangers pair Ryan Kent and Alfredo Morelos to claim the main prize of the night at the PFA Scotland annual awards.", "\n\nForrest scored 11 goals and added nine assists as Celtic won their eighth consecutive Scottish Premiership title.", "\n\nKilmarnock's Steve Clarke won manager of the year\n\nKilmarnock's Steve Clarke was named GMB Scotland Manager of the Year award after the Ayrshire team broke their top-flight points record for a second season running.", "\n\nClarke saw off competition from Ross County co-managers Stuart Kettlewell and Steven Ferguson, Alloa boss Jim Goodwin and Arbroath's Dick Campbell.", "\n\n\"It feels great, it's always nice to be nominated and extra nice when you actually get your hands on the trophy,\" Clarke told Sky Sports News.", "\n\n\"I was nominated last year but didn't win the award so to get it this year is great, but it also tells you how good the team has been over the last 18 months.\"", "\n\n2:17 On-loan Liverpool winger Ryan Kent says returning to Rangers next season is a 'possibility' for him. ", "On-loan Liverpool winger Ryan Kent says returning to Rangers next season is a 'possibility' for him.", "\n\nRangers winger Kent won the Young Player of the Year award.", "\n\nKent, 22, is on loan from Liverpool and he is grateful to Rangers manager Steven Gerrard for giving him the opportunity to shine at Ibrox this season.", "\n\n\"I have been able to showcase my ability not only on a domestic level but also on a European platform and I have Steven Gerard to thank for that,\" Kent told Sky Sports News.", "\n\n\"I am really grateful for the opportunities that I have been given this season.\"", "\n\nKent is due to return to Liverpool after the season but he says returning to Rangers is something he will consider.", "\n\n\"It is an option, it is a possibility,\" Kent said. \"", "Since I have walked in the door on day one the fans have been magnificent to me. ", "All the coaching staff and all the players have really made me feel welcome.", "\n\n\"I feel that has got the best out of me. ", "This club has done a lot for me so it would be nice to do a lot for them in the future as well.\"", "\n\nCeltic's Scott Brown and Callum McGregor were both named in the team of the year\n\nKent was one of four Rangers players named of the PFA Scotland's Premiership Team of the Year. ", "He was joined by team-mates Allan McGregor, James Tavernier and Alfredo Morelos.", "\n\nChampions Celtic contributed five players with Kristoffer Ajer, Dedryck Boyata, Callum McGregor and Scott Brown named alongside Forrest.", "\n\nLivingston's Craig Halkett and Aberdeen's Graeme Shinnie were the two other players included.", "\n\nPFA Scotland's Premiership Team of the Year:\n\nAllan McGregor (Rangers); James Tavernier (Rangers), Kristoffer Ajer (Celtic), Dedryck Boyata (Celtic), Craig Halkett (Livingston); Callum McGregor (Celtic), Scott Brown (Celtic), Graeme Shinnie (Aberdeen); James Forrest (Celtic), Alfredo Morelos (Rangers), Ryan Kent (Rangers)." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.03067484662576687, 0.031446540880503145, 0.02608695652173913, 0.02304147465437788, 0.040268456375838924, 0.013888888888888888, 0, 0.018518518518518517, 0.02, 0, 0.006578947368421052, 0.011428571428571429, 0, 0.008547008547008548, 0, 0, 0, 0, 0, 0.0335195530726257, 0.0375, 0.036231884057971016, 0.031578947368421054, 0.0705521472392638 ]
0.018328
5
[ "BRAF V600E mutant oligodendroglioma-like tumors with chromosomal instability in adolescents and young adults.", "\nWe performed genome-wide methylation analysis on 136 pediatric low-grade gliomas, identifying a unique cluster consisting of three tumors with oligodendroglioma-like histology, BRAF p.V600E mutations and recurrent whole chromosome gains of 7 and loss of 10. ", "Morphologically, all showed similar features, including a diffusely infiltrative glioma composed of round nuclei with perinuclear halos, a chicken-wire pattern of branching capillaries and microcalcification. ", "None showed astrocytic features or characteristics suggestive of high-grade tumors including necrosis or mitotic figures. ", "All tumors harbored multiple chromosomal copy number abnormalities (>10 chromosomes altered), but none showed 1p/19q co-deletion or IDH1 p.R132H mutation. ", "Hierarchical clustering and t-stochastic neighbor embedding analyses from DNA methylation data cluster them more closely to previously described pediatric-type low-grade gliomas and separate from adult gliomas. ", "These tumors exhibit distinct clinical features; they are temporal lobe lesions occurring in adolescents and young adults with a prolonged history of seizures and all are alive with no recurrence (follow-up 3.2 to 13.2 years). ", "We encountered another young adult case with quite similar pathological appearance and molecular status except for TERT promoter mutation. ", "Although the series is small, these may represent a new category of IDH wild-type low-grade gliomas which may be confused with \"molecular GBM.\" ", "Further, they highlight the heterogeneity of IDH wild-type gliomas and the relatively indolent behavior of \"pediatric-type\" gliomas." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0.003861003861003861, 0, 0, 0, 0, 0, 0.007194244604316547, 0.013888888888888888, 0.007575757575757576 ]
0.003252
5
[ "Export/Download Printable Text (.txt) CSV Multiverse id (.txt) Markdown/Reddit MTGO (.dek) MTG Salvation\n\nMTG Arena\n\nCopy to clipboard\n\n4 Brimstone Volley (2XM) 120 2 Burn at the Stake (AVR) 2 Fervor (M13) 4 Goblin Arsonist (M21) 147 4 Guttersnipe (MYS1) 145 2 Hellrider (JMP) 334 4 Krenko's Command (MYS1) 53 3 Krenko, Mob Boss (JMP) 339 3 Mogg Flunkies (MYS1) 143 23 Mountain (ZNR) 275 4 Pillar of Flame (JMP) 355 3 Rakdos Cackler (RTR) 67 2 Reforge the Soul (C16) 132 3 Searing Spear (E01) 56 3 Arms Dealer (M13) 2 Chandra, the Firebrand (M13) 4 Slumbering Dragon (M13) 253693 2 Thunderous Wrath (MM3) 113\n\nCopied to clipboard. ", "You can now import it in the MTG Arena client.", "\n\nIn TappedOut's comments/forums\n\nIn TappedOut's comments/forums with pie-chart\n\nOn your blog\n\nThis will require TappedOut.js included in your blog." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.020602218700475437, 0, 0.013513513513513514 ]
0.011372
5
[ "atxs1krr said:\n\n\n\nProduction dates from Nov 2011 thru Feb 2012.", "\n\n\n\nTo see your production date enter the last 7 of your vin into the decoder at\n\n\n\nJust got a production date range of the effected bikes from my dealer.", "Production dates from Nov 2011 thru Feb 2012.To see your production date enter the last 7 of your vin into the decoder at realoem.com Click to expand...\n\nCan't wait to hear what it is. ", "My production date is Sept 2011 - can't imagine mine is okay. ", "If it is motor related - should not come as a huge surprise - that is basically the one thing they did not fool with.", "Just the other day I noticed that the rear wheel bearings are making a racket - have not had the chance to remove the rear wheel and take a look. ", "I have read here that it could be a seal - but I'm not so sure a seal in itself could make such noise. ", "So I may have several reasons not to ride my bike.", "I have owned it since Feb and have not really had the chance to ride it - only has 200 miles on it. ", "Looks like I'm about to ride it even less.", "Mine started out tough - right from the purchase - I never took delivery the ECM had to be replaced.", "It is situations like this that makes me so happy that I'm fortunate to own several bikes. ", "Good chance I can keep one of them running." ]
{ "pile_set_name": "OpenWebText2" }
[ 0, 0, 0.005405405405405406, 0, 0, 0, 0, 0, 0, 0, 0.01, 0, 0 ]
0.001185
5
[ "Main ContentPlaceholder\n\nUlkomaat\n\nKommentti: Saudien savuava ase ei vakuuta\n\nJalostamoiskusta ei ole vielä kiistattomia todisteita, eivätkä Saudi-Arabian kruununprinssi Mohammed bin Salman ja Yhdysvaltain presidentti Donald Trump ole uskottavia tahoja niitä esittämään, kirjoittaa kommentissaan HS:n ulkomaantoimittaja Ville Similä.", "\n\nFacebook Twitter Sähköposti Kopioi linkki Jaa Facebook Twitter Sähköposti Kopioi linkki Tallenna Kommentoi" ]
{ "pile_set_name": "OpenWebText2" }
[ 0.021021021021021023, 0.037037037037037035 ]
0.029029
5
[ "Q:\n\nHow to conditionally render an f:selectItem tag?", "\n\nHow can I specify a conditional rendering for an <f:selectItem> tag. ", "\nI need to display <f:selectItem> options according to a specific user's status.", "\nFor example, I wanted something like:\n<f:selectItem itemLabel=\"Yes! ", "I need a girlfriend!\"", "\n rendered=\"false(or some boolean condition)\"\n itemValue=\"o1\"/>\n\nA:\n\nThe <f:selectItem> does not support the rendered attribute. ", "Your closest bet is the itemDisabled attribute which still displays the item, but makes it unselectable. ", "This is also supported in <f:selectItems>.", "\nIn case of <p:selectOneMenu> you can then just add some CSS to hide disabled items.", "\n<p:selectOneMenu ... panelStyleClass=\"hideDisabled\">\n <f:selectItem itemValue=\"1\" itemLabel=\"one\" />\n <f:selectItem itemValue=\"2\" itemLabel=\"two\" itemDisabled=\"#{some.condition}\" />\n <f:selectItem itemValue=\"3\" itemLabel=\"three\" />\n</p:selectOneMenu>\n\n.ui-selectonemenu-panel.hideDisabled .ui-selectonemenu-item.ui-state-disabled {\n display: none;\n}\n\nIn case of <h:selectOneMenu> you're more dependent on whether the webbrowser supports hiding the disabled options via CSS:\n<h:selectOneMenu ... styleClass=\"hideDisabled\">\n <f:selectItem itemValue=\"1\" itemLabel=\"one\" />\n <f:selectItem itemValue=\"2\" itemLabel=\"two\" itemDisabled=\"#{some.condition}\" />\n <f:selectItem itemValue=\"3\" itemLabel=\"three\" />\n</h:selectOneMenu>\n\nselect.hideDisabled option[disabled] {\n display: none;\n}\n\nThe server side alternative is to bring in a JSTL <c:if> around the individual <f:selectItem> to contitionally add it to the view like this (make sure you're aware of how JSTL works in JSF: JSTL in JSF2 Facelets... makes sense?):", "\n<f:selectItem itemValue=\"1\" itemLabel=\"one\" />\n<c:if test=\"#{not some.condition}\">\n <f:selectItem itemValue=\"2\" itemLabel=\"two\" />\n</c:if>\n<f:selectItem itemValue=\"3\" itemLabel=\"three\" />\n\nOr, you could simply dynamically populate a List<SelectItem> in the backing bean based on the calculated conditions and bind it with <f:selectItems>.", "\n\nA:\n\nThe workaround I use is setting the itemDisabled attribute and using this CSS:\nselect option[disabled] { display: none; }\n\nBut it needs to be fixed properly in JSF.", "\n\nA:\n\n<c:if> for me is also not working if it depends on the repeated variable of a ` component (on first build phase it works but using ajax and updating the collection of the for-each it fails, showing some items twice and others not)\nthis is really one big issue in JSF. ", "Disabling is not always an option, and this way much more code is necessary in the bean to address such \"easy\" things.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.000968054211035818, 0, 0.011764705882352941, 0.0036496350364963502, 0, 0 ]
0.001092
5
[ "Transcatheter mitral valve-in-valve intervention (TMVI) is an alternative mode of treatment to re-do surgery for bioprosthetic valve failure. ", "Although transapical access represents the shortest route to deliver the new bioprosthesis in the mitral position, currently the transseptal route is becoming more popular \\[[@cit0001], [@cit0002]\\]. ", "We present the first case in Poland of TMVI using transseptal access.", "\n\nA 69-year-old female patient who underwent surgical mitral valve replacement with an Epic 31 mm (Abbot) valve, after 2 ischemic strokes with pulmonary hypertension and chronic kidney disease stage 4 (EuroSCORE II 9.8%), developed dyspnea 3 years following surgery (NYHA class III). ", "Echocardiographic examination revealed signs of severe stenosis and mild insufficiency of the Epic valve. ", "After discussion at the heart team meeting, due to high risk of a re-do operation the patient was referred for TMVI.", "\n\nBased on the internal lumen diameter of the Epic valve the suggested valve size should be 29 mm ([Figure 1 A](#f0001){ref-type=\"fig\"}), but cardiac computed tomography (CCT) revealed extensive hypodense pannus formation with mean inner lumen diameter of 21 mm ([Figure 1 B](#f0001){ref-type=\"fig\"}). ", "Because of this appearance it was agreed to perform balloon sizing of the degenerated bioprosthesis with a 22 mm balloon catheter. ", "The patient was screened for possible left ventricular outflow tract (LVOT) obstruction by means of neo-LVOT calculation and aorto-mitral angulation, showing no or little risk of obstruction ([Figures 1](#f0001){ref-type=\"fig\"} C--E) \\[[@cit0003], [@cit0004]\\].", "\n\n![", "Pre-procedural cardiac computed tomography analysis. **", "A** -- Internal dimensions (ID) of Epic 31 mm valve; based on the Valve in Valve app -- true ID = 26.5 mm. **", "B** -- CT-ID, dimensions of the true lumen. **", "C** -- Aorto-mitral angulation (AMA) suggesting low risk of LVOT obstruction (wider than 120°). **", "D, E** -- Neo-LVOT calculation with virtual valve implantation showing an area above 2.0 cm2, which could increase the risk of LVOT obstruction](PWKI-15-36115-g001){#f0001}\n\nThe procedure was performed via the transvenous route in general anesthesia under transesophageal echocardiography (TEE) guidance. ", "After puncture of the interatrial septum in postero-inferior location and crossing through the degenerated valve into the left ventricle, dilatation of the intra septal channel was performed with a 12 × 40 mm peripheral balloon catheter. ", "Predilation with a 22 mm balloon catheter was performed and upon inflation a clear waist was visible ([Figure 2 A](#f0002){ref-type=\"fig\"}); therefore a 26 mm Sapien 3 (Edwards Lifesciences) valve was chosen. ", "Despite the previous dilatation of the intra-septal channel the crossing with the delivery system showed some difficulty, but after changing to a Lunderquist Extra Stiff guidewire and some mild dilatation of the distal part of the Edwards balloon it was possible to obtain correct positioning ([Figure 2 B](#f0002){ref-type=\"fig\"}). ", "During rapid pacing the valve was implanted in a 20%/80% (atrium/ventricle) depth ratio and afterwards postdilated distally with an extra 2 ml of volume to obtain a wider, cone-shaped, ventricular end of the valve. ", "In post-procedural angiography there were no signs of paravalvular regurgitation ([Figure 2 C](#f0002){ref-type=\"fig\"}), and TEE showed good expansion of the implanted valve ([Figure 2 D](#f0002){ref-type=\"fig\"}).", "\n\n![", "Transcatheter mitral valve-in-valve implantation. **", "A** -- Predilatation of a 31 mm Epic bioprosthesis with a 22 mm balloon catheter. ", "The waist is clearly visible (white arrows). **", "B** -- Edwards SAPIEN 3 26 mm delivery. ", "In order to facilitate the delivery, mild balloon inflation (white arrow) and changing to a Lunderquis Extra Stiff guidewire (asterisk) was performed. **", "C** -- Final angiography showing no residual paravalvular leak (PVL). ", "Aorta and left ventricle marked with white dotted line; red dotted line -- Epic 31 mm valve stent. **", "D** -- Postprocedural photorealistic TEE (Philips Epic CVx) showing excellent prosthesis position and no PVL](PWKI-15-36115-g002){#f0002}\n\nIn carefully selected patients TMVI is a forward-looking method enabling less invasive treatment for severe mitral prosthesis failure. ", "With the use of proper implantation technique \\[[@cit0005], [@cit0006]\\] the procedure is safe and feasible via the transfemoral venous route. ", "The most crucial part of planning the procedure, besides screening for possible LVOT obstruction, is valve sizing. ", "Given the possibility of late valve migration, undersizing should be avoided in most cases. ", "In those situations the true ID should be chosen as the proper diameter to size the valve. ", "In cases with extensive hypodense pannus formation or calcifications within the bioprosthetic valve an alternative may be used. ", "Although controversial, balloon sizing may prove useful to determine the strength and flexibility of additional tissue found within the stent of the degenerated bioprosthesis, therefore providing new information on the appropriate transcatheter valve size for mitral valve-in-valve procedures.", "\n\nThe authors want to thank Prof. Markus Kassel for his technical expertise and assistance during the procedure.", "\n\nConflict of interest\n====================\n\nThe authors declare no conflict of interest.", "\n" ]
{ "pile_set_name": "PubMed Central" }
[ 0.014084507042253521, 0.01, 0.014492753623188406, 0.0035211267605633804, 0, 0.008620689655172414, 0.0033112582781456954, 0, 0.007662835249042145, 0, 0, 0, 0, 0.02040816326530612, 0.006557377049180328, 0, 0, 0.003003003003003003, 0, 0.004694835680751174, 0, 0.019230769230769232, 0, 0, 0, 0.006535947712418301, 0, 0.009900990099009901, 0.010948905109489052, 0.013986013986013986, 0.008695652173913044, 0, 0, 0, 0, 0.008928571428571428, 0, 0 ]
0.004594
5
[ "The present invention relates most generally to semiconductor devices and methods for manufacturing the same. ", "More particularly, the present invention provides a method and structure for preventing base groups from becoming nested in low-k dielectric materials and subsequently rendering photoresists insoluble.", "\nDeep ultra-violet (DUV) lithography is widely used in the fabrication of advanced VLSI (Very Large Scale Integration) semiconductor devices. ", "Chemically amplified DUV photoresists improve the performance of the lithography systems and improve device feature resolution. ", "Low dielectric constant (low-k) dielectrics are favored in today\"\"s semiconductor manufacturing industry because of the performance improvements they provide by way of reducing parasitic capacitance, reducing propagation delay and therefore increasing device speed. ", "The use of copper interconnect features is also favored to reduce line resistance of the interconnect lines. ", "Typical copper interconnect schemes incorporate damascene manufacturing techniques to define the interconnect paths. ", "A dual damascene approach is favored because it provides lower cost processing, improved level-to-level alignment tolerance and thus allows for tighter design rules and improved performance.", "\nA shortcoming associated with the use of low-k dielectrics in conjunction with copper interconnect lines and chemically amplified photoresists used in DUV lithography, is that base groups which become nested in porous low-k dielectric materials, can interact with the acid catalysts included in chemically amplified photoresists to render the exposed photoresist insoluble in developer. ", "This unwanted residual photoresist distorts the pattern being formed and is difficult to remove. ", "Base groups such as amines or other Nxe2x80x94H base groups, are typically produced in association with conventional hard mask films, etch stop layers and barrier films used in the film stack that also includes the low-k dielectric films, and which is advantageously used in dual damascene processing. ", "Etch stop layers and barrier films are commonly nitrogen-containing films.", "\nIt is therefore desirable to enjoy the benefits provided by copper interconnect technology, low-k dielectric films and chemically amplified photoresists in DUV lithography systems, without degrading the chemically amplified photoresist by interaction with base groups from low-k dielectric films.", "\nThe present invention provides a method and structure for isolating low-k dielectric layers from nitrogen base layers that include Nxe2x80x94H base groups which are capable of diffusing from the nitrogen base layer and becoming nested in the low-k dielectric layer. ", "The present invention provides an oxygen-containing layer disposed directly between the low-k dielectric layer and the nitrogen base layer.", "\nThe present invention also provides a process for forming a semiconductor product which includes forming at least one low-k dielectric film over a substrate, forming at least one Nxe2x80x94H base film over the substrate using a source chemistry which includes ammonia, and forming a TEOS (tetraethyl orthosilicate) oxide film between at least one adjacent set of a low-k dielectric film and an Nxe2x80x94H base film." ]
{ "pile_set_name": "USPTO Backgrounds" }
[ 0, 0, 0.014084507042253521, 0.0078125, 0, 0, 0, 0, 0.002577319587628866, 0, 0, 0, 0.003367003367003367, 0, 0, 0.002398081534772182 ]
0.00189
5
[ "Deluxe Name Badges\n\nUpgrade to these Custom Printed Name Tags and your business is sure to get noticed. ", "Use as Conference Badges or Company I.D.'s. ", "for effective branding. ", "Custom Printed Name Badges are great for retail, restaurant, hotel, travel industries and more.", "\n\nName badges are great for building company recognition at tradeshows and professional events. ", "These promotional name badges are made of sturdy plastic in your choice of 34 vibrant colors to compliment your logo.", "\n\nSet your company apart from the rest with Name Badges. ", "With thirty-four colors to choose from, you'll find the perfect shade to accent your logo. ", "Made of sturdy plastic, these will withstand the busiest work environments.", "\n\nYou've got sharp employees. ", "Our Custom Name badges are as smart as they are. ", "Pair them up for a winning combination that presents your company best above the rest. ", "These Name Badges create a lasting first impression." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0, 0, 0, 0.017543859649122806, 0, 0, 0, 0, 0, 0 ]
0.00135
5
[ " \nThe Willing Spirit\n\nPiers Anthony and Alfred Tella\n\n* * *\n\nAcknowledgment\n\nThanks to Professor Krishnamurti Chandrasekar\n\nfor sharing his knowledge of Indian mythology,\n\nand to whom this tale owes so much\n\n* * *\n\nContents\n\nPrologue\n\nChapter 1: The Palace of the Zamindar\n\nChapter 2: The Zamindarini\n\nChapter 3: The Cave of the Guru\n\nChapter 4: The She-Demon\n\nChapter 5: The Eye of Kali\n\nChapter 6: Pitali: City of the Rajah\n\nChapter 7: The Rana and the Rani\n\nChapter 8: The Endless Caverns\n\nChapter 9: The Loan\n\nChapter 10 :The Sack of Grain\n\nChapter 11: The Lake Palace\n\nChapter 12: The Rider in Black\n\nChapter 13: The Zamindar\n\nChapter 14: Mohini\n\nAuthors' Notes\n\n* * *\n\nPrologue\n\nFinally Mohini turned to face him. ", "Ravana! ", "she exclaimed in a petite fury. ", "Why won't you leave me alone, you repulsive horny monster?", "\n\nRavana smiled, revealing grotesque ragged tusks. ", "He angled his ugly head to show the horns to better effect. ", "Because you are an Apsara, the most beautiful creature of Indra's heaven, and I am smitten by your lovely features. ", "You will not easily be rid of me.", "\n\nBut I am not smitten by YOU, you horror from no realm I would care to know. ", "I am a lesser goddess who prefers to associate with personable folk. ", "What can I do to make you go away for a century or two so I can have some peace?", "\n\nRavana considered. ", "You might deal with me. ", "Perhaps we should wager on a game with suitable prizes.", "\n\nNow Mohini considered, realizing that while she could never escape the evil male spirit through flight or avoidance, she might do so by means of wit. ", "What kind of game?", "\n\nHe shrugged, causing his discolored scales to grind against each other. ", "Why not a game with mortals as ignorant pawns? ", "They are often entertaining in their confusion, especially when their gore spills out just before they die.", "\n\nMohini winced, but remained lovely regardless, for she was incapable of ugliness. ", "I much prefer romantic games that tweak mortal heartstrings and lead to expressions of tenderness, music, and poetry.", "\n\nUgh! ", "But Ravana knew that he could never make her submit to his desire without her cooperation; he had to compromise. ", "Perhaps a game of romance and violence.", "\n\nMohini was intrigued. ", "The romance for me, the violence for you, as befits our natures.", "\n\nRape and vengeance, he suggested.", "\n\nLove and loss, she countered.", "\n\nThey were getting somewhere. ", "For what stakes?", "\n\nA century of peace from you.", "\n\nA century of erotic frenzy from you.", "\n\nShe paused, reconsidering. ", "The prizes did seem fair. ", "Surely she could beat this monster, if the game was fair. ", "Agreed.", "\n\nAgreed.", "\n\nHaving settled the fruits of victory and defeat, they focused on the nature of the game itself. ", "In due course they hammered out a situation that offered a number of intriguing ramifications. ", "They would choose a single mortal man, whom neither of them would touch directly, though both could read mortal thoughts. ", "The man would go where he wished and do what he wanted, except when they deflected his course by indirect means, taking turns. ", "Mohini would act only through mortal females, and Ravana only through mortal males, touching each with a single act or emotion, then allowing the consequences to proceed in their natural fashion until the other spirit acted; then the turn would change again. ", "Each act had to appear natural to the mortals, so as to attract no suspicion of supernatural intervention. ", "If any such suspicion arose, the one responsible would forfeit the game.", "\n\nIf Mohini could seduce the mortal man in seven different guises, through different women, without Ravana killing him, she would win. ", "Since she would enjoy the seductions, and he would enjoy the mayhem, the game should be interesting throughout.", "\n\nNow we must find our innocent mortal man.", "\n\nAnd soon thereafter I shall be slavering over your dainty quivering posterior.", "\n\nOr propelling your own brute buttocks rapidly elsewhere. ", "We shall see, Ravana.", "\n\nWe shall indeed.", "\n 1\n\n* * *\n\nThe Palace of the Zamindar\n\nMany village maidens wept when young Hari announced he would don the white mantle of austerity, take leave of his friends and family, and set out upon the open road in search of truth and wisdom.", "\n\nBeloved for his beauty, cleverness, and gentle ways, he would not heed the pleas of his mother and sister, uncles and neighbors, to remain among them in his ancestral home. ", "It was not because he was the only son of a widow or for need of his labor that they wished him to remain; rather, it was for the joy he brought to his family and all who knew him.", "\n\nRavana!", "\n\nWho calls me?", "\n\nTall, slender, sturdy of limb, blessed with the cherished lightness of skin the color of ripe wheat, sharp of feature, unspoiled, and in the fullness of his youth was Hari. ", "Yet, if the gods had smiled upon him, still he was not content. ", "Restlessness gnawed at his heart and wanderlust tugged at his soul.", "\n\nI, Mohini, am calling you, dullard. ", "Here is the one! ", "Come and see if it is not so.", "\n\nOf late his thoughts and fancies drifted to imaginary far-off places, like shadows in a waking dream. ", "He remembered the stories his father had told him as a child, of strange peoples and customs in distant lands and the talking animals that had illuminated the many subtleties and foibles of human character. ", "And had not his venerated teacher, Bava, the village pundit, taught him to love and seek out knowledge, to value and learn from all experience? ", "Surely, he told himself, such experience encompassed the outside world and the senses as well as the mind and spirit.", "\n\nThis idiot mortal? ", "Mohini, his naiveté is grotesque. ", "He thinks that mortal creatures exist for some purpose other than the entertainment of immortal spirits.", "\n\nHari had refused to consider offers of marriage, though it was a village custom that eligible bachelors of high caste take a wife before reaching the age of twenty-one. ", "The time had come when he could no longer deny the longing within. ", "He had to reach out for the promises that ever lingered on the horizon, beckoning him, filling his imagination. ", "And so it was that one month before his twenty-first birthday he announced his decision to leave the village of his birth. ", "He promised his mother and sister that he would return before too long and would keep his vegetarian habits.", "\n\nI don't care, Ravana. ", "I think he's cute, in body and mind. ", "He means so well, with so little experience of evil.", "\n\nHis mother wept as she tied an amulet of yellow string from the family altar around his arm to protect him on his travels. ", "His sister marked his forehead with a stripe of ash and admonished him to watch out for snakes on the road. ", "Refusing all but a few coins and some meager provisions, he bade his family farewell and in the pale light of a summer's dawn set out upon a path through the hills to the south.", "\n\nI will make short work of this one, Mohini! ", "If he's the one you want, you are as great a fool as he is.", "\n\nGlad to be on the road, Hari kept a brisk pace, in time with the beating of his heart. ", "He heeded not the brooding hills, laden with premonitions, or the baleful eye of Surya, the sun, as it rolled upward across the cloudless sheet of sky. ", "But he laughed at the young mynah birds that chattered and argued among the leaves of the tamarind, and he mimicked the merry chirpings of crickets in the brush.", "\n\nThen we are agreed, you grotesque evil spirit. ", "This is the mortal we shall use to decide our issue.", "\n\nThe earth and sky and their offspring were his ever present companions. ", "The shade of the banyan gave him relief from the late afternoon sun, and the coconut, mango, and jackfruit trees that grew in abundance provided him ample nourishment. ", "The many streams that snaked along the base of the hills served to slake his thirst and provide for his ablutions. ", "What more could he ask of life than this? ", "A simple yet satisfying tour of the countryside, with ample time for contemplation.", "\n\nWe are agreed, you beautiful daughter of pleasure. ", "This is the fool we shall focus on.", "\n\nThe hills became taller and the land greener as he traveled southward, and though his body ached from climbing, his heart was light with expectation. ", "At day's end he stretched out upon a soft cushion of grass beneath an overhanging acacia tree and soon drifted into a carefree dreamless slumber.", "\n\nI shall go elsewhere and divert myself alone, for I can see that it will be days before this sweet mortal man encounters any seduce-able women.", "\n\nYou are merely dawdling because you have the first move, O lovely Mohini, and I can't kill him until it is my turn.", "\n\nHow unfortunate for you, O hideous one. ", "Perhaps you should divert yourself by chewing on your warts.", "\n\nIt was on the morning of the sixth day of his journey, from the crest of a high hill, that Hari saw spread out before him a broad lush valley extending to the distant mountains. ", "It shone like a great emerald set into the breast of the earth, a coruscating river cutting through its center. ", "Upon the near side of the riverbank stood a magnificent palace the likes of which he had only heard about in stories. ", "Its golden domes and turrets glistened in the sun, and its white marble wings extended outward like some great mythical bird in flight.", "\n\nMohini! ", "Come play the game, you winsome creature. ", "A situation arises.", "\n\nThe sight overwhelmed him, and it was many minutes before Hari could quiet his heartbeat. ", "Then, with all the resolve he could muster, he started down the hill toward the great edifice.", "\n\nI see no women here, you curmudgeon. ", "How can I work a seduction?", "\n\nThere are women in the palace. ", "Give me leave to touch the master of this residence, and we shall soon have the fool mortal man inside.", "\n\nI have no wish to let you touch a mortal out of turn. ", "You will stir in him a killing fury against all isolated travelers, and win the game before it starts.", "\n\nNo I won't. ", "We agreed: no baseless killing furies. ", "I merely wish to start the game.", "\n\nThen touch him. ", "But I will be watching. ", "If you cheat, you brute, you forfeit.", "\n\nThen watch, luscious. ", "At the key moment I will make the tiniest nudge, so delicate that no one suspects.", "\n\nAs Hari approached the massive wooden gate of the palace, he saw that it was intricately carved with figures of the gods in acts of worship, combat, and lovemaking. ", "He was especially intrigued with the depictions of the goddesses and lingered a moment to study their voluptuous beauty. ", "But his musing was interrupted by a loud creaking and cracking, and the great gate began to slowly swing open. ", "He hastily stepped aside.", "\n\nYou, delicate? ", "You strain my credulity, you creature of mayhem.", "\n\nYour credulity is a tender flower, like yourself. ", "Observe, and despair of any hope of victory.", "\n\nThrough the now open portal marched a cordon of soldiers, four abreast, uniformed in bright red and carrying shoulder spears. ", "Once outside the gate, the soldiers split ranks and quickstepped to one side to make passage for a following retinue on horseback. ", "The equestrian formation passed majestically through the gate, then halted and parted to make way for a magnificent black stallion that trotted to the fore. ", "Astride the stallion sat the leader of the cavalcade, as his bejeweled saddle, richly embroidered uniform, and dignity of bearing testified.", "\n\nThe leader, espying the young stranger standing alone before the palace gate, reined in his steed.", "\n\n\"Whom have we here?\" ", "he said in a commanding but not unfriendly voice. \"", "A young swami, perhaps? ", "Hmm. ", "I see that you are highborn by the sacred thread you wear, and that you have traveled some distance. ", "Tell me, who are you and what brings you to the palace of the zamindar?\"", "\n\nThis man is dangerous when affronted. ", "Remember, if you try to take advantage—\n\nHari swallowed. \"", "O Master,\" he replied, his tone humble but unwavering, \"I am Hari by name, a student on a pilgrimage in search of truth, who six days past set out from my village to the north upon a path chosen by the Goddess of Fortune. ", "Surely, O Master, she has permitted me to travel with her to this blessed land only that she may now visit with the zamindar.\"", "\n\nNow! ", "Instead of interpreting this as insolence, he takes it as cleverness and is graciously inclined.", "\n\nThe horseman laughed and slapped his saddle. \"", "Well spoken!\" ", "he said. \"", "Know that I am the zamindar and that your words please me. ", "Goddess Lakshmi is indeed welcome, and I thank you for delivering her to me. ", "I would speak with you further, young traveler, but I must be on my way. ", "The Great Rajah has called his servant to his palace to celebrate the month of our Lord Krishna. ", "The Goddess of Fortune will be welcome company on the journey, at whose end she will find rest in most comfortable and familiar surroundings. ", "But tell me, Hari, what gift should I present in homage to our Lord Krishna?\"", "\n\nThere is still danger.", "\n\nHari's heart raced as his brain searched for an answer.", "\n\n\"O Zamindar,\" he replied, \"Lord Krishna is a playful god, and it is said that he is best worshiped when his worshipers enjoy the earthly pleasures that it pleases him to bring them.\"", "\n\n\"Hah! ", "Well said, again, O Hari. ", "You are clever beyond your years. ", "Pray you, then, stay this holy month in my palace as my guest, if you will. ", "And if you choose to remain until my return, we will converse again at length and leisure. ", "But now I must go. ", "Farewell, O child of the gods.\"", "\n\nThat mortal man is not as dull as I took him for. ", "He helped himself that time.", "\n\nHari watched the zamindar and his retinue ride off through the hills until they disappeared from sight. ", "He was then led into the palace by a guard and turned over to a portly berobed man of middle years who bowed politely and introduced himself as Balu, the zamindar's chief advisor. ", "Without further ado, the advisor escorted Hari through the great halls of the palace to a guest suite in the west wing. ", "After ascertaining that Hari had no further needs, he bowed and took his leave.", "\n\nHari was overwhelmed with his quarters, ornate and spacious, yet also private. ", "Such wealth and finery he had never seen before, and he could not resist touching the bejeweled urns and golden censers and running his fingers over the inlaid tables, carven walls, and intricate tapestries.", "\n\nFrom the veranda adjoining his apartments, he looked out upon the western hills, so stately and serene, glimmering beneath the golden eye of Surya. ", "Although he was not especially religious, he gave silent thanks to the God of Gods for his good fortune that day.", "\n\nNow I will start my first seduction, instilling in a comely young woman a passion for the visitor.", "\n\nHari's reverie was broken by a knocking at the door. ", "At his spoken consent there entered into the room a maidservant who, upon crossing the threshold, bowed low before him and raised her joined palms to her chin, her eyes cast downward. ", "She remained fixed in that position awaiting the command to rise.", "\n\nShe is so shy she will never make the attempt, despite her mysterious sudden passion for the guest. ", "You have wasted your move, honey breast.", "\n\nHari failed to give the expected sign, but could only stare at the bowed figure before him. ", "Here, he thought, was a female to rob one's very soul, a maiden in the fullness of her youth, fair beyond compare. ", "Blessed she was with skin the smoothness of the lotus petal, full plum lips embracing milk-white teeth, almond eyes gray-flecked and slightly cowled, hinting of mysterious secrets, and fringed with long eyelashes guarded by high brows arched like drawn bows. ", "Her hair was shining sable, fine as gossamer, falling freely about soft slim shoulders, framing a narrow forehead and long slender neck. ", "The loose sari she wore failed to conceal her full round breasts, sylph-like waist, rounded hips, and long graceful limbs.", "\n\nGive it time, obnoxious one. ", "She may be shy, but she is showing her wares, which are formidable.", "\n\nNever had Hari looked upon such feminine beauty, wholly sensuous yet possessed of a quiet dignity worthy of reverence.", "\n\nOnly when the maidservant's head inclined upward slightly and he saw her look of demure puzzlement did he realize his unintended discourtesy. ", "He quickly bade her to rise.", "\n\n\"O Swami,\" said she, \"I am your servant, Meena, sent to do your bidding. ", "If it is your wish to sup, I have brought fruits, sweetmeats, and cow's milk for your pleasure.\"", "\n\n\"Yes, thank you, Meena,\" he replied in a voice that gave no hint of his inner disquiet. ", "He was trying to lead a simple life, if not an ascetic one, and desires of the flesh were not appropriate for that. ", "Was the maiden unaware of her beauty? \"", "I will take some fruit. ", "But pray do not call me swami, I who am only a traveling student. ", "My name is Hari.\"", "\n\nMeena, placing the platter of food on a low table, replied, \"But it is said you are very clever and have amused my lord, the zamindar.\" ", "She seemed about to say more, though hesitant; she seemed to be suffering some gentle uncertainty or conflict of emotions.", "\n\n\"I am grateful for the zamindar's kindness and generosity,\" Hari politely interjected, if only to discourage any further recitation of his perceived, or misperceived, virtues. \"", "But come, Meena, will you not sit awhile and partake with me of this fruit?\"", "\n\n\"Oh no, Master,\" she exclaimed. \"", "That I cannot do. ", "It is forbidden for a servant—\"\n\n\"Do not speak so,\" Hari interrupted. \"", "Are we not near together in years? ", "And can we not be friends during my brief visit? ", "None need know of our friendship.\"", "\n\nSee how her passion guides her mind, she not yet understanding its nature.", "\n\nMeena was silent, considering, and as she looked upon his beauty, his pleading eyes and earnest smile, she felt her reservations slipping. ", "Then she too smiled and sat down beside him, though at a respectful distance.", "\n\nWomen were ever devious, even to themselves. ", "A man would be straightforward.", "\n\nThat is easy for one whose attention has but a single channel.", "\n\nFrom their conversation Hari learned that Meena was not of humble birth, which did not altogether surprise him, but was the daughter of a regional prince who three years past had been killed in war by soldiers of the zamindar. ", "As was his right, the zamindar had taken Meena to be a servant in his household. ", "She had been well treated and cared for, and gradually had come to accept, even to find some pleasure in, her new position in life. ", "She had her own room in the palace, her duties were few, and she had ample time to walk in the garden, embroider, and play tunes on the veena. ", "In truth, she had come to respect and even to like the zamindar, who was a fine man when not opposed.", "\n\nHari in his turn told Meena of his life in the village and of his desire to learn more of the world. ", "She seemed to be so rapt with attention that he talked rather more than he had intended, being flattered despite his effort to be objective.", "\n\nThe time passed quickly and soon Meena announced she must depart. ", "Not unmindful of her obligations, she offered to bring Hari fresh hens' eggs in the morning for his breakfast, if it would please him.", "\n\n\"O Meena,\" he replied, \"know that I am a vegetarian. ", "Although eggs are to my liking, I can only eat those which are infertile. ", "Tell me, in the chicken house, are the cocks kept separate from the hens?\"", "\n\n\"There is but one cock,\" she answered, \"a great white cock which the zamindar keeps to announce the coming of day. ", "And a proud and magnificent bird he is,\" she added enthusiastically, as if there were something about the subject of breeding that appealed to her. \"", "Now,\" she continued almost breathlessly, \"although the cock is kept separately in an enclosed pen next to the henyard, he on occasion somehow manages to transgress the intervening fence and move among the hens.\"", "\n\n\"Does he then tread the hens,\" asked Hari, \"and so fertilize the eggs?\"", "\n\n\"He does that,\" replied Meena, \"but not with all the hens. ", "There are among the hens those of many colors— red, white, gray, speckled, a few yellows, and a single black. ", "The white cock has interest only in the black hen, and it is only her eggs that would be fertile. ", "But since I know the nesting place of the black hen, when I fetch the eggs in the morning for your breakfast I will be sure to gather only from the other nests.\"", "\n\nHari pictured the black hen in his mind as Meena spoke, and it was as if the feathers were as sleek and dark as Meena's glossy hair. ", "He could appreciate why the cock had desire only for that one. ", "And, it seemed, that desire was returned.", "\n\n\"But Meena,\" said he, \"although hens are among the gods' blessed creatures, they are not known to be overly intelligent, being somewhat fickle and not always certain of their place. ", "Therefore, is it not possible that one hen might occupy and deposit her eggs in the nest of another? ", "And so might not a fertile egg find its way into a nest other than that of the black hen?\"", "\n\n\"Be not concerned,\" Meena assured him, \"for I have long been gathering the hens' eggs and observing their habits. ", "Know that the eggs of the black hen are of a slightly darker hue than the other hens' eggs. ", "As I gather from each nest, I will observe the color of the eggs and choose only the whitest to insure against the possibility of selecting one that is fertile.\"", "\n\nHari, satisfied that all risk had been eliminated, thanked Meena for her solicitousness. ", "They then bade one another good night, each looking forward to their meeting again the following morning. ", "In fact, had Hari not known better, he might have supposed that the intensity of her parting look suggested a desire to remain longer in his chamber.", "\n\nIt was not yet dark and Hari decided he would take a stroll about the palace grounds before turning in. ", "As he walked along the winding pathways he marveled at the beauty and grandeur of the terraced gardens, manicured lawns, and tall hedges, the flowering trellises, carven statuary, and elaborate dovecotes. ", "How plain and insignificant by comparison seemed the gardens of his native village. ", "Yet, he thought, as he gazed upon the climbing purple bougainvillea, were its blossoms really any more beautiful or fragrant than those which grew in his own yard?", "\n\nFollowing the walkway around to the rear of the palace, he came upon the area where the livestock and poultry were kept. ", "He walked over to the fence that separated the henyard from the demesne of the white cock whom he could see pacing about in apparent discontent with his confinement. ", "He seemed a fine bird, but it was not evident that the cock was all that worthy of the acclaim and admiration Meena had heaped upon him.", "\n\nHari saw too in the adjoining yard some of the hens picking about on the ground, though the black hen was not among them. ", "He guessed that she and others of the hens must have already gone indoors for the night, judging from the clucking he heard coming from the henhouse.", "\n\nAn idea suddenly came to him which brought a smile to his lips and a sparkle to his eyes.", "\n\nSlowly he made his way along the line of the fence that separated the hens and the white cock, carefully examining the fence and ground as he went. ", "As he neared the far end of the fence, his brow wrinkled in puzzlement. ", "But then at the very bottom of the fence where it was partly hidden by an overhanging bush, he saw what he was looking for.", "\n\nDarkness was descending: time to return to his quarters. ", "As he walked along he silently named the constellations scattered across the star-filled sky, the smile on his face now mimicked by the rising moon.", "\n\nHe arose early the next morning, and no sooner had he finished bathing and dressing than there came a familiar knocking at the door. ", "Meena entered carrying a tray upon which was a silver platter of fresh fruit and a bowl containing three ivory-white eggs. ", "Hari saw that today she wore a garland in her hair and was adorned in a shining white sari embroidered with tiny red flowers. ", "Her fragrance was of sweet lotus. ", "If his pulsebeat quickened, he did not show it. ", "He was relieved that his memory of her had not deceived him, and indeed the face that now assailed him was beauty and perfection itself.", "\n\n\"Good morning, Meena,\" he said, giving the traditional hand greeting. \"", "I thank you for the breakfast, and not least for the unseeded eggs which are so white and perfect it seems a pity to eat them.\"", "\n\n\"Good morning,\" she replied. \"", "But you must eat to keep your strength.\" ", "Her tone was gently admonishing, yet also motherly and slightly coquettish. ", "She seemed more familiar and less shy than before, as if her natural reticence was being vanquished by some more intense emotion.", "\n\n\"Very well, Meena, but you must join me,\" said he.", "\n\n\"My thanks, but I have already eaten. ", "However, I will keep you company.\" ", "So saying, she sat down beside Hari who proceeded with his meal.", "\n\n\"These eggs are most tasty,\" he said. \"", "I should have thought to thank the benefactors when I passed the henhouse during my evening stroll.\"", "\n\n\"Oh?\" ", "exclaimed Meena with interest. \"", "Did you see the hens while on your walk?\"", "\n\n\"Yes, but only a few, some reds and yellows. ", "I did not see the black hen, who must have been in the henhouse.\"", "\n\n\"And did you see anything more?\" ", "inquired Meena.", "\n\n\"Oh yes, I also saw the white cock in his yard, though he seemed restless and not at all happy at his confinement. ", "I watched him awhile to see if he might attempt to cross the fence and visit with the hens and so reveal the secret of his means of transgression.\"", "\n\n\"Oh! ", "And did he do so?\" ", "asked Meena somewhat anxiously.", "\n\n\"No, he did not,\" answered Hari calmly. \"", "But curiosity overcame me and I decided to inspect the fence-line that separated the white cock from the hens to see if I could discover anything that might help to solve the mystery.\"", "\n\n\"And—and did you find anything?\" ", "Meena's voice was now nervous and agitated, though she tried to disguise her unease.", "\n\nHari stopped eating, turned toward Meena, and looked her full in the eyes as he placed his hand on hers. ", "He could feel her hand trembling and knew it was not because of his touch. ", "He answered gently, almost in a whisper.", "\n\n\"Yes, Meena. ", "I found the white cock's place of entry at the corner of the fence, covered by an overhanging bush. ", "The fence had been pulled up by someone to allow the cock's passage.\"", "\n\nThere was a long silence as Meena stared into Hari's eyes and he into hers. ", "His thumb caressed her still trembling hand, as much to reassure her and allay her trepidation as to express his feeling for her.", "\n\nMeena knew she had been found out, that he knew her secret. ", "All that he had said, his manner of speaking, and now his understanding smile and caresses, and, above all, the message in his eyes, told her that he knew.", "\n\nHari saw the utter helplessness in her eyes, the naked exposure of her innermost longings, and he knew that he had found the key to open a window into her heart.", "\n\nLook into her mind, Ravana. ", "She is shy, but her passion caused her to linger overlong in his presence, so that he noticed her charms, and now he will take her.", "\n\nBah!", "\n\nThere was no longer any reason to pretend, Meena thought. ", "Her hidden passions, so long suppressed, she now saw mirrored in Hari's eyes. ", "Yes, she now admitted to herself, openly, even boldly—yes, she had made the opening for the white cock to enter. ", "Yes, and many were the times, her heart racing triumphantly beneath swollen breasts, she had watched the white cock gloriously tread the black hen.", "\n\nA softness came into her eyes, a softness which spoke of resignation, surrender, and desire. ", "Hari said nothing, but gently pulled her to him, and she knew from his touch that he cared and understood. ", "She felt no guilt or shame as her body bent to his, as the flame of passion rose within her breast.", "\n\nShe desired adventure with a man, but only with one of quality, and of course the zamindar is married. ", "It required only the slightest nudge to orient her on Hari.", "\n\nHari took her to his bed, and the goddess Lakshmi smiled upon the union, bringing to them bliss and delight, happiness and fulfillment, joy and ecstasy. ", "For was he not the white cock and she the black hen, he the buck and she the doe, he the bull and she the heifer, he the boar and she the sow, he the ram and she the ewe, he the stallion and she the mare?", "\n\nEven so will I do with you, Mohini, after I kill him. ", "But I will take you without the mortal man's foolish gentleness. ", "Now it is my move, and I will make it at my convenience.", "\n\nIt was not until the sun was near its zenith that Meena finally arose, explaining that it was time for her to go to the kitchen and inform the cook of Hari's dietary requests for the remainder of the day. ", "Were there any special dishes he would like?", "\n\n\"O Meena,\" he replied in as serious a tone as he could muster, \"since this is the holy month of our Lord Krishna, who in his wisdom has seen fit to deliver the zamindar to the distant palace of the rajah that our Lord may be worshipped in splendor, it is only appropriate that I too should give Krishna thanks and do him homage through the traditional means of self-sacrifice. ", "Therefore, commencing this very day I will fast by foregoing the middle meal of every day of this holy month. ", "And at the first and third meal I will restrict my consumption of food which, for the pleasure of Krishna, will also serve to honor the sacrifices that our Lord's creatures of the earth have made by their provision of my daily nourishment. ", "And surely the zamindar's hens are to be counted among our Lord's most worthy creatures. ", "And so, O Meena, beginning this evening, and also in the morning, and on the morrow's eve, and on each and every day of this holy month, let each of Hari's meals consist of but some milk and fruit, and three fresh white hen's eggs gathered by your own hand.\"", "\n\nAt that, Meena rushed into Hari's arms, hugged him tightly, and they both laughed long and heartily. ", "He realized that he was not yet destined to live a life of privation, and decided to accept what seemed to be destined.", "\n 2\n\n* * *\n\nThe Zamindarini\n\nNow I have seduced him once. ", "It is your turn to try to kill him, Ravana. ", "But remember, it must seem to stem from natural mortal events, or it doesn't count.", "\n\nHave no concern. ", "I have no need to influence events. ", "They will take care of it themselves. ", "Consider the host's woman.", "\n\nYou must not influence a woman!", "\n\nNor must you, damsel spirit, until it is your turn. ", "But we both can look into any mortal mind, as we have been doing, without acting. ", "Study her mind, and despair.", "\n\nI see no point, but I will look.", "\n\nAnd peek at the advisor's mind, too; he is integral to this seething mortal brew. ", "There is excellent potential for bloodshed here.", "\n\nNow the zamindar had a beautiful young wife, Leela by name, who had decided to forego the discomfort of the long journey to the palace of the rajah and remain home instead. ", "Upon learning of Hari's presence in the palace, she became curious and asked Balu the advisor to deliver a message to Hari saying that she would be pleased to receive him in her rooms the following day at the hour after midday. ", "Balu, knowing the zamindarini's ways, was not at all pleased at this request, and feared the possible outcome of such a meeting. ", "So he attempted to dissuade her from issuing the invitation by hinting that the zamindar might be displeased. ", "When that failed, he suggested alternative activities for the morrow that she might prefer, such as riding in the hills or visiting the house of her father.", "\n\nBut Leela was adamant, so Balu had no choice but to agree to do her bidding; at least that is what he told her. ", "But in fact he did not deliver the message, hoping that by the following day something would occur to divert her attention to other matters, or that she might simply forget about the meeting. ", "She was after all prone to whims and had a short attention span.", "\n\nBalu sighed as he recalled when three years past, his master, upon returning from a tax collection trip, arrived at the palace with a new young bride, much to the surprise and consternation of all. ", "She was the youngest daughter of a local landowner who was financially in debt to the zamindar, and whose debt was erased from the ledgers upon the arrangement of the marriage. ", "But, after all, Balu had told himself, the zamindar was a lonely widower approaching his middle years, and Leela was a voluptuous beauty less than half his age and no doubt well schooled in the art of pleasing men. ", "Little wonder that the master had succumbed. ", "Balu, however, had been offended that he was not consulted about the marriage, for he well knew that in the life of a zamindar there can be no separation of personal and political matters; one invariably carried implications for the other. ", "It would have been better had the zamindar married a woman of known qualities, such as Meena, who was of royal lineage herself. ", "But Meena, though of rare beauty, was the very last to presume—which was one reason she would have been a better wife.", "\n\nAnd, indeed, the zamindar came to regret his hasty decision. ", "It soon became evident that the zamindarini did not possess the maturity or character equal to her station. ", "Worse, she proved to be of an exceptionally passionate, if not lustful, nature, requiring frequent conjugal attention lest she become restless and moody and a constant irritant to the palace staff and servants. ", "At first the zamindar (who lived in separate quarters, as was the custom) paid her frequent nocturnal visits and so pacified her carnal needs. ", "But his visits, of necessity, became less and less frequent. ", "He was no longer young and could not keep pace with his energetic wife, whose demands were draining his strength.", "\n\nAlso, the duties of office required more of his time, and more tax collection trips became necessary because of financial crises brought about by droughts and poor harvests. ", "And, in truth, he visited her less to avoid her continual complaining.", "\n\nAs a consequence of Leela's frustration, Balu suffered most of all. ", "She required his presence with increasing frequency, calling upon him for the most trivial and contrived reasons, whereupon she would regale him mercilessly for hours on end. ", "And to make matters worse, as if to take revenge on all males for her husband's neglect, she teased and tormented him with her abundant physical charms so as to drive him near to distraction.", "\n\nShe knew that Balu was a bachelor and suspected— correctly so—that he was virginal: all in all an ideal victim for her coquetry. ", "So she would summon him and prattle on about such weighty matters as the reallocation of household chores among the servants, all the while squirming about on the floor in a sea of cushions, assuming the most provocative positions and generously revealing the curvaceous perimeters of her thighs and breasts.", "\n\nAfter repeated exposure to such torments, Balu found he had trouble sleeping, and when he did sleep he dreamed of making passionate love to Leela. ", "He knew her nature, and had contempt for it, but her blandishments were strong and his resistance weak. ", "The desire grew potent within him, and during one of his visits he was tempted to hint of his willingness to collaborate with her that their mutual needs might be satisfied. ", "But he dared not, not so much because of his position in the palace, but because he feared she would laugh at him and reject him in the cruelest way possible. ", "He did not think that she would tell her husband, since his denial would doubtless be believed because of his trusted relationship to the zamindar. ", "It was the ridicule and rejection he could not bear. ", "So he suffered silently, never failing to maintain his outward composure even though the flame of desire burned ever hotter within him.", "\n\nWhen Hari did not appear before Leela at the appointed time, she became furious and summoned Balu for an explanation. ", "Balu begged her forgiveness, saying that he had been unable to deliver her message because of an urgent political matter that had unexpectedly arisen. ", "But she cut him short, berated him severely, and demanded that he personally deliver Hari into her presence forthwith.", "\n\nObviously she has seduction in mind. ", "But that will merely give me another score for my count.", "\n\nYou underestimate the perversity of mortals.", "\n\nBalu found Hari reading in the garden, whereupon he dutifully, albeit morosely, delivered the zamindarini's message. ", "Hari was surprised but honored at the invitation and immediately accompanied Balu to the zamindarini's chambers. ", "Balu coolly, but with dignity, presented Hari to the zamindarini, who was now all sweetness and calm, and at her sign the advisor withdrew, leaving the two alone.", "\n\nHari greeted the zamindarini with upraised palms and waited for her to speak. ", "But she was silent and only gazed intently at her visitor.", "\n\nHari was surprised at the zamindarini's youth and was admiring of her loveliness; nor could he help but admire her earthly attributes, which her silver-flecked gown was cleverly designed not to hide. ", "She, in her turn, fairly consumed her guest's youthful beauty with her stare. ", "When finally she spoke, she asked Hari to please be seated beside her and proceeded to inquire of his background and how he had happened upon the palace of the zamindar. ", "He gracefully answered her queries, whereupon there ensued another long silence. ", "That caused him some uneasiness, for he was beginning to suspect that there was something on her mind.", "\n\nIndeed there is! ", "He is a fortunate mortal.", "\n\nBut also an idiot. ", "It requires two to dance in this manner, and it is a dangerous dance.", "\n\n\"I see, Hari,\" she said, \"that you carry a book. ", "Pray tell, what are you reading?\"", "\n\n\"O Zamindarini,\" he replied, \"this is the ancient book of fables, which I borrowed from the zamindar's library, wherein I have been reading stories about the making of friends and enemies.\"", "\n\n\"Well then, sit closer to me, here, and read me a tale of friendship. ", "And since we are alone, you may call me Leela.\"", "\n\n\"Gladly,\" he replied, moving a little closer, but not as close as she had indicated. ", "She reached out and placed her hand on his. ", "He pretended not to notice, but calmly turned the pages of the book looking for a story to tell her.", "\n\nThereupon he related the tale of the hound and the wolf queen. ", "Of how, despite their differences in kind and station, the hound and she-wolf became fast friends, like brother and sister, and how they prayed and played together, demonstrating to all their virtues of trust and friendship.", "\n\nLeela withdrew her hand from Hari's and listened with growing impatience and annoyance. ", "The message was clear enough: Hari would be her friend and nothing more. ", "Her intentions had been detected and as quickly rejected. ", "Even though the manner of negation was gentle and clever, it was a rejection nonetheless—something she could not accept.", "\n\nYou idiot, Hari! ", "Take what offers!", "\n\nYou see what a dolt he is.", "\n\n\"An interesting and amusing story,\" she said coolly, suppressing her anger. \"", "Now let me tell you a tale, also of the hound and the she-wolf.", "\n\n\"It happened that one day the hound decided to leave the village of his birth in search of knowledge and adventure, and he traveled long and far until, weary and hungry, he came upon a den of wolves. ", "There he stopped and asked the leader of the wolves for food and shelter. ", "The wolf, being favorably inclined toward the well-mannered hound, gave him nourishment and the use of an empty cave near his own. ", "Not long after, the wolf king and his pack went into the forest to hunt. ", "But the wolf king's wife remained behind. ", "Now, she was greatly admiring of the hound, of his long slender body, lithe limbs, and sleek coat, and she greatly desired him. ", "So she invited the hound into her den and offered herself to him. ", "But, even though the wolf queen was comely, the hound, ungrateful cur that he was, spurned her, much to her dismay.", "\n\n\"Later, when the wolf king returned from the hunt, he found that the hound had departed and his wife was in great distress. ", "The she-wolf proceeded to tell her mate how the hound had attempted to force his will upon her, though she had successfully fought him off, and the cur had fled.", "\n\n\"Thereupon the wolf king, in his fury, sent his pack out in search of the traitorous hound. ", "The hound was soon tracked down and held at bay by the pack until the wolf king arrived to deliver his justice. ", "And swift it was: the wolf king grasped the hound by the neck with his sharp teeth and tore out his throat. ", "The pack devoured the remains.", "\n\n\"That ends the tale, O Hari. ", "I pray the moral has not been obscured in the telling.\"", "\n\nNow perhaps you see the relevance. ", "Your mortal man is doomed—and you can not touch the she-wolf out of turn.", "\n\nHari swallowed as the dread meaning of Leela's words sunk into his consciousness.", "\n\n\"O Mistress, the moral is clear enough,\" he replied. ", "His mind whirred, searching for some way out of the dilemma. ", "He had little doubt that the zamindarini was capable of lying to the zamindar about the transgressions of a stranger in their midst, and she would surely be believed over him, assuming he would even be given the chance to explain. ", "But how could he yield to her? ", "The zamindar had been kind to him. ", "He could not be an ingrate and a traitor. ", "And even if he did capitulate, what new risks would he then face? ", "No. ", "He must hold firm and try to find a solution.", "\n\nYet my mortal man is clever. ", "He will find a way.", "\n\nThen, of a sudden, as if from the brow of Krishna, an idea came to him.", "\n\n\"O Leela,\" he said, \"do not misunderstand, for surely my eyes have never beheld such beauty as yours—and who am I that I should be so greatly honored by your attentions? ", "Surely I am blessed by the gods this day. ", "If I seem reluctant it is only because there are circumstances which prevent me from giving rein to my heart's desire. ", "Though you have kindled a flame within me, alas, I must strive to extinguish it lest we both commit sacrilege and blaspheme the God of Gods.\"", "\n\nLeela was aghast as this declaration and for a moment was speechless.", "\n\n\"I will explain,\" continued Hari. \"", "Know that when, these many years past, I reached the age of manhood, the time came for me to undergo the sacred religious ceremony wherein I would receive the holy Brahminical thread, this very one that winds about my body. ", "At that time, as is the tradition, I made a sacred vow to Lord Brahma. ", "As all know, a vow so given can not be broken lest Moksha be forever foresaken and future rebirths be as the lowliest creatures that crawl upon the earth.", "\n\n\"My vow to Brahma was this: that nevermore in this life would I look upon the nakedness of woman, nor lie upon the breast of woman.", "\n\n\"And so, O Leela, such is the reason I can not avail myself of the sweetness which is yourself, though my heart be sorely inclined.\"", "\n\nA curse on his lying cunning!", "\n\nWhat is he doing?", "\n\nLeela listened in utter amazement. ", "Hari's words rang true, for vows of celibacy on such holy occasions were not uncommon. ", "And knowing the sanctity of such vows, she could not take offense at Hari's unwillingness to succor her. ", "She could not expect him to break his vow.", "\n\nThough no longer angry, and her pride now repaired, she was still deeply disappointed and pondered the situation mightily. ", "She asked Hari to repeat the exact words of his vow once more. ", "Fortunately, having an excellent memory, he was able to do so. ", "Suddenly Leela's face brightened as though lit by a thousand candles.", "\n\n\"Hari, I have found a way!\" ", "she cried, grasping both his hands in hers. \"", "There is a way we can make love without you breaking your vow. ", "Recall in my story of the hound and the she-wolf: had the hound complied with the wolf-queen's wishes, he would have mounted her from behind in the manner of the beasts. ", "Well, then, so can you do the same with me. ", "And you will not—by the very words of your vow—have lain upon the breast of woman. ", "And if all the lights are extinguished with only the blackness of night to keep us company, so then will you have kept your vow not to look upon the nakedness of woman.\"", "\n\nOh, the deviousness of women!", "\n\nI could not have said it better myself. ", "She will put him into criminal conduct yet, and the zamindar will have his trusted guest's head when he learns of this—as he surely will. ", "Even if some disreputable male servant has to be mysteriously moved to inform him.", "\n\nLeela clapped her hands in glee, immensely pleased with her own cleverness. ", "Hari stared at her wide-eyed, benumbed with astonishment. ", "He had been outwitted.", "\n\nThereupon Leela bade Hari to leave and return to her that very evening at three hours after sunset. ", "All would be in readiness. ", "She would dismiss her servants, darken the room, leave the door ajar, and be waiting upon the floor cushions in anticipation of his coming. ", "She waved him off with a smile.", "\n\nNo sooner did he return to his room than came a knock on the door, and Balu entered. ", "The advisor hoped to learn what had occurred between Hari and Leela, and from Hari's gloomy look he suspected the worst. ", "Balu knew that Hari would not be forthcoming unless he, Balu, could convince him that he knew of Leela's ways and could be trusted for advice. ", "So with artful indirection the advisor revealed something of his knowledge of Leela and promised that he would keep any secret Hari might care to confide. ", "And if Hari was in difficulty, he would try to help.", "\n\nHari would have preferred to keep his own counsel, but he was sorely pressed and time was growing short. ", "So he decided to confide in Balu, who seemed sincere, and thereupon told him the whole story of his visit with Leela.", "\n\nBalu pursed his lips and shook his head. \"", "A serious problem,\" he muttered, \"very serious. ", "And I fear an insoluble one. ", "Hari, you must flee. ", "Take yourself as far from the palace as you can before the zamindar returns.\" ", "The advisor then sighed wistfully. \"", "Ah, if it were only I whom she desired!\"", "\n\n\"O Balu,\" said Hari, \"I have reason not to flee. ", "Nor am I inclined to do so since I am innocent of wrongdoing. ", "If I run, it would appear an act of guilt. ", "Doubtless the zamindar would track me down anyway.\"", "\n\nTogether they pondered the problem in silence. ", "The advisor sighed again. ", "Hari looked at Balu and a glimmer of light came into his eyes.", "\n\nBut what is this? ", "The deviousness of a man?", "\n\n\"Tell me, Balu,\" he asked, \"were you in earnest when you said you harbored desire for the zamindarini? ", "Please be candid, I beg you, for much is at stake. ", "If you were, then there may yet be a way out of this dilemma, and perhaps a way to satisfy your desire.\"", "\n\nBalu perked up. \"", "I will confess such a desire, fool that I am, for she has long tormented me with her feminine wiles.\"", "\n\nHari then proceeded to tell Balu of his idea, and as Balu listened his heart beat faster, for he saw it was clever indeed. ", "Together they worked out a precise plan in which the advisor readily agreed to collaborate.", "\n\nThey are plotting their way out of it! ", "Disgusting.", "\n\nAt three hours after sunset Hari made his way to Leela's quarters. ", "There were no guards about and Leela's door was ajar as she had promised. ", "He took a deep breath and eased the door open. ", "It was pitch black inside, as also had been agreed upon. ", "He quietly entered, but was careful not to fully close the door behind him.", "\n\n\"Leela?\" ", "he whispered.", "\n\n\"I am here, Hari,\" came the soft reply, \"in the center of the room among the cushions where you last saw me. ", "Come to me. ", "I am ready.\"", "\n\n\"Yes,\" he answered. \"", "But first I would ask one thing of you. ", "So that our joy may be complete, and so that we may be transported to the lofty realm of the gods and our minds and bodies be merged in perfect union, pray let no words pass between us this night from this moment hence. ", "Let only the sweet silence of darkness mingle with your fragrance and bathe us in the stillness of bliss.\"", "\n\n\"Oh gladly, gladly,\" Leela replied, her passion redoubled by Hari's words. \"", "Now come to me, for my flesh is burning.\"", "\n\nQuickly, Hari slipped soundlessly through the door and into the corridor as Balu, just as nimbly, entered the room and eased the door shut. ", "The advisor hastily disrobed, dropping his garments by the door, then proceeded to grope his way on all fours through the darkness in search of the waiting object of his desires. ", "Guided by the sound of Leela's belabored breathing and the fragrance of her body perfume, he had no difficulty locating her among the floor cushions. ", "His outstretched hand came first in contact with her smooth pulsating buttocks. ", "He soon ascertained that she was bent over in the stipulated position. ", "Thereupon, without delay or hesitation, he assailed the waiting bastion of delight with leonine eagerness, and henceforth the stillness was interrupted only by moans of labored ecstasy: a serenade of the night newly sung, yet as ageless as man and the gods before.", "\n\nHari returned to his rooms and prayed that the charade would be successful and that Balu would be able to satiate Leela's appetite so that a repeat performance would not soon be necessary.", "\n\nA scullery servant, meanwhile, was searching the kitchen for a lost earring, a favorite bit of jewelry his father had given him as a child. ", "Unable to find it, he concluded that it must have fallen sometime during the afternoon while in the performance of his duties. ", "With the aid of an oil lamp, he immediately began retracing his steps through the dimly lit halls of the palace. ", "As fortune would have it, and much to his relief, he found the earring in a corridor not far from the rooms of the zamindarini.", "\n\nAs he passed the door to the zamindarini's suite on the way back to his room, he heard a strange noise coming from within—a low moaning sound. ", "Puzzled, he stopped to listen for a moment. ", "He again heard the moaning, which was now louder, and could only think that the zamindarini must be ill and in pain. ", "Concerned about his mistress, he knocked lightly on the door. ", "There was no reply. ", "He realized that he should report this to his superior, the majordomo, who would send a discreet woman to investigate, but the hour was late and the majordomo would not appreciate being disturbed over what was probably nothing. ", "Yet suppose it wasn't nothing?", "\n\nNo, mortal moron. ", "You must investigate yourself, this instant. ", "This makes sense in the circumstance.", "\n\nSo the man, believing this to be his own thought, quietly opened the door and entered the room, holding up the oil lamp to illuminate the darkened interior.", "\n\nOh! ", "You are exposing the liaison! ", "But to what purpose? ", "Hari is not here, so will not be blamed.", "\n\nHis breath caught. ", "There, squatting naked on the floor amidst a multitude of cushions, was the zamindarini, and attached to her from behind was the advisor, Balu. ", "The servant saw that the moans were indeed those of his mistress, but moans of pain, he now realized, they were not.", "\n\nAs the lamplight flooded the room, all activity within ceased. ", "Leela shot a look of surprise mingled with threat at the intruder, but her expression transformed into one of utter amazement as her eyes fell upon Balu behind her. ", "Balu, stupified and benumbed with shock, a look of abject terror on his face, silently prayed for death to strike him swiftly.", "\n\nBut the zamindarini will blame Hari for tricking her like this, and have him promptly executed along with Balu and the servant, thus covering her shame and protecting herself from exposure.", "\n\nThe servant was the first to gain his wits, and he slipped out of the room without uttering a word. ", "Balu started to pull away in fear, but Leela cried out: \"Hold, Balu! ", "I command it!\" ", "Balu froze, not daring to move a muscle.", "\n\n\"So, I have been tricked!\" ", "Leela's words slithered like a cobra.", "\n\nA cunning ploy, Ravana. ", "But I shall counter it by putting a thought into her head—a thought to which she is not averse.", "\n\nThen Leela smiled slyly. \"", "But Krishna works in wonderful ways, does he not? ", "You, Balu, have long lusted after me, not entirely due to discouragement on my part. ", "But I would never have considered you because I thought you unmanly. ", "I know now that I was wrong. ", "Had it not been for the little game you and Hari have played, I would never have discovered your virtues. ", "For, know you Balu, never before have I experienced such pleasure as I have this night. ", "Your endowment is indeed generous and would put a bull to shame, and your skill at its employ is that of a master.", "\n\n\"So! ", "I command you now—nay, I entreat you.\" ", "Her voice softened to a purr. \"", "Will you not continue to employ your talents on your zamindarini's behalf? ", "Will you not resurrect your virtue and complete what you have so well begun? ", "Fear not, our secret will be safe. ", "I will even forgive Hari, for without him this night's pleasure would not have come to pass.", "\n\n\"And besides,\" she added, laughing, \"now we need not be restricted to the position of the beasts, but may indulge ourselves in the full range of exotic delights that the great Vatsyayana has bequeathed us.\"", "\n\nBalu could hardly believe his ears, but neither did he question his fate or hesitate before it. ", "Rather, he offered up a silent prayer to Brahma, and proceeded forthwith to engage with Leela, bringing to her and himself the manifold pleasures and delights that the great God of Gods, by so fashioning his children, intended for them to enjoy.", "\n\nThen he remembered the scullery servant. \"", "Suppose the servant tells the zamindar?\"", "\n\nLeela shrugged. \"", "Must I turn advisor to you, as well as lover? ", "Surely you can advise him that his choice is between a promotion to more comfortable employment, such as night guardian of the palace to ensure that no other person learns of our liaisons, or the untimely loss of his tongue? ", "Is there any doubt of the nature of his choice?\"", "\n\n\"No doubt at all, my mistress.\"", "\n\nSo you have countered me, Mohini, this time. ", "You have accomplished your first seduction, and balked my first kill. ", "But six more such challenges remain, O luscious one.", "\n\nSix more remain, you ugly spook.", "\n\nWhen late in the night Balu departed the rooms of the zamindarini, promising he would meet with her again soon, he stopped by to briefly visit with Hari. ", "Thereupon he related all that had occurred with Leela, and they both laughed until tears came to their eyes.", "\n\nThe next morning when Meena delivered Hari his breakfast of fresh eggs, he told her the happenings of the previous day. ", "Though she was not at all amused by the tale, she could not help but admire the boldness of Hari's plan and his courage in carrying it out. ", "Most of all she was relieved that the zamindarini no longer had any romantic interest in Hari. ", "She had no wish to share him with anyone.", "\n 3\n\n* * *\n\nThe Cave of the Guru\n\nThis episode is done. ", "We must move on to the next challenge.", "\n\nI find this interlude pleasant enough. ", "The mortal man is a fine lover, and I enjoy occupying the mortal woman as she indulges his passion.", "\n\nThen I shall call time on you, you succulent spirit, for you are not indulging my passion. ", "If you will not agree to urge your mortal man onward to the next challenge, you must indulge me during the delay with a portion of the lustful activity I shall command when I win this contest between us. ", "This is the nature of our deal.", "\n\nI shall give you no early sating of your lust, you monstrosity. ", "I shall arrange to nudge the cute mortal man to develop a desire to travel again. ", "It will be easy enough to cause the mortal woman Meena to press upon him too closely.", "\n\nAnd I shall nudge the regional rajah to issue an invitation that the dull mortal man will be obliged to accept. ", "I think there will be interesting opportunities in the rajah's palace. ", "We are agreed that such nudges do not constitute moves in our game, beautiful?", "\n\nWe are agreed, tuskface.", "\n\nThe days that followed were pleasantly uneventful. ", "Hari spent many idle hours strolling in the palace gardens with Meena, talking and laughing about nothing in particular, reveling in nature's wonders. ", "They picked flowers, fed the parrots and peacocks, and chased butterflies and one another. ", "Too, Hari met often with Balu, who was a veritable fount of knowledge and who patiently answered his endless questions about palace life and neighboring lands and peoples. ", "Other questions he sought answers to in the zamindar's great library, where he immersed himself in books on history, geography, and literature.", "\n\nYet, despite the many pleasures that palace life offered, a growing restlessness crept upon him and once again he felt the pull of the open road. ", "Also, Meena was becoming overly attentive and possessive. ", "She would lovingly fuss about his deplorable lack of neatness, insisting on smoothing out every wrinkle in his tunic and was forever straightening out the sacred thread around his shoulder. ", "When he retreated to some remote corner of the palace to read, she would seek him out and find some real or imagined imperfection in his appearance about which she would gently chastise him and insist on putting right. ", "Always he politely submitted to her attentions, never being so ungracious as to show discomfort or annoyance.", "\n\nThough he desired Meena and felt a genuine fondness for her, he did not think he loved her, for he still slept well, retained his interest in the world about him, and suffered no feelings of lightness in his stomach or head. ", "She would make some man an excellent wife, but marriage was not what he sought.", "\n\nNo sooner had he decided to leave the palace than news came of the zamindar's return. ", "He knew now he would have to postpone his departure, for courtesy and custom required he pay his respects to his host and not absent himself so abruptly.", "\n\nBalu confessed to Hari his mixed emotions about his master's homecoming. ", "He would enjoy returning to his advisory duties, but would sorely miss his secret meetings with Leela. ", "He took solace in the knowledge that the zamindar would be making a tax collection trip before too long.", "\n\nIt occurs to me that tracking the mortal man constantly as he trudges about will grow tedious. ", "Let me brand him, so we can readily locate him when we wish to.", "\n\nDon't brand him! ", "I want him to remain as handsome as he is. ", "Give him a marker instead, and we shall orient on that marker.", "\n\nAs you wish. ", "There is the zamindar's enchanted medallion. ", "That should do. ", "It will be easy to spy, because of its magical aura.", "\n\nThat amulet is dangerous!", "\n\nOnly when invoked. ", "This will add spice to the contest, lest it grow wearisome.", "\n\nVery well. ", "We shall give him the amulet. ", "But if you cause the amulet to be invoked, it shall then be my move, regardless of its effect.", "\n\nAgreed.", "\n\nThe zamindar invited Hari to a private dinner in his chambers on the evening of his homecoming, at which Balu was also present. ", "He spoke about his recent visit with the rajah and how he had amused His Majesty by repeating the witty remarks that Hari had made at their first meeting at the palace gate. ", "The rajah had been so delighted that he asked the zamindar to invite this clever lad to visit him and perhaps verbally joust with the court advisors, whom, the rajah felt, could well use the competition.", "\n\n\"And so, Hari,\" said the zamindar, \"it seems you have an invitation to visit the rajah. ", "It is an honor indeed, one that I hope you will appreciate and accept. ", "But there is no hurry. ", "Tarry awhile and give us the pleasure of your company a few days longer.\"", "\n\nHari was overwhelmed and flattered by the news. \"", "O Zamindar, I am indeed honored, though I am unworthy. ", "But I humbly accept, as it pleases both you and his highness.\"", "\n\n\"Well spoken,\" said the zamindar. \"", "And do not be frightened at the prospect of gibing with the rajah's advisors, for you are equal to the best of them.", "\n\n\"Now, in appreciation of the pleasure you have brought me and my household, and in consideration of the long journey you are about to take, I grant you a boon. ", "Name what you will, and if it be within my power I will grant it. ", "Well, what say you, Hari?\"", "\n\nTaken by surprise, Hari did not immediately respond as he searched for an answer. ", "He had no strong desire for jewels or fine clothes, and felt that an extravagant request would be unseemly. ", "A good horse would serve him well on the journey ahead, but he really preferred to walk that he might better observe the world about him. ", "What he did wish was that the goddess of good fortune would continue to journey by his side, but the zamindar had no power to command that. ", "Yet he knew he must ask for something lest he offend the zamindar.", "\n\nNow touch him, in the manner we agreed.", "\n\nDone. ", "This does not count as a move.", "\n\n\"There is one small thing I would humbly request, O Master,\" Hari replied, having a sudden notion. \"", "The goddess Lakshmi traveled with me on my way here, as she accompanied you on your recent journey. ", "Let me borrow that good luck charm which hangs about your neck that I may wear it on my journey to the rajah, and perhaps the goddess will again follow and protect me.\"", "\n\nAt these words Balu sucked in his breath and all but jumped out of his chair. ", "He hurriedly pulled the zamindar aside and whispered anxiously in his ear. ", "Hari heard only snatches of the conversation, but he surmised that Balu was urging the zamindar not to give up the charm and to offer something else instead. ", "But the zamindar apparently refused to heed Balu's counsel, judging from the shaking of his head, and finally he said in an angry tone, loud enough for Hari to hear, that a man's word was his bond, and sobeit. ", "The zamindar and Balu returned to their seats.", "\n\n\"I will grant your request, Hari.\" ", "The zamindar's voice was now somber. \"", "But in entrusting you with the medallion, I ask that you guard it well, for it is dear to me. ", "Know that it is very ancient and has been in my family for many generations. ", "I must have your solemn promise that you will return it to me after your visit with the rajah. ", "Whether the goddess of fortune will be lured by the amulet, I can not say, but I wish you well. ", "I will give it to you on the day of your departure. ", "Now, let us do justice to this fine dinner lest the chief cook take his vengeance on us in dinners to come.\"", "\n\nMeena withheld her tears when Hari told her he would be leaving soon. ", "She did not ask when he would return, knowing that he himself did not know. ", "On their last night together she stayed with him longer than usual, giving wholly of herself as though to imprint her love forever on his memory. ", "When the day came for him to depart, she kept to her room so that no one would see her weeping.", "\n\nThe zamindar and Balu walked with Hari to the palace gate. ", "The zamindar took the medallion from his own neck and hung it around Hari's, and gave him a sealed message for the rajah. ", "Hari tucked the medallion beneath his tunic and carefully stored the message in his knapsack. ", "Balu pointed out the direction Hari should take and told him of landmarks along the way. ", "The zamindar and Balu gave Hari their blessings and kept watch until he disappeared into the western foothills.", "\n\nNow he is marked. ", "There is no need to track him every step of his dull journey. ", "Let us play together, delicious one, until the mortal man achieves the rajah's palace.", "\n\nPlay with yourself, tasteless one! ", "I shall mind my own business until the next challenge us upon us.", "\n\nIn due course you will play my tune, Mohini.", "\n\nI hope never to render such a sour note, Ravana.", "\n\nHari did not look back, his thoughts only of the adventures that lay ahead. ", "He rejoiced in the sweeping majesty of the sky, hills, and mountains beyond, and in the many small things that appeared along the path: the bright flash of a bulbul bird scurrying through the brush, the graceful undulations of a caterpillar creeping up a blade of grass, the perfect symmetry of the shiny sloughed-off skin of a snake clinging to a stone, and the wrinkled face that time had carved into the twisted trunk of a long-dead banyan tree.", "\n\nHe saw no other on the path, but Balu had told him the route was not a well-traveled one. ", "The night he spent under the heavens. ", "He slept soundly, lulled by the rhythmical twinkling of the stars playing their silent ragas of eternity. ", "He thought of the stars as the eyes of the universe, eternal witnesses to the events of the night that blinked in wonder at what they saw.", "\n\nThe next day the going was difficult. ", "The path became rocky and the air thinner as the elevation increased. ", "The foothills gave way to stark jagged mountains, their massive faces lined with crevices like somber old men, aloof and unfriendly. ", "With the approach of evening the air grew chilly. ", "Darkness quickly melted down the cliff-sides. ", "As Hari was about to settle for a rocky cranny for his bed, he saw a faint light flickering on the face of a bluff just ahead. ", "He walked further up the path to investigate, and saw that the illumination came from a fire burning in a cave low in the cliffside. ", "From the changing shapes of the shadows on the cliff walls, he could tell that the cave was inhabited.", "\n\nHe climbed cautiously to the ledge near the mouth of the cave and was about to peek in when a voice from inside called out: \"Come in, come in young man, the fire is warm and the night is cold. ", "No cause to be afraid. ", "There is only one harmless old man here. ", "Ah, yes, quite harmless.\"", "\n\nThe voice was raspy though gentle and reassuring. ", "Hari peered into the cave and saw sitting before a small fire a wizened old man with a long white beard, garbed in a plain white dhoti and shawl. ", "A teapot sat on the fire, and neatly laid out on a blanket, as if awaiting an expected guest, were two cups and plates.", "\n\n\"Well come in, come in,\" said the old man, this time with a note of impatience. \"", "The tea is ready and needs to be drunk hot.\"", "\n\nHari entered the cave, gave the traditional hand greeting, and bowed low before the old man. \"", "I thank you, master,\" he said. \"", "The night is indeed cold, and a hot cup of tea would be welcome.\"", "\n\n\"Well, sit then,\" said the old man, pointing to the blanket, \"and take some chapatis with your tea. ", "I made them myself only this afternoon. ", "Ah yes, my abode is humble but well provisioned.\"", "\n\n\"My thanks,\" said Hari, and he sat down and joined the old man. ", "No one spoke until all the flatbread had been consumed and the third cup of tea poured. ", "Out of politeness, Hari waited until his host spoke first.", "\n\n\"Well go ahead and ask your questions,\" the old man said finally, the frown on his forehead summoning forth a thousand wrinkles. \"", "I can see that you are curious. ", "Go ahead, but make it brief.\"", "\n\n\"Old master, I was wondering if you are a guru, for it is said that gurus sometimes live in caves apart from other men.\"", "\n\n\"Hmm. ", "Some call me guru and some call me pundit. ", "And some call me a crazy old fool. ", "Labels are meaningless. ", "I am Narusimhum. ", "My life is one of solitude and contemplation, although at times I enjoy a little company. ", "There are those who choose to call themselves my followers, and they bring me food and ask a lot of silly questions.\"", "\n\nHari was greatly impressed, for it was clear that his host was indeed a guru. ", "But he refrained from asking any more questions, which the guru would no doubt consider silly.", "\n\nHari saw that his host's cup was empty, so he reached out for the teapot, and as he leaned forward the medallion that hung around his neck slipped out of his tunic. ", "A look of amazement came over the guru's face.", "\n\nLook at what he knows about that talisman!", "\n\nMore than the zamindar does. ", "I hope he does not tell Hari, because the innocent man might be tempted to experiment.", "\n\n\"Young man,\" said the guru in a tremulous voice, \"how came you by that talisman about your neck?\" ", "Hari could think of no reason not to answer the question, so he told the guru how he had acquired the medallion and of his promise to return it to the zamindar following his visit with the rajah.", "\n\nThe guru seemed greatly relieved. \"", "Now be sure to guard the medallion well and keep it hidden,\" he admonished solemnly.", "\n\n\"But, O Guru,\" said Hari, \"you called it a talisman, which is a thing of magic. ", "Tell me, is there something about the charm that is special?\"", "\n\n\"Hmm. ", "Well, it is very old and quite unusual. ", "Yes, such things have special value. ", "But enough words have been spoken. ", "It is time for bed. ", "You can sleep by the fire. ", "It will last through the night.\" ", "The guru then disappeared into the darkness at the back of the cave.", "\n\nThat is a relief.", "\n\nFor you, perhaps. ", "I would be happy to see it kill the fool.", "\n\nRemember, if he invokes it—\n\nI know, nymph of Indra's heaven, I know. ", "I will not cause it to be invoked.", "\n\nHari yawned, tired from his long trek that day. ", "No sooner did he lay his head down on the blanket than he fell into a sound sleep.", "\n\nHe awoke the next morning to the tune of a steaming teapot. ", "A plate of assorted fruit lay on the blanket beside him. ", "The guru sat nearby, frozen in a posture of contemplation, his eyes closed. ", "Hari dared not disturb him and ate some fruit as he waited patiently for the old master to emerge from his trance. ", "But the guru did not move. ", "Finally, feeling the need to be on his way, Hari shrugged, bowed to the guru, and quietly departed.", "\n\nAs he climbed down the cliffside to the path, he suddenly heard the guru's voice ring out: \"Should right to left bring peril, remember left to right. ", "Left to right!\" ", "He stopped and waited for more of the guru's words, but there was only silence. ", "Strange, he thought, as he set his foot upon the path and continued on his way.", "\n 4\n\n* * *\n\nThe She-Demon\n\nHari whistled as he walked, a simple tune which he composed in his head and elaborated on in endless variations. ", "The path had become level and smoother, though the bluffs were higher now and hemmed him in on either side. ", "The gleaming mountain caps and the sliver of blue sky overhead were the only things of beauty to lighten his heart. ", "The hours passed slowly.", "\n\nToward sundown he came upon an empty cave alongside the path. ", "The goddess of fortune still traveled with him, he thought. ", "He gathered some brush that grew among the rocks and with the flint he carried soon had a small fire going.", "\n\nHe watched the reflections from the flickering flames cavort with the shadows on the cave walls as he consumed a meal of figs and mangoes. ", "For water he had only to step outside the cave entrance where numerous rivulets ran down the mountainside from above.", "\n\nHis thoughts turned to the zamindar's medallion. ", "He took it from around his neck and held it up before the fire to examine it. ", "There were Sanskrit letters etched into the metal on both sides, which were faint and worn. ", "There were also symbols on both sides: on one side an eye within a five-pointed star, and on the other a seven-pointed star within a triangle.", "\n\nHaving learned Sanskrit from the village pundit, he tried to read the letters on one side of the medallion. ", "They seemed to form a single long word. ", "He tried pronouncing the word, first one syllable at a time, then by combining them. ", "He tried several times, but some of the letters were so worn he could not be sure he was using the right ones. ", "Finally he said: \"Narakasurakanasanjum!\"", "\n\nNo sooner had he spoken than the ground began to tremble and small stones fell from the ceiling all about him. ", "And to! ", "A crack opened up in the center of the cave floor. ", "Swords of flame shot out of the opening and a dense mist billowed forth. ", "The mist churned and condensed and began to shape itself into a human figure.", "\n\nRavana! ", "You cheated! ", "You caused him to invoke the amulet!", "\n\nI did not! ", "I was not even there. ", "I was going to focus on the idiot when he reached the rajah's palace.", "\n\nWell, the amulet has been invoked, so it is my turn.", "\n\nThe mist solidified, forming into a flesh-and-blood person. ", "And there before Hari stood a beautiful young woman clad in a diaphanous red gown, with cinnamon skin the smoothness of polished gemstones, dark eyes that reached into one's very soul, a cascade of fine black hair that fell to her knees, large full breasts that rose and fell like great ocean swells, and long limbs that tapered to finely etched hands and feet.", "\n\nLook into his mind. ", "He did it himself.", "\n\nBecause you sneaked the urge into his fancy.", "\n\nHari's fear faded into wonder as he beheld the beauteous creature. ", "Surely, he told himself, one so lovely, even though a spirit, could not be evil.", "\n\nI yield the move under protest. ", "Play it through, and in due course we shall see.", "\n\nWe shall indeed see. ", "I still think you cheated.", "\n\n\"You spoke my name, young master,\" she said. ", "Her voice was soft and lilting. \"", "By so doing you have released me from my prison within the earth. ", "For that I am most grateful.\"", "\n\n\"Who—who are you?\" ", "Hari stammered. \"", "Where did you come from?\"", "\n\n\"I am she whose name you spoke, a name which I myself may never speak. ", "I am a creation of the elder gods who set me upon the earth to dwell among mortal men, to serve them and bring them pleasure.\"", "\n\n\"Pleasure?\"", "\n\n\"Yes. ", "And for many ages I did so, until three centuries ago I was ensorcelled by the great rishi, Baksura, who imprisoned me in a rock deep within the earth. ", "In that prison I have remained until this hour of my deliverance. ", "You spoke my name and set me free.\"", "\n\n\"But—but why did the rishi imprison you?\"", "\n\n\"The rishi is mortal and did not understand my purpose. ", "What mortals do not understand, they sometimes fear and seek to destroy.\"", "\n\n\"And is your only purpose to bring mankind pleasure?\"", "\n\n\"Man, yes. ", "But my pleasure is not for all men. ", "It is reserved for a few great men, the pathbreakers, men of vision and ideas, men who seek to redirect the destiny of nations, men who challenge the very gods themselves. ", "Such are those who have known me, who have partaken of my gift.\" ", "She peered at him, her lovely brow furrowing. ", "This seemed to make her even more comely, though this was hardly possible. \"", "But I see your next question written in your eyes, my young savior. ", "What of my gift? ", "Well, you shall know it. ", "Because you have liberated me this day, and because I would ask of you one small thing more—and not least because I find you attractive—I will reward you with this, my gift.\"", "\n\nBefore Hari could utter another word, a light giddy sensation came over him. ", "A shower of tinkling emanations washed over his body, relaxing him, and his mind emptied itself of all questions and reservations. ", "The beautiful lady opened her arms to him, her whole being radiating love and desire. ", "Her gown slipped from her shoulders, revealing her nakedness in all its perfection. ", "Her beauty drew him, impelled him, as surely as a wayward comet is drawn to the heart of the sun.", "\n\nAs he stepped into her enfolding embrace, the walls of the cave faded into invisibility. ", "Softness and warmth enwrapped him in a blanket of ether, the vastness of the universe his bed. ", "His every sense and perception sharpened and refined itself, multiplying and accumulating into tidal waves of pleasure. ", "He felt unbounded freedom.", "\n\nDeep within his body a turmoil gathered with the strength of a thousand volcanos. ", "Comets of blazing lights and colors flashed all about as if in celebration of some momentous event, enveloping him in a cosmic embrace. ", "The very seams of space seemed to split apart and explode in a blinding radiance. ", "A million stars fragmented and for an instant hung suspended in the firmament before streaming into the limitless void.", "\n\nHe felt himself being lifted in a final shudder of unendurable delight, then the whirling galaxies gradually grew dim and faded away. ", "Darkness gently closed around him, caressing him, lulling him into the sweet oblivion of dreamless sleep.", "\n\nAnd I have my second seduction, despite you.", "\n\nI am by no means sure of that.", "\n\nHe woke to find himself lying on the cave floor next to a crackling fire. ", "At first he could not remember where he was, but as his eyes wandered about the cave he saw the magical lady, and all memory returned.", "\n\nHe did not move or give any sign that he was awake, but watched her secretly. ", "She was kneeling on the cave floor, her back to him, softly chanting some strange words in a harsh guttural language he had never heard before. ", "He wondered if they were magical words and if she was performing a ritual of some kind.", "\n\nShe raised her arms and bowed down as if praying. ", "As her head bent forward, her overflowing tresses parted and fell to either side of her shoulders. ", "And Hari saw that embedded in the back of her head was an eye.", "\n\nHe held his breath, not daring to move a muscle. ", "The eye was open, its pupil black as night, and it looked straight at him, penetrating to his very heart. ", "The lady then lifted her head and her hair fell back into place, covering the terrible eye. ", "She continued her chanting, showing no awareness of being spied upon, so Hari guessed that he had not been seen. ", "Rather, that the eye had seen him but not caught him spying on it. ", "But he knew now that the creature he had conjured up out of the earth was none other than a she-demon.", "\n\nThe creature ceased her chanting and turned toward Hari. ", "He pretended sleep. ", "She gently called to him and he opened his eyes and stretched as though just awakening. ", "He glanced toward the cave entrance and could tell by the receding moonlight that dawn was not far off. ", "Somewhere he had heard that demons were strong by night but weak by day. ", "He hoped that was not a tale told by old wives.", "\n\n\"Come, let us sit together by the fire and talk,\" said the she-demon, her voice soft and inviting. ", "Hari obligingly pushed closer to the fire. \"", "Now, young master, I would ask something of you, a small thing. ", "As it is forbidden that I utter my own name lest I suffer the gravest of consequences, and not having heard it spoken these three centuries past until this day, I bid you to speak it again, twice more, that I may take a measure of pleasure in hearing it.\"", "\n\nHari knew from stories that demons were deceitful and not to be trusted, and therefore that he must avoid saying the she-demon's name again lest some terrible thing happen.", "\n\n\"O beautiful lady,\" he replied in an innocent voice, \"it was only by chance that I correctly spoke your name after many erroneous attempts. ", "And in truth I do not remember the correct pronunciation. ", "So please forgive my ignorance and inability to comply with your request.\"", "\n\n\"But you wear the talisman of the Asura king about your neck. ", "Upon the face of the talisman appears my name, placed there by the great master himself. ", "Pray read my name from the disk.\"", "\n\n\"Oh yes, the medallion. ", "It seems it is more than just a simple charm. ", "There are signs inscribed on both sides. ", "Can you enlighten me as to their meaning?\"", "\n\n\"The sign which appears above my name is my own. ", "Its meaning may not be divulged to mortals. ", "Nor is it wise for you to inquire of the other name and sign. ", "There is danger in such knowledge. ", "But I ask you again, will you not read and speak my name?\" ", "Her tone revealed growing impatience.", "\n\n\"O lovely lady, I do not think I can say your name correctly, though if it pleases you I will try. ", "But you must be patient with me, for Sanskrit was always my poorest subject.\"", "\n\nHari held up the talisman, shifting his body about to catch the best light. ", "He studied it intently. \"", "You must give me a moment to go over the letters one by one,\" he said, \"for they are faint, and your name is a long and difficult one.\" ", "He slowly mouthed each letter and formed them into syllables. ", "Then he combined them and said loudly: \"Nakasurakasanjum!\"", "\n\n\"That is close,\" said the she-demon, \"but you omit' ted the second and seventh syllables. ", "Try again.\"", "\n\n\"Hmm. ", "Yes, I see. ", "I shall try once more.\" ", "He again studied the talisman, slowly forming each letter and syllable with his lips. ", "After as long a delay as he dared, he said: \"Narakasirakanasanjum!\"", "\n\n\"Almost, almost!\" ", "cried the demoness, raising her arms in excitement. \"", "Try once more, just once more. ", "It was the middle letter of the fourth syllable that you misread.\"", "\n\n\"Ah yes, I see the error. ", "Give me another moment.\" ", "Again Hari feigned the same ritual, mouthing each letter, this time knitting his brow in concentration. ", "Then he smiled, his face aglow with assurance, and he shouted: \"Narakisurakasanjum!\"", "\n\n\"No! ", "No!\" ", "screamed the she-demon, jumping to her feet in anger and frustration. \"", "Now it is worse than ever! ", "You are a stupid fool!\"", "\n\nHari sat motionless, his heart racing. ", "He dared not speak. ", "The demoness glared down at him, fire in her eyes, her breasts heaving. ", "Her ravishing form remained, but somehow she no longer looked beautiful so much as dangerous. ", "After a long silence, she became calm and sat down again.", "\n\n\"So, my young lover,\" she said, her voice now edged with malice, \"you play games with me. ", "Let us speak plainly, shall we not?\" ", "She pointed her forefinger straight at Hari's nose. \"", "Now, why will you not say my name? ", "I warn you, speak not falsely or it will be at your peril.\"", "\n\nHari gulped down a small lake of spittle that had accumulated in his mouth. \"", "Very well, I will be truthful. ", "But so must you be. ", "I do not think a true love-spirit would threaten her lover—unless you are more than you say.\"", "\n\nThe she-demon's eyes narrowed. \"", "Very well,\" she hissed, \"telling you my story is a small price to pay.", "\n\n\"Know that I am a princess of the rock demons, created ages ago by the Asura king to seduce mortal men. ", "But, as I told you, my pleasures are not for all men—only those few who would leap the centuries and dare to challenge the tempo of history as preordained by the gods. ", "Such men are grave threats, and so their march must be slowed. ", "Such was my task, and to accomplish it the Asura king bestowed upon me the gifts of immortality, great beauty, and the power to divert men from their purpose. ", "As you have witnessed, my skill is of the flesh, the perennial weakness of man. ", "So it is that I embrace the chosen few as they are about to collide with destiny and alter the path of history. ", "Such pleasures do I bring them that their purpose is forgotten in the oblivion of my embrace. ", "And so that brief receptive moment in history passes by, and mankind continues to stumble through the ages, slowly, step by step, as the gods intended.", "\n\n\"Ten million years I delayed the discovery of fire, five million the discovery of the wheel, one million years the bow and arrow, ten thousand years the alphabet, five thousand years agriculture, three thousand years the forging of iron, one thousand years geometry, map-making, the compass. ", "And much more.\" ", "She paused, reflectively, evidently proud of her accomplishments.", "\n\n\"When the rishi, Baksura, imprisoned me in a rock three centuries past, I cried out to the Asura king for deliverance, but the rishi's powers were great and could not be easily overcome. ", "And so, with his own hand, the master of demons fashioned a talisman as the means of my escape. ", "Upon it he etched my name and sign and set it among mortal men. ", "As you know, the power of the talisman is such that whoever possesses it and speaks my name sets me free. ", "My name spoken once frees me for one night, spoken twice, for a century, and spoken thrice, for a thousand years. ", "You, young master, are my first deliverer. ", "But you must say my name again before the sun rises this day, else I will be returned to my prison.", "\n\n\"You have heard my story. ", "The time grows short. ", "So I once again ask you—say my name. ", "Speak it now. ", "I know that you can. ", "For your reward I will grant you the pleasures of my companionship on the first night of each full moon for all the years of your life.\"", "\n\nHari was horrified by the she-demon's revelation, and yet he could not help being tempted by her promised reward. ", "Even now, the afterglow of her embrace lingered and warmed him. ", "But how could he liberate such a creature into the world of men?", "\n\nHe knew that sunrise was not far off. ", "If the she-demon was history's ageless mistress of delay, he must now be its master for a few moments longer.", "\n\n\"O demoness,\" he said, \"your story is indeed marvelous. ", "But tell me, what of the sorcerer Baksura, how it is that. . . .\"", "\n\n\"There is no more time for questions!\" ", "the demoness shouted angrily. \"", "Speak my name now!\"", "\n\n\"Very well, I will try.\" ", "Hari held up the talisman and studied it intently. ", "Out of the corner of his eye he could see the she-demon's expression change from impatience to fury. ", "Suddenly, in an eyeblink, she dissolved into a column of mist. ", "The mist churned and swirled, then began to solidify.", "\n\nThe demoness now stood before him in another guise—that of a hideous monster. ", "A head taller than he, she was covered with warted skin of greenish hue. ", "Three yellow-slitted eyes bulged from a forehead covered with drooping folds of flesh. ", "Her eyes were narrow and pointed, her nose an empty pit, and out of a lipless gash in her face projected double rows of fangs licked by a serpentine tongue. ", "A matted thatch of thick black hair covered her head and pelvis, two pendulous dugs hung limply from a narrow chest, and two attenuated arms extended from stooped shoulders. ", "In place of hands were bony three-fingered claws ending in long curved talons.", "\n\nThe creature spoke, its voice sibilant and menacing. \"", "Speak my name now, or I will rend you limb from limb!\"", "\n\nHari knew his time had run out. ", "He thought to run, but the she-monster stood between him and the cave exit. ", "His brain whirred. ", "Then, as a bolt from the heavens, he remembered the parting words of the old guru: \"Should right to left bring peril, remember left to right.\" ", "Of course! ", "The she-demon's name was etched on the medallion in ancient Sanskrit which read from right to left. ", "Then left to right must mean to speak the name backward.", "\n\nThe she-monster screeched and raised its claws. ", "Hari backed to the cave wall and with shaking hands held up the talisman. ", "There would be time for only one try. ", "He sucked in his breath and cried: \"Mujnasanakarusakaran!\"", "\n\nThe creature's talons descended toward Hari's throat, but when only a span away they slammed into an invisible barrier. ", "Again the creature delivered a crushing blow, and again it was blocked by an invisible shield. ", "The she-monster screamed in rage and continued to hammer at the barrier, but to no avail.", "\n\nThe first rays of sunlight peeked over the surrounding circle of mountains and poured down over the crags and crevices. ", "A shaft of sunlight shot into the cave as from a bow and struck the she-monster. ", "A pitiful wail rang out as the creature shuddered and began to turn to mist. ", "The cave trembled and the writhing mist was sucked through the crack in the cave floor. ", "As the last wispy wraiths disappeared, the crack closed and the trembling ceased.", "\n\nSo you influenced the she-demon to let him go.", "\n\nI did not! ", "It remains my turn.", "\n\nI deny it. ", "I think you sneaked in a thought. ", "It is now my turn.", "\n\nBy no means. ", "I retain the turn. ", "I protest your challenge.", "\n\nI protest this entire episode! ", "You are claiming a seduction when you did nothing to promote it.", "\n\nOur deal specifies seven seductions. ", "It does not say I have to promote them.", "\n\nWe shall have to go to a higher authority to settle this matter, precious.", "\n\nYes. ", "I am confident I will prevail, repulsive.", "\n\nFor a long time Hari did not move. ", "When finally his fear subsided, he held out an arm to see if the invisible shield was still there. ", "It was gone. ", "He sighed and gave silent thanks to the goddess Lakshmi for her protection, and asked a special blessing for the old guru whose words had saved his life.", "\n\nHe resumed his journey. ", "The path now sloped downward, and by midday the mountains melted into foothills. ", "His heart gladdened to see the sun again, to feel the fullness of its warmth upon his brow.", "\n 5\n\n* * *\n\nThe Eye of Kali\n\nThe land became flatter and turned from green to golden brown. ", "A vast plain stretched out to the horizon, its rippling fur paling and darkening in the breeze. ", "The grass rustled, whispering of dark secrets, and when the breeze quickened, it hissed angrily in warning to the unwary traveler.", "\n\nHari trudged through the desolate lowlands for two days without seeing tree or creature, save for an occasional vulture circling high overhead and snakes sunning themselves on the path. ", "Toward evening on the third day he came upon a coppice of coconut palms fed by a spring. ", "The cool water slaked his thirst and revived his spirits, and the fresh coconut meat seemed a feast after days of dried fruit and stale bread.", "\n\nHe has wandered from the proper path.", "\n\nThat is as it may be. ", "Perhaps there will be opportunity for a challenge along this route. ", "Unless you prefer to interfere, to correct his path, and give me the next move?", "\n\nI shall see what offers here.", "\n\nAs he dined in the shade of a tall palm, a dog suddenly appeared: a small brown mongrel, thin and scruffy, the kind of pathetic creature found on the streets of many villages. ", "The dog wagged its tail and whined, begging for food. ", "Hari tossed it some scraps, which instantly disappeared, and called the dog to him. ", "It approached cautiously, the circumscribed half-wag of its tail advertising its uncertainty. ", "Buttressed by Hari's gentle words and another handout, it allowed itself to be stroked and scratched behind the ear. ", "Hari hoped the presence of the dog meant a village was nearby; his provisions were in need of replenishment and he would welcome a hot meal for a change.", "\n\nHe yawned. ", "His eyelids grew heavy as he watched the sun chariot ride to the edge of the earth and disappear behind a scarlet feathering of clouds. ", "His soul at peace, he was lulled to sleep by the burbling of the spring and the syncopated winking of the stars.", "\n\nNext morning he took to the road early, the dog running on ahead, barking at any small creature on the path and driving it into the brush. ", "Soon they came to a fork in the path. ", "One branch, no more than a thin trail, veered to the south, and the other wider branch ran north. ", "Not knowing which to take, Hari was inclined toward the wider one, but his companion chose otherwise. ", "The dog ran merrily down the southerly trail, barking for Hari to follow. ", "Thinking the dog might be near its home, he followed its wagging banner, and before long he spied the walls of a village.", "\n\nThe dog ran ahead and disappeared through a chink in the base of the wall. ", "The wall was too high to scale, so Hari walked on in search of an entrance. ", "Soon enough he reached the main village gate, an imposing barrier of solid wood, but it was closed. ", "He rapped on the gate and called out, and soon he heard the grinding of an inner crossbar, and the massive door swung open.", "\n\nA half-dozen armed guards immediately rushed out and greeted him with the point of their spears. ", "Without explanation he was hustled into the village and the gate was locked behind him. ", "Though alarmed by the hostile reception, he was even more startled to see that his captors were all young women. ", "None wore the traditional saris, but were clad in dull homespun uniforms, quite in keeping with their stern visages.", "\n\nAs he was marched down the main street of the village, all eyes turned upon him, and he could not help noticing a look of sadness on the faces of the villagers. ", "Too, he saw only men and children in the streets. ", "Other than his guards, there was not a woman to be seen anywhere.", "\n\nHe was led to a large golden-domed temple at the center of the village and through a maze of corridors within. ", "The corridor walls were covered with paintings of the deities, dulled and streaked with age. ", "He saw Vishnu in the proud guise of a lion, and Siva dancing before the figure of a great lingam and yoni. ", "Scalloped eaves were decorated with friezes of fornicating gods, and gilded tableaus from the Hariyana were etched into wooden pillars and baseboards.", "\n\nUpon entering the central hall of worship, Hari was amazed to see lined up on either side of the room row upon row of women: doubtless here was the entire adult female population of the village. ", "At the far end of the hall, glowering down over the assembly, stood an enormous golden idol, fully five times the height of a man. ", "The giant figure sat crosslegged, a great red ruby protruding from its forehead. ", "The idol's six graceful arms stretched out invitingly; one clutched a sword.", "\n\nHari saw that the bare-breasted deity was garlanded with skulls, and he knew at once that this could only be the great goddess Kali. ", "A shudder ran through him. ", "Kali: the black one, the inaccessible, the patroness of murderers, the goddess of sacrifice and death.", "\n\nBut Kali had other aspects as well, he knew. ", "She was the goddess of fertility, the Divine Mother, the primal female, and as such was worshipped peacefully and lovingly by many of her cult-followers. ", "Finding himself now surrounded solely by women gave him hope that it was the feminine and not the sacrificial aspect of Kali that they worshipped.", "\n\nA door opened on the right side of the hall and a young woman emerged dressed in an elaborate robe that bespoke her to be the high priestess. ", "She was followed by an entourage of plainly gowned acolytes. ", "As she approached him, Hari saw that her stern demeanor was unable to disguise her striking beauty.", "\n\nIgnoring Hari's bow of respect, the priestess forthwith accosted him in an angry voice that echoed throughout the chamber. \"", "I am Sumi, tantric priestess of the goddess Kali. ", "Who are you and why did you come to this village?\"", "\n\n\"O priestess, my name is Hari. ", "I am but a wandering student traveling in search of truth and wisdom. ", "It was only by chance that I came upon your village. ", "Indeed, I fear that I am lost. ", "The road I seek is that which leads to the city of the rajah. ", "I would be most grateful for your direction that I may continue upon my journey.\"", "\n\n\"Your journey ends here, intruder, in this village. ", "That much is certain. ", "It is only your fate that is uncertain.\"", "\n\n\"O priestess, I do not understand. ", "Have I given offense in some way?\"", "\n\n\"You are a male. ", "That is offense enough. ", "By the will of Kali, all men in this village are bound to the service of women and are governed and ruled by women. ", "No man who enters this village ever leaves. ", "Your fate will be decided by Kali herself soon enough. ", "Meanwhile, you will be given work to do like the other men. ", "And do not try to escape. ", "The attempt will be fruitless and the punishment severe.\"", "\n\nAre you sure you did not interfere to put him in this difficulty?", "\n\nHow could I have? ", "It is a woman who brings him this mischief. ", "I must admit to liking her attitude.", "\n\nWith that the priestess turned and exited the hall. ", "The assembly broke up, and Hari was ushered out of the temple under guard and led down a side street lined with mud huts. ", "The guard stopped in front of one of the huts and told Hari to enter and remain there for the night. ", "He would be given a work assignment in the morning.", "\n\nHari sat alone in the semidarkness of the hut wondering at his predicament. ", "Soon a man entered and greeted him, introducing himself as Balram, a field worker who lived in the hut.", "\n\nBalram was of middle years, had an intelligent face, and seemed quite friendly. ", "He immediately set about preparing the evening meal, which consisted of maize cakes, fruit, and milk, which he asked Hari to share. ", "Hari gratefully accepted, and as they dined Hari told Balram of his experience in the temple and asked how it was that women ruled over men in the village.", "\n\n\"It is a strange story,\" Balram said, lowering his voice to a whisper. \"", "But I will tell it.", "\n\n\"Not two years ago this was a happy village, a good place to live and raise children. ", "Men were masters of their own households, as were their fathers and forefathers. ", "And like our ancestors, we worshipped Kali as the Divine Mother, peacefully and without strife. ", "Kali was served by both a high priest and a high priestess, who were equal in importance. ", "Now, it happened that the high priest, Amar, who was old and ailing, passed on to another life, and shortly thereafter the high priestess, Paru, also died. ", "As succession is determined by bloodline, Sumi, the niece of Paru, was next in line to become high priestess. ", "Since Amar had no living male in his lineage, it was decided that a new priest would be chosen by the people at the next Durga Puja festival. ", "I myself, who was an assistant to Amar in the temple, was a candidate.", "\n\n\"Now Sumi, who was in the full flower of her youth, did not want to become a virgin priestess. ", "She was in love with a handsome lad, Anand by name, and waited only for the day her parents would seal the marriage arrangement. ", "But Anand did not return her love, and instead thought only of leaving the village and of the adventures awaiting him in the big cities of the north. ", "So one night Anand ran away, which broke young Sumi's heart. ", "Her hurt turned to anger and bitterness toward all men. ", "So she forsook worldly life and entered into the service of Kali as her high priestess.", "\n\n\"From that time, things began to change. ", "Sumi claimed that Kali spoke to her in dreams, that the Divine Mother wished to glorify and elevate her own kind, and that women were Kali's chosen instruments and should cast off the bonds of female servitude which men had placed upon them. ", "At first such ideas shocked women and men alike. ", "But then a few widows and unmarried women took up the cause, convincing many hardworking wives and mothers that life would be easier for them if men could be made to do their fair share of the work. ", "Sumi added fuel to the fire by threatening Kali's retribution on whoever disobeyed the goddess's pronouncements. ", "Animal sacrifice was instituted, and secret meetings were held in the temple, from which men were barred.", "\n\n\"Sumi then announced that Kali had no further need for male priests and that men would no longer be allowed to worship in the temple. ", "She chose acolytes to serve her from among the village maidens. ", "The gates of the village were closed and barred, and no man was allowed to leave. ", "Then Sumi declared that it was the will of Kali that women and children live apart from men. ", "And so families were split apart, husband from wife, and cohabitation was strictly forbidden except for one day a year, and that only for the purpose of procreation. ", "A tax was placed on men's labors to support a female guard, a guard to enforce the will of the goddess—as interpreted by Sumi.", "\n\n\"Many of the men protested, and some even threatened their wives in anger. ", "But the men were beaten by Sumi's guards, who continually increased in number and now lurk on every street corner. ", "Any weapon owned by a man was confiscated, and men were prohibited from meeting together or congregating into groups. ", "And so a new order took power, with Sumi at its head.", "\n\n\"It is an unhappy life for men now, and we have been unable to change things. ", "And I suspect that many of the women have had second thoughts and yearn for the old ways. ", "But we are all trapped together. ", "I can only pray that Kali will open her eyes to what the blasphemer Sumi has done and punish her. ", "The goddess is our only hope. ", "Only by the intervention of the Divine Mother will we once again return to our cherished way of life.", "\n\n\"As to your fate, my friend, I know not. ", "I have heard talk that Kali thirsts for human blood. ", "I do not think Sumi would dare to sacrifice one of the village men. ", "But you are a stranger. ", "So beware and take care.\" ", "Then he heard something. \"", "Listen! ", "Footsteps outside—the evening post of guards. ", "It is dangerous to talk further. ", "Ah, it is times like these that I am glad I never married. ", "Perhaps the next life will be kinder to us. ", "Good night, now. ", "Try to get some sleep.\"", "\n\nHari lay awake pondering the story Balram had told him and trying to think of a way out of his misfortune. ", "But no ideas offered themselves. ", "His last thought before dropping off to sleep was of an old saying his grandmother had told him as a child: follow a dog and all you will find is a bone.", "\n\nHe seeks truth and wisdom. ", "He has found some he did not need to travel for.", "\n\nAt sunup Hari was led by a guard to the outside of the village temple where he was provided with some rags and a bucket of water and told to wash the frescoes on the temple walls. ", "The guard informed him that this would be his workplace for a few days and that he could go to and from work on his own, though he would be watched. ", "The guard then left. ", "Hari set willingly to his task, for the paintings were quite beautiful and badly needed cleaning.", "\n\nI shall induce in the priestess a passion for my mortal man, for she is the only one who can free him. ", "Observe her thoughts.", "\n\nFrom a small upper window in the temple, Sumi watched the young stranger's every movement. ", "She had arranged his workplace just so she could study him unawares. ", "She had hoped to find bitterness and pettiness in his face to convince herself that any punishment she meted out to him would be justified. ", "But as she gazed down upon him, she could see only kindness, generosity, and an undaunted free spirit behind his shining visage.", "\n\nHow beautiful he is, she thought, and for the first time in two years she felt the pangs of womanly desire rise in her breast. ", "She turned away from the window, a little frightened at the sensations that assailed her.", "\n\nWould that I could induce similar passion in you, Mohini, for me. ", "For brute power and potent lust.", "\n\nI suspect you will never understand why those do not suffice. ", "I could be passionate indeed for one I respected.", "\n\nHari was busily polishing the brow of the Lord Vishnu when he heard an odd clicking sound. ", "A small hidden door snapped open in the temple wall just in front of him, and one of the white-clad acolytes of Kali popped her head out and signaled for him to enter. ", "He complied and followed her through the low door, which locked shut behind him. ", "The girl led him up a narrow winding flight of stairs to a hallway on the upper floor of the temple, and pointed to a wooden door at the end of a long corridor. ", "She then hastily departed.", "\n\nStrange, Hari thought. ", "But then everything that had happened to him since he set foot in the village was strange.", "\n\nHe went up to the door and knocked lightly. ", "A female voice from within bade him enter. ", "He did so and found himself facing the high priestess. ", "Unencumbered now by priestly robes, she wore a thin white sari which was tightly wrapped to accent her feminine charms. ", "The room was large and lavishly decorated, and Hari guessed it was her personal quarters.", "\n\nThe priestess seated herself on a sofa and pointed to a pillow on the floor in front of her. \"", "Come, sit down,\" she said. \"", "I would talk with you.\" ", "Her voice was pleasant, yet had an undertone of formality. ", "Hari did as he was bidden.", "\n\n\"I am glad to see that you have accepted your situation,\" she continued. \"", "If you please me, then perhaps there may be more pleasant work. ", "Some compensations. ", "Does that interest you?\"", "\n\n\"O priestess, your meaning is not clear to me. ", "What compensations do you speak of?\"", "\n\n\"I will explain. ", "There is some discontent among the men of the village, which is unfortunate. ", "There are those who secretly express doubts about the laws that Kali has set down for them. ", "They want a high priest to sit beside me in the temple. ", "That is not possible. ", "But so that they may see that Kali is understanding and compassionate, I am considering allowing a man into the service of the goddess. ", "Not as a priest, but as my personal assistant. ", "It would be a comfortable position for the person selected, and we would work closely together. ", "A male presence in the temple would also serve to pacify the demands of the village malcontents.\"", "\n\nShe gave him a straight look. \"", "Tell me, Hari. ", "Would such a position interest you?\"", "\n\n\"I am honored by your consideration, O priestess, but I am a stranger here. ", "Surely there are others in the village more worthy than I. Nor is it altogether clear what the duties of such a position would be.\"", "\n\n\"Well, I would expect my assistant to—to assist me in any way that was required. ", "Just as Kali expects loyalty and unquestioning obedience from her high priestess, so her priestess expects the same from those who serve her. ", "There will, of course, be satisfactions—good food and comfortable quarters. ", "And are we not both young?\"", "\n\n\"Young?\" ", "he asked blankly.", "\n\nMy precious idiot.", "\n\nSumi stood up straight, so that her slender symmetry warred with her soft fullness. \"", "Tell me, Hari, do you not find me attractive—even desirable?\"", "\n\n\"In truth, I do, priestess.\"", "\n\n\"Well, I too will confess a certain attraction. ", "Come, let us speak plainly. ", "Although it is Kali's wish that the villagers live in abstinence, her high priestess is permitted certain privileges by virtue of her station. ", "So I ask you, Hari, become my consort as well as my assistant, that we may fulfill our destinies in both body and spirit.\"", "\n\nAnd there it is on a silver platter.", "\n\nBut I have confidence in his mortal foolishness.", "\n\n\"O priestess,\" he replied, \"though the desire be strong within me, I can not accept your offer. ", "I could not in good conscience enjoy what others are forbidden. ", "Nor do I believe that the goddess wishes her worshippers in the village to be deprived of such things—or of freedom, family, and friends.\"", "\n\nYou high-minded fool! ", "Just let her seduce you.", "\n\n\"Silence! ", "That is enough!\" ", "Sumi screamed in rage, leaping to her feet. \"", "So you reject my offer! ", "You prefer to be a righteous and noble philosopher. ", "Very well. ", "You want justice. ", "Then you shall have it—the justice of Kali!\"", "\n\nThat woman has a certain violent appeal.", "\n\nWomen can be fools too, especially when scorned. ", "What unintended mischief!", "\n\nHari, taken aback by her vehemence, did not know to respond. ", "He had supposed his position to be reasonable\n\n\"Hear me well,\" Sumi continued grimly. \"", "Two days hence you will be taken before the goddess and asked the great riddle of Kali. ", "If you fail to answer it correctly, your life will be forfeit. ", "Let us see if you prefer the arms of Tama, the death god, to mine. ", "Every man and woman in the village will be present to bear witness to the trial. ", "Your sacrifice will be a fitting object lesson to the cowardly troublemakers who whisper and plot in every alley.\"", "\n\nSo your ploy has reversed itself, exquisite spirit. ", "The passion you incited in this woman's breast will now kill the man without my intervention.", "\n\n\"May I ask, O priestess, what if I should correctly answer the riddle?\"", "\n\n\"No one has ever answered it correctly. ", "But should that happen, your life will be spared. ", "More than that, it is written that if a man correctly answers the riddle, then all men will be prized in the eyes of Kali. ", "In that event, the village men will be given their freedom. ", "But I do not think that will happen, for only Kali herself knows the answer to her riddle, and only she can say if the reply be right or wrong. ", "If your answer be correct, the goddess will give an unmistakable sign. ", "But if she does not give a sign, if she is silent, then the answer is rejected and you will suffer the stroke of her dread sword.\"", "\n\nDelightful. ", "And you can not interfere, enchanting vision, for it remains my move.", "\n\nI confess that at times the perversity of women becomes annoying. ", "But perhaps he will manage to answer the riddle.", "\n\n\"Now leave me!\" ", "Sumi cried, as lovely in her rage as in her interest. \"", "Guard! ", "Return this ingrate to his labors, only now let them be among the goats!\"", "\n\nThat night Hari related to Balram all that had happened with Sumi. \"", "It is worse than I feared,\" said Balram. \"", "A woman rejected once is bad enough. ", "But twice? ", "She will surely kill you. ", "Ah, my young friend, but you are brave. ", "Your words this day fill my heart with pride and remind me how it was to be a man. ", "I only wish I could help you.\"", "\n\n\"Tell me, Balram,\" asked Hari, \"what of the riddle of Kali?\"", "\n\n\"I have heard speak of it. ", "But no man knows the question, and I think no mortal knows the answer. ", "Some say there are many questions. ", "Others say there are many answers so that Kali or her priestess may deny the one spoken in favor of another unspoken.\"", "\n\n\"But when I answer, suppose Kali should give a sign for all to see? ", "By thus signaling her acceptance, Kali would at once free both me and the village men, would she not?\"", "\n\n\"Yes, that is true. ", "But how can we entice the goddess to speak openly or give a sign?\"", "\n\nBalram and Hari sank into a deep silence. ", "Suddenly Balram's face lit up. \"", "I have it! ", "I have it!\" ", "he cried, then quickly lowered his voice. \"", "Remember, I told you I served the goddess many years in the temple. ", "I am one of the few who know of a secret door in the base of the idol. ", "The idol is hollow inside. ", "I kept a ladder there that I might polish the ruby eye of the goddess, for its glow has a hypnotic effect on the worshipers.\"", "\n\n\"You mean that the power of the priestess is not de-rived directly from Kali? ", "That the gem dazzles others into obedience?\"", "\n\nBalram nodded. \"", "In truth, I have never seen a sign unequivocally from the goddess. ", "Always the news is from the priestess, who interprets signs she claims to have seen.\"", "\n\n\"I find this dismaying. ", "How can we be sure of Kali's true will?\"", "\n\nThe man shrugged. \"", "I think we can not, so we had better help ourselves. ", "My plan is this. ", "Tomorrow night I will steal into the temple and hide within the idol. ", "When the time comes the next morning for you to deliver your answer to the riddle, no sooner will you have spoken than the great ruby eye of Kali will come crashing down on the altar, helped on its way by one Balram from within. ", "Such a sign could not be denied, and all will be won. ", "What say you to this plan, Hari?\"", "\n\n\"A good and clever plan, Balram. ", "I favor it and will do my part. ", "I pray only that the riddle be such that I am able to give a believable answer—or any answer at all.\"", "\n\nAnd now the man interferes with your success, even as the woman interfered with mine.", "\n\n\"Sobeit. ", "To bed now. ", "We will implement the plan early on the morrow.\"", "\n\nWe shall see about that.", "\n\nHari awoke early on the morning of the ceremony after a fitful night. ", "Balram had stolen out of the hut hours before, and Hari prayed that he had reached his destination unseen.", "\n\nAn hour after dawn four guards came to escort Hari to the temple. ", "The streets were empty, but when Hari arrived at the great hall he saw that all the village men and women had gathered there. ", "Standing before the flower' strewn altar was Sumi, adorned in her priestly robe, her acolytes lined up behind her. ", "The unblinking third eye of the goddess looked down, casting an eerie glow over the assembly.", "\n\nA faint tinkle of bells sounded. ", "Sumi raised her arms toward the goddess, and the hall grew deadly silent.", "\n\n\"O Kali,\" she intoned, \"Divine Mother, goddess of life and death, your children are gathered here before you to do you homage.\"", "\n\n\"Kali!\" ", "cried the audience in unison.", "\n\n\"This day we ask your judgment on an intruder in our midst, a man who knows not your ways and needs be tested in your eyes. ", "He will be asked your riddle for all to hear. ", "If by your sign he answers correctly, all men will be raised in your eyes. ", "But if he fails to answer correctly, he will suffer the penalty of death upon your altar, a sacrifice to you, O Great Mother, and all men will be shamed.\"", "\n\n\"Kali!\" ", "cried the assembled worshippers, less loudly than before, the voices of the women predominating. ", "The priestess turned toward Hari.", "\n\n\"Prepare yourself, unbeliever. ", "I will say the riddle only once, and only one answer must you give. ", "Harken!", "\n\n\"Three mountains with but two peaks, I see; a smooth sloping plain leading to a forest, and within the forest a cave; the cave is guarded; within the cave a treasure chest, and within the chest the soundless breath of the world!\"", "\n\nShe paused, and Hari realized with dismay that she had completed the presentation of the riddle. ", "It hardly seemed enough.", "\n\n\"Such is the riddle,\" Sumi proclaimed. \"", "Say now your answer, Brahmin. ", "Upon your reply the great gong will sound, and Kali will make her pronouncement.\"", "\n\nHari closed his eyes and tried to concentrate. ", "The sweet aroma of the altar lamps played with his thoughts, and blazing colors flashed beneath his eyelids. ", "The answers to riddles were always simple, he told himself. ", "It must be something about Kali. ", "His eyes opened and rested on Sumi's attractive body as he struggled to make sense of the riddle. ", "Yet the last thing he needed at the moment was that kind of distraction.", "\n\n\"You must answer now!\" ", "cried Sumi. \"", "If not, your silence will condemn you.\"", "\n\nThen he had it. \"", "Very well, I will answer,\" said Hari. \"", "You described a virgin woman. ", "The two mountains with peaks are her breasts. ", "Below is the plain—the body sloping down toward the maiden fleece, the forest. ", "Merging into the forest is the third and lowest mountain, that without a peak, which is woman's graceful curved mound of Venus. ", "The cave is the yoni of woman, the guard signifies virginity, and the treasure chest is the womb. ", "Within the chest, the soundless breath of the world—the unborn child, the future of us all.\"", "\n\nThe hall was still and breathless. ", "Then a deafening clang reverberated through the chamber as Sumi, hammer in hand, struck the giant gong next to the altar. ", "As the priestess poised to strike again, a cracking noise was heard coming from the head of Kali. ", "All eyes turned upward to see the goddess's great ruby eye shudder, then leap from the idol's brow and fall to the altar below.", "\n\nThere was a stunned silence. ", "Then a screaming and moaning arose from the worshippers. ", "A man cried out, \"The answer is correct! ", "Kali has given the sign. ", "We are free!\" ", "With that, all the men began shouting and rushing toward the altar. ", "A murderous mob formed around Sumi. ", "Quickly, Hari threw himself in front of her and held up his hands, shouting for silence.", "\n\n\"My friends, please listen! ", "This is a great day. ", "Kali has given you back your freedom. ", "Just as I was tested, so you have been tested these past two years. ", "And Kali found you worthy. ", "Do not be vengeful toward her priestess who but heeded the will of the Divine Mother. ", "Rejoin your families and worship Kali as before, in peace. ", "Now you may choose a high priest of your own.\"", "\n\nThe assembly cheered, then broke up as wives pulled their husbands away and steered them toward home. ", "The acolytes ran to join their families. ", "Hari turned toward Sumi, who loosened her robe of office and dropped it to the floor. ", "She smiled wanly at Hari, tears of gratitude in her eyes. ", "Hari nodded and smiled warmly, which was more than she could bear, and she ran out of the temple.", "\n\nHari heard his name being called, and turned to see Balram staggering out from behind the idol.", "\n\n\"What happened, Balram? ", "he asked. \"", "Are you hurt?\"", "\n\n\"Only stunned. ", "I will be all right in a few moments. ", "It is only a bump on the head.\"", "\n\n\"How came you by this injury?\" ", "asked Hari. \"", "Did the guards attack you?\"", "\n\n\"No, I fell. ", "I will tell you the story. ", "Last night I made my way into the temple undetected and secluded myself within the idol as we had planned. ", "I waited patiently in the darkness, and at dawn I searched about for the ladder that I might reach and loosen the gemstone in the brow of the goddess. ", "But the ladder was gone. ", "My heart nearly stopped beating. ", "The villagers were beginning to enter the temple, so there was no choice but for me to climb up the inside wall of the idol unaided. ", "That I proceeded to do.", "\n\n\"The feminine contours of Kali provided some footholds, and I gave thanks that our chosen god was a woman. ", "I was about to climb into one of Kali's great breasts when my foot slipped. ", "I can't imagine how it happened; I had thought I was past the worst of the climb. ", "I must have been distracted by the importance of the task, and become careless. ", "I fell to the floor where it seems I struck my head. ", "After that all was blackness. ", "When I awoke, my head was swimming, and I heard your voice as in a dream. ", "You were giving reply to the riddle of Kali. ", "Then the temple gong sounded, and I looked up to see the great eye of Kali tremble in its setting, then leap forward of its own will. ", "What followed we both know.", "\n\n\"I never reached the eye of Kali. ", "But, miracle of miracles, you answered the riddle correctly, and Kali expelled her own eye as a sign of her acceptance. ", "I am ashamed that I had so little faith in the Divine Mother—and in you, my friend.\"", "\n\nHari listened in amazement and wondered if it was the Divine Mother who had saved him.", "\n\nThat afternoon a feast was held in the village. ", "Balram was chosen as the new high priest. ", "Hari, too, was feted, garlanded with flowers, and plied with exotic foods. ", "He politely refused all gifts, but accepted the temporary use of a small house. ", "The villagers implored him to remain among them, but he declined, saying he would remain a few days longer, but then must be on his way.", "\n\nHe looked for Sumi in the gathering, though was not surprised when he did not see her. ", "Balram made a speech about family life, the duties of men and women, and the beneficent side of Kali's nature, and was cheered enthusiastically, though mainly by the men.", "\n\nAt nightfall the celebration ended and Hari returned to his new quarters only to find Sumi waiting for him. ", "Their eyes met in silent understanding and he held out his arms to her. ", "No words were uttered as they embraced and sipped from the cup of a thousand delights. ", "Thereupon, great joy came to them, carefree and uninhibited, and as the swelling tides of pleasure inundated Sumi, she knew she was never meant to be a virgin priestess.", "\n\nWe hardly needed to peek into her mind to grasp that. ", "Now if a certain Apsara would similarly see the light. . . .", "\n\nLater, as they rested together, a question came to Hari's mind. \"", "Tell me, Sumi,\" he asked, \"do you think my answer to the riddle was correct, and so moved Kali to cast down her eye as a sign?\"", "\n\n\"I do not know if your answer was correct, Hari, though it was a clever one. ", "But that is not why the ruby eye of the goddess fell.\"", "\n\n\"Oh? ", "If you know the cause, Sumi, then pray tell me.\"", "\n\n\"Very well, but you must keep the secret. ", "It was I who loosened the eye of Kali, such that a slight vibration would dislodge it. ", "The vibration I myself provided by sounding the great gong beside the altar. ", "I—I think you know why I did it.\"", "\n\nHari threw his arms around Sumi, his admiration and affection for her increasing by leaps and bounds.", "\n\n\"But how did you reach the eye?\" ", "he asked.", "\n\n\"The idol is hollow and has a secret entrance. ", "With a ladder it was a simple matter to climb to the eye and loosen it. ", "This I did two nights ago.\"", "\n\nI did not see that! ", "Had I but known—\n\nYou would have known, had you not wasted your time ogling me instead of watching the village activity.", "\n\n\"And did you then remove the ladder from the idol?\"", "\n\n\"Yes, but why do you ask that?\"", "\n\nAnd so your ploy of making Balram's foot slip was wasted. ", "You used up your move for nothing, and now it is my move.", "\n\n\"Just curiosity. ", "Ah, Sumi you are indeed marvelous. ", "I hope you will never regret putting aside your priestly robes.\"", "\n\n\"No, I will not. ", "The joy of this night alone surpasses a lifetime of rewards as a virgin priestess.\"", "\n\n\"I am glad you are satisfied. ", "But what will you do now that your power here is gone?\"", "\n\n\"Hari, I know you will leave the village soon and I doubt that we shall ever meet again. ", "When you go, I too shall leave. ", "I have an aunt in a distant village, and will go there and try to make another life for myself. ", "But until then, my beloved, stay with me that we may crowd the pleasures of a lifetime into the little time we have remaining.\"", "\n\n\"Gladly, oh gladly.\"", "\n\nThree days later Hari resumed his journey to the palace of the rajah. ", "Along the path he was greeted by the very same mongrel that had led him to the village. ", "The dog jumped happily up and down and ran on ahead, as before, to clear the path. ", "When they reached a fork, Hari took the northerly branch and the dog took the easterly, this time making no attempt to persuade Hari to follow. ", "Hari waved goodbye, but the dog ignored him as it ran off in pursuit of a butterfly that badly needed chasing.", "\n 6\n\n* * *\n\nPitali: City of the Rajah\n\nThe land shed its smooth brown mantle and became hilly, the vegetation turned greener, and the path widened into a road. ", "Travelers passed Hari by: merchants and mendicants, princes and beggars, priests and wanderers. ", "Most, like himself, traveled on foot, but the more prosperous rode on splendid horses or were carried on tasseled palanquins by dark-skinned Sudras.", "\n\nThe road became crowded. ", "The cries of vendors squatting by the roadway, the squawking of caged birds for sale, and the rattle of bullock carts filled the air in a cacophony of well-ordered confusion. ", "Occasionally a white cow would wander by unattended. ", "It puzzled Hari that these poor creatures were so thin and neglected, and yet so revered that even princes made way for them. ", "But then there were many things he did not understand about the ways of his people.", "\n\nAs he topped the crest of a high hill, the wall of the city hove into view. ", "Mighty it stood, extending as far as the eye could see, shimmering and undulating in the bright sunlight like a giant snake. ", "Beyond the wall there rose a great golden dome surrounded by glittering spires and towers, which could only be the palace of the rajah. ", "Here at last was the great city of Pitali.", "\n\nHari passed unnoticed through the city gates amidst the hustle and bustle of humanity, and followed the main thoroughfare toward the palace. ", "He stopped to admire the handsome multistoried sandstone buildings that lined the roadway, adorned with statues of the gods and scenes from the Hindu epics. ", "Too, he paused at the street of the artisans, fascinated to watch them at their work: weavers and makers of cloth; workers of metal, ivory, stone, and leather; basket makers, potters, and dyers.", "\n\nUpon reaching the palace gate, he showed one of the guards the seal of the zamindar on the message he carried and was led to a side entrance of the palace. ", "There he was turned over to a servant and ushered through a maze of corridors into the presence of a haughty man of prodigious bulk, who announced himself as the rajah's head housekeeper. ", "Appraising Hari's somewhat bedraggled appearance, the housekeeper shook his head in disgust and ordered the servant to escort the visitor to such-and-such a room at the rear of the palace, which was to be his quarters, and to provide him with water for a bath and a fresh change of clothing.", "\n\nHari found the room unpretentious but comfortable, and was pleased to find it overlooked the palace gardens. ", "From his balcony he could see terraced banks of multihued flowers and rows of blossoming bushes that bordered a winding path which led to a graceful half-moon bridge of white stone. ", "Beneath the bridge ran a silver brook fed by a high fountain, the water of which gushed forth out of the upturned mouths of delicate statues of naked maidens perched on the fountain rim. ", "Flowering trees, hanging trumpet vines, and lotus gardens populated with parrots, doves, and peacocks decorated the lawns, and along the walkways were white stone benches guarded by lifesize tigers, leopards, and mythical creatures fashioned out of giant hedges.", "\n\nNo sooner had he bathed and put on fresh clothing than came a knock on the door, and a uniformed officer presented himself to say that the rajah was ready to receive the message of the zamindar. ", "Hari was escorted to the rajah's Hall of Private Audience and told to wait in the back of the room until the rajah had finished with the case he was hearing, which was the last of the day.", "\n\nAt the front of the room Hari could see there were five persons: the rajah, a stately man of middle years seated on an elevated ivory throne; a dewan or advisor standing beside him; and three other people who apparently were the parties in the case being heard. ", "The three were a stout elderly man and a pretty young woman, both richly garbed, and a young man quite plainly dressed. ", "The acoustics of the room were such that Hari could not help overhearing the conversation.", "\n\nThe complainant, the stout man, was an irate father who had caught his daughter in a compromising situation with the humbly dressed young man, whom he now wanted punished. ", "The young man, staring contritely down at the floor, did not deny the accusation, and the tearful daughter conceded that she had not altogether discouraged the young man's advances. ", "The rajah nodded understandingly and assured the father that the lad would be punished, then dismissed father and daughter, saying it would be best if they departed and were spared the unpleasantness of witnessing the punishment about to be administered. ", "When they had left, the rajah sighed and turned to the trembling young man.", "\n\n\"Well, boy, you must learn to be more careful in choosing your place of trysts. ", "Lovemaking is an art in all of its aspects and must be approached with skill, care, and consideration. ", "You have much to learn. ", "So, for your punishment I sentence you to spend three days in my court library where you will read in their entirety the ancient manuals of love—the Kama Sutra, the Ananga Ranga, and the Koka Shastra—that you may learn something of the skill you obviously lack. ", "Thereafter, stay away from that particular pretty young lady. ", "If you must rove, divide your attentions among the fair maidens, with which this city abounds, whose fathers are not rich and influential merchants. ", "Now begone, and report to my chief librarian on your first day off from your work.\"", "\n\nThe young man thanked the rajah profusely and scampered out of the hall. ", "The rajah's advisor frowned disapprovingly.", "\n\n\"Lord, was not your punishment a bit lenient?\"", "\n\n\"Ah, Amul,\" the rajah replied, \"sometimes I think you were never young. ", "Hmm. ", "Probably you were not. ", "But remember, the young man is an apprentice skilled in metal-making. ", "Each sword he fashions is more important than a thousand of the baskets that yonder merchant peddles in the marketplace. ", "The time may be coming when my army will be in need of swords.\"", "\n\nThe conversation between the rajah and the advisor quieted to a whisper, and Hari could no longer hear it. ", "But from what he had heard, he liked the rajah already.", "\n\nWhile he waited, his eyes wandered around the room and marveled at its beauty and richness of design. ", "The checkered floor was of white ceramic tile, each tile colorfully painted in an intricate geometric design, no two alike. ", "Paintings depicting battle scenes from the Mahabharata covered the walls. ", "Centermost were the forces of the Pandavas engaging the army of the Kauravas, with Krishna looking on in benevolent approval. ", "The ceiling was leafed in gold save for a large oval above the rajah's throne, within which was painted the artist's conception of the blissful City of the Gods.", "\n\n\"I see that you appreciate good painting, young man,\" came the voice of the rajah, catching Hari by surprise. \"", "Come forward.\"", "\n\nHari approached the throne and saw that the rajah was indeed a striking figure: tall, slender, sharp of feature, and self-assured, with penetrating eyes that harbored a playful twinkle. ", "Draped in a long richly brocaded robe studded with jewels, he was every inch a king, yet his friendly smile and easy manner belied his high station and dignity of bearing.", "\n\nIn contrast, the advisor, Amul, was older and shorter, with close-set eyes and a bulbous nose, and wore a sullen look that aspired to a scowl. ", "His dress was only slightly less grand than his master's, though his posture was fully as stiff and formal as his demeanor.", "\n\n\"I understand you have a message from my good friend, the zamindar,\" said the rajah.", "\n\n\"Yes, Lord,\" Hari replied, handing the message to the rajah. ", "The rajah broke the seal and read the message with an unchanged expression, then folded it and tucked it in his robe.", "\n\n\"So you are Hari,\" said the rajah. \"", "The zamindar spoke well of you. ", "I am pleased you decided to visit my home. ", "Do you know the contents of the zamindar's message?\"", "\n\n\"No, Lord, except that it was to introduce me.\"", "\n\n\"Well, there is more, but we will talk about that later. ", "Meanwhile, you must be weary from your journey and will want to rest. ", "We will meet at dinner.\"", "\n\nHari thanked the rajah, bowed low, and returned to his room. ", "Tired after days of walking and nights of sleeping on the hard earth, he stretched out on the bed to nap. ", "He did not awaken until he heard a rapping at his door and a servant's voice summoning him to dinner.", "\n\nThe dinner was in the rajah's private quarters, a room decorated solely in green, though of many shades and textures. ", "He was seated between the rajah and Amul. ", "Shortly three young ladies entered the room and seated themselves at the rajah's right. ", "Hari looked from one to the others and was amazed, for not only were they exceedingly comely, but they were identical triplets, alike in every feature and detail. ", "Only the color of their garments differed.", "\n\n\"Hari, may I present my three daughters,\" said the rajah, \"Saras, dressed in white; Suseela, in green; and Sukunya, in red. ", "I insist they wear only these colors, each her own, that I and everyone else may tell them apart.\" ", "He smiled, obviously well satisfied with the situation and justifiably proud of the beauty of his offspring. ", "There were known to be men who valued only sons, but it seemed that the rajah was generous in this respect also. \"", "My daughters, this is Hari, who comes to us from the palace of our friend, the zamindar.\"", "\n\nHari bowed his head and the young ladies smiled at him, nodding in greeting, but did not speak. ", "Each one seemed prettier than her sisters, with her color setting her off to advantage.", "\n\n\"Although the gods long ago summoned my dear wife,\" continued the rajah, \"they blessed our union with these three jewels. ", "But they are not quite flawless,\" he added with a chuckle. \"", "I should warn you, Hari, watch out for them. ", "They like to play games, and I sometimes think they take advantage of their father's love.\"", "\n\nThe dewan allowed an expression of sour agreement to cross his face, and all three ladies flashed merry frowns at him, teasingly emulating his expression. ", "It was plain that there was substantial truth in the rajah's cheerful statement.", "\n\nAnd here we have, I think, three potential seductions. ", "They may look the same, but they are three different mortal women. ", "Their tastes should be similar, and I think access will be no more difficult for one than for another.", "\n\nPerhaps. ", "But you must touch only one at a time, and then it will be my move. ", "I see three potential kills, for I think the rajah's good humor will wear quickly thin if he catches a man molesting any of these jewels.", "\n\n\"Oh Father,\" interjected Sukunya, \"you talk as though we were still children. ", "I am sure our guest would rather hear talk of more interesting things.\" ", "She glanced brightly around. \"", "I know! ", "Perhaps he can help us answer the puzzle presented to us this day by our tutor. ", "The question is: what is it in all the world that has parts in the greatest number, with no two parts the same? ", "Saras said it was grains of sand, and Suseela said leaves on the trees. ", "But our tutor said no, since some of these may be the same as others. ", "I said people, but our teacher laughed and told me to look upon my sisters.\" ", "Saras and Suseela giggled as they recalled the incident. \"", "Do not laugh, sisters, for your answers were not accepted either,\" said Sukunya, cutely pouting. \"", "Does anyone have a better answer?\"", "\n\nNevertheless, that one strikes me as clever enough to deceive any man, especially her doting father. ", "I will touch her first, with a passion that will not be denied, and we shall see what she makes of it.", "\n\n\"Well,\" said Amul, clearing his throat to insure that all ears attended him, \"there may be some people who are alike in body, but no two souls are alike. ", "Our souls are the mirrors of our deeds, and since no two persons live exactly the same, then no two souls can be the same.\"", "\n\n\"Oh, wonderful,\" cried Suseela, and all three girls clapped. ", "Apparently they were not really at odds with the sober advisor, and did not disparage his remarks. \"", "What say you, Hari?\" ", "asked Saras.", "\n\n\"The honorable Amul gave a good answer,\" replied Hari. \"", "It would be difficult to better.\"", "\n\n\"Make a stab, Hari,\" encouraged the rajah. \"", "It is only a game.\"", "\n\n\"Very well, Lord. ", "According to the Great Book of Science which I read in the zamindar's library, no two flakes of snow are identical. ", "Each flake is geometrical in design, the number of possible designs infinite in their difference. ", "Consider, then, the total number of flakes that have accumulated upon the vast range of mountains we know as the Home of the Snow, the Himalayas.\"", "\n\n\"Hah! ", "A clever answer,\" piped the rajah amidst the squeals of delight emitted by his daughters. ", "Amul said nothing, his expression dour.", "\n\n\"Father, do you not have an answer?\" ", "asked Sukunya.", "\n\n\"Hmm. ", "I thought of the stars. ", "Although I suspect no two stars are the same, the court astronomer does not agree with me, and I have no great book to cite as evidence. ", "But are not numbers themselves different from one another, and do they not march on into endlessness?\" ", "Everyone laughed and applauded at this reply. \"", "But enough of games,\" said the rajah, \"let us give our tongues a rest and enjoy some fine food.\"", "\n\nHari sampled a variety of vegetarian delights, many new to his taste, and as he ate he could not help noticing the rajah's three daughters stealing looks at him, which made him a little uncomfortable.", "\n\nAt the end of the meal the girls excused themselves and left the room, leaving the men to sip a strong drink which the rajah jokingly claimed was extracted from the sacred soma plant and imparted insight and longevity to both men and gods. ", "The conversation turned to questions of religion and government, and whether the one was the ally or the enemy of the other.", "\n\n\"The ruler who seeks Atman achieves a state of benevolent selflessness and wisdom, and so rules wisely,\" argued Amul. \"", "We can not rely only on intellect, which is but feeble and transitory. ", "We must rise above our pride, our desires, and individual senses, and strive to achieve that which is the silent and formless depth of our being—Atman, the Soul of the World.\"", "\n\n\"All very well, Amul,\" said the rajah. \"", "But what will all this purging of the senses and denegration of material things do for us in times of strife? ", "It is their bodies and their property that the people demand to have protected then, not their souls. ", "If a king or soldier becomes preoccupied with the Soul of the World, how well will he skewer his enemy in battle? ", "What say you in this matter, Hari? ", "Speak freely.\"", "\n\n\"O Rajah, I have been taught that we of the Deccan civilization should seek balance in our lives. ", "Surely we have room for the soul as well as the material world. ", "Yet their importance, one to the other, I think is not constant, but changes with the needs of men. ", "In times of peace and prosperity, a certain amount of asceticism and concern with the afterlife may help to temper the corrupting influences of wealth and materialism. ", "But even while our eyes seek the heavens, our feet should remain earthbound. ", "Recall that the Muslim conquests took place at a time when our people were steeped in the supernatural. ", "When the sultan's armies sacked our villages and killed and enslaved our people, little resistance was offered. ", "Instead, the people took refuge in prayer and spiritual consolation, comforting themselves that the next life would be a better one.\"", "\n\n\"Let us not be alarmists,\" countered Amul. \"", "We Madrans can not all carry swords and arm ourselves against phantom enemies. ", "Then our neighbors will become suspicious and arm themselves, and a race will begin that can only end in a conflict that no one wanted in the first place.\"", "\n\n\"There is much in what you both say,\" mused the rajah. \"", "But have we not had enough reason to be suspicious of the rana, Chandra, in our neighboring state of Madresh? ", "He has placed troops along our common border, though the Madreshian army officers say they are merely engaged in peaceful camping-out exercises. ", "Perhaps, and perhaps not. ", "What is certain is that we lack good military intelligence.\"", "\n\nI grow bored with this prattle.", "\n\nI agree. ", "Touch him to move it along. ", "You do not lose a turn.", "\n\nThe rajah's expression abruptly changed. \"", "But enough of such talk for one day. ", "Hari, you must excuse me now. ", "There are other matters I must attend to. ", "Come along, Amul, I will need you.\"", "\n\nHari was sorry to see the dialogue end, for he had been enjoying the exercise of minds. ", "But who was he to decide how the rajah spent his time?", "\n\nThe evening was young, so Hari wandered through the corridors of the palace, perusing its many marvels of art and architecture. ", "As he was looking at a collection of miniature Rajput paintings in an out-of-the-way gallery, a maidservant approached him saying there was a royal command for his presence and would he please follow her. ", "He did so and was led up a narrow stairway, and thence down a dimly lit corridor to a room with a red door. ", "The maidservant bade him enter, then departed.", "\n\nThe door was ajar, so he went in. ", "The room was upholstered in many shades of red, from curtains to tapestries, and it even had pretty pale red sheets on the bed. ", "No sooner had he crossed the threshold than the door swung closed behind him and he heard the click of the lock turning. ", "He turned about, and there leaning against the door facing him was Sukunya, whom he recognized by the red color of her gown.", "\n\n\"I am sorry if I startled you,\" she said sweetly, \"but I did not think I could entice you here any other way. ", "Secrecy is important, for my father would not approve of a man in my room.\"", "\n\nBut perhaps he will nevertheless learn of it.", "\n\n\"Please forgive me, O Sukunya, for I thought it was your father who summoned me. ", "It is not correct that I should be here, so if you will please excuse me, I will leave.\"", "\n\n\"But you can not leave, beautiful Hari, for I have locked the door and taken the key. ", "I will not let you go until you have done me a service, and not an unpleasant one I hope.\" ", "With that, Sukunya stepped over to her bed and began to ease the straps of her gown from her shoulders. ", "The light garment drifted to the floor with mesmerizing slowness, revealing her ivory-smooth nakedness in all its budding glory. ", "If Meena had been the most beautiful of young women, and the she-demon the most striking of supernatural females, this girl in red was surely the loveliest of nubile maidens—except, perhaps, for her sisters.", "\n\nThough alarmed, Hari could not help being aroused by her loveliness. ", "There was a certain special appeal in her youth and eagerness for experience. ", "But fear rose in his breast, for these daughters of the rajah seemed fickle and untrustworthy. ", "Better he should leave—if he could. ", "He tried the door, but it was securely locked. ", "He saw there was another door at the opposite end of the room which he also tried, but it too was locked. ", "He raised his hand to rap on the door.", "\n\n\"That would be very foolish,\" said Sukunya. \"", "The guards will hear and come to investigate. ", "Then I will have to say that you forced your way into my bedroom, which I would truly regret. ", "Your punishment would be most unpleasant. ", "Now come here, silly man. ", "You hurt my feelings by ignoring me so.\"", "\n\nI was right. ", "She is clever enough to make her snare tight.", "\n\nHari saw that he was lost. ", "Were she to lodge a charge against him, the rajah's men would begin by cutting off the anatomy that offended her, and then proceed to less pleasant exercises. ", "There was nothing to be done but to meet the demands of the moment. ", "And so, heroically and unselfishly, he bent to the task at hand, doing his best to fulfill his captor's most ardent desires (for it was his way to accomplish any task set before him to the very best of his ability). ", "Thereupon the twain coupled and clipped, fused and combined, Sukunya clutching and biting her bedcovers to prevent herself from crying out in her frequent peaks of passion lest someone overhear and misunderstand. ", "Or, worse, understand.", "\n\nWhen later Hari rose to dress himself, Sukunya grasped his arm and demanded a repeat performance. ", "When he tried to protest inability, she suggested that such inability could readily become permanent, and inhaled as if to scream. ", "Having little choice but to comply, Hari steeled himself and entered once more into the breach. ", "In the end, though exhausted, he emerged victorious, having routed any lingering desires in his partner.", "\n\nAfter he had dressed, Sukunya told him it would be safer for him to leave by the rear door, and she bussed him on the cheek as he quietly slipped out. \"", "I would not really have cried the alarm,\" she confessed contritely. \"", "It was just that I suspected you still had more joy to give.\" ", "The door snapped shut behind him, and he found himself in a small stairless hallway facing yet another door, only this one was white. ", "He slowly and quietly turned the door handle, but the door was locked. ", "As he pondered whether to knock, he heard the sound of the lock turn and the white door swung open.", "\n\nAnd there is no man here for you to touch.", "\n\nBut you may not touch anyone until my turn is done.", "\n\nI may not need to.", "\n\nHe entered and found himself in another bedroom, which looked identical to the one he had just left, except that it was decorated in white instead of red. ", "As his eyes roamed around the room, noting the white cushions on the floor and white sheets on the bed, the door shut behind him. ", "He whirled about to see the rajah's daughter, Saras, dressed in a gown of white, in the act of locking the door. ", "She withdrew the key, carried it to her bed, and hid it among the folds. ", "Only then did she greet him, smiling sweetly, bidding him to enter and be at ease.", "\n\n\"Greetings, Saras,\" he said, not entirely at ease. \"", "I seem to be lost. ", "Please forgive me for intruding on your privacy. ", "If you will show me a ready exit I will be on my way. ", "Perhaps this back door—does it lead to the corridor?\" ", "He tried the rear door, but it was locked. \"", "Can you unlock the door for me, O Saras?\" ", "he asked pleadingly.", "\n\n\"Surely I can, Hari, and I will. ", "But first you must do me a service.\" ", "She then dropped her gown to the floor, exposing her nakedness to him, and his heart sank in his breast. \"", "We daughters of the rajah, being identical in every way, insist on identical treatment. ", "That is only fair. ", "If a gift is presented to the one, it must be given also to the others. ", "So, Hari, come and be glad, tarry with me awhile that we may find pleasure in one another's company. ", "Not until the softness has returned to the tips of my breasts will you find egress from this room.\"", "\n\nShe is truly admirable.", "\n\nHari sighed and knew what he must do. ", "Fortunately what might have proved impossible with the same maiden as before became possible with the new one, as was the case with breeding animals; there was potency in novelty. ", "And so the two lay abed and clipped and combined, futtered and fused, and Saras bit her bedcovers to avoid screaming with delight as wave upon wave of pleasure assailed her. ", "Hari, for his part, labored mightily that he might not disgrace his manhood for failing to rise to the challenge.", "\n\nI am constrained to agree. ", "It shall be similar with you and me, in due course, only more violent.", "\n\nPerhaps you will find yourself unable to wait for me, and will have to touch a man so that he seduces a mortal maiden for you. ", "Then it will be my move again.", "\n\nYour humor is of a canine nature.", "\n\nBut Saras, like her sister, demanded a rematch, which Hari was hard put to comply with. ", "But thanks to some special tricks and enticements known to Saras, to Hari's amazement his tired body responded and rose once more to the occasion, fully meeting the requirements placed upon it. ", "When he had spent himself, drained of all strength, Saras kissed him on the cheek and unlocked the back door of her room.", "\n\nThis time, before exiting, Hari carefully looked outside to be sure another blind alley or colored door did not await him. ", "There was a corridor, and he gratefully stepped into it as Saras closed and locked the door behind him. ", "He tiptoed down the corridor, which turned a corner, and lo, it dead-ended into a door of green. ", "Hari groaned and slipped to the floor in utter frustration. ", "Perhaps if he yelled for the guards, he thought, he could invent a plausible explanation. ", "But suppose he was not believed? ", "No, the risk was too great.", "\n\nJust then a lock clicked and the green door slowly swung open. ", "Hari took a deep breath, hauled himself to his feet, and entered the room. ", "The surroundings were all too familiar, in their new color of green. ", "The walls and floor shared this hue, as did the ornamental plants on the windowsill, and of course the bed dressings. ", "Not surprisingly, a lovely lady in a green gown awaited him. ", "He glanced across the room and saw another door, which he tested halfheartedly, knowing it would be locked.", "\n\n\"Suseela, please open the door,\" he pleaded. \"", "I wish only to return to my room and partake of a good night's sleep.\" ", "But she merely shook her head and smiled as she discarded her robe and draped herself over the bed. ", "Hari knew further talk would be useless, so he undressed and, before entering into the fray, paused to perform a few simple yoga exercises that he might invigorate his body and fortify himself for the ordeal ahead. ", "At least this was another new partner, though she looked the same, so that nature provided him with another dollop of potency.", "\n\nO, delightful!", "\n\nThereupon the two commenced to couple and commingle and indulge in many variations of congress as was Suseela's wont, and long were they conjoined, for Hari found it difficult to reach a conclusion despite his partner's caressing undulations. ", "But her accelerated tempo finally coaxed him to a fitting climax, whereupon Suseela shuddered in satisfaction and released the bedcover she had grasped between her teeth to keep from crying out.", "\n\nHari nearly fainted from sheer exhaustion. ", "Suseela, having received full satisfaction, since the love match had been of considerable duration owing to Hari's harried condition, sought not to tax his capacity further, for which he was most grateful. ", "He dressed himself with difficulty and wobbled out of the rear door and into the adjoining corridor. ", "He heard the familiar locking of the door as he searched the corridor for a stairway to the floor below.", "\n\nNow he passes beyond the women's quarters. ", "I have touched a key man. ", "Prepare for the reckoning, sweet flower.", "\n\nBut to his chagrin, the corridor ended in front of yet another door, this one brown in color. ", "Oh well, he thought, as he slowly turned the door handle. ", "At least there were no identical daughters garbed in brown. ", "The door clicked open and he quietly slipped inside.", "\n\nPerhaps, bitter fruit, perhaps. ", "The night is no longer young.", "\n\nI know my man remains regardless; I feel his excitement\n\nThe room was in semidarkness and no one seemed about, so Hari began to tiptoe toward another door he could see at the far end of the room. ", "When he was but halfway to his destination, there suddenly came a moaning sound from somewhere in the room. ", "He quickly ducked down only to hear the sound again. ", "It was unquestionably human: he was not alone. ", "The noise seemed to be coming from the corner of the room furthest from him. ", "If he kept on his present course and ducked behind the furniture, he might make it to the door undetected.", "\n\nThere is certainly male excitement.", "\n\nCrawling on all fours, he slowly made his way across the floor, being careful not to bump into anything. ", "The moaning resumed, now interspersed with occasional grunts and gasps. ", "He was within a few feet of the door now, but there was no more furniture to hide behind. ", "The remaining open territory seemed like a vast plain upon which any moving object would be immediately spotted. ", "He had no choice but to proceed.", "\n\nSlowly he inched forward. ", "Light was shining through the bottom of the door, which enabled him to see that he was in a bedroom. ", "Just as he reached the door, a loud groan filled the room, and instinctively his head snapped in the direction of the noise. ", "With no objects now blocking his view, he could see across the room to a bed in the far corner.", "\n\nIn the dimness he could make out two men on the bed, both naked and locked together in embrace. ", "One was on all fours, the other mounted behind futtering his companion with great gusto. ", "At that moment the receiving partner jerked up his head in response to a particularly hard thrust and let out a sonorous moan, which joined in counterpoint with that made by his antagonist.", "\n\nThe awful duet nearly terrified Hari into bolting for the door, but he was stopped by the sudden recognition of the undermost of the duo. ", "It was none other than Amul the advisor. ", "The face of the advisor's assailant he could not see, it being hidden in the darkness.", "\n\nThe idiot! ", "He was supposed to intercept your mortal man and convey him to the rajah for keen-bladed justice.", "\n\nIt seems that the long wait allowed him to become distracted. ", "Your move is wasted, again, Ravana.", "\n\nWere it my move, I would see him futtered by the deepest thrust of a spear! ", "How could the imbecile allow his passion to ruin such an opportunity?", "\n\nI am sure I do not know. ", "Perhaps he reminds me of you.", "\n\nRegaining his composure, Hari crept to the door and slowly turned the door handle. ", "The door clicked open and he slipped into the corridor. ", "Apparently he had not been seen. ", "He found a stairway and in a few minutes was safely back in his own room. ", "He plopped down on the bed and immediately sank into a deep slumber. ", "Unfortunately insufficient night remained to give him as much rest as he craved. ", "One thing he knew: it would be some time before he again desired the amorous company of a woman.", "\n\nThe next morning the rajah requested Hari's company at breakfast, which was served out of doors in the garden. ", "Sukunya soon joined them.", "\n\n\"Ah, Sukunya child,\" said the rajah, \"how bright and shiny you are this morning. ", "The warmth of your smile shames Surya, the sun god. ", "But Surya was on time for breakfast. ", "And where are your two sisters? ", "Will they be joining us?\"", "\n\n\"No, Father, Saras and Suseela are not here. ", "Last evening after dinner they decided to ride to the lake palace for a moonlight sail. ", "They said they would spend the night there.\"", "\n\nIn fact, she persuaded them. ", "What passion that child possesses!", "\n\n\"Well, why did you not go too?\" ", "asked the rajah. \"", "It was a beautiful evening for sailing, and that was surely better diversion than what was offered here.\"", "\n\nSukunya smiled as if not necessarily agreeing with that. \"", "I was a little tired and retired early to my quarters. ", "My sisters are always so full of energy, it is difficult to keep up with them. ", "Perhaps it is because I am the oldest—old and weary—and tire more easily.\"", "\n\n\"Hah! ", "Yes, child, that is so, you were the first born—older by all of five minutes. ", "And such an old lady needs her rest.\"", "\n\n\"Oh Father, you always make joke at me. ", "Besides, by remaining at home alone last night I had the opportunity to visit my sisters' rooms and try on their gowns and test their beds—I was sure they would not mind. ", "You make me wear red all the time, so I wanted to see how it would be to wear white and green for a change.\"", "\n\n\"And did the new colors open up any new worlds for you, daughter? ", "Beware of vanity, for it shrinketh the soul.\"", "\n\n\"Oh, I found the experience most rewarding. ", "One's pleasures when tripled are indeed thrice the pleasures of the one.\" ", "She darted a sidelong glance, smiling mischievously. \"", "Would you not agree, Hari?\"", "\n\nHari gulped and tried not to choke on the papaya he was eating. \"", "A—a mathematical truth, O Sukunya. ", "I—I can not disagree.\"", "\n\nShe smiled brilliantly at him, perhaps about to make some seemingly innocent yet painfully pertinent remark. ", "But at that moment Amul appeared and the conversation drifted to other matters, to Hari's great relief.", "\n\nIt had been Sukunya alone who had seduced him the previous night, Hari now realized. ", "He was amazed and could not help but admire her cleverness. ", "But how, he wondered, had she been able to slip so quickly from one room to another? ", "Then he remembered the delays he had encountered in the hallway before each door, and he smiled to himself. ", "She surely had alternate routes to her sisters' rooms. ", "Here was indeed a kindred spirit!", "\n\nThat afternoon he was called into private audience with the rajah where he learned about the contents of the zamindar's message. ", "It seems that at the time of the zamindar's most recent visit with the rajah, the rajah had expressed concern about the camping of Madreshian soldiers on his northern border and whether it might have military implications. ", "The zamindar, having been impressed with Hari's cleverness, had recommended in his message that the rajah consider making use of the young Brahmin's talents by sending him as a spy to the city of the Rana of Madresh.", "\n\n\"It is only because the zamindar thinks well of you that he proposes I send you to Madresh to be my eyes and ears,\" said the rajah. \"", "I share his estimation of your abilities and believe his idea is a sound one. ", "But the venture is not without danger, so you must decide for yourself. ", "Whatever your decision, I will accept it gladly and without reservation.\"", "\n\n\"O Rajah,\" replied Hari, \"I am honored that you think me worthy of so important an assignment. ", "I accept most willingly.\" ", "For one thing, it now seemed that he would get more rest on the road than in the rajah's palace, considering the ruthless cleverness of the rajah's passionate daughter. ", "The odd thing, he now realized, was that yesterday by day she had shown no sign of such interest. ", "Truly the ways of women were beyond the ken of men.", "\n\nHe is learning.", "\n\nSo am I.\n\n\"You have my gratitude, Hari. ", "Speak to no one about this, nor will I. And though I will miss you, it will be best if you depart soon. ", "Try to get close to the court of the rana if you can. ", "I will look for your return before the rising of the second new moon. ", "An unpretentious horse will be provided to take you as far as the border. ", "Here is a map of both states. ", "Study it well, and take note of the black area, here. ", "That is the Land of Peril. ", "Stay clear of it, for it is said to be peopled by demons.\"", "\n\nHari accepted the map. \"", "I shall, my lord.\"", "\n\n\"You are a brave lad. ", "Know that if the gods had given me a son, I would have wanted him to be very much like you. ", "Now you must excuse your rajah, for he must suffer to give audience to the Prince of Punt: a pompous old fool who believes that his frequent flatulencies are the echoes of the gods applauding his non sequiturs.\"", "\n\nHari retreated to the rajah's library where he studied the maps he had been given and sought out books on geography. ", "He was curious about the place the rajah had called the Land of Peril, but could find no reference to it. ", "He inquired of the rajah's librarian, an elderly wisp of a man with knowing eyes. ", "The librarian nodded, and from a locked case withdrew a looseleaf manuscript, which he handed to Hari.", "\n\nThe manuscript was the handwritten diary of an explorer, and told of the author's passage through the Land of Peril and of the terrors within. ", "The region overlapped the borders of Madra and Madresh states and was surrounded by unscalable mountains. ", "Only one means of entry was known, through a narrow pass called Yama's Cut, at the northeastern corner of Madra.", "\n\nThe explorer told of the dreadful Asura who lived beneath terrible twin moons and whose breath hung in a deadly mist over Yama's Cut. ", "By day he was attacked by whirling stone- and flame-demons, and at night by giant sky-demons. ", "Most horrible was the grotesque cloud monster who hovered above Demon Knoll, a hill that must be crossed in order to pass through the fearful land.", "\n\nThat evening there was no summons from any source. ", "Apparently Sukunya required an interval of recuperation also. ", "That was a blessing. ", "An interlude with her would ordinarily have been delightful, were she not the rajah's precious daughter and were she not so enduringly passionate. ", "As it was, she was too much for him, somewhat in the manner of the zamindar's wife.", "\n\nPerhaps I nudged her too strongly, as I did Meena; I must try to touch the women only as much as is required to do the job.", "\n\nTouch yourself as hard as you wish, Mohini; I shall surely match your passion.", "\n\nThe next morning by the light of early dawn Hari bid farewell to the rajah and departed the great city of Pitali, leaving it to his host to explain his leavetaking. ", "The rajah would say that wanderlust had beckoned the young traveler, and in that there would be truth.", "\n 7\n\n* * *\n\nThe Rana and the Rani\n\nHari's path led him through the hills of Uma into Madra's northern forest. ", "Legend told of a secret grove within the forest where trees shed their leaves each morning only to magically regain them again each evening. ", "As a child his grandmother had told him stories of these wonderful trees—the Grand Maharanis, she called them, because they adorned themselves in rich garments each day, much as would a queen.", "\n\nThe forest was friendly and bright, sprinkled with sunlight, though the going was slow. ", "His horse, a lazy old nag, had a will of its own and stopped frequently to nibble at delicacies growing beside the path. ", "Hari tolerated the delays, knowing the futility of trying to reform a creature so late in years. ", "Besides, who could tell? ", "The horse might have been a king in a prior life, or might become one in a later.", "\n\nAt a bend in the trail Hari came upon two sadhus sitting on a rock engaged in heated debate. ", "He dismounted with the intention of seeking direction from the mendicants, but they were so deeply enmeshed in controversy that they did not notice him. ", "He waited patiently for a break in the discussion.", "\n\nThey were arguing the perennial question—the nature of man and woman, and which was the superior sex. ", "Said the one sadhu, a frail stalk of a man, \"The female is clearly superior, for she is the source of all life, the great river and creator. ", "By her cleverness and subtle ways she instructs and guides the male, and so directs the affairs of household and state alike. ", "Just as she nurses and cares for the child, so she is the milk of life. ", "It is from her breast that all good things flow.\"", "\n\nThere is a wise man.", "\n\n\"Phoo!\" ", "countered the second sadhu, who was even bonier than his fellow. \"", "Is it not true that the supreme gods are male? ", "Are not kings men? ", "What could be clearer proof that the male is the greater?\"", "\n\nAn excellent refutation.", "\n\n\"Bah!\" ", "the first sadhu replied. \"", "We are not talking of gods, but of mortals. ", "If men push their faces forward and appear to take control, it is because women permit it. ", "Being wiser, the female uses the male as shield and target. ", "Thus do women control from behind and protect themselves.\"", "\n\nHow fortunate that mortal men do not listen to such truths; there would be mischief if they recognized reality.", "\n\n\"We can not ignore the gods in this question,\" insisted the second sadhu, raising his forefinger to the heavens. \"", "It was a god who created man and woman. ", "The Great Book says that Twashtri, the Divine Architect, created man first. ", "He decided to create woman only as an afterthought. ", "He found that he had used up all his materials and so had to fashion her out of odds and ends. ", "So he took the tapering of the elephant's trunk, the clinging of vines, the clustering of bees, the fickleness of the wind, the timidity of the hare, the vanity of the peacock, the hardness of stone, the cruelty of the tiger, the coldness of snow, the chattering of jays, the hypocrisy of the snake, and he combined these things to make woman and gave her to man.\"", "\n\nAnd a sorry gift it was.", "\n\nThen what is your interest in me, foul spirit? ", "Perhaps you should give up this foolishness and seek some bold ugly freak of a monster like yourself for your romantic notions.", "\n\n\"Ah,\" fairly sang the first sadhu, \"but Twashtri also used other things—the slenderness of the reed, the bloom of flowers, the glances of deer, the gaiety of sunbeams, the softness of down, the sweetness of clover, the warmth of fire, the fidelity of doves, the wisdom of the owl, and the cleverness of the fox.\"", "\n\nHow well he describes you, Mohini! ", "I tolerate your dainty feminine faults for the sake of your intriguing aspects.", "\n\nI, having more discretion, do not care to tolerate your enormous masculine faults for the sake of your boring aspects.", "\n\n\"But it is the evil and cruelty that dominates in woman,\" interjected the second sadhu. \"", "Did not your own wife cast you out of your home, O foolish one? ", "Did you learn nothing from that?\"", "\n\nThe defender of your gender has lost the debate, as was inevitable.", "\n\nHe is merely a dull mortal man. ", "Had bright mortal women pursued the discussion, it would have been another matter.", "\n\nCan we at least agree that it is time to give a neutral nudge to your own dull mortal man?", "\n\nAgreed, in the interest of accomplishing something.", "\n\nAt those words the first sadhu turned red and was about to deliver a blow to the head of his companion, when Hari politely intervened by bowing low before them such that his body came between theirs. ", "His temerity surprised him; he had acted before he thought of any likely consequence.", "\n\n\"Pray forgive my intrusion, O Gurujis,\" he said, \"I am a traveler new to these parts and wonder if you can direct me to the fabled grove of trees which is said to be hidden somewhere within this forest.\"", "\n\nThe sadhus looked at Hari in astonishment. ", "Embarrassed to have been caught in a heated argument, for such was not the image that kept food in their bellies, they immediately strove to put their best foot forward. ", "As if by magic, their demeanors transformed into the epitome of tranquility, wisdom, and poverty.", "\n\n\"Yes, O Brahmin,\" said the first sadhu, solemnly. \"", "We can help you. ", "You are most fortunate to have encountered us, for not many know the secret place of which you speak. ", "You need but continue for a brief while on this path until you reach a place where the fragrance of honeysuckle is strong. ", "Then follow the scent and it will lead you to the grove.\"", "\n\n\"I thank you,\" said Hari as he bowed again, deftly depositing a coin in the sadhu's open hand. ", "As he rode off, he could hear their voices rising again in angry debate.", "\n\nHe had not traveled far when the fragrance of honeysuckle reached him. ", "It became stronger as he progressed. ", "At the spot where the smell seemed strongest, he left the path and followed the invisible trail of sweetness into the forest. ", "Soon he reached a large circular clearing. ", "Surrounding the clearing was a ring of tall gaunt trees, completely naked of leaves, and clustered at the center of the clearing was a dense grove of giant honeysuckle bushes covered with brightly colored flowers.", "\n\nHe started across the clearing, but then stopped, startled by a movement in the grove. ", "The honeysuckle bushes began to quiver as if alive. ", "Thousands upon thousands of the blossoms shivered and shimmered such that the whole grove pulsated in waves of colors.", "\n\nUpon moving closer he saw the cause of the display: the bushes were smothered in a sea of butterflies, millions of fluttering butterflies of every conceivable hue—a sight so incredible and breathtaking that tears came to his eyes. ", "Never had he dreamed there could be so many butterflies in the world. ", "How small is man, he thought, and how great the mystery and majesty of nature.", "\n\nLong he watched the shimmering panoply in fascination. ", "Unnoticed, the sun arched over the forest and slipped beyond the rim of trees, announcing in red-orange tones the coming of evening.", "\n\nOf a sudden the grove exploded in a burst of fragmenting colors as the butterflies rose into the air as one, as though at some magic signal. ", "They rose straight up in a variegated tremolo, forming into a giant rotating funnel, rising ever higher. ", "Suddenly they dispersed in all directions. ", "The air was dense with bobbing and fluttering wings, which glittered in the waning sunlight as they flew to the edges of the clearing and settled in the branches of the surrounding trees. ", "Soon the naked branches were crowded with row upon row of the tiny creatures, their wings pulsating and twitching, forming a garment of living color. ", "As darkness settled, all motion ceased, and in the quiet of the dwindling twilight Hari made silent prayer to the All-God for the magnificence of His earthly creations.", "\n\nAll that this nearly perfect scene is lacking is a gentle woman to soothe his brow and slake his recovering groin.", "\n\nAgain we agree. ", "He may think himself alone, but we have each other's company. ", "If you should desire to soothe my brow and slake my urgent need—\n\nI prefer to be elsewhere. ", "But you are welcome to proceed to your satisfactions without me.", "\n\nTruly it has been said that the female of the species was invented to torment the male.", "\n\nHari slept the night on a carpet of grass within the clearing by a small fire he had built to keep away any curious beasts. ", "He allowed his hobbled horse to graze contentedly in the clearing, for the grass was lush and there was a small stream nearby to abate the animal's thirst.", "\n\nAt dawn he awoke to the music of singing birds. ", "As the first rays of sunlight beamed into the clearing, the circle of trees came alive, first with the slow flickering of wings trying out the new day, then with a rush of motion as row upon row of butterflies peeled off the branches like a trained troupe of aerobatic dancers. ", "They playfully flitted and chased each other in spiraling circles before descending in a cloud on the honeysuckle grove for another day's feasting on sweet nectar.", "\n\nBut one butterfly collided with another and suffered an injury. ", "It spun out of control and landed in the grass.", "\n\nHari spied it, and went to pick it up carefully and hold it in his hand. ", "It was a beautiful iridescent little thing, but clearly suffering. \"", "O lovely creature, what am I to do with you?\" ", "he exclaimed, saddened to see it in such state.", "\n\nI must heal that pretty lady butterfly.", "\n\nIf you do, you have expended your move, for its life has interacted with that of the mortal man.", "\n\nThat is not fair! ", "I am not causing a seduction or guarding his life.", "\n\nBut if you heal it, you are affecting his life, for he is saddened by its plight. ", "Our agreement does not specify how the mortal man's life is affected, only that the intervention of one of us in a way that affects him counts as a move. ", "Unless we agree otherwise—as I do not in this instance.", "\n\nAnd you presume I would be fool enough to yield my move, at the risk of losing our contest, for the sake of a passing insect?", "\n\nThis is what I presume, you charming beautiful spirit.", "\n\nWell, you are correct, you disgusting insensitive lout. ", "I will heal that butterfly, and gladden the mortal man's soul. ", "But you must agree to this: your own next move is limited to the realm of the animals, as mine has been.", "\n\nAs you wish. ", "I can do much with a male animal.", "\n\nI am sure you can. ", "Perhaps you should find yourself a good rutting bull and indulge yourself endlessly.", "\n\nYour wit is less delightful than your appearance.", "\n\nThe butterfly shook its wings, and lo, the damaged wing unkinked and became straight. ", "It had, it seemed, not been broken, merely bent, and was better now. ", "The butterfly flew out of Hari's hand and went to join its fellows among the honeysuckles. \"", "O delightful beauty, how you have gladdened my heart!\" ", "Hari exclaimed.", "\n\nThank you.", "\n\nAs Hari rode out of the clearing, he passed beneath the now drab and naked trees that guarded the grove. ", "How sad they seemed—perhaps because they had lost their beautiful clothes. ", "Or perhaps they missed their happy playful friends. ", "Yes, a home without the bustle of life was indeed a sad place, he thought.", "\n\nThe forest was soon left behind, and by midday he could see the towers of a fort in the distance, a sign that he must be nearing the state border. ", "He released the horse and laughed to see it gallop off toward home at a pace faster than any he had been able to entice from it. ", "To avoid the fort and the border guards, he turned east into some low hills, then gradually circled north. ", "He could see a gathering of tents beyond the fort, which he guessed was the Madreshian camp the rajah had spoken of. ", "Soon he came to a road beyond the border leading northward, and he set his foot upon it with a light and eager heart.", "\n\nAs he passed through village, field, and wood, he saw that the country was rich and bountiful and the people content. ", "There were no signs of unrest that would require the presence of troops, nor any apparent reason why the people would look with envy or desire upon the neighboring land of Madra.", "\n\nHe spent the night in a grassy field, and by midmorning the next day traffic on the road began to increase. ", "A flock of birds flew by and he knew by their size, speed, and the way they flapped their wings that they were homing pigeons, probably in a race. ", "He had had a few racing pigeons himself in his younger years, and had enjoyed racing them against the birds of other boys in the village.", "\n\nNow comes my turn with a creature of the animal realm. ", "Observe the way of a male with a female.", "\n\nAs the flock flew by, a hawk suddenly appeared and swooped down on the foremost pigeon, knocking it from the sky. ", "The bird fell into a nearby clump of brush, and Hari quickly ran to the spot and retrieved it before the hawk could descend to claim its prey. ", "The circling hawk screeched in anger at having been robbed of its meal.", "\n\nHari's fingers searched through the bird's feathers but could find no injury. ", "Perhaps it had only been stunned. ", "The bird was sleek and well muscled, clearly of high quality, and was banded. ", "Hari carefully tucked the pigeon in his knapsack, hoping it would eventually revive.", "\n\nWhat have you accomplished? ", "The mortal man, instead of being dismayed by the pigeon's plight, elected to save it.", "\n\nBe patient, you delectable trifle; there is some subtlety here.", "\n\nSubtlety, you odorous organism? ", "That I must observe before I believe.", "\n\nThe outline of buildings appeared on the horizon, and Hari knew his journey was nearing its end. ", "At the city gates he was stopped by guards and searched, as were all incoming travelers. ", "One of the guards found the pigeon in his knapsack and hailed two other guards, telling them to place \"the Brahmin thief\" under arrest. ", "Without being given the opportunity to ask questions, he was roughly marched through the city streets to the gate of an imposing multiturreted structure, which Hari knew could only be the palace of the rana. ", "There he was turned over to another guard who marched him through the park-like grounds and into the palace, and thence into an audience chamber where he was told to wait.", "\n\nThief? ", "What confusion is this?", "\n\nThe natural confusion of arrogant servitors. ", "Your mortal man is doomed.", "\n\nNot long after, a door opened at the far end of the room and a guard called out: \"Make way for the Lord Chandra, Rana of Madresh!\"", "\n\nHari watched in silence as the rana entered the chamber followed by a dewan. ", "The king was slight, slow of step, and bent, and wore an opulent white beard that peaked on either side of his wrinkled but kindly face. ", "Befitting his station, he was adorned in a red embroidered robe edged in lace and dotted with pearls, and on his head he wore a silk turban bound with a golden circlet encrusted with rubies. ", "The dewan, in contrast, was tall, young, and not unhandsome, with stern eyes and a humorless mouth. ", "Adorned solely in black without ornamentation, his expression was one of self-assurance, almost arrogance.", "\n\nHari was pushed forward and ordered to kneel before the rana, which he did in a manner that gave notice of his caste and upbringing. ", "The king, seated upon a raised pavonine divan, gazed intently at the prisoner before him. ", "The guard spoke.", "\n\n\"Lord, this is the thief we found with the rana's pigeon, which still wears the royal band. ", "But the bird is dead.\" ", "The guard handed the pigeon to the king.", "\n\n\"Tell me what happened, young man,\" asked the rana in a wavering voice. ", "Hari then explained how he had rescued the bird from the hawk, and of his intention to release it once it revived.", "\n\n\"But the bird is dead,\" said the rana sadly. \"", "Vega, my favorite hen, the fastest in my lofts—a champion who won many a race for her master. ", "Tell me, what position was she in the race when you saw her?\"", "\n\n\"She was well in front of the others, Lord.\"", "\n\n\"I knew it! ", "A winner to the end. ", "Ah, I shall miss this noble bird.\"", "\n\n\"Lord, if I may speak. ", "I, too, once raced pigeons and know something of their ills. ", "May I examine it a moment?\"", "\n\nThe rana consented, and the guard took the bird and handed it to Hari. ", "Hari knew from experience that sometimes a pigeon could be revived by gently massaging its breasts and blowing into its mouth. ", "This he did, and in a few moments the pigeon regained consciousness and began struggling to be released. ", "Hari let it go and it flew twice round the chamber and then out an open portal high in the wall, heading for its loft.", "\n\nYou touched the bird to make it live again. ", "Now it is my turn.", "\n\nYour turn, O ill-omened one. ", "But limit yourself to the animal realm, as I did.", "\n\n\"Oh, wonderful, young man!\" ", "exclaimed the rana. \"", "My thanks to you for twice saving my favorite bird. ", "I can see that you are an experienced handler. ", "But tell me who you are and what brings you to my city.\"", "\n\n\"I am Hari, Lord, a wandering student in search of knowledge who heard of the rana's fair city and would see it with my own eyes.\"", "\n\n\"And that you shall,\" said the rana, \"as my guest. ", "We will talk more about pigeons and I will show you the royal lofts. ", "But now you will want a rest and change of clothes. ", "Dewan Koti will find some comfortable quarters for you and see that you are well cared for.\"", "\n\nThe dewan made a shallow bow and led Hari to the second floor of the palace where he turned him over to a servant, who in turn ushered him into a colorfully decorated though not opulent room overlooking the city. ", "As he surveyed his new surroundings, Hari wondered at the unexpected turn of events and gave silent thanks to Lakshmi for yet traveling with him.", "\n\nIn the afternoon the rana showed his guest the royal pigeon lofts. ", "Besides racing homers, Hari saw many exotic breeds he had never seen before. ", "There were damascenes from the Middle East sporting white-frosted feathers and black wing-bars; crested frillbacks from Asia Minor, their backs and wings covered with tight feathery curls; sleek helmets from Persia with colored pates that gave them the look of Christian monks; pouters from the East, tall and stately, strutting about like so many sergeant-majors; trumpeters from Turkestan, their proud faces encircled by large rose-crests; and graceful fantails, with backward-bending necks and spread ribbon tails, prancing about like court ladies.", "\n\nThe rana pointed out his favorite birds, identifying each by name and detailing its lineage. ", "He spoke glowingly of the noble character of pigeons, of their habits of fidelity and mating for life, their love of home and family, and their ways of settling territorial disputes without bloodshed. ", "Hari was moved by the old king's words, which did not sound like those of an aggressor or expansionist.", "\n\nAt the homer loft the rana pointed out Vega, the pigeon that Hari had saved.", "\n\n\"Was the race that Vega was flying a long one?\" ", "asked Hari.", "\n\n\"The release was at the border,\" replied the rana, \"so it was less than a half-day's flight. ", "Of late I have been sending all my racers to the border for release.\"", "\n\n\"And how do you determine their speed, Lord?\"", "\n\n\"The birds are delivered to my general at the border camp with instructions to release them precisely at dawn the following day. ", "The time of arrival home is noted for each bird, and the speed in leagues per hour is then calculated. ", "But the speed has been slow in recent weeks, and I am wondering if that accursed general is letting the birds go promptly at sunup.\"", "\n\n\"Lord, if you wish I will accompany the birds when next they are sent to their place of deployment and see to their proper release.\"", "\n\n\"Ah! ", "Will you do that, my boy? ", "Wonderful! ", "You know pigeons, and I can be sure it will be done right. ", "My dewan, Koti, is in charge of military matters. ", "I will inform him that you will accompany the next shipment of pigeons to the border camp. ", "Now come, let us release the rollers and watch them perform their sky tricks. ", "Then we will dine and I will introduce you to the rani.\"", "\n\nDinner was served in a parlor decorated in purple, canopied by an arched ceiling intricately carved in ivory. ", "Hari was surprised at the rani's youth and beauty, a beauty more of the earth than the heavens, he thought. ", "Koti, the dewan, was also present.", "\n\n\"My dear,\" said the rana to his wife, \"Hari here is an expert on pigeons and has generously offered to take charge of the next release of my homers at the border.\"", "\n\n\"We are in your debt, Hari,\" said the rani with a smile that seemed practiced rather than genuine. \"", "I hope there will be no difficulty. ", "I understand there has been some trouble around the border of late—Madran rebels harassing travelers.\"", "\n\n\"There is no need to worry,\" said Koti. \"", "We have a contingent of soldiers stationed there to keep the peace.\"", "\n\nThe rana wrinkled his brow. \"", "Is that wise, Koti? ", "It might be taken as a threat by our neighbor, the rajah. ", "Perhaps the border contingent should be recalled.\"", "\n\n\"But surely we need some soldiers there to discourage further disturbances, my husband,\" said the rani.", "\n\n\"Indeed, we do,\" added Koti. \"", "And the border camp is an ideal place to release my lord's pigeons, it is not?\"", "\n\n\"Ah, that is true,\" conceded the rana. \"", "Very well, I leave military matters in your hands, Koti. ", "And the rani seems to agree. ", "Tell me, when is the next shipment of supplies going to the border?\"", "\n\n\"Two days hence, Lord.\"", "\n\n\"Good. ", "My pigeons and their new handler will be ready.\"", "\n\nA servant entered the room carrying a glass of green liquid, which was set before the rana. ", "The rana grimaced. \"", "Not that vile stuff again.\"", "\n\n\"You must drink the potion, my husband,\" coaxed the rani. \"", "You know it helps you sleep.\"", "\n\nThis situation grows more interesting.", "\n\nBut this sword is double-edged.", "\n\n\"Better I not sleep,\" said the rana. \"", "Then I would not have the same nightmare every night. ", "Cursed be that assassin! ", "Though he failed to murder me in my bed, he yet plagues my sleep and poisons my dreams. ", "I pray each night to Lakshmi to reveal him to me that I may dispatch him before I lose my sanity. ", "Each night in my dream he stands over me like a spectre, his face hidden in hooded cowl, and then he strikes—\"\n\nThe rana clutched his chest and turned pale with terror, and only gradually regained his composure.", "\n\n\"Do not excite yourself, my husband,\" urged the rani, soothingly, as she held the potion to the rana's lips. ", "He sighed and drank without further complaint.", "\n\nShe deceives him without effort.", "\n\nDeception comes naturally to the female of the species.", "\n\nThe next morning Hari walked about the city on his own, having refused the offer of an escort, and was much impressed by its beauty and prosperity. ", "In the afternoon he watched the loading of military supplies onto horse-drawn carts in preparation for the trip to the border camp. ", "Koti himself was to lead the caravan. ", "The pigeon cages were loaded onto separate carts, each cage facing outward since the rana believed the birds would become better oriented if they could see landmarks along the way.", "\n\nThe caravan left at dawn. ", "Hari rode on one of the pigeon carts to keep an eye on the birds. ", "The journey was bumpy but uneventful, and the caravan arrived at the border camp at twilight. ", "The carts were promptly unloaded, supplies in one tent and the pigeons in another. ", "Hari placed fresh water and grain in each birdcage, and by the time the task was completed it was late. ", "Tired from the long and uncomfortable journey, he flopped down on a cot next to the pigeons' cages and promptly fell asleep.", "\n\nNow for another animal ploy.", "\n\nIn the night he was suddenly awakened by a pinching sensation on his right arm, only to discover that he had bedded down in the path of an army of ants who were using his body as a bridge. ", "He brushed them to the ground, being careful not to injure any, and moved the cot to the opposite side of the tent.", "\n\nFrom his new location he could hear voices coming from the supply tent nearby. ", "Two men were conversing. ", "One voice he recognized as that of Koti, the dewan, who was speaking.", "\n\n\"I tell you, General, the old fool has no idea that it was I who tried to kill him. ", "My head was covered and he could not see my face. ", "Next time I will not fail.\"", "\n\n\"And what of the rani? ", "She may be your lover, Dewan, but can you trust her?\"", "\n\n\"Yes, unquestionably. ", "She approves of our plan. ", "Kamala is ambitious and would rule over both Madra and Madresh—as my wife. ", "Soon, my general, your army will be the mightiest on the continent. ", "As soon as the rana is killed, I will dispatch a message to you, and you must attack Madra at once. ", "Surprise will be on our side, and if all goes as planned the city of Pitali will be ours before the rising of the next full moon.\"", "\n\n\"Do not be overly confident, Koti. ", "The rajah's head does not yet rest on the tip of my lance. ", "Meanwhile, we must take care not to arouse the rana's suspicion. ", "He is much loved and has the ear of the people.\"", "\n\n\"Fear not, General. ", "The ground has been carefully laid. ", "By indulging the rana's personal whims I have gradually isolated him from the people and the rulers of neighboring states. ", "He is no danger to us.\"", "\n\n\"And what of the boy you brought with you—how do you know he is not a spy?\"", "\n\n\"I think not. ", "He is a Brahmin with a head full of philosophy, nothing more.\"", "\n\n\"Just the same, it would be wise to keep an eye on him. ", "Now goodnight, Koti.\"", "\n\nWhat a devious ploy, Ravana! ", "Indeed you are capable of brute subtlety. ", "But I shall find a way to abate it.", "\n\nIt will be a pleasure to watch you try.", "\n\nAll became quiet. ", "Hari's heart pounded and his head throbbed. ", "Koti—a traitor. ", "And the rani. ", "Should he escape now, he wondered, and carry the news to the rajah? ", "But what of the rana? ", "He could not leave the old king to be murdered. ", "He must warn him. ", "But how?", "\n\nThe pigeons! ", "He would send a message with Vega, the rana's swiftest bird.", "\n\nBefore dawn Hari arose and readied the pigeons for release. ", "He opened the front flap of the tent so they could fly clear, then passed a rope through all the cage doors so the flock would be liberated at the same time.", "\n\nThe great eye of Surya peeked over the horizon, and just as Hari was about to pull on the release rope, two strong arms grabbed him from behind. ", "A second figure appeared from behind the tent. ", "It was Koti. ", "The dewan walked slowly along the row of cages and stopped before the midmost one. ", "He smiled as his hand reached into the cage and removed a small roll of paper attached to Vega's leg band. ", "The dewan's face was expressionless as he read the message.", "\n\n\"Your suspicions were correct, General,\" he said calmly. \"", "The boy has large ears and has learned too much. ", "Perhaps he knows more, information that may be of value to us. ", "Do you have something to tell me, my young friend? ", "No? ", "Well, you will. ", "There is a palace jailor in my employ who is skilled in ways of loosening the tongue.\"", "\n\nKoti looked around. \"", "Ah, I see the sun is up—time to release the pigeons. ", "Oh, but let us not release them too hastily. ", "Alas, the rana will be so displeased when his birds arrive home even later than last time. ", "And it will be your doing, will it not, my young Brahmin? ", "Yes, it is all clear to me now. ", "Instead of releasing the birds you were trying to steal them. ", "Just think of how disappointed the rana will be when he learns of your treachery.\"", "\n\nThe false smile and calm expression departed from the dewan's face. ", "Hari read only hate and fury there now.", "\n\n\"Guards!\" ", "screamed Koti. \"", "Bind and gag this thief. ", "He returns with us to the city.\"", "\n\nThe return trip was made in haste, and by late afternoon the caravan pulled up behind the palace. ", "Hari was dragged through an unguarded rear door and down a long, narrow flight of stairs. ", "A guard then removed his bonds and threw him into a dank solitary dungeon.", "\n\nHe is of little interest at the moment. ", "Let us follow the plotters, whose deviousness is most appealing.", "\n\nAgreed: most revolting.", "\n\nKoti hastened to the rani and told her all that had occurred.", "\n\n\"You did well in capturing the spy, my love,\" she said. \"", "But I am not sure it was wise to bring him back here. ", "My overly sentimental husband might hear of his presence and decide to question him. ", "You must go to the rana and tell him that the Brahmin boy escaped across the border after trying to steal his pet bird. ", "Leave it to me to get rid of the spy. ", "I will pretend to be his friend, and even arrange his escape—through the endless caverns. ", "There he will become hopelessly lost and starve to death—a fitting end for a meddler.\"", "\n\n\"A sound plan,\" said Koti, slightly unnerved by the rani's cold-bloodedness. \"", "When will you do the deed?\"", "\n\n\"This very night. ", "And surely the time has come for you to fulfill your destiny, my love. ", "One thrust of the dagger and a kingdom will be ours. ", "And that will be only the beginning!\"", "\n\nNow will you conceive in her a sudden genuine passion for the prisoner? ", "I think her nature is too jaded to be subject to that, for she loves power more than sex.", "\n\nTrue. ", "I shall abide my time. ", "But if she seduces him, it still counts.", "\n\nYou stretch the definitions until their very fabric threatens to tear asunder! ", "But I will allow it, for he will nevertheless die soon enough.", "\n\nHari sat huddled on the stone floor of the dungeon, his head cradled in his arms, and so did not hear the door bolt slide back or the cell door swing quietly open. ", "As in a dream, a voice spoke to him, calling his name. ", "He looked up to see a veiled woman in the open door-way signaling for him to follow her. ", "He obeyed without hesitation.", "\n\nHe was led through a maze of dimly lit corridors, up a winding stairway, and into a dark room somewhere in the upper reaches of the palace. ", "An oil lamp flickered and brightened, and he saw he was in a large and splendid apartment. ", "The mysterious woman removed her veil, and Hari saw that his rescuer was none other than the rani. ", "He bowed low before her in gratitude and wondered if she was really an ally of Koti after all.", "\n\n\"No need for formalities,\" she said in melodious voice. \"", "These are my private rooms, so please be at ease. ", "Come, let us sit down together. ", "Among friends I am called Kamala.\"", "\n\nHari was not at all sure that she was his friend, but this certainly seemed better than the dungeon cell, so he acquiesced.", "\n\n\"It saddened me when I learned of your imprisonment, Hari,\" she continued. \"", "I do not believe you are guilty of any serious wrongdoing, but Koti does, so you are in grave danger. ", "If you have any secret information of a political or military nature you must reveal it to me now, and I will try to help you.\"", "\n\n\"I would gladly, O Rani, but in truth I have none to reveal.\"", "\n\n\"Well, I believe you, Hari. ", "I will help you in any case. ", "You must escape this very night lest Koti have you tortured or killed on the morrow. ", "I know of an escape route through some hidden caverns nearby. ", "Once through the caverns you will emerge at a place not far from the southern border.\"", "\n\n\"I am most grateful to you, O Rani. ", "You have given me back my life which is yours but to command.\" ", "But he was not sure why she had decided to help him.", "\n\nAre you going to instill her passion now?", "\n\nNo need. ", "She already has passion of the flesh, if not of the heart.", "\n\n\"Hmm. ", "Well then, might you be willing to repay that debt here and now?\"", "\n\n\"Yes, gladly, if it be within my power.\"", "\n\n\"Oh, it is that, for it is with your gift of youth and beauty that you may recompense me. ", "Come, O Hari.\"", "\n\nThe rani took Hari by the hand and led him into her bedroom. ", "Realizing what was expected of him and taking his obligation to heart, being somewhat recovered from his recent depletion, he proceeded to discharge his debt with skill and alacrity. ", "Its sum diminished with increasing rapidity, if it was to be measured by the rani's frequent moans of pleasure.", "\n\nIn the next room the rana slept fitfully, tossing and turning in his bed, his face contorted with fear. ", "He was having the same terrible nightmare that plagued him nightly, ever since the unknown assassin had tried to stab him in his bed. ", "He had again prayed to the goddess Lakshmi, as he did each day, imploring her to reveal the identity of the attacker, but the goddess was ever silent. ", "He was now on the verge of wakefulness, having developed a tolerance for the drafts of sleeping potion the rani gave him.", "\n\nThe rani pulled in her breath as the moment of supreme delight assailed her, and she could not help but cry out in her uncontrolled ecstasy. ", "And whose name would it be most natural for her to call out in her moment of rapture than that of her habitual lover?", "\n\n\"Koti!\" ", "she cried. \"", "Oh, Koti!\"", "\n\nThe rana's eyes snapped open as a voice came to him out of the darkness. \"", "Koti!\" ", "it said.", "\n\nI did not touch her.", "\n\nGranted. ", "I was watching closely. ", "But it matters not; your naive mortal man still will die.", "\n\nThe old king's breath caught and his brain churned. ", "The goddess had spoken to him! ", "The culprit was none other than Koti. ", "Koti! ", "Koti the ambitious. ", "Koti the envious. ", "Koti the plotter. ", "Yes, of course. ", "How could he have been so blind not to have seen it before?", "\n\nHaving extracted a usurious rate of interest on a fictitious debt, the rani, fully satisfied, summoned her personal maidservant and instructed her to take Hari by a secret way to the entrance of the hidden caverns. ", "Hari made obeisance to the rani and departed.", "\n\nAt the cavern entrance the servant gave Hari the oil lamp she carried, saying he would need it in the darkness of the caves. ", "He smiled and thanked her, and was puzzled at the tear that trickled down her cheek.", "\n 8\n\n* * *\n\nThe Endless Caverns\n\nIn the perennial darkness beneath the earth, time was its own master. ", "No longer under the watchful discipline of sun, moon, and stars, or subject to the control and measurement of human contrivance, time fluxed and flowed, condensed and stretched in strange ways. ", "To one caught in the fickle clutches of the time god, in the aberrations of his secret courses, minutes and hours, night and day, and the many feeble ways mortals measured the tempo of their lives had little meaning.", "\n\nHari wandered from cavern to cavern, how long he did not know. ", "The air became stale and his footsteps hollow and distant. ", "Strange obstructions appeared in his path—monolithic rock formations shaped like prehistoric beasts, and great stone icicles growing out of the cave floor.", "\n\nAs he passed through a large cavern, a slow dripping sound reached his ears and he followed it to a clear pool of water. ", "He set the lamp he carried down at the pool's edge and leaned over to drink. ", "As his lips were about to touch the water, a school of small white fish swam by inches from his face. ", "His heart lightened to find life in such a forsaken place. ", "He watched the tiny creatures swim about in endless circles, seemingly content in their isolated world beneath the earth. ", "He saw too that they had no eyes and marveled at the efficiency of nature for withholding from her children what they did not need in their darkened universe.", "\n\nDespite his hunger and thirst, his vegetarian ways forbade his eating any of the fish or drinking from their pool, so he contented himself with the water he caught in his cupped hands as it dripped from the cavern ceiling.", "\n\nThe oil lamp suddenly flickered out, its fuel exhausted, and lo! ", "the cavern was illuminated in its own light. ", "A luminous blue glow emitted by the rock itself filled the stony chamber. ", "He wondered at the eerie majesty of the vast cavern: such might be the subterranean domain of the Narakasura, king of the netherworld, he thought.", "\n\nThe walls of the great gallery arched upward into the dimness, draped in folding tapestries of stone. ", "Glittering buttresses cut across dark overhanging cliffs, rudely disturbing the vertical symmetry. ", "In the center of the cavern a massive column rose up to the ceiling where it blossomed out into a glistening amphitheater, from which hung stone spears of white, purple, and amber. ", "Rimming the walls were feathery chalk-like ferns, fragile fans and stone flowers, broad shields and veils.", "\n\nHari continued on through the caverns, whistling to keep up his spirits, the echoes reverberating in a chorus of many voices. ", "From time to time he scraped an arrow into the floor to mark his way, and when twice he came upon the same marking he knew he was lost.", "\n\nPassing through a narrow corridor, he tripped and fell, only to discover he had fallen over a human skeleton. ", "The skull-face stared blankly at him, transfixing his gaze, and as he searched its empty eyes, as though awaiting a message, the lipless jaws moved. ", "He jumped back only to see a white eyeless salamander crawl from beneath the rotted teeth. ", "It scurried a few feet to a nearby wall and stopped. ", "There on the wall, Hari saw, was some writing scratched into the rock: a message no doubt left by the poor soul whose skull now housed another eyeless creature.", "\n\nThe message read:\n\n> I, Anandrum, died here alone and in my prime. ", "My fate is just for my crimes were great. ", "Whoever reads this message, pray for me and thee, for neither will again behold the light of day in this lifetime.", "\n\nNow at last the fool catches on.", "\n\nYet there is one here who knows the way out.", "\n\nContinuing on with a heavy heart, he wondered if the rani was indeed a traitor and had meant to send him to his death; he intoned the primal word, Om, to give himself courage. ", "Too, he wondered if the salamander was the reincarnation of the former owner of the skull, and what terrible crimes must have been committed for a human to be reduced to such a lowly state.", "\n\nWeariness soon overcame him, and he lay down on the stone floor to rest. ", "How ironic, he thought: all his life he had sought escape from people that he might be alone with his dreams and fancies. ", "And now he was destined to die alone in this forsaken place without the comfort of another human being. ", "Instinctively, his hand reached up to the amulet which hung about his neck.", "\n\nCould the amulet save him? ", "he wondered. ", "He recalled his fearful experience with the she-demon. ", "Who or what might he conjure up this time if he spoke the name on the other side of the amulet? ", "Dare he try? ", "No, he decided. ", "He could not risk loosing some terrible creature upon the world. ", "Better he should face Yama with a noble heart.", "\n\nHis eyelids grew heavy, shutting out his fears for a time, and he fell into a peaceful sleep.", "\n\nNow do I make my move. ", "I hope that my mortal man has the wit to fathom what is necessary.", "\n\nWhen he awoke he felt refreshed, although his empty belly complained audibly. ", "A nearby pool of water, this time unpopulated, slaked his thirst and quieted his stomach. ", "It was then that a noise reached his ears—a faint echo. ", "It sounded like a person weeping.", "\n\nHe followed the sobbing sound to a large cavern with shining walls streaked with porphyry. ", "As he entered the chamber the weeping sound ceased. ", "Puzzled, he sat down on a rock and wondered if his ears had played tricks on him or if he was going mad. ", "Then he heard a sniffle, unmistakably human, and he knew he was not alone.", "\n\n\"It is said that the weight of a problem is lessened in the telling,\" he said, speaking into the emptiness. \"", "Will you not come out of hiding and share your sorrow with me?\" ", "The echoes of his voice flitted through distant chambers. ", "There was no reply. \"", "Please, will you not speak to me?\" ", "he entreated. \"", "I will not harm you. ", "Perhaps we can help one another.\"", "\n\n\"You can not help me,\" came the reply. ", "The voice was feminine and laden with sadness.", "\n\n\"Well, how can you know that?\" ", "asked Hari. \"", "Will you not show yourself that we may talk further?\"", "\n\n\"Can not the ear hear without the aid of the eye?\"", "\n\n\"But why do you hide? ", "Are you afraid?\"", "\n\n\"No, I am not afraid, and I do not hide.\"", "\n\n\"But I can not see you. ", "Are you behind a rock? ", "Please come out.\"", "\n\n\"I stand before you, but you can not see me, for I am a Bootham in Tri-Sanka Swarga—a spirit of the middle existence between death and rebirth.\"", "\n\nHari was amazed. ", "He had heard of such spirits but had never thought to encounter one.", "\n\n\"Forgive me, O Spirit,\" he said in an apologetic tone. \"", "I did not mean to disturb you, but I thought I heard someone weeping. ", "Was it you?\"", "\n\n\"Yes.\"", "\n\n\"It seems, then, that we both have reason to be troubled. ", "I am lost. ", "Pray tell me of your plight, O Spirit.\"", "\n\nThe weeping commenced again. ", "It was so heartrending that Hari could not help but feel sympathy.", "\n\n\"Please do not cry, Spirit. ", "Perhaps if you tell me what distresses you, you will feel better.\" ", "The sobbing diminished to an occasional whimper. \"", "Do you have a name? ", "Mine is Hari.\"", "\n\n\"My name is Pudmini.\"", "\n\n\"A lovely name. ", "Now, Pudmini, tell me what troubles you.\"", "\n\n\"Very well,\" the spirit replied. \"", "Not two years past I was alive and mortal and living happily in my village not far from the city of the rana. ", "I was soon to be married and was blessed in that the match was made with one whom I dearly loved. ", "His name was Arjun.", "\n\n\"In the months prior to our marriage Arjun and I would meet secretly in the fields, though we restrained ourselves from intimacy and breaking the rule of troth. ", "But our passions grew strong within us, and when on the day before our marriage vows we met one last time in the fields, we could no longer restrain our love. ", "And so we revealed our nakedness to one another and would have there consummated our love but for the interjection of cruel fate. ", "We were being spied upon, and as we kissed, cries and shouts rose up around us, and a horde of villagers surrounded us.", "\n\n\"Arjun became afraid and ran, and as the sin of love before marriage is less for the man than the woman, the villagers let him escape. ", "But a rain of stones descended upon me and did not cease until my body lay limp and lifeless in the field. ", "Thus it was I departed life before my allotted time.", "\n\n\"As it is for those whose death is premature, I became a Bootham—a spirit imprisoned in the middle existence, who must linger in this state half a lifetime more until the time comes that would have been my normal span upon the earth. ", "Only then will I escape this prison, will my soul be released and reborn into another life. ", "Such is my curse and my sorrow.\"", "\n\nHari sighed, feeling great pity for Pudmini. ", "A grave wrong had been done her. ", "Yet he knew the laws governing the cycle of life, death, and rebirth were sacred and immutable. ", "But surely the gods were not blind to injustice, he thought. ", "Perhaps there was a chink in the armor of divine law that might be pried open if the occasion merited and the need was great. ", "His eyes stared into space as he contemplated the problem.", "\n\n\"Tell me, Pudmini,\" he asked finally, \"while living as a spirit, have you ever received any supernatural message or sign of any kind?\"", "\n\n\"No, not a message. ", "But as I was passing from mortal life into spirit life, I remember hearing a voice, as if in a dream. ", "I do not know why, but I thought it was the voice of the Lord Krishna. ", "But it could not have been.\"", "\n\n\"Pudmini, tell me, what did the voice say?\"", "\n\n\"It made no sense. ", "The voice said: 'Though spirit be not flesh, so spirit flesh will be not spirit. ", "When love denied is love fulfilled by a mortal heart that is pure, so will the soul of the innocent be unbound.' ", "I have pondered those words long, and dwelt upon them much, for I have little to do here but weep and think, but their meaning escapes me.\"", "\n\nHari pondered the words. ", "What could they mean? ", "How could the flesh of a spirit who had no flesh not be a spirit? ", "That could not be possible—unless a spirit did have flesh. ", "But how could an invisible noncorporeal being have flesh?", "\n\n\"Pudmini,\" he asked, \"are you standing close to me?\"", "\n\n\"Yes, just in front of you. ", "Why do you ask?\"", "\n\n\"Please do as I ask, Pudmini, I beg of you. ", "You must trust me. ", "I am going to hold out my hand to you. ", "Please take it in your own hand.\"", "\n\n\"But—\" She seemed to shrug. \"", "Oh, very well.\" ", "Hari stretched out his hand and waited, his heart thumping. ", "Then he felt the soft touch of a hand upon his own.", "\n\n\"Pudmini, I can feel your hand!\" ", "he cried with delight. \"", "And I yours, Hari.\"", "\n\n\"Now I understand the meaning of the words you heard. ", "Surely it was a message from Krishna. ", "You see, Pudmini, you are both spirit and flesh. ", "You can not be seen, but your body can be touched and felt like that of any mortal. ", "And you can feel me in turn. ", "Pudmini, the Lord Krishna in his mercy left you a means of escape. ", "Your soul can be freed!\"", "\n\n\"Oh Hari, is it true? ", "Pray, tell me how!\" ", "Hari could feel Pudmini's hand trembling with excitement.", "\n\n\"By Krishna's own words, your soul will be released when you complete that final act of love—which you were denied and unjustly punished for as a mortal—with a mortal man who is pure of heart.\"", "\n\nHe did fathom it!", "\n\nIn that situation I would have fathomed it faster.", "\n\nBut you are not eligible, for you are neither mortal nor pure of heart.", "\n\nI have desire enough to make up for both, as I will demonstrate if you will simply hold still for the denouement.", "\n\nBut you must be accustomed to singular outcomes—or should I say climaxes. ", "Go perform a solo.", "\n\nAs the echoes of Hari's words died away, an utter stillness filled the chamber. ", "When finally Pudmini spoke, her voice was soft and hesitant.", "\n\n\"A mortal man? ", "But—but there is only you, Hari. ", "You have been kind and understanding, but I can not ask this of you. ", "I have no right.\"", "\n\n\"Oh Pudmini, you do not need to ask. ", "I want to help you. ", "But Krishna's words say that he who would free your soul must be pure of heart. ", "I do not think I qualify.\"", "\n\n\"Do not say that, Hari. ", "That is the least of my doubts. ", "Thought I have known you but a brief time, I know that your heart is pure.\"", "\n\nAs it is, for he is perpetually naïve.", "\n\n\"Well, there does seem to be a dearth of candidates. ", "But if you are willing to risk my heart's uncertain condition, I gladly offer my unworthy self to you, Pudmini. ", "You need not decide now. ", "Think on it awhile.\"", "\n\n\"There is no cause for delay, Hari. ", "Long have I suffered imprisoned within these walls. ", "My soul craves freedom. ", "You discovered the means of my salvation. ", "Now I beg you to liberate me forthwith. ", "Do this, and my heart and my gratitude will be yours forever.\"", "\n\n\"If you are truly decided,\" he said, discovering the notion to be increasingly appealing, because of the merit of the cause.", "\n\n\"I am ready, Hari.\"", "\n\nHari spread out his tunic over a smooth plateau of rock to use as a bed—the best he could do. ", "He held out both his hands and she placed her hands in his. ", "Her trembling fingers spoke of shyness and hesitation, which he understood, and he was gentle and patient with her.", "\n\nHis fingers were his eyes. ", "He ran them through her hair, thick and silken-soft, over her face, her satin-smooth skin, and high cheekbones, over her long lashes, which fluttered to the touch, over her large deepset eyes, straight narrow nose, and soft full lips that parted and shivered ever so slightly, down her slender neck and small rounded shoulders, over her firm full breasts, which rose to the touch, across her narrow waist and generous hips, and down to her trembling thighs. ", "He marveled that such beauty could be revealed by the mere touch of a hand.", "\n\nHe set his lips to hers, which ceased to tremble and answered with willingness and warmth. ", "Her breath quickened and her hands explored his body, searching out places of secret pleasure and lingering there when his body responded. ", "His hands and lips and tongue also found her secrets, and when she arched her back in a sudden shock of delight, he did not let her fall back but led her on to ever-greater heights.", "\n\nShe did not cry out as a searing sweetness filled her being; her body rose eagerly to meet its tormentor, rising and ebbing, the sweetness building, ever building, finally exploding in a spasm of joyous rapture: a brief moment of eternity suspended in time and space.", "\n\nOh, I wish I were doing that!", "\n\nI have been trying to make you play the role, ravishing nymphid.", "\n\nNot with you, hideous oaf. ", "With him.", "\n\nSomehow I had suspected that. ", "But soon enough I will win the contest, and your plaintive desires will have no relevance. ", "It is now my turn.", "\n\nAs they lay resting in one another's arms, an image came into Hari's mind, and he smiled to himself, amused. ", "He pictured himself in the act of making love to Pudmini, an invisible woman—how ridiculous he looked!", "\n\nSuddenly Pudmini pulled herself from his embrace.", "\n\n\"Hari, something is happening to me,\" she cried.", "\n\nHari leapt to his feet. ", "In the empty space before his eyes a shadowy figure appeared. ", "It gradually increased in density, darkening and solidifying, until lo! ", "standing there before him was a maiden of such startling beauty that his breath caught. ", "His eyes recognized the features that only his hands had known; but, oh, his hands had been such poor judges, he thought. ", "A sweet pain pierced his heart.", "\n\n\"Hari, it has happened!\" ", "Tears of happiness filled Pudmini's eyes. \"", "My soul is free! ", "But, oh, I can not stay. ", "Another life beckons me even now. ", "Thank you, Hari, for my release. ", "My heart is yours. ", "Perhaps we will meet again in another life. ", "Now you must save yourself. ", "Follow the trail of the amber spears of stone, and seek out nourishment in the dark corners of the caves of black rock. ", "Farewell, Hari. ", "Farewell.\"", "\n\nHari watched in joy and sadness as Pudmini faded away, the faint echoes of her voice yet lingering in distant chambers. ", "Sobs joined with the far-off echoes, and he realized they were his own.", "\n\nHe wondered what new body her soul now resided in. ", "Her soul was noble, he knew, and he chose to think of her cradled in the arms of a queen, child to a king, a princess with a destiny.", "\n\nPangs of hunger returned him to the harsh reality of his own predicament. ", "He sought out the caves of black rock where he found edible mushrooms growing in abundance. ", "He consumed them with avidity, and they seemed a princely meal indeed. ", "Then returning to the corridor from which hung the amber spears, he set about following their trail as Pudmini had advised.", "\n\nAnd I have achieved another seduction, and the mortal man has another escape from death.", "\n\nThere is more to this than the caverns.", "\n\nHari guessed that many days must have passed, and at last the stone floor began to slope upward. ", "High-pitched cries reached his ears and seemed to be coming from somewhere in front of him. ", "They became louder, and as he entered a large cavern an amazing sight greeted him. ", "The roof of the cavern was covered in a living mass of wriggling brown bats. ", "Countless in number, their furry snouts and membranous wings twitched constantly, and their tiny clawed thumbs seemed to be pointing directly at him.", "\n\nSuddenly, as though on cue, the tiny creatures took wing, forming a dense cloud of flapping monsters in miniature. ", "They darted and wheeled in a graceful ballet, circling the great gallery in close formation, miraculously avoiding colliding with one another. ", "The whirling circle then broke and the formation began leaving the cavern. ", "Hari saw that the bats too followed the trail of the amber spears, and he hurried on after them.", "\n\nSee. ", "Winged fingers point the way.", "\n\nThe upward incline of the floor became steeper and the walls gradually narrowed. ", "Hari's heart leapt when he saw that the cave opening was just ahead.", "\n\n\"God is good!\" ", "he cried, as he dashed out into the cool night air. ", "But then he looked about and gasped, for the face of god was not smiling.", "\n\nIt was as though he had stepped into an alien world. ", "The curvature of the sky was bent and broken, and blinding colors flashed and swished across the firmament. ", "Luminous streamers streaked by overhead, arching sky-curtains of flaming violet fluttered eerily, and elliptical rings of yellow light darted through the heavens.", "\n\nAbove the tumultuous maelstrom in the sky's cup there glowed two spectral moons, terrifying in their magnificence. ", "Recalling the description in the explorer's diary, Hari now knew where he was: the Land of Peril.", "\n\nHe shuddered and looked back toward the safety of the cave. \"", "No!\" ", "he screamed. \"", "I will not go back.\" ", "He shook his fist at the turbulent heavens. \"", "I will fight your demons!\"", "\n\nYes, I counted on that foolishness.", "\n\nClenching his jaw, he set his step toward the dark hill that loomed below the southern horizon, which he knew could only be Demon Knoll, domain of the fearful cloud monster.", "\n\nThe eyes of the twin moons followed him and took on a pale penumbral glow. ", "The perimeter of the easternmost moon brightened and expanded, then broke free and drifted outward to form a brilliant ring around the now paling central disk. ", "The encircling corona began to pulsate, and with each pulsation contracted toward the inner orb, hugging it ever tighter. ", "Upon reaching the outer edge of the moon, the ring continued to shrink, consuming the very moon itself.", "\n\nHari tried not to look and felt trickles of sweat running down his back.", "\n\nThe remaining moon brightened and cast off its encircling red mantle, which floated upward and formed a shimmering double moonbow. ", "The heavens hissed in disapproval, and spear-like bolts flashed across the twisting firmament. ", "Great pillars, vertical shafts of red light, shot up from the horizon and across the face of the moon as though to hold up the wavering superstructure. ", "Out of the distant space a ragged ball of green fire appeared and rolled across the heavens, growing ever larger until it dwarfed the moon itself. ", "Straight it sped toward the monstrous pillars of light, colliding with them in an explosion of eye-searing color, threatening to split the very sky asunder.", "\n\nHari threw himself to the ground, covering his head with his arms. ", "Was the end of the world at hand? ", "he wondered. ", "But when next he looked up, as if by magic the sky was clear and serene, save for a few dancing beads of light that zigged and zagged about playfully. ", "The heavens seemed to glow in mock contentment, or perhaps amusement.", "\n\nSuddenly tired, he stretched out on a bed of moss beneath an overhanging rock. ", "Though intending only to rest for a moment, he fell into a sound sleep.", "\n\nHe awoke to see the face of Surya greeting him as it pushed its way up over the eastern hills. ", "The sun fluttered a moment, and then it suddenly disappeared. ", "Hari jumped to his feet, alarmed, only to see Surya once again rising up proudly in the same place it had risen a moment before. ", "He realized then that the sun he had first seen had been only a reflection, an early image of the real sun mirrored against the sky.", "\n\nHe continued on toward Demon Knoll and had not gone far when a hot dry wind came up and dark low-lying clouds rolled in over the hills. ", "Flashes of forked lightning cracked horizontally through the air, followed by roaring peals of thunder. ", "The air became mysteriously alive, tingling his skin. ", "Invisible currents pushed and tugged at him, and miniature atmospheric whirlpools whipped at the earth. ", "Ahead he could see strange glowing balls rolling along the ground at great speed, and when they struck a boulder or outcropping they exploded violently. ", "One was heading straight at him, and he dived aside to avoid being struck. ", "The fiery ball exploded against some rocks behind him and shattered into myriad tufts of flame, which danced about in ghostly fashion before flickering out.", "\n\nHe will not always be so fortunate. ", "Soon—soon.", "\n\nWhirling columns of air followed in the lightning's wake. ", "Like omnivorous devil-demons, the spinning wind-eddies raced along the ground, sucking up dirt and stones, which they hurled about wildly. ", "Hari hugged the earth to avoid being struck. ", "Then as suddenly as it started, the turmoil ceased and the air grew calm again.", "\n\nWhen finally he reached the base of Demon Knoll, it was nearly evening. ", "The humpback rise loomed vacant and foreboding over the surrounding land, silently declaring its mastery over all. ", "A stationary cloudbank surrounded by mist hung over its crest. ", "Determined to pass over the hill before dark, he began the ascent without delay.", "\n\nThe incline was not steep and there were few obstructions in his path. ", "Much to his surprise, he reached the summit quickly and without difficulty.", "\n\nThe top of the hill was flat, and looking about, he could see no sign of danger. ", "Then he looked up and his heart leapt to his throat. ", "There, staring down at him from the low-lying cloudbank, was a giant demon face. ", "Trembling, he gaped in frozen silence at the monstrous visage. ", "It floated just above him in the cloud shadows, its features ugly and distorted, altering constantly into myriad grotesque shapes. ", "Unable to move or tear his eyes away, Hari waited for death to strike him.", "\n\nBut nothing happened. ", "His wits returned to him, and he wondered if the cloud demon might not be harmful after all. ", "Then a bizarre thought came to him. ", "Could it be?", "\n\nIn a sudden leap he dived backward to a position just below the top of the hill. ", "He crouched down so that his body would not be visible to the gaze of the demon. ", "He waited several minutes, then slowly raised his head just far enough to get a clear view of the hovering cloud-bank. ", "The monster was gone! ", "He had guessed right.", "\n\nTo confirm his theory, he stood once more upon the hilltop, only to find that the monster had also returned— as he had expected. ", "He stepped to the left and the demon moved with him. ", "He jumped to the right and the demon mimicked him again. ", "He clapped his hands and laughed out loud, and the demon seemed almost to smile. ", "He was right: the monster was nothing more than an apparition, a phenomenon of nature. ", "The explanation was simple. ", "The sun was low on the horizon, and so looked up at the crest upon which he stood. ", "Like a great projector, it cast his shadow onto the cloudbank, as it would anyone's who stood upon the hill. ", "The distortions were created by the convoluting movements of the clouds themselves.", "\n\nHe grimaced and shook his head from side to side, which the shadow-image faithfully imitated, and it was not until darkness threatened that he gave up the game and made his way down the far side of the hill.", "\n\nHe found a shallow crevice to rest in for the night. ", "Though hardly comfortable, it shielded him for the turmoil of the heavenly fireworks. ", "As he munched on a mushroom, he thought about home, especially his mother's wonderful cooking and his own soft bed, and he wondered if he would ever escape this unfriendly land.", "\n\nThe next day he made good headway. ", "The land became flat and sandy and the surrounding mountains closer. ", "His eyes ached from the bright sand, which shimmered in waves of yellow-gold like a great phantom lake. ", "In the distance a dark band appeared in the sand, stretching the full width of the land from mountain to mountain. ", "He wondered what it could be. ", "When he reached the darkened area his heart sank. ", "A great chasm split the land, impossible to cross, as though some angry god had run a finger across the earth and cut it open. ", "He fell to his knees, too benumbed to cry out or weep.", "\n\nLong he gazed at the brooding chasm, even as the blazing eye of Surya, ever watching, inched past its zenith. ", "As though in sympathy, or perhaps defiance, the dark band also crept forward like some great black lizard. ", "Hari shook his head to clear his vision. ", "The chasm moved again. ", "He jumped to his feet and ran toward the opening, but it as quickly moved away from him. ", "He stopped and it stopped. ", "Finding a stone, he hurled it into the center of the dark band, only to see a splash of sand leap up where the stone had struck.", "\n\nHe has fathomed its bluff. ", "You hoped he would kill himself by reacting to fancies, but he has not.", "\n\nHe has been lucky. ", "But luck can turn both ways. ", "He has not yet escaped the Land of Peril.", "\n\nHow foolish he felt. ", "There was no chasm. ", "It was only a mirage, a trick of sun and sand. ", "Would he never learn? ", "Oh well, he thought, perhaps next the sun will fall out of the sky and roll at my feet. ", "If so, he would pay no attention.", "\n\nHe passed through the sandy wilderness without further incident and by midafternoon reached the base of the mountains. ", "The towering giants arose abruptly out of the earth to form a walled barrier. ", "He knew that somewhere in the fortress was a breach, the pass which the explorer had called Yama's Cut.", "\n\nAs he walked eastward along the base of the mountains, he caught a faint whiff of fragrance in the air. ", "The odor gradually became stronger, and he saw ahead a large purple cloud hanging low in the air, hugging the cliffside. ", "Through the dense mist he could make out an opening in the mountain wall, doubtless the pass he sought. ", "He remembered the explorer's diary telling of the deadly mist that hung over Yama's Cut—the breath of demons—and wondered if it was poisonous. ", "No matter, the pass was his only means of escape and he had to take it.", "\n\nHe entered the cloud. ", "Its sweet pungency was sickening and burned his eyes. ", "He groped his way to the gap in the mountain wall, and within its narrow confines the purple mist was even denser. ", "His head began to spin and he fell to his knees. ", "But closer now to the ground, he found that the air was clearer. ", "His breathing became easier. ", "Surely the goddess Lakshmi still traveled with him, he thought.", "\n\nAs his eyes cleared he saw he was in a passage that cut straight through the mountains. ", "He also saw the source of the pungent mist: champak bushes, row upon row of champak bushes growing all along the passage. ", "He laughed as he surveyed the thousands of lovely purple starlike blossoms. ", "Champaks: he knew they loved the shade and craved protection, and here was the perfect arboretum for them. ", "The cloud of perfume that filled the air was nothing more than the pollen emitted from the dense clusters of flowers.", "\n\nHe continued on through the pass crawling on his hands and knees. ", "The going was slow, though in places the champaks thinned out and he was able to walk. ", "Finally, to his great relief, he found himself on the far side of the mountains.", "\n\nSo he has escaped it despite you.", "\n\nBut I did not intervene. ", "The move remains mine.", "\n\nHe emerged beneath a still blue sky, the great vault of Indra, and spread out before him was a scene to gladden the heart: an expanse of rolling green hills dotted with silk-Cotton, mango, and gova trees; gold-tipped fields sprinkled with yellow carnations, primroses, and daisies, guarded by great flowering rhododendrons and proud bougainvilleas. ", "Lapwings and kites darted about the lea, and overhead a flock of crimson-billed kingfishers flew toward the westering sun. ", "A lone crow shook its wings in a nearby neem tree, disturbing its delicate lacework leaves, and squawked in raucous counterpoint to the sweet melody of the lark.", "\n\nThe burden Hari carried became lighter as he breathed in the serene beauty of his new surroundings. ", "He would have liked to languish here awhile, to do nothing but sit upon a hill and gaze out upon the majesty of nature, the great gift of Brahma. ", "But he had a task to perform, and so, with a sigh, he turned his step southward toward the city of the rajah.", "\n 9\n\n* * *\n\nThe Loan\n\nHari spent a peaceful night beneath the protective branches of a tamarind and was awakened in the morning by the cooing of a dove among its russet pods. ", "He rose and stretched, shaking off his weariness, even as the eastern sky shed its mantle of white and struck fire from the golden pearls of dew upon the grass. ", "A faint fragrance of the champak came to him, and he smiled, for bits of its pollen still clung to his tunic.", "\n\nAs he walked along munching on a mango, a brightly banded caterpillar crept out of the grass onto the path. ", "He stopped, watched its graceful undulations, and waited until it crossed the open path and reached the safety of the grass beyond. ", "He had noticed that his were not the only eyes that followed the slow-crawling creature. ", "From a nearby tree a jaybird squawked in protest at the human's intervention, which had allowed its breakfast to escape.", "\n\nBy way of compensation Hari broke off a piece of the mango he was eating and tossed it on the ground for the ruffled bird. ", "Without a note of appreciation, the jay promptly descended on the juicy fruit and proceeded to consume it greedily. ", "Oh well, thought Hari, perhaps a thank-you was not called for. ", "No doubt the jay's culinary preferences ran more toward caterpillars than mangoes.", "\n\nOrdinarily he would not have interfered in nature's ways, but of late he had he seen the footprints of Yama on the path before him, and he would put them behind him if he could. ", "Besides, the caterpillar was quite lovely, and as a vegetarian he knew there were alternatives to flesh-eating.", "\n\nBut suppose, he asked himself, that the jaybird depended upon a diet of caterpillars to survive. ", "How could he then in good conscience deprive the bird of necessary sustenance? ", "Morally and logically, the answer was clear: he could not. ", "All his life he had been brought up on morality and logic; it had been drummed into his head daily by the village pundit. ", "But now, somehow, such reason seemed cold and distant. ", "Perhaps some irrationality had crept into his character, a flaw that his teacher and, indeed, any self-respecting Brahmin, would find appalling. ", "But he was glad he had saved the caterpillar.", "\n\nToward evening he came upon a small village, a welcome sight. ", "After many days of solitary wandering he looked forward to the company of other human beings.", "\n\nAs he entered the village, he saw there was a crowd gathered in front of one of the clay houses that lined the main street. ", "The assembly was subdued, the people talking in hushed voices; some of the women were weeping. ", "He asked a man standing at the perimeter of the group the reason for the gathering, thinking that perhaps an important personage had died. ", "He was told that the house was that of the village guru, an elderly and much venerated teacher in the community, who was ill. ", "It was feared the guru might die soon, so the villagers had come to the old master's house to pay him homage.", "\n\nHari also learned from the bystander that it was a custom in the village for all newcomers to appear before the guru, and as he was a stranger, he was encouraged to join the gathering of devotees who were beginning to file into the house. ", "Not to respect such a custom, he knew, would be an offense. ", "Also, he would be unlikely to obtain a free meal and a roof over his head if he did not comply.", "\n\nHe joined the end of the queue as it filed into the house and waited patiently as it wove its way slowly from room to room. ", "Upon entering a large parlor, he could see there were three people seated yoga-style on the floor receiving the visitors. ", "The first was a frail elderly man, bearded and wearing the simple white gown of a master-teacher—doubtless the guru. ", "Each of the visitors bowed low before the old man and exchanged a few polite words, the more worshipful kneeling to touch his feet and then their eyes. ", "The guru did his best to discourage this act of supreme reverence, thereby revealing his own humility. ", "His gentle eyes blinked with pleasure each time he recognized a familiar face, and Hari could see the old teacher was loved by all.", "\n\nSeated next to the guru were two attractive young women, both garbed in the robes of disciples. ", "They in their turn greeted the visitors with a polite nod and clasped upturned hands. ", "The visitors then passed out of the house through a door at the far end of the parlor, some leaving small gifts on the mat at the exit.", "\n\nThe line gradually dwindled until only Hari remained. ", "He approached the guru and bowed before him. ", "The guru smiled, his old eyes twinkling as he studied the newcomer's face.", "\n\n\"Ah, it seems we have a special visitor tonight, Sharmila, a young Brahmin no less,\" declared the guru. \"", "Welcome to this humble house, young man. ", "We are pleased to have you. ", "It is not often we have the pleasure of welcoming strangers to our village—we are so far off the beaten track. ", "But forgive me, I must present you to these lovely ladies. ", "To my right is my wife, Sharmila, my most devoted disciple and the flower of my life. ", "And next to Sharmila is her equally lovely sister, Shanta, also a devoted disciple, and a dedicated teacher to the children of the village—although I fear we may soon lose her to the university at Agrapoor. ", "As for myself, I am Sundar, also a teacher, and like yourself a victim of Brahminical heritage—a condition that can be overcome, I assure you.\"", "\n\nThe old man chuckled at his own joke, but then began a fit of coughing. ", "It was several minutes before he was able to continue.", "\n\n\"Forgive me. ", "My body seems to have reached its limit somewhat ahead of my spirit. ", "But now tell us who you are, young man, and what brings you to our humble village.\"", "\n\n\"My name is Hari, O Guruji, a student from a village in the northeast of Madra. ", "In my wanderings it was by accident that I happened upon your village. ", "I regret I have no gift to offer, but accept my prayers for your health and my humble thanks for your kind welcome.\"", "\n\n\"That is more than gift enough, young Hari,\" said the guru. \"", "You are as well-spoken as you are well-mannered. ", "Sharmila and I insist you stay with us this night that we may have the pleasure of your company. ", "Do we not, Sharmila?\"", "\n\n\"Yes, my husband, assuredly. ", "We would be most pleased and honored.\"", "\n\nO, were it but my move, one of these two beauteous young women would be the seventh seduction!", "\n\nYes, I knew you would come up with some such, if I failed to gain and hold the move.", "\n\nHow lovely and feminine she is, thought Hari as he bowed in appreciation of the invitation.", "\n\n\"Good, then it is settled,\" declared the guru. \"", "While Sharmila sees to the preparation of our evening meal, we will retire to the library to chat further. ", "Shanta, I hope you will stay and dine with us.\"", "\n\nLook into his mind! ", "See what he contemplates!", "\n\nYour luck is obscene!", "\n\nAs is your character, so we are even.", "\n\n\"I thank you and beg your forgiveness, Master,\" Shanta replied, \"but I can not. ", "This evening I am expecting a visit from the head pundit—the Mahomahopadyaya—of Agrapoor University. ", "Whether I am successful in obtaining the teaching appointment I have applied for may well depend on my interview this night. ", "Although the pundit is visiting me to assess my character and learning, I thought to provide an encouraging environment by setting out a good meal before him.\"", "\n\n\"Most wise, Shanta,\" said the guru. \"", "But your character is saintly and your scholarship superb, so if the pundit is not a fool I am sure you will be found acceptable—even if your chapatis are overcooked.\"", "\n\nAs Shanta rose from her sitting position on the floor, she bumped her head on a protruding wall shelf. ", "Hari heard not one but two \"ouches\" uttered at the same time, one from Shanta and the other from Sharmila in the adjoining kitchen. ", "Sharmila poked her head around the door, looked at Shanta, and when she saw that her sister was not injured, she giggled, as did Shanta. ", "The guru did not notice the incident as he struggled to gain his feet. ", "Hari helped the old man up and supported him as he walked on unsteady legs to the small library next to the parlor. ", "Shanta voiced a final farewell as she left the house, and Sharmila resumed her preparations for the evening meal.", "\n\nHari deposited the guru in a comfortable chair in the library and accepted another for himself at the guru's invitation. ", "The old teacher stroked his beard for several minutes before speaking.", "\n\n\"Hari, I would say something to you, something that is important to me. ", "And then I would ask you a question—a somewhat unusual question. ", "It is a personal matter, and for that I beg your indulgence. ", "I believe you to be a man of virtue and good character, a person of discretion and judgment. ", "And as you are an educated Brahmin, I am sure you will appreciate the subtleties and complexities of the matter I am about to explain in an appropriately detached manner. ", "When I am finished, you may even be agreeable to performing a small service for an old man not long for this life.\"", "\n\nIt was clear that something of serious consequence was afoot. \"", "I shall be glad to help in any way I may,\" Hari said. ", "For this was an essential part of his search for truth and wisdom: he wished to learn how best to help others, especially those most deserving. ", "Whatever service the guru wished would surely be instructive as well as beneficial.", "\n\n\"Let me begin by telling you of my marriage to Sharmila. ", "We were wed two years ago, at the time my health began to fail. ", "She was one of my most devoted disciples, and she unselfishly insisted on looking after me in my waning years. ", "Rightly or wrongly, I married her, although she was young enough to be my granddaughter. ", "At the time, other than her sister, she had only a father, who has since died, and he cared only for the reflected honor of his daughter's marriage to the village guru and thought not of the life she would lead. ", "And in truth, I did not fully consider the matter either, although I have thought about it many times since.\" ", "The old man allowed a small sigh of regret to escape him.", "\n\nAfter a moment he resumed his narration. \"", "She cared for me well, and I grew to love her dearly. ", "Because of declining health, I could not provide her with the normal corporeal enjoyments of married life. ", "Yet she never complained, although I know she must have suffered because of it. ", "She remained faithful always, the model of a self-sacrificing and virtuous wife.", "\n\n\"I hoped and prayed my health and body might revive, if only for a little while, that I might give to Sharmila at least some measure of the pleasure that is the right of any spouse. ", "But the depreciation of time would not relent, and my condition gradually worsened. ", "Now the shadow of Yama is upon me, and my Sharmila will soon be alone. ", "She can not marry again, for custom forbids it. ", "Nor would she wish to. ", "Rather, I believe she is intent on remaining here the rest of her life that she may impart my teachings to the children of the village. ", "Ah, how this old heart breaks when I consider that my beloved Sharmila, yet in the flower of her youth, must live out her life unfulfilled, without ever knowing the joys of physical love.", "\n\n\"So you see, Hari, why my heart is heavy. ", "How often have I wished there was a moment of youth I might steal and share with Sharmila. ", "Such are the foolish fancies of an addled old man. ", "But it was that idle wish that set me to thinking—not of stealing, but of borrowing a moment of youth. ", "The idea, I know, sounds absurd, but it is not. ", "Let me explain.\"", "\n\nHari's surprise must have shown on his face, for the old guru smiled as he continued. \"", "If you look around this room, you will see books on many subjects, not a few on the art and practice of Hatha-Yoga. ", "My teacher was an eminent practitioner of Hatha-Yoga, and it was from him that I learned and eventually mastered the difficult art of spiritual transmigration. ", "Only a few experts have successfully accomplished spirit transfer. ", "I have done so on two occasions, both times in my younger years under the tutelage of my master-teacher. ", "Though I have not performed a spiritual transfer in a long time, it is a skill that once learned is not forgotten.", "\n\n\"This brings me to the question I wish to ask you, Hari. ", "It is not a question that is easy to ask, even by an old guru who has spent his life asking more questions than he has been able to answer. ", "It is a boon I seek of you. ", "Though your acquiescence will mean much to me, know that if you refuse, I will understand—indeed, I might well refuse myself if I were in your place. ", "So do not feel obligated where no obligation exists. ", "Whatever answer you give, I will accept, and we will enjoy our dinner all the same.", "\n\n\"What I wish to ask of you is the loan of your body for one night that I may lie with my wife. ", "You can understand that I could not ask this of anyone in the village where everyone knows one another. ", "Also, Sharmila, I am sure, would not be comfortable if I wore the body of someone she knew in another capacity, and there could be no assurance that sooner or later the lender of the body might not misspeak and reveal the incident. ", "You, being a stranger who will soon be leaving the village, are an ideal candidate. ", "Of course, Sharmila would have to agree, but I am confident I can convince her.", "\n\n\"Well, I have said enough. ", "Perhaps too much. ", "I would not blame you if you conclude that you are in the company of a crazy old man. ", "Perhaps I am. ", "But what I have said is true, and I am confident that I can perform a spiritual transfer without any harm to your body or your spirit. ", "The decision is yours.\"", "\n\nA long silence ensued as Hari sifted through the confusion of thoughts that filled his head.", "\n\n\"O Master,\" he said finally, \"I would ask a question. ", "What happens to my spirit when yours has entered my body? ", "And what of your body when it has lost its spirit?\"", "\n\n\"Your spirit, Hari, will remain in your own body, even as my spirit enters your body to take possession of your thoughts and movements. ", "You will not be wholly unaware of my spiritual presence, nor will you lose all bodily control. ", "I can achieve dominant control, but only if your spirit permits it. ", "Your spirit and your will must assume a passive role during the brief period of the possession. ", "As for my own body, it will remain alive and simply lie at rest, dormant, until I transfer my spirit back into it.\"", "\n\nBut it will count as a seduction, for his body will have congress with another woman.", "\n\nAnd if he gets killed in this village, it counts too.", "\n\nAnother long silence followed as Hari considered the matter further. ", "He felt genuine sorrow and compassion for the ailing guru. ", "Too, as a student and a Brahmin, he was respectful of the revered status of the master-teacher, and it was in the Brahminical tradition that he should obligingly render service to others. ", "And the experience would do him no harm.", "\n\n\"Master, I will gladly make my humble body available to you for a night's employ. ", "Tell me what I must do.\"", "\n\n\"My thanks to you, O Had,\" said the guru with an equanimity and humility that belied the joy in his heart. ", "Only the trembling in his fingers betrayed the emotion of the moment.", "\n\n\"There is nothing to be done just yet. ", "First I must discuss the matter privately with Sharmila so that she will understand and be agreeable. ", "She already knows that I have the ability to perform spiritual transfer, and so will not be disbelieving of the arrangement we have made. ", "I am confident she will comply, for she will think the experience to be a pleasing thing for me, and she strives to please me in every way she can. ", "I will go speak with her now. ", "Make yourself at home in my absence and browse through my collection of books if you like. ", "I will return presently.\"", "\n\nThe old guru pulled himself to his feet and shuffled out of the room.", "\n\nHari surveyed the shelves of books and selected one entitled: Strange Phenomena of Nature. ", "He thought perhaps to find within its pages some clues to the strange happenings he had observed while traveling through the Land of Peril.", "\n\nWhen the guru returned to the library, he was pleased to find his guest deeply engrossed in a book.", "\n\n\"Ah, yes. ", "Your choice is a good one,\" said the guru. \"", "A most revealing tome, and well documented. ", "But now it is time for dinner. ", "Come along. ", "And if Sharmila seems a bit shy, I am sure you will understand. ", "She consented to our arrangement as I knew she would, and I will perform the transfer after dinner.\" ", "He sniffed the air appreciatively. \"", "Ah, this old nose is not dead yet—I can smell the curry and pickles from here. ", "Prepare yourself for some fine food, my boy, for Sharmila is a magical cook.\"", "\n\nAt the dinner table Sharmila busied herself with arranging the dishes just so, and occupied herself with a myriad of minor details so as to avoid looking into Hari's eyes. ", "Hari understood and did his best not to contribute to her unease, so he concentrated on sampling the many savory dishes and listening to the guru lightheartedly expound upon the subject of reincarnation.", "\n\n\"It is written that the rebirth of a human into the form of an animal is retrogressive—a punishment for a life of sin,\" said the guru. \"", "But I have my doubts. ", "Why is an animal necessarily a lower form? ", "Animals do not sin. ", "They are born innocent and remain so. ", "If they kill it is usually to survive; they act on instinct. ", "But man? ", "Ah, how well he has taught himself the fine art of inhumanity. ", "Even the gods seem not to value the human form over that of creatures. ", "Consider the great number of godly incarnations that take the form of animals.\"", "\n\n\"But,\" asked Hari, \"among the creatures, are not some higher than others, just as among humans?\"", "\n\n\"Perhaps so,\" replied the guru. \"", "But higher in what way? ", "The noble eagle soars majestically on the wind currents and then descends from on high to rend and consume the small ground squirrel. ", "Yet the eagle is revered and the squirrel is scorned. ", "But the squirrel kills not and eats not of the flesh. ", "He eats as we do, of fruits, nuts, and vegetables. ", "He does not kill but is killed, victim to the strong and powerful. ", "Therefore, I ask you, would it not be better to be reborn as a ground squirrel than as an eagle—or a man?\" ", "The guru chuckled, pleased at the inevitability of his logic.", "\n\n\"O my husband,\" chimed in Sharmila, \"if you will permit an observation. ", "Before you begin burrowing holes in your next life, perhaps you would do well to consider what might be in store for the ground squirrel in its next life.\"", "\n\nThe guru and Hari laughed at these words, and Hari saw that Sharmila was as clever as she was beautiful. ", "But he also wondered how serious the guru might be, for very few men, if given the choice, would choose to be a squirrel rather than an eagle. ", "It almost seemed that the guru believed that he did have such a choice. ", "That spoke well for his sincerity, for it was easy to advocate a humble reincarnation when there was no prospect of it. ", "Just as it was easy for a poor man to renounce the trappings of wealth, and difficult for a rich man to do the same.", "\n\nAfter dinner the guru showed Hari to a guest bedroom and there explained the next step in preparing for the spiritual transfer. \"", "Are you ready, then, Hari?\"", "\n\n\"Yes, I am ready.\"", "\n\n\"Good. ", "Now lie down on the bed and relax yourself. ", "Assume a comfortable position. ", "You need only shut your eyes and empty your mind. ", "Intoning the primal word will help you do this. ", "I will go now to the vacant room adjacent to my bedroom. ", "From there I will perform the transfer. ", "It is not necessary that I be in the same room with you to detach and transfer my spirit, and you can understand that the ritual is secret and can not be seen by another. ", "Remain passive and I will take control of thought and movement. ", "My spirit will direct your body to leave this room, whereupon I will take it to my own bedroom where Sharmila awaits.", "\n\n\"Later in the night I will return your body to this bed and release my spirit, which will return to its own body. ", "Then all will be as before.\"", "\n\nWith that the guru bowed and left the room. ", "Hari lay quietly on the bed, his eyes closed, and inwardly sounded the primal word as he awaited the coming of the guru's spirit.", "\n\nBut let us see what the sister is up to.", "\n\nThat innocent is boring. ", "Still, who knows?", "\n\nUpon leaving the house of the guru, Shanta made her way toward her own dwelling down the road. ", "The sting from having bumped her head against the shelf in the guru's parlor was all but gone, and she smiled to herself as she recalled that she and Sharmila had cried \"ouch\" at the same time. ", "When they were children, she remembered, they had suffered pain together then too, and experienced the same pleasures as well, though their lives had not been so exciting that bodily pleasure or pain had visited them very often.", "\n\nEveryone in the village knew that she and Sharmila were twins, although not identical. ", "But among the living only the two sisters knew that they had been born joined together at the shoulder and had been skillfully separated at birth without injury to either by the village midwife, who had since died. ", "Only the slightest of scars remained. ", "And no one but they knew that since their birth each experienced the same physical sensations of the other.", "\n\nIf Shanta ate a spicy dish, Sharmila also experienced the taste, and if Sharmila sniffed a fragrant flower, Shanta too enjoyed the smell. ", "And if Shanta cut her finger, Sharmila's finger, though it would not bleed, would feel the same pain. ", "Indeed, each had become so accustomed to experiencing the ordinary daily sensations of the other that sometimes neither was sure who was the initiator and who the recipient of their common feelings. ", "It was only that rare and unexpected event that caused them to be aware of their unusual talent as well. ", "If their empathy did not extend to seeing and hearing, for that they were grateful. ", "All their lives they had kept their secret to themselves lest they be thought of as freaks. ", "Sharmila had not even told her husband.", "\n\nShanta arrived home and set about putting the finishing touches on the evening meal. ", "She wanted the dinner to be perfect and dearly hoped it would be to the liking of the pundit. ", "More than anything in her life she wanted the university appointment. ", "Everything was in order. ", "The parlor and dining room were neat to a fault, her meager library was prominently displayed, and she had on her best sari.", "\n\nA loud rapping sounded at the door as might be delivered by an angry woodpecker. ", "Shanta nervously brushed away the imaginary wrinkles in her sari, took a deep breath, and opened the door. ", "There stood her guest for the evening.", "\n\n\"Pundit Rajagopala, how good to see you again, and how kind of you to come,\" said Shanta effusively, her palms pressed tightly together. \"", "Please come in.\"", "\n\n\"Harumph, well yes, yes,\" sputtered the pundit in a haughty tone, his puffy red face screwing itself up disdainfully as he looked around in undisguised disapproval. ", "He was short and portly with close-set blinking eyes and thick lips, entirely bald, and moved about in much the same manner as an overweight duck.", "\n\n\"Please make yourself at home, Master. ", "This is the most comfortable chair. ", "Will you take some tea?\"", "\n\n\"Tea? ", "Yes. ", "Plain and not too strong. ", "Yes, properly served, tea should not be too strong. ", "Harumph.\"", "\n\nBut we must not neglect the guru's activity.", "\n\nYou watch the seduction; I will watch the pundit's meal. ", "Neither aspect of this episode should be missed. ", "I shall assuage my boredom with thoughts of future conquests.", "\n\nAgreed. ", "Here is my report.", "\n\nHari lay still in his bed awaiting the coming of the guru's spirit. ", "Sharmila too lay in her bed, expectant and apprehensive, her eyes fastened on the door, waiting for her husband to enter in the body of Hari. ", "She did not know exactly what to expect from the experience, for her husband had not been very specific about the details.", "\n\nHari felt a tingling sensation, which soon dissipated, and he became aware of the presence of the guru's spirit within him. ", "He marveled at its richness, serenity, and gentle nobility. ", "Relaxing his will, he let the guru take control of his body, which then rose from the bed and left the room. ", "Although his brain no longer instructed his movements, he could sense the excitement and anticipation that emanated from the guru's spirit.", "\n\nSharmila watched in wide-eyed fascination as the body of Hari entered the room and sat down on the bed next to her. ", "If the voice that spoke to her was young and strong, the words and gestures were familiar, and she felt assured that it was her husband who now attended her. ", "She gradually relaxed, and when the firm young body pressed gently against her, she did not protest.", "\n\nAs the lovemaking intensified, Hari did his best to submerge his spirit and remove himself from the sensual emanations that assailed his body so as not to trespass upon the privacy of the guru and his young wife. ", "But this became increasingly difficult as the waves of emotion heightened and splashed upon the shores of his senses. ", "He could sense Sharmila's wonderment at the new emotions she was experiencing, nor could he help feeling her firm young breasts press against his body and the pulsing warmth deep within her.", "\n\nThen, inexplicably, his body faltered, and in his mind he heard the voice of the guru calling to him. \"", "Help me, Hari,\" it said. \"", "I need your youthful spirit to assist me. ", "My spirit is too weak to accomplish the task alone. ", "Please help me. ", "She will not know.\"", "\n\nHari could feel the guru's spirit weakening, and he obligingly tried to reinforce it with his own. ", "He did not want to dominate or even become a full partner in the lovemaking, so he participated only enough to reinvigorate the flagging activity and restore it to its former pitch. ", "By exercising due restraint he succeeded in playing the minor role of accompanist to the now fast-moving duet, rather than become a soloist or third performer in a whirling trio. ", "In his best altruistic fashion, he bravely endured the many pleasures and delights that intruded upon his being.", "\n\nWhen finally the guru's spirit relaxed, its task complete, Hari willed that his own spirit retreat so that the guru and his wife might be alone together. ", "It was not until late in the night that he became aware of his body returning to its bed and the guru's spirit departing. ", "Tired from the night's labor, he soon fell asleep.", "\n\nAnd here is my report.", "\n\nThe wry expression on the pundit's face as he sipped tea gave way to a look of lofty indulgence as he turned his attention to Shanta.", "\n\n\"I assume,\" he squeaked, \"that your knowledge of the Vedas is thorough and complete?\"", "\n\n\"Oh yes, Master,\" replied Shanta eagerly.", "\n\n\"And that you are proficient in the Indian system of logic?\"", "\n\n\"Oh yes, indeed.\"", "\n\n\"And that you are fluent in the major languages of the south and also three of the Indic languages of the north?\"", "\n\n\"I am fluent in Bengali, Master. ", "But I did not know of the requirement of three northern languages.\"", "\n\n\"Hmm. ", "Three. ", "Yes, three. ", "Well, I must tell you, there are several candidates for the faculty opening, and the language requirement is important. ", "Yes, quite important.\"", "\n\nShanta's heart sank at these words, but she bravely maintained her poise.", "\n\n\"You must surely be hungry by now, Shriman Rajagopala. ", "May I serve you some curried eggplant and chutney? ", "And please have some roti and chapatis.\"", "\n\n\"Ah, yes, by all means. ", "As the sage so wisely said, there is a time for all things, and all things in their time. ", "The body is the vessel of the soul and must have its due.\"", "\n\nIt was as Shanta was serving her guest a second helping of eggplant that she felt a warm caressing sensation in her breasts, which so surprised her that she nearly dumped the dish on the pundit's lap.", "\n\n\"Oh, please forgive my clumsiness,\" she exclaimed.", "\n\n\"Harumph. ", "Yes, of course.\"", "\n\nThe caressing sensation in Shanta's breasts suddenly increased in intensity and was now accompanied by a disturbing hotness in her lips. ", "She sucked in her breath audibly and instinctively clapped her hands to her breasts in surprise and disbelief. ", "This action so startled the pundit that he ceased masticating and stared open-mouthed at the amazing scene of Shanta holding her ample breasts in her cupped hands.", "\n\n\"Oh!—Oh, forgive me, Master, just a touch of—of indigestion,\" she said with forced calmness. \"", "Please, have some more dhal.\"", "\n\nShanta bit her lip to avoid showing any reaction to the strangely pleasant sensation that newly assaulted her anatomy, this time in a distinctly more private place. ", "Her thighs shuddered beneath her sari and feelings of overwhelming delight coursed through her body. ", "She began to writhe in her chair and breathe heavily, and she involuntarily uttered little cries of \"oh\" and \"ah,\" her eyes the while lighting up like fiery stars. ", "The pundit dropped a half-eaten chapati from his gaping mouth, his eyes fairly popping out of his head. ", "If he was flabbergasted at Shanta's incredible behavior, he was also keenly aware of the erotic nature of the display, such that he became excited and his lingam rose.", "\n\nShanta strained to gain control of herself, and in a supreme effort aided by unmitigated but well-disguised panic, she managed to reduce her writhing to a slow rhythmic undulation. ", "But the seductive swaying of her hips only served to excite the pundit the more. ", "Could it be, he wondered, that this lovely young woman was erotically attracted to him?", "\n\n\"I sometimes have an allergic reaction to chutney, O Master,\" she said, trying to explain her reactions. ", "She realized now that her sister must be having an affair. ", "Her partner certainly knew what he was doing! \"", "It causes an itch, and—oh!—ah!—oooh!\" ", "Shanta gasped and sucked in her breath, her eyelids fluttered wildly, her lips opening and closing of their own volition. ", "Her billowing breasts pushed hard against her sari, threatening the security of the fabric, and her arms and legs shuddered visibly. ", "Finally she let out a long low rapturous moan the like of which her astonished guest had never heard nor dreamed of, but which his anatomy comprehended all too well, for it pulsated and emitted a moist response, much to the pundit's dismay. ", "The pundit gulped audibly as bits of drool gathered on his lower lip, his hands surreptitiously moving to cover the widening stain on the leg of his dhoti.", "\n\nBut the woman was paying almost no attention to him. ", "Shanta's breathing slowed, and she cleared her throat as she gradually regained her composure.", "\n\n\"These allergy attacks are infrequent, but they can be most annoying,\" she said in a tone of mock impatience, her voice cracking slightly. ", "She avoided looking directly into her guest's eyes.", "\n\n\"Um, yes. ", "I have no concern. ", "Yes, not at all. ", "I understand,\" stammered the pundit. \"", "Chutney will do that. ", "Yes.\" ", "But he was not at all sure that the cause of the remarkable performance was indeed the chutney. ", "Other intriguing possibilities raced through his mind, suggesting fantastic opportunities for the future. ", "His now languid lingam twitched, as if to urge him to consider the potential advantages of having such a talented teacher at the university, isolated as it was, and of which he was the undisputed commander, not to mention the counselor to new members of the faculty with whom he often found it necessary to work quite closely.", "\n\n\"Will you have some rice pudding for dessert?\" ", "asked Shanta nervously.", "\n\n\"Ah, pudding. ", "Yes. ", "That is, no. ", "Uh, did you say you can write as well as read Bengali?\"", "\n\n\"Oh yes, Master.\"", "\n\n\"Well then, in that case the requirement is satisfied. ", "You are qualified and may consider yourself hired.\"", "\n\n\"Oh! ", "Thank you, Master,\" exclaimed Shanta. \"", "Thank you. ", "How can I ever repay you for this most singular opportunity?\"", "\n\n\"Ah, well. ", "Harumph. ", "Who can tell. ", "Yes. ", "You can report to the university whenever you wish, but no later than two months from now. ", "Housing and servants will be provided, of course. ", "We can meet and work out your teaching schedule together when you arrive. ", "Yes. ", "Now I must be on my way. ", "A fine meal. ", "Good night.\"", "\n\nShanta did not notice that the pundit held his satchel over his left leg as he waddled toward the exit, for her head was in the clouds. ", "She had feared that she had botched the meal and interview, but it seemed that she had after all made a favorable impression.", "\n\nAs she cleaned up the dishes, she sang to herself and could hardly wait until the morning to tell Sharmila and the guru the good news. ", "She must also remember to ask her sister about the odd sensations she had felt at dinner. ", "The experience had not been at all unpleasant, except for the time and place, and if her body insisted on misbehaving again in the same way, she would willingly tolerate it, but hopefully there would be some advance warning so she could retreat to the privacy of her bedroom and not inflict any discomfort on others. ", "If this was the way of love between a man and woman, she would not be averse to experiencing it directly at some near stage in her life.", "\n\nNow do I strike. ", "I shall put the realization into the pundit's mind that his hostess was suffering the effect of her twin sister's activity—and he will soon conclude that such goings-on cannot be the result of the ancient guru's passion. ", "He will believe that adultery has been committed.", "\n\nBut the guru will explain that this was not the case, if there is any challenge.", "\n\nI think not, for the guru is dying.", "\n\nHari awoke the next morning to the sound of wailing and weeping coming from somewhere in the house. ", "Alarmed by the commotion, he jumped out of bed, hurriedly dressed, and went to investigate. ", "A group of villagers was assembled in the parlor, the men in a clot whispering and shaking their heads, the women weeping and moaning and rocking to and fro. ", "He squeezed through the crowd and followed a procession of village elders into one of the bedrooms. ", "There he saw to his great shock the body of the guru, pale and lifeless, lying on the bed, a bouquet of flowers upon his breast. ", "Sharmila was kneeling beside the body, shivering and weeping. ", "At that moment Shanta came rushing into the room. ", "She uttered an agonized cry and fell to her knees beside her sister.", "\n\nTears trickled down Hari's face. ", "He felt to be very much an outsider in this moment of intimacy, and he quietly returned to the guest room. ", "He guessed the cause of the guru's death and knew he had played a part in it. ", "The old man's spirit had not been strong enough to endure the excitement of the previous evening. ", "If only he had refused the guru's request to borrow his body, perhaps the old master might still be alive.", "\n\nThere was a knock on the door and Sharmila entered. ", "She managed a wan smile.", "\n\n\"Hari, I know that you are saddened by my husband's death. ", "But his last hours were happy ones because of you. ", "He was very grateful, and so am I. His time was near at hand, and with your help he lived his final moments as he wished to. ", "Now his spirit lives in another life. ", "But he has not left us, for there remain his deeds, his mark upon this village, and our memories.\"", "\n\n\"Surely so,\" Hari agreed. \"", "Yet I feel a share of responsibility.\"", "\n\n\"Have no such concern. ", "He spoke of you before he died, saying that he would repay your favor in his next life, if not in this life.\" ", "She wiped her tearful eyes. \"", "The funeral pyre is being prepared. ", "I hope you will attend the ceremony.\"", "\n\n\"I will come,\" said Hari. \"", "And I thank you for your kind words. ", "Yes, I too will long remember him.\"", "\n\nThe guru's body was placed upon a platform of logs and fagots in a meadow at the edge of the village. ", "The villagers assembled in a half circle around the pyre, Sharmila and Shanta foremost among a small group of disciples. ", "Hari stood by himself at the outer perimeter of the gathering. ", "He had attended cremation ceremonies before in his own village and had found the experience distasteful, though he knew it was a deeply rooted custom.", "\n\nAttendants poured ghee over the fagots, which would help spread the flames. ", "A carven urn was brought forth to house the ashes of the deceased. ", "A Vedic priest chanted devotional prayers for the departed spirit of the guru and to the glory of the puissant pantheon of gods. ", "As custom required, Sharmila walked thrice around the pyre, touched the feet of her husband and then her own eyes, broke her bangles upon the wood of the pyre, and wiped the beauty spot from her forehead. ", "She then rejoined the group of disciples. ", "Since the guru had no son, the priest assumed the task of setting the sacred torch to the pyre. ", "As the spears of flame leapt up, as though to the bosom of Agni, their master, so a great wail rose up from the assembled villagers.", "\n\nThen a squat gross man approached, whom Hari guessed must be the pundit Shanta had entertained. \"", "There is something that must be said,\" he declared. \"", "I have reason to believe that there is scandal here that must be dealt with.\"", "\n\n\"Can't you see that this is a funeral?\" ", "the priest demanded, irritated. \"", "Whatever your business is, it can surely wait until we have done proper honor to our beloved guru.\"", "\n\n\"But it is his honor I am concerned with. ", "I have cause to believe that his wife had congress with a man not her husband, on the eve of his demise. ", "There must be punishment of both adulteress and lover!\"", "\n\nHari was shocked by this interpretation of the night's events. ", "But if the people believed it—\n\nYou made your move. ", "Here is my countermove.", "\n\nFrom where he stood Hari could not see Sharmila in the crowd, or that some of the widows and elderly women of the village had gathered around her, perhaps responsive to the suggestion of scandal the pundit was trying to make. ", "They were whispering and hissing, repeating a single word over and over again: suttee—suttee—suttee. ", "Only too late did he see her as she ran to the flaming pyre and flung herself upon it. ", "Nor did he hear Shanta cry out or see her faint as she shared her sister's brief moment of searing pain. ", "But he did see the pundit, his prime witness suddenly lost, throw up his hands in disgust. ", "There was no longer a case to be made, for if there had been a crime, its prime witness was gone, and a sinner had been punished.", "\n\nHari stood frozen, shocked and dismayed. ", "When finally his wits returned, he heard cries of praise from the villagers for Sharmila's noble sacrifice. ", "A deep hatred welled up within him, hatred for the barbaric ways of his people, and he felt himself not one of them. ", "Indeed, had he ever been?", "\n\nThe wind shifted and brought to him the odor of burning flesh. ", "He turned and ran.", "\n 10\n\n* * *\n\nThe Sack of Grain\n\nAnd now I have accomplished seven seductions, and if you are unable to kill the handsome mortal man with your next move, I will have won the contest and will be free of you for a full century, not one moment less. ", "I delight in the very notion.", "\n\nBy no means so hasty, creature. ", "Remember that I challenged the seduction involving the she-demon, because neither of us had any part in that; it happened without our influence.", "\n\nIt was a fair seduction! ", "And anyway, you cheated.", "\n\nI notified a higher authority. ", "Now I believe it is time to ask for that decision.", "\n\nWhat higher authority?", "\n\nYama, the god of death, as death is my object. ", "Will you accept his decision?", "\n\nI shall have to.", "\n\nO Yama, you know the issue and the facts of the case. ", "What do you say?", "\n\nA dense bank of clouds hung low in the sky, blocking out the waxing sun, casting a pallid shadow over the land. ", "The countryside was bleak and colorless. ", "For a moment the bank seemed to intensify, and to become truly terrible.", "\n\nThe she-demon seduction is null.", "\n\nThe narrow path upon which Hari traveled cut straight across open fields, gradually tapering to a thin line in the distance, terminating in a small black dot where it touched the horizon. ", "Hari had only the grasshoppers to keep him company, which flitted through the air all about him. ", "One landed on his forearm. ", "The insect rubbed its legs together and flicked its antennae as it surveyed its strange perch. ", "In a sign of approval, or perhaps disgust, Hari could not tell, the fearless creature opened its mandibles and deposited a drop of sticky brown substance on his arm, then flew away.", "\n\nThere you are. ", "You have only six seductions—and it remains my move.", "\n\nI think it would have been another decision, had I taken it to a more romantic god.", "\n\nNow will I make that move.", "\n\nThe sky brightened, melting away the cloud shadows, and ahead Hari saw there was a path from the west which joined the one he was on. ", "Through the glare Hari could make out the blurred outline of a lone figure on the path walking in his direction. ", "The two travelers arrived at the fork at the same time.", "\n\nBut all you did was motivate that harmless low-caste wanderer to intercept our mortal man.", "\n\nThat is enough, I think.", "\n\nHari saw that the other was a young man about his own age, though clearly poor and of low caste. ", "He was barebreasted and without sandals and wore only a tattered half-dhoti; his dense black hair was matted and unkempt and his thin dark-skinned body unwashed. ", "Yellowed teeth poked out of a slack half-opened mouth set too low in a face that was scarred and pockmarked. ", "His ears stuck out comically, belying the dark deepset eyes that peered out furtively beneath unbroken eyebrows.", "\n\nOur man will simply dismiss him, and think no more of it, for he is of far higher station.", "\n\nYou underestimate his folly. ", "He has been singularly lucky, but now he shall become singularly unlucky.", "\n\nWiping his nose with the back of his hand, the young man stepped back and bowed to Hari, waiting for the Brahmin to pass by first. ", "Fortunately the sun did not cast his unclean shadow upon the high-caste traveler—he yet carried scars for not having been attentive to such carelessness in the past.", "\n\nHari spoke: \"Good afternoon. ", "It seems we are the only travelers on this lonely road, and as we seem to be going in the same direction, why do not we travel along together? ", "It will relieve the monotony. ", "My name is Hari. ", "What is yours?\"", "\n\nUgh! ", "This could mean trouble.", "\n\nThe young man was startled at Hari's cordiality, for he was accustomed to being at best ignored and usually scorned by persons of higher caste.", "\n\n\"O Swami, my name is Suka. ", "I would be very honored to walk with you. ", "Thank you, thank you,\" he replied, his voice timid and subservient.", "\n\n\"Very well, Suka. ", "Then come, let us be on our way.\"", "\n\nThe two walked along, Suka keeping slightly to the side and a little behind Hari and not daring to speak unless spoken to first.", "\n\n\"Are you from this region, Suka?\"", "\n\n\"Oh no, Swami, I am from farther north.\"", "\n\n\"And where is it that you are traveling to?\"", "\n\n\"Oh, anywhere. ", "It does not matter. ", "It is the same everywhere. ", "Anyplace is better than my village.\"", "\n\n\"Ah, you are a wanderer in search of knowledge and adventure, then?\"", "\n\n\"Oh no, Swami, I am just running away. ", "I lived with my uncle and he always beat me. ", "So I pushed him into a dung pile and ran away.\"", "\n\n\"You have no other family, then?\"", "\n\n\"My father and mother and youngest sister are dead. ", "I have no brothers. ", "My other sisters are married—their husbands do not want me. ", "Before she died, my youngest sister liked me. ", "Her name was Ambika. ", "My uncle arranged her marriage, but her husband beat her. ", "Ambika wanted to return to my uncle's house. ", "We could have taken care of each other. ", "But my uncle would not take her back, and her mother-in-law wanted more dowry to be paid. ", "My uncle would not pay more, and so Ambika's husband and mother-in-law burned her alive. ", "They killed Ambika, but my uncle did not care. ", "He only kept me so I could work for him. ", "He is a gatherer of wood and dung-cakes. ", "He said I did not find enough wood and was lazy. ", "So every day he beat me. ", "I am glad I ran away.\"", "\n\n\"What will you do now, Suka? ", "What of your future? ", "Can you read or write?\"", "\n\n\"Oh no, Swami. ", "No one in my family can do that. ", "There are no teachers for the low-castes in my village. ", "Future? ", "I do not know that word, Swami.\"", "\n\n\"Well, today you are traveling with me. ", "What will you do next month? ", "Or next year?\"", "\n\n\"I have never thought of that. ", "I know only today. ", "Yes, the weight of each day is enough. ", "It would be too heavy if I added tomorrow's weight to today's.\"", "\n\n\"Hmm. ", "Yes, there is something to be said for traveling light.\"", "\n\n\"Ah, yes! ", "That is so, Swami,\" exclaimed Suka, suddenly beaming. \"", "Light and free, with no cares.\" ", "Suka then realized that he had spoken to a Brahmin without having first been asked a question. ", "Fearfully, he dropped back a few paces, unsure of what to expect. ", "When nothing terrible happened, he resumed his former position but remained wary. ", "He knew from bitter experience that one could never tell about the moods of the upper castes.", "\n\nToward evening a farmhouse came into view.", "\n\n\"Well, Suka, shall we stop at that farm ahead and see if we can find a bed for the night and perhaps a bite to eat?\"", "\n\n\"Yes, Swami, a good idea. ", "Let us try. ", "But please, Swami, it will be better if you talk.\"", "\n\nHari laughed. \"", "Very well, Suka.\"", "\n\nAs they neared the farmhouse, they saw a farmer weeding in a field near the road. ", "The farmer saw them and approached. ", "He was a large man with graying hair and stern demeanor. ", "Judging from the deep furrows in his brow that made a permanent frown, Hari was unsure of the reception that awaited.", "\n\n\"Blessings upon you, good sir,\" said Hari. \"", "We seek the owner of this fine farm to ask for shelter for the night.\"", "\n\nSeeing that Hari was a Brahmin, like it or not, the farmer well knew his obligation. \"", "I am the owner. ", "I suppose I can find room for you in the house. ", "But as for that one,\" pointing to Suka, \"if he is not your servant he can move on.\"", "\n\n\"No, he is a traveler like myself,\" said Hari, his voice yet civil though he felt a surge of anger. \"", "He also seeks shelter for the night. ", "Surely you can provide shelter for my companion too and thereby earn credit in the next life.\"", "\n\nThe farmer hesitated, eyeing Suka suspiciously. ", "Condescending to address the low-caste directly, he said in a surly tone: \"Well, worthless one, you will have to work for your keep. ", "There are still two hours of light left. ", "You can thrash the millet stalks piled up by the barn. ", "And you can sleep in the stalls.\"", "\n\nTurning to Hari, the farmer's tone became more amiable. \"", "You may go to the house if you like. ", "My wife will give you some cool water. ", "Dinner will be at sundown.\"", "\n\n\"I thank you,\" said Hari. \"", "But a little exercise before eating will do me good. ", "I will join Suka here in thrashing the stalks. ", "And as I do not wish to intrude, I too will sleep in the stalls.\"", "\n\nSuka stared in disbelief at Hari, thinking him quite mad. ", "Who can understand a Brahmin? ", "he wondered.", "\n\nThe farmer shrugged. \"", "As you like,\" he replied curtly, and returned to his work, muttering the while and wondering what kind of Brahmin would keep the company of a low-caste, let alone speak up for one. ", "A poor farmer, he was not far above the level of a low-caste himself. ", "If a Brahmin put himself on the same level as a low-caste good-for-nothing, where did that leave him? ", "Social order depended on strict obedience to the rules of class structure; otherwise how was one to know who one was? ", "How dare this young Brahmin break the sacred code, curse him!", "\n\nAs Hari and Suka walked past the farmhouse on the way to the barn, the farmer's wife and a young woman, doubtless the farmer's daughter, appeared at the door. ", "Hari nodded politely to them and gave the hand sign of greeting. ", "The farmer's wife returned the salutation while the young woman simply stared.", "\n\nAt the side of the barn they found a stack of stalks and set to flailing them against the barn wall. ", "The shed seeds they swept into a pile to be later winnowed. ", "Suka worked in fits and starts, stopping frequently to gaze idly about. ", "Hari worked steadily, and though annoyed at Suka's loafing, said nothing.", "\n\nNow I initiate my final seduction. ", "I can hardly wait to be free of you.", "\n\nIt was not long before the farmer's daughter appeared carrying a cup of cool well water for each of the young workers. ", "Hari thanked her and saw that she was robust and quite attractive, and especially well endowed. ", "She wore a coquettish look that she made no effort to conceal and swiveled her torso provocatively, her long black tresses swishing to and fro, as she watched the boys drink. ", "Her eyes twinkled mischievously as she first studied the one and then the other.", "\n\nAnd observe my counter, now that I have established a male in the presence of the subject.", "\n\nHari smiled, thanked her again for the drink, then returned to his work without paying her further heed. ", "But Suka leered at her boldly, looking her up and down, which she ostentatiously pretended not to notice, thus advertising to Suka her vainglorious pleasure. ", "Suka knew that her caste was not far above his own, so that a conquest was not beyond the hopes of one even such as he.", "\n\n\"I wonder what there is around here to do for fun,\" said Suka to no one in particular.", "\n\n\"Are you addressing me?\" ", "inquired the young lady in a pompous voice.", "\n\n\"Who else would I be talking to?\" ", "shot back Suka in a slightly rude tone.", "\n\n\"Some people just do not have manners,\" the young lady exclaimed, studying Hari out of the corner of her eye to see if he showed any signs of interest in the conversation. ", "Hari kept to his work.", "\n\n\"You will find the thrashing easier if you hold the stalks further back,\" she said to Hari in a friendly yet flirtatious tone, swinging her hips as she spoke.", "\n\n\"I thank you for that advice,\" said Hari as he lengthened his grasp. \"", "Yes, it is easier that way.\"", "\n\n\"You are being of great help to my father. ", "Perhaps you can remain awhile. ", "Farm life can be fun as well as work, you know.\"", "\n\nYou have motivated the low-caste man to desire the woman, but I had already motivated her to desire the Brahmin. ", "She will not be dissuaded. ", "See, she is giving him every chance.", "\n\nHari glanced at her and smiled. \"", "Oh, I am sure it can. ", "But I must be on my way in the morning. ", "I thank you for the thought.\"", "\n\nA fool and his seduction are soon parted.", "\n\n\"Tell me what kind of fun you mean,\" interjected Suka in a suggestive voice.", "\n\n\"I am sure you would like to know,\" she answered sarcastically, whereupon she wheeled about in mock anger and headed for the house. ", "After a few steps she stopped suddenly and turned, exclaiming in a pretentious singsong voice: \"My name is Nalini!\" ", "She then continued on her way.", "\n\nSuka called after her in an exaggerated imitation of her singsong voice: \"Goodbye, Nalini!\" ", "Hari was embarrassed by Suka's behavior, but said nothing. ", "After all, he told himself, Suka was only having fun in his own way.", "\n\nSuka resumed his daydreaming until he saw that the farmer was approaching, whereupon he snatched up the last bunch of stalks and energetically began pounding them against the barn wall. ", "The farmer surveyed the work that had been done and seemed satisfied.", "\n\n\"The winnowing can wait,\" said the farmer. \"", "It grows dark, so you two can stop work. ", "There is a well by the stalls to wash. ", "You will find some food on a bench near the back door of the house.\" ", "With that the farmer walked off, his manner toward Hari distinctly less cordial than before.", "\n\nAs Hari washed at the well, he saw that Suka barely sprinkled a few drops of water on his hands and face and grimaced at that. ", "Suka muttered to himself, for he would not have made even that small pretense at washing were it not for the Brahmin's elaborate display of cleansing the body.", "\n\nBehind the farmhouse, as the farmer had promised, they found their dinner: a bowl of vegetable curry, some sambar, a platter of rice, a bowl of milk, and two mangoes. ", "Suka waited for Hari to take his share of the food first, and dearly hoped there would be a decent portion left over for him. ", "He could hardly believe his ears when Hari invited him to help himself first, which convinced him that this was a crazy Brahmin indeed.", "\n\nSuka reached into the curry bowl with his left hand and plunged his right into the rice, emerging with the lion's share of both. ", "He proceeded to stuff both his hands into his mouth at the same time, gulping down the food in great quantities, bits of it dribbling down his face. ", "Hari took some sambar, milk, and a mango before they too became polluted, and left the rest to Suka, who, from his eager display and accompanying sound effects, was probably hungrier anyway.", "\n\nWhen the food was gone, Suka wiped his mouth with the back of his hand, burped loudly, broke wind, and uttered a grunt of satisfaction. ", "He and Hari then headed for the stalls, which were located beyond the barn, to find a place to bed for the night.", "\n\nThe stalls were in a small outbuilding which contained two compartments separated by a wooden partition. ", "One of the compartments housed several sacks of grain, which lay side by side on the floor. ", "The other was empty, except for a heavy floor-covering of hay.", "\n\n\"It seems we can each have a private room to ourselves, Suka. ", "Do you have any preference? ", "We can take some of the hay from this stall and put it in the other so we will both be comfortable.\"", "\n\n\"Oh no, Swami, you take the hay. ", "I am used to hardness for my sleep. ", "Hay is too soft for me. ", "I will sleep on the bags of grain.\"", "\n\n\"Very well, Suka, if you prefer. ", "Good night, then. ", "Until morning and the call of Surya.\"", "\n\nSuka bowed. \"", "Good night, Swami.\"", "\n\nHari closed only the bottom half of the swinging door at the front of the stall, leaving the top open so that he could see the stars. ", "There was also a small rear window which he opened to let the night breeze pass through. ", "Lying on his back he inhaled deeply of the cool sweet air which mingled with the fragrance of freshly cut hay. ", "He yawned. ", "Taking the book the guru had given him from beneath his tunic, he placed it under his head to use as a pillow. ", "Through half-shut eyes he watched the twinkling stars—were they perhaps the beautiful nymphs of Indra's heaven winking at him?—and listened to the soft chirping of the crickets echoing in the vast silence beyond. ", "A small lizard clung to the wall, and the light of a moon sparkled in its unblinking eyes, reflecting a ray of peace into Hari's soul.", "\n\nBut his tranquility was short-lived, for from the next stall there suddenly arose a raucous noise not unlike the snorts of a chained bullock that had winded a cow in heat. ", "Suka! ", "He was snoring. ", "Hari sighed at his karma and turned over on his side. ", "But to no avail. ", "The snoring grew louder, taking on a dissonant, irregular sonority that crescendoed and exploded into a staccato-like sputtering, culminating in a horrendous sneeze. ", "Thereafter, for a time, the snoring was quieter and assumed a rhythmical regularity, punctuated only occasionally by a hissing wheeze or multitonal nasal whistle. ", "For that, Hari was grateful.", "\n\nIt was during one of Suka's less turbulent intervals that Hari heard footsteps coming down the path toward the stalls. ", "The footsteps got closer, then stopped quite close by. ", "Hari pretended to be asleep, but kept his eyes open a slit. ", "In the moonlight he saw a head slowly rising above the edge of the stall door, and when it reached full ascendance he saw that it was Nalini. \"", "Brahmin!\" ", "she whispered. \"", "I have come to show you what we do for fun.\"", "\n\nHari could no longer feign ignorance. \"", "I thank you, but I am weary and prefer to sleep.\"", "\n\nThe utter dimwit!", "\n\n\"You reject me?\" ", "she demanded, rapidly developing a fury.", "\n\nHari had encountered such a reaction before, so was wary. \"", "By no means. ", "I merely feel that such a liaison is inappropriate in this, ah, circumstance, and beg you to return to your home.\"", "\n\nShe made an exclamation of disgust. ", "Then the head quickly lowered itself and disappeared. ", "The footsteps resumed and seemed to be heading for the next stall.", "\n\nWhy do you not touch her again, and make her seek your man more ardently?", "\n\nBecause as you know it is a lost cause, when he refuses her. ", "I shall save my move to save his life, if he blunders worse.", "\n\nSuka, fast asleep, did not hear the stall door open. ", "Only when he felt a smart pinch on his buttocks did he jump up, his hand automatically clapping itself against the offending part of his anatomy, for, having frequently been bitten by insects in the night, he was quite adept at taking instant revenge.", "\n\nLo: there standing before him was none other than Nalini, and she was wearing nothing but a thin nightcloth around her body and a smirk on her face. ", "Suka instantly guessed the reason for her nocturnal visit.", "\n\n\"The Brahmin is in the next stall,\" he said derisively. \"", "You came to the wrong place.\"", "\n\n\"I know where the Brahmin sleeps,\" she replied haughtily, being careful not to speak too loudly, yet at the same time loudly enough to be sure that Hari overheard. \"", "I came to the right place. ", "It is you I want.\" ", "With that, Nalini slipped out of her nightgown and stood unclothed before Suka, naked except for the gold chain she wore around her neck.", "\n\nSuka could hardly believe his good fortune and fairly drooled at her voluptuousness. ", "Having lived a life of want where grasping at every opportunity without hesitation often meant the difference between feast and famine, he delayed not to appease his escalating appetite. ", "Grabbing Nalini roughly by the arm, he pulled her down onto the sacks of grain and proceeded to assault her without further ado. ", "And as it happened, perhaps not surprisingly, this economical approach pleased Nalini immensely, and she quickly rose to a blissful pitch of intensity that matched and even surpassed her partner's.", "\n\nYou see, all I needed to do was provide an object to focus your mortal man's foolishness, and he ruins your ploy himself. ", "This is better than gambling on single moves that you can then counter.", "\n\nThere are other women.", "\n\nIf he does not blunder himself into death before he accepts them.", "\n\nHari, in the next stall, could not help but hear the conversation and ensuing sound effects through the partition. ", "Nalini's choice of a lover at first amazed him and even pinched his ego. ", "But on reflection he realized their basic compatibility. ", "Nalini wanted immediate physical gratification and was not interested in lofty conversation or the subtleties of foreplay. ", "And perhaps she wanted more than just one night's companionship. ", "Perhaps she wanted a permanent relationship—something a Brahmin could not give her, but a homeless low-caste just might, with the proper incentive.", "\n\nHari's musings were interrupted by a scratching sound accompanied by an occasional clucking, and he could see through the moonlit space beneath the stall door that a chicken was picking around on the ground outside. ", "He watched as the chicken's feet made their way along the outside wall of the stall in the direction of the grain compartment before disappearing from sight beyond the edge of the door.", "\n\nThe chicken, upon a well-trodden mission, spotted the familiar space beneath the door of the grain stall and easily squeezed through. ", "Once inside it commenced to search out bits of grain that were inevitably scattered on the floor, emitting a contented cluck whenever a choice morsel presented itself. ", "Engrossed in its culinary quest, the fowl ignored the strange motions and even stranger sounds of the two humans lying astride the sacks. ", "However, it was not long before the floor was picked clean, and the chicken discovered a good reason to abandon its indifference to strange motions of the humans.", "\n\nThere was a small hole in one of the grain sacks upon which the two humans lay, and whenever the uppermost delivered a particularly hard thrust to the undermost, the resulting shock to the sack caused a few grains to pop out onto the floor. ", "The chicken was delighted at discovering this new source of supply, which seemed a veritable cornucopia. ", "It now stood watching the kinetic exhibition with awakened interest, waiting patiently for that special thrust that would deliver up its next ration of grain.", "\n\nThe clucks of pleasure from the chicken mingled with the grunts and groans of the human activators, and although Hari next door was oblivious to the casual links in the chain that led to the chicken's stomach, he fairly grimaced at the rudely imposed cacophony of the unlikely trio of Suka, Nalini, and their unwitting accompanist.", "\n\nSuddenly the trio became a quartet as above the din Hari heard the sound of the farmer's voice in the distance. \"", "Come, chick! ", "Come chick!\" ", "the farmer was calling. ", "Hari leapt up and peered through a crack in the door. ", "Walking slowly toward the stalls he could see the farmer, lantern in hand, searching about and calling the recalcitrant chicken.", "\n\n\"Come chick! ", "Come chick!\" ", "the farmer cried. \"", "Bish! ", "Bish! ", "Bish! ", "Back to your coop.\"", "\n\nHari guessed the farmer knew the chicken's favorite haunts and would look for it in the grain stall. ", "The thought of Suka and Nalini being caught unawares in naked embrace by the farmer filled Hari with terror. ", "The consequences could be devastating, too horrible even to contemplate. ", "He must warn them. ", "No, that would be dangerous. ", "What if Nalini or Suka should panic and do something foolish and bring down disaster on them both? ", "Better that the chicken should be moved elsewhere and used to lure the farmer away from the stalls.", "\n\nQuickly and quietly Hari crept on all fours out of his stall and into the grain compartment, opening both doors just enough to squeeze through. ", "Keeping to the shadows, he snuck up on the unsuspecting chicken from behind and grabbed it, clapping one hand over its beak to prevent an outcry. ", "Suka and Nalini, yet in the throes of passion, were oblivious to their surroundings and so did not see him—to his great relief. ", "Clasping the struggling chicken to his breast, he crept out of the stall and into the cover of the tall grass that lined the path. ", "Slowly and with difficulty, scratching his legs and arms in the rough grass, he crawled toward the farmhouse. ", "Upon reaching a position behind the farmer and well toward the house, he released his hand from the chicken's beak and gave the creature a good squeeze, whereupon to his relief it uttered a resounding squawk. ", "He peered through the grass and saw the farmer, now only yards from the stalls, stop and turn around. \"", "Chick! ", "Chick!\" ", "the farmer called. \"", "Where are you, you feathered offspring of a demon?\"", "\n\nHari crawled several yards closer to the farmhouse and again gave the chicken a healthy squeeze. ", "But by this time the fowl had become quite exasperated, and instead of sounding off it chose to grasp Hari's nose in its beak. ", "Hari muffled a cry, cursed the fickle fowl beneath his breath, and realized he would have to assume the task of baiting the farmer himself. ", "Taking a deep breath he pursed his mouth and let out a magnificent squawk, which was apparently sufficiently authentic for the farmer to start walking back toward the house. ", "The chicken too was evidently impressed, and without further encouragement began to sound off of its own accord, perhaps choosing not to be outdone by the strange human's clumsy imitation.", "\n\nAt a turn in the path Hari dashed out of the grass and made his way unseen to the chicken coop, a small structure that stood alone not far from the farmhouse. ", "Upon seeing its home, the chicken set up a loud ruckus which ceased only when Hari thrust the unruly bird through the door of the coop. ", "Looking back, Hari saw that the farmer was fast approaching. ", "He was in the open now, and there was not enough time to run for cover without being seen. ", "There was no help for it—he must join the chicken.", "\n\nInto the coop he scrambled, barely squeezing through the door on all fours. ", "Luckily, the pen was solidly built and well enclosed, and would serve to conceal him as long as the farmer did not peer in through the door.", "\n\nThe farmer came up to the coop and called out: \"Chick! ", "Chick! ", "Are you in there?\"", "\n\nThe chicken, settled comfortably on a roost just above Hari's head, chose not to answer. ", "Hari worried that if the farmer did not hear from the chicken forthwith, he might look in through the doorway. ", "He knew that if he was discovered there would be no explaining the situation. ", "And the shock might well be injurious to the farmer. ", "There was nothing else to do but for him to take the part of the chicken and reply to the farmer's call.", "\n\nHari inhaled deeply, shut his eyes, and emitted what turned out to be a reasonable facsimile of a satisfied chicken squawk. ", "But just as he did so the fowl also decided to speak out. ", "However, the chicken's cry was at a decidedly higher pitch than his roommate's, and Hari prayed silently to the goddess Lakshmi that the farmer had heard only one combined squawk and not two. ", "The goddess was compassionate, and the farmer, satisfied that the chicken was safely back in its pen, closed the coop door and returned to the farmhouse.", "\n\nHari breathed a deep sigh of relief, though the chicken apparently did not share the Brahmin's feelings. ", "Having failed to expose the intruder in its house, the fowl issued a final and decisive protest in the form of a prodigious dropping which it deposited squarely atop Hari's head. ", "Hari clenched his teeth in utter frustration, and reminded himself that he was a vegetarian and bound not to harm any of nature's innocent creatures.", "\n\nHaving determined it was now safe to leave the coop, Hari backed up against the door, only to discover to his horror that it would not open. ", "Turning himself around, not without difficulty, and thereby further decorating his anatomy with excrement, he saw that the door had been latched from the outside. ", "He pushed his forefinger through a wire opening in the door, but could not reach the latch. ", "He sighed and settled back to ponder the matter.", "\n\nAn hour passed before a solution suggested itself. ", "He could use the chain holding the medallion which hung around his neck to lift up the latch. ", "But, alas, the chain was not quite long enough. ", "Looking about he found some moulted chicken quills on the floor of the coop. ", "These he braided together and onto the chain to increase its length, and lo, he was then able to reach and lift the latch handle.", "\n\nExhausted, Hari made his way back to the stall and flopped down on his bed of hay. ", "He could hear Suka snoring next door, and guessed that Nalini had long since returned to the house. ", "Sleep fell upon him like a leaden weight.", "\n\nNalini arose at sunrise as was the custom on the farm. ", "She was in a cheerful mood and hummed softly as she helped her mother prepare the breakfast table. ", "Her father, accustomed to silence at that hour of the morning, grumbled and cast a disapproving glance at his daughter. ", "His brows knitted.", "\n\n\"Nalini, come here,\" he ordered in a gruff tone. ", "Nalini did as she was bade. \"", "Where is your gold chain?\" ", "he asked. ", "He had given the chain to her when she was a child, and she had never taken it from her neck. ", "It had been his mother's and was the only piece of jewelry the family possessed.", "\n\n\"Oh! ", "He must have taken it last night!\" ", "Nalini blurted out without thinking.", "\n\n\"Who took it?\" ", "Her father shouted angrily as he grabbed her by the wrist. ", "Nalini was terrified.", "\n\n\"It was—\" She realized that the truth would be utterly disastrous, so shaded it somewhat. \"", "It was the Brahmin!\"", "\n\nAh! ", "Now it comes!", "\n\n\"So! ", "You were cavorting with the Brahmin in the stalls, were you? ", "And he stole your chain, did he?\" ", "With that the farmer smacked Nalini across the face and sent her sprawling, whereupon she commenced wailing at the top of her lungs.", "\n\nThe farmer stormed out of the house in a rage and headed for the stalls. ", "On his way he picked up a stout stick from the ground, which he swished through the air a few times to test its feel.", "\n\nJolted from his sleep by a sharp pain on his back, Hari leapt to his feet. ", "There before him stood the farmer, red-faced and shaking with rage, clutching an upraised stick. ", "The stick descended swiftly and caught Hari in the side. ", "Taken by surprise, Hari could only gape at the enraged farmer in utter bewilderment. ", "Before he could speak the stick descended again, this time hard across his shoulders. ", "Quickly reaching for his book, he held it up just in time to shield himself from a blow across the face. ", "He realized this was not a time for rational inquiry, but rather one for running. ", "But the heavy bulk of the farmer blocked the doorway. ", "So with a leap and a bound Hari hurled himself through the open rear window, and as he sailed through the air he felt the stick slash across his buttocks.", "\n\nHis landing was a soft one, if not wholly aesthetic. ", "He dropped head first into a pile of cow dung. ", "Trying desperately to gain his feet, he fell back repeatedly in the slippery muck, thereby spreading the sticky feculence liberally over his body. ", "It was hardly a consolation that the offal salved the pulsating welt on his buttocks. ", "That he was involuntarily merdiverous he was sure did not technically violate vegetarian rules.", "\n\nHe escaped the mire only by crawling out on his hands and knees. ", "Fortunately his book had been thrown clear of the dung heap. ", "He picked it up just as the farmer rounded the corner, rushing at him stick in hand and yelling something about a chain. ", "Without stay or delay Hari took to his feet and galloped off through the fields toward the main path, leaving a trail of dung in his wake. ", "He could hear the farmer shouting at him as he ran, and he did not slow his pace until the farm was far behind him.", "\n\nPanting, he sat down on a rock by the path to catch his breath, only to be greeted by the fetid odor he carried about with him. ", "Too, his feet were sore and he realized that he must have left his sandals behind in the farmer's stall. ", "Flies gathered around him in swarms, covering every part of his body, and he repeatedly had to remind himself of his Brahminical heritage which forbade him from swatting the bothersome insects. ", "So he took to his feet; at least when he kept moving most of the flies left his body. ", "He prayed he would soon find water that he might wash himself.", "\n\nHe wondered why the farmer had beaten him and what had happened to Suka. ", "He hoped that the poor low-caste had escaped unharmed.", "\n\nThe land became greener as low rolling hills replaced the flat open fields. ", "He came upon a stream where he washed his body and clothing, then sat beneath a banyan tree to read while he waited for his tunic to dry in the sun.", "\n\nFurther along the path he came upon a grove of coconut palms, and there lying beneath one of the trees fast asleep and snoring loudly, a half-eaten coconut on his lap, was Suka. ", "Wrapped around Suka's arm was a golden chain, and on his feet were Hari's sandals. ", "Hari shook his head and sighed, then carefully eased the sandals off the sleeper's feet, slipped them on his own, and continued on his journey.", "\n\nWell, it seems our man is still alive and well.", "\n\nIf I failed, so did you. ", "The game is not over.", "\n 11\n\n* * *\n\nThe Lake Palace\n\nFrom the summit of a cloud-capped hill Hari could make out the spires of the rajah's palace glistening in the distance. ", "The city of Pitali at last.", "\n\nIt began to drizzle and he quickened his pace. ", "The deaths of the guru and Sharmila lay heavy upon him and, too, he was worried about the old rana. ", "How strange, he thought: only a short while ago his life had been simple and carefree, blind to the serpents of misfortune that now seemed to lurk beneath every rock. ", "He had left home in search of adventure, to consume the pleasures of the moment, only to find that pleasure had a cost, a cost measured in sorrow and pain. ", "He understood now the wisdom of his village teacher, the need for mortals to escape the reality of the senses, to close out the world and merge with the universal soul. ", "Time wore a new face, and in its unblinking eyes he saw reflected the ceaseless tides of past and future sweeping all before, tossing up scraps of mortal souls like so much drift upon the sea.", "\n\nUpon arriving at the city gates, he was allowed to pass through after only a cursory search. ", "The streets were bustling with activity and everything appeared quite normal. ", "The chief guard at the palace gate remembered him and personally escorted him to a receiving room in the main building. ", "Before long the rajah's advisor, the dewan Amul, arrived and greeted him, courteously if coolly. ", "The advisor explained that the rajah was at the moment presiding at a state meeting but would see him shortly. ", "Amul then summoned a servant and ordered that Hari be shown to the same room in the palace he had occupied previously.", "\n\nIt was not long before a guard knocked on Hari's door, saying that the rajah was ready to receive him. ", "He was led to a private audience chamber and in a few moments the rajah arrived. ", "Hari could not help noticing that the rajah seemed tired and careworn.", "\n\n\"Ah, I am glad to see you again, my young friend,\" he said, embracing Hari warmly. \"", "And all in one piece. ", "Good. ", "We missed you.", "\n\n\"I want to hear your report, but first I have news for you. ", "Much has happened since we last spoke. ", "To begin with, not five days ago I had a state visit from the Rana of Madresh himself. ", "I can see you are surprised. ", "I was myself. ", "Until now he had been quite aloof and, indeed, suspect. ", "Hence the reason I sent you to Madresh. ", "But that matter is now cleared up, with good result I am happy to say. ", "The rana told me an interesting story.", "\n\n\"It seems there was a plot within his own palace to assassinate him and usurp the throne. ", "The perpetrator and pretender was none other than his own dewan, one Koti, who was joined in the treachery by the rani herself and a handful of others—an army general and several well-placed officers. ", "It was they who had isolated the rana and discouraged him from any contact with neighboring chiefs of state. ", "Fortunately, for the rana as well as for us, the old fox somehow learned of the plot. ", "His palace guard was still loyal, and in a single night the rana captured or killed the leaders of the cabal—that is, all but the two main devils. ", "The dewan and the rani escaped. ", "The rana learned that they rode north to ally with the Mogul king, Akbar.", "\n\n\"The rana also mentioned a young traveler, a Brahmin, who he believed was unjustly victimized by this Koti, and perhaps killed. ", "The Brahmin's disappearance seemed to be of great concern to the king. ", "I guessed it was you.\"", "\n\n\"Yes, Lord, it was,\" said Hari, relieved to learn that the rana was alive and well.", "\n\n\"Well, I will send the rana a message letting him know that you have been rediscovered. ", "He left a cartful of homing pigeons with me for the very purpose of expediting messages, and I also gave him some birds from my palace loft.", "\n\n\"But it is this Akbar that has me worried now. ", "Not much is known about him. ", "He is said to have Turkish blood in his veins and to have beheaded a Hindu with one stroke of his scimitar at the age of fourteen. ", "Some say he is an illiterate barbarian, and others say he is a man of culture—a philosopher no less. ", "But more to the point, he is said to have an army numbering in the tens of thousands. ", "If so, he would be a formidable foe indeed. ", "As a protective measure I have been trying to convince the other provincial kings of the south to join with me in an alliance for our common defense.", "\n\n\"Yes, for all his might, it may be that this Akbar is mad. ", "It is said he seeks to combine and unite under one roof all the religions and cultures on the continent. ", "What insanity! ", "With such ideas perhaps he will defeat himself.", "\n\n\"As for the rani and the dewan, Koti, I am sure Akbar welcomed them with open arms. ", "Now he has a queen of the south to show off as a supplicant. ", "According to intelligence the rana has received, Akbar has given Koti a high rank in his army. ", "Hmm. ", "The Mogul had better watch his back.", "\n\n\"Now I must tell you some sad news, Hari. ", "Our friend the zamindar is dead. ", "I just received the report, and am massing my troops to occupy the area and wreak vengeance if they can, though I fear it is already too late. ", "Apparently a surprise attack was made on his palace. ", "His troops were badly outnumbered. ", "I am sure he and his men fought valiantly, but the raiders used flame-arrows and set the palace afire. ", "No one survived. ", "A tragic event—one that will not happen again if I can help it. ", "We do not know who the attackers were. ", "They may have been a roving band of outlaws, or mercenaries, or a raiding party from the north. ", "It may be that Akbar is behind it, but there is no proof. ", "I have had reports of spies dressed in black riding about the hills by night, and we have been trying to capture one of them to learn what we can. ", "But they have evaded us thus far.\"", "\n\nBut that is not true! ", "The zamindar was never attacked.", "\n\nIt was a false report, made by a spy the rajah does not suspect. ", "The intent is to cause him to organize for a fancied threat in the wrong direction, so that he will be ill prepared for the real threat when it comes. ", "His enemy is cunning.", "\n\nBut this affects my mortal man, for he has the zamindar's amulet, and now may fail to return it.", "\n\nThat is no concern of ours, as we did not cause this report to be made. ", "In a few days the truth will be ascertained—by which time there may be another false report from another direction, putting the rajah farther off balance. ", "Mortal politics can be pretty to watch.", "\n\nI suppose so, for monsters. ", "Meanwhile, we shall complete our contest. ", "You shall not deny me my final seduction.", "\n\nNor do I wish to deny you your effort, for then the move will be mine, and I will kill him and win your favors for the coming century.", "\n\nThe mere thought appalls me.", "\n\nThe mere thought of your being appalled delights me. ", "I shall encourage you to scream with revulsion as I endlessly smite your lusciousness.", "\n\nNever!", "\n\n\"And now tell me of your exploits in Madresh,\" said the rajah. \"", "Did you learn anything that might be of value in dealing with this new threat from the north?\"", "\n\nHari only half heard the rajah's question. ", "He was thinking of the zamindar, recalling his infectious laugh, the merry twinkle in his eye, and his many kindnesses to him. ", "And he thought of Balu, too. ", "And Meena, lovely Meena. ", "He choked back a sob. ", "It was surely his fault, for he had deprived the zamindar of his protection: the talisman.", "\n\n\"Was there nothing, then, Hari?\" ", "asked the rajah.", "\n\n\"Oh, please forgive me, Lord. ", "I was distracted by the unfortunate news, for the zamindar was a fine man. ", "Yes, there is something that might be of value.\"", "\n\nBut he has no suspicion of the truth: that it is a lovely lie.", "\n\nBecause he is a good mortal man, who is not of a suspicious nature. ", "I like him well for that.", "\n\nNaïvete must be hard to come by, for a creature like you. ", "Yet you know you can never touch him directly, whereas I am freely available.", "\n\nI enjoy his embrace when I enter a mortal woman he clasps; I feel her feelings, and I shall do that often once I am rid of you.", "\n\n\"Suspecting that I was a spy, the Rani of Madresh sent me into a vast underground cavern to die. ", "The cavern extends for many leagues from a point near the rana's palace to the northern edge of the Land of Peril. ", "I discovered the southern exit to the caverns and thereby entered and passed safely through the Land of Peril into Madra. ", "I am sure that no one knows of this secret route which leads to the north. ", "Perhaps it could be of some importance in the future. ", "The secret of passing through the underground caverns is to follow the way of the amber spears which grow from the ceiling. ", "As for the strange phenomena in the Land of Peril, they are all natural—freak events of nature. ", "They are fearful to behold, but it is mostly one's own imaginary terrors that are dangerous, not the region itself. ", "Once warned and instructed, an army could pass northward through the Land of Peril and the caverns safe and unseen.\"", "\n\nThe oaf has a better grasp of military relevance than I supposed.", "\n\n\"Also, in the southern part of the caverns I saw rich deposits of iron ore and a vast supply of saltpeter. ", "There are also great quantities of bat guano, enough to fertilize many fields for many years.\"", "\n\nAnd of commerce and agriculture.", "\n\n\"Ah, Hari, these are valuable discoveries indeed!\" ", "exclaimed the rajah. \"", "Amazing, quite amazing. ", "You have done a great service to your country and your ruler. ", "For such knowledge, you have earned a reward. ", "Name it and I will grant it. ", "What is your wish?\"", "\n\n\"I thank you, my rajah. ", "But to be able to help is enough. ", "I have only one wish at the moment and that is to return home. ", "It has been long since I have seen my family, and I miss them.\"", "\n\nYet he remains a fool. ", "He could have had an appointment to the zamindar's position.", "\n\nExcept that that position is not open. ", "In any event, he is a seeker of grace, not of power, and I respect that.", "\n\nRespect it? ", "You are falling in love with the simpleton.", "\n\n\"I understand your feelings, Hari. ", "Very well, but I will be sorry to see you go. ", "Know that the doors of my palace will always be open to you. ", "But before you depart I pray you will visit a few days with me at my lake palace which is but a few leagues to the south. ", "The rest will do you good.\"", "\n\nHari bowed in acceptance.", "\n\n\"Good! ", "My daughters are already there and will be glad to see you again. ", "Sukunya has asked about you often. ", "Since no one knows about your secret mission to Madresh, she thinks you have been off wandering through the countryside making merry. ", "So you may be in for some teasing.\"", "\n\nHari returned to his room, bathed, and donned fresh clothing. ", "He was then led by a servant to the royal stables where the rajah awaited him.", "\n\n\"We will travel by horse,\" said the rajah. \"", "It will be fast and also fun. ", "Pick out a steed that suits you.\"", "\n\nHari looked over the many magnificent horses and chose a speckled Arabian that was slightly smaller but perkier than the rajah's black stallion. ", "In one of the stalls he saw his friend who had earlier carried him to Madresh, and he patted the old fellow on the neck. ", "The horse nodded and snorted, although whether in happy recognition or disapproval at his choice of steeds, Hari could not tell.", "\n\n\"The old boy may not be much to look at or very fast,\" said the rajah, \"but he is faithful and reliable nonetheless. ", "And since he performed his duty so well in delivering you to the border, he has earned the right to loll around and enjoy his oats.\"", "\n\nThe rajah and Hari mounted their steeds, both resplendent in jewel-encrusted saddles and red tassels, and followed their equestrian escort through the city streets and into the southern hills. ", "The afternoon was bright and they moved along at a steady canter.", "\n\nIt was not long before the lake palace came into view. ", "The rajah leaned forward and whispered something to his stallion. ", "Then in a burst of speed the horse charged ahead, outrunning the entire party, the rajah urging him on. ", "Chagrined at the rajah's behavior, the captain of the escort, whose duty it was to remain close to and protect his master, immediately took off in pursuit, galloping at full speed and signaling the rest of the troop to follow. ", "Hari joined in the chase. ", "His Arabian was fast and soon passed the guards and came abreast of the rajah.", "\n\n\"A race!\" ", "shouted the rajah. \"", "First to the palace gate!\"", "\n\nHari nodded and urged his steed forward. ", "The Arabian gradually pulled ahead, but the black had greater stamina. ", "In the last half-league the speckled tired and slowed, and the rajah arrived at the palace gate several lengths ahead. ", "Hari bowed to the victor and they both laughed heartily. ", "The captain, red-faced, pulled up behind them and barked orders for his men to fall into formation and escort the rajah into the palace grounds. ", "The rajah suppressed his merriment so as not to further embarrass the captain, satisfying himself with an exchange of amused smiles with Hari.", "\n\nHari marveled at the beauty of the palace. ", "Constructed of white marble, it stretched in a long, graceful semicir- cle around the contour of a shimmering blue lake. ", "Slender turrets rose from each corner, and running between were scalloped portals inlaid with semiprecious stones and laced screens intricately carved from stone. ", "Etched in the marble walls were elaborate floral designs, graceful arabesques, and figures of the gods at love and play. ", "Walled gardens and cascading fountains lined the walkways, beyond which stately rows of cypresses hovered along the water's edge. ", "White swans glided beneath the overhanging branches, which bowed to them in the breeze.", "\n\nWithin the palace the walls were of polished marble of many hues, their edges accented with agate and jasper engraved in floral designs. ", "The inner hallway was painted with panoramic scenes from the Ramayana and Mahabharata; its domed ceiling sparkled with inset jewels to simulate the stars and planets by night and the sun and sky by day.", "\n\nHari was shown to a room overlooking the lake, and from his balcony he watched the rajah's majestic sailboat gliding into dock. ", "The triplets were aboard and waved to him excitedly. ", "He watched them as they disappeared into the palace, Sukunya hindmost. ", "Seeing her reminded him that he had better check the lock on his door. ", "Much to his relief he found that the door had no lock, which he presumed was the case in all the rooms. ", "He did not want to be trapped again by the crafty Sukunya and have to pay an outrageous price to be released. ", "It did not occur to him that a door lock also served another purpose—to keep people out.", "\n\nAt dinner Suseela and Saras plied him with questions about his travels, and they listened in fascination and feigned terror as he told them about the terrible cloud monster and the poisonous purple mist. ", "They applauded and breathed a great sigh of relief when he explained the scientific reasons for these phenomena. ", "Sukunya, though, was more interested in hearing about his romantic adventures, but he cleverly avoided answering her questions directly so that she pouted and wrinkled her brow.", "\n\nNow I make my move. ", "I touch Suseela with passion for the handsome quest.", "\n\nBut Sukunya's passion has not yet worn off. ", "Perhaps it is deceit as much as coupling that she enjoys.", "\n\nHari has little remaining interest in Sukunya, however; she made him work too hard before. ", "He seeks to avoid her. ", "So Suseela will have the advantage in snaring him.", "\n\nAfter dinner Suseela and Saras insisted on taking Hari for a moonlight sail, though Sukunya showed little interest. ", "Finding it impossible to refuse the invitation, accompanied as it was by not a little arm pulling, especially by Suseela, he consented, although he would rather have retired early to catch up on his sleep. ", "But the sail proved enjoyable and he was glad he went. ", "The view of the palace and the starlit heavens reflected in the lake was breathtaking, and the cool breeze that blew in his face and filled the sails relaxed his mind and soothed his soul. ", "Too, he enjoyed watching the fish jump beside the boat, their silver bodies glittering in the moonlight; Suseela attracted great schools of them by tossing bits of bread overboard, and he could not help noticing that in her distraction she displayed rather more flesh than was proper. ", "Naturally he did not speak of that, and neither did he embarrass her by becoming obvious in his attention. ", "Ducks swam alongside quacking for a handout and performed funny antics as they chased about trying to steal one another's piece of bread.", "\n\n\"Perhaps it is time to return to the palace,\" Saras remarked after a time.", "\n\n\"Oh, are you tired, my sister?\" ", "Suseela inquired solicitously. \"", "I remain full of energy.\" ", "She darted a glance at Hari. \"", "And I am sure our honored guest wishes to see all of what the lake has to offer. ", "Why don't you return, and I will undertake to show him what he may not suspect?\"", "\n\n\"I could not do that,\" Saras protested. \"", "For it is well known that appearance is as important as reality, and some might insinuate that a princess who sailed alone with a visitor was compromised by the mere fact of it. ", "I would not want my selfishness to bring any such hint of a taint to your reputation. ", "I shall remain.\"", "\n\n\"It is good to have a sister who is so solicitous of my reputation,\" Suseela said, though somehow her appreciation seemed less than wholehearted.", "\n\nThey showed him the remaining wonders of the lake, and Suseela especially seemed eager to make his excursion comfortable. ", "But she remained somewhat careless about her dress and posture, so that though Hari would never be so crass as to remark on it to any person, he was satisfied that her feminine endowments were in every respect the match for those of her sister Sukunya. ", "In fact he could not help wondering what her body might feel like, were he able to explore it more closely. ", "He almost wished that Saras had elected to go to shore early, though of course that thought was unfair to Suseela's reputation.", "\n\nIt was late when the boat docked, and after bidding the girls good night, aware of an uncommonly long glance from Suseela as she returned his courtesy, Hari went directly to bed.", "\n\nAs he crawled beneath the blankets his leg bumped into something. ", "He lifted a corner of the blanket to see what it was, only to discover a strange leg. ", "He raised the blanket higher and saw that the leg had a mate and was attached to a quite naked and lovely female torso.", "\n\nWhat is this?", "\n\nDelicious deceit.", "\n\n\"Oh!\" ", "came a voice from under the blanket. ", "Hari saw a hand appear above the covers. ", "The hand pulled the blanket down to reveal none other than the face of—of whom? ", "It was one of the triplets, but which one?", "\n\n\"Hari! ", "What are you doing in my bed?\" ", "the young lady asked in an astonished voice. \"", "You woke me up. ", "Why are you here?\"", "\n\n\"Ah—ah—\" stammered Hari nervously. \"", "Who—which sister are you?\"", "\n\n\"Which do you suppose I am?\" ", "she returned archly.", "\n\nHari, ashamed of himself, replied with the name of the one he wanted her to be. \"", "Suseela.\"", "\n\n\"Suseela!\" ", "She sounded outraged, but he did not understand that at first. ", "He took her tone for agreement. \"", "What makes you say that?\"", "\n\n\"I noted the care with which you attended me on the boat, and I must confess that I was intrigued by your form. ", "But I apologize for intruding on you, and I shall immediately withdraw. ", "The doors look alike, and I must have come to the wrong room.\"", "\n\n\"On the boat? ", "How did you interact with me there?\"", "\n\n\"I am sure it was merely your distraction,\" he said, concerned that he not give further offense. \"", "At times your limbs inadvertently showed, and I could not help appreciating their rondure and symmetry.\"", "\n\n\"My accidental exposure,\" she said thoughtfully. \"", "I begin to understand. ", "It seems that what one sister likes, so does another.\"", "\n\nHari began to suffer doubt. \"", "You are Suseela? ", "I did not hear you deny it, but neither did I hear you accede to it.\"", "\n\nShe came to a decision. \"", "You guessed at the one who seemed to show interest in you today. ", "Were you to guess again, whom would you choose?\"", "\n\nHe realized that there was potential awkwardness here. ", "But all he could do was name the next one he would like her to be. ", "Familiarity was better than outraged innocence. \"", "Sukunya.\"", "\n\n\"This time you are correct.\"", "\n\nHe was not sure of that, because of the deviousness of her attitude. ", "He had been deceived about their identities before. \"", "You are—\"\n\n\"Sukunya, of course.\"", "\n\n\"How—how do I know you are Sukunya?\"", "\n\n\"Well, if it were anyone else but me, you would be hearing screams, not questions. ", "Have we not been in similar circumstances before?\"", "\n\nHari now believed it was Sukunya, and for that much he was grateful.", "\n\n\"I—I thought this was my bedroom,\" he explained. \"", "Please forgive me. ", "I will go now.\"", "\n\n\"Just a moment,\" snapped Sukunya in an angry tone as she grasped Hari by the arm. \"", "You enter my room and bed uninvited, you wake me up, you look upon my unclothed body, and then you rudely dismiss me. ", "Am I so ugly that you should insult me that way?\"", "\n\n\"Shh—shh, Sukunya, please do not raise your voice,\" whispered Hari in near panic. \"", "Someone will hear. ", "I did not mean to insult you, please believe me. ", "Of course you are beautiful. ", "You are very beautiful. ", "But—but I did not mean to disturb your sleep—it was an accident. ", "I am only leaving so you can continue with your sleep.\"", "\n\nSukunya kept her grasp on his arm. \"", "But since you woke me, I am no longer sleepy. ", "You will have to make me sleepy again.\"", "\n\n\"How can I do that? ", "Do you want me to tell you a story?\"", "\n\n\"O Hari! ", "You say that I am beautiful, but then you insult me again!\"", "\n\n\"Shh— Please, Sukunya, you are raising your voice. ", "Please talk softly, I beg of you.\"", "\n\n\"I will talk softly if you do not insult me.\"", "\n\n\"But I was not insulting you, I was only—\"\n\n\"You were!\"", "\n\n\"But how?\"", "\n\n\"Well, if you are so blind, let us take it step by step. ", "You said I was beautiful, did you not?\"", "\n\n\"I did—and you are.\"", "\n\n\"And is a beautiful woman desirable or undesirable to a man?\"", "\n\n\"Well, desirable, of course, but—\"\n\n\"Good! ", "Then is it fair to conclude that you, Hari, desire me?\"", "\n\n\"Well—well, yes, but there is a proper time and place for the satisfaction of desires.\"", "\n\n\"Such as being in bed at night alone with the woman of your desire?\"", "\n\n\"Uh—no. ", "I mean yes!\" ", "Hari felt a sinking sensation in the pit of his stomach.", "\n\n\"And are we not now so situated?\" ", "she asked.", "\n\n\"Well, yes—but the woman must also be desirous of the man, which she surely would not be if she had been disturbed and upset by someone, would she?\"", "\n\n\"Oh, but I do desire you, Hari. ", "Now, you see, you have proved both to yourself and to me that there can be only one conclusion. ", "Do you know what that is?\"", "\n\n\"Yes,\" said Hari, his tone now one of total resignation and surrender. \"", "I must want to make love to you.\"", "\n\n\"Oh Hari, do you?\" ", "asked Sukunya lovingly.", "\n\nHari bowed to the inevitable and commenced to make love to Sukunya, albeit with only half a heart—at least at first. ", "Sukunya's prodigious lovemaking skills were such that he could not help but rise to the occasion, and so they coupled and clipped with exceeding passion until there came unto them that moment of supreme delight which is the gift of Kama, the god of love.", "\n\nUpon completing the exercise, Hari was about to rise from the bed when Sukunya stopped him.", "\n\n\"Where are you going, my lover?\" ", "Sukunya asked, her voice a soft purr.", "\n\n\"Back to my own bedroom,\" he replied, dreading her next demand.", "\n\n\"That will not be necessary,\" she said as she hopped from the bed and slipped into a red robe which she had earlier hidden under the bed. \"", "This is your bedroom, my love. ", "My room is down the hall. ", "Did you not see that the decor is not in my color? ", "Good night!\" ", "With that Sukunya quietly ducked out of the room and closed the door behind her.", "\n\nHari sat on his bed with his mouth open. \"", "How stupid I am!\" ", "he blurted as he clapped his hand to his brow. \"", "She tricked me again!\"", "\n\nHe jumped out of bed and dragged a heavy chair over to the door and propped it against the door handle. ", "He then went out on the balcony to be sure there was no possible way anyone might enter from outside. ", "Satisfied that his quarters were secure, he returned to bed. ", "Oh well, he thought, and he smiled. ", "It had not really been so terrible an experience after all, but he was grateful that Sukunya's sisters did not have her appetite or her cleverness.", "\n\nPerhaps it was just as well that he did not hear the light footsteps that approached his door thereafter, or the quiet knock at the door, or the cautious testing of it. ", "The door was securely blocked, and he was fatigued. ", "After a time the footsteps departed.", "\n\nAnd so your seventh seduction is balked by the wiles of your third seduction. ", "The same woman twice does not count double. ", "She was not on the boat, so was able to reach his bedroom first, and use him up before your choice arrived. ", "Seldom have I enjoyed watching mortal schemes more. ", "Now it is my move.", "\n\nMay your luck be as ill as mine!", "\n\nThat night Hari dreamed he was lost in a strange city. ", "He ran from street to street asking people where he was and the way out of the city, but no one paid him any attention. ", "He saw many familiar faces—Meena, Sumi, Pudmini, Sharmila, Kamala, and Sukunya—but none of them recognized him or would speak to him. ", "Suddenly the city melted away and he was running in a dark forest. ", "He called out but no one answered. ", "The ground opened beneath him and he fell into a deep hole which became brighter and brighter as he fell. ", "A great cloud of butterflies appeared, attached themselves to his clothing, and lifted him out of the hole. ", "They carried him high over the forest and the ocean toward his home, but a flock of birds descended and ate the butterflies, and he fell into the sea.", "\n\nThe days that followed were enjoyable. ", "Hari swam, sailed, went horseback riding with the rajah, and in the evening took long walks by himself around the lake. ", "He kept his door firmly barricaded and slept well. ", "One morning Suseela found a helpless bluebird beneath a tree and came running to Hari with tears in her eyes. ", "The bird had somehow gotten sticky tree-sap on its wing feathers and was unable to fly.", "\n\nTogether they cleaned the poor bird, Hari holding its wings outstretched while Suseela patiently dabbed at it with a damp cloth. ", "When its wings were dry, Suseela placed the bird gently on the ground, whereupon it fluffed up its feathers and flew off amidst a twitter of complaints. ", "They both laughed at the happy conclusion of their efforts, and Hari saw that Suseela had a good heart and shared his love for nature's creatures. ", "She also liked his company, but of course he was careful not to presume on that, and did not compromise her reputation by allowing himself to be seen alone with her too long. ", "If at times she seemed saddened or frustrated, he felt sure that he was not the cause.", "\n\nThe utter ninny!", "\n\nA perceptive judgment.", "\n\nOn the evening of his fifth day at the lake palace, Hari announced at dinner that he would be leaving in the morning. ", "He declined the rajah's offer of an armed escort, nor would he accept the gift of a horse, explaining his desire to walk. ", "The rajah understood and restrained his daughters' protests and entreaties for him to remain. ", "Sukunya was more reticent than her sisters if only because she was the most disappointed, though Suseela seemed almost as troubled. ", "Hari saw the hurt look in their eyes and smiled at them warmly to let them know that he would miss them too, in his own way. ", "But he was careful not to reveal in his smile or his eyes any message that might be interpreted as a nocturnal invitation, for this night as usual a chair would be firmly propped against his door.", "\n\nWhat am I to do with you, you noble idiot?", "\n\nIt seems really too bad that you will never have the chance to seduce him in your own right, as it is clear that you have fallen in love with him.", "\n\nI confess it, the more fool I.\n\nThat night as he stood on his balcony watching the ripples on the lake wash over the reflection of the moon, his thoughts turned to the talisman. ", "He could no longer return it to the zamindar, and it was not something he wished to keep himself. ", "Nor did he think it wise to give it to the rajah. ", "Although the rajah was benevolent and farsighted, he was not experienced in the ways of magic. ", "In times of war or other great need, he might be tempted to draw upon the powers of the talisman and so fall into the clutches of the terrible she-demon. ", "No, the risk was too great.", "\n\nHari could think of only one person who understood the powers of the talisman and could be trusted with its care: the guru, Narusimhum. ", "On his journey home he would stop at the guru's mountain cave and give him the amulet.", "\n\nThe rajah arose early in the morning to see Hari off. ", "Suseela and Saras, still half asleep and in their nightgowns, waved to him from their balconies. ", "Saras was decorous, but Suseela, ever the careless one, accidentally leaned too far forward and showed more of her well-formed bosom than was seemly for a princess. ", "It was perhaps fortunate that he was leaving, for otherwise he might have been sorely tempted by untoward thoughts. ", "Sukunya was nowhere to be seen.", "\n\n\"Hari, since you will not accept a boon from me,\" said the rajah, \"I have taken the liberty of having a small gift sewn into the lining of your tunic.\"", "\n\n\"Thank you, Lord,\" Hari replied, and he bowed low to show his respect and appreciation. ", "Under the circumstances, he could not refuse.", "\n\n\"Farewell, then, Hari. ", "I feel certain we shall meet again. ", "May Lakshmi travel with you. ", "And be careful.\"", "\n\nOnce outside the palace grounds, Hari stopped a moment to look back. ", "He saw a lonely figure in a cupola atop the palace and knew it was Sukunya. ", "He waved, but she did not return the wave. ", "He turned and continued on his way. ", "It was not until he had reached the distant hills and was lost from sight that the watching figure left the cupola.", "\n 12\n\n* * *\n\nThe Rider in Black\n\nHari chose the least trodden paths that he might see more of nature and less of people. ", "Once he saw a tigress and her two cubs in the brush devouring a doe. ", "Another time he witnessed in a rocky crevass the strange mating ritual of the king cobra, and nearby he saw the hooded serpent's bridal gift: a paralyzed snake-bitten rat that also watched the love ritual, its glazed terror-stricken eyes only too aware of its fate.", "\n\nWhat, are you not going to cause that male cobra to attack our mortal man?", "\n\nNo. ", "While he carries that talisman he remains somewhat charmed, and threats tend to turn aside. ", "I shall wait until he divests himself of it. ", "Then he will be most vulnerable. ", "As I think you know.", "\n\nYes. ", "I think it has also charmed him somewhat to my cost, helping him to avoid additional seductions he thinks he does not want. ", "So if you do not kill him, I shall certainly seduce him.", "\n\nAtop a hill Hari surprised a flock of feral rollers basking in the sun, their turquoise wings outspread to catch the warmth, and they exploded in a rainbow of color, loosing clouds of feathers into the air. ", "He watched the feathers slowly seesaw downward, some catching in his hair; their iridescence shimmered in the bright sunlight, decorating the grass like so many velvet jewels. ", "Amidst the grassy treasure he found the limp body of one of the rollers, its neck broken from having struck an overhead branch in its panicked flight. ", "If only he had not frightened them, he thought.", "\n\nFurther along he nearly trod upon a fledgling dove that had fallen from its nest. ", "Though not yet able to fly, it was quite able to run and gave him a merry chase through the grass until he finally cornered it. ", "Gently he picked up the angry ball of feathers, which peeped in protest. ", "He knew it would have to be returned to its nest lest it become a snack for a passing snake. ", "He spotted the nest in a nearby tree and began the climb, though not without difficulty, for he had to pull himself up with one hand while carefully holding the bird in the other. ", "The scratches and scrapes he earned for his trouble, he silently endured.", "\n\nUpon reaching the nest, he discovered that another problem presented itself: the brooding mother dove, all puffed up and glowering, refused to budge an inch to make room for her fallen baby. ", "There was nothing to be done but simply stuff the fledgling under the obstinate hen, which set off a tumult of peeping from yet another chick that was buried somewhere beneath its mother. ", "The returned birdling, happy to be home, joined its sibling in a frantic duet, while the angry mother bird delivered the human intruder a nip on the finger. ", "Though not painful, the bite caused its startled recipient to topple from the tree.", "\n\nOh, not for only passion have I lost my heart to a mortal.", "\n\nHari lay sprawled on the grass, unhurt save for a knee scrape. ", "A moment later the hatchling he had rescued fell to the ground next to him. ", "It had been rejected by its mother and pecked to death. ", "Hari wept unashamedly and raised his fist to the heavens.", "\n\nHe did not understand why the gods heaped such suffering on the innocent creatures of the earth and on the mortals who sought to preserve and protect them. ", "The injustice of it angered and frustrated him. ", "He knew what his village teacher would say, who was always able to explain away any dilemma. ", "It is a matter of balance in the universe, he would say. ", "The discomfort received is in proportion to the pleasure obtained. ", "A mortal able to embrace and enjoy Brahma's creations can not help but be sensitive to their destruction and rebirth. ", "Others blind to Brahma's wonders may suffer less, but their souls are the poorer for it. ", "One must experience pleasure and pain in order to defeat and rise above them.", "\n\nIn the early afternoon, as he was passing through a narrow valley, he saw a flash of movement behind a distant stand of trees. ", "He thought it was a horse, but could not be sure, for it could have been a deer or the sunlight playing tricks with his eyes as it filtered through trees and clouds.", "\n\nThe hills grew smaller, dwindling to hillocks, and finally crept beneath the flat skin of the earth and disappeared. ", "By late afternoon he reached a brown grassland, a dreary expanse completely vacant of green, broken only by craggy ridges and stony outcroppings. ", "The forbidding scene gave him pause, but to look for another route now would mean backtracking and the waste of many hours. ", "Better to spend the night where he was, he decided, and continue on through the grassland in the morning.", "\n\nHe slept fitfully, unable to dispel the feeling that he was being watched. ", "At first light he set out. ", "The path gradually narrowed and was eventually swallowed up in matted grass and heavy weeds. ", "Unseen holes and broken roots tripped his feet, bogs and mires sucked at his legs, thorns and brambles stabbed at his flesh. ", "The air became stifling, and reeked with the odor of rotting vegetation. ", "A foul mist rose up to form a dense canopy overhead, all but blotting out the sunlight.", "\n\nWeirdly shaped shelves of stone appeared out of the gloom, forming a great circle. ", "Like ghostly markers, they pointed to a large moss-covered mound at their center. ", "The humpbacked rise looked to Hari like an ancient burial place, and he trod not upon its dim shadow that fell upon hollow beds of long-dead reeds and husks of withered pods.", "\n\nBy afternoon the land hardened and its breast rose up out of the mire. ", "Matted weeds gave way to coarse reeds and patches of ragged brush, and clumps of rough green grass struggled through the dust and stones. ", "The wan orb of the sun reappeared, revealing the lost path, and a cool breeze arose. ", "A cricket crawled from beneath a rock seeking the sunlight, but the dry reeds hissed and frightened it back into the shadows.", "\n\nSoon jagged ridges and ramparts appeared, and in the distance, sketched against the still gray sky, loomed the outline of snowcapped mountains. ", "Wispy bands of dark clouds hung about the lofty summits and barren ridges, casting eerie shadows on the lower cliffsides. ", "However forbidding, the sight lightened Hari's heart, for he knew that deep within the mountain fastness was his destination—the cave of the guru.", "\n\nAs he started the climb through the rocky foothills, he heard the neighing of a horse, but looking about, saw no sign of man or beast. ", "He proceeded warily, keeping to the shadows of the outcroppings that lined the trail. ", "A chill wind swept down from the snowy heights and whipped at him, slowing his progress. ", "At a narrow turn in the path a barrage of stones tumbled down the cliffside, which he barely evaded, and he wondered if the demons of the mountains were trying to prevent him from delivering the talisman to the guru. ", "In the dim heights above he could make out eddies of snow whirling about the jagged caps like so many demented ghosts, and in the distance a low rumbling told of an avalanche somewhere deep in the mountains—or was it the mountains whispering angrily of an alien in their midst?", "\n\nThe mountains' shadows deepened, calling down the night, and on a cliffside ahead he saw a pale light flickering like a solitary firefly lost in the fastness: the cave of the guru at last. ", "As he climbed the rocky slope to the cave entrance, the weight of the talisman around his neck seemed to grow lighter, and he wondered that he had not been aware of its heaviness before.", "\n\n\"Come in, come in, my friend,\" came the familiar voice of the guru Narusimhum from inside the cave. \"", "The night air is chilly and I have prepared some hot refreshments for us.\"", "\n\nHari pulled himself up to the cave entrance and saw within the smiling old guru sitting crosslegged on a blanket before a small fire. ", "On the fire was a steaming teakettle, and set out on a mat were two cups and a plate of chapatis. ", "Everything looked exactly the same as when he last visited, as though time had somehow overlooked the guru and his small corner of the universe.", "\n\nHari bowed low before the old master.", "\n\n\"Ah, I am glad to see you again, my young friend,\" said the guru cheerily. \"", "Come, sit down and help yourself to some tea and a bite to eat.\"", "\n\n\"I thank you for your kind hospitality, Master.\"", "\n\nHari was cold and hungry, and the meager repast seemed a veritable feast.", "\n\n\"You were indeed fortunate to escape the she-demon,\" said the guru. \"", "And you were wise always to keep the talisman with you.\"", "\n\nA look of surprise came over Hari's face.", "\n\n\"Master, I do not know how you came by the knowledge of my encounter with the she-demon, but had it not been for you the creature would surely have killed me. ", "It was your words that saved me, and for that I am most grateful.\"", "\n\n\"Well, you were clever to divine the meaning of my words. ", "For many, the press of necessity closes rather than opens the mind. ", "But you should not have called up the demoness—that was dangerous and foolish. ", "Perhaps I should have given you more warning, but I did not think you would be able to invoke her even if you tried.\"", "\n\n\"I was fortunate—or unfortunate. ", "I happened to pronounce her name correctly. ", "Still—\" He peered questioningly at the guru.", "\n\n\"Yes, my young friend, I have followed your exploits with interest from within these very walls. ", "This old man has his ways. ", "Mmm.\"", "\n\n\"O Master, then you must know the fate of the zamindar.\"", "\n\n\"Yes. ", "I learned about the news that messenger brought, though my informant hinted that all was not as it seemed. ", "Very sad. ", "Dark clouds from the north are spreading over the southern lands, though I can not tell whether it be for good or ill.\"", "\n\n\"If you mean war, how can that be good?\"", "\n\n\"War is never desirable, my friend. ", "It was its aftermath I was wondering about. ", "It could bring a new age. ", "Oh, but there are more immediate matters that concern us. ", "I speak of the talisman. ", "What will you do with it now?\"", "\n\n\"It is a weight I wish to shed. ", "I came here to deliver it into your hands. ", "You know best what to do with it.\"", "\n\n\"I am glad you have so decided. ", "There is little I do not know about the talisman and its history. ", "I will keep it safe and see that it does not fall into the wrong hands.\"", "\n\nHari lifted the amulet from around his neck and handed it to the guru. ", "The old master examined it carefully, nodding to himself, and placed it around his own neck.", "\n\n\"O Guruji,\" said Hari, \"I have been curious about the letters etched on the other side of the talisman. ", "Can you tell me something of their meaning?\"", "\n\nThe guru smiled, then rose and retreated into the darkness at the back of the cave. ", "He returned carrying a rolled parchment. ", "Hari could see that it was worn and very old. ", "The guru reseated himself and carefully set the parchment down on the blanket beside him.", "\n\n\"There will be no harm in enlightening you, but you must never reveal what you are about to learn, just as you must never again speak of the talisman. ", "Do you swear?\"", "\n\n\"I swear, Master.\"", "\n\n\"Good. ", "Now, the talisman is very old, made by the hand of the Asura king himself, master of demons. ", "He fashioned it as a means of releasing the love-demoness from a rock beneath the earth where she had been imprisoned by the good rishi, Baksura. ", "But the laws of good and evil require balance, so when the Asura king etched the name of the she-demon on one side of the talisman, he was obliged to engrave yet another name on the opposite side—that of a benevolent demon. ", "Without that balance the magic of the talisman would be ineffective. ", "But the Asura king was cunning, and he carved on the talisman the name of a demon whose powers were limited. ", "He chose an old air demon of ancient times whose only magic power was in seeing the present and the past. ", "Of course, that is by no means a trivial power, but it is less than what most demons are capable of.", "\n\n\"I am sorry to say that the air demon was unable to help you when you released the she-demon. ", "But he has been of great value at other times. ", "Indeed, only by his vigilance has the talisman been kept safe these past three hundred years—with the one exception. ", "And he is very wise in the ways of the world. ", "Ah, many are the wondrous tales to be told of how the old fellow thwarted the plans of ambitious rishis and magicians who desperately sought the talisman. ", "By his powers of sight the machinations of the evil power-seekers were observed. ", "And by being forewarned, the noble ancestors of the zamindar were able to protect the talisman.", "\n\n\"This parchment I hold is an ancient tantra which tells the origin of the talisman and the secret names inscribed thereon. ", "It is useless to speak the name of the she-demon without having possession of the talisman. ", "But not so for the air demon. ", "He can be summoned without the talisman because of an oversight of the Asura king. ", "This tantra holds the secret of summoning him. ", "One need only hold the parchment and utter his name written therein and he will appear. ", "Of course, he may also be invoked by the possessor of the talisman, in the same manner as you called up the demoness.\"", "\n\nHari smiled to himself, remembering the many times he had imagined the terrible monster he might loose upon the world if he dared utter the mysterious word upon the back of the amulet.", "\n\n\"Many times I have used the parchment to call forth the air demon,\" continued the guru. \"", "And through his eyes I have observed many things—including your exploits, my young friend. ", "But, to my knowledge, the talisman itself has never been used to call up the air demon. ", "So why do not we give it a test? ", "I think you will like the old gentleman. ", "He and I have become quite friendly over the years and have spent many days together debating the habits of gods and mortals. ", "But first I must be sure that his name on the talisman is identical to that in the mantra. ", "Hmm. ", "Yes, it is.", "\n\n\"Now do not be frightened if the demon arrives with a little fanfare. ", "The old rascal enjoys putting on a show.\"", "\n\nThe guru cleared his throat and held the talisman up to his eyes. ", "Hari watched closely to be sure the guru was peering at the right side of the amulet lest the unthinkable occur.", "\n\n\"Arunakachandumunshasa!\" ", "cried the guru.", "\n\nFor a few moments nothing happened. ", "Then a low rumbling sounded and the ground began to tremble, which rattled the teakettle and loosed a few small stones from the ceiling. ", "A thick jet of green smoke shot up from the floor and billowed outward, threatening to fill the cave. ", "The guru and Hari held their breath and fanned the air to keep from choking.", "\n\nThe sound of coughing came from somewhere within the cloud, and as the air began to clear Hari saw, sitting yoga-style on the ground before him, an old man waving his arms about trying to keep the smoke out of his face. ", "Hari suppressed a grin. ", "Garbed in a stained white robe and a scarlet turban that sat askew his wrinkled brow, the old demon was red-faced and slightly plump and sported a luxurious snow-white beard that badly needed combing. ", "His dark eyes blinked in surprise, as though he did not know where he was or how he had gotten there. ", "Altogether, Hari thought he looked like someone's kindly old grandfather.", "\n\n\"Phoo!\" ", "exclaimed the demon. \"", "I thought to try green smoke this time to celebrate my first calling by the talisman, but something seems to have gone wrong. ", "Too much smoke. ", "Phoo!\"", "\n\n\"Welcome, my old friend,\" said the guru. \"", "The green smoke was a fine idea. ", "Very colorful. ", "I hope I did not interrupt you in the midst of anything important.\"", "\n\n\"I was napping—which is not unimportant at my age. ", "But as King Solomon used to say, a week's nap is enough for any demon, so it is just as well you awakened me.\"", "\n\n\"May I offer you some tea and chapatis?\" ", "asked the guru.", "\n\n\"Hmm. ", "Perhaps a bite.\" ", "The demon helped himself to a chapati and began munching it around the edges.", "\n\n\"May I present a young Brahmin to you, Hari by name,\" said the guru. \"", "His affairs, er, travels are already quite familiar to you.\"", "\n\nHari bowed to the demon.", "\n\n\"Ah yes! ", "Yes indeed! ", "My boy, following your adventures makes me wish I were young again. ", "I am pleased to see you in the flesh—in person. ", "And I am glad you were not harmed by the she-demon. ", "You are a brave young man.\" ", "The demon's face brightened. \"", "And now that the courtesan princess of the rock-demons has been returned to her prison, perhaps I can take that heavenly vacation in Indraloka I have promised myself these past two hundred years. ", "Ah, the gods know how to live well.\"", "\n\n\"By all means, do so,\" insisted the guru. \"", "I have disturbed you much too often of late. ", "I can see no need to call on you again soon. ", "When you return, perhaps we can talk about certain developments in the north.\"", "\n\nThe demon waved a hand in the air. \"", "Ah, my friend, you never disturb me. ", "I enjoy our visits. ", "And if I do not hear from you before long, I will come to see you anyway.\"", "\n\n\"Well said, old friend, well said,\" exclaimed the guru. \"", "You are always welcome. ", "Hari, do you have something you would like to ask our esteemed visitor before he leaves? ", "Something about the past or present? ", "Or perhaps something that may be troubling you? ", "I know there are many questions on your mind, but now you may ask only one of them. ", "Neither wisdom nor magic must be abused.\"", "\n\nHari thought a moment. ", "He realized that this was an exceedingly rare opportunity that would probably never come again, so he needed to make the best possible use of it. ", "As it happened, there was something he wished to know about. ", "When he had traveled here from the palace of the rajah, he thought he was being followed, and he wondered who it was. ", "Should he ask such a question? ", "If he did, the guru might be saddened that he had wasted his question on so trivial a matter.", "\n\nAnd indeed the guru knew that Hari was troubled by more serious questions, for he was wise in the ways of such things. ", "The guru read the suffering in Hari's eyes, and guessed that in his travels his young friend had experienced life in ways that he had not expected or wanted, that he had heard the world's heartbeat and found it to be fickle. ", "And so he might want to ask a question the answer to which would lighten the weight he carried.", "\n\nSo Hari decided not to ask the simple question. ", "Instead he would ask a significant one. ", "But what could that be? ", "He knew better than to inquire about the meaning of life, for that would surely entail a prolonged discussion and was probably a matter of interpretation anyway. ", "He should ask something practical yet ultimately meaningful. ", "But what could that be?", "\n\nThen a question came to him. \"", "What is it that I must do, to be of the greatest service to myself and those whose friendships I value, that I would not think of myself?\"", "\n\nThe demon nodded. \"", "I had thought you were about to ask something selfishly trivial, such as whether you were being followed from the palace, and if so, by whom and for what reason. ", "And my friend the guru would have been rightly disgusted at such a waste of opportunity.\"", "\n\n\"I confess, that was my first inclination,\" Hari said, abashed. \"", "Only the realization that such a question would disappoint the guru dissuaded me. ", "I sought a more significant question, so that I would not be exposed as the shallow ignoramus I am.\"", "\n\nThe guru laughed. \"", "It is a wise supplicant who sees his triviality coming, and avoids it. ", "All of us have consequential and inconsequential aspects warring for attention, but few of us exert some control over their expression.\" ", "He turned to the demon. \"", "But I am curious, my friend: what would you have said, had he asked that question?\"", "\n\n\"Yes, my young Brahmin,\" replied the demon, assuming a pose, \"you were being followed from the time you left the rajah's lake palace. ", "It was the captain of the rajah's guard who was tracking you on the instruction of the rajah himself. ", "When you refused an escort, the rajah ordered his captain to follow and watch over you until you reached the safety of the mountains.\"", "\n\nHari nodded, not surprised, and in his heart he felt a warm affection for the kindly rajah, despite his surreptitious act.", "\n\n\"I thank you,\" he said to the demon. \"", "You have put to rest at least one of my cares.\"", "\n\n\"A small service for one who so nobly sparred with the immortal enchantress and won,\" replied the demon. \"", "Now, however, I shall address your actual question, whose answer is simple but has perhaps surprising ramifications. ", "You must take back the talisman.\"", "\n\n\"What?\" ", "Hari and the guru asked together, equally startled.", "\n\nWhat?", "\n\nHe is aware of us!", "\n\nThe demon smiled. \"", "It seems that you both have a sudden problem with your ears. ", "I said—\"\n\n\"I heard what you said!\" ", "the guru said. \"", "But why did you say it?\"", "\n\n\"I am glad you were the one to ask that question, my friend, for I could not have answered it had Hari asked it, being limited to a single answer for him. ", "For you I will answer, and if he happens to overhear, that is his good fortune. ", "The reason he must take back the talisman is that he has not completed his commitment with respect to it.\"", "\n\n\"But his commitment was to return it to its owner, and he is unable to do that.\"", "\n\n\"Why do you say that?\"", "\n\n\"Because the zamindar is dead!\"", "\n\n\"And the blame is surely mine,\" Hari said with grief. \"", "For I should not have deprived him of its protection, thus leaving him vulnerable to disaster.\"", "\n\n\"Now that is a curious statement, considering that the zamindar and all his retinue remain alive and healthy.\"", "\n\n\"Alive!\" ", "the guru and Hari said together. ", "Then the guru continued \"But you told me—\"\n\n\"That news of his violent death had been received. ", "That was true. ", "But the message was false, rendered by a spy whose purpose was to cause the rajah to make a tactical error. ", "A fell ploy, but effective.\"", "\n\n\"But why did you not clarify that for me at the time?\"", "\n\nThe demon shrugged. \"", "It is, as you know, my custom to address only the questions I am asked. ", "You did not ask.\"", "\n\nThe guru looked almost as chagrined as Hari felt. ", "Then, without a word, he removed the amulet from his neck and gave it to Hari. ", "It seemed that he had inadvertently received a lesson in humility.", "\n\n\"I thank you most sincerely for the information that my friend the zamindar is alive,\" Hari said to the demon. \"", "I never thought to question the news.\"", "\n\n\"Therefore you would not have thought to ask for the amulet back,\" the demon said. \"", "That was a condition of your question, and a remarkably clever one. ", "But I might mention, strictly as an incidental, that the need for cleverness has by no means passed, and the outcome of your larger quest is by no means determined. ", "I might also hint, were I inclined, that there are factors closely affecting you about which you have no slightest inkling.\"", "\n\nThat's sufficient, demon! ", "You may not inform him of us.", "\n\nAgreed. ", "Divert yourself in some other manner hereafter.", "\n\nThe guru and the demon then became involved in a philosophical debate about the sex of the Supreme God, whether it was indeed neutral, and whether it was possible for Brahma to have created the universe by laying it as an egg. ", "The discussion continued on for hours, and eventually Hari drifted off to sleep. ", "But he remained grateful for the amazing information the demon had so unexpectedly provided. ", "A certain joy had replaced a certain sadness.", "\n\nWhen he awoke the sun was shining brightly through the cave entrance, and the guru and the demon were still deeply engaged in debate. ", "He nibbled on a cold chapati as he waited for the conversation to end, or at least to falter, so that he might make his farewells. ", "Considering the intensity of the debate and the status of its participants, he dared not interrupt. ", "Finally, seeing no break in sight, for the discussion had not yet advanced beyond the first of ten logical principles relating to the egg-laying propensity of a neuter god, he decided he would depart. ", "He faced the debaters and bowed low before them, and in so doing did not notice the brief trace of a smile pass across the guru's face.", "\n\nThis time as he climbed down from the cliffside to the path, he heard no parting words of wisdom from the guru, and he wondered whether the silence boded good or ill.", "\n\nThe chariot of Surya arched toward its zenith, igniting heaven's cup, even as Hari passed out of the mountains into a broad green valley. ", "The sight of grass, hill, and tree beneath the bright blue sky soothed his heart, and he plucked a ripe mango to taste its sweetness. ", "Having yet a long way to go, he decided to leave the beaten path that wound through the hills and head straight northwest toward his village.", "\n\nNow do I make my move, though I am annoyed that the demon interfered, leaving the mortal man with the talisman.", "\n\nHari had not gone far when there appeared on a hill ahead a lone horseman garbed in black mounted on a jet stallion. ", "Both rider and horse stood motionless, like an ebon statue against a wall of light-blue sky. ", "A silk scarf covered the bottom half of the rider's face, hiding his features. ", "But his dark staring eyes Hari saw, and he felt them burning into him. ", "He remembered the rajah telling of roaming spies dressed in black, and he wondered if this might be one of them. ", "It was surely not the rajah's captain, who should have gone home by now.", "\n\nSuddenly the rider came to life. ", "He lashed his mount, which whinnied and pounded at the earth, then shot forward with lowered head. ", "Hari watched in helpless fascination as the ebon steed galloped down the slope toward him. ", "He saw the rider reach down and unsheath a graceful curved scimitar, such as were used in the north; its shiny blade glittered hynotically in the bright sunlight. ", "In a swift movement the rider swung the weapon high, as though to pierce the heavens, and leaned forward into the wind, somber and unyielding.", "\n\nO Ravana, he can not escape that cruel warrior!", "\n\nWith a calmness that surprised him—perhaps there had not been enough time to prepare his thoughts—Hari realized that he was about to be killed. ", "Well, at least he would face Yama with dignity. ", "But another voice within him, less accepting, screamed out and set him on alert. ", "His body became taut and he quickly looked right and left, searching for something, anything, that might provide some cover. ", "But there was nothing—he was out in the open and helpless.", "\n\nWhat is your point, Mohini?", "\n\nAs rider and steed bore down upon him, he could see the white froth spewing from the horse's mouth, the beast's flaring nostrils and dark frantic eyes, eyes that betrayed fear and desperation and seemed to say: am I not also a victim like yourself, but another spoke in the wheel of life, death, and rebirth? ", "And reflected deep within those wild eyes he saw the terrible third eye of the she-demon, which became the glaring jeweled eye of Kali and the searing flame of Sharmila's pyre; and, too, he saw the thousand eyes of the gods mocking him in their indifference.", "\n\nSpare him, and I will yield to your desire.", "\n\nBut in the eye of the rider he saw naught but hate. ", "Why such hatred? ", "he wondered. ", "It saddened him. ", "As if in reply to his question, the wind quickened and blew the rider's scarf to one side. ", "And Hari saw that the attacker was none other than Koti. ", "Koti, the advisor to the rana of Madresh, whose affair with the rana's young wife, Kamala, Hari had inadvertently exposed. ", "Now the reason for the man's hatred was clear, though perhaps he should have blamed himself for his treachery, rather than Hari for exposing it.", "\n\nI shall have my desire in a moment anyway, as your mortal man dies.", "\n\nI will give you two centuries!", "\n\nBut your awareness will always be on him, because you will love him as long as he lives. ", "I want your full attention, whether positive or negative. ", "I want you to know throughout who is having at you. ", "Your mortal man is doomed.", "\n\nO Hari—I love you, but I can not save you.", "\n\nEven as the graceful blade arced downward—perhaps there was a murmur somewhere in the heavens—a ground squirrel popped out of a nearby hole and darted across the grass in the path of the galloping steed. ", "Frightened by the flash of the small animal, the horse jolted to a stop, hurling its rider forward through the air. ", "Koti, sword in hand, sailed over Hari's head and came down in a heap upon the grass. ", "The terrified horse ran off through the hills.", "\n\nYou interfered!", "\n\nHari stood frozen, his heart pounding, watching to see if Koti would stir. ", "But the body lay still. ", "Carefully he approached the prone figure, which was lying on its face. ", "Grasping one arm, he pulled the body over. ", "Koti's head lolled to one side: his neck was broken and he was quite dead.", "\n\nI did not. ", "It is my move, but there were no female creatures near enough to use. ", "That squirrel is male.", "\n\nHari stared at the lifeless body. ", "The questions that assailed him he tried to push from his mind. ", "He knew now there were questions beyond logic, at least the logic he had been taught and understood. ", "There were some things he would just have to accept. ", "Or else escape from.", "\n\nThat squirrel interfered deliberately! ", "If not one of us, who motivated it?", "\n\nPerhaps he should become the disciple of a sannyasi, he thought. ", "The life of an ascetic had much to offer. ", "Not least he would learn how to conquer the torment of the senses, to deaden life's pain.", "\n\nAlmost, I recognize it. ", "There is a familiar aura.", "\n\nHe had no tools to bury Koti's body or materials to prepare a cremation. ", "He would have to leave it untended. ", "That the corpse would be consumed by vultures or other creatures did not disgust him, for it seemed a more humane way of leaving this life than simply going up in a puff of funereal smoke which benefited no one.", "\n\nYes, I have seen that aura before. ", "But who?", "\n\nThe ground squirrel suddenly reappeared and came running over to him and stood up on its haunches. ", "He broke off a weed pod and gave it some seeds, a meager offering, he thought, considering that the small creature had saved his life. ", "The squirrel chattered its appreciation and munched on the seeds contentedly.", "\n\nThe guru whose young wife he serviced in Hari's body!", "\n\nAs he gazed into the creatures dark eyes, Hari remembered something the old guru, Sundar, had told him: \"Would it not be better to be reborn as a ground squirrel than as an eagle—or a man?\" ", "Hari wondered: Could it be?", "\n\nDisgusting. ", "To be deprived of a century of brutal delight by a mere mortal reincarnation!", "\n\nThe squirrel finished its meal, washed its face thoroughly with its tiny paws, elaborately groomed its tail, then uttered a series of small squeaks before running off into the grass. ", "Hari smiled.", "\n 13\n\n* * *\n\nThe Zamindar\n\nHari reached the zamindar's palace in due course, having suffered no further mishaps along the way. ", "He was glad that he would be able to return the talisman and honor his word, yet also saddened to realize that he had not achieved the worldly knowledge and personal enlightenment he sought. ", "He had seen many marvelous things, and experienced a number of straits and emotions, but somehow remained dissatisfied.", "\n\nNow it was time to return to his village, as he had promised his mother and sister, and to assume the responsibilities of his station. ", "He would be expected to take a wife, though that still did not truly tempt him. ", "How could he settle down with a simple village girl, after having been seduced by a princess, a priestess, and a she-demon, among others? ", "And how could any ordinary experience match that of making love to a lady spirit whose supple body could be heard and felt but not seen?", "\n\nHe had hoped to lead an ascetic life, or at least a simple one, while traveling, but had not succeeded for the most part. ", "Yet perhaps that meant he was not suitable for a career of contemplation, so should give up the effort and return home to live out of his life in the normal dull manner.", "\n\nHave no fear, ignorant mortal man. ", "Life will not be your problem.", "\n\nYou haven't killed him yet, Ravana.", "\n\nBut I will, as soon as I get my move. ", "And you will have to give me that move, when you try for your seventh seduction. ", "And that will have to be here, because he is about to give up his quest and return home.", "\n\nThere are women to seduce him at his home village.", "\n\nBut there he'll have to marry his seductress, and complicate his life, for everything is known. ", "Even if I don't kill him, he would soon become too dull to interest you. ", "Home village marriage does that to a mortal man.", "\n\nYou are right. ", "I must seduce him here. ", "Now do I make my move: Leela will not rest until she has had her will of him.", "\n\nThe guard recognized Hari and admitted him. ", "But when he entered the palace, it was the zamindarini who greeted him. ", "She wore a shimmering gown whose material seemed to become translucent as it flexed with her motions. \"", "What may I do for you, handsome traveler?\" ", "she inquired warmly.", "\n\nHari was not entirely easy with this. ", "He remembered that Leela had an ardent nature, and a fickle one; she might have grown tired of her lover Balu, or perhaps have worn him out. \"", "I have come to return the zamindar's medallion, as I promised, and then continue on to my home.\"", "\n\n\"Ah, but you can not do that,\" she said. \"", "For my husband and Balu are out on a mission, and will not return till tomorrow. ", "However, I shall be happy to entertain you until then.\"", "\n\nHari's disquiet remained. ", "In the absence of her husband and lover, she might seek certain personal attention \"Perhaps I should depart, and return tomorrow.\"", "\n\n\"By no means, Hari!\" ", "she said, taking his hand and drawing him forward. \"", "What would my husband think if I denied you the hospitality he surely wishes you to have? ", "I insist on taking care of your needs this night.\"", "\n\nThat was exactly his concern. ", "She had tried to seduce him during his prior visit here and, with no one but the palace staff in attendance, she might have something similar in mind now. ", "She had shown that she was not a woman to be readily denied, and there would be no chance to trick her this time. ", "Had he realized that she was here alone, without the zamindar and Balu, he would not have entered the palace.", "\n\nPrecisely, my love.", "\n\nShe moved her grip from his hand to his arm, and drew it in close to her torso so that he could not help but feel the softness of it. ", "She gave him a rather direct stare, by this token warning him of the likely consequence of further tacit resistance. ", "She had before threatened to accuse him of impropriety, unless he committed the impropriety, and she was evidently ready to do so again. \"", "Then I am constrained to accept your kind hospitality,\" he said reluctantly. ", "Perhaps he could sneak out when she wasn't watching him.", "\n\nAnd now do I make my countermove: the zamindar will develop a sudden suspicion, and return secretly to verify it. ", "When he catches them, he will of course have to kill them both, to salvage his honor. ", "And you, marvelous creature, can abate this disaster only by touching Leela's mind and causing her to desist her seduction.", "\n\nBut then she would be liable to accuse him anyway, to protect her reputation.", "\n\nExactly. ", "Leela is a dangerous tool for your purpose. ", "Perhaps when your mortal man is dead, I will require you to enter her, and I will enter a stablehand, and we shall perform such delights as will amaze the mortal realm, not to mention the animals. ", "Thus will I achieve variety during my century of pleasure with you.", "\n\nYou absolutely disgust me. ", "I will dance for sheer glee when I am free of you for a century.", "\n\nLeela brought Hari into the banquet hall. \"", "I shall serve you the finest meal, to make you amenable.\"", "\n\n\"I would prefer to clean up and retire, as I am weary from my traveling. ", "Any scraps will do for my sustenance.\"", "\n\n\"Ah, but my husband would not countenance such in-hospitality. ", "I shall attend to your needs with my very own hands. ", "Let me take you into my personal lavatory and strip and clean you.\"", "\n\n\"On reconsideration, perhaps I am ready for a more formal meal now.\"", "\n\n\"How very nice!\" ", "Leela clapped her hands, and a servant appeared. ", "Hari was both relieved and concerned to see that it was Meena, his romance of the prior visit. ", "He would much rather have been alone with Meena, and knew she did not like seeing him with Leela, but at least she would be able to appreciate that he was helpless in the situation. ", "Perhaps she would find a way to rescue him from it.", "\n\nDid Leela know of his affair with Meena? ", "he wondered. ", "The two of them had been discreet, yet such news tended to circulate, and he thought it likely that she did know. ", "So was this use of Meena to serve them a warning to him? ", "He could not safely assume that it wasn't. ", "Yet Leela gave no evidence of hostility toward Meena; she simply directed her to serve the meal, and to be on hand for whatever was needed.", "\n\nWhile these thoughts percolated through Hari's troubled mind, Leela was giving Meena directions. ", "Soon Meena left the hall, to return in a moment with a tray bearing the first course of the meal: a steaming lentil soup. \"", "Eat, traveler,\" Leela said heartily. \"", "You must have good sustenance for the ordeal ahead.\"", "\n\n\"Ordeal?\"", "\n\nThe zamindarini sent a sidelong glance at him. \"", "Your onward trek through the world tomorrow or a subsequent day,\" she explained. ", "She moved slightly, and her gown seemed to become entirely transparent in front, showing her finely formed breasts.", "\n\n\"Of course,\" he agreed, not sure that it would be wise to feel relieved. ", "A trek across the countryside normally was not considered to be an ordeal. ", "He took a spoonful of the soup. ", "It was very good.", "\n\nAnd very highly spiced. ", "Hari enjoyed spiced food, as did all his countrymen, but this was extraordinary. ", "His mouth was soon on fire, and he had difficulty breathing.", "\n\n\"Are you uncomfortable?\" ", "Leela inquired solicitously. \"", "Don't be bashful about eating, considering your hunger. ", "Here, let me help you.\" ", "And she took the spoon from his flaccid hand and ladled another dip of soup into his mouth. \"", "Be sure to let me know when you have enough.\" ", "She brought up a third spoonful.", "\n\nHari tried to demur, but the only sound he could make was a strained squeak. ", "His eyes were watering and his throat was burning right down to his stomach.", "\n\n\"I am so glad you like this soup,\" Leela said warmly. \"", "I had it made specially for my husband, but I am sure he would want you to have it too. ", "Have some more.\" ", "She shoved another dose at him.", "\n\nThis time Hari had the sense to close his mouth. ", "The soup, balked, splashed into his nose, which was shortly a raging inferno. ", "He coughed and sputtered, completely at her mercy, embarrassing himself by his uncouth display.", "\n\n\"You poor thing,\" she said. \"", "You are choking. ", "I am so sorry; it must be my fault for being so careless.\" ", "And she took hold of his head and pressed it to her resilient bosom. ", "This had a remarkable effect: it not only soothed his face, it transferred the burning sensation to his groin.", "\n\nBy the time the agony of his head subsided, the front of her gown was wet with his involuntary tears. ", "He tried to apologize, but Leela hardly seemed displeased. \"", "Let me just change into something more appropriate,\" she said, rising gracefully. \"", "Continue with your soup; I shall return in a moment.\" ", "She departed from the banquet hall, and despite his distress of mouth and eyes, he could not help observing the provocative sway of her hips. ", "The heat of his nether portion did not abate; rather it continued to intensify.", "\n\nAs soon as Leela was gone, Meena appeared. \"", "She did that on purpose,\" she whispered fiercely. \"", "To punish you for preferring me to her. ", "Here is safe soup.\" ", "She set down another bowl that looked just like the original one, and took away the hot one. \"", "What she gave you not only burns the mouth, it has a more subtle effect, generating a strong desire to—\" She hesitated, coloring delicately.", "\n\nHari realized what the nature of the other effect was. ", "No wonder his groin was pained! \"", "What does she want of me?\" ", "Hari asked, though there really was no mystery.", "\n\n\"She wants to seduce you, and she will beat me if I interfere.\"", "\n\n\"But you are the only one I wish to be with,\" Hari protested, with some slight exaggeration.", "\n\n\"Then stave her off somehow, and I will come to you tonight, as before, if I can escape her observation.\" ", "Meena glanced momentarily down, appreciating his condition, and smiled. ", "Then she was away with the fire-soup.", "\n\nCheered by that notion, Hari sipped his new soup rapidly, and was just finishing it when the zamindarini returned. ", "Now she wore a gown fashioned of finely woven strips that slid aside as she moved, showing whatever aspect of her body she might choose. ", "It was an effect that caused him to react again in spite of himself, for whatever might be lacking in her nature, it was not her physical endowments.", "\n\nMeena brought in the next course, which was an exquisite salad fashioned of chick peas, onions, green leaves, radishes, and herbs. ", "Hari sampled it somewhat hesitantly, but the seasoning was within bounds. ", "Leela attended to him solicitously, making quite sure he had the very best of it, and every time she leaned toward him, more of her torso showed. ", "He hoped that his eyes were not bulging from their sockets. ", "In fact his eyes were not the only type of bulging causing mischief. ", "He sipped freely of the wine, in an effort to conceal his reaction.", "\n\nThen she served him a course of spinach and eggplant with spiced rice and curry sauce. ", "Again he was concerned about the intensity of the spicing, but it was excellent without being extreme. ", "Evidently she believed that one full bowl of hot soup—hot in temperature, spicing, and effect—sufficed. ", "It was a reasonable belief; even a fraction of that bowl seemed like more than enough.", "\n\nFinally she served an excellent fried pastry with honey and rose water. ", "By the time he finished that, he was quite full, and the wine had dulled his sensitivities somewhat, so that he no longer tried to avoid the increasingly intimate glimpses of her torso her gown provided. ", "Not even when she crossed her legs and her thigh showed all the way to the hip.", "\n\nStill, he carefully fended off her suggestive remarks, pleading fatigue, and finally she consented to allow him to retire alone for the night. ", "She did not even seem unduly disappointed. ", "Had he been less oblivious, he would have been concerned about that oddity.", "\n\nShe remains as interested as ever; she is merely more subtle than he credits.", "\n\nAs the zamindar is more subtle than she credits. ", "He has now returned with Balu, and they are watching from outside, having sworn the palace guards to secrecy.", "\n\nHe retired to his room, the same one he had had before. ", "He was relieved, because had Leela pressed him more closely he well might have succumbed to her blandishments. ", "He knew her nature, and certainly did not wish to betray the hospitality of the zamindar, but never before had he been subjected to such a continuous display of fine feminine flesh, while in such a state of agitation. ", "Had it not been for the intermittent presence of Meena to remind him of his other interest, the zamindarini might in the end have seduced him right there. ", "But perhaps it had been her purpose only to tease him, to generate a desire for her that she could then deny him, punishing him again for escaping her before. ", "First the hot spices, then the hot temptation. ", "He had survived both, but suppose her revenge was a triple ploy?", "\n\nHe lay on the bed, restless despite his fatigue of body and fullness of belly. ", "The soup had not yet worn off. ", "What might Leela be up to next?", "\n\nHe had better lock and barricade the entrance. ", "He got up from the bed and crossed the room in the darkness. ", "But before he found his way to the door, there was a light knock on it.", "\n\nHe froze. ", "Was he too late?", "\n\n\"Hari,\" a feminine voice whispered. \"", "It is Meena.\"", "\n\nMeena! ", "For the moment he had forgotten her promise to come to him if she could. ", "She had become somewhat possessive of him during his prior visit, but he did like her, and his interest in her had freshened somewhat after absence. ", "Also, Leela's blandishments, not to mention her soup, had stirred him to a state that would not be denied. ", "Though he was tired, he now realized why he was restless. ", "Meena was exactly the person he needed at this time.", "\n\nHe found the door in the darkness and let her in. ", "He smelled her perfume as she entered and kissed him. \"", "We must be quick and silent in the darkness,\" she whispered. \"", "She is checking on me often, to be sure I do not receive what she does not. ", "I can not stay long, but I could not stay away either, my love.\"", "\n\nHow well he understood! ", "But hasty love was better than none, and his pitch of excitement was such that haste was probably inevitable. ", "So he brought her to the bed, pausing only to lock the door, and they both flung off their garments and fell on the bed in an intimate clasp. ", "Only the medallion swinging from the chain about his neck remained between them. ", "Their act of passion was as swift and explosive as a summer storm, for all its silence. ", "It was as if lightning leapt between them, igniting them, causing both their bodies to stiffen in ultimate fulfillment.", "\n\nSuch was their rapture of the occasion that neither one heard the slight sound at the door.", "\n\nSuddenly the door burst open and three people charged into the room. ", "One bore a bright lamp and one bore a sword.", "\n\nHari and his lover were still locked in their intimacy. ", "Shocked, he gazed wildly around, while she hid her face.", "\n\nBalu held the lamp. ", "The zamindar held the sword. ", "And beside them stood Meena holding the key to the door.", "\n\nMeena? ", "How could that be? ", "Yet it did seem to be. ", "Then who was this in his embrace?", "\n\nBalu stepped forward with the lamp, grabbed the woman's hair, and yanked her head up so that her face came into view. ", "Hari gasped as he recognized Leela. ", "She had tricked him, pretending to be Meena, and his urgency had been such that he had never thought to question it. ", "She had even worn Meena's perfume and made over her hair to Meena's style. ", "In the darkness—\n\n\"So my suspicion is confirmed,\" the zamindar said grimly, albeit sadly. \"", "My wife has betrayed my marriage, and my guest has betrayed my hospitality. ", "The penalty is death.\"", "\n\nBoth Balu and Meena looked appalled, though both also looked angry, understandably. ", "They thought that Hari had deliberately betrayed them both, but Meena did not want Hari killed and Balu did not want Leela dead. ", "They were however helpless in this situation.", "\n\n\"Have you anything to say for yourselves before you lose your heads?\" ", "the zamindar asked as he lifted his terrible gleaming sword.", "\n\nAh, victory is at hand.", "\n\nLeela was silent, knowing that she had no defense. ", "Hari tried to think of a way to explain that his betrayal had been inadvertent, but he knew there was no way to prove that, and in any event he was guilty of the fact if not of the intent. ", "And, he had to admit to himself, despite its brevity it had been a remarkably intense and satisfying event. ", "So he gave himself up for lost.", "\n\nBut there was one thing he had to do before he died, as a matter of what honor remained to him. \"", "I promised to return your medallion,\" he said to the zamindar. \"", "That much I shall do while I am able.\"", "\n\nThe zamindar looked surprised. ", "Perhaps he had anticipated tearful pleading from one or the other. \"", "Thank you,\" he said gruffly.", "\n\nHari struggled to take the chain from his neck. ", "The medallion was wedged between his chest and Leela's full breasts. ", "He had to use one hand to squeeze a breast aside in order to get the medallion out. ", "In any other circumstance this would be a gross impropriety, but as it was, it hardly mattered. ", "In a moment both of them would be dead.", "\n\nFinally he got the medallion up. ", "He lifted the chain over his head and held the disk out toward the zamindar. \"", "I thank you for the use of this talisman,\" he said. \"", "It served me well.\"", "\n\nAs he spoke, his fingers rubbed along the surface of the medallion. ", "A notion occurred. \"", "But allow me to make one further use of it, before I give it up,\" he said. ", "Then, without waiting for the response, he spoke the name inscribed there: \"Arunakachandumunshasa!\"", "\n\n\"You are summoning the she-demon!\" ", "the zamindar cried, appalled. \"", "She will destroy us all!\"", "\n\n\"By no means,\" Hari protested. \"", "I would not repay your kindness with such distress.\"", "\n\nA low rumbling sounded and the palace trembled. ", "Blue smoke descended from the ceiling, thickening into a column. ", "Gradually the smoke thinned and dissipated and the plump old air demon was revealed, his turban askew as usual. ", "He shook himself, causing his long white beard to ripple.", "\n\n\"That is not the she-demon,\" the zamindar said, amazed.", "\n\nThe demon's eye fell on Hari. \"", "So you had the wit to summon me,\" he remarked. \"", "What is your concern—though I have my suspicions.\" ", "He chuckled.", "\n\n\"Merely to thank you for your past help,\" Hari said humbly. \"", "I did not want to die without doing that. ", "You were the one who informed me that the news of the zamindar's death was false, so that I could after all return the talisman to him and maintain my honor. ", "Now I am doing that, and thanking you. ", "I hope you will serve the zamindar as you served me. ", "Apparently he does not know of your availability.\"", "\n\nThe air demon looked at the zamindar. \"", "So it seems. ", "That explains why he never summoned me. ", "Well, sir, allow me to introduce myself. ", "I am the Demon of Air, bound to the nether side of your talisman as a counter to the she-demon. ", "My power does not match hers, for I am getting old and frail, but I am knowledgeable about the present and the past.\"", "\n\n\"Why should this man summon you, instead of the she-demon, when he had the power to do so?\" ", "the zamindar asked, his lifted sword trembling.", "\n\n\"Sir, I will answer your questions at such time as you summon me,\" the air demon said. \"", "But I am at present in the power of Hari, and will address only his concerns. ", "However, were I to remark on your question, I might simply point out that Hari is a man of charming innocence and honor who means you no harm. ", "He was tricked into a liaison with your wife, supposing her to be another woman in the dark. ", "Realizing that he has wronged you, however inadvertently, he still means you no harm, and is attempting merely to acquit himself of his obligations with such honor as remains to him before he dies.", "\n\n\"It does seem unfortunate that his innocence should be the cause of his undoing, but this is at times the way of karma. ", "Now I shall bid him fair parting, and await your summons when you hold the talisman again.\" ", "He fixed his old eyes on Hari. \"", "It has been a pleasure to know one as pure of intention and confused of application as yourself, young traveler. ", "I look forward to meeting your spirit, in due course.\" ", "He faded out.", "\n\nThe zamindar stood open-mouthed, staring at the spot the demon had vacated. \"", "He spoke the truth?\" ", "he asked.", "\n\n\"He cannot do otherwise,\" Hari reassured him. \"", "Now if you will take your medallion and put it away, so it will not be soiled by blood—\"\n\nBut the zamindar did not reach for the talisman. \"", "What am I to do with this situation?\" ", "he asked in bewilderment. \"", "How can I execute a man whose betrayal was inadvertent and unintended, and who does not blame me even when I blame him?\"", "\n\nThen Meena spoke up. \"", "If you will forgive my speaking, my master, I may have a suggestion. ", "Hari seems to have done you the favor of showing you the nature of your wife. ", "Perhaps only she should be executed, and Hari sent on his way without further action.\"", "\n\nDid you touch her?", "\n\nNo. ", "I had no need to, for she wishes no harm to come to Hari. ", "She is prepared to give him up, in order to save him.", "\n\n\"Perhaps so,\" the zamindar agreed, evidently still confused. ", "He turned to Balu. \"", "What do you say, my trusted advisor?\"", "\n\nLeela perked up. \"", "Trusted advisor!\" ", "she exclaimed with outrage. \"", "Let me tell you—\"\n\nThen she broke off, for Meena had taken a step toward her with the evident intention of jamming the large key down her throat.", "\n\n\"Obviously it is your wife who is at fault,\" Balu said quickly. \"", "She is rumored to be a passionate woman, and must have thought to achieve fulfillment from the traveler without his knowledge by visiting him anonymously in the dark. ", "He should be let go, being innocent in intention, but death may be too good for her. ", "For one thing, her family has connections that might prove to be awkward, if they chose not to believe her infidelity. ", "It might be better to divorce her and enlist her silence, sparing you public embarrassment.\"", "\n\nDid you touch him?", "\n\nNo. ", "I had no need to, for the fool loves her despite her nature and wishes to save her if he can.", "\n\n\"How could I enlist her silence?\" ", "the zamindar asked.", "\n\n\"My lord, if you will marry her to me, I will guarantee it. ", "She will never care to confess the shame of a lower-caste marriage, and will do her utmost to conceal it from her family. ", "You will then be free to marry a woman more to your liking, and thus improve your satisfaction in life.\"", "\n\nThe zamindar looked at Leela. \"", "Will you swear silence about what has passed this night, if I spare your life and marry you to Balu?\"", "\n\nLeela, realizing that this was a considerably better offer than she would otherwise receive, nodded. \"", "I will, my lord. ", "I will never speak word of this solitary indiscretion.\"", "\n\nAn unruly breath of air must have passed through the room at that moment, for both Meena and Balu suffered coughing fits, and even Hari felt a catch in his throat. ", "The zamindar did not notice, however. \"", "Then it shall be done,\" he decided. \"", "Disengage and go with Balu.\"", "\n\nLeela drew herself away from Hari, to whom she had remained embarrassingly connected, and quickly got into her gown. ", "In a moment she and Balu were gone.", "\n\n\"But I do not wish to live alone,\" the zamindar said with a sigh. \"", "And I do not wish to risk another marriage like the first. ", "I need a quiet, obedient, undemanding woman who understands me.\"", "\n\n\"There is one near,\" Hari said as he donned his own clothing.", "\n\n\"Oh, there is?\" ", "the zamindar asked in surprise.", "\n\n\"Meena is royal born, and is as fine a person and lovely a woman as any man could ask. ", "Have you not noticed how quiet and discreet she is?\"", "\n\nThe zamindar turned his gaze on Meena. \"", "Why, it is true! ", "You are high caste, and beautiful, and I have never had a complaint of your service. ", "However—\"\n\n\"Only at my lord's pleasure,\" Meena said, evidently realizing that this was an opportunity that was unlikely to be repeated. \"", "I am not a hungry woman, in certain respects.\"", "\n\n\"Then I shall marry you, for indeed you are worthy and I trust your discretion.\" ", "He turned again to Hari. \"", "It seems I owe you not mischief, but gratitude, for you have changed my life abruptly for the better. ", "Now I will accept the medallion back from you, and will enjoy your company for the duration of your stay here.\"", "\n\n\"You are welcome,\" Hari said, at last turning over the talisman.", "\n\nThe contest is done, horny freak. ", "I have completed my seventh seduction, and you have failed to kill the mortal man.", "\n\nAlas, you are correct. ", "You have escaped me, luscious goddess. ", "But there will be other centuries, and you will remain as delectable during them. ", "You have not seen the last of my horns.", "\n\nAnd so it was. ", "Leela disappeared into Balu's apartment, and it seemed that he was forever disciplining her, for there were often moans to be heard at night. ", "But she made no complaint, and spoke no word of the changed situation to others. ", "Meena did not join the zamindar, for that would have been indiscreet before the marriage, but their betrothal was announced and she moved to a far more elegant suite where she was richly attended, as befitted her new station. ", "Hari had many rewarding conversations with the zamindar, and showed him exactly how to pronounce the air demon's name so as to summon him, while never making the mistake of summoning the she-demon. ", "It was an excellent time.", "\n\nBut all good things pass, and it came time for Hari to move on. ", "He had promised to return home before too long, and further delay would cause his mother and sister to fret. ", "So he bid farewell to the zamindar and his betrothed, and set out afoot for his home village, relieved that things had turned out so well, though it was sad to leave his friends behind. ", "He promised to visit on another occasion.", "\n\nYet now as he turned his face toward home, he experienced an abiding regret. ", "He had sought enlightenment, and had failed to achieve it. ", "He was still the same somewhat naive young man he had been when he started. ", "And he still had the same desire for something more in life than just settling down in the home village with a home-grown girl and generating a family. ", "He had associated with men of great power and dallied with royal women; how could he settle for a minor life? ", "He knew he should, and perhaps in spirit he was willing, but his heart was loath.", "\n 14\n\n* * *\n\nMohini\n\nHeads turned and hands touched in greeting as Hari walked through the streets of his ancestral village. ", "Maidens smiled coyly and their hearts fluttered when they saw him. ", "Hope sprang alive in their dainty breasts, for the young Brahmin was a prize catch, one who thus far had eluded the marriage net. ", "But perhaps now there would be an opportunity for another cast.", "\n\nHis mother was picking flowers in the front garden when she saw him. ", "She dropped the blooms she had gathered, tears rushed to her eyes, and she held out her arms to him, her lips silently speaking his name. ", "His sister, Devi, came running out of the house, her face happy and shining, and she too embraced him. ", "He shared in their joy, glad to see them well and to be home again.", "\n\nHe told them of his travels, though he omitted certain details so as not to worry them. ", "They attended his every word, Devi in wide-eyed fascination and his mother in unrevealing solemnity.", "\n\nThen he remembered the rajah's gift. ", "He located a bulge in the lining of his tunic and forced out two small objects through the threads. ", "His mother and sister gaped in disbelief at what he held in his hand: two magnificent blood-red rubies. ", "He gave one to each of them. ", "If they had found his story to be too incredible, particularly his friendship with the rajah, the sight of the sparkling gems totally dispelled their doubts.", "\n\nBut it was the very wonder of the tale that worried his mother. ", "She was concerned that the excitement and intoxication of such experiences might have changed her son so that he might not be content to remain in the village, to settle down, marry, and raise a family. ", "But she gave no notice of her concern, at least not at the moment.", "\n\nWise woman.", "\n\nLater in the day a friend of Hari's, one Chandu, came by to renew acquaintances, and although Hari was glad to see his friend again, he was keenly conscious of the distance that had grown between them. ", "Chandu's jokes about the village girls and the old schoolteacher somehow did not seem very funny anymore, and their chatty conversation seemed much like others they had had before. ", "He chose not to tell his friend very much about his travels, for he did not wish to put up with the inevitable teasing and mocking expressions of disbelief.", "\n\nAt twilight he sat on the back veranda with his mother watching the glow of the sun slowly fade from pink to amber. ", "From inside the house he could hear the rhythmical click-clacking of Devi's spinning wheel, which seemed to say that all was right with the world. ", "And, indeed, the unchanging sameness of the house and village, the nearness of his mother and sister, gave him a feeling of belonging and security. ", "He realized that the old ways were not wrong, merely dull.", "\n\nBut all was not unchanged. ", "He saw the lines of worry around his mother's eyes that had not been there before, and how the streaks of gray in her hair had widened since he had gone away. ", "She saw him looking at her and smiled.", "\n\n\"Share your thoughts with your mother, my son.\"", "\n\n\"Oh, I was just daydreaming. ", "Mother, are you and Devi happy—in this house—in this village?\"", "\n\n\"Well of course, my son. ", "What a strange question! ", "This was your father's house. ", "Where else would we be happy or wish to live?\"", "\n\n\"Forgive me, Mother. ", "It was a silly question.\"", "\n\nWhen his mother next spoke, her voice was quiet and hesitant. \"", "Hari, there is a matter I would discuss with you, which concerns your sister, Devi.\"", "\n\n\"Yes, Mother?\"", "\n\n\"Devi has reached the age of marriage. ", "A suitable husband will have to be found for her. ", "I thought of asking your uncle Arun to begin making inquiries among the Brahmin families of the village. ", "But now that you are home, perhaps you would prefer to take on that task. ", "Devi does not complain, but I think she may be a little anxious. ", "It should not be difficult to locate good prospects. ", "She is attractive and a good homemaker, and your blessed father left us with sufficient means so that a modest dowry can be provided.\"", "\n\nHari shifted uncomfortably in his chair.", "\n\n\"I would like to help Devi, Mother. ", "But I think that Uncle Arun would probably be better. ", "He is much respected in the village and knows many families well. ", "I am sure that Devi would benefit from having many more candidates if the matter were placed in our uncle's hands.\"", "\n\n\"Well, perhaps so, my son. ", "I will ask Arun, then.\" ", "Hari could tell that his mother was deeply disappointed at his reply. ", "But she assumed a positive expression and proceeded to her next concern. \"", "Oh, did Devi tell you?\" ", "she asked in a tone of feigned cheeriness. \"", "While you were away our next-door neighbor's youngest daughter, Valli, asked about you many times. ", "It is no secret that she likes you. ", "As you know, her father is a large landowner who is much respected in the village. ", "He has arranged very successful marriages for his three oldest daughters, and I would not be surprised if one day soon he approaches me to inquire about you.\"", "\n\nHari inhaled deeply. \"", "Mother, Valli is a nice girl and no doubt will make a fine wife. ", "But I am not ready to talk of marriage. ", "I am not at all sure I want to marry. ", "I do not mean to disappoint you, but there are other things on my mind at the moment. ", "I pray that you will understand.\"", "\n\n\"Perhaps your soul is troubled, my son. ", "You left us because there were questions on your mind. ", "I had hoped that by traveling awhile you would satisfy your curiosity about the world and find answers to your questions. ", "But is the world really so different from our village?\"", "\n\n\"I—I am not sure, Mother. ", "But if I have questions, they are not the same ones I had before.\"", "\n\n\"Your father used to say that searches begin and end on one's own doorstep. ", "Always he looked to the sacred texts to guide our lives.\" ", "She took a breath that was almost a sigh. \"", "Hari, do your mother a favor. ", "Go to see your old teacher, the pundit Bava. ", "He is a wise man and you were one of his best pupils. ", "I know he would be glad to see you again, and perhaps he can advise you.\"", "\n\n\"Very well, Mother, if it pleases you.\"", "\n\nThe following morning, after making the required courtesy calls on his uncles and aunts, and politely enduring their lectures on the joys and duties of marriage, Hari made his way to the hut of the pundit, Bava, on the outskirts of the village. ", "As a student he had studied the Vedas as well as philosophy, logic, and mathematics under the pundit's tutelage, and he well remembered how the old Brahmin would become impatient with him because of his incessant questioning. ", "Whenever his mind strayed into forbidden territory, the pundit would steer him back to the right path, step by step, through impeccable logic. ", "Hari smiled to himself as he recalled that the pundit's questions, unlike his own, always seemed to have such clear satisfying answers.", "\n\nUpon arriving at the pundit's house, Hari found the old teacher seated cross-legged on the floor deep in meditation. ", "He looked exactly the same as always. ", "His face was thin and pale and wore a look of utter calm, disturbed only by a long nose which curved gracefully downward, ending in a sharp point that nearly touched his thin straight lips. ", "Long white hair poured down his craggy frame like a waterfall, joined by the teeming flow of his beard. ", "He was garbed in a white dhoti, though his upper torso was bare, and his brow was stained with three ash stripes.", "\n\nHari knew that the pundit sometimes fell asleep during his meditations, but as he was considering whether to make a noise of some kind to rouse the old teacher, the pundit's eyes blinked open. ", "The two dark pinpoints fastened on the young visitor.", "\n\n\"Here is a face I have not looked upon since the season of monsoons,\" said the pundit. ", "His voice was thin and high, yet serene. \"", "Come in.\"", "\n\nHari entered and prostrated himself before the pundit before seating himself on the floor.", "\n\n\"It has reached these old ears that you have been on a journey,\" said the teacher.", "\n\n\"Yes, Master.\" ", "Hari suddenly realized that he had forgotten to ask the pundit's blessing before embarking on his travels and so had been unintentionally disrespectful. ", "He felt embarrassed.", "\n\n\"And was your journey fruitful?\"", "\n\n\"Well, in some ways, Master.\"", "\n\n\"Yet I see that your soul is restless. ", "Did not your travels affirm what you have been taught?\"", "\n\n\"I—I am not sure. ", "No, not always.\"", "\n\n\"No? ", "Hmm. ", "Perhaps you were busy attending to matters of a transitory nature. ", "I will not try to guess what they might be. ", "But there is value in all experience—even the ephemeral can sometimes be of value in bringing about insight and realization.", "\n\n\"But I do not think you have come here today just to visit. ", "That has not been your habit in the past. ", "Something is troubling you. ", "Tell me what it is.\"", "\n\nHari lowered his head. \"", "O Master, I am not sure. ", "I saw much pain and uncertainty in my travels. ", "And also beauty. ", "But to look into the eyes and soul of the world is a fearful thing. ", "The world's soul is laden with sorrow, and now my soul too is heavy. ", "I did not ever think the taste of worldly life would be so bitter. ", "I would lighten the burden if I could. ", "I thought of becoming a sannyasi, an ascetic who lives by begging, though I fear that would disappoint my family.\"", "\n\nThe pundit nodded. \"", "Hari, the world sets many snares and shows us many false trails, which are not always easy to avoid. ", "One does not become a sannyasi to escape, but to seek.", "\n\n\"In your search for knowledge your vision has been obscured by Maya, the veil of illusion. ", "You have forgotton the lesson of the Vedas and the meaning of yoga. ", "You no longer strive for Atman, the silent formless depth of being within us and all things. ", "Have you forgotten that there are things that can not be learned from experience or found in books? ", "The intellect is useful, but it too is transitory. ", "The essence of self is not to be found in mind or body. ", "You were taught that the senses must be cleansed if you are to achieve intuition and insight and bring peace to your soul. ", "But you have forgotton these things. ", "You have fallen victim to selfish desires.", "\n\n\"You feel disquiet, but you are disquieted by that which is changeful yet can not be changed. ", "This earthly life is unstable. ", "Peace and stability must be sought elsewhere. ", "You are attracted to and repelled by the world, and yet you do not see that it is the selfsame desire and fear which troubles you. ", "Cherish not the world of illusion. ", "Cast out desire. ", "The world must be rejected if it is to be surpassed, if your spirit is to be unshackled.", "\n\n\"I can not grasp your foot and set it upon the path to Moksha. ", "That you must do for yourself. ", "But perhaps I can shine a small light through a window in the house of your soul that you may see the wisdom of our sacred ways.", "\n\n\"Meditate upon what I have said. ", "Then come to see me again.\"", "\n\nThe pundit closed his eyes and resumed his meditation. ", "Hari prostrated himself before the teacher and departed. ", "As he left he noticed that some fruit and milk had been set by the door of the hut by a villager, and he realized that he had forgotten to bring a food offering himself. ", "Indeed he had become selfish and neglectful of the proprieties.", "\n\nThe afternoon was bright and lazy. ", "Hari sat alone upon a grassy hill in the shade of a tree to ponder the pundit's words. ", "But he found it difficult to concentrate. ", "The breeze was fragrant with the smell of lilac, and the drifting clouds were building wondrous palaces in the sky. ", "In the branches above his head a pair of blackbirds were busily building a nest, and their comings and goings and incessant chatter made it impossible for him to think.", "\n\nAs he watched the clouds in their work, his hands played idly with the grass, and he felt something rub against his fingers. ", "Looking down, he saw sliding through the grass a small green snake trailing a half-shed skin. ", "Its shiny new coat glistened in the sunlight in contrast to the tattered brown shell it dragged behind.", "\n\n\"I think we may suffer from a similar problem,\" he said to the snake. \"", "But perhaps I can help you, at least this time. ", "Next time you will be on your own.\"", "\n\nHari pinned the trailing end of the dead skin to the ground with his forefinger, and as the snake slid forward the old skin peeled cleanly from its body, revealing a smooth bright coat beneath. ", "The snake stopped and raised its head. ", "Hari could feel its unblinking eyes looking deeply into his own.", "\n\n\"I hope life will be a little easier for you now, my friend,\" he said to the snake.", "\n\nThe snake darted out its tiny red-forked tongue, which quivered like a striking arrow; then it lowered its head and slithered away through the grass.", "\n\nThat evening Hari's mother asked about his visit with the pundit.", "\n\n\"Did your teacher give you any useful advice, my son?\"", "\n\n\"Yes, in a way, Mother. ", "He is wise in matters of the spirit, though in worldly matters I am less sure. ", "I still have questions.\"", "\n\n\"My son, there are always questions,\" his mother interrupted. ", "Her tone was hard and impatient. \"", "The world is full of questions. ", "But one can not stop living or avoid one's obligations and destiny simply because of questions. ", "I had hoped the pundit would reveal to you your sacred duty.\"", "\n\nA bolt of pain shot through Hari at these words.", "\n\nThere was a long silence. ", "When next she spoke, his mother's voice was soft, almost pleading.", "\n\n\"Hari, your sister and I love you. ", "We want you to be happy, to take your rightful place as your father's son in the village. ", "You are well liked and respected by everyone. ", "The pattern of our lives is set, and the road you must follow is the same that your father walked, and his father before him. ", "So it has been for many generations. ", "You are our only son, and in you are the seeds of generations of our family to come.", "\n\n\"Why do you keep putting off marriage? ", "And why have you not spoken with your uncle Arun about helping him manage the family properties? ", "There is a time in life for all things. ", "Now is the time for you to choose a wife and settle down. ", "If you wait much longer the best choices will be taken. ", "Will you not at least think upon this matter, my son?\"", "\n\nHari sighed. \"", "Mother, I know you and Devi are concerned about me. ", "And there is much in what you say. ", "I will think on it as you ask.\"", "\n\n\"Thank you, my son. ", "As for the worldly questions you spoke of, there is a wise woman, a mataji, who came to the village not long ago. ", "She is the niece of the old mataji, Aparna, who died but two months back. ", "Like Aparna, the new mataji gives advice to the women of the village. ", "She lives in Aparna's house at the southern end of the village. ", "I have not seen this new mataji myself, but some of the other women tell me that she gives sound advice on domestic matters. ", "Go and see her, my son. ", "It can do no harm, and you might find the visit to be helpful.\"", "\n\nHari had no wish to upset his mother further. \"", "Very well, I will go tomorrow if it pleases you.\"", "\n\nThe following morning Hari managed to find a number of unnecessary tasks to do around the house and yard, which served to delay his promised visit to the mataji. ", "He hated having to go. ", "The idea of consulting a domestic advisor to the village women was nothing less than humiliating. ", "But he had promised. ", "He prayed no one would find out.", "\n\nIn the early afternoon when few villagers were about the streets, Hari made his way to the mataji's house. ", "It was small and unassuming, but well kept and quiet by itself, nestled quaintly between two grassy hillocks and covered with flowering vines. ", "He knocked lightly on the door, hoping that no one would be at home. ", "Unfortunately, a voice from inside answered: \"Come in.\"", "\n\nHe entered into a small parlor, which was simply furnished with three chairs and a small table. ", "A curtain was drawn across one side of the room to separate it from the rest of the house.", "\n\n\"Please be seated,\" came a woman's voice from behind the curtain. ", "It was soft and lilting and had a tone of quiet confidence. ", "Hari sat in one of the chairs.", "\n\n\"Good day, Mataji, and thank you,\" he said in his most courteous voice, though it was slightly forced. ", "He waited for the mataji to emerge from behind the curtain, but she did not.", "\n\n\"Please introduce yourself,\" she said. \"", "I do not see many men here.\"", "\n\n\"My name is Hari, as was my father's. ", "I live in the village with my family—my mother and sister.\"", "\n\n\"Yes, I know,\" said the voice. \"", "Now I recognize you. ", "I have heard of your family and have seen you pass by my house.\" ", "There followed another long silence.", "\n\n\"O Mataji, will you be coming out so that we may converse? ", "If this is an inconvenient time for me to visit, I can return another day.\"", "\n\n\"No, now is fine. ", "In dispensing advice, I have found it better to remain behind the curtain. ", "It is easier that way for my guests to speak freely about what is in their hearts.\"", "\n\nHari guessed that the real reason the mataji chose to remain hidden was because she was much younger than most of the women who sought her advice.", "\n\n\"Tell me, what is it that troubles you?\" ", "asked the voice. \"", "Nothing we speak of will pass beyond these walls.\"", "\n\n\"O Mataji, I would ask about the world of the senses. ", "The sacred texts tell us we should cleanse ourselves of our desires. ", "Might I ask your view on this matter?\"", "\n\n\"We are flesh, and desire springs from the flesh. ", "We can as much separate the two as the warmth can be separated from the sun or the fragrance from the flower.\"", "\n\n\"Are our teachings, then, in error?\"", "\n\n\"You must not be a purist. ", "Our faith is a flexible instrument and may play many different melodies, some sweeter than others. ", "Its virtue is that it can embrace all conditions, and by so doing has survived many centuries. ", "Look around you. ", "The villagers live simple lives and think not of weighty philosophical questions. ", "They live much in the world of the senses, yet it would never occur to them that they are not good Hindus. ", "Perhaps you ask too many questions. ", "Accept what your senses tell you. ", "There is virtue, and even wisdom, in the simple life of the senses—as long as excesses are avoided.\"", "\n\n\"Indeed, that has been my problem. ", "I have sought enlightenment, yet somehow the things of the senses have overwhelmed me, and I have spent more time in the arms of young women than in converse with men of wisdom. ", "I find myself dissatisfied with the notion of either complete asceticism or complete acceptance of the kind of life my family wishes me to have. ", "My spirit has sought grace, but my flesh has found pleasure, and neither seems to be exactly what I wish for my life.\"", "\n\n\"Some do not readily fit in the forms of the world,\" she agreed. \"", "Some are obliged to compromise, to straddle realms as it were, partaking of the virtues and liabilities of each.\"", "\n\n\"You speak well,\" said Hari. \"", "Might I ask the source of your knowledge? ", "Do you have a teacher? ", "Which books have you consulted?\"", "\n\n\"I have no teacher or books. ", "There are some things that can not be learned except through experience or spiritual guidance.\"", "\n\n\"O Mataji, please forgive my next question if it is too personal, but I would ask how one who is yet young has gained enough experience to have learned so much about the world?\"", "\n\nA long silence followed. ", "When finally the mataji spoke her voice was distant, almost somber.", "\n\n\"I was born into experience. ", "I was nurtured on it, and I have denied it. ", "I have seized it and exploited it. ", "I have known its misery and its grandeur, its power and decadence. ", "And once, in the arms of a man, I knew its sweetness and divinity. ", "In a small village surrounded by a high wall, beneath the fallen eye of the goddess Kali.\"", "\n\nHari's breath caught and he leapt to his feet. ", "Could it be? ", "He pulled back the curtain and there before him stood Sumi. ", "Sumi: once high priestess of Kali, she who had tried to kill him and then saved his life, she who had traded away a lifetime of power to share but a brief moment of passion with him.", "\n\nHe could only gape at her in utter amazement. ", "Sumi! ", "Here in his own village. ", "Then he remembered her telling of an aunt in a distant village, a place where she would go to make a new life for herself. ", "Surely the goddess Lakshmi, or Kama, the love god, must have planned this, he thought.", "\n\nClose, lovely mortal man. ", "It was an Apsara who brought her here after she had settled elsewhere. ", "She is not really Aparna's niece, but the villagers have no way to know, and she is doing a better job than a true niece would have done.", "\n\nAs he stared into her eyes, his look of amazement melted into a warm, happy smile. ", "How lovely she looked, exactly as he last saw her. ", "She might be a goddess herself, he thought, with such soft delicate features, full breasts, and slender waist—or perhaps a temple courtesan with her full plum lips, eager flashing eyes, and dark exotic tresses.", "\n\n\"But now I must tell you something you may not wish to hear,\" she continued. \"", "It is something I did not know myself, when I rescued you from my own anger in that far village. ", "I spoke of spiritual guidance: what I did then was not my own devising, but was prompted by a spirit who entered me and—\" She paused, her eyes dropping as if she were embarrassed. \"", "And caused me to develop a sudden, intense, physical passion for you. ", "Thus I acted as I did, and forfeited my power.\"", "\n\n\"You were possessed by an evil spirit?\" ", "Hari asked, amazed.", "\n\n\"Not evil, merely interested in saving your life. ", "She did this by touching the mind or heart of a woman who was in a position to help you. ", "I was that woman, on that occasion. ", "And since, I have learned much about you from the spirit.\"", "\n\nHari hardly credited what she was saying, yet could not completely doubt it either. \"", "There were other occasions?\"", "\n\n\"Did you not wonder at how attractive women found you to be as you traveled?\"", "\n\n\"Why no. ", "The girls of my village find me attractive.\"", "\n\n\"But does it seem natural that a priestess or a princess or even a queen should find you so, and go to any lengths to indulge in coupling with you? ", "These are normally quite reserved ladies.\"", "\n\nHari realized that she had a point. ", "Princesses ordinarily did not throw themselves at poor travelers. \"", "Perhaps my male vanity prevented me from questioning it. ", "You say that a spirit caused these women to act as they did?\"", "\n\n\"Yes, in essence.\"", "\n\n\"But why would such a spirit have any interest in me? ", "I am not remarkable.\"", "\n\n\"She was indulging in a competition with another spirit, and it was necessary for her to cause seven different women to seduce you. ", "Now she has accomplished that. ", "But in the process she came to like you rather well, and wishes to associate with you further. ", "Do you suppose you could entertain the notion?\"", "\n\n\"Associate with a spirit? ", "But the spirits can not be seen or heard or felt. ", "Only the one in the cave, briefly—\"\n\n\"Pudmini the Bootham, in the endless caverns. ", "She could be heard and felt, as you discovered. ", "But once you lessened her burden, she became completely spiritual and could no longer be detected by mortals.\"", "\n\n\"How could you know that?\" ", "Hari asked, astonished. \"", "I told no one!\"", "\n\n\"The spirit told me—not Pudmini, but the one who followed you.\"", "\n\n\"But how could that be, if she can not be seen or heard or felt?\"", "\n\n\"She can enter the minds of mortals and stir in them thoughts or emotions. ", "Because I was a priestess of Kali, she was able to enter my mind more deeply, and reveal the thoughts she wished to communicate to you. ", "Now she wishes to know whether you are willing to come to know her better, knowing her for what she is.\"", "\n\n\"But if I can not sense her, how can I know her?\"", "\n\n\"By the women she possesses for you. ", "Her powers of influence over mortals are limited. ", "She can enter only females, and can instill only certain feelings, which are usually temporary unless the woman has a basic affinity for the type of feeling generated. ", "But should she find an amenable host she could do considerably more, becoming for that time almost mortal. ", "That is the case with me: I am allowing her into my mind and speaking for her, because of the reward she offers me in return. ", "But she could do it with any other woman, if you truly accepted her, and—\"\n\nHari remained confused and troubled by these revelations, but part of him saw the rationale of it, and saw how well it fitted in with his experience. ", "He was beginning to believe. \"", "And—?\"", "\n\n\"And loved her.\"", "\n\n\"Love a formless spirit?\"", "\n\n\"Her form would be that of the woman she possessed at the time. ", "Her words would be her own.\"", "\n\nHari shook his head. \"", "It would not be love for the woman I saw, but for the spirit who possessed her—who might at any time fly away to possess some other woman.\"", "\n\n\"Which other woman would then have the same love for you the spirit does, being then the same person.\"", "\n\n\"But that would mean that my love was any woman, or no woman. ", "How would I know her?\"", "\n\n\"By her words and actions. ", "You would not mistake her, whatever her form of the moment.\"", "\n\n\"But I could not settle down with a different woman each day! ", "The village would never allow it.\"", "\n\n\"True. ", "You would have to select a local woman to be your apparent wife. ", "She would have to agree to let the spirit possess her and speak and act through her, as is the case with me at present. ", "And to allow you to be with whatever other woman the spirit possessed for you.\"", "\n\n\"For me?\"", "\n\n\"She would seek only to please you, by the intensity of her desire for you and the variety of forms she could assume for your pleasure.\"", "\n\nThe belief was solidifying, and so was his interest. \"", "As was the case when I traveled?\"", "\n\n\"As was the case, from Meena on through Leela. ", "Did you not find them to be varied and accommodating?\"", "\n\n\"I tried to avoid Leela! ", "She tricked me in the darkness, just as I tricked her before.\"", "\n\n\"But in that darkness, before you knew—did you have any complaint of the occasion?\"", "\n\nHari remembered the overwhelming intensity of the event. \"", "It could be like that, again?\"", "\n\n\"With any mortal woman you wish. ", "If you give the spirit the power.\"", "\n\nThat made him wary again. \"", "The she-demon wanted me to speak her name a second time, to give her power, but I would have regretted it had I done so. ", "How can I trust this other spirit?\"", "\n\n\"Trust can come only with time. ", "But she can have mortal power only with your acceptance and love. ", "If she betrays you, your love will wither. ", "Then she will fade.\"", "\n\n\"I must think about this,\" he said uncertainly.", "\n\n\"Of course. ", "It is your decision. ", "She will accede to your desire of whatever nature, for the duration of your life, for it is but an instant to her. ", "Simply tell her what you want, for once she possesses a mortal woman she cannot divine your thoughts directly.\"", "\n\n\"She can read my thoughts when she is in the spirit state?\"", "\n\n\"Yes. ", "She is unable to enter and control a man, but she can fathom his thoughts.\"", "\n\n\"Then she will know what I decide.\"", "\n\n\"Yes. ", "I have presented her case; now you must do as you see fit. ", "She bids you parting, for now, but she will return the instant you wish it.\"", "\n\nThen something changed in Sumi. ", "It was subtle, but Hari could tell that a quality had departed from her.", "\n\n\"But I had another question,\" he protested. \"", "Perhaps two.\"", "\n\nSumi raised her eyes. \"", "Perhaps I can answer them.\"", "\n\n\"What is her name?\"", "\n\n\"Mohini the Apsara.\"", "\n\n\"Mohini,\" he repeated, liking it. \"", "And what of the women she possesses? ", "What of their own spirits?\"", "\n\n\"They are present, but in reduced circumstances. ", "That is why they must agree to her possession, for they can rise and hurl her forth from their bodies if they wish. ", "It is only when she puts a notion into their minds that they think is their own that it has full effect. ", "When they know her, they have power to expel her.\"", "\n\n\"How can you be sure of this?\"", "\n\n\"Because I have been knowingly possessed by her, after being unknowingly prompted to passion for you. ", "I have experienced both forms of her involvement. ", "I know their natures.\"", "\n\n\"And now you are yourself again?\"", "\n\n\"Yes. ", "My task is done.\"", "\n\nHari remembered how the guru Sundar had transferred his spirit to Hari's own body, so that he might indulge himself in one act of love with his dutiful young wife, Sharmila. ", "That participation had not been burdensome to Hari, and indeed it had had its own reward. ", "He appreciated how Mohini the spirit could similarly enter the body of a woman and partake of her activities without harming her in mind or body. ", "The guru had been old and frail; Mohini lacked substance. ", "Their needs were in their fashions similar. ", "There seemed to be no reason to distrust the process, though it was not a thing it would be easy to explain to others.", "\n\nTrue.", "\n\nHari thought of another question. \"", "What reward did she promise you?\"", "\n\n\"I think you know it.\"", "\n\nHe read a question in her eyes, a question rimmed with tears, to which his heart well knew the answer. ", "No doubts assailed him now as they came together and embraced. ", "Gently he pressed her to him and set his lips to hers. ", "All was feeling: the soft warmth of her body as it bent willingly against his, her pounding heart and swelling breasts, the passion in her kiss. ", "And like a candle flame-kissed, the weight upon his soul melted away, even as his spirit took flight, soaring into the timeless oblivion of pure delight, to that blissful dimension the gods had set aside for mortals that they might glimpse the infinite and touch the edge of eternity.", "\n\nSumi gave wholly of herself, and long did Hari linger in her arms. ", "And in those moments of sweet calm between the sea-waves of passion, Hari became aware of Sumi's true feelings toward him. ", "Her gentle caresses, her tenderness, the adoration in her eyes, her soft whisperings, all spoke of love. ", "It was a message his heart could not help but heed, and which his mind was powerless to deny.", "\n\n\"Yet, this is temporary?\" ", "he asked when the edge of passion had been blunted.", "\n\n\"Perhaps. ", "I was, it seems, more than ready to accede to her nudge.\"", "\n\n\"Then maybe it should be you whom—whom I marry.", "\n\nShe considered. \"", "I think not.\"", "\n\n\"Not?\" ", "he asked, surprised. \"", "Why?\"", "\n\n\"Because I am a jealous, hot-tempered woman. ", "I would be enraged if I caught you in the embrace of another woman after you had pledged yourself to me. ", "That would interfere with much of what Mohini offers you.\"", "\n\n\"You love me, yet you tell me this?\"", "\n\n\"I tell you this because I love you. ", "Because I also know that my love may fade, being perhaps artificial, and that you deserve what Mohini offers. ", "It is in your nature to crave more variety than any one mortal woman can provide.\"", "\n\n\"But if I marry some other woman, then you will not have even this much with me.\"", "\n\n\"I will—if you choose me as an alternate woman.\"", "\n\n\"You would prefer to be an alternate, to being the primary? ", "Will you not be as jealous whatever your state?\"", "\n\n\"No, for my expectations will differ. ", "I will know that when you come to me, it is only because you truly desire me, not because you are committed to me. ", "I crave your love, not your commitment. ", "Meanwhile, I shall have a good position here, that is fulfilling in other ways, and is perhaps more appropriate for one who is unmarried. ", "So I think you should go and find some simple village girl who will gladly settle for what you offer and not be jealous.\"", "\n\nHari considered that. \"", "Perhaps you are right, Sumi. ", "I thank you for your assessment of the situation.\"", "\n\n\"Understand, Hari, if I thought for a moment I could be what I needed to be, I would instantly marry you. ", "But I have learned much realism recently, and believe I know what is best for us both. ", "I am not denying you passion, only marriage.\"", "\n\n\"I thank you again. ", "Surely there will be another occasion, soon.\"", "\n\n\"I thank you for that belief,\" she said, smiling a bit wanly. ", "It had clearly been a difficult decision for her.", "\n\nThat evening on the veranda Hari's mother cast anxious glances at him, but said nothing. ", "He observed his mother's uneasiness and knew its cause.", "\n\n\"Did you visit the mataji today, my son?\" ", "she asked finally.", "\n\n\"Yes, Mother.\"", "\n\n\"And was she as wise as the village women say?\"", "\n\n\"Well, yes, in her way. ", "But she is yet young, not much older than Devi, and so still has much to learn.\" ", "He knew it would be unwise to tell her of the true nature of his dialogue with Sumi.", "\n\n\"Was she of no help to you, then?\"", "\n\n\"She was extremely helpful, Mother. ", "It is sometimes useful to have the detached view of one who knows of life's day-to-day problems.\"", "\n\n\"Yes, my son, that is quite true. ", "There is a practical side to life which can not be ignored. ", "If the mataji made you see that, then she is clever indeed. ", "Yes, our traditions also come from the earth, not only from the hands of the gods in Swarga.\"", "\n\nA period of silence followed, broken only by the chirps of the crickets beneath the veranda and the click-clack of Devi's spinning wheel.", "\n\n\"And have you thought further on the matter we discussed last evening, my son?\"", "\n\n\"Yes, Mother. ", "I have a better understanding now of some of the questions that have been on my mind. ", "And I have made some decisions. ", "I will marry, perhaps soon. ", "But it will be a woman of my own choosing.\"", "\n\nHis mother's hands and body shook with her pleasure. \"", "Oh my son, you have brought great joy to your mother's heart. ", "Devi too will be pleased, as will your aunts and uncles.\"", "\n\n\"You mentioned that Valli may be interested in me. ", "I have not heeded her at all recently. ", "As I recall, she is a rather pretty and agreeable girl.\"", "\n\nHis mother smiled, immediately aware of the change in his interest. \"", "You have indeed not been observing her, my son. ", "She has in recent months become uncommonly beautiful, yet remains quite pliable. ", "She would not give you any argument about anything, ever. ", "Unless by some ill chance you wished not to beget children.\"", "\n\nHari smiled. \"", "There will be no such ill chance. ", "Perhaps we should invite her to dinner tomorrow. ", "I think I may have something of import to discuss with her. ", "Is that all right?\"", "\n\n\"Yes, of course. ", "Her family is well respected in the village and we will be honored.\"", "\n\nO my darling mortal man! ", "You have decided. ", "You will never regret this.", "\n\nFor Hari was thinking about the prospect of having a stable, socially acceptable marriage, while also having the apparent love of any woman he might choose, wherever he might travel, including one or two or even three lovely princesses. ", "He rather thought he could learn to love the spirit behind the form, as well as the woman who enabled him to participate. ", "Mohini—already the name was assuming significance. ", "Valli, who would be there when the spirit was not, to bear his children and care for them. ", "He could be a responsible citizen without giving up his wayward dreams.", "\n\nHe was definitely not cut out to be an ascetic, he concluded.", "\n\nDefinitely not, my precious one.", "\nAuthors' Notes\n\n* * *\n\nPiers Anthony\n\nThis may be hard to believe, but I have been trying to avoid collaborations. ", "So how is it that at this writing in June 1993 the last three novels I have done have been collaborative? ", "Well, I consider each case separately on its merits. ", "I do turn down most offers of collaboration, and sometimes there are hurt feelings about that, but I accept those that seem to have merit, and that I think I can contribute to meaningfully. ", "Sometimes in Authors' Notes I spell out exactly what each collaborator did, and sometimes I don't. ", "I will say that in this case I wrote some of each chapter and all of one chapter, while Alfred Tella wrote all the rest. ", "His was the original manuscript; I did the revising. ", "This is the general pattern of most of my collaborations. ", "I'm quite reasonable about it: all I want is to have everything my way. ", "And no, I did not originate the vegetarian theme, though I am a vegetarian.", "\n\nBecause my collaborator did most of the work, this project did not take me long. ", "Not much happened to me in this limited period, except that I broke my glasses on the way home from attending my wife and daughter's joint birthday celebration; the case got caught by a closing car door. ", "Naturally the same-day-service type of optician did not have in stock the standard frames I had gotten four years before and had to special-order them, leaving me to struggle through using my heavy computer glasses full-time for how much over a week is not known at the moment. ", "A sore nose can be marvelously irritating and unconducive to thoughts of spirituality.", "\n\nBut I also read a novel. ", "I mean someone else's novel. ", "I was curious about The Bridges of Madison County by Robert James Waller, then over forty weeks on the national bestseller lists and still #1. ", "What's the secret to such success? ", "It's a small novel, simply told, about a four-day affair between a wandering photographer and an Iowa farmer's wife. ", "Not much there, obviously. ", "But by the time I finished it, the story had gotten to me, and I was in a daze. ", "Evidently my reaction is not unique; there's just something about that story. ", "So for those who are curious whether a rattlesnake will be poisoned if bitten by another, or whether a commercial writer can be moved by someone else's commercial writing, the answer is yes. ", "Am I jealous? ", "Of course.", "\n\nAlfred Tella\n\nI was dubious about collaborations in fiction until I read the magnificent trilogy of novels by George S. Viereck and Paul Eldridge entitled My First Two Thousand Years, Salome, and The Invincible Adam. ", "Since then I've read other coauthored novels that worked and have become curious to make the experiment. ", "Different authors have different strengths, and the right combination can bring synergy to a common product.", "\n\nWhy Piers as a partner? ", "Because he is a gifted writer whose novels I enjoy, and because we share certain values, among them an appreciation of history and an affection for nature, critters, and our planet. ", "If we're not quite kindred souls, the spiritual overlap is considerable. ", "We've been corresponding ever since Piers blurbed my 1990 novel, Sundered Soul.", "\n\nAsian cultures, mythologies, and tales have always held a special fascination for me, and the Indian setting of The Willing Spirit was inspired by such classics as the Panchatantra, the Ramayana, and the Vickram stories, and also by my friendships with Indo-Americans. ", "The stories and fables from the ancient Sanskrit are timeless, and in many ways are the progenitors of modern fantasy.", "\n\nIf you're wondering about all those pigeons in Chapter 7, it's because I have a pigeon loft at home—actually, a converted garage with a built-on aviary. (", "The car stays outside.) ", "The birds are the fancy varieties, in many colors and sporting lovely body ornaments—crests, hoods, and feathered feet. ", "If you're curious, take a look at the striking color photographs in Wendell Levi's book, Encyclopedia of Pigeon Breeds. ", "Even better, visit a local pigeon show!", "\n\nMy wife and I live in northern Virginia surrounded by trees and wildlife, friends all. ", "Some of our more unusual visitors have been a stripeless skunk, a white deer, a maskless mother raccoon (with masked babies), a house-eating woodpecker, and a television-addicted flying squirrel who watches from a tree outside our living room window.", "\n\nAn acknowledgment: Some of the ingredients used in the divine creation of women (Chapter 7) owe to F. W. Bain's translation from the ancient Sanskrit, as given in a recipe in his 1898 book, A Digit of the Moon.", "\nAll rights reserved, including without limitation the right to reproduce this ebook or any portion thereof in any form or by any means, whether electronic or mechanical, now known or hereinafter invented, without the express written permission of the publisher.", "\n\nThis is a work of fiction. ", "Names, characters, places, events, and incidents either are the product of the author's imagination or are used fictitiously. ", "Any resemblance to actual persons, living or dead, businesses, companies, events, or locales is entirely coincidental.", "\n\nCopyright © 1996 by Piers Anthony Jacob and Alfred Tella\n\nISBN: 978-1-4976-5841-7\n\nThis edition published in 2014 by Open Road Integrated Media, Inc.\n\n345 Hudson Street\n\nNew York, NY 10014\n\nwww.openroadmedia.com\n\n**Open Road Integrated Media** is a digital publisher and multimedia content company. ", "Open Road creates connections between authors and their audiences by marketing its ebooks through a new proprietary online platform, which uses premium video content and social media.", "\n\n**Videos, Archival Documents, and New Releases**\n\nSign up for the Open Road Media newsletter and get news delivered straight to your inbox.", "\n\nSign up now at\n\nwww.openroadmedia.com/newsletters\n\n**FIND OUT MORE AT**\n\n**WWW.OPENROADMEDIA.COM**\n\n**FOLLOW US:**\n\n**@openroadmedia and**\n\n**Facebook.com/OpenRoadMedia**\n" ]
{ "pile_set_name": "Books3" }
[ 0.011111111111111112, 0.125, 0, 0, 0.0196078431372549, 0, 0.008620689655172414, 0, 0, 0, 0, 0, 0, 0, 0.006578947368421052, 0, 0, 0, 0.009345794392523364, 0.011904761904761904, 0, 0, 0.008849557522123894, 0, 0.041666666666666664, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.003861003861003861, 0, 0, 0.007407407407407408, 0, 0, 0, 0, 0.047619047619047616, 0, 0.00425531914893617, 0, 0, 0, 0, 0.005714285714285714, 0, 0, 0.02631578947368421, 0, 0, 0, 0, 0.006944444444444444, 0, 0, 0.058823529411764705, 0, 0, 0, 0, 0, 0, 0.041666666666666664, 0, 0, 0, 0, 0, 0.021739130434782608, 0, 0, 0.006578947368421052, 0.006211180124223602, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008547008547008548, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.010869565217391304, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.005988023952095809, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.009009009009009009, 0, 0, 0, 0, 0, 0, 0, 0.012987012987012988, 0, 0, 0.007042253521126761, 0.012987012987012988, 0, 0, 0.005434782608695652, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.012658227848101266, 0, 0, 0.006666666666666667, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.013333333333333334, 0, 0.011111111111111112, 0, 0, 0, 0, 0.058823529411764705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.004366812227074236, 0.012345679012345678, 0, 0, 0, 0.009708737864077669, 0, 0.014705882352941176, 0, 0, 0, 0, 0, 0, 0, 0.0136986301369863, 0.01639344262295082, 0, 0, 0, 0.014814814814814815, 0, 0, 0, 0, 0, 0, 0, 0, 0.01098901098901099, 0, 0, 0, 0, 0, 0, 0, 0, 0.007352941176470588, 0, 0, 0, 0, 0, 0.008130081300813009, 0, 0, 0, 0.008130081300813009, 0, 0, 0, 0, 0.0136986301369863, 0, 0, 0, 0, 0, 0.019230769230769232, 0, 0, 0, 0, 0, 0, 0.03125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.03225806451612903, 0.023255813953488372, 0, 0, 0.011904761904761904, 0, 0, 0, 0, 0.01, 0, 0.02564102564102564, 0, 0, 0, 0, 0.03333333333333333, 0, 0, 0.016666666666666666, 0.01282051282051282, 0, 0, 0, 0.009345794392523364, 0, 0, 0.01694915254237288, 0.0064516129032258064, 0, 0.017857142857142856, 0, 0, 0.004830917874396135, 0, 0.002638522427440633, 0, 0, 0, 0.003875968992248062, 0.019417475728155338, 0, 0.017241379310344827, 0.022727272727272728, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.005714285714285714, 0.0043859649122807015, 0, 0, 0, 0.017543859649122806, 0, 0, 0, 0, 0.009302325581395349, 0, 0, 0.0078125, 0.00847457627118644, 0, 0, 0, 0, 0, 0, 0, 0, 0.014285714285714285, 0, 0, 0.007633587786259542, 0, 0.013422818791946308, 0, 0, 0, 0, 0, 0, 0.016666666666666666, 0, 0, 0, 0, 0, 0.008403361344537815, 0, 0.006172839506172839, 0, 0, 0, 0, 0.0058823529411764705, 0, 0, 0, 0, 0, 0, 0, 0, 0.005235602094240838, 0, 0.02127659574468085, 0, 0, 0, 0.015384615384615385, 0, 0.022222222222222223, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.023809523809523808, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.012048192771084338, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.014084507042253521, 0.02702702702702703, 0.004464285714285714, 0.014084507042253521, 0.006493506493506494, 0.007518796992481203, 0.007462686567164179, 0, 0, 0.02702702702702703, 0.011494252873563218, 0.009523809523809525, 0, 0, 0.015873015873015872, 0, 0.014492753623188406, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.01282051282051282, 0, 0, 0, 0, 0, 0, 0.011494252873563218, 0.024793388429752067, 0.006993006993006993, 0.012903225806451613, 0.019230769230769232, 0, 0.008547008547008548, 0, 0, 0, 0, 0, 0, 0, 0.0196078431372549, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0196078431372549, 0, 0, 0, 0.008, 0, 0, 0, 0.028985507246376812, 0.013513513513513514, 0, 0, 0, 0, 0, 0.009009009009009009, 0, 0, 0, 0, 0, 0, 0.02564102564102564, 0, 0.007042253521126761, 0, 0.006666666666666667, 0, 0, 0, 0.005263157894736842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.006060606060606061, 0, 0.005235602094240838, 0, 0.014492753623188406, 0, 0, 0, 0.02702702702702703, 0.038461538461538464, 0, 0.03571428571428571, 0, 0, 0, 0, 0.009433962264150943, 0, 0, 0, 0, 0, 0, 0, 0, 0.010869565217391304, 0, 0, 0.00816326530612245, 0, 0, 0.05263157894736842, 0, 0, 0, 0, 0.02127659574468085, 0, 0, 0, 0.00641025641025641, 0.009259259259259259, 0.00819672131147541, 0.007142857142857143, 0.010526315789473684, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.011764705882352941, 0, 0, 0, 0, 0, 0, 0, 0.005813953488372093, 0, 0, 0.017241379310344827, 0, 0, 0, 0.004405286343612335, 0, 0, 0, 0, 0.009708737864077669, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.007692307692307693, 0.005747126436781609, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.038461538461538464, 0.011904761904761904, 0, 0, 0, 0, 0, 0, 0, 0.00980392156862745, 0, 0, 0, 0, 0.006329113924050633, 0.004761904761904762, 0.021739130434782608, 0.02702702702702703, 0, 0, 0, 0, 0, 0, 0, 0.013888888888888888, 0, 0, 0, 0.01639344262295082, 0.00819672131147541, 0, 0, 0, 0, 0, 0, 0, 0, 0.021739130434782608, 0.02, 0, 0, 0.010869565217391304, 0, 0, 0, 0, 0, 0, 0, 0, 0.007874015748031496, 0, 0, 0, 0, 0, 0, 0.019230769230769232, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.015151515151515152, 0, 0.017241379310344827, 0, 0, 0, 0, 0, 0, 0, 0.041666666666666664, 0.058823529411764705, 0, 0, 0, 0, 0, 0, 0, 0, 0.011627906976744186, 0, 0, 0, 0, 0.024390243902439025, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.010101010101010102, 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, 0, 0, 0, 0, 0, 0, 0.006578947368421052, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.012658227848101266, 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.008849557522123894, 0, 0, 0.01694915254237288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.015625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.012987012987012988, 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.018867924528301886, 0, 0, 0, 0, 0, 0, 0, 0, 0.009433962264150943, 0, 0, 0.006289308176100629, 0, 0, 0, 0, 0, 0, 0, 0.010582010582010581, 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.00819672131147541, 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.008547008547008548, 0, 0, 0, 0, 0, 0, 0, 0.00980392156862745, 0, 0, 0, 0.013157894736842105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.009345794392523364, 0, 0.005076142131979695, 0, 0, 0, 0.007407407407407408, 0, 0, 0.02127659574468085, 0.006493506493506494, 0.00684931506849315, 0, 0, 0, 0.007936507936507936, 0.04, 0, 0.030303030303030304, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008620689655172414, 0, 0.01818181818181818, 0, 0, 0, 0, 0, 0, 0, 0, 0.00819672131147541, 0.009900990099009901, 0, 0, 0.009708737864077669, 0, 0.007575757575757576, 0.01935483870967742, 0.013513513513513514, 0, 0, 0, 0.010416666666666666, 0.011111111111111112, 0.01282051282051282, 0.01818181818181818, 0.014084507042253521, 0.014285714285714285, 0.010309278350515464, 0, 0, 0.01639344262295082, 0, 0.011494252873563218, 0, 0.008264462809917356, 0, 0, 0.008849557522123894, 0, 0.007352941176470588, 0, 0, 0.021505376344086023, 0, 0.007936507936507936, 0, 0.008695652173913044, 0, 0.018867924528301886, 0, 0, 0, 0.02040816326530612, 0, 0, 0, 0.018867924528301886, 0.014705882352941176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.009174311926605505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.010752688172043012, 0, 0, 0, 0, 0, 0.014705882352941176, 0, 0, 0, 0, 0.005952380952380952, 0, 0, 0, 0.04, 0, 0, 0, 0, 0, 0.011235955056179775, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.010869565217391304, 0, 0, 0.007352941176470588, 0, 0, 0, 0, 0.06666666666666667, 0, 0, 0.007633587786259542, 0, 0.007042253521126761, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.006993006993006993, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.022727272727272728, 0, 0, 0, 0, 0, 0.011363636363636364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008130081300813009, 0, 0.006944444444444444, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.02857142857142857, 0.023809523809523808, 0, 0, 0, 0, 0, 0, 0.04838709677419355, 0, 0, 0, 0.00847457627118644, 0.014285714285714285, 0.00980392156862745, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0125, 0, 0, 0, 0, 0, 0.025, 0, 0, 0, 0, 0.008733624454148471, 0, 0.030303030303030304, 0.02857142857142857, 0, 0.009900990099009901, 0, 0, 0, 0, 0, 0, 0.009433962264150943, 0.014705882352941176, 0.007936507936507936, 0.008695652173913044, 0, 0, 0.0136986301369863, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.030303030303030304, 0, 0, 0, 0, 0, 0, 0, 0.03333333333333333, 0.012345679012345678, 0, 0, 0, 0.030303030303030304, 0.01020408163265306, 0, 0, 0.07692307692307693, 0, 0, 0.02564102564102564, 0, 0, 0, 0, 0, 0, 0, 0.00819672131147541, 0.01020408163265306, 0, 0, 0, 0, 0.04, 0, 0, 0, 0.011363636363636364, 0, 0, 0.02631578947368421, 0, 0.037037037037037035, 0.011627906976744186, 0.01694915254237288, 0, 0, 0, 0.011627906976744186, 0.017241379310344827, 0, 0.010309278350515464, 0.038461538461538464, 0, 0, 0, 0, 0, 0, 0.07692307692307693, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.009174311926605505, 0.013157894736842105, 0, 0, 0, 0, 0, 0.022222222222222223, 0.007462686567164179, 0, 0.027777777777777776, 0.008333333333333333, 0, 0, 0, 0.023809523809523808, 0.013333333333333334, 0, 0, 0.011235955056179775, 0.011764705882352941, 0.01818181818181818, 0, 0, 0.005917159763313609, 0, 0, 0.014925373134328358, 0.015748031496062992, 0.012658227848101266, 0, 0, 0.020833333333333332, 0, 0.011494252873563218, 0, 0, 0.009708737864077669, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.016666666666666666, 0, 0, 0.02857142857142857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.006944444444444444, 0, 0.00625, 0, 0.006756756756756757, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.003436426116838488, 0, 0, 0, 0, 0, 0.005319148936170213, 0, 0, 0.011111111111111112, 0, 0, 0, 0, 0, 0, 0, 0.011450381679389313, 0, 0, 0, 0, 0, 0, 0.013513513513513514, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.013513513513513514, 0.007936507936507936, 0, 0, 0, 0, 0, 0.006896551724137931, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.041666666666666664, 0, 0, 0, 0, 0.023809523809523808, 0, 0, 0, 0, 0, 0, 0, 0.011235955056179775, 0, 0, 0, 0, 0.022222222222222223, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.027777777777777776, 0, 0, 0.017241379310344827, 0, 0, 0, 0, 0.00641025641025641, 0, 0, 0, 0.047619047619047616, 0.08333333333333333, 0.017241379310344827, 0, 0.021739130434782608, 0, 0, 0, 0, 0, 0, 0, 0.02564102564102564, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.01652892561983471, 0, 0.005714285714285714, 0.023809523809523808, 0, 0, 0, 0.02857142857142857, 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.02857142857142857, 0, 0, 0.007692307692307693, 0.004878048780487805, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.011363636363636364, 0, 0, 0, 0.00966183574879227, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.01, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008849557522123894, 0, 0.012195121951219513, 0.037037037037037035, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008849557522123894, 0, 0, 0, 0, 0, 0.022222222222222223, 0.010309278350515464, 0.008264462809917356, 0.008, 0.009615384615384616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.00816326530612245, 0.005154639175257732, 0, 0.0048543689320388345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.005050505050505051, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.024390243902439025, 0, 0, 0, 0, 0.02857142857142857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008849557522123894, 0, 0, 0.019230769230769232, 0.02702702702702703, 0, 0, 0.02127659574468085, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.023809523809523808, 0, 0, 0, 0, 0, 0, 0, 0.037037037037037035, 0, 0, 0, 0, 0.019417475728155338, 0.011494252873563218, 0, 0, 0, 0, 0, 0, 0, 0.013888888888888888, 0, 0, 0, 0, 0.010309278350515464, 0, 0, 0, 0, 0, 0.023809523809523808, 0.009615384615384616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.004739336492890996, 0, 0, 0, 0.00980392156862745, 0, 0.009433962264150943, 0, 0.014705882352941176, 0, 0.006802721088435374, 0, 0, 0, 0, 0, 0.008, 0.0125, 0.005988023952095809, 0, 0.01818181818181818, 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.013157894736842105, 0, 0, 0, 0, 0, 0, 0.0031847133757961785, 0.02702702702702703, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0049504950495049506, 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, 0, 0, 0, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.010869565217391304, 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.010101010101010102, 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.0136986301369863, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.010869565217391304, 0, 0, 0, 0, 0.0018148820326678765, 0, 0, 0, 0.02564102564102564, 0.02, 0.09090909090909091, 0, 0, 0, 0, 0, 0.007575757575757576, 0, 0, 0, 0, 0, 0.02, 0, 0, 0, 0, 0.009259259259259259, 0.029411764705882353, 0, 0.0196078431372549, 0, 0, 0.023255813953488372, 0, 0, 0.05, 0, 0, 0.009523809523809525, 0.03125, 0, 0, 0.017543859649122806, 0.034482758620689655, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.01020408163265306, 0, 0, 0, 0, 0, 0, 0, 0.02631578947368421, 0, 0.03571428571428571, 0, 0.010638297872340425, 0, 0, 0, 0, 0, 0, 0, 0, 0.014492753623188406, 0, 0, 0, 0, 0.018867924528301886, 0, 0, 0.013333333333333334, 0, 0.01, 0, 0.02702702702702703, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.047619047619047616, 0.03225806451612903, 0, 0, 0, 0, 0.022727272727272728, 0.0625, 0, 0, 0, 0, 0, 0, 0, 0.016666666666666666, 0, 0, 0.006802721088435374, 0, 0.07692307692307693, 0, 0.009345794392523364, 0, 0, 0, 0, 0, 0, 0, 0, 0.043478260869565216, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0625, 0, 0, 0, 0, 0, 0, 0, 0, 0.031746031746031744, 0, 0, 0, 0, 0, 0, 0, 0.025, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.010638297872340425, 0, 0.02, 0, 0, 0, 0.01282051282051282, 0.00980392156862745, 0, 0.015873015873015872, 0, 0, 0.011764705882352941, 0, 0, 0.02631578947368421, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.015873015873015872, 0, 0.009009009009009009, 0, 0, 0.006622516556291391, 0.008264462809917356, 0, 0, 0.1, 0, 0.1, 0, 0.14285714285714285, 0, 0, 0, 0, 0, 0, 0, 0.02631578947368421, 0.16666666666666666, 0.05, 0.05555555555555555, 0.05555555555555555, 0, 0, 0, 0.022222222222222223, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.00684931506849315, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0056179775280898875, 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.07692307692307693, 0, 0, 0, 0, 0, 0, 0, 0, 0.00684931506849315, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.05263157894736842, 0.006134969325153374, 0, 0, 0, 0, 0, 0, 0.00423728813559322, 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.05263157894736842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.012195121951219513, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.038461538461538464, 0, 0, 0, 0, 0, 0, 0, 0.02631578947368421, 0, 0, 0, 0, 0, 0, 0.047619047619047616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.009009009009009009, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.023255813953488372, 0, 0, 0, 0.030303030303030304, 0, 0, 0, 0, 0.0625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.006711409395973154, 0, 0, 0, 0, 0, 0, 0, 0.014705882352941176, 0, 0, 0, 0, 0, 0, 0, 0.010309278350515464, 0, 0, 0, 0, 0, 0, 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.007246376811594203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.022222222222222223, 0, 0.013513513513513514, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008928571428571428, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.024390243902439025, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.015873015873015872, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.002849002849002849, 0, 0, 0, 0, 0, 0, 0.006211180124223602, 0, 0, 0, 0, 0, 0, 0, 0.015873015873015872, 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.007633587786259542, 0, 0, 0, 0, 0, 0, 0.009345794392523364, 0, 0, 0, 0, 0, 0.004830917874396135, 0.013986013986013986, 0, 0, 0, 0, 0, 0.012195121951219513, 0, 0, 0.015873015873015872, 0, 0, 0.047619047619047616, 0, 0, 0, 0, 0.010752688172043012, 0, 0, 0, 0, 0, 0, 0, 0, 0.009900990099009901, 0, 0, 0, 0, 0.009523809523809525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.018518518518518517, 0, 0, 0.01694915254237288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0053475935828877, 0, 0.01098901098901099, 0, 0, 0, 0, 0, 0.008620689655172414, 0.00625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.012658227848101266, 0, 0, 0, 0, 0, 0, 0.010638297872340425, 0, 0, 0, 0.007246376811594203, 0, 0, 0, 0, 0.011494252873563218, 0, 0, 0, 0.005319148936170213, 0, 0, 0, 0, 0, 0, 0.00980392156862745, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.012987012987012988, 0.005747126436781609, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.01020408163265306, 0, 0, 0.007462686567164179, 0.018518518518518517, 0, 0, 0, 0, 0, 0.013513513513513514, 0, 0.009345794392523364, 0, 0, 0, 0, 0.007633587786259542, 0.037037037037037035, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.010309278350515464, 0.005154639175257732, 0, 0, 0, 0, 0, 0.014285714285714285, 0.0196078431372549, 0, 0, 0, 0, 0, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.004651162790697674, 0, 0.005263157894736842, 0, 0.038461538461538464, 0, 0, 0, 0, 0, 0, 0, 0, 0.00641025641025641, 0, 0, 0, 0, 0.011494252873563218, 0.023255813953488372, 0, 0, 0.008695652173913044, 0, 0, 0, 0, 0, 0, 0, 0, 0.017543859649122806, 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.058823529411764705, 0, 0.045454545454545456, 0, 0, 0, 0, 0, 0.043478260869565216, 0, 0, 0, 0, 0, 0, 0, 0, 0.02564102564102564, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.011111111111111112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.02, 0, 0.02857142857142857, 0, 0, 0, 0, 0.018518518518518517, 0, 0, 0, 0.008, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.034482758620689655, 0, 0, 0, 0.01652892561983471, 0, 0, 0, 0, 0.007751937984496124, 0, 0, 0, 0.007575757575757576, 0.010101010101010102, 0, 0, 0, 0, 0, 0, 0.009523809523809525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.009259259259259259, 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.0055248618784530384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.058823529411764705, 0, 0, 0, 0.006896551724137931, 0.034482758620689655, 0, 0, 0.05, 0, 0, 0.02857142857142857, 0.023809523809523808, 0, 0, 0, 0, 0, 0, 0.024390243902439025, 0, 0, 0, 0, 0, 0, 0, 0.047619047619047616, 0, 0, 0, 0, 0.011235955056179775, 0.02127659574468085, 0, 0, 0, 0, 0, 0.03225806451612903, 0, 0, 0.058823529411764705, 0, 0, 0, 0.03125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.01818181818181818, 0, 0, 0, 0, 0, 0, 0, 0.03571428571428571, 0, 0.02, 0, 0.058823529411764705, 0, 0, 0, 0.008547008547008548, 0.021739130434782608, 0, 0.011363636363636364, 0, 0, 0, 0.009708737864077669, 0, 0, 0, 0, 0, 0, 0, 0.01694915254237288, 0, 0, 0.037037037037037035, 0.034482758620689655, 0, 0, 0, 0.016666666666666666, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0136986301369863, 0, 0, 0, 0, 0, 0, 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.008620689655172414, 0, 0, 0.01694915254237288, 0.014705882352941176, 0, 0, 0, 0, 0, 0, 0, 0.015503875968992248, 0, 0, 0, 0, 0, 0, 0.005263157894736842, 0, 0, 0, 0, 0, 0.015625, 0, 0, 0.02857142857142857, 0, 0, 0, 0.02857142857142857, 0, 0.02702702702702703, 0, 0.05263157894736842, 0, 0, 0, 0, 0, 0.004694835680751174, 0.007462686567164179, 0, 0, 0, 0, 0, 0, 0, 0.03571428571428571, 0.008264462809917356, 0, 0, 0.006993006993006993, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.006622516556291391, 0.017241379310344827, 0, 0, 0, 0, 0, 0.0072992700729927005, 0, 0, 0.007751937984496124, 0.005076142131979695, 0, 0, 0, 0, 0, 0.0136986301369863, 0, 0.008130081300813009, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.009009009009009009, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.01834862385321101, 0, 0, 0, 0.010101010101010102, 0, 0, 0, 0.0078125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.007874015748031496, 0.007142857142857143, 0, 0, 0, 0.007352941176470588, 0, 0, 0, 0, 0, 0, 0, 0, 0.01098901098901099, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.00558659217877095, 0, 0.006993006993006993, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.01, 0, 0.017543859649122806, 0, 0, 0, 0.0196078431372549, 0.034482758620689655, 0, 0, 0, 0, 0, 0, 0.027777777777777776, 0, 0, 0.047619047619047616, 0, 0, 0, 0, 0, 0, 0, 0.007575757575757576, 0, 0, 0, 0, 0, 0.011764705882352941, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.007194244604316547, 0, 0, 0, 0.005154639175257732, 0, 0, 0, 0, 0, 0, 0, 0.024096385542168676, 0, 0, 0, 0, 0.006666666666666667, 0.037037037037037035, 0, 0.01, 0, 0, 0, 0.005208333333333333, 0, 0, 0, 0.010309278350515464, 0, 0.00847457627118644, 0.009523809523809525, 0, 0, 0, 0, 0, 0, 0, 0, 0.011494252873563218, 0, 0, 0, 0, 0, 0, 0, 0.009950248756218905, 0, 0, 0, 0.03125, 0.0136986301369863, 0.007692307692307693, 0, 0, 0.011764705882352941, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.023255813953488372, 0, 0.010526315789473684, 0, 0.027777777777777776, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.04, 0, 0, 0.02857142857142857, 0, 0, 0.013333333333333334, 0, 0, 0, 0, 0, 0, 0, 0.010101010101010102, 0.008695652173913044, 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.0078125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.017543859649122806, 0, 0.007042253521126761, 0, 0, 0, 0, 0, 0, 0, 0.009900990099009901, 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.03333333333333333, 0, 0, 0, 0, 0, 0, 0.006802721088435374, 0, 0, 0, 0.007874015748031496, 0.005555555555555556, 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, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.013513513513513514, 0, 0, 0, 0.008403361344537815, 0, 0.010752688172043012, 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.007462686567164179, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.007633587786259542, 0, 0.006802721088435374, 0, 0, 0, 0, 0.008333333333333333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.007246376811594203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.04, 0, 0, 0, 0.014084507042253521, 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.00847457627118644, 0.011235955056179775, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.00819672131147541, 0.00684931506849315, 0, 0, 0, 0, 0, 0.005235602094240838, 0, 0.009708737864077669, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.023255813953488372, 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.009433962264150943, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.010752688172043012, 0, 0.004464285714285714, 0, 0.009174311926605505, 0, 0, 0, 0, 0, 0, 0, 0, 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, 0, 0, 0.013157894736842105, 0, 0.041666666666666664, 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, 0, 0, 0.008264462809917356, 0.0044444444444444444, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.014925373134328358, 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.030303030303030304, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.004366812227074236, 0.012345679012345678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.007462686567164179, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.02040816326530612, 0, 0, 0, 0, 0, 0.034482758620689655, 0, 0.007751937984496124, 0, 0, 0, 0, 0, 0, 0.017543859649122806, 0.008130081300813009, 0, 0, 0, 0, 0, 0.019230769230769232, 0, 0, 0, 0, 0.023529411764705882, 0, 0, 0.012987012987012988, 0, 0, 0, 0.013513513513513514, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.013333333333333334, 0, 0, 0, 0, 0, 0, 0, 0.01818181818181818, 0.005208333333333333, 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.012987012987012988, 0, 0, 0, 0, 0, 0, 0.007042253521126761, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008130081300813009, 0, 0, 0.022727272727272728, 0, 0, 0, 0, 0.022222222222222223, 0, 0, 0, 0, 0, 0, 0, 0, 0.02040816326530612, 0.010526315789473684, 0.01098901098901099, 0, 0.046511627906976744, 0, 0, 0, 0, 0.007194244604316547, 0.030303030303030304, 0.008130081300813009, 0.02631578947368421, 0, 0, 0.02, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.03333333333333333, 0, 0, 0, 0, 0, 0, 0, 0.017543859649122806, 0, 0, 0.03225806451612903, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.016666666666666666, 0, 0, 0, 0, 0.043478260869565216, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.017094017094017096, 0, 0, 0, 0, 0.00684931506849315, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.009009009009009009, 0, 0.0064516129032258064, 0, 0, 0, 0, 0, 0.03225806451612903, 0, 0, 0, 0, 0, 0, 0.07692307692307693, 0, 0, 0, 0.009345794392523364, 0, 0.019230769230769232, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.017857142857142856, 0, 0, 0, 0, 0, 0.027777777777777776, 0.008547008547008548, 0.02666666666666667, 0, 0, 0, 0, 0.031007751937984496, 0, 0, 0, 0.04, 0.018867924528301886, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.014492753623188406, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.010101010101010102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.030303030303030304, 0, 0, 0, 0.015873015873015872, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.006993006993006993, 0, 0, 0, 0, 0.03125, 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, 0, 0.006896551724137931, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.030303030303030304, 0, 0, 0, 0, 0, 0, 0, 0, 0.008403361344537815, 0, 0, 0, 0, 0.015873015873015872, 0, 0, 0, 0, 0, 0, 0, 0.0072992700729927005, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.02112676056338028, 0, 0.004424778761061947, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.014925373134328358, 0, 0, 0, 0, 0.009708737864077669, 0, 0, 0.01, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.00980392156862745, 0.0055248618784530384, 0, 0, 0.006802721088435374, 0, 0, 0, 0, 0, 0, 0, 0.016129032258064516, 0, 0, 0, 0, 0.043478260869565216, 0, 0, 0.023809523809523808, 0.0625, 0.024390243902439025, 0, 0, 0, 0.015384615384615385, 0, 0, 0, 0.02631578947368421, 0.018518518518518517, 0, 0.008695652173913044, 0, 0.041666666666666664, 0, 0, 0.041666666666666664, 0, 0.010101010101010102, 0, 0, 0, 0, 0.015384615384615385, 0, 0, 0, 0, 0, 0, 0, 0, 0.03571428571428571, 0, 0, 0, 0, 0, 0, 0, 0, 0.024390243902439025, 0.004048582995951417, 0.004424778761061947, 0, 0, 0.008403361344537815, 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.009900990099009901, 0, 0.010752688172043012, 0.014705882352941176, 0.010752688172043012, 0, 0, 0, 0, 0.02702702702702703, 0, 0, 0, 0, 0, 0, 0, 0, 0.015384615384615385, 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.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.019230769230769232, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.009174311926605505, 0, 0.014492753623188406, 0, 0, 0, 0, 0, 0, 0.009523809523809525, 0, 0, 0, 0.025, 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.03125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.011111111111111112, 0, 0, 0.016666666666666666, 0.005494505494505495, 0, 0, 0, 0, 0.011627906976744186, 0, 0, 0.0072992700729927005, 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.012048192771084338, 0, 0, 0, 0, 0, 0, 0, 0, 0.007352941176470588, 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.008333333333333333, 0, 0, 0, 0, 0, 0.02040816326530612, 0, 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.029411764705882353, 0.013888888888888888, 0, 0, 0, 0, 0, 0, 0.02702702702702703, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.017045454545454544, 0.011111111111111112, 0.00684931506849315, 0.017241379310344827, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008130081300813009, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.017241379310344827, 0, 0, 0.00909090909090909, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.034482758620689655, 0, 0.009259259259259259, 0, 0, 0, 0, 0, 0, 0.01098901098901099, 0, 0, 0, 0.0625, 0, 0, 0, 0.011904761904761904, 0, 0.02631578947368421, 0, 0, 0, 0, 0.010752688172043012, 0.007194244604316547, 0, 0.0625, 0, 0, 0, 0, 0, 0, 0.017543859649122806, 0.018867924528301886, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0041841004184100415, 0, 0.0196078431372549, 0.01098901098901099, 0, 0, 0, 0, 0, 0, 0, 0, 0.008264462809917356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.013986013986013986, 0, 0, 0, 0, 0, 0, 0, 0, 0.0182648401826484, 0, 0, 0, 0, 0, 0, 0.0036900369003690036, 0, 0, 0, 0, 0, 0, 0, 0.004, 0.0047169811320754715, 0, 0, 0, 0, 0.013289036544850499, 0, 0.0070921985815602835, 0.011560693641618497 ]
0.002617
5
[ "Download Now\n\nIObit Driver Booster Pro 8.0.1.166 Crack + License Key Download [Latest]\n\nDriver Booster Pro Crack is professional software that gives you security against equipment disappointments and vicious crash consequences for your PC. ", "At the point when pernicious apparatuses become contaminated with your PC, this program figures out what updates are absent. ", "Your old drivers can genuinely harm your PC. ", "Further, Driver Booster Pro Key consequently filters these drivers and encourages you to download successful updates to spare time. ", "It is an astounding system and well known in everything to naturally refresh a wide range of drivers.", "\n\nDriver Booster Pro Crack is a refreshed driver that consequently runs and outputs your PC for old drivers, at that point downloads and refreshes them with a solitary snap. ", "It is modified so that you can spare time via looking for the connection to download the drivers for every gadget one by one. ", "Driver Booster Pro Key is sheltered to use since it contains a reinforcement driver and a framework reestablish highlight.", "\n\nDriver Booster Pro 8.0.1.166 Crack + Serial Key Free Download\n\nIObit Driver Booster Pro Serial Key gives you a chance to talk about the sequential key of Driver Booster. ", "Further, you should know about the gadget’s drivers. ", "Each computerized gadget has its very own program. ", "Begin with a model. ", "In the event that you introduce another design card in your PC or put in new equipment, your PC won’t know about the new equipment. ", "In this manner, the equipment of each organization gives a program that contains directions or a program about the exhibition of this gadget. ", "The working framework associates this new establishment gadget with the assistance of the controllers. ", "Each piece of your PC has its own drivers, yet you don’t have to introduce them on the grounds that your working framework as of now contains these drivers and introduces them on your PC during the principal establishment of your window.", "\n\nDriver Booster Pro Crack keeps your drivers, game parts, old or missing segments refreshed, effectively, and accurately. ", "However, Windows couldn’t introduce a wide range of drivers on your PC. ", "The reason is that if the working framework attempts to do it, the size of the working framework will be enormous. ", "Consequently, windows must keep up their parity in the controller and give the all-inclusive kind of controllers. ", "It underpins the programmed establishment of drivers and parts while the PC is dormant. ", "Propelled pressure innovation, stop-point resumption innovation, computerized retry component, and SSL convention can set you up to download and introduce the driver all the more rapidly, easily, and securely.", "\n\nDriver Booster Pro 8.0.1.166 Key Pro Cracked Full Version\n\nDriver Booster Pro Crack has a progression of new and significant changes since its last update, which improves it for better group execution. ", "This incorporates new highlights, for example, Game Boost and Game Ready Driver, which organize your game time, as the game experience is additionally refreshed and improved. ", "As well as, it likewise has a bigger database, which gives a smoother and increasingly stable execution. ", "In addition, the program contains a huge database. ", "It has a basic game task and supports all the game’s instruments. ", "Additionally, with a solitary snap, clients can refresh their old drivers. ", "The program has helped stop the restart of innovation. ", "Further, you can appreciate a programmed retry system for a viable speed. ", "Clients can rapidly and effectively dispatch the most recent drivers.", "\n\nDriver Booster Pro Key expands a considerable lot of advanced and important changes. ", "Moreover, the program does not require any understanding to utilize it. ", "IObit Driver Booster PRO Key contains a total video instructional exercise for new clients. ", "Moreover, Driver Booster Key investigates and changes blunder drivers straightforwardly with a solitary snap. ", "Keep your drivers sheltered and ensured. ", "IObit Driver Booster PRO Crack is free of any danger to an infection. ", "Rather, the program guards your framework against all Trojans. ", "More, it gives a programmed driver update server to spare your important time. ", "So, the screen framework alternative gives you a total rundown of all the controller’s presentation.", "\n\nDriver Booster Key Features:\n\nDatabase of enormous controllers\n\nThe game execution is smooth.", "\n\nUpdate the quick and safe driver\n\nAdjustment of equipment blunders.", "\n\nAnother verifies your PC from all equipment issues.", "\n\nIncrement the similarity and security of the framework.", "\n\nDriver Booster Pro Crack is good with pressure innovation and SSL convention.", "\n\nThe game controller improves the tasks of the game.", "\n\nKeep your gadget’s drivers and game segments refreshed.", "\n\nYou can refresh your sound, video, USB, and different gadgets.", "\n\nThis program builds the establishment procedure and download speed.", "\n\nThis rendition contains an incredible and simple to-utilize refreshed framework\n\nIt keeps the driver constantly improved in the presentation of your PC.", "\n\nThe program, in this manner, isolates every one of the drivers that fall flat.", "\n\nThe IObit Driver Booster PRO 6 gives you the most recent drivers for your framework.", "\n\nThe request of the game mode changes the controllers to improve the presentation in the diversions.", "\n\nImproved instruments for fixing sound breaks, without system issues, poor exactness and blunders in the gadget\n\nThis program gives you six full-use devices that shield your PC from system issues, sound issues, equipment blunders, and so on.", "\n\nSystem Requirements:\n\nOS: Windows 7/8/8.1/10 Windows XP and VISTA. ", "RAM: 512 MB Processor: 1 GHz Hard Disk: 1GB\n\nHow To Crack?", "\n\nFirst of all, Download IOBit Driver Booster Crack from this site.", "\n\nThen Install it.", "\n\nAfter this, copy and paste the key in the activation code.", "\n\nNow, setup is ready to use for a lifetime.", "\n\nEnjoy.", "\n\nIobit Driver Booster Activation Key:\n\nZQA23-WSX4E-DCR5F-V6ERY-AZTEC GTFVR-DC5EX-DRC6T-FV7GS-DCFVG AZ3WS-X4EDC-5RFV6-TGBY7-HNUXS UFA-ZW3SX-E4DC5-RFVT6-BGY7H" ]
{ "pile_set_name": "OpenWebText2" }
[ 0.004166666666666667, 0, 0, 0, 0, 0.005747126436781609, 0, 0, 0.005813953488372093, 0, 0, 0, 0, 0, 0, 0, 0.008130081300813009, 0.013888888888888888, 0, 0, 0, 0, 0.004901960784313725, 0.005714285714285714, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.00909090909090909, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.02531645569620253, 0, 0, 0.015625, 0, 0, 0, 0, 0, 0, 0.014492753623188406, 0.034482758620689655, 0.029850746268656716, 0, 0, 0, 0, 0.006369426751592357 ]
0.002961
5
[ "If Pyongyang pushes ahead with a fourth nuclear test and defies the international community it can expect swift and strong punishment.", "\nThis was the gist of the South Korean foreign minister's warning to North Korea when he said the regime would pay \"the heaviest price\" in new sanctions.", "\nChairing a meeting at the UN Security Council on Wednesday, Yun Byung-se said a test would have a huge impact on the strategic landscape in Northeast Asia and would pose a serious challenge to Beijing as well.", "\n\n\"We must clearly warn North Korea if it challenges the international community with another nuclear test, it will be met with the most serious consequences.\"", "\n\nAt the same time, Yun stressed Seoul wants to build a peaceful and \"new Korean peninsula\" -- through President Park Geun-hye's reunification drive.", "\nBut Pyongyang continues to verbally attack President Park's initiatives.", "\nThe North Korean daily, Rodong shinmun, said Thursday that Park's ambition is only stirring the potential for war.", "\nIt also said the South Korean government was fooling the nation with a diabolical idea.", "\nMeanwhile, the U.S. confirmed Wednesday that Secretary of State John Kerry met with Wang Jiarui, China's international director of the Communist Party.", "\nWang, considered a key messenger between China's Communist Party and North Korea's Workers' Party is believed to have discussed the possible resumption of the six-party talks on North Korea's denuclearization.", "\nSong Ji-sun, Arirang News." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0.009523809523809525, 0, 0.006711409395973154, 0.0136986301369863, 0.008695652173913044, 0, 0.02631578947368421, 0.009523809523809525, 0.07407407407407407 ]
0.013504
5
[ "/*\n * Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements. ", " See the NOTICE file distributed with\n * this work for additional information regarding copyright ownership.", "\n * The ASF licenses this file to You under the Apache License, Version 2.0\n * (the \"License\"); you may not use this file except in compliance with\n * the License. ", " You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.", "\n * See the License for the specific language governing permissions and\n * limitations under the License.", "\n */\n\npackage org.apache.spark.sql\n\n/**\n * All classes in this package are considered an internal API to Spark and\n * are subject to change between minor releases.", "\n */\npackage object internal\n" ]
{ "pile_set_name": "Github" }
[ 0.009259259259259259, 0.009259259259259259, 0.006097560975609756, 0.00964630225080386, 0.009523809523809525, 0.012269938650306749, 0 ]
0.008008
5
[ "It’s no secret that McClatchy Company, the parent company of the failing Kansas City Star, is in a financial pickle. ", "As of this year, they retain almost $700 million in corporate debt.", "\n\nIn addition to that albatross, McClatchy’s stock is plummeting. ", "In the last year, it has lost almost 80 percent of its value and shows no signs of recovering.", "\n\nThe last 15 years have not been kind to investors. ", "McClatchy stopped paying dividends, did a 1 for 10 reverse split in 2016, and the stock is still at an all-time low while still being considered overvalued.", "\n\nMcClatchy owns newspapers all across the United States. ", "Along with truly impressive names like The Fort Worth Star Telegram and The Miami Herald, the Kansas City Star is also somewhat prominent in their portfolio. ", "Its even more prominent decline is a staggering reflection of its parent company.", "\n\nCirculation numbers for The Star are dropping like a rock. ", "As of May 2019, they had barely 12,000 digital subscribers.", "\n\nThings are so bad the building housing The Star was sold. ", "The buyers had to agree to lease it back to the paper, though. ", "Save us!", "\n\nWhen you are failing this badly at business, good journalism is absolutely imperative. ", "When good journalism is replaced by agenda and bias, you may find yourself failing badly at business.", "\n\nThe question to answer: is the Kansas City Star showing agenda and bias in their coverage of Tyreek Hill and his legal situation? ", "Furthermore, if they are, how should they be held accountable?", "\n\nIn essentially every article published by The Star on this situation this year, Hill is painted as a monster. ", "At every opportune moment, The Star makes sure to ‘namedrop’ his 2014 incident, describing it in graphic detail, seemingly reminding any forgetful readers that a man who had said incident expunged from his record and lived a relatively incident-free life since could strike again at any moment.", "\n\nWhen Hill’s lawyers — and Pettlon Law is no discount public defender— provided a letter defending Hill, The Star immediately attacked its hardest evidence, doubling down on their initial editorials insisting that Hill be cut from the Chiefs.", "\n\nWhen Hill was fully and completely cleared of breaking his son’s arm, little recourse was given. ", "When fans, as they are given to do, defended him, The Star attacked the fans.", "\n\nWhen audio mysteriously surfaced after months that called into question whether Hill has ever, in fact, abused a single person in his entire life, the response from The Star? ", "To compare him to a domestic abuser who was caught on video.", "\n\nAt almost every turn, The Star has decried anything that might fly in the face of their initial reports, which we now know were the result of an attempt by Crystal Espinal to frame Tyreek Hill for a crime.", "\n\nThe Star’s bias not only shows in their writing, but in their public appearances. ", "One writer in particular demonstrated it fully on radio, describing an encounter with Hill as an event where “something just felt off,” clearly serving as more proof of his obvious guilt.", "\n\nLater, the idea that Tyreek Hill might be less literate than someone who works at The Star was used as an attack on evidence his lawyers presented as a defense.", "\n\nThe resulting message they attempt to brainwash readers with: Tyreek Hill is a monster, Espinal did nothing wrong.", "\n\nBut it was Espinal who weaponized a son against his father. ", "Imagine what might have been published if the reverse had been true.", "\n\nThis kind of biased journalism is typically informed by agenda. ", "If there were no agenda, all information would be considered and given equal weight, as it has been by other journalists and credible public figures.", "\n\nSoren Petro, 810 Sports: “The investigation may have been centered on her…there are theories put out that she is trying to frame him…”\n\nNate Taylor, The Athletic: “The audio recording was misleading…Crystal Espinal was trying to get Tyreek Hill to say things that were condemning…”\n\nTim Grunhard, 810 Sports: “There’s victims everywhere. ", "We’re gonna find out who else is a victim in the coming weeks. ", "Whether it’s Tyreek…I don’t know…but I think there’s some other people that have been taken advantage of here.”", "\n\nWhen far more fair and balanced information is available from so many other sources, an environment is created where the public doesn’t want to read your newspaper and even begins to hate your newspaper. ", "Readers cancel subscriptions. ", "They find ways to read anything they want on your website without paying a dime.", "\n\nIn fact, it’s appallingly easy to do this. ", "In order to read anything published online by The Kansas City Star, one needs only to open a story in an incognito or private browsing window on their favorite browser (here’s a helpful link).", "\n\nThis is not to say every journalist at The Star is a reprehensible propaganda machine unworthy of readers. ", "Some have already apologized for their roles in misleading the public. ", "This falls in line with what writers have done at other outlets.", "\n\nBut some, as we saw Friday morning, have their heels dug in. ", "They are “tripling” down, more interested in promoting a fantasy that Tyreek Hill sprang fully grown, fists flying, from the loins of Lucifer himself. ", "More interested in defending TV stations other journalists are categorizing as unethical. ", "And if you disagree, perhaps you are just another ignorant reader.", "\n\nOften, these fantasies are published without bylines, as is the case with multiple editorials written by “STAR EDITORIAL BOARD.”", "\n\nSuch an approach contributes to a lack of trust already growing from poor reporting. ", "If the public doesn’t trust a paper, if the paper is publishing baseless character assassinations rather than providing balance, if the paper is attacking their readers, if the paper’s paywall is flimsier than the border at the American southwest, changes are necessary. ", "Both for the good of the newspaper, the community and the readers.", "\n\nWhat changes should be made? ", "Should certain writers be fired? ", "Should The Star have its access to the Chiefs severely restricted? ", "Only you, the consumer, can decide.", "\n\nTo voice your concern about journalism practices at The Star:\n\nTony Berg, the President and Publisher of the KC Star.", "\n\[email protected]\n\[email protected]\n\nDan Schaub, Corporate Director of Audience Development at McClatchy.", "\n\[email protected].", "\n\nKevin McClatchy, Chairman of McClatchy.", "\n\[email protected]\n\[email protected].", "\n\nTo voice your concern about what media are allowed access to the Chiefs:\n\[email protected]\n\n@Ted_Crews\n\nAs a consumer, and perhaps a disgruntled one, you have a voice. ", "Perhaps just one, but a babbling brook can easily become a destructive tidal wave if enough streams converge.", "\n\nNewspapers exist to serve the public, and the truth. ", "When they instead try to serve an agenda, and break the public’s trust, it can, should and is affecting their business." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.017094017094017096, 0, 0.015151515151515152, 0, 0, 0, 0, 0.012658227848101266, 0, 0, 0, 0.016666666666666666, 0, 0, 0, 0.009900990099009901, 0.007575757575757576, 0, 0.008928571428571428, 0.003401360544217687, 0.01646090534979424, 0.010101010101010102, 0.012987012987012988, 0.011299435028248588, 0, 0.00966183574879227, 0.011904761904761904, 0.0053475935828877, 0.006172839506172839, 0, 0, 0, 0, 0, 0.014705882352941176, 0, 0, 0, 0, 0, 0, 0.005208333333333333, 0.009174311926605505, 0, 0, 0, 0.006622516556291391, 0, 0, 0.007692307692307693, 0, 0, 0, 0, 0, 0, 0, 0.025210084033613446, 0.043859649122807015, 0.041666666666666664, 0.024390243902439025, 0.0425531914893617, 0.011235955056179775, 0, 0, 0 ]
0.006176
5
[ "Count the number of time the MIL\n(check engine lamp)on the instrument\npanel flashes on and off. ", "The number\nof flashes represents the trouble\ncode. ", "There is a short pause between\nthe flashes representing the 1st and\n2nd digits of the code. ", "Longer pauses\nare used to separateindividual 2-digit\ntrouble code.", "\n\nAn example of a flashed DTC is as\nfollows:\n\n-Lamp flashes 4 times, pauses, then flashes 6 more times. ", "This denotes a\nDTC number 46.", "\n-Lamp flashes 5 times, pauses, then flashes 5 more times. ", "This indicates a\nDTC number 55. ", "DTC 55 will always be\nthe last code to be displayed." ]
{ "pile_set_name": "Pile-CC" }
[ 0.010416666666666666, 0, 0, 0, 0.009615384615384616, 0.034482758620689655, 0, 0.03125, 0.019230769230769232 ]
0.011666
5
[ "Q:\n\nelement.setAttribute is not a function\n\nSo, i know that this has already been answered, but none of the previous answers managed to make my code work. ", "I have a html structure as the following:\n<div class=\"form\">\n <div class=\"formrow\">\n <div class=\"previewcontainer\">\n <object id=\"preview\">\n <object>\n </div>\n </div>\n</div>\n\nI am trying to set the data attribute to the object like this:\nvar link = \"http://www.someurl.com\";\nvar preview = document.querySelectorAll (\"#preview\");\npreview.setAttribute(\"data\", link);\n\nHowever, I get an error preview.setAttribute is not a function\n\nA:\n\nor this:\nvar link = \"http://www.someurl.com\";\nvar preview = document.getElementById(\"preview\"); //getElementById instead of querySelectorAll\npreview.setAttribute(\"data\", link);\n\nBe sure to run the code after the element is created, or use jQuery code:\n$( document ).ready(function() {\n}\n\n\"Uncaught TypeError: Cannot read property 'setAttribute' of null\"\nBy: LazarusRising—in that case, the element doesn't exist yet in the document. ", "You need to run the code after the element is created, say after the load event or a script below the element.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0.006615214994487321, 0, 0 ]
0.001654
5
[ "Share 0 SHARES\n\nCURRENTLY staring at a series of root canal treatments to save three of his ‘good back teeth’ which will cost somewhere in the region of €1,800, Waterford man Michael Cronell has said he feels ‘vindicated’ in his decision to abstain from visiting a dentist for well over ten years.", "\n\nAlthough the dental hygienist at Gums clinic in Waterford City tried to explain to Cronell that avoiding the dentist for over a decade is almost certainly the reason why he needs such extensive work done now, the 36-year-old maintains that he would have been ‘fine’ if he’d just not attended his appointment today.", "\n\nForced into the dentist office by blinding, sudden pain that began to appear months ago and failed to be eased by brushing and ignoring it, Cronell now finds himself on the receiving end of a bill for almost two grand, which he describes as ‘the scariest part of the dentist’.", "\n\n“I’ve always been terrified of the dentist. ", "It’s got my least favourite things.. Needles, drills, and paying out money” said Cronell, bracing himself for having no money for sweets for at least a year.", "\n\n“And it turns out, I was right to be afraid. ", "I knew as soon as I came in here, they’d find loads of things to charge me money for. ", "Well, I knew it because I could literally feel the cavities with my tongue, but still. ", "€1,800 worth of treatments! ", "Jesus, a dental phobia isn’t cheap, is it?”", "\n\nCronell has refused to comment on the idea that a 40 quid visit back in 2007 would have saved him a decade of dental pain and today’s huge payout, as he ‘has enough to be annoyed about’." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.006734006734006734, 0.006329113924050633, 0.0035971223021582736, 0, 0.006369426751592357, 0, 0, 0, 0, 0, 0.005319148936170213 ]
0.002577
5
[ "Busy Monsters\n\nBusy Monsters is the debut novel of William Giraldi, released in 2011. ", "It centers on Charles Homar, a writer whose fiancée runs away with her colleague to catch an elusive giant squid, seemingly cutting ties with him. ", "Charles attempts to regain her affection and finds himself budding into a strange cast of characters on the way.", "\n\nReferences\n\nExternal links\nThe A.V. Club Review\nWashington Post Review\n\nCategory:2011 novels\nCategory:2011 science fiction novels\nCategory:Debut novels" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.011627906976744186, 0.006802721088435374, 0.008849557522123894, 0.006535947712418301 ]
0.008454
5
[ "Q:\n\nException while running AWS dynamoDb in Local Machine\n\nI have downloaded AWS dynamodb zip file and extracted to D:/dynamoDB folder\nWhen tried to run via command prompt using\njava -Djava.library.path=./DynamoDBLocal_lib -jar DynamoDBLocal.jar\n\nException as below occurs\nException in thread \"main\" java.lang.", "NoSuchFieldError: completionKey\n at sun.nio.fs.", "WindowsNativeDispatcher.initIDs(Native Method)\n at sun.nio.fs.", "WindowsNativeDispatcher.<clinit>(Unknown Source)\n at sun.nio.fs.", "WindowsLinkSupport.getRealPath(Unknown Source)\n at sun.nio.fs.", "WindowsPath.toRealPath(Unknown Source)\n at sun.nio.fs.", "WindowsPath.toRealPath(Unknown Source)\n at sun.util.calendar.", "ZoneInfoFile$1.run(Unknown Source)\n at sun.util.calendar.", "ZoneInfoFile$1.run(Unknown Source)\n at java.security.", "AccessController.doPrivileged(Native Method)\n at sun.util.calendar.", "ZoneInfoFile.<clinit>(Unknown Source)\n at sun.util.calendar.", "ZoneInfo.getTimeZone(Unknown Source)\n at java.util.", "TimeZone.getTimeZone(Unknown Source)\n at java.util.", "TimeZone.setDefaultZone(Unknown Source)\n at java.util.", "TimeZone.getDefaultRef(Unknown Source)\n at java.util.", "TimeZone.getDefault(Unknown Source)\n at org.eclipse.jetty.util.", "DateCache.<init>(DateCache.java:88)\n at org.eclipse.jetty.util.log.", "StdErrLog.<clinit>(StdErrLog.java:68)\n at org.eclipse.jetty.util.log.", "Log.initStandardLogging(Log.java:185)\n at org.eclipse.jetty.util.log.", "Log.initialized(Log.java:168)\n at org.eclipse.jetty.util.log.", "Log.getLogger(Log.java:435)\n at org.eclipse.jetty.util.log.", "Log.getLogger(Log.java:425)\n at org.eclipse.jetty.util.", "IO.<clinit>(IO.java:44)\n at org.eclipse.jetty.util.log.", "Log$1.run(Log.java:110)\n at java.security.", "AccessController.doPrivileged(Native Method)\n at org.eclipse.jetty.util.log.", "Log.<clinit>(Log.java:85)\n at org.eclipse.jetty.util.component.", "AbstractLifeCycle.<clinit>(AbstractL\nifeCycle.java:33)\n at com.amazonaws.services.dynamodbv2.local.main.", "ServerRunner.createServe\nr(ServerRunner.java:123)\n at com.amazonaws.services.dynamodbv2.local.main.", "ServerRunner.createServe\nrFromCommandLineArgs(ServerRunner.java:119)\n at com.amazonaws.services.dynamodbv2.local.main.", "ServerRunner.main(Server\nRunner.java:70)\n\nI am having Java7 sdk in my windows 32 system.", "\n\nA:\n\nNoSuchFieldError exceptions are thrown \"if an application tries to access or modify a specified field of an object, and that object no longer has that field\". ", " In this case, it's likely the jar was compiled against one version of java (or other dependency) and you're using a different version that is not compatible.", "\nI'd suggest updating to Java8 since support for Java7 ended as of April 2015. ", " Also, check your version of jetty (since the last call outside the JVM was caused by org.eclipse.jetty.util.", "DateCache.<init>(DateCache.java:88)) to make sure it's compatible.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0.0032258064516129032, 0, 0, 0.014084507042253521, 0, 0.01639344262295082, 0.014705882352941176, 0, 0, 0.013513513513513514, 0, 0.017241379310344827, 0, 0.01639344262295082, 0.016666666666666666, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.012048192771084338, 0, 0, 0, 0, 0, 0, 0, 0.012658227848101266, 0.009174311926605505, 0, 0 ]
0.004058
5
[ "Q:\n\nGoogle Sheets - Include a Comparison Trend Line\n\nI am using google sheets to record sales data and have a separate worksheet for each calendar year.", "\nFor each calendar year I include a couple of charts which illustrate things like track dollar value of sales per week and I've included a trendline.", "\nNow we've ticked over to a new calendar year, I'd like to include the trendline from last year's dollar value chart into this year's chart, so I can see how the trends compare.", "\nI don't really want to include the week by week data in the chart (it will look messy & I don't need that level of detail) - is there a way I can just include the trend line?", "\n\nA:\n\nI have 'solved' this by pulling in the previous year's data, including the trend line in the series & then setting the colour for the series to none. ", "That way the trendline appears but the individual data points don't.", "\nI suspect this is the right way to do this but I'd be interested to hear of any other approaches.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0, 0, 0, 0, 0, 0 ]
0
5
[ "Description\n\nThis alabaster plaque, which warns against going to law, was made by a Beaumaris builder named David Roberts. ", "It shows two farmers tugging at each end of a cow while it is being milked by a third person. ", "The farmers represent the two parties involved in the case and the third person is the attorney." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.016260162601626018, 0, 0 ]
0.00542
5
[ "As so many of us, Retha does not normally like to be photographed. ", "In her experience she rarely experienced to be captured as who she is.", "\n\nWe arranged to photograph her on location at the Hout Bay Manor. ", "Not only is the Hout Bay Manor a beautiful location, but also one of the venues, where Retha meets clients.", "\n\nCorporate portraits don’t sound like much fun, but we laughed a lot during the session and kept things fairly relaxed. ", "The cooperation between all three of us was fantastic and made so much easier to capture Retha at her best.", "\n\nI photograph corporate headshots on location and in studio. ", "For the best results, I do recommend to work with a stylist and/ or make-up artist. ", "Just give me a call and I put you in touch." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0.009345794392523364, 0, 0, 0, 0, 0 ]
0.001038
5
[ "About this book\n\nIntroduction\n\nThis thought-provoking treatise explores the essential functions that culture fulfills in human life in response to core psychological, physiological, and existential needs. ", "It synthesizes diverse strands of empirical and theoretical knowledge to trace the development of culture as a source of morality, self-esteem, identity, and meaning as well as a driver of domination and upheaval. ", "Extended examples from past and ongoing hostilities also spotlight the resilience of culture in the aftermath of disruption and trauma, and the possibility of reconciliation between conflicting cultures. ", "The stimulating insights included here have far-reaching implications for psychology, education, intergroup relations, politics, and social policy.", "\n\nIncluded in the coverage:\n\n· Culture as shared meanings and interpretations.", "\n\n· Culture as an ontological prescription of how to “be” and “how to live.”", "\n\nA Psychology of Culture takes an uncommon tour of the human condition of interest to clinicians, educators, and practitioners, students of culture and its role and effects in human life, and students in nursing, medicine, anthropology, social work, family studies, sociology, counseling, and psychology. ", "It is especially suitable as a graduate text." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0, 0, 0, 0, 0 ]
0
5
[ "Luke Bryan’s 2016 Kill The Lights Tour comes to Houston Oct. 20\n\nPublished 2:00 am, Sunday, July 31, 2016\n\nReigning CMA and ACM Entertainer of the Year Luke Bryan will extend his Kill The Lights Tour through this fall and make a stop on Oct. 20 at The Cynthia Woods Mitchell Pavilion Presented By Huntsman.", "\n\nReigning CMA and ACM Entertainer of the Year Luke Bryan will extend his Kill The Lights Tour through this fall and make a stop on Oct. 20 at The Cynthia Woods Mitchell Pavilion Presented By Huntsman.", "\n\nPhoto: Courtesy Photo\n\nLuke Bryan’s 2016 Kill The Lights Tour comes to Houston Oct. 20\n\n1 / 1\n\nBack to Gallery\n\nReigning CMA and ACM Entertainer of the Year Luke Bryan will extend his Kill The Lights Tour through this fall and make a stop on Oct. 20 at The Cynthia Woods Mitchell Pavilion Presented By Huntsman.", "\n\nLittle Big Town and Dustin Lynch will be his special guests for this great evening of music! ", "Tickets went on sale Friday, July 29, at 10 a.m. at www.livenation.com, www.ticektmaster.com, or by phone at 1-800-745-3000.", "\n\nSince the debut of his first album in 2007, Luke has placed 14 singles at No. ", "1 and sold nearly eight million albums with 30 million digital tracks from his five studio albums. ", "He has twice been named Entertainer of the Year by both the Academy of Country Music and the Country Music Association.", "\n\nNow Playing:\n\nHis fifth studio album, Kill The Lights, debuted at No. ", "1 on both the Billboard Top 200 (his third to do so) and Top Country Albums charts and closed 2015 with the best-selling country album of the year and the 10th biggest selling album on the all-genre Billboard Top 200 Year-End list." ]
{ "pile_set_name": "Pile-CC" }
[ 0.00980392156862745, 0.009950248756218905, 0.006389776357827476, 0.010526315789473684, 0.024193548387096774, 0.025, 0, 0.01680672268907563, 0.027777777777777776, 0.004329004329004329 ]
0.013478
5
[ "# From http://snapshot.debian.org/archive/debian/20091207T044352Z/pool/main/t/ttf-inconsolata/ttf-inconsolata_001.010-2.dsc\nsha256 ecf8ba44911fcb3c9683aef1ca2b3cfbafa119a3e93c682f448850e1ae08ce93 ttf-inconsolata_001.010.orig.tar.gz\n# Locally computed\nsha256 8bbed014d1c85a9e3f36703816833c9538e140fea88c2bc3a745ce2449dc18ab OFL.txt\n" ]
{ "pile_set_name": "Github" }
[ 0.0029850746268656717 ]
0.002985
5
[ "Q:\n\nSwitch single view based application view on iPhone\n\nI have a simple view based application. ", " I want to switch this original view for another view when I push a button on the original view. ", " I do not want to use a navigationviewcontroller, or switchviewcontroller, I simply want to swap the root view for another.", "\nThanks,\nJoe\n\nA:\n\nThis isn't recommended by apple. ", "If you have multiple views, you should be using a TabBar controller or a Navigation Controller. ", "One reason is that messages like viewDid/WillAppear don't get sent when you improperly add views.", "\nIf you don't want to display a navigation bar, then you you can set it to hidden and no one will ever know the are in a Navigation based app. ", "You can also prevent views from animating in from the side when pushing a view controller.", "\nThe other accepted option is loading a \"backing\" view and never changing it. ", "You can switch out any subviews on this backing view. ", "You might never see the backing view in the app, but it is there just for you to remove and add views.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0.010309278350515464, 0, 0, 0, 0.020833333333333332, 0, 0, 0, 0, 0, 0, 0 ]
0.002595
5
[ "Hollow hybrid spheres with silica inner shell for non-deformable, core exchangeable properties.", "\nCore exchangeable polymer-silica hybrid capsules with solvent-selective permeability were fabricated, in which the internal silica layer, formed from pre-included precursors, has the role of a framework to prevent irreversible deformation of the hollow capsules." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0.010526315789473684, 0.0038022813688212928 ]
0.007164
5
[ "Image caption\nTaxpayers are now being asked if they would pay more council tax to save services\n\nAn extra £40m will have to be cut from Birmingham City Council's budget because of further government funding cuts and increased costs, leaders say.", "\n\nThe authority had initially said it was looking at cuts of £70m in 2013-14, but said that figure was now £110m.\n\nLeader Sir Albert Bore said the situation was \"much worse than we feared\" after the Autumn Statement.", "\n\nLocal Government Minister Brandon Lewis said \"while Birmingham pleads poverty\" it was hoarding £112m in reserves.", "\n\nTaxpayers are now being asked if they would pay more council tax to save services.", "\n\nLabour took over the running of the council, the UK's largest local authority, in May from a Conservative/Liberal Democrat coalition.", "\n\nI despair there is a lack of concern in government as to what the impact of their budget cuts areSir Albert Bore, Leader of Birmingham City Council\n\nIn October, the council said it was looking at a total of £600m of savings by 2017.", "\n\nSir Albert warned at the time the authority could be facing an additional amount of tens of millions of pounds for next year, depending on reductions in direct government grants.", "\n\nHe said he thought the council could see its grant money fall by £310m by 2016-17.", "\n\nThe council has previously said it would have to look at decommissioning entire services to help meet the budget shortfall.", "\n\nSir Albert said work had already started on the budget for 2014-15 and there would be a consultation on decommissioning services next year.", "\n\nHe said: \"It's going to get harder and harder and this is now a very different ball-game - no more salami-slicing - we are talking about removing services that the people of this city value.", "\n\n\"When we are taking out, over six years, around 50% of the budget the council has control over then this will be reflected in the number and size of service cuts that we have to make.", "\n\n\"It's not just that I regret having to bring a budget of this sort forward but I despair there is a lack of concern in government as to what the impact of their budget cuts are.\"", "\n\n'More than double'\n\nRavi Subramanian, West Midlands regional secretary for the union Unison, said: \"These are cuts that have been imposed on Birmingham by this Tory-led government as part of their failed austerity measures.\"", "\n\nHe said the average reduction in government funding for the country amounted to £74 per person, but Birmingham's reduction was \"more than double\" at £149.", "\n\nLast month the council revealed it would have to pay at least £757m to settle equal pay claims brought by mainly women who missed out on bonuses.", "\n\nHowever, it said that amount had been included in the budgets for the next few years.", "\n\nLast week, Dudley Metropolitan Borough Council became the first in the West Midlands to say it was considering holding a referendum over higher council tax rates.", "\n\nImage caption\nSir Albert had initially ruled out the possibility of holding a referendum over raising council tax\n\nMinisters have said that any authorities wanting to increase council tax by more than 2% must ask their electorates if they are willing to pay it.", "\n\nBirmingham City Council said it would now be looking at a similar consultation.", "\n\nMr Lewis said next year's funding for councils would be announced shortly.", "\n\nHe added: \"Councils still account for a quarter of all public spending - £114bn of taxpayers money - so they must help act to reduce the inherited deficit.", "\n\n\"This year, while Birmingham pleads poverty, it is hoarding £112m in reserves, getting almost £400 more per household than the national average to protect frontline services, been given a £1.5bn city deal, £22m Growing Places Funding, an Enterprise Zone and £7.5m in New Homes Bonuses.\"", "\n\nMr Lewis said Chancellor George Osborne had exempted councils from the reductions government must make in 2013-14.", "\n\nHe added: \"This will give councils like Birmingham time to find sensible savings by transforming frontline service delivery as well as reducing fraud, procuring better and sharing back offices.\"" ]
{ "pile_set_name": "Pile-CC" }
[ 0.004081632653061225, 0.009259259259259259, 0.008695652173913044, 0, 0, 0.008547008547008548, 0.005555555555555556, 0, 0, 0.0070921985815602835, 0, 0, 0, 0.008849557522123894, 0, 0, 0, 0.006097560975609756, 0.0038022813688212928, 0.012345679012345678, 0, 0, 0.006944444444444444, 0.008620689655172414, 0 ]
0.003596
5
[ "El ecuatoriano Ángel Mena fue la única ausencia en el entrenamiento de Cruz Azul de este martes con miras al juego del sábado ante Chivas.", "\n\nMena hizo el calentamiento con el resto de los integrantes de La Máquina, pero en los ejercicios posteriores corrió alrededor de la cancha con el fisioterapeuta y realizó trabajos en el gimnasio.", "\n\nAl ser cuestionado por su condición física y la molestia en la pierna derecha, Ángel se limitó a decir que estaba en un 80 por ciento, por lo que será sometido a una evaluación médica para saber si estará a punto para la fecha dos.", "\n\nLos celestes, que debutaron en el certamen con un triunfo de 3-0 ante Puebla, se enfocaron en trabajo de definición ante la mirada del timonel portugués Pedro Caixinha." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.043478260869565216, 0.030456852791878174, 0.012875536480686695, 0.011764705882352941 ]
0.024644
5
[ "JIM'S STORY PART 5\n\nJim - a Diamond in the Not-So-Rough\n\nJune 2011\n\nI have been wanting and meaning to update “Jim’s Story” for a long time, but developing acute myelogenous leukemia in 2007 has simply meant I couldn’t manage everything. ", "However, there are so many things that Jim is now doing that I feel I need to share these with other families. ", "I was recently contacted by someone from Sri Lanka to translate Jim’s Story because the parent thought that Jim’s Story provides a lot of hope to other parents. ", "Indeed, starting to speak at the age of 50 is very inspiring. ", "Now, at 58, Jim is feeling so at ease talking to others – he is no longer shy and works very hard at being understood. ", "I will be trying to write about new advances and how things are moving along for Jim through this blog, and hope you will be as inspired as I am when I see and hear changes in Jim that occur even now.", "\n\nOne of Jim’s support workers suggested that Jim is a Diamond in the Rough, but as we discussed this, we realized that every day there are indications of new cuts and refinements and that he is becoming a sparkling and special diamond. ", "I feel this is true for all individuals on the spectrum, including those who are non-verbal (which Jim was for so many many years). ", "Clearly a key to Jim’s changes has been the introduction of a means for communication. ", "As I describe in Jim’s Story, it was a surprise when he started speaking after using a computer program, Write Out Loud, where the letters that are typed are spoken and the word is pronounced when the space bar is clicked. ", "At the end of a sentence, the entire sentence is spoken. ", "Jim has listened so carefully to the consistent pronunciation that the voice in the program produces, that I believe this has helped him to improve his own spoken language. ", "He now repeats everything that we say to indicate both that he understands what we are saying and to make sure that he is pronouncing things correctly. ", "I believe that he is very bright, and that this is true for most – perhaps all – individuals with an ASD. ", "Sometimes, however, the frustration of not being understood (usually because they are non-verbal) leads to aggressive behaviours or other negative behaviours that are often expressed by persons on the spectrum and cover up the positive attributes.", "\n\nNow for some recent observations:\nJim has a new support worker. ", "His previous support persons were all very good and their approaches were good to get him to a point where he could talk and make decisions for himself. ", "His new support worker – a retired teacher who is also a handyman – is working with Jim to fix things around our house and do woodworking and lots of practical things! ", "Jim loves to see that there is a purpose for what he does. ", "He doesn’t like to just hammer nails into a board; he wants to build something useful. ", "We had a couple of old garden benches that needed sanding and repairs and Jim and Jerome did this together. ", "We now have two lovely benches added to our garden – places to rest and view Nature. ", "Jerome and his partner, as he calls Jim, have built stands for our rain barrels, made large trellises on the sides of our house for climbing plants to create natural art during the years to come, put together new stairs and will be making an addition to our deck, for planters! ", "We also have some young female students working in our garden with Jim – planting and weeding. ", "Everyone has remarked that in the last two months, Jim has become so talkative and interactive with everyone. ", "He is not shy anymore but loves to share what he is thinking. ", "One of the students graduated with a BA in Psychology, and she said that she has to discard all that she learned about autism in her classes, because Jim just doesn’t fit with what they were told – he is social and enjoys being with others – yet she also recognizes the true autistic behaviours. ", "However, he is never aggressive anymore – we all believe that the big difference is that he is treated as a person first, and as someone with autism …… perhaps fifth! ", "But certainly he is not simply a person with autism. ", "What more can we ask and how much less should we be expecting? ", "I think this is the secret to a successful relationship, regardless of the relationship – being respected for what you have to offer and that what you have to offer is meaningful.", "\n\nI will be writing more, and hope that through my words, and – on occasion – those of Jim or others, you will find the answers to unlocking the brilliance that is just under the surface." ]
{ "pile_set_name": "Pile-CC" }
[ 0.004201680672268907, 0.009009009009009009, 0.012422360248447204, 0, 0.008403361344537815, 0.005, 0.008438818565400843, 0.007575757575757576, 0.011494252873563218, 0.008968609865470852, 0, 0.005780346820809248, 0, 0.009433962264150943, 0, 0.015151515151515152, 0, 0.005952380952380952, 0.01694915254237288, 0, 0.018518518518518517, 0, 0.007194244604316547, 0, 0.00909090909090909, 0, 0.006756756756756757, 0, 0, 0, 0, 0.0053475935828877 ]
0.00549
5
[ "List of most-watched television broadcasts\n\nThe following content contains the tentative list of the most-watched television broadcasts around the world in selected countries, with the corresponding peak viewership (or ratings share) records, the corresponding year of such broadcast, and the mentioned media research organizations tallying nationwide viewership records. ", "However, the most-watched television broadcast in any of the following nations can also be broadcast simultaneously in other countries and rank among their most-watched television broadcasts as well.", "\n\nGlobal\n\nHistory\nOn July 20, 1969, an estimated 650 million people watched the live global broadcast of the Apollo 11 moonlanding (this constituted around one fifth of total population of the world at the time), despite the fact that the first moonwalk took place in the middle of the night in Europe (at 01:56 in Iceland; 02:56 in Ireland, Portugal and the United Kingdom; 03:56 in Andorra, Austria, Belgium, Denmark, France, Germany, Italy, Liechtenstein, Luxembourg, Malta, Monaco, the Netherlands, Norway, Poland, San Marino, Spain, Sweden, Switzerland and Yugoslavia and 04:56 in Finland, Greece and Turkey) and it was not broadcast in the Eastern Bloc (except in Romania (04:56) and Poland) (03:56).", "\n\nThe boxer Muhammad Ali drew record global television audiences during the 1970s to early 1980s. ", "Estimates of Ali's worldwide television audiences for his \"Rumble in the Jungle\" fight against George Foreman in 1974, \"Thrilla in Manila\" fight against Joe Frazier in 1975, rematch against Leon Spinks in 1978, and \"Last Hurrah\" fight against Larry Holmes in 1980, range between 1billion and 2billion people. ", "The 1996 Summer Olympics opening ceremony, where Muhammad Ali lit the torch, was watched by an estimated 3.5billion viewers. ", "The funeral of Diana, Princess of Wales in 1997 was watched by an estimated 2billion people globally, making it the all-time most-watched royal event on live television in the world.", "\n\nThe original Live Aid was a dual-venue benefit concert held on 13 July 1985. ", "It became an ongoing music-based fundraising initiative. ", "The original event was organised by Bob Geldof and Midge Ure to raise funds for relief of the ongoing Ethiopian famine. ", "Billed as the \"global jukebox\", the event was held simultaneously at Wembley Stadium in London, England, United Kingdom (attended by 72,000 people) and John F. Kennedy Stadium in Philadelphia, Pennsylvania, United States (attended by about 100,000 people). ", "Many similar events happened the same day in other countries, such as the Soviet Union, Canada, Japan, Yugoslavia, Austria, Australia and West Germany. ", "It was one of the largest-scale television events of all time, watched across 150 nations, with an estimated global audience of 1.9 billion who watched the live broadcast.", "\n\nIn 1990, Roger Waters played a concert in Berlin known as The Wall – Live in Berlin to commemorate the fall of the Berlin Wall. ", "The concert was subject to a live audience of 450,000 and was broadcast to 35 countries, with an estimated broadcasting audience of 500 million to 1 billion people.", "\n\nProminent personalities in the 1990s and 2000s such as David Hasselhoff and Mexico's Thalia (currently based in the U.S.) starred in primetime series such as the Las Tres Marias trilogy shows (Maria Mercedes, Marimar and Maria la del Barrio), Rosalinda and Baywatch, which were broadcast in about 180 countries and still remained among the world's most-watched non-U.S.-produced television series.", "\n\nU.S. television programming remains one of the most popular forms of entertainment worldwide. ", "This trend was initiated by U.S.-made broadcast network soap operas and sitcoms such as Dallas, M*A*S*H, The Cosby Show, Seinfeld, Friends and The Big Bang Theory by the mid-2000s, and then in the late 2000s and 2010s by U.S. medical dramas and police procedurals such as House, and the CSI and NCIS franchises. ", "All of these are currently syndicated in more than 100 countries, and rank among the most-watched television series in the world, extending their dominance to a three-decade span.", "\n\nIn recent decades, the global popularity of U.S. television is rivaled by European television programming and television dramas from Latin America and Asia. ", "The annual Eurovision Song Contest, considered to be one of the world's longest running and most-watched reality television franchises, annually attracts a peak of 600 million viewers. ", "Eurovision has consistently ranked among the all-time most-watched live non-sports entertainment telecasts worldwide in the last 2 decades. ", "Idols, airing since 2001, has the largest collective global franchise viewership in the world to date, shown in versions in over 150 countries worldwide and has been watched by over 3.2billion viewers.", "\n\nThe 2008 Summer Olympics opening ceremony set the record for the largest viewing figure for any sports event, reaching an average daily audience of 593 million worldwide. ", "Over billion people saw some part of the 16-day coverage, including the opening and closing ceremonies of the Beijing-hosted Olympic games. ", "The FIFA World Cup has attracted an average of 3.2 billion viewers in 2010 and 2014, making it the most-watched overall live event by average on television worldwide in the 21st century.", "\n\nIn 2010, over 1.1 billion people were reported to have watched the 2010–2011 Sydney New Year's Eve coverage, constituting approximately 16% of the world population at that time and still remains the most-watched New Year's Eve live telecast in the world. ", "As one of the first major New Year's celebrations globally each year, Sydney New Year's Eve annual coverage are live in all time zones in both Asia, Australia and Oceania on 31 December 2010 and 1 January 2011.", "\n\nFew cable television programs have ranked among the world's most-watched television broadcasts beginning the mid-2010s. ", "In particular, notable scripted series like Game of Thrones, Sherlock and Doctor Who, originating from both the U.S. and UK, have been currently aired to more than 100 countries. ", "The annual Miss Universe and Miss World pageants, headquartered in the U.S. and UK, respectively, and aired live to more than 190 countries yearly, are said to have each regularly attracted more than 500million viewers and consistently rank among the most-watched live annual entertainment telecasts in the world.", "\n\nRegional annual sporting events like the Super Bowl in the U.S., and the UEFA Champions League finals in Europe, televised live worldwide, have emerged among the world's most-watched television broadcasts.", "\n\nThe 2015 Cricket World Cup is estimated to have been watched by an estimated 2.2billion people. ", "The most widely watched match during the tournament was India vs. Pakistan, which is estimated to have drawn over 1billion viewers.", "\n\nMost reality television franchise broadcasts and international sporting events (which are aired in several countries) tend to comprise some of the most-watched television programs, as tallied by their media research bases. ", "Beginning the mid-2010s, the majority of the world's most-watched television broadcasts, including all of the world's major international sporting events, are often broadcast live via satellite across virtually all of the world's time zones in seven continents.", "\n\nList\n\nRecords\n\nInternational\n\nAustralia\n\nMost-watched broadcasts of all time (Total Viewers)\nThe following is David Dale's approximate ranking of the most-watched television shows of all time in Australia using data from Nielsen Corporation and OzTAM.", "\n\nNote: the funeral of Princess Diana, the Wedding of Prince Charles and the Wedding of Prince William were all carried by all 4 major networks and are counted together.", "\n\nMost viewed broadcasts since 2001 (OzTAM 5 City Metro Average) \nThe following table is a list of the most viewed programs based on the OzTAM 5 City Metro Average rating system. ", "It does not include regional numbers (40% of the population) and uses the average viewership, not the peak viewership. ", "Also note these ratings are not comparable with ratings before 2001 due to different methodologies used after this time.", "\n\nBrazil\n\nCanada\n\nThe two most-watched television broadcasts in Canadian history occurred during the 2010 Winter Olympics in Vancouver. ", "For the gold medal game of the men's hockey tournament at the 2010 Winter Olympics, played between the United States and Canada, confirmed 16.6 million Canadians watched the whole game, roughly one-half of the country's entire population. ", "A groundbreaking 26.5 million Canadians watched some part of the game, over 80 percent of the country's 34-million-person population. ", "According to multiple sources, 13.3 million Canadians watched the games' opening ceremony, which was the previous record.", "\n\nMany believed the final game of the 1972 Summit Series had up to 18 million viewers, but only 4.3 million TVs tuned in. ", "This statistic does not represent the reality that most school children (representing the tail end of the baby-boom i.e. a large population) nationwide watched the game in gymnasiums on only one or two TVs. ", "10.3 million people watched the ice hockey gold medal final of the 2002 Winter Olympics.", "\n\nChina\nChina Central Television's Spring Festival Gala has regularly attracted between 700 million to 1.17 billion viewers annually.", "\n\nThe CCTV's main evening news broadcast Xinwen Lianbo has a daily audience of around 135 million people, and it is also one of the most expensive shows in the world per advertising spots, with its 2013 advertising slots selling for a record of 5.4 billion yuan.", "\n\nFrance\n\nGermany\n\nNote: The UEFA Euro 2008 final is missing from the list, because the lengthy trophy presentation was included into the official ratings. ", "The game itself was watched by 28.05 million viewers.", "\n\nIndia\nIndia measures the viewership of shows through TRP (Television Rating Point). ", "Shows used to have higher ratings in 2000s as compared to present decade. ", "The present shows that regularly score above or around the 3.5 mark are Kumkum Bhagya, and its spin off Kundali Bhagya along with Yeh Rishta Kya Kehlata Hai. ", "Sometimes these shows touch 4 which is still quite low as compared to highest rated shows of the last decade. ", "Other than that Naagin (2015 TV series) is the only show now that scores above 4.7. ", "All of these shows are produced by the same banner Balaji Telefilms except Yeh Rishta Kya Kehlata Hai. ", "Currently, Naagin (2015 TV series) is the most viewed TV Show which garnered a highest TRP of 6.1 in 2016 and Naagin 3 which got 10.8 million viewership in its opening week (Week 23, 2018) and continued it for months. ", "Ironically, 2.5-3.5 TRP was considered an average in the 2000s era of classic serials. ", "The most-watched channel for years has been Star Plus , then Zee TV with major competition from Colors. ", "Mahabharat (19881990), the television adaptation of Indian epic Mahabharata, had a share of 97.8% among Indian viewers.", "\n\nAamir Khan's talk show Satyamev Jayate (20122014) drew an estimated audience of 600million viewers in India. ", "The 2016 ICC World Twenty20 cricket cup was watched by an estimated 730million viewers in India, with India vs. Pakistan being the most widely watched live event during the tournament. ", "The Doraemon anime series is India's highest-rated children's television show as of 2017, with a total of 478.5million viewers across Hungama TV and Disney Channel India.", "\n\nMost viewed broadcasts\n\nIreland\nA list of most-watched shows in the Republic of Ireland in the 21st century was released in January 2015. ", "The Late Late Toy Show held the top six spots, with the 2014 edition drawing 1,593,000 viewers: over one-third of the country's population. ", "Other high-performing shows were Who Wants to be a Millionaire?, ", "crime drama Love/Hate, Mrs. Brown's Boys, The Sunday Game, UEFA Euro 2012 and the Eurovision Song Contest.", "\n\nJapan\nThe following list is for Japanese anime only. ", "The list covers broadcasts after 26 September 1977. ", "Video Research had previously recorded an episode of the 1960s Astro Boy anime that earned a 40.3% rating.", "\n\nMexico\nA list of most-watched shows in the Mexico, Televisa and TV Azteca broadcasters (Liga MX Apertura and \nClausura), Boxing, 1968 Summer Olympics in Mexico City, (FIFA World Cup hosts 1970 & 1986), some concerts like Maná's Unidos por La Paz at Estadio Azteca in March, 2001; in 2007, the last episode of La Fea Más Bella\", Funeral events like Chespirito at December, 2014 the creator of TV Series El Chavo del ocho and El Chapulin Colorado, and Celebration of Mexican political anniversaries in 2010 celebrate independence from Spain also called Bicentenario 2010, had an average audience of over 40 million views in Mexican Television.", "\n\nNew Zealand\nIn 2011, the television website Throng published a list of the 12 most-watched television broadcasts in New Zealand from 1995 to 2011. ", "This is based on average viewership of the program, but it does not include broadcasts from before 1995 or after 2011.", "\n\nThe Rugby World Cup has frequently had large audiences – the Rugby World Cup 2011 final, and a semi-final, both had an average audience of over 2 million.", "\n\nPhilippines\n\nAGB Nielsen\nThe following table shows the all-time highest rating television shows in Mega Manila as tallied by AGB Nielsen since 1992. ", "However, ratings are from a single highest recorded episode of the show (in the case of the TV series) and it is not the average over-all ratings for the whole season or series.", "\n\nPoland\nList of the 10 most-watched television broadcasts since the beginning of telemetry research in Poland (since 1997) by Nielsen Media Research:\n\nPortugal\n\nSouth Korea\nViewership ratings are provided by two companies in South Korea, AGB Nielsen Media Research and TNmS. Originally Media Service Korea was the only company providing such information, and it was later acquired by Nielsen Media Research. ", "In 1999 TNS Media Korea also began such service, and later changed its name to TNmS. AGB collects viewership data based on 2050 households, while TNmS has 2000 households with measuring devices. ", "Drama ratings usually vary between the two companies by 2–3%.", "\n\nSweden\nStatistics from Mediamätning Skandinavien.", "\n\nMost-watched programmes per year\n\nMost-watched sport events per year\n\nUnited Kingdom\n\nMost-watched special events\nThe majority of special events attracting large audiences are often carried on more than one channel. ", "The most-watched programme of all time on a single channel is the 1973 wedding ceremony of The Princess Anne, shown only on BBC1. ", "The figures in these tables represent the average viewership achieved by each broadcast during its run-time and do not include peak viewership.", "\n\n Post-1981 figures verified by the Broadcasters' Audience Research Board (BARB)\n Pre-1981 figures supplied by the British Film Institute (BFI)\n\nNotes:\nThe Wedding of Princess Margaret and Lord Snowdon (6 May 1960) was watched by an estimated 25 million viewers in Britain.", "\nAt least two Muhammad Ali boxing matches were reported to have been watched by at least 26million viewers in the United Kingdom: the Fight of the Century (Ali vs. Frazier) was reported to have been watched by 27.5million British viewers in 1971, and The Rumble in the Jungle (Ali vs. Foreman) was reported to have been watched by 26million viewers on BBC One in 1974.", "\nLive Aid is reported to have reached approximately 24.5million British viewers in July 1985.", "\nThe Wedding of Prince William and Catherine Middleton (29 April 2011) received a total audience peak of 26 million viewers, but this is a combined figure aggregated from the ten different channels that broadcast the ceremony. ", "The highest figures of these were 13.59 million on BBC1, with an extra 4.02 million watching on ITV.", "\n\nMost-watched programmes\nThe following is a list of most-watched programmes, excluding sporting events and news coverage. ", "The mid-1980s introduction of in-week repeat showings accounts for six of the top ten programmes. ", "On this measure, the 1996 Christmas edition of Only Fools and Horses is the most-watched non-repeated, non-documentary programme of all time in the UK. ", "It is the third most-watched programme of all time on a single channel, after the 2012 Summer Olympics closing ceremony and the wedding of Princess Anne and Mark Phillips in 1973 (see below).", "\n Post-1981 figures verified by the Broadcasters' Audience Research Board (BARB)\n Pre-1981 figures supplied by the British Film Institute\n\n*Denotes aggregated figure with repeat showing.", "\n\nUnited States\n\nNBC's live telecast of Super Bowl XLIX in 2015 currently holds the record for the largest average viewership of any live single-network U.S. television broadcast, with 114.4 million viewers. ", "During this broadcast, the halftime show was watched by 118.5 million viewers. ", "The previous live telecast Super Bowl XLV in February 2011 helped Fox become the first ever television network in the United States to be watched by at least 100 million American viewers by average for a single primetime night of programming. ", "Moreover, Super Bowl telecasts account for 23 of the most-watched television broadcasts based on overall viewership in U.S. television history. ", "Fox's live telecast of Super Bowl LI in 2017 currently holds the largest total viewership in U.S. television history, peaking at 172 million viewers in Super Bowl's first ever overtime play.", "\n\nAdditionally, the National Football League (or NFL) regular season is watched since 2012 by at least 200 million individuals in the United States, accounting for the largest consistent annual nationwide viewership for any television event in U.S. television history (representing almost 70% of the American households, more than 80% of the total U.S. television viewers, and more than 60% of the 2018 U.S. population of 325 million individuals).", "\n\nMost-watched broadcasts\n\nReferences\n\nSources\n \nhttps://www.moneycontrol.com/news/india/man-vs-wild-episode-featuring-pm-modi-was-most-trending-televised-event-claims-bear-grylls-4351101.html\nhttps://in.mashable.com/entertainment/5924/pm-narendra-modis-man-vs-wild-stint-with-bear-grylls-is-officially-the-most-watched-episode-on-tv\n\nCitations\n\nMost-watched broadcasts\nMost-watched broadcasts" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0, 0, 0.00141643059490085, 0.01020408163265306, 0.016181229773462782, 0.008, 0, 0, 0, 0.008333333333333333, 0.0038910505836575876, 0, 0, 0.007692307692307693, 0, 0.012531328320802004, 0, 0.01282051282051282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.004761904761904762, 0, 0, 0.006389776357827476, 0.004830917874396135, 0, 0, 0, 0, 0.007905138339920948, 0.01775147928994083, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.007633587786259542, 0, 0, 0.011627906976744186, 0, 0.0189873417721519, 0, 0, 0.019417475728155338, 0, 0.011494252873563218, 0.019230769230769232, 0.008403361344537815, 0.018018018018018018, 0, 0.01764705882352941, 0, 0, 0, 0.009433962264150943, 0, 0, 0.018867924528301886, 0.010852713178294573, 0, 0, 0.00641025641025641, 0.006622516556291391, 0, 0.009779951100244499, 0.010256410256410256, 0, 0.0196078431372549, 0, 0, 0, 0.014598540145985401, 0.016304347826086956, 0, 0.004405286343612335, 0.01, 0, 0, 0, 0.010471204188481676, 0.010752688172043012, 0.009615384615384616, 0, 0.00411522633744856, 0, 0.010526315789473684, 0.0044742729306487695, 0.005089058524173028 ]
0.004386
5
[ "Construction of genomic libraries of Cryptosporidium parvum and identification of antigen-encoding genes.", "\nGenomic libraries have been constructed from bovine C. parvum DNA in the lambda ZAP and lambda DASH vectors. ", "Based on an estimated genome size of 2 x 10(4) kilobases (kb), each recombinant library contains greater than 10 genomic equivalents. ", "The average recombinant size for the lambda ZAP library is 2.1 kb and for the lambda DASH library is 14 kb. ", "We have identified genes to major antigens recognized by hyperimmune bovine antiserum. ", "These recombinants are currently being purified and characterized. ", "Limited DNA sequence analysis of random C. parvum clones confirms suggestions that the genome is quite AT-rich. ", "The DNA sequence of random lambda ZAP fusion proteins has identified a potential ATPase, a structural protein and a DNA-binding protein." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0.009523809523809525, 0, 0, 0.009259259259259259, 0, 0, 0, 0.007352941176470588 ]
0.003267
5
[ "Further details\n\nNew listings in Toowoomba\n\nAuto Key Pro provides a mobile replacement car key service to Toowoomba and the Darling Downs.", "We cut, program and supply keys for a range of makes and models. ", "Call Now 0401796273 We Beat Any Price - Get 10% Off !" ]
{ "pile_set_name": "Pile-CC" }
[ 0.007246376811594203, 0, 0 ]
0.002415
5
[ "[Inquiry on the future of newborns treated in intensive care units for children. ", "III. ", "Neurologic anomalies].", "\nThis study concerned newborns admitted between 0 and 10 days of life at the intensive care unit of the Hospital St-Vincent-de-Paul from 1969 to 1972. ", "They were followed later as outpatients. ", "Out of 1,607 newborns admitted, 1,126 survived (average mortality: 30%). ", "532 were examined after one year, 397 after two years. ", "On the whole prognosis may be considered as good: at 2 years of age, 8% had major neurologic abnormalities; 4% minor abnormalities, no increase in the percentage of major neurologic abnormalities between 1969 (6%) and 1972 (5%), whereas mortality decreased from 36 to 24%. ", "The various types of neurologic deficits were analyzed, according to their effects on rehabilitation (4% had severe retardation, 11% moderate retardation). ", "The sensory involvement (3%) and intercurrent seizures (10%) were also analyzed. ", "According to the bias of the Unit in recruitment, this enquiry concerned children close from term or medium premature children (B.W. 1,500 g) : this diminishes the true rate of the neurologic deficit. ", "The relationships between etiology of neonatal distress and delayed neurologic abnormalities are emphasized." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0.045454545454545456, 0.019867549668874173, 0, 0, 0, 0, 0, 0, 0, 0 ]
0.005444
5
[ "Incisional hernia (IH) can be prevented using prophylactic mesh placement (PMP), which involved placement of mesh to reinforce an abdominal fascia closure before herniation occurs at the index of surgery. ", "PMP reduced the absolute risk of IH, with an acceptable complication profile. ", "Open abdominal surgery techniques remain commonplace and contribute to the estimated 153,000 cases of IH performed in the United States (US) and the associated $3 billion spent on hernia treatment. ", "To reduce these hernias, more widespread adoption of PMP is needed, yet barriers exist to adopting PMP in practice. ", "Surgeon-level barriers are a key impediment due to the added time for PMP (20-30 minutes). ", "A rapid mesh application system can reduce this time and increase utilization of PMP. ", "Further, the reliability and technical challenges inherent to PMP pose significant challenges. ", "These barriers highlight an unmet clinical need for an effective, well-engineered, intra- operative technology to decrease the time and circumvent the technical challenges of applying mesh to the abdominal wall fascia for hernia prevention. ", "The SafeClose Mesh Augmentation System is a medical grade, hand-held, mesh affixing system. ", "The system increases the speed of mesh affixation and circumvents technical intra-operative challenges by integrating several key steps of the PMP process, including positioning, tensioning, and affixation into one system. ", "The system includes sterilized mesh with pre-integrated fastener anchors along with a customized applicator that houses the mesh-fastener system inside. ", "By pulling the applicator along the length of the incision, the mesh rolls out of the applicator and is simultaneously affixed by the fasteners. ", "In one continuous motion, the entire incision can be reinforced. ", "When the surgeon reaches the bottom of the incision, he/she can cut the mesh off using the built-in cutting mechanism. ", "This newly updated design satisfies important end-user needs by providing an ergonomic yet robust application mechanism, while at the same time allowing the device to accommodate for different incision lengths and sizes giving the user full ability to control the length of mesh that is used. ", "We propose a feasible, systematic, and step-wise approach to refinement and proof-of-concept for the SafeClose System. ", "Success of this Phase I proposal will be defined by creation of a refined applicator whose core functionality includes a built-in cutting mechanism to reliably and safely cut the mesh after the surgeon has completed the procedure AND demonstration that the SafeClose significantly reduces the time relative to a hand- sewn technique (Aim 2 Experiment 1) while achieving equivalent or improved biomechanical strength of the repair (Aim 2 Experiment 2). ", "The proposed research objectives will advance hernia care and begin a shift towards more preventative risk reductive interventions in abdominal surgery." ]
{ "pile_set_name": "NIH ExPorter" }
[ 0, 0, 0.005050505050505051, 0, 0, 0, 0, 0, 0.010869565217391304, 0, 0, 0, 0, 0, 0, 0, 0.0022123893805309734, 0 ]
0.001007
5
[ "Choose Other Models to Add\n\nThe Toyota Corolla is one of the best selling cars in the world for a reason. ", "It does what it was made to do - be a solid car. ", "For the price, it is a good transportation device and the reliability/gas mileage is a plus.", "\n\nAvg. ", "Dealer Rating: (17 reviews)\n\"Dealer did not display any credibility from the first phone call. ", "There were multiple calls from the dealer insisting that I make an appointment. ", "It was as though they though I worked for them. ", "Person I spoke with was rude to the point that whenever I tried to say anything he made it a point to talk over me. ", "At one point I finally hung up and made the decision that I Would never purchase a car from them. ", "I ended up buying from another local Toyota dealer and am extremely pleased with the service and price and will enjoy my 2016 Prius for many years to come. ", "I advise any potential buyer to check out the reviews and remember \"Caveat Emptor.\"\"", "\n\nAvg. ", "Dealer Rating: (2 reviews)\n\"Tried to add on the price of repairing the tank to the total cost. ", "On the advertisement it was not disclosed that the trunk did not work. ", "Oh and the dealer fee is almost $1,000.", "\nThe car was advertised for $7,995. ", "And by the time everything was added up the OTD cost would have been over $11,000.", "\nI found and bought the a the same car 1 year older with 15k less miles for 8,500 OTD.\"", "\n\nAvg. ", "Dealer Rating: (10 reviews)\n\"They agreed on the price and the trade. ", "They sent all of the paperwork as\nagreed to my credit union. ", "I drove a 140 miles to the dealership to pick up\nthe vehicle and leave my existing trade in. ", "after making me wait for more\nthan 2 hours they decided they wanted $5,000.00 more money as my\ncar was a XLT and not a King Ranch Expedition. ", "During our negotiations\nI had sent then complete photos of my car plus a photo of the window\nsticker clearly showing the type of expedition as well as all of the options\netc. ", "They also had the tag receipe showing the VIN number as well.", "\nI refused the deal and they made no apology nor did they offer any\ncompensation for my time or make any attempt to make this right.\"", "\n\n2014 Toyota Corolla LUsed Cars\nin\nClearwater, FL 33764\n\nAverage time on market:\n29 days\nCertified Pre-Owned: No\nTransmission: Automatic\nColor: Silver\nDescription:\nUsed 2014 Toyota Corolla L for sale\n- $10,777, 39,467 miles with Steel Wheels,\nBluetooth\n\nAvg. ", "Dealer Rating: (11 reviews)\n\"Excellent . ", "They responded by email within a couple of hours and then followed up with a phone call. ", "We were not able to get over to see the vehicle however would be happy to deal with them in the future.\"" ]
{ "pile_set_name": "Pile-CC" }
[ 0.009433962264150943, 0, 0, 0, 0, 0, 0, 0, 0, 0.00641025641025641, 0, 0, 0, 0, 0, 0, 0.012195121951219513, 0.011494252873563218, 0, 0, 0, 0, 0, 0, 0.01639344262295082, 0, 0.015384615384615385, 0, 0, 0 ]
0.002377
5
[ "Brisbane bar The Scratch succeeded in spite of making “every mistake in the book” in its opening year, according to co-founder Ben Nichols, who has revealed details of his next hospitality venture.", "Read More »\n\nSo-called ‘gateway beers’ may actually be doing little to convert Australian drinkers to more flavoursome styles, mused Brendan Varis of Feral Brewing, as the company launched its new canned range.", "Read More »" ]
{ "pile_set_name": "Pile-CC" }
[ 0.01015228426395939, 0.009523809523809525, 0 ]
0.006559
5
[ "Murli\n\nMurli may refer to:\n\n Murli, Bihar\n Murli (instrument)\nMuRli, Togolese-Irish rapper" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.011111111111111112 ]
0.011111
5
[ "How do electronic carriers cross Si-bound alkyl monolayers?", "\nElectron transport through Si-C bound alkyl chains, sandwiched between and Hg, is characterized by two distinct types of barriers, each dominating in a different voltage range. ", "At low voltage, the current depends strongly on temperature but not on molecular length, suggesting transport by thermionic emission over a barrier in the Si. ", "At higher voltage, the current decreases exponentially with molecular length, suggesting transport limited by tunneling through the molecules. ", "The tunnel barrier is estimated, from transport and photoemission data, to be approximately 1.5 eV with a 0.25m(e) effective mass." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0, 0, 0 ]
0
5
[ "The Parlando Project – Where Music and Words Meet\n\nNot for that City\n\nLet me introduce newcomers to one of this project’s “finds,” the little-known early 20th century English poet Charlotte Mew. ", "Of course, I didn’t really find her, some of her English contemporaries did, and they waged an unsuccessful campaign to bring her work to greater attention. ", "Among those who thought she deserved more attention: Thomas Hardy, Virginia Woolf, Siegfried Sassoon, Walter de la Mare, John Masefield, and even Ezra Pound.", "\n\nHer poetry touches on some different styles, but what unites it is a skeptical and iconoclastic attitude. ", "She herself seems to have been something of a sui generis outsider, and her poetry reflects that, frequently focusing attention on outsider characters, and her poetry often makes unusual arguments or turns—and I suspect that’s the reason her poetry didn’t catch on. ", "Even her era’s rebels like T. S. Eliot had a ready hook to grab attention: the trauma of WWI and the rise of a modern heterogeneous urban society and industrial economy were enough of a shock to the system that even the most high-brow and arcane poetic examinations had some access to the reading public’s attention. ", "Particularly in America, there were a number of women poets who examined love and relationships* in sophisticated ways that were widely seen then as access to that mysterious creature of the era: “The New Woman.”", "\n\nMew didn’t really do the former much, and her take on love didn’t seem to always align with expectations, for she was noticeably androgynous as a person and as a poet.", "\n\nSo, what does today’s piece, Mew’s “Not for that City” deal with instead? ", "Glorious Heaven, and in language and imagery that would make for an ornate hymn about the rewards of same. ", "Except it’s not saying that’s what some “we” really want.", "\n\nThe poem instead says that what “we” want is rest, not a surfeit of glory and splendor.", "\n\nYes it’s nice and all, but I could use some alone time.", "\n\nWho’s the “we?” ", "I’m not completely sure. ", "Mew lived a somewhat weary life with long-running caretaker roles. ", "Is she speaking of the poor and working classes, though she never names them as the “we” as such? ", "Is this simply the testament of a religious skeptic? ", "I can’t say for sure, but it works even if this isn’t determined.", "\n\nI struggled long on the musical setting of this, completing two different sets of music, and then after choosing the music finally used, trying mightily to realize a full voiced, almost operatic singing line. ", "That failed miserably, I just don’t have the voice or access to anyone else who does. ", "The version you’ll hear with the player below is left with a track of my shabby talk-singing which is simply the best I can do to present this. ", "I still think it’s worth hearing, and you can with the player gadget below. ", "Full text for those who’d like to read along is here.", "\n\n*We’ve presented some of them here: Edna St. Vincent Millay, Sara Teasdale, Margaret Widdemer, Mina Loy and Elinor Wylie. ", "Being seen as “love poets” probably helped them with general audiences that still existed in the early 20th century for poetry, but then caused them to fall off the literary map later in the century which increasingly admired and required either political and philosophical advocacy, or a devotion to “serious and universal topics”—which for some reason did not include women’s observations of sexual and romantic politics." ]
{ "pile_set_name": "Pile-CC" }
[ 0.010256410256410256, 0, 0.03821656050955414, 0, 0, 0.006309148264984227, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.04032258064516129, 0 ]
0.003658
5
[ "Builder's experience with iBuild nothing short of positive\n\nRyan Cooper from Hawkesbury River Home Builders has praised the iBuild team for its outstanding work in the construction of a kit home in the Hawkesbury River Area, NSW.", "\n\nWhen Ryan was first asked to erect an iBuild kit home for one of his customers he was very sceptical.", "\n\nHowever, the established builder’s experience with iBuild has been nothing short of positive.", "\n\n“As an established custom home builder of nearly 30 years, I was sceptical of the product and service that we may receive from a kit home company,” Ryan said.", "\n\n“However, the level of service provided by Project Manager Peter Kiraly at iBuild was exceptional. ", "As a business we can’t afford to have supplier delays, and I can honestly say that the speed of product delivery and level of service provided by Pete at iBuild was great.\"", "\n\n\"I would be happy to work with iBuild again anytime in the future.” - ", "Ryan Cooper\n\nOur work with the Hawkesbury River Home Builders team shows that our builder contractors are extremely satisfied with the timely delivery and ongoing support that follows our sales process. ", "We try our utmost best to ensure we provide exceptional customer service and satisfaction. ", "iBuild is entrusted by builders because we make ourselves available for any questions and issues.", "\n\nWe thank Ryan for entrusting us and we look forward to working with him and other builders in the future.", "\n\n“It is obvious that interns add value to any business. ", "But it is a two-way street. ", "You have to provide them with meaningful work so they gain extra skills that prepare them for the workforce.”", "\n\nThe company’s internship program began in 2016 and placements are now offered to students from a variety of fields including engineering, business, finance, marketing and Information Technology. ", "Managing Director of iBuild Dr Jackson Yin said interns gain valuable real-world experience from the placement and apply their unique skills, capabilities and enthusiasm to the role.", "\n\nFollowing the end of their placements, some interns have been fortunate enough to be offered permanent positions. ", "Jayden Savannah completed his marketing internship in 2017 before recently being promoted as a Marketing Project Manager. ", "Jayden now supervises as many as 10 interns a semester, developing his own leadership and mentoring skills in the process.", "\n\n“While it may sound onerous, it isn’t. ", "I’ve created a program so that the students are all set and ready to go within one week,” he said.", "\n\n“A majority of the interns are in their final year of study and bring really valuable skills and attributes to the job.”", "\n\nHolmesglen student Helen Ly was one of iBuild’s most recent interns where she gained practical, real-world skills.", "\n\n“I really liked the placement at iBuild. ", "I was assigned to conduct inshore and offshore market research to look for potential markets as well as increase our target audience in the residential, commercial and government sectors,” she said.", "\n\n“This real business experience, combined with my marketing knowledge and sales skills, will greatly assist me in finding the part-time job I’m looking for as an administrative or marketing assistant.”" ]
{ "pile_set_name": "Pile-CC" }
[ 0.021834061135371178, 0.019417475728155338, 0.010526315789473684, 0.00625, 0.0297029702970297, 0.011627906976744186, 0.013888888888888888, 0.009852216748768473, 0, 0.010309278350515464, 0.009345794392523364, 0, 0, 0, 0.005076142131979695, 0.005494505494505495, 0, 0.00819672131147541, 0, 0, 0, 0, 0.017241379310344827, 0.023255813953488372, 0, 0 ]
0.00777
5
[ "Patrick Hall (politician)\n\nPatrick Hall (born 20 October 1951) is a British Labour Party politician, who was the Member of Parliament (MP) for Bedford from 1997 to 2010. ", " He was re-selected by the Labour Party as their candidate in Bedford for the 2015 general election, but failed to return to Parliament.", "\n\nEarly life\nPatrick Hall was educated at the independent Bedford Modern School, the University of Birmingham and Oxford Polytechnic. ", "He joined Bedford Borough Council in 1975 as a local government planning officer, becoming the borough's Town Centre Coordinator. ", "Hall remained employed by the council until his election to Parliament.", "\n\nHe was elected as a councillor to the Bedfordshire County Council 1989–97 and was a member of the North Bedfordshire Community Health Council. ", "He contested Bedfordshire North at the 1992 General Election, but was defeated by the veteran Conservative MP Trevor Skeet by 11,618 votes.", "\n\nParliamentary career\nPatrick Hall was elected to the House of Commons at the 1997 General Election for the new seat of Bedford with a majority of 8,300. ", " He was re-elected at the 2001 and 2005 election. ", "Hall was Bedford's third Labour MP and the first to hold the seat for more than one term.", "\n\nHe made his maiden speech on 30 July 1997, where he celebrated the history of Bedford and paid tribute to the town's diverse population. ", "He also raised issues about the lack adequate and affordable housing supply, a cause which he would champion throughout his parliamentary career.", "\n\nHall made his reputation as being an attentive constituency-based MP. ", "His work in Parliament reflected his experience in town planning, becoming the chair of the all-parliamentary group on town centre management. ", "He was also a vocal campaigner on better transport links for Bedford, pushing for the Bedford by-pass and rail investment for the town's many commuters.", "\n\nIn 2003, Hall was one of 139 Labour MPs to rebel against the Government whip by voting in favour of an amendment which stated that there was no moral case for war in Iraq. ", "In the end, Hall did not vote for the declaration of war, choosing not to vote on the motion.", "\n\nIn his final term in Parliament, Hall voiced his opposition to the Trident nuclear weapons programme, voting against its continuance.", "\n\nDuring the expenses scandal, Hall remained one of the few MPs to be applauded for his integrity on claims. ", "His expenses claims were among the lowest total claims of all MPs. ", "He was described as one of the 'saints' by the Daily Telegraph, the newspaper which broke the expenses scandal story in 2009.", "\n\nHall lost his seat in the 2010 General Election to Conservative candidate Richard Fuller, who had also challenged him unsuccessfully in 2005. ", "Fuller's slim majority of 1,353 made Bedford the Conservatives' twenty-fifth most marginal seat in Britain and a major target for Labour at the next general election.", "\n\nOn 30 June 2012, he was selected as Labour candidate for Bedford for the 2015 general election, but was defeated in the 2015 General Election.", "\n\nPersonal life\n\nPatrick is married to Claudia and has two step sons, Giovanni and Gabriele. ", " He enjoys squash and gardening.", "\n\nReferences\n\nExternal links \n Official Website\n Patrick Hall on Twitter\n Guardian Unlimited Politics – Ask Aristotle: Patrick Hall MP\n TheyWorkForYou.com – Patrick Hall MP\n \n\nCategory:1951 births\nCategory:Living people\nCategory:People educated at Bedford Modern School\nCategory:Labour Party (UK) MPs for English constituencies\nCategory:UK MPs 1997–2001\nCategory:UK MPs 2001–2005\nCategory:UK MPs 2005–2010\nCategory:Alumni of Oxford Brookes University\nCategory:People from Bedford\nCategory:Politics of the Borough of Bedford\nCategory:Alumni of the University of Birmingham" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.041176470588235294, 0.014705882352941176, 0.029850746268656716, 0.015384615384615385, 0.014084507042253521, 0.013793103448275862, 0.007194244604316547, 0.01935483870967742, 0, 0.02247191011235955, 0.007194244604316547, 0, 0, 0.006993006993006993, 0.013157894736842105, 0.005747126436781609, 0.010752688172043012, 0.014814814814814815, 0.009174311926605505, 0, 0.008, 0.013888888888888888, 0.012048192771084338, 0.006944444444444444, 0.021505376344086023, 0, 0.014010507880910683 ]
0.011935
5
[ "Patients overwhelmingly oppose non-medical switching\n\n2017 Goal: End non-medical switching\n\nAs we prepare for big changes expected next year in health care, we’re turning our attention to the ongoing problems where there is near universal agreement among patients — but little progress.", "\n\nThat starts with a serious problem that directly impacts patients’ health: non-medical switching.", "\n\nNon-Medical Switching: What is it and how does it harm patients?", "\n\nNon-medical switching is when an insurance company supersedes the decision of a patient’s doctor by forcing a patient to use a different treatment.", "\n\nInsurers force this switch to a different drug by either dropping coverage or increasing the out-of-pocket cost of the drug after the plan year has begun. “", "Switch” doesn’t exactly convey the serious health complications and major side effects that result.", "\n\n“When patients lose access to the therapy that stabilizes their condition, they may also lose the ability to manage their disease, facing re-emerging symptoms and new side effects,” explains U.S. Pain Foundation, a non-profit organization dedicated to serving those who live with pain conditions. “", "Patients may require visits to the emergency room, additional appointments with their physician, lab tests and hospitalizations as a result— making the “less costly” alternative an expensive option for patients and insurers alike.”", "\n\n“Switching should only take place with the full knowledge and consent of the prescribing physician in consultation with the affected patient,” says U.S. Pain Foundation. “", "Insurers should not be playing doctor.”", "\n\n92 Percent of Patients Opposed to Non-Medical Switching\n\nAccording to a newly released survey by the Alliance for the Adoption of Innovations in Medicine, 92 percent of patients are opposed to “nonmedical switching,” in which insurers can force stable patients to switch from their current medication to a different drug.", "\n\n“Many Americans are unaware of such practices,” Stacey L. Worthy, executive director of Aimed Alliance, writes at The Hill. “", "Yet, the consequences can be a hassle to deal with and, in some cases, detrimental to a patient’s wellbeing.”", "\n\nThe poll, which was conducted from December 3 to December 8, 2016, coincides with state and federal policymakers looking to reform insurance coverage, with a special focus on the Patient Protection and Affordable Care Act in 2017.", "\n\nShe adds, “There is an inherent absurdity that someone who never examined you would have the authority to override the decision of a trained medical professional with an intimate knowledge of your condition.”" ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0.015151515151515152, 0, 0, 0, 0.0033333333333333335, 0, 0.005780346820809248, 0, 0.006191950464396285, 0.023622047244094488, 0, 0.004310344827586207, 0 ]
0.003893
5
[ "#\n# (C) Copyright 2008\n# Ricardo Ribalda,Universidad Autonoma de Madrid, [email protected]\n# This work has been supported by: Qtechnology http://qtec.com/\n#\n# See file CREDITS for list of people who contributed to this\n# project.", "\n#\n# This program is free software; you can redistribute it and/or\n# modify it under the terms of the GNU General Public License as\n# published by the Free Software Foundation; either version 2 of\n# the License, or (at your option) any later version.", "\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ", " See the\n# GNU General Public License for more details.", "\n#\n# You should have received a copy of the GNU General Public License\n# along with this program; if not, write to the Free Software\n# Foundation, Inc., 59 Temple Place, Suite 330, Boston,\n# MA 02111-1307 USA\n#\n\nCOBJS\t+= $(BOARD).o\n\ninclude $(SRCTREE)/board/xilinx/ppc440-generic/Makefile\n" ]
{ "pile_set_name": "Github" }
[ 0.017094017094017096, 0.012, 0.005291005291005291, 0.01818181818181818, 0.010380622837370242 ]
0.012589
5
[ "Last month, an MIUI forum super moderator had claimed that Xiaomi has decided to discontinue the Mi Note line and that the Redmi 5 Plus is the spiritual successor to the company’s popular Redmi Note 4 from last year. ", "However, if a new rumor out of China is to be believed, Xiaomi will definitely launch the Redmi Note 5 this year.", "\n\nThe rumor claims the Redmi Note 5 is being tested internally and will be released sometime in the second quarter of 2018. ", "Why the delay, you ask? ", "Well, apparently Xiaomi is waiting for Qualcomm to release the octa-core Snapdragon 632 SoC, a minor downgrade over the Snapdragon 636 chipset that was announced in October last year. ", "You can expect a slightly lower clock speed as well as a lower-clocked GPU. ", "However, the Snapdragon 632 is expected to retain the Qualcomm Spectra 160 ISP, which offers better optimization for dual-camera setups than the Snapdragon 625.", "\n\nMoving on to other key specs, the Redmi Note 5 is expected to feature a 5.99-inch display with an 18:9 aspect ratio. ", "Similar to the Redmi 5 and Redmi 5 Plus, you can expect to see minimal bezels around the display. ", "The screen-to-body ratio on the Redmi Note 5 might perhaps be slightly higher than the Redmi 5 Plus, although this hasn’t been confirmed just yet. ", "In the memory department, the Redmi Note 4 successor will ship with 4GB of RAM as standard. ", "No word on the storage just yet, but you can expect to see 32GB and 64GB options. ", "On the imaging front, Redmi Note 5 will sport a dual-camera setup at the rear with two 12-megapixel resolution sensors.", "\n\nIn terms of pricing, however, it appears the Redmi Note 5 will be positioned higher than its predecessor. ", "The latest rumor suggests the smartphone will start at 1599 yuan in China, which converts to Rs.15,600 based on the current exchange rate. ", "While it is too early to speculate on the Indian pricing, the more powerful Snapdragon 632 SoC and 12MP dual-camera setup certainly justify a premium over the Redmi 5 Plus.", "\n\n\n\n" ]
{ "pile_set_name": "OpenWebText2" }
[ 0.004608294930875576, 0.008849557522123894, 0, 0, 0.016304347826086956, 0.013157894736842105, 0.01875, 0, 0, 0, 0, 0, 0.008403361344537815, 0, 0, 0.005813953488372093, 0 ]
0.004464
5
[ "When the goals of two organizations are so similar, it's almost inevitable that they work together. ", "In the case of NJTV and the New Jersey State Governor's Jefferson Awards for Public Services, that common thread is community service.", "\n\n\"Public television strives to educate, entertain and enlighten our local communities through our programming and engagement initiatives. ", "The Jefferson Awards strives to recognize individuals who are on the front lines of doing the same education and engagement in their communities. ", "It's a great match in mission between us,\" said John Servidio, general manager of NJTV.", "\n\nThe New Jersey State Governor's Jefferson Awards is a joint program administered by The Community Foundation of New Jersey, NJ Advance Media and The Governor's Advisory Council on Volunteerism, with support from corporate underwriters. ", "It is a local program of the Jefferson Awards, a national volunteer recognition program established in 1972 by the American Institute for Public Service in cooperation with the U.S. Senate and the White House. ", "Designed to honor volunteers across the country, the programs are coordinated by local media partners.", "\n\nJohn Servidio, general manager, NJTV.Special to NJ.com\n\nHonorees are recognized in more than 15 award categories and candidates are nominated through the New Jersey State Governor's Jefferson Awards website. ", "Representatives from The Community Foundation of New Jersey, NJ Advance Media and the Governor's Advisory Council on Volunteerism assist in the selection process. ", "The nomination form asks a series of questions, which highlight individual and/or group achievements.", "\n\nThe deadline for 2017 honorees is Jan. 31. ", "Honorees will be recognized during a local ceremony in the spring, in which they will receive a Jefferson Awards medal and a certificate of recognition. ", "In June, a select group of honorees will be invited to participate in a national ceremony, taking place in Washington, D.C.\n\nTrue to its mission of promoting education and engagement, NJTV sponsors the Jefferson Award for Education. ", "The award recognizes volunteers who provide classroom and/or after-school programs, enrichment opportunities, tutoring, or other academic support that would enhance the student's ability to succeed. ", "It also recognizes volunteers whose service maintains and preserves New Jersey's history by working with historic sites, museums and other organizations with a special interest in history; or whose service directly or indirectly impacts the arts and cultural fabric of New Jersey.", "\n\n\"They are a significant ally with getting the word about what's going on in the state, particularly with their coverage of not just breaking news, but issues that are important to the people of New Jersey,\" said Robert Provost, board chair, New Jersey State Governor's Jefferson Awards. \"", "The other aspect of public broadcasting is its deep engagement with education. ", "We're delighted to have the education award identified as the NJTV Jefferson Awards for Education. ", "We look forward to working with NJTV in the future to get word out on the issues in our state and to also get the word out on the Jefferson Awards programs.\"", "\n\nThe 2016 honoree, Nancy Norris-Bauer, director of school/community partnerships at William Paterson University, was recognized for her efforts to promote National History Day in New Jersey, providing students the opportunity to engage in primary and secondary research, and present their findings while combining English, science, math, technology, music and, of course, history. ", "Thanks to her efforts, the program now serves 5,000-plus middle and high school students from public, private, religious and home schools.", "\n\n\"We seek out those individuals who are actively engaged in their towns and organizations, doing work that reflects the important missions of public television -- to serve and educate the community,\" Servidio said.", "\n\nNorris-Bauer established a statewide advisory board, sought and received annual grant funding, built long-term relationships with archives and historic sites, and actively visited school districts across the state. ", "As the program grew, Norris-Bauer developed partnerships with Seton Hall, Kean, Princeton, Rutgers, Rider and Monmouth universities, which now sponsor regional contests.", "\n\nBenefits for New Jersey students have included invitations to visit Normandy, attend the opening of the World War II Museum in New Orleans, attend congressional breakfasts/an author's lecture/luncheon at the Library of Congress and to view exhibits at the Smithsonian's National Museum of American History.", "\n\nFormer History Day participants continue to attest to its value in their college and career development. ", "For example, a participant, who now attends Princeton University, made a documentary for the New Jersey program, which can be viewed by clicking here.", "\n\nServidio said he's proud of NJTV's support of the Jefferson Awards, and admires the organization's efforts to put a spotlight on volunteers in the community while promoting community outreach, volunteerism and education.", "\n\n\"Serving the community as an organization and an individual is critical in today's society, and vital in keeping our communities thriving,\" he said. \"", "Spotlighting the good work that's being done throughout New Jersey through programs, like the Jefferson Awards, brings important awareness of all the good that's being done, and hopefully inspires others to do more in their communities.\"", "\n\nThe deadline to nominate someone for a 2017 Jefferson Award is Jan. 31 and categories include:\n\nVerizon Service Through STEM\n\nBD Health Care Individual\n\nBD Health Care Professional\n\nBD Paterson NJ Patriot\n\nPSEG Environmental Stewardship\n\nCFNJ Community Pillar\n\nNJTV Education\n\nYouth Volunteer Program\n\nAgainst All Odds\n\nEmergency Services\n\nFounders\n\nGood Neighbor\n\nLifetime Service\n\nService to Youth\n\nAmbassador\n\nExecutive Leadership\n\nCorporate Leadership\n\nYouth in Service\n\nFaith-Based\n\nVolunteer Leadership\n\nVolunteer Group\n\nDr. Martin Luther King Jr. Champion for Justice\n\nContributions from sponsors, such as PNC Bank, BD, Verizon, PSEG, CFNJ and NJTV, are directed to the Community Foundation of New Jersey. ", "The funding is split 25 percent to the Jefferson Awards recognition program expenses locally and nationally and 75 percent to the programming and communications outreach to promote volunteerism and public service in New Jersey -- which includes the Students in Action program, which impacts more than 5,000 high school and middle school students in New Jersey.", "\n\nStudents In Action educates young people by building a sense of community awareness and pride and motivating students to care about the world beyond their home and classroom. ", "It expands the students' awareness to the needs in their community and fosters the development of leadership and project management skills to be used in meeting those needs." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0.022388059701492536, 0, 0.00684931506849315, 0.022988505747126436, 0.01680672268907563, 0.01904761904761905, 0, 0.01904761904761905, 0.012269938650306749, 0, 0, 0.006535947712418301, 0.008583690987124463, 0, 0, 0.006896551724137931, 0, 0.010101010101010102, 0.006369426751592357, 0.005235602094240838, 0, 0.004651162790697674, 0.004608294930875576, 0.023668639053254437, 0.012987012987012988, 0, 0.006666666666666667, 0.009009009009009009, 0, 0.004219409282700422, 0.008391608391608392, 0.002777777777777778, 0, 0 ]
0.00686
5
[ "Doris Schachenhofer | Breaking through the barriers of the mind to achieve limitless success\n\nDoris embodies a presence, a clarity combined with kindness, caring and acceptance that gives people the ease and confidence to change anything. ", "She is an all-rounder when it comes to mentoring people: whether it is a single mother or the CEO of a large company. ", "As a mother of two, she has built up an independent global business and loves her crazy, moving and varied life and business.", "\n\nBeing You with Doris Schachenhofer\n\n#BOSSLADY DETAILS:\n\nName: Doris Schachenhofer\n\nCountry: Austria\n\nIndustry: Communication coach, Life and Business Mentor, Facilitator\n\nBusiness Name: Being You with Doris Schachenhofer\n\nFavorite Quote to live by:\n\n'“If you don´t doubt yourself, you can’t be controlled by others”\n\n1. ", "Please give us a bit of background on who you are and what you do? (", "what is your backstory/your business)\n\nI am a business and communication coach, life mentor and facilitator for several Access Consciousness® special programs, including Joy of Business. ", "I currently offer online workshops and consultations, serving clients all over the world. ", "Drawing upon my nine years in social work, I seek to break social paradigms around business, money and wealth creation.", "\n\nAfter completing my studies in social work in Vienna, I worked with children, adults, homeless people, delinquent youth and prisoners, and in education. ", "I started working at the age of 15 to earn my own money and realize my dreams. ", "For me, it did not matter what kind of work I did and how much I worked, as long as it was fun for me. ", "I love to interact, create and empower others.", "\n\nIn 2014, my life changed drastically and now I travel around the world, encouraging people to be more of themselves - in every area of life.", "\n\n2. ", "What are three business & life lessons you have learned throughout your journey?", "\n\nNever give up!", "\n\nThe moment before you think it isn’t going to work out, that is the moment to ask another question and take 2 more steps. ", "These are the moments that create something greater. ", "If you are willing to persevere and have faith in yourself.", "\n\nDon´t wait for others. ", "It will hold you back.", "\n\nBe willing to be judged and left by certain people in order to achieve success, to have the life and career that you know is possible. ", "You are not abandoning them or leaving them behind, it’s their choice.", "\n\nDon´t try to make other people understand you.", "\n\nInspire yourself and you will inspire others.", "\n\n3. ", "What advice can you give other entrepreneurs that is struggling to breakthrough the glass sealing in reaching their goals?", "\n\nDon´t look at the how, it’s unfathomable. ", "Look for opportunities and be willing to do and be whatever and whoever you need to be. ", "Be prepared to lose all or gain everything. ", "Do whatever it takes. ", "Most people struggle to break through because this concept goes far beyond their logical mindset. ", "Creating a business that breaks through the glass ceiling requires the willingness to choose to be out of control, out of definition and out of linearity and asking questions like…\n\nWhat else is possible that I have not considered or asked for yet?", "\n\n4. ", "When & how did your big shift take place?", "\n\n4 years ago I was stuck in my life. ", "I was a stay at home mum with almost no social contacts. ", "I was dedicated to being a good mother and this put me under huge pressure. ", "At that time I took life so seriously, I wanted to get it right but at the same time felt so conflicted, like I was not enough. ", "I felt misunderstood and so lost.", "\n\nWhy could I not be like other people, just living and being satisfied with what they had? ", "I found myself in a place of self-doubt and self-judgement. ", "I was angry and unhappy, not satisfied but at the same time keeping up the facade of ‘pretending’ everything was fine. ", "It was at this point that I started to question everything in my life. ", "What would I like to create? ", "What would I like my life to be like? ", "What would I enjoy?", "\n\nWhen I started asking these questions, everything changed. ", "All kinds of possibilities appeared and in a short amount of time my entire world was transformed and the joy of living returned.", "\n\n5. ", "What inspires and motivates you? ", "What wakes you up every morning, make you get the work done and do it all over again the next day?", "\n\nI am inspired by the beauty of life and living, the abundance and possibilities. ", "The gift of being alive and exploring new things every day. ", "I am motivated by seeing other people thrive and encouraging them to find the joy in living life at its fullest.", "\n\nEvery day there are endless possibilities. ", "The curiosity and the wonder of what every moment could bring are the reasons I wake up looking forward to every day. ", "Even if there is nothing that needs to be done, you can decide to fill the day with life bringing creativity. ", "It is your choice. ", "In my life nothing is routine, there is always more…more contentment, more excitement, more fun.", "\n\n6. ", "How do you differentiate yourself from your competitors? ", "What makes you unique?", "\n\nI don´t compare myself to others. ", "That is one of the greatest limitations we can put on ourselves. ", "I find other people a source of inspiration and innovation. ", "The way they live their lives or conduct their business can lead to a breakthrough in my own life. ", "I ask myself, “What motivates them to make the choices they making?” ", "and then ask myself, “Would that be a choice I would make? ", "Would it benefit my life, business or profit margin?”", "\n\nAsking questions allows me to bypass mental limitations, remove all judgement, rationalization and justification and opens up infinite possibilities. ", "If you don´t doubt yourself you can’t be controlled by others. ", "If you enjoy your career and keep thinking creatively, you will be successful.", "\n\nWhen you give up the need to be right, you achieve mental flexibility. ", "Being open-minded, constantly questioning “why?” ", "is so empowering. ", "This is the only way to break through mental blocks and the glass ceiling you set for yourself.", "\n\n7. ", "What do you think is the biggest trend we will see in 2019 within the entrepreneur space\n\nAsking questions is true empowerment, thinking you always have the answer is dis-empowering. ", "The true power is ‘Being You’, and not fitting into other people´s standards or realities.", "\n\nThe world is asking for benevolence, empowerment and leaders that live and operate from ‘Beingness’. ", "Leaders who are extraordinary with no limitations. ", "Entrepreneurs that embrace possibilities, that are true to themselves, devoid of judgement and fear. ", "I believe we will start seeing more of them in 2019.", "\n\n7. ", "Any other question you would like to add?", "\n\nWhat else is possible?", "\n\nWhat would it take for you to know, perceive, be and embrace your greatness?" ]
{ "pile_set_name": "Pile-CC" }
[ 0.008368200836820083, 0, 0, 0.018633540372670808, 0, 0.0053475935828877, 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, 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.000368
5
[ "'Partnership with parents'--a progressive pathway.", "\nThis paper presents the problems associated with the implementation of a new model of service delivery involving parent programmes. ", "Factors affecting the cost-effectiveness included the influence of the learning curve. ", "Change, innovation and adoption will be discussed in relation to the new model of service delivery. ", "The correlation with years of experience will also be considered." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0.02, 0, 0, 0, 0 ]
0.004
5
[ "Tippmann 98 custom\n\nThe Tippmann 98 Custom, also called the 98C, 98 Custom, and simply the 98, is an open-bolt inline blowback marker designed especially for the sport of paintball. ", "It is manufactured by the pneumatics company Tippmann. ", "It is their most sold marker to date. ", "In addition, Tippmann will soon be releasing their new Tippmann 99 custom in late 2019: this product claims to be the fastest shooting and most reliably fed Tippmann product to date. ", "The code name for this marker is the c12x.", "\n\nFeatures and specifications\n Semi Automatic\n\nReferences\n\nExternal links\n Tippmann 98 Custom Official Site\n\nCategory:Paintball markers" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.005494505494505495, 0.01818181818181818, 0, 0.01639344262295082, 0, 0 ]
0.006678
5
[ "This invention relates to a bucket and, more particularly, to an improved bucket/container designed for one-handed transport and manipulation.", "\nThe common bucket is well known in the art for transporting materials, particularly fluids, between locations. ", "One problem with past buckets is that the dispensation of the materials therefrom is awkward and in some cases difficult particularly if the user cannot use both hands for manipulation of the bucket at the dispensation site.", "\nIn response thereto I have invented an improved container, which can take the form of a bucket or other vessel, having first and second handle assemblies thereon. ", "Each handle assembly is pivotally mounted to opposed sides of the bucket, the handles presenting spaced-apart central grips. ", "The pivot mounting points of each handle assembly are spaced apart in relative vertical and horizontal displacements. ", "For transport of the bucket the grip of the second handle assembly is grasped. ", "For pouring the contents from the bucket both first and second grips are grasped and urged one towards the other. ", "Upon such grip movement the bucket is pivoted around the pivotal mounting points of the handle assemblies such as to move the bucket between a first transport position and a second position for dispensing the material contents therefrom. ", "Accordingly, only one hand need be used for transport and manipulation of the bucket. ", "The handle design is adaptable for use with various vessels, containers and the like.", "\nIt is therefore a general object of this invention to provide a container designed for one-handed transport and dispensation of contents therefrom.", "\nA still further object of this invention is to provide container, as aforesaid, which is adaptable for use in various forms, including buckets, paint material containers, vessels and the like.", "\nA further object of this invention is to provide a container, as aforesaid, presenting first and second handle assemblies, each assembly having spaced-apart pivot points mounted on the opposed sides of the container.", "\nAnother object of this invention is to provide a container, as aforesaid, wherein the first and second handle assemblies present central grips displaced one from the other in a container transport position.", "\nStill a further object of this invention is to provide a container, as aforesaid, having structure coupling the grips of the handles in back and forth movement therebetween.", "\nAnother object of this invention is to provide a container, as aforesaid, the first and second grips being urged one towards the other so as to pivot the bucket from a first transport position towards a second position for dispensing the contents therefrom.", "\nA further object of this invention is to provide handle assemblies, as aforesaid, which are adaptable for use with various containers.", "\nOther objects and advantages of this invention will become apparent from the following description taken in connection with the accompanying drawings, wherein is set forth by way of illustration and example, a preferred embodiment of this invention." ]
{ "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
5
[ "// -------------------------------------------------------------------------\n// Copyright (C) 2012 BMW Car IT GmbH\n// -------------------------------------------------------------------------\n// This Source Code Form is subject to the terms of the Mozilla Public\n// License, v. 2.0. ", "If a copy of the MPL was not distributed with this\n// file, You can obtain one at https://mozilla.org/MPL/2.0/.\n// -------------------------------------------------------------------------\n\n#include \"Animation/AnimationStateChangeCollector.h\"\n#include <assert.h>\n\nnamespace ramses_internal\n{\n void AnimationStateChangeCollector::onAnimationStarted(AnimationHandle handle)\n {\n assert(!contains_c(m_startedAnimations, handle));\n AnimationHandleVector::iterator iter = find_c(m_finishedAnimations, handle);\n if (iter !", "= m_finishedAnimations.end())\n {\n m_finishedAnimations.erase(iter);\n }\n\n m_startedAnimations.push_back(handle);\n }\n\n void AnimationStateChangeCollector::onAnimationFinished(AnimationHandle handle)\n {\n assert(!contains_c(m_finishedAnimations, handle));\n AnimationHandleVector::iterator iter = find_c(m_startedAnimations, handle);\n if (iter !", "= m_startedAnimations.end())\n {\n m_startedAnimations.erase(iter);\n }\n\n m_finishedAnimations.push_back(handle);\n }\n\n const AnimationHandleVector& AnimationStateChangeCollector::getCollectedStartedAnimations() const\n {\n return m_startedAnimations;\n }\n\n const AnimationHandleVector& AnimationStateChangeCollector::getCollectedFinishedAnimations() const\n {\n return m_finishedAnimations;\n }\n\n void AnimationStateChangeCollector::resetCollections()\n {\n m_startedAnimations.clear();\n m_finishedAnimations.clear();\n }\n}\n" ]
{ "pile_set_name": "Github" }
[ 0.003472222222222222, 0.003676470588235294, 0, 0.0033222591362126247 ]
0.002618
5
[ "Greysouthen\n\nGreysouthen (Pronounced: \"Grey-soon\") is a village and civil parish between the towns of Workington and Cockermouth, in Cumbria, North West England. ", "Historically part of Cumberland, near the Lake District National Park in England. ", "The village has an historic association with coal mining.", "\n\nHistory\nJohn Marius Wilson's 1870 Imperial Gazetteer described Greysouthen as a settlement of 136 houses, an agricultural implement factory, a Quakers' chapel, a Wesleyan chapel and a flex mill. ", "In 1901 Greysouthen civil parish had an area of 1,558 acres\n\nGovernance\nGreysouthen, is part of the Workington constituency of the UK parliament. ", "The current Member of Parliament is Sue Hayman, a member of the Labour Party. ", "The Labour Party has won the seat in every general election since 1979; the Conservative Party has only been elected once in Workington since the Second World War: in the 1976 Workington by-election.", "\n\nFor the European Parliament residents in Greysouthen vote to elect MEP's for the North West England constituency.", "\n\nFor Local Government purposes it is in the Dalton Ward of Allerdale Borough Council and the Cockermouth South Division of Cumbria County Council.", "\n\nGreysouthen has its own Parish Council; Greysouthen Parish Council.", "\n\nMining\nEvidence of settlers digging for coal across west Cumbria can be dated back to the 13th century. ", "This was the source of developing tools and weaponry in order to survive. ", "Evidence of mining for coal within the Greysouthen area can be seen from the late 16th century.", "\n\nThe largest portion of Greysouthen's Coal lease was sold to William Walker & Company in 1787. ", "The business continued to remain profitable for the next 80 years. ", "In 1800 another firm took claim to a portion of the Greysouthen coal extraction industry. ", "Wilson & Company invested in another Colliery within Greysouthen. ", "The two colliery's distributed coal tokens which represented the success of the mines. ", "Between these two mines a feud broke out over mine space. ", "Wilson & Co was fined £16,000 damages over illegally mining William Walker & Company's land. ", "This was a highly prolific case within the north of England with much public interest.", "\n\nBy the start of the 19th century Greysouthen's thriving mining industry had become the sole employer. ", "To house miners, small rows of cottages were built within the town. ", "In 1823 Joseph Birbeck and J.W. Flecter began mining in Greysouthen. ", "A tax value of £20 was introduced for the annual lease of 400 tons of coal. ", "For every ton mined over this, an additional tax of 1 shilling was applied.", "\n\nThe Melgramfitz pit was closed in 1886, which led to the end of the Greysouthen as a coal mining community.", "\n\nGreysouthen's 19th century miners were known for their ale consumption, which magistrates felt was their prime concern.", "\n\nCommunity\nGreysouthen is surrounded by farmland through which two streams run. ", "The village is divided into two by the local residents – \"up the went\" and \"down the went\". ", "The 'went' is a hill at the centre of Greysouthen.", "\n\nThe village's few services include a village hall which is no longer used as a Post Office on Monday afternoons being replaced in 2015 by a mobile van, and Iyengar yoga classes on Thursday evenings, taught by Jo Cook. ", "St Josephs Roman Catholic Church is approximately from the centre of the village. ", "Greysouthen has one large playing field with an adventure playground, football pitch, and a garden commemorating the Queen's Silver Jubilee.", "\n\nGreysouthen no longer receives a bus service about ten times daily, with connections to Workington and Cockermouth. ", "The service was subsidised by the county council and operated by minor bus companies. ", "It ended in 2015.", "\n\nThe village is in the catchment area for Paddle Primary School in the neighbouring village of Eaglesfield. ", "The nearest secondary school is at Cockermouth, and is Specialist School for Mathematics, Computing and Languages, and teaches over 1,400 students.", "\n\nThe parish council has been supporting Cumbrian rural communities over the introduction of superfast broadband and mobile coverage. ", "Superfast broadband was activated in the village in January 2015.", "\n\nEcology\nThere are 7 beaches within of Greysouthen, Siddick is the closest at about ; the second closest is Maryport then Workington, Allonby South, Allonby, Parton and Whitehaven.", "\n\nThe Greysouthen area supports a variety of bird species including northern lapwings, common snipes, Eurasian curlews, common woodpigeons, buzzards, Eurasian oystercatchers, common pheasants, Eurasian sparrowhawks, and quail. ", "Red squirrels are also found. ", "Orange tips, red admirals, and painted lady butterflies occur within the area.", "\n\nLocally growing west Cumbrian wild plants include the greater butterfly orchid, early purple orchid and yellow rattle.", "\n\nPopulation\n\nThe population of Greysouthen between 1880 and 1900 fell by about 210 people in a 20-year period, this a period after the closure of the local mines. ", "The sphere of influence and pull factors keeping residents in the village must have been removed.", "\nIt is most likely many migrated in search of work.", "\nThe population increased by about 35 to approximately 525 in 1910, before steadily decreasing to about 500 in 1960. ", " The population of Greysouthen has remained between 500 and 700 since 1960.", "\n\nSee also\n\nListed buildings in Greysouthen\n\nReferences\n\nExternal links\n\nCategory:Villages in Cumbria\nCategory:Allerdale\nCategory:Civil parishes in Cumbria" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.018518518518518517, 0, 0, 0.02030456852791878, 0.00684931506849315, 0.038461538461538464, 0.01, 0.017391304347826087, 0.013605442176870748, 0.028985507246376812, 0, 0, 0, 0.010416666666666666, 0, 0, 0.030303030303030304, 0, 0, 0.021505376344086023, 0, 0.009615384615384616, 0, 0.028985507246376812, 0, 0, 0.009174311926605505, 0, 0, 0, 0, 0.00909090909090909, 0.012048192771084338, 0, 0.01694915254237288, 0, 0, 0.01834862385321101, 0.013605442176870748, 0, 0, 0.02197802197802198, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.012903225806451613 ]
0.007097
5
[ "i wasn't born in a barn, but i got there as fast as i could.", "\n\nFrankie and I went out and dabbled in the eq/hunter rings again! ", "Short version: tons of fun, continuously learning how to adjust to this new way of going, and Frankie was literal perfection.", "\n\nAre you at all surprised by that last bit??", "\n\nAnywho, we opted to stick in just the derby/eq rings again for this show since it worked so well last time. ", "I think with some practice, Frankie will be able to more easily transition between the jumper ring and the others, but for now it’s super helpful for both of us to “drill” a bit to really figure out what we need to do.", "\n\nHe shipped into the showgrounds on Tuesday with a whole bunch of other ponies, by all reports settled in like a gentleman (aka naps. ", "Immediate naps). ", "Our barn had 11 or 12 horses at this show, so we staggered shipping in over the course of a few days! ", "Kinda crazy, I think pretty much everyone that shows went to this particular one. ", "A much bigger group than we usually have, and it was fantastic!", "\n\nI opted to have Trainer take Francis around one of the 3′ hunter divisions (sans U/S) on Wednesday, just so he could see the big ring and get the measure of it. ", "I would do it myself if I didn’t have this pesky office job getting in the way, but I wanted him to go around that ring before the derby on Saturday. ", "He absolutely LOVES my trainer – it’s seriously adorable – and was a very sweet boy for her. ", "With 50+ in the class there’s zero chance that my mobile sewing machine would place against actual hunter types, but I’m always pleased when he shows his consistency and good nature. ", "I do really think we could do well in the AA or AO hunters, where manners and suitability are considered!", "\n\nHe then got a light day on Thursday – no competing, just stretching his legs a bit.", "\n\nFriday I was FINALLY able to get away from work, and got to do our Ariat Adult Medal class! ", "First thing in the morning, bright and early. ", "Trainer did hop on him for a quick hack early in the morning – the temp had dropped down to the low 50s overnight and she wanted to make sure he was feeling mannerly. ", "In her words: “I forgot it was Frankie. ", "He’s obviously fine.”", "\n\nI have video of this class from two different angles, funny enough! ", "I’ll include them both here, along with the course map.", "\n\nOverall thoughts: I literally rode him to nothing at that first jump. ", "I was just happily sitting up there and did. ", "zero. ", "things.", "\n\nFRANCIS TAKE THE WHEEL WE’RE GOIN FOR THE LONG ONE.", "\n\nThen I majorly overcorrected and chased him to jump 2. ", "Because clearly that’s the right move. ", "But after that I was really happy with the rest of the course! ", "I didn’t get him straight enough after jump 4, so we had a bit of an unbalanced late change (and you can see me wrestling with him a little bit as he goes WEEEEEE and stops paying attention). ", "But overall he was responsive, polite, and handled himself really well in such a big ring.", "\n\nLook at how happy he is. ", "Just look at him.", "Ignore my questionable position here and just admire the scenery and cute horse.", "\n\nIt was pretty cool being done by 8:30am, and I got to spend the rest of the day cheering on my barnmates, loving on Frankie, and enjoying the gorgeousness of these showgrounds.", "\n\nThis is God’s country\n\nThen Saturday was kinda hysterical in its timing. ", "The Jr/Am derby started at 7:30a in the main hunter ring, and I was third in the order. ", "Then the VHSA Flat class started at 8a in Hunter 2, followed immediately by the VHSA medal class. ", "This meant going from one ring to another very quickly, including a costume change for both me (getting rid of shad and stock tie and donning my hunt coat) and Francis (taking off his martingale and adding his boots). ", "This led to a pretty hysterical revolving door of show coats, martingales, and boots. ", "But we figured it all out!", "\n\nIt’s really a shame that Frankie gets so keyed up before we go in the ring. ", "You can just see it in his expression.", "\n\nLucky me – I have video of our derby trip too!", "\n\nThoughts on this: I really need to get my act together when the first jump is a long approach oxer away from home, apparently. ", "But honestly, I couldn’t be more thrilled with how he went around. ", "He was super adjustable, flowed well, carried a nice steady rhythm without needing too much from me, and was a thoroughly enjoyable ride.", "\n\nDoes he have the tightest form? ", "No way. ", "Does he have the sweetest expression? ", "For sure.", "Seriously I know he’s basically cantering over this but his little ears and little nose are just the cutest I’ve ever seen.", "\n\nI was extremely pleased with our base score of 72, with the two high options giving us a score of 74. ", "We held on to a top 12 spot for much longer than I thought we would before the cutoff for the handy rose above a 74! ", "With almost 60 in the class, there were some truly gorgeous rounds that got some very high scores. ", "Overall, I’m delighted. ", "We’re never going to be truly competitive in that ring with Frankie’s movement and his lack of desire to try very hard at that height, but we sure are having fun learning how to show ourselves off to best advantage.", "\n\nTook the high option here, and Francisco was not particularly bothered\n\nWe then did our costume change and headed over for our equitation on the flat class! ", "Nothing too crazy here – they had us sit the trot for a while, and show a lengthening at the trot (we may have broken into a canter for a stride going to the right oops). ", "I definitely need to polish myself back up, but was able to snag an 8th place and a ribbon! ", "Ain’t mad about that.", "\n\nWe then had our VHSA adult medal class, which was super fun. ", "Frankie gave me all the cool inside turns, sat down and waited to the base for me, and didn’t even mind when I took him on a track that meant I had to duck under the branches of a tree. ", "He was definitely getting tired at this point though, and I had to really kick hard for the lead changes. ", "I think I should get bonus points for literally carrying him through those because homeboy was not offering them up in the least.", "\n\nI thought it was a solid, workmanlike trip but nothing stellar. ", "I was very surprised to be called back to test in 4th (this class has the option to test the top 4)! ", "The test was pretty simple: canter directly to an outside single, rollback to an oxer, rollback to a trot fence, rollback to a long approach oxer towards home, then show the sitting trot to the in-gate.", "\n\nI am a noodle brain and completely forgot the sit trot to the gate, but other than that it was a great test! ", "I think if I had remembered that dang trot, we may even have moved up. ", "But considering this was my first time having to test in a solid 12 years, I’m really very happy with it.", "\n\nVery proud of our ribbon!", "\n\nI then got to spend the rest of the day cheering on friends and relaxing again. ", "It was lovely.", "\n\nI wanted to take his braids out, he wanted to nap. ", "We compromised and did both at the same time. ", "He kept trying to lay his head on my legs for snugs.", "\n\nThoughts on the show as a whole: I own a unicorn. ", "He truly is incredible. ", "I also think that with some practice and polish on my part, we’re going to be really strong competitors in the adult equitation. ", "Trainer agreed, and mentioned that Frankie looks super handy and capable in that ring, and it’s something that he can excel at with the lifestyle he’s leading right now. ", "He’s obviously fantastic in the jumper ring, but that does require us to keep him more conditioned and fired up, which is something that I don’t really have the capacity for right now. ", "He’s really fitting into the equitation very naturally, and it’s a ring that’s very familiar to me as well.", "\n\nI don’t know when our next show will be – I’m travelling a lot in July and August – but I think we’ve found a solid groove to work in.", "\n\nAs always, feeling so grateful for an amazing barn family, an amazing group of horses, incredibly supportive and encouraging trainers, and for my darling Francis. ", "Every day gets better and better with him\n\nI love that he’s game for absolutely anything! ", "And I mean, if you wanted to keep playing in the derby ring, he would definitely be competitive if the jumps were bigger. ", "He just thinks the 3′ is too easy! ", "Congrats on a great show!", "\n\nThank you!!", "\nNow that he’s settled into the new rhythms, I’d love to do some of the higher derbies. ", "The high options in this one were only 3’3″ and you can see that he was still super nonchalant, so I think the 3’6″ could potentially be cute for him once we’ve gotten some more practice!", "\n\nI maintain that the world would be a better place if everyone had a Francis.", "\nIsn’t that ring just gorgeous?! ", "The other ring we rode in had some big trees too, but it wasn’t quite as enormous as the main ring. ", "It’s so picturesque ❤" ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0.008, 0, 0, 0, 0, 0, 0, 0, 0, 0.018404907975460124, 0, 0, 0, 0.009523809523809525, 0, 0.010638297872340425, 0, 0.005988023952095809, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.005208333333333333, 0, 0, 0.058823529411764705, 0, 0, 0, 0.011363636363636364, 0.01020408163265306, 0.0045871559633027525, 0, 0, 0.01282051282051282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.004651162790697674, 0.006289308176100629, 0, 0, 0, 0.015873015873015872, 0.005376344086021506, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0058823529411764705, 0, 0, 0, 0.006060606060606061, 0, 0, 0, 0, 0, 0, 0, 0.01282051282051282, 0, 0, 0 ]
0.002147
5
[ "The biomechanical effects of dynamic external rotation on rotator cuff repair compared to testing with the humerus fixed.", "\nBiomechanical testing without humeral motion is a standard method for evaluating rotator cuff repair constructs. ", "This cannot elucidate the effects of dynamic external rotation on the repair, which is a common postoperative motion. ", "Biomechanical properties and gap formation of rotator cuff repairs will be different when dynamic external rotation is allowed to occur during loading. ", "Controlled laboratory study. ", "In 6 matched pairs of human cadaveric shoulders, a commonly used single-row rotator cuff repair was performed. ", "In 6 shoulders, a materials testing machine and a custom testing apparatus that permits cyclic rotation (0 degrees -30 degrees ) were employed (group 1). ", "In contralateral shoulders, the apparatus was fixed to prevent humeral rotation (group 2). ", "All repairs were cyclically loaded from 0 to 60 N at a displacement rate of 1 mm/s for 30 cycles. ", "The constructs were then loaded to failure. ", "Repair strength, gap formation, and strain were compared between groups. ", "Cyclic loading revealed no difference in linear stiffness between testing conditions. ", "Hysteresis was significantly greater when dynamic external rotation was allowed to occur. ", "With load to failure, there were no differences in yield or ultimate load. ", "Anterior tendon gap formation was greater at end rotation (30 degrees of humeral external rotation) and at yield load, and strain on the posterior tendon was less with dynamic external rotation. ", "With dynamic external rotation, gap formation and tendon strain were significantly greater in the anterior region of the supraspinatus tendon compared with the posterior region. ", "External rotation using postoperative physiologic loads affects gap formation and tendon strain between anterior and posterior supraspinatus tendon regions. ", "Previous testing models without humeral rotation may underestimate gap formation and anterior tendon strain and overestimate posterior tendon strain. ", "Understanding regional differences with respect to these variables, depending on quality of repair, may provide the surgeon a framework from which to prescribe guidelines for postoperative rehabilitation." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0
5
[ "/*\n * ACFE General\n */\npre, code, kbd, samp{\n font-family: Menlo, Monaco, Consolas, \"Courier New\", monospace;\n font-size: 1em;\n}\n\npre{\n display: block;\n padding: 9.5px;\n margin: 0;\n line-height: 1.42857143;\n color: #333;\n word-break: break-all;\n word-wrap: break-word;\n background-color: #f9f9f9;\n border: 1px solid #ccc;\n border-radius: 1px;\n white-space: pre-wrap;\n overflow: auto;\n}\n\ncode{\n -webkit-user-select: all;\n -moz-user-select: all;\n -ms-user-select: all;\n user-select: all;\n}\n\npre > code{\n -webkit-user-select: inherit;\n -moz-user-select: inherit;\n -ms-user-select: inherit;\n user-select: inherit;\n padding:0;\n margin:0;\n background:none;\n font-size: 1em;\n display:block;\n}\n\n.pre-codemirror > .CodeMirror,\n.code-codemirror > .CodeMirror{\n border:1px solid #ccc;\n height:auto;\n width:auto;\n background:#F9F9F9;\n padding:9px 6px;\n}\n\n.code-codemirror{\n display:inline;\n vertical-align:middle;\n}\n\n.code-codemirror > .CodeMirror{\n display:inline-block;\n padding:0;\n}\n\n.pre-codemirror > .CodeMirror .CodeMirror-selected,\n.code-codemirror > .CodeMirror .CodeMirror-selected{\n background:#ddd !", "important;\n}\n\n.pre-codemirror > .CodeMirror .CodeMirror-lines,\n.code-codemirror > .CodeMirror .CodeMirror-lines{\n padding:0;\n}\n\n/*\n * Postbox seamless\n */\n.acf-postbox.seamless > .inside > .acf-field{\n padding:15px 12px;\n}\n\n.acf-flexible-content .layout.ui-sortable-helper:first-child + .layout.ui-sortable-placeholder{\n margin-top:0;\n}\n\n/* \n * ACFE: Postbox\n */\n.acfe-postbox.acfe-postbox-no-handle h2.hndle{\n cursor:initial;\n}\n\n.acfe-postbox.acfe-postbox-no-handle .handlediv{\n display:none;\n}\n\n/*\n * ACFE: Postbox-top\n */\n.acfe-postbox-top>.inside {\n position: relative\n}\n\n.acfe-postbox-top>.inside.-border {\n border: #ccd0d4 solid 1px;\n background: #fff\n}\n\n.acfe-postbox-top>.inside>.acf-field {\n position: relative;\n margin: 0;\n padding: 15px 12px;\n border-top: #EEEEEE solid 1px\n}\n\n.acfe-postbox-top>.inside>.acf-field:first-child {\n border-top: none;\n margin-top: 0\n}\n\n/*\n * ACFE: Postbox-left\n */\n.acfe-postbox-left>.inside {\n position: relative\n}\n\n.acfe-postbox-left>.inside:after {\n display: block;\n clear: both;\n content: \"\"\n}\n\n.acfe-postbox-left>.inside.-border {\n border: #ccd0d4 solid 1px;\n background: #fff\n}\n\n.acfe-postbox-left>.inside>.acf-field {\n position: relative;\n margin: 0;\n padding: 15px 12px;\n border-top: #EEEEEE solid 1px\n}\n\n.acfe-postbox-left>.inside>.acf-field:first-child {\n border-top: none;\n margin-top: 0\n}\n\n.acfe-postbox-left>.inside.-clear>.acf-field {\n border: none;\n padding: 0;\n margin: 15px 0\n}\n\n.acfe-postbox-left>.inside>.acf-field {\n padding: 15px 0\n}\n\n.acfe-postbox-left>.inside>.acf-field:after {\n display: block;\n clear: both;\n content: \"\"\n}\n\n.acfe-postbox-left>.inside>.acf-field:before {\n content: \"\";\n display: block;\n position: absolute;\n z-index: 0;\n background: #F9F9F9;\n border-color: #E1E1E1;\n border-style: solid;\n border-width: 0 1px 0 0;\n top: 0;\n bottom: 0;\n left: 0;\n width: 20%\n}\n\n.acfe-postbox-left>.inside>.acf-field[data-width] {\n float: none;\n width: auto !", "important;\n border-left-width: 0 !", "important;\n border-right-width: 0 !", "important\n}\n\n.acfe-postbox-left>.inside>.acf-field>.acf-label {\n float: left;\n width: 20%;\n margin: 0;\n padding: 0 12px\n}\n\n.acfe-postbox-left>.inside>.acf-field>.acf-input {\n float: left;\n width: 80%;\n margin: 0;\n padding: 0 12px\n}\n\nhtml[dir=\"rtl\"] .acfe-postbox-left>.inside>.acf-field:before {\n border-width: 0 0 0 1px;\n left: auto;\n right: 0\n}\n\nhtml[dir=\"rtl\"] .acfe-postbox-left>.inside>.acf-field>.acf-label {\n float: right\n}\n\nhtml[dir=\"rtl\"] .acfe-postbox-left>.inside>.acf-field>.acf-input {\n float: right\n}\n\n#side-sortables .acfe-postbox-left>.inside>.acf-field:before {\n display: none\n}\n\n#side-sortables .acfe-postbox-left>.inside>.acf-field>.acf-label {\n width: 100%;\n margin-bottom: 10px\n}\n\n#side-sortables .acfe-postbox-left>.inside>.acf-field>.acf-input {\n width: 100%\n}\n\n@media screen and (max-width: 640px) {\n .acfe-postbox-left>.inside>.acf-field:before {\n display: none\n }\n .acfe-postbox-left>.inside>.acf-field>.acf-label {\n width: 100%;\n margin-bottom: 10px\n }\n .acfe-postbox-left>.inside>.acf-field>.acf-input {\n width: 100%\n }\n}\n\n/* \n * ACFE: Dynamic Post Type 'Setting' Button\n */\n.wrap .acfe-dpt-admin-config,\n.wrap .acfe-dpt-admin-config:active,\n.wrap .acfe-dt-admin-config,\n.wrap .acfe-dt-admin-config:active,\n.wrap .acfe-dop-admin-config,\n.wrap .acfe-dop-admin-config:active{\n padding-left:4px;\n padding-right:4px;\n}\n\n.wrap .acfe-dpt-admin-config span,\n.wrap .acfe-dt-admin-config span,\n.wrap .acfe-dop-admin-config span{\n font-size: 16px;\n vertical-align: text-top;\n height: 15px;\n width: 19px;\n line-height: 19px;\n}\n\n.wrap .acfe-dop-admin-config{\n display: inline-block;\n}\n\n\n/* \n * ACFE: Dynamic Post Type\n */\nbody.post-type-acfe-dpt.post-new-php #misc-publishing-actions,\nbody.post-type-acfe-dpt.post-new-php #minor-publishing-actions,\nbody.post-type-acfe-dpt .misc-pub-post-status,\nbody.post-type-acfe-dpt .misc-pub-visibility{\n display:none;\n}\n\nbody.post-type-acfe-dpt.post-new-php #major-publishing-actions{\n border-top:0;\n}\n\n/* \n * ACFE: Dynamic Taxonomy\n */\nbody.post-type-acfe-dt.post-new-php #misc-publishing-actions,\nbody.post-type-acfe-dt.post-new-php #minor-publishing-actions,\nbody.post-type-acfe-dt .misc-pub-post-status,\nbody.post-type-acfe-dt .misc-pub-visibility{\n display:none;\n}\n\nbody.post-type-acfe-dt.post-new-php #major-publishing-actions{\n border-top:0;\n}\n\n/* \n * ACFE: Dynamic Options Page\n */\nbody.post-type-acfe-dop.post-new-php #misc-publishing-actions,\nbody.post-type-acfe-dop.post-new-php #minor-publishing-actions,\nbody.post-type-acfe-dop .misc-pub-post-status,\nbody.post-type-acfe-dop .misc-pub-visibility{\n display:none;\n}\n\nbody.post-type-acfe-dop.post-new-php #major-publishing-actions{\n border-top:0;\n}\n\n/* \n * ACFE: Dynamic Block Type\n */\nbody.post-type-acfe-dbt.post-new-php #misc-publishing-actions,\nbody.post-type-acfe-dbt.post-new-php #minor-publishing-actions,\nbody.post-type-acfe-dbt .misc-pub-post-status,\nbody.post-type-acfe-dbt .misc-pub-visibility{\n display:none;\n}\n\nbody.post-type-acfe-dbt.post-new-php #major-publishing-actions{\n border-top:0;\n}\n\n/* \n * ACFE: Dynamic Forms\n */\nbody.post-type-acfe-form.post-new-php #misc-publishing-actions,\nbody.post-type-acfe-form.post-new-php #minor-publishing-actions,\nbody.post-type-acfe-form .misc-pub-post-status,\nbody.post-type-acfe-form .misc-pub-visibility{\n display:none;\n}\n\nbody.post-type-acfe-form.post-new-php #major-publishing-actions{\n border-top:0;\n}\n\n/* \n * ACFE: Author Label\n */\n.acf-field.acf-field-acfe-author > .acf-label{\n display:none;\n}\n\n/* \n * Gutenberg: Fix metaboxes\n */\n.edit-post-layout__metaboxes:not(:empty){\n background:#f3f4f5;\n padding:10px 10px 0 10px !", "important;\n}\n\n.edit-post-layout__metaboxes .edit-post-meta-boxes-area .postbox{\n margin-bottom:10px;\n border:1px solid #E1E1E1;\n}\n\n.edit-post-layout__metaboxes .edit-post-meta-boxes-area .postbox > .inside{\n border-bottom:0;\n}\n\n/*\n * ACF Tools\n */\n#acf-admin-tool-acfe_tool_dbt_export ul,\n#acf-admin-tool-acfe_tool_dpt_export ul,\n#acf-admin-tool-acfe_tool_dt_export ul,\n#acf-admin-tool-acfe_tool_form_export ul{\n column-width: 200px;\n}\n\n.acf-meta-box-wrap.-grid #acf-admin-tool-acfe-fg-local{\n display:none;\n}\n\n/*\n * ACFE WP Options\n */\n.settings_page_acfe-options .column-option_id{\n width:65px;\n}\n\n.settings_page_acfe-options .column-option_name{\n width:435px;\n}\n\n.settings_page_acfe-options .column-autoload{\n width:100px;\n text-align:center;\n}\n\n/*\n * ACFE Form\n */\n.acf-field[data-name=\"acfe_form_post_save_post_title_custom\"],\n.acf-field[data-name=\"acfe_form_post_save_post_name_custom\"],\n.acf-field[data-name=\"acfe_form_post_save_post_content_custom\"],\n\n.acf-field[data-name=\"acfe_form_term_save_name_custom\"],\n.acf-field[data-name=\"acfe_form_term_save_slug_custom\"],\n.acf-field[data-name=\"acfe_form_term_save_description_custom\"],\n\n.acf-field[data-name=\"acfe_form_user_save_email_custom\"],\n.acf-field[data-name=\"acfe_form_user_save_username_custom\"],\n.acf-field[data-name=\"acfe_form_user_save_password_custom\"],\n.acf-field[data-name=\"acfe_form_user_save_first_name_custom\"],\n.acf-field[data-name=\"acfe_form_user_save_last_name_custom\"],\n.acf-field[data-name=\"acfe_form_user_save_nickname_custom\"],\n.acf-field[data-name=\"acfe_form_user_save_display_name_custom\"],\n.acf-field[data-name=\"acfe_form_user_save_website_custom\"],\n.acf-field[data-name=\"acfe_form_user_save_description_custom\"]{\n border-top:0;\n padding-top:0;\n}\n\n.acf-field.acf-field-acfe-form-attributes > .acf-input > .acf-fields > .acf-field{\n border-left-width:0;\n}\n\n.acf-field.acf-field-acfe-form-fields-attributes > .acf-input > .acf-fields > .acf-field{\n border-left-width:0;\n}\n\n.acf-field-repeater.acf-field-acfe-form-email-files > .acf-input > .acf-repeater > .acf-actions,\n.acf-field-repeater.acf-field-acfe-form-email-files-static > .acf-input > .acf-repeater > .acf-actions{\n text-align:left;\n}\n/*\n.acf-field[data-name=\"acfe_form_actions\"] > .acf-label{\n display:none;\n}\n\n.acf-field[data-name=\"acfe_form_actions\"] > .acf-input{\n width:100% !", "important;\n}\n\n.acf-field[data-name=\"acfe_form_actions\"]:before{\n background:none !", "important;\n border:0 !", "important;\n}*/\n\n/*\n * ACFE Dev Mode\n */\n.postbox#acfe-wp-custom-fields > .inside,\n.postbox#acfe-acf-custom-fields > .inside{\n padding:0;\n margin:0;\n}\n\n.postbox#acfe-wp-custom-fields + .tablenav,\n.postbox#acfe-acf-custom-fields + .tablenav{\n padding-top:0;\n margin-top:-8px;\n}\n\n.postbox#acfe-wp-custom-fields em,\n.postbox#acfe-acf-custom-fields em{\n color:#aaa;\n}\n\n.acfe_dev_meta_count{\n background: #72777c;\n padding: 1px 5px;\n border-radius: 4px;\n color: #fff;\n margin-left: 7px;\n font-size: 12px;\n margin-right:auto;\n}\n\n/* \n * Select2: WP 5.2 Fix\n */\nbody:not(.acf-admin-5-3) .acf-field .select2-container .select2-selection{\n border-color: #dfdfdf !", "important;\n border-radius:0 !", "important;\n}\n\nbody:not(.acf-admin-5-3) .acf-field .select2-container .select2-selection__choice{\n border-color: #dfdfdf !", "important;\n border-radius:0 !", "important;\n}\n\nbody:not(.acf-admin-5-3) .acf-field .select2-dropdown{\n border-color: #dfdfdf !", "important;\n border-radius:0 !", "important;\n}\n\nbody:not(.acf-admin-5-3) .acf-field .select2-container .select2-search--inline .select2-search__field{\n margin-top:0px !", "important;\n}\n\n/* Select2: Single */\n.acf-field .select2-container .select2-selection--single{\n\tborder-radius:3px !", "important;\n height:30px !", "important;\n outline:none;\n}\n\n.acf-field .select2-container:focus .select2-selection--single,\n.acf-field .select2-container.select2-container--open .select2-selection--single{\n border-color: #007cba !", "important;\n color: #016087 !", "important;\n box-shadow: 0 0 0 1px #007cba !", "important;\n}\n\n.acf-field .select2-container .select2-selection--single .select2-selection__rendered{\n font-size:14px;\n height:28px;\n line-height: 27px !", "important;\n padding-right:23px !", "important;\n}\n\n.acf-field .select2-container .select2-selection--single .select2-selection__clear{\n\tline-height:26px;\n height:28px;\n font-size:16px;\n}\n\n.acf-field .select2-container--default .select2-selection--single .select2-selection__arrow{\n height: 28px !", "important;\n}\n\n.acf-field .select2-container--default .select2-selection--single .select2-selection__arrow b{\n background: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E') no-repeat;\n\tbackground-size: 16px 16px;\n border:0 !", "important;\n width:16px !", "important;\n height:16px !", "important;\n margin-left: -11px !", "important;\n margin-top: -7px !", "important;\n}\n\n.acf-field .select2-container .select2-search--inline .select2-search__field{\n margin-top:4px !", "important;\n font-size:14px !", "important;\n padding-left: 2px !", "important;\n}\n\n/* Select2: Multiple */\n.acf-field .select2-container .select2-selection--multiple{\n min-height: 30px !", "important;\n line-height:1;\n border-radius:3px !", "important;\n}\n\n.acf-field .select2-container--default .select2-selection--multiple .select2-selection__rendered{\n padding:0 2px !", "important;\n}\n\n.acf-field .select2-container--default .select2-selection--multiple .select2-selection__choice{\n margin-right:2px !", "important;\n margin-top:2px !", "important;\n line-height:1.6;\n border-radius:3px !", "important;\n font-size:14px;\n}\n\n.acf-field .select2-container--default .select2-selection--multiple .select2-selection__choice__remove{\n line-height:15px;\n font-size:15px;\n}\n\n.acf-field .select2-container--default.select2-container--focus .select2-selection--multiple{\n border-color:#7e8993 !", "important;\n}\n\n.acf-field .select2-container--default .select2-selection--multiple .select2-selection__clear{\n margin-top: 5px !", "important;\n margin-right: 5px !", "important;\n font-size: 16px;\n}\n\n/*\n * Select2: WPML Fix\n */\n.acf-field > .acf-input > .select2 .select2-search{\n width:auto;\n}\n\n/* \n * ACF Field: Tab Badge\n */\n.acf-tab-group li a .acfe-tab-badge{\n border-radius: 100px;\n background: #ddd;\n width: 18px;\n height: 18px;\n font-size: 12px;\n display: inline-block;\n vertical-align: text-bottom;\n padding: 0;\n text-align: center;\n margin-left: 5px;\n line-height: 18px;\n}\n\n.acf-tab-group li.active a .acfe-tab-badge,\n.acf-tab-group li a:hover .acfe-tab-badge{\n background: #f1f1f1;\n}\n\n/* \n * Menu Item: Fix Modal z-index\n */\n.menu-item-settings{\n position:initial;\n}\n\n/*\n * WP 5.5: Fix postbox order icons size\n */\n@media screen and (min-width: 783px){\n\n .postbox .handle-order-higher,\n .postbox .handle-order-lower{\n visibility: hidden;\n }\n\n .postbox:hover .handle-order-higher,\n .postbox:hover .handle-order-lower{\n visibility: visible;\n }\n\n}\n\n.postbox .handle-order-higher,\n.postbox .handle-order-lower{\n vertical-align: bottom;\n}\n\n.postbox .handle-order-higher .order-higher-indicator::before,\n.postbox .handle-order-lower .order-lower-indicator::before{\n font-size:15px;\n top:.18rem;\n}\n\n.postbox .handlediv{\n width: 1.62rem;\n}\n\n.postbox .handlediv .toggle-indicator::before{\n text-indent: -7px;\n}\n\n/*\n * ACF 5.9: Fix missing columns\n */\n.acf-columns-2 {\n margin-right: 300px;\n clear: both\n}\n\n.acf-columns-2:after {\n display: block;\n clear: both;\n content: \"\"\n}\n\nhtml[dir=\"rtl\"] .acf-columns-2 {\n margin-right: 0;\n margin-left: 300px\n}\n\n.acf-columns-2 .acf-column-1 {\n float: left;\n width: 100%\n}\n\nhtml[dir=\"rtl\"] .acf-columns-2 .acf-column-1 {\n float: right\n}\n\n.acf-columns-2 .acf-column-2 {\n float: right;\n margin-right: -300px;\n width: 280px\n}\n\nhtml[dir=\"rtl\"] .acf-columns-2 .acf-column-2 {\n float: left;\n margin-right: 0;\n margin-left: -300px\n}" ]
{ "pile_set_name": "Github" }
[ 0.0008271298593879239, 0.00048496605237633366, 0, 0, 0.0018626929217668972, 0.0008453085376162299, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.00234192037470726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.004132231404958678 ]
0.000256
5
[ "Live in Vienna (Böhse Onkelz album)\n\nLive in Vienna is the first live album of the German rock band Böhse Onkelz. ", "It was recorded on 13 December 1991 at the Vienna Messepalast.", "\n\nTrack listing\n Intro\n Wir ham' noch lange nicht genug (We haven't our fill by a long shot)\n 10 Jahre (10 Years)\n Kneipenterroristen (Tavern terrorists)\n Signum des Verrats (The sign of betrayal)\n Wilde Jungs (Wild boys)\n Das ist mein Leben (That's my life)\n Nie wieder (Never again)\n Zieh' mit den Wölfen (Go with the wolves)\n Lack und Leder (Lacquer and leather)\n Mexico\n Wieder mal 'nen Tag verschenkt (Another day gone down the drain)\n Stöckel und Strapse (Stilettos and garters)\n Nur die Besten sterben jung (Only the best die young)\n Zeig' mir den Weg (Show me the way)\n So sind wir (That's how we are)\n Ach, Sie suchen Streit (Ah, you're searching controversy)\n Eine dieser Nächte (One of these nights)\n Ich lieb' mich (I love me)\n\nCategory:Böhse Onkelz live albums\nCategory:1992 live albums\nCategory:German-language albums" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.017543859649122806, 0, 0.010830324909747292 ]
0.009458
5
[ "# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4\n\nPortSystem 1.0\nPortGroup github 1.0\nPortGroup python 1.0\n\ngithub.setup seatgeek fuzzywuzzy 0.18.0\nrevision 0\nname py-fuzzywuzzy\n\ncategories-append textproc\nplatforms darwin freebsd\nsupported_archs noarch\nlicense GPL-2+\nmaintainers nomaintainer\n\ndescription Fuzzy String Matching in Python\nlong_description Fuzzy string matching like a boss. ", "It uses Levenshtein \\\n Distance to calculate the differences between sequences \\\n in a simple-to-use package.", "\n\nchecksums rmd160 dd1a3de27f5af602e8c6d4307d147c8b55dfd3f5 \\\n sha256 1e06fc963c91f05664f29e9dad920163a5160fdad2446da938cc476b11657273 \\\n size 77128\n\npython.versions 27 35 36 37 38\n\nif {${name} ne ${subport}} {\n depends_build-append \\\n port:py${python.version}-setuptools\n\n depends_lib-append \\\n port:py${python.version}-levenshtein\n\n depends_test-append \\\n port:py${python.version}-hypothesis \\\n port:py${python.version}-codestyle \\\n port:py${python.version}-pytest\n\n # the test in test_fuzzywuzzy_pytest.py fails for all Python versions\n test.run yes\n test.cmd py.test-${python.branch} test_fuzzywuzzy.py test_fuzzywuzzy_hypothesis.py\n test.target\n test.env PYTHONPATH=${worksrcpath}/build/lib\n\n post-destroot {\n set docdir ${prefix}/share/doc/${subport}\n xinstall -d ${destroot}${docdir}\n xinstall -m 0644 -W ${worksrcpath} README.rst LICENSE.txt \\\n CHANGES.rst ${destroot}${docdir}\n }\n\n livecheck.type none\n}\n" ]
{ "pile_set_name": "Github" }
[ 0.005145797598627788, 0.006802721088435374, 0.0026041666666666665 ]
0.004851
5
[ "Are you a newbie to the cryptocurrency markets? ", "Are you confused about the role of animals in the market when you hear about bear, bull, or whale? ", "If you are an enthusiastic investor and just don’t want to invest in the cryptocurrency by your friend’s advice, then you must be aware of these animals’ roles in crypto space. ", "The better knowledge can help you in technical analysis and also aid in formulating the investment strategies. ", "In this article some of the questions like- What is crypto bull? ", "What is crypto bear? ", "What is crypto whale? ", "Will be responded along with their effects in the crypto markets. ", "This article aims to brief the difference between crypto bull, crypto bear and crypto whale.", "\n\nDifference Between Crypto Bull, Crypto Bear and Crypto Whale\n\nWhat is Crypto Bull? ", "| Effect of Crypto Bull In Crypto Market\n\nWhat is crypto bull? ", "To understand and remember about crypto bulls, you can start imagining the features of a real bull. ", "If we think of a bull, he is fearless and powerful with his horns pointing upwards in the sky. ", "In the cryptocurrency market, the situations in the market point towards the powerful and upward trend of the crypto market. ", "Simply, the bull market in crypto space is characterized by investor confidence in the cryptocurrency as the price tends to go up.", "\n\nJust try to go back in history, and recall the situation of the crypto market in December,2017. ", "The prices of Bitcoin almost touched $20,000, the skyrocketing of price built up the confidence among investors and within 24 hours, the crypto market was flushed with a massive amount of fresh investment.", "\n\nEffect of Crypto Bull on Crypto Market\n\nStrong market conditions are represented by the bull market. ", "But, what effect of crypto bull on the crypto market can be noticed? ", "Or how is it useful for investors? ", "Bull market basically attracts investments, which results in a further rise in the value of the price of Bitcoin or any other cryptocurrency. ", "The attitude and the type of investors (new or advanced or institutional) invest according to their risk-taking capability and the funds they can afford to lose(if in case). ", "Some of the investors tend to invest in the bull run by expecting to sell the cryptocurrencies when the trend is at top. ", "While some of the investors, which already had Bitcoins with them tend to sell as it helps in gaining them profits (when the selling price is more than buying price). ", "Bull market experience both selling and buying of cryptocurrencies. ", "Thus, stereotyping the bull market with the purchasing attitude of investors might not be right. ", "And also, it does not always mean that the bull market always leads to profit because the volatile nature of Bitcoin might reverse the trend overnight and you never know, you might end up losing. ", "Thus, It is recommendable to study the market trends before doing any investment.", "\n\nWhat Is Bear? ", "| Effect of Crypto Bear on Crypto Market\n\nWhat is crypto bear? ", "To understand and remember about crypto bears, you can start imagining the features of a real bear(that too most lazy one!). ", "If we think of a bear, he is lazy and sleepy with his horns. ", "Just a second, do they have horns? ", "Nope! ", "No horns. ", "In the cryptocurrency market, the situations in the market point towards the shrouded and downward trend of the crypto market. ", "Simply, the bear market in crypto space is characterized by investors losing confidence in the cryptocurrency as the price tends to fall down.", "\n\nJust try to go back in recent history, and recall the situation of the crypto market in March,2020. ", "The prices of Bitcoin almost crashed from $8000 to $3000, the skydiving of prices shook up the confidence of investors and within 24 hours, billions of dollars swiped away from the crypto market.", "\n\nEffect of Crypto Bear on Crypto Market\n\nWeak market conditions are represented by the bear market. ", "But, what effect crypto bear on the crypto market can be noticed? ", "Or how is it useful for investors? ", "Bear markets basically sway away from the investments, which results in a further drop in the value of the price of Bitcoin or any other cryptocurrency. ", "The attitude and the type of investors (new or advanced or institutional) invest according to their risk-taking capability and the funds they can afford to lose(if in case). ", "Some of the investors tend to invest even in the bear run by expecting to sell the cryptocurrencies when the trend reverses. ", "While some of the investors (big), which already had Bitcoins with them tend to sell to avoid further loss (even when the selling price is less than buying price). ", "Bear market experience both selling and buying of cryptocurrencies. ", "Thus, stereotyping the bear market with the selling attitude of investors might not be right. ", "And also, it does not always mean that the bear market always leads to loss because the volatile nature of Bitcoin might reverse the trend and you never know, you might end up gaining. ", "Thus, It is recommendable to study the market trends before doing any investment.", "\n\nWhat is Crypto Whale? ", "| Effect of Crypto Whales on Crypto Market\n\nTill now you might be clear with- What is crypto bull? ", "And What is the crypto bear? ", "They both are representative of market trends. ", "But at the starting of this article, we stated that you will get to know about whales too.", "\n\nWhales do not represent any market trend but they are associated with trend makers. ", "Generally, in crypto markets, whale refers to individuals or groups who hold a large amount of cryptocurrencies. ", "You can imagine the marine mammal, when she splashes in the water, a wave has been created. ", "Similarly, when the whales in the crypto market sell or buy cryptocurrency, a wave is being created which can even reverse the trend. ", "Whales could be anonymous traders, crypto exchanges, hedge funders, and people who are identified only by their public addresses.", "\n\nEffect of Crypto Whales on Crypto market\n\nLet us try to recall a situation from March 2020. ", "Crypto market crashed within 24 hours. ", "Crypto whale Alert (a website that tracks the activities of whales and also the effects they have on crypto markets) detected that two simultaneous transactions worth almost $22 million took place between the crypto wallets of one of the most reputed crypto exchanges, Binance. ", "Later, it came into the picture that crypto whales were trying to push the prices of BTC up to $6000 to purchase the dip before the next bull market came into the picture.", "\n\nBitcoin is based on a decentralized model of blockchain technology but indirectly affected by the whales of crypto space. ", "So, the individuals owning large amounts of coins can be problematic to the crypto markets. ", "As the markets are unregulated, whales have the power to move the market in a particular direction. ", "Thus, it is essential to look at the moves of big names in the markets, and the job is being efficiently done by Bitcoin whale alert. ", "Whale alert helps in carefully analyzing the abnormal changes in prices and volatility caused by the activities of crypto whales.", "\n\nFinal Thoughts\n\nTill now, you might be cleared with the basic difference between crypto bull, crypto bear and crypto whale. ", "If you are thinking about the better opportunity for investment, then you can start with walking on a usual path. ", "Buy the dips in a bull market and sell the rips in a bear market. ", "It is like a general thumb rule followed by most of the investors of the crypto community.", "\n\nDisclaimer : This and other personal blog posts are not reviewed, monitored or endorsed by Cryptoknowmics. ", "The content is solely the view of the author and Cryptoknowmics is not responsible for the authenticity of content of this post in any way. ", "Our curated content which is handpicked by our editorial team may be viewed here.", "\n\nAbout Us\n\nAt Crypto Blog, we tap into the minds of some of the world’s most insightful thinkers, storytellers, and writers to deliver to you content on topics that truly matter. ", "We are crazy about cryptocurrencies and blockchain but don’t worry. ", "We won’t let our bias come in your way to find unique ideas and perspectives on some of the most thought-provoking topics." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.03529411764705882, 0, 0, 0, 0, 0, 0, 0, 0.009708737864077669, 0, 0, 0, 0, 0.008264462809917356, 0.005988023952095809, 0, 0, 0, 0, 0.0625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.006097560975609756, 0.014705882352941176, 0, 0, 0, 0.041666666666666664, 0.020202020202020204, 0, 0, 0, 0, 0, 0, 0, 0.007751937984496124, 0.02127659574468085, 0, 0.007194244604316547, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.005555555555555556, 0, 0 ]
0.003117
5
[ "Granuloma pouch assay. ", "IV. ", "Induction of sister-chromatid exchanges in vivo.", "\nSCEs were induced, in vivo, in cells of a rapidly proliferating subcutaneous granulation tissue, initiated by the formation of a subcutaneous air pouch, on the backs of adult male rats (Granuloma Pouch Assay). ", "2 days after pouch formation the test compounds were applied, and 24 h later the granulation tissue was excised and dissociated into single cells. ", "Isolated cells were cultured in vitro in media containing BrdU, and SCEs were determined within 24-48 h. The spontaneous frequency was 14.4 +/- 1.1 per metaphase. ", "Mitomycin C (MMC) and cyclophosphamide (CP) induced a significant and dose-dependent increase in SCE frequencies. ", "Results obtained after i.v., ", "i.p. ", "and intra-pouch application routes are compared." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0, 0, 0, 0, 0.008771929824561403, 0, 0, 0 ]
0.000877
5
[ "Booze deserves just as much of a place in your baking dish as it does in your cocktail glass. ", "Whether you add the smoky, intense flavor of a spiced rum to banana bread pudding or a rich porter to Irish-style fruit cake, alcohol can give flavor, moisture, and a tender crumb to your baked goods.", "\n\nHere's how to use it:\n\nFlavor\n\nA good rule of thumb is to use the same amount of alcohol as you would use an extract. ", "Bourbon is often aged in oak barrels, giving it a smoky vanilla flavor. ", "Think of it like vanilla/almond extract combo, and add into pie filling, cake mix, and cookie dough. ", "Red wine, port, or brandy adds a nice sweetness, along with the winey flavor, great for gingerbread, chocolate cake, and syrupy glazes.", "\n\nAnd remember, like any other ingredient, quality matters. ", "Don't skimp and use the cheap stuff here—a dash of good bourbon can add nice, rich flavor while a splash of lower end stuff will just taste bitter.", "\n\nWhile some recipes include the alcohol in the baking mix, if you want the real strength of booze in your baking, use it without cooking it: add alcohol some to simple syrup to soak the cake layers in or fold a little into frosting, whipped cream, or glaze for the final topping.", "\n\nTexture\n\nBeyond flavor, alcohol can also affect the texture of your baked goods. ", "Adding a splash of vodka into pie dough can help create a super flaky dough—unlike water, vodka doesn't develop as much gluten in the pie dough. ", "The same goes with tart and shortbread dough—for flaky results, add in a splash of vodka.", "\n\nMoisture\n\nIn some recipes, booze plays the major liquid part, like this wine cake. ", "The wine not only gives it a sweet, boozy flavor, but also a nice, moist bite. ", "This works especially well in cakes that are soaked after cooking, like sticky toffee pudding (make it with bourbon) or coconut cake (try coconut rum)." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.012658227848101266, 0 ]
0.000844
5
[ "Italian ship Astore\n\nAstore was the name of at least three ships of the Italian Navy and may refer to:\n\n , a launched in 1907 and discarded in 1923.", "\n , a launched in 1934 she was sold to Sweden in 1940 and renamed HSwMS Remus.", "\n , a launched in 1981 and decommissioned in 2005.", "\n\nCategory:Italian Navy ship names" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.006711409395973154, 0.012658227848101266, 0, 0.029411764705882353 ]
0.012195
5