HBV and HCV are the major causes of chronic liver diseases throughout the world, and constitute a major global health risk. There is accumulated evidence that the imbalance of proinflammatory and anti-inflammatory cytokine production may play an important role in the pathogenesis of viral hepatic infections and may influence the clinical outcome and disease progression. This study was undertaken to analyze the circulating levels of Tumor Necrotic Factor (TNF-α) and Th2 cytokine IL-10 in patients infected with Hepatitis B and C virus. The study population consisted of 30 patients with chronic HBV, in addition to other 30 patients with chronic HCV infection were recruited on their first examination at the Al-Kindy General Hospital in Baghdad city. Another 12 healthy individuals with negative hepatitis serology as normal controls were observed. TNF-α level was significantly increased in chronic HBV infected patients compared with normal controls (6.81± 1.25 vs. 5.62± 1.71 pg/ml, p= 0.001). Similarly, the levels of the TNF-α was significantly elevated in HCV patients (8.62± 0.79 pg/ml) after comparison with its level in HBV patients (p= 0.023). Serum levels of Th2 cytokines IL-10 were also elevated in chronic HBV infected patients (25.05± 3.90 pg/ml) and in HCV infected patients (28.07± 3.35 pg/ml)
CO2 Laser (10600nm) is the recent method in the management of challenging skin scar resulting from trauma, burn and surgical wound. The aim of this study was to evaluate the efficacy & safety of fractional CO2 laser (10600nm) in treatment of skin scar. Materials and Methods:Twenty patients with different types of scars treated with fractional CO2 (10600nm) laser, (10 patients) were given additional intralesional Triamcinolone. Results: All of the twenty patients included in this study showed some sort of improvements in scar texture, height and pliability and all of the ten patients who received intralesional Triamcinolone after laser show complete satisfaction. Conclusion:Fractional CO2 (10600nm) laser can be used as alternative, ef
... Show MoreA new spectrophotometric method has been developed for the assay of olanzapine (OLN.) in pure and dosage forms. The method is based on the diazocoupling of (OLN.) with diazotized p-nitroaniline in alkaline medium to form a stable brown colored water-soluble azo dye with a maximum absorption at 405 nm. The variables that affect the completion of reaction have been carefully optimized. Beer’s law is obeyed over the concentration range of (0.5-45.0 μg.mL-1) with a molar absorptivity of 1.5777×104 L.mol-1.cm-1. The limit of detection was 0.3148 μg.mL-1 and Sandell’s sensitivity value was 0.0198 μg.cm-2. The propose
... Show MoreZinc oxide nanoparticles sample is prepared by the precipitation method. This method involves using zinc nitrate and urea in aqueous solution, then (AgNO3) Solution with different concentrations is added. The obtained precipitated compound is structurally characterized by X-ray diffraction (XRD), Scanning electron microscopy (SEM), Atomic force microscopy (AFM) and Fourier transform infrared spectroscopy (FTIR). The average particle size of nanoparticles is around 28nm in pure, the average particle size reaches 26nm with adding AgNO3 (0.05g in100ml =0.002 M) (0.1g in100ml=0.0058M), AgNO3 (0.2g in 100ml=0.01M) was 25nm. The FTIR result shows the existence of -CO, -CO2, -OH, and -NO2- groups in sample and oxides (ZnO, Ag2O).and used an
... Show MoreLeigh's syndrome, or sub acute necrotizing encephalomyelopathy, is a rare inherited neurometabolic disease of infancy and early childhood with variable course and prognosis. Rarely, it occurs in juveniles and adults. The diagnosis is difficult and still remains to challenge the clinicians on the basis of history; hence the role of imaging is very essential. It is the neuroimaging, chiefly the Magnetic Resonance Imaging showing characteristic symmetrical necrotic lesions in the basal ganglia and/or brain stem that leads to the diagnosis. Late-onset varieties are rare and only few cases were reported all over the world. Here, I report a case of late onset (juvenile) Leigh syndrome presenting with an acute polyneuropathy. Neuroimaging confi
... Show MoreIncreasing world demand for renewable energy resources as wind energy was one of the goals behind research optimization of energy production from wind farms. Wake is one of the important phenomena in this field. This paper focuses on understanding the effect of angle of attack (α) on wake characteristics behind single horizontal axis wind turbines (HAWT). This was done by design three rotors different from each other in value of α used in the rotor design process. Values of α were (4.8˚,9.5˚,19˚). The numerical simulations were conducted using Ansys Workbench 19- Fluent code; the used turbulence model was (k-ω SST). The results showed that best value for extracted wind energy was at α=19˚, spread distance of wak
... Show MoreIn this paper, the general framework for calculating the stability of equilibria, Hopf bifurcation of a delayed prey-predator system with an SI type of disease in the prey population, is investigated. The impact of the incubation period delay on disease transmission utilizing a nonlinear incidence rate was taken into account. For the purpose of explaining the predation process, a modified Holling type II functional response was used. First, the existence, uniform boundedness, and positivity of the solutions of the considered model system, along with the behavior of equilibria and the existence of Hopf bifurcation, are studied. The critical values of the delay parameter for which stability switches and the nature of the Hopf bifurcat
... Show MoreA skip list data structure is really just a simulation of a binary search tree. Skip lists algorithm are simpler, faster and use less space. this data structure conceptually uses parallel sorted linked lists. Searching in a skip list is more difficult than searching in a regular sorted linked list. Because a skip list is a two dimensional data structure, it is implemented using a two dimensional network of nodes with four pointers. the implementation of the search, insert and delete operation taking a time of upto . The skip list could be modified to implement the order statistic operations of RANKand SEARCH BY RANK while maintaining the same expected time. Keywords:skip list , parallel linked list , randomized algorithm , rank.