{ "cells": [ { "cell_type": "code", "execution_count": null, "id": "6ceee992", "metadata": {}, "outputs": [], "source": [ "import json\n", "import os\n", "import pandas as pd\n", "from sklearn.model_selection import train_test_split\n", "from sklearn.linear_model import LogisticRegression\n", "from sklearn.metrics import accuracy_score, classification_report\n", "from IPython.display import display\n", "\n", "pd.set_option('display.max_rows', None)\n", "pd.set_option('display.max_columns', None)\n", "pd.set_option('display.width', None)" ] }, { "cell_type": "code", "execution_count": 54, "id": "33c433dc", "metadata": {}, "outputs": [], "source": [ "features = []\n", "targets = []\n", "\n", "stock_ids = [d for d in os.listdir('./json') if os.path.isdir(os.path.join('./json', d))]\n", "\n", "for stock_id in stock_ids:\n", " json_folder = f'./json/{stock_id}'\n", " csv_file = f'./data/{stock_id}.csv'\n", "\n", " if not os.path.exists(csv_file):\n", " continue\n", "\n", " price_data = pd.read_csv(csv_file)\n", " price_data['date'] = pd.to_datetime(price_data['date'])\n", " \n", " for json_file in os.listdir(json_folder):\n", " if json_file.endswith('.json'):\n", " try:\n", " date_str = json_file.split('_')[2]\n", " start_date = pd.to_datetime(date_str)\n", " except (IndexError, ValueError):\n", " continue\n", "\n", " with open(os.path.join(json_folder, json_file), 'r') as f:\n", " data = json.load(f)\n", " if \"None\" in str(data):\n", " print(json_file,stock_id)\n", " \n", " start_price = price_data[price_data['date'] >= start_date].iloc[0]['close'] if start_date in price_data['date'].values else price_data[price_data['date'] > start_date].iloc[0]['close']\n", " start_date += pd.DateOffset(months=3)\n", " try: \n", " end_price = price_data[price_data['date'] >= start_date].iloc[0]['close'] if start_date in price_data['date'].values else price_data[price_data['date'] > start_date].iloc[0]['close']\n", " except Exception:\n", " continue\n", "\n", " period_data = price_data[(price_data['date'] >= start_date - pd.DateOffset(months=3)) & (price_data['date'] <= start_date)]\n", " lowest_price = period_data['close'].min()\n", " highest_price = period_data['close'].max()\n", " lowest_pct = abs(((lowest_price - start_price) / start_price) * 100)\n", " highest_pct = ((highest_price - start_price) / start_price) * 100\n", " targets.append(1 if highest_pct >= lowest_pct else 0)\n", " # assert(False)\n", " feature_row = {}\n", " for section, values in data.items():\n", " if isinstance(values, dict):\n", " for key, value in values.items():\n", " if isinstance(value, (int, float)):\n", " feature_row[f\"{section}_{key}\"] = value\n", " # print(feature_row)\n", " # print(pd.DataFrame([feature_row]).head())\n", " features.append(feature_row)\n", "\n", "X = pd.DataFrame(features)\n", "y = pd.Series(targets)" ] }, { "cell_type": "code", "execution_count": 59, "id": "a44afd53", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "1851" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/plain": [ "1605" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "cash_flows_Net other losses: 99.960223%\n", "cash_flows_Gain on disposal of property and equipment: 99.960223%\n", "financial_position_Contract assets non-current: 99.960223%\n", "comprehensive_income_Re-measurement loss on employees retirement benefit obligations of the Associate: 99.960223%\n", "cash_flows_Adjustments for Gain on lease modifications: 99.960223%\n", "cash_flows_Adjustment for gains resulting from subsidiary acquisition: 99.960223%\n", "cash_flows_Adjustments for Gain from disposal of right of use assets: 99.960223%\n", "cash_flows_Adjustment for rent concession: 99.960223%\n", "equity_changes_Transactions with non-controlling interest 3: 99.960223%\n", "cash_flows_Impairment of non-mine assets1: 99.960223%\n", "cash_flows_Derivative interest received2: 99.960223%\n", "cash_flows_Increase in time deposits: 99.960223%\n", "financial_position_Loan and lease liabilties: 99.960223%\n", "cash_flows_Inventory written-off: 99.960223%\n", "cash_flows_Net foreign exchange gain or loss: 99.960223%\n", "financial_position_Loans and lease liabilties: 99.960223%\n", "cash_flows_Provision for near expiry, obsolete and slow- moving inventories: 99.960223%\n", "cash_flows_Employee defined benefit costs: 99.960223%\n", "cash_flows_Provision for impairment of trade and other receivables: 99.960223%\n", "cash_flows_Net monetary loss (gain): 99.960223%\n", "cash_flows_Amount received from purchaser of a subsidiary: 99.960223%\n", "cash_flows_proceed from long term loan: 99.960223%\n", "financial_position_Loan and leaseliabilities: 99.960223%\n", "cash_flows_Impairment on non-financial assets: 99.960223%\n", "cash_flows_Acquisition of a subsidiary: 99.960223%\n", "cash_flows_Net movement in short-term loans: 99.960223%\n", "cash_flows_Provision for near expiry, obsolete and slow-moving inventories: 99.960223%\n", "cash_flows_Employee defined benefit cost: 99.960223%\n", "financial_position_time deposits: 99.960223%\n", "financial_position_Loans and lease liabilities - Current: 99.960223%\n", "cash_flows_Zakat paid.6: 99.960223%\n", "cash_flows_Payment against provision for decommissioning, site rehabilitation and dismantling obligations1: 99.960223%\n", "cash_flows_Projects and other payables . Projects .3: 99.960223%\n", "cash_flows_Impairment of property, plant and equipment1: 99.960223%\n", "cash_flows_Impairment of plant and equipment1: 99.960223%\n", "cash_flows_Severacne fee paid: 99.960223%\n", "cash_flows_Repayment of short term borrowing: 99.960223%\n", "income_statement_Adjustments for gains (losses) on disposal of property and equipment, net: 99.960223%\n", "income_statement_Other inflows (outflows) of cash, classified as investing activities: 99.960223%\n", "cash_flows_Amortization of intangible assets: 99.960223%\n", "cash_flows_Depreciation on right of-use of assets: 99.960223%\n", "cash_flows_Expected Credit Losses: 99.960223%\n", "cash_flows_Provision for Contracts Incremental Costs: 99.960223%\n", "cash_flows_Write-off of projects in progress: 99.960223%\n", "income_statement_(Provision) reversal of expected credit loss (ECLs) on trade receivables: 99.960223%\n", "financial_position_Cumulative changes in the items of other comprehensive: 99.960223%\n", "cash_flows_Reversal of provision for impairment of other receivables: 99.960223%\n", "cash_flows_Impairment (Reversal of impairment) in allowance for expected credit losses for trade receivables: 99.960223%\n", "cash_flows_Other provisions - (Reversal of other provisions): 99.960223%\n", "financial_position_Loans and lease liabiltes: 99.960223%\n", "cash_flows_Provison for impairment of financial assets: 99.960223%\n", "cash_flows_Financial assets written-off: 99.960223%\n", "financial_position_Loans and Lease Liabilities: 99.960223%\n", "cash_flows_Gain on disposal group - sale of Alanmaa: 99.960223%\n", "income_statement_Impairment of financial assets: 99.960223%\n", "cash_flows_Repayment of a related party loan: 99.960223%\n", "financial_position_Current portion of Islamic Loan Facilities: 99.960223%\n", "income_statement_Impairment loss on investment in associate: 99.960223%\n", "cash_flows_Impairment Loss on investment in SKA: 99.960223%\n", "cash_flows_Repayment of short term Murabaha loans: 99.960223%\n", "financial_position_Retemtions payable: 99.960223%\n", "cash_flows_Non-controlling interst on itnitial investment: 99.960223%\n", "cash_flows_Net movement in investment at fair value through profit or loss: 99.960223%\n", "cash_flows_Movement in long term retentions payable: 99.960223%\n", "cash_flows_Initial investment in a subsidiary by a non-controlling shareholder: 99.960223%\n", "financial_position_Current portion of Islamic loan facilities: 99.960223%\n", "cash_flows_Payments of Long Term Murabaha loans: 99.960223%\n", "cash_flows_Net movement in commercial loans: 99.960223%\n", "cash_flows_Net movement in SDIF laon: 99.960223%\n", "financial_position_Current portion of borrowings: 99.960223%\n", "financial_position_Borrowings: 99.960223%\n", "cash_flows_Reduction of share capital: 99.960223%\n", "cash_flows_interest cost of employees defined benfit plan obligation: 99.960223%\n", "cash_flows_Impairment (reversal) of trade receivables: 99.960223%\n", "cash_flows_Capital reduction: 99.960223%\n", "cash_flows_Adjustments for Other non-current liabilities: 99.960223%\n", "cash_flows_Adjustments for Long term receivables and other assets: 99.960223%\n", "cash_flows_مطلوبات غير مداولة اخرى: 99.960223%\n", "cash_flows_الزكاة وضريبة الدخل المحملة: 99.960223%\n", "financial_position_Long term receivable: 99.960223%\n", "cash_flows_Adjustment for amortization of deferred employee benefits: 99.960223%\n", "financial_position_Reserve of disposal group held for distribution/ sale: 99.960223%\n", "cash_flows_short loans movments: 99.960223%\n", "cash_flows_Adjustment in Amortization of deferred employee benefits: 99.960223%\n", "cash_flows_Adjustment fro Other non-current liabilities: 99.960223%\n", "cash_flows_Adjustment to Long term receivables and prepayments: 99.960223%\n", "cash_flows_Amortization of deferred employee benefits: 99.960223%\n", "cash_flows_Charge for impairment of trade receivables: 99.960223%\n", "financial_position_long tearm recevable: 99.960223%\n", "cash_flows_bentenchal losses: 99.960223%\n", "cash_flows_Employees cost: 99.960223%\n", "cash_flows_Employees cost 2: 99.960223%\n", "cash_flows_loans cost: 99.960223%\n", "cash_flows_zakat: 99.960223%\n", "cash_flows_revenues from received duposet: 99.960223%\n", "cash_flows_Acquisition of extra shares in a subsidiary: 99.960223%\n", "financial_position_Deferred tax libillity: 99.960223%\n", "financial_position_Trade Paybles: 99.960223%\n", "cash_flows_Gain on disposal of discontinued operations: 99.960223%\n", "cash_flows_Realized gain on investments at fair value through profit or loss: 99.960223%\n", "cash_flows_Unrealized (loss) gain on investments at fair value through profit or loss: 99.960223%\n", "equity_changes_Increase in share capital due to right issue: 99.960223%\n", "cash_flows_Gain from disposal of property, plant and equipment: 99.960223%\n", "cash_flows_share of affiliate result: 99.960223%\n", "cash_flows_Provision for impairment of doubtful other receivables write off reversal: 99.960223%\n", "cash_flows_Realized gain on disposal of equity instruments at fair value through profit or loss: 99.960223%\n", "cash_flows_Gain from disposal of investments: 99.960223%\n", "cash_flows_Purchase of equity instruments at fair value through profit and loss: 99.960223%\n", "cash_flows_Bargain purchase: 99.960223%\n", "cash_flows_collection against employee loans: 99.960223%\n", "cash_flows_Disburesment of employee loans: 99.960223%\n", "cash_flows_Finance cost elements of lease payments: 99.960223%\n", "cash_flows_write off of trade receivables: 99.960223%\n", "cash_flows_Net allowance for inventory obsolesence and slow moving: 99.960223%\n", "cash_flows_Finance Income Recevied: 99.960223%\n", "cash_flows_Employee benefit obligation paid: 99.960223%\n", "cash_flows_payment for intangible assets: 99.960223%\n", "cash_flows_investment in short term deposits: 99.960223%\n", "cash_flows_Maturity from short term deposits: 99.960223%\n", "cash_flows_Insurance claim compensation recevied: 99.960223%\n", "financial_position_current portion for long term borrowings: 99.960223%\n", "financial_position_Long Term Borrowings: 99.960223%\n", "financial_position_Lease Liabilites: 99.960223%\n", "financial_position_provision fro decommissioing obligation: 99.960223%\n", "income_statement_impairment losses on financial assets: 99.960223%\n", "income_statement_Zakat and income tax charge: 99.960223%\n", "cash_flows_Adjustment for insurance claim compensation: 99.960223%\n", "cash_flows_impariment loss on financial assets: 99.960223%\n", "cash_flows_Adjustments for Depreciation on right-of-use assets: 99.960223%\n", "cash_flows_Adjustments for Interest on lease liabilities: 99.960223%\n", "cash_flows_Adjustments for Impairment loss on trade receivables: 99.960223%\n", "cash_flows_Adjustments for Allowance for slow moving inventories: 99.960223%\n", "financial_position_Loans to employee: 99.960223%\n", "cash_flows_Loss on disposals of property and equipment: 99.960223%\n", "cash_flows_Impairment (reversal) charge on inventories: 99.960223%\n", "cash_flows_Non-cash employee expenses: 99.960223%\n", "cash_flows_Provision for employees benefits obligations: 99.960223%\n", "cash_flows_Loss on sale of property, plant and equipment: 99.960223%\n", "cash_flows_Allowance for (reversal of) slow moving inventories: 99.960223%\n", "equity_changes_Transfer of share capital: 99.960223%\n", "cash_flows_Interest on lease liabilitiess: 99.960223%\n", "cash_flows_Adjusments for Insurance claim compensation: 99.960223%\n", "cash_flows_Adjusments for Impairment loss on financial assets: 99.960223%\n", "cash_flows_Adjustment for Impairment of allowance on inventories: 99.960223%\n", "cash_flows_Loss on sale of property, plant and equipments: 99.960223%\n", "cash_flows_Employee benefit obligations paids: 99.960223%\n", "cash_flows_Finance income receiveds: 99.960223%\n", "income_statement_Sales: 99.960223%\n", "income_statement_Impairment losss on financial assets: 99.960223%\n", "income_statement_Zakat and income tax credit (charge): 99.960223%\n", "comprehensive_income_Re-measurement loss on employee benefit obligations: 99.960223%\n", "cash_flows_Unrealized lloss gain on investments at fair value through profit or loss: 99.960223%\n", "cash_flows_Unrealized loses from investments at fair value through profit or loss: 99.960223%\n", "cash_flows_Realized gain from investments at fair value through profit or loss: 99.960223%\n", "cash_flows_Derecognition gain on disposal of subsidiaries: 99.960223%\n", "cash_flows_Bargain purchase on acquisition of subsidiary (note 5): 99.960223%\n", "cash_flows_Gain on discontinued operations: 99.960223%\n", "cash_flows_Proceeds of financial instruments by fair value through other comprehensive income: 99.960223%\n", "cash_flows_Depreciation of right of used assets: 99.960223%\n", "cash_flows_.Dividends income: 99.960223%\n", "cash_flows_Loss from disposal of right of used assets: 99.960223%\n", "cash_flows_Discontinued operations: 99.960223%\n", "financial_position_Advance from customer non current portion: 99.960223%\n", "cash_flows_Impairment loss on trade receivables and other current assets: 99.960223%\n", "cash_flows_Gain from sale of property plant and equipment: 99.960223%\n", "financial_position_Unbilled receivables_current: 99.960223%\n", "cash_flows_Impairment of trade receivables and other current debit balances: 99.960223%\n", "cash_flows_Contract liabilities: 99.960223%\n", "cash_flows_Finance income collected: 99.960223%\n", "cash_flows_Movement in investments in equity instruments designated as at FVOCI: 99.960223%\n", "cash_flows_Change in investments at joint ventures: 99.960223%\n", "cash_flows_ZAKAT PAID: 99.960223%\n", "cash_flows_Provision for obsolescence inventory: 99.960223%\n", "cash_flows_from related party: 99.960223%\n", "cash_flows_Repayments of borrowings: 99.960223%\n", "cash_flows_Finance cost element of lease payments: 99.960223%\n", "cash_flows_Principal element of lease payments: 99.960223%\n", "cash_flows_Dividends: 99.960223%\n", "cash_flows_Property, plan and equipment written off: 99.960223%\n", "cash_flows_Adjustmetns for loss (gain) on sale of property and equipment: 99.960223%\n", "cash_flows_Employee related expenses: 99.960223%\n", "cash_flows_Payments for intangible assets: 99.960223%\n", "cash_flows_Investment in short-term deposits: 99.960223%\n", "cash_flows_Disbursement of employee loans: 99.960223%\n", "cash_flows_Adjustments to Inventories: 99.960223%\n", "cash_flows_Adjustments to contract liabilities: 99.960223%\n", "financial_position_Right of use assets net: 99.960223%\n", "financial_position_Contracts liabilities: 99.960223%\n", "financial_position_Advance from customer noncurrent portion: 99.960223%\n", "financial_position_Advance from a customer: 99.960223%\n", "financial_position_Unbilled receivables current: 99.960223%\n", "financial_position_Unbilled receivables_non-current: 99.960223%\n", "financial_position_Amounts due from a related party: 99.960223%\n", "financial_position_Deferred Tax Asset: 99.960223%\n", "financial_position_Short-term Murabaha: 99.960223%\n", "financial_position_Contract liabilities_Current: 99.960223%\n", "cash_flows_Impairment of fixed assets: 99.960223%\n", "cash_flows_Impairment of trade receivables and other current assets: 99.960223%\n", "cash_flows_Fair value gain (loss) on investment in financial assets at FVTPL: 99.960223%\n", "cash_flows_Loss on disposal of a foreign subsidiary: 99.960223%\n", "cash_flows_Purchases of investment in financial assets at FVTPL: 99.960223%\n", "cash_flows_Proceeds from sale of investment in financial assets at FVTPL: 99.960223%\n", "cash_flows_Proceeds from disposal of a foreign subsidiary: 99.960223%\n", "cash_flows_Increase in contract assets: 99.960223%\n", "comprehensive_income_Foreign currency translation reserve released on disposal of a foreign subsidiary: 99.960223%\n", "cash_flows_Gain on disposal of investment in financial assets at FVTPL: 99.960223%\n", "cash_flows_CHANGES IN INVENTORY: 99.960223%\n", "cash_flows_Gains on changes in fair value of investment in equity instruments: 99.960223%\n", "cash_flows_Repayments of capital reduction: 99.960223%\n", "cash_flows_Gains on changes in fair value of investment in equity instrument: 99.960223%\n", "cash_flows_Repayments of lease liability: 99.960223%\n", "cash_flows_provision for doubtful debts: 99.960223%\n", "cash_flows_interest expense: 99.960223%\n", "income_statement_Gain on disposal of investment in financial assets at fair value through profit or loss (FVTPL): 99.960223%\n", "cash_flows_Net re-measurments of loss allowance: 99.960223%\n", "cash_flows_Decrease (Incraese) in spare parts: 99.960223%\n", "cash_flows_Increase decrease in contract assets: 99.960223%\n", "cash_flows_Increase decrease in contract liabilities: 99.960223%\n", "cash_flows_Employee defined benefits liabilities paid: 99.960223%\n", "cash_flows_Proceed on disposal of a subsidiary: 99.960223%\n", "cash_flows_Lease Payment: 99.960223%\n", "cash_flows_Purchase of time deposit: 99.960223%\n", "financial_position_Assets held for sale - net: 99.960223%\n", "financial_position_Investment at fair value through proft and loss: 99.960223%\n", "financial_position_investments at fair value through profit or loss: 99.960223%\n", "financial_position_Financial Assets at fair value through profits and losses: 99.960223%\n", "financial_position_Available for sale investments: 99.960223%\n", "financial_position_Accounts payable: 99.960223%\n", "cash_flows_Adjustment for decrease (increase) in Accounts receivable: 99.960223%\n", "financial_position_Lease liability - current: 99.960223%\n", "financial_position_Lease liability - non current: 99.960223%\n", "cash_flows_Impairment of accounts receivable: 99.960223%\n", "cash_flows_Amortization for arrangement fees: 99.960223%\n", "cash_flows_Movement of capital advances: 99.960223%\n", "cash_flows_Share of loss from equity accounted investee: 99.960223%\n", "cash_flows_Movement in capital advances: 99.960223%\n", "cash_flows_Reversal for provision for onerous contracts: 99.960223%\n", "cash_flows_Disposal of right of use assets: 99.960223%\n", "cash_flows_Allowance against amounts due from subsidiary: 99.960223%\n", "cash_flows_Loss - Income on termination of a lease: 99.960223%\n", "cash_flows_Dividend payment: 99.960223%\n", "cash_flows_Gain on sub-lease: 99.960223%\n", "financial_position_Current portion lease liabilities: 99.960223%\n", "cash_flows_Provision (reversal) for expected credit losses: 99.960223%\n", "cash_flows_Amounts due from to related parties: 99.960223%\n", "cash_flows_Payment of lease liability: 99.960223%\n", "cash_flows_Share of loss from equity accounted investees: 99.960223%\n", "cash_flows_Provision for onerous contracts: 99.960223%\n", "cash_flows_Finance costs lease liabilities: 99.960223%\n", "cash_flows_Payment received on loan to equity accounted investee: 99.960223%\n", "financial_position_Concession contract receivables - Current: 99.960223%\n", "cash_flows_الحصة في الخسارة من شركات مستثمر فيها بطريقة حقوق الملكية: 99.960223%\n", "cash_flows_Purchase of right-of-use assets: 99.960223%\n", "financial_position_Actuarial valuation reserve: 99.960223%\n", "cash_flows_Allowance for expected credit losses on contract assets: 99.960223%\n", "cash_flows_Allowance for expected credit losses on trade receivables: 99.960223%\n", "cash_flows_Write-off of property and equipment: 99.960223%\n", "cash_flows_Repayment of loan from equity accounted investee: 99.960223%\n", "financial_position_Financial asset from service concession arrangement: 99.960223%\n", "cash_flows_Change in related parties balances: 99.960223%\n", "financial_position_Investment in an associate: 99.960223%\n", "financial_position_Other reserves of equity-accounted investees: 99.960223%\n", "cash_flows_Adjustments for decrease (increase) in Loss from investment at fair value through profit or loss: 99.960223%\n", "cash_flows_Adjustments for Selling investments at fair value through profit or loss: 99.960223%\n", "income_statement_Adjustment for provision for slow moving items and inventory shortage: 99.960223%\n", "income_statement_Provisions: 99.960223%\n", "financial_position_Lease liabilities - Non Current: 99.960223%\n", "comprehensive_income_Re-measurement of end of service benefit obligation: 99.960223%\n", "cash_flows_impairment loss recognized on installment sales receivable, net: 99.960223%\n", "cash_flows_Impairment recognized against inventories: 99.960223%\n", "cash_flows_Movement in foreign exchange translation: 99.960223%\n", "cash_flows_Investment in subsidiary, net of cash acquired: 99.960223%\n", "cash_flows_gain on derecognition of right-of-use assets: 99.960223%\n", "cash_flows_Gain on disposal of right of use assets: 99.960223%\n", "cash_flows_Change in capital advance: 99.960223%\n", "cash_flows_Cash and cash equivalents at the beginning of the period: 99.960223%\n", "income_statement_The Selling and marketing expenses: 99.960223%\n", "income_statement_The General and administrative expenses: 99.960223%\n", "income_statement_The allowance for impairment losses on trade receivables: 99.960223%\n", "cash_flows_The Gain on derecognition of right-of-use assets: 99.960223%\n", "cash_flows_The Purchase of vehicles: 99.960223%\n", "cash_flows_The Finance costs paid: 99.960223%\n", "cash_flows_The Employee benefits paid: 99.960223%\n", "cash_flows_Allowance for spare parts: 99.960223%\n", "cash_flows_Acquisition of a subsidiary, net of cash acquired: 99.960223%\n", "financial_position_Current portion of bank borrowings: 99.960223%\n", "cash_flows_mortisation of intangible assets: 99.960223%\n", "financial_position_Investment at fair value through other comprehensive income: 99.960223%\n", "cash_flows_Acquisition of a subsidiary, net cash acquired: 99.960223%\n", "financial_position_Advance against investment: 99.960223%\n", "cash_flows_Amortisation of the intangible assets: 99.960223%\n", "cash_flows_Investments: 99.960223%\n", "financial_position_Bank borrowings- non-current portion: 99.960223%\n", "income_statement_Net fair value loss on derivative financial instruments: 99.960223%\n", "income_statement_Expected credit loss on trade receivables: 99.960223%\n", "comprehensive_income_Remeasurement on employees defined benefits obligations: 99.960223%\n", "cash_flows_Loss on financial derivative: 99.960223%\n", "financial_position_Investment at fair value through profit and loss: 99.960223%\n", "income_statement_Profit from investment at fair value through profit and loss: 99.960223%\n", "cash_flows_Adjustments for Allowance for expected credit losses: 99.960223%\n", "cash_flows_Adjustment to Interest income from investments at amortised cost: 99.960223%\n", "cash_flows_Selling investments at fair value through profit or loss: 99.960223%\n", "cash_flows_Adjustments for Realized and unrealized profit from investment at fair value through profit and loss: 99.960223%\n", "cash_flows_Adjustments for Dividends from investments at fair value through profit or loss: 99.960223%\n", "cash_flows_Depreciation of property and equipment: 99.960223%\n", "financial_position_Zakat and foreign tax provision: 99.960223%\n", "financial_position_Right-of-use Assets: 99.960223%\n", "cash_flows_Depereciation Right-of-use Assets: 99.960223%\n", "cash_flows_Finance costs-net: 99.960223%\n", "cash_flows_Provision for employees' benefits: 99.960223%\n", "cash_flows_Short-term deposits with original maturities of more than three months: 99.960223%\n", "income_statement_Zakat reversal for prior years: 99.960223%\n", "financial_position_Financial assets and Short-term Murabaha deposits: 99.960223%\n", "cash_flows_Reversal of impairment loss on property, plant, and equipment: 99.960223%\n", "financial_position_zakat provsion: 99.960223%\n", "financial_position_lease libailities current portion: 99.960223%\n", "financial_position_lease liabilities noncurrent portion: 99.960223%\n", "income_statement_investment income: 99.960223%\n", "cash_flows_Change in financial assets at fair value through OCI: 99.960223%\n", "cash_flows_Investment in isalimc Murabaha: 99.960223%\n", "cash_flows_Financial assets at fair value through profit or losses: 99.960223%\n", "financial_position_Provision for land restoration subject to the franchise: 99.960223%\n", "income_statement_Gain on sale of property, plant, and equipment: 99.960223%\n", "comprehensive_income_loss or gain of change in fair value of financial assets at fair value through other comprehensive income: 99.960223%\n", "cash_flows_Realized gain from disposal of financial assets at fair value through profit or loss: 99.960223%\n", "cash_flows_Reversed zakat provision: 99.960223%\n", "financial_position_projects under costruction: 99.960223%\n", "financial_position_right to use assets Net: 99.960223%\n", "income_statement_Gain on sale of property, plant and equipmentt: 99.960223%\n", "comprehensive_income_(losses) Gains on financial assets at fair value through other comprehensive income: 99.960223%\n", "cash_flows_Change in the right to use the asset: 99.960223%\n", "comprehensive_income_Gain or loss of change in fair value of financial assets at fair value through other comprehensive income: 99.960223%\n", "cash_flows_Change in leasing obligations: 99.960223%\n", "cash_flows_Dividends payable: 99.960223%\n", "cash_flows_Change in lease obligations: 99.960223%\n", "financial_position_Lease liabilities current: 99.960223%\n", "cash_flows_Prior years adjustments: 99.960223%\n", "comprehensive_income_Losses,gains on financial assets at fair value through other comprehensive income: 99.960223%\n", "cash_flows_Gain, loss from associate companies: 99.960223%\n", "financial_position_Retention receivable: 99.960223%\n", "income_statement_Impairment of investment in an associate: 99.960223%\n", "financial_position_Advance to Suppliers: 99.960223%\n", "financial_position_Other non-current assetsOther Non- Current Assets: 99.960223%\n", "cash_flows_Loss on disposal of a subsidiary: 99.960223%\n", "cash_flows_Adjustment for other non current liabilities: 99.960223%\n", "cash_flows_Remeasurement gain on right of use assets and lease liabilities: 99.960223%\n", "comprehensive_income_Re-measurement for employees defined benefits: 99.960223%\n", "comprehensive_income_Gain of change in fair value of financial assets designated at fair value through other comprehensive income: 99.960223%\n", "cash_flows_Payments of financing costs: 99.960223%\n", "cash_flows_Net Finance Cost: 99.960223%\n", "comprehensive_income_Gains or losses on financial assets at fair value through: 99.960223%\n", "comprehensive_income_Difference remeasurement provision for end of service: 99.960223%\n", "financial_position_Long Term lease liability: 99.960223%\n", "financial_position_Current portion of Islamic Murabaha Contracts long-term: 99.960223%\n", "equity_changes_Transfer to general reserve: 99.960223%\n", "equity_changes_Discontinued operations: 99.960223%\n", "equity_changes_Reclassification of depreciation transferred: 99.960223%\n", "comprehensive_income_Income tax (charge) credit relating to hedges of net investment in foreign operations: 99.960223%\n", "comprehensive_income_Reclassification adjustment on hedges of net investment in foreign operations: 99.960223%\n", "equity_changes_Transfer to capital: 99.960223%\n", "cash_flows_Acquisition of other property plant and equipment: 99.960223%\n", "financial_position_Retentions receivable: 99.960223%\n", "cash_flows_Adjustments for Other finance charges: 99.960223%\n", "cash_flows_Other Interest paid, classified as operating activities: 99.960223%\n", "cash_flows_Lease Interest paid, classified as operating activities: 99.960223%\n", "cash_flows_Interest paid on loans and borrowings, classified as operating activities: 99.960223%\n", "cash_flows_Additions to Vehicles, net of advances: 99.960223%\n", "financial_position_Retention Receivable: 99.960223%\n", "cash_flows_Acquisition of other property and equipment: 99.960223%\n", "financial_position_Prepayments and other receivables: 99.960223%\n", "cash_flows_Adjustments for depreciation and impairment (reversal of impairment) of Other property plant and equipment: 99.960223%\n", "cash_flows_Income before zakat and income tax: 99.960223%\n", "cash_flows_Share of results of associates and joint ventures: 99.960223%\n", "cash_flows_Decrease in other non-current assets: 99.960223%\n", "cash_flows_Increase (decrease) in employee benefits: 99.960223%\n", "cash_flows_Increase in other non-current liabilities: 99.960223%\n", "cash_flows_The acquisitions of non controlling interests: 99.960223%\n", "cash_flows_Fair value re-measurement on assets helf for sale: 99.960223%\n", "cash_flows_Other movements, net: 99.960223%\n", "cash_flows_Interest received: 99.960223%\n", "financial_position_Property, plant and equipment and right-of-use assets: 99.960223%\n", "financial_position_Short-term borrowings, current portion of long-term debt and lease liabilities: 99.960223%\n", "financial_position_Trade payables and other current liabilities: 99.960223%\n", "financial_position_Long-term debt and lease liabilities: 99.960223%\n", "financial_position_Employee benefits: 99.960223%\n", "financial_position_Assets held for sale: 99.960223%\n", "financial_position_Liabilities directly associated with assets held for sale: 99.960223%\n", "comprehensive_income_Share of other comprehensive loss of associates and joint ventures: 99.960223%\n", "cash_flows_Changes in inventories, trade recievable and payables: 99.960223%\n", "cash_flows_Depreciation,amortisation and impairment: 99.960223%\n", "cash_flows_Proceeds from sale of property, plant and equipment: 99.960223%\n", "cash_flows_Advances on acquisitions: 99.960223%\n", "income_statement_Employee Incentive: 99.960223%\n", "cash_flows_Impairment loss on Trade and Other receivables: 99.960223%\n", "cash_flows_Employee Incentive: 99.960223%\n", "cash_flows_Adjustments for decrease (increase) in Prepayment and Other receivables: 99.960223%\n", "cash_flows_Purchase of Capital work in progress: 99.960223%\n", "cash_flows_Related parties, net: 99.960223%\n", "cash_flows_Lease interest paid: 99.960223%\n", "cash_flows_Increase in provisions and other non-current liabilities: 99.960223%\n", "cash_flows_Increase in trade payables: 99.960223%\n", "cash_flows_Increase (decrease) in accruals and other current liabilities: 99.960223%\n", "cash_flows_Dividend received from integral joint ventures: 99.960223%\n", "cash_flows_Proceeds on the maturity of investments in debt and disposals of equity instruments: 99.960223%\n", "financial_position_Long-term debt: 99.960223%\n", "comprehensive_income_Net change on revaluation of investments in equity instruments classified as fair value through other comprehensive income: 99.960223%\n", "comprehensive_income_Tax benefit: 99.960223%\n", "cash_flows_Depreciation of plant and equipment: 99.960223%\n", "cash_flows_Amortisation of intangible assets and other assets: 99.960223%\n", "cash_flows_Impairments and write-offs of plant and equipment, right-of-use assets and intangible assets: 99.960223%\n", "cash_flows_Impairment (net of reversals) of non-integral joint ventures and associates: 99.960223%\n", "cash_flows_Loss on disposals of property, plant and equipment: 99.960223%\n", "cash_flows_Dividends issues by a subsidiary to non-controlling interests: 99.960223%\n", "cash_flows_Cash and cash equivalents at the beginning of the period attributable to discounted operations: 99.960223%\n", "financial_position_Advances from subscribers: 99.960223%\n", "financial_position_Investments in debt instruments: 99.960223%\n", "financial_position_Current portion of long-term debt: 99.960223%\n", "financial_position_Contracts assets: 99.960223%\n", "financial_position_Trade receivables non-current portion: 99.960223%\n", "financial_position_Developed properties non-current portion: 99.960223%\n", "financial_position_Loan from Ministry of Finance current portion: 99.960223%\n", "cash_flows_Net proceeds from disposal of a subsidiary, net of cash disposed: 99.960223%\n", "cash_flows_Acquisition of non-controlling interests: 99.960223%\n", "cash_flows_Long-term and short-term loans, net: 99.960223%\n", "cash_flows_Write-off of PROJECT UNDER CONSTRCTION: 99.960223%\n", "cash_flows_Decline in value of investment properties: 99.960223%\n", "cash_flows_Reversal provision of expected credit losses related to prepayments and other receivables due to collections of legal cases: 99.960223%\n", "cash_flows_Derivative financial instruments: 99.960223%\n", "income_statement_Dividends income: 99.960223%\n", "income_statement_Gain on disposal of investments designated at FVPL: 99.960223%\n", "income_statement_Reversal provision of expected credit losses related to prepayments and other receivables due to collections of legal cases: 99.960223%\n", "cash_flows_Deprecation of right-of-use assets: 99.960223%\n", "cash_flows_Gain on disposal of investments designated as at FYPL: 99.960223%\n", "financial_position_Trade receivables - non-current: 99.960223%\n", "financial_position_Loan from Ministry of Finance: 99.960223%\n", "income_statement_Declined in value of investment properties: 99.960223%\n", "income_statement_Impairment of property and equipment: 99.960223%\n", "income_statement_Write-off of capital work-in-progress: 99.960223%\n", "cash_flows_Disposal of investments at FVTOCI: 99.960223%\n", "cash_flows_Impairment of gas cylinder to net realizable value: 99.960223%\n", "cash_flows_Reversal of other provision: 99.960223%\n", "cash_flows_Unrealized gain losses from investments in equity instruments: 99.960223%\n", "cash_flows_Actuarial losses on re-measurement of employee's defined benefit obligations: 99.960223%\n", "cash_flows_Proceed from selling investments held at amortized cost: 99.960223%\n", "comprehensive_income_Change in fair value of investment in equity instruments through other comprehensive income: 99.960223%\n", "cash_flows_Purchase of investments held at amortized cost: 99.960223%\n", "cash_flows_Financial assets at FVPL: 99.960223%\n", "cash_flows_Finance income received from investment at amortized cost: 99.960223%\n", "cash_flows_Dividends income from investments at FVTOCI: 99.960223%\n", "cash_flows_Addition of investments at FVTOCI: 99.960223%\n", "cash_flows_Follow up fees of term loan: 99.960223%\n", "cash_flows_Purchase of financial assets held at amortised cost: 99.960223%\n", "cash_flows_Loss on disposal of investment held at FVOCI: 99.960223%\n", "cash_flows_Disposal of(additions to) investments at FVTOCI: 99.960223%\n", "cash_flows_intangible assets transferred to expenses: 99.960223%\n", "comprehensive_income_Re measurement loss gain on employees defined benefits liabilities: 99.960223%\n", "financial_position_Work in progress: 99.960223%\n", "cash_flows_Work in progress: 99.960223%\n", "cash_flows_Write off (reversal) of property and equipment: 99.960223%\n", "cash_flows_Rent concession for leases: 99.960223%\n", "financial_position_Prepayments and other debit balances: 99.960223%\n", "cash_flows_Derecognition of ROU and Lease liability: 99.960223%\n", "cash_flows_ا Rent concession for leases: 99.960223%\n", "financial_position_Right-of-use assets, net: 99.960223%\n", "cash_flows_Purchase of financial assets held at amortized cost: 99.960223%\n", "cash_flows_Proceeds from disposal of financial assets held at fair value through other comprehensive income (FVTOCI): 99.960223%\n", "comprehensive_income_Share of other comprehensive loss from associates0: 99.960223%\n", "cash_flows_Reversal of provision for other receivables: 99.960223%\n", "cash_flows_Gain from derecognition of lease liabilities: 99.960223%\n", "cash_flows_employees benefits paid: 99.960223%\n", "cash_flows_Insurance Proceeds for business interruption losses: 99.960223%\n", "cash_flows_Insurarnce proceeds against damaged assets: 99.960223%\n", "cash_flows_adjustments for depreciation of property palnt and equipments: 99.960223%\n", "cash_flows_Adjustments for amortization of intangible assets: 99.960223%\n", "cash_flows_Write off property, plant and equipments: 99.960223%\n", "cash_flows_Adjustments for decrease (increase) in inventory: 99.960223%\n", "cash_flows_Adjustment for other non- current assets: 99.960223%\n", "cash_flows_Adjustment for accruals and other current liabilities: 99.960223%\n", "cash_flows_Addition to intangible assets: 99.960223%\n", "cash_flows_proceeds of debt: 99.960223%\n", "financial_position_Current portion of employess benefits: 99.960223%\n", "financial_position_right of use assets: 99.960223%\n", "financial_position_current portion of empolyees benfits: 99.960223%\n", "financial_position_Right -of- ues assets: 99.960223%\n", "financial_position_Cureent portion of lease liabilities: 99.960223%\n", "cash_flows_Adjustments for depreciation of property,plant and equipment: 99.960223%\n", "cash_flows_Adjustment for depreciation of right-of-use assets: 99.960223%\n", "cash_flows_Adjustment for amortisation of intangible assets: 99.960223%\n", "cash_flows_Adjustment for write -off property, plant and equipment: 99.960223%\n", "cash_flows_Adjustment for provision for write -off property, plant and equipment: 99.960223%\n", "cash_flows_Adjustment for gain on derecognition of right of use assets and lease liabilities: 99.960223%\n", "cash_flows_Reversal provision Expected credit loss CF: 99.960223%\n", "financial_position_Non-current assets classified as held for sale: 99.960223%\n", "cash_flows_impairment losses in inventory: 99.960223%\n", "income_statement_Loss of removal and destruction of crops: 99.960223%\n", "income_statement_Provision for loan guarantee in associates: 99.960223%\n", "income_statement_Impairment losses on vital assets: 99.960223%\n", "income_statement_Provision for expected credit losses: 99.960223%\n", "income_statement_Impairment on biological assets: 99.960223%\n", "cash_flows_Impairment losses on other receivables: 99.960223%\n", "cash_flows_Gain on valuation of financial investments: 99.960223%\n", "income_statement_Impairment losses on other receivables: 99.960223%\n", "income_statement_impairment losses in inventory: 99.960223%\n", "income_statement_Share of profit or loss of an associate: 99.960223%\n", "financial_position_Other assrts and receivables: 99.960223%\n", "cash_flows_Adjustment for drpreciation of property , plant and equipment: 99.960223%\n", "cash_flows_Adjustment for loss on disposal of property , plant and equipment: 99.960223%\n", "cash_flows_Change in inventories: 99.960223%\n", "cash_flows_Other current and non current assets: 99.960223%\n", "cash_flows_Accruals and other current liabilities: 99.960223%\n", "cash_flows_Insurance proceeds received for business: 99.960223%\n", "cash_flows_Net debt proceeds: 99.960223%\n", "cash_flows_Adjustment for accruals and other auurent liabililties: 99.960223%\n", "cash_flows_Finanace cost paid: 99.960223%\n", "cash_flows_Insurance proceeds received for business interruption losses: 99.960223%\n", "cash_flows_Insurance proceeds received for damaged assets: 99.960223%\n", "cash_flows_Payment of lease liabillties: 99.960223%\n", "financial_position_other current assets and receivables: 99.960223%\n", "cash_flows_FINANCE COST PAID: 99.960223%\n", "cash_flows_Adjustments for depreciation of property , plant and equipment: 99.960223%\n", "cash_flows_Adjustments for depreciation of right of use assets: 99.960223%\n", "cash_flows_Adjustment for write off property , plant and equipment: 99.960223%\n", "cash_flows_Adjustment for provision for write off property , plant and equipment: 99.960223%\n", "financial_position_other current assets: 99.960223%\n", "financial_position_Right-o f-use assets: 99.960223%\n", "cash_flows_COST PAID: 99.960223%\n", "financial_position_Cash and cash equivalent: 99.960223%\n", "cash_flows_Paid Financing cost: 99.960223%\n", "cash_flows_ROU Amortization: 99.960223%\n", "cash_flows_Financing Expenses Paid: 99.960223%\n", "comprehensive_income_Re-measurement (loss) gain on: 99.960223%\n", "cash_flows_Non cash post employees benefits expense: 99.960223%\n", "cash_flows_Interest income: 99.960223%\n", "cash_flows_Interest income received: 99.960223%\n", "cash_flows_changes in ECL Provision: 99.960223%\n", "comprehensive_income_Unrealized gain on financial assets at fair value: 99.960223%\n", "cash_flows_Proceeds from short-term borrowings: 99.960223%\n", "cash_flows_Adjustment for Write-off of property plant and equipment: 99.960223%\n", "cash_flows_Adjustment for Impairment of property, plant and equipment: 99.960223%\n", "financial_position_cash and cash equivalents: 99.960223%\n", "financial_position_trade receivable: 99.960223%\n", "financial_position_prepayments: 99.960223%\n", "financial_position_inventories: 99.960223%\n", "cash_flows_Adjustment for loss on disposal of property, plant and equipment: 99.960223%\n", "cash_flows_Adjustment for write-off of property, plant and equipment: 99.960223%\n", "financial_position_current portion of employees benefits: 99.960223%\n", "cash_flows_Gain on modification and termination of lease liability, net: 99.960223%\n", "cash_flows_Additions to right-of-use assets: 99.960223%\n", "cash_flows_Adjustment for depreciation of property, plant and equipment: 99.960223%\n", "cash_flows_Impairment in inventory value: 99.960223%\n", "cash_flows_Written off from provision Impairment of trade receivables: 99.960223%\n", "cash_flows_Proceeds from sale of Investments at fair value through profit or loss: 99.960223%\n", "cash_flows_Proceeds from sale of investment shares in associate company: 99.960223%\n", "income_statement_Gain from sold of shares of an associate company: 99.960223%\n", "income_statement_Gain from investment valuation at fair value: 99.960223%\n", "cash_flows_Proceeds from sale of investments in equity instruments at fair value through other comprehensive income: 99.960223%\n", "cash_flows_Payment of fees from financing costs for the year: 99.960223%\n", "cash_flows_Payment from provision for potential claims: 99.960223%\n", "financial_position_أمانات أسهم مزاد تحت التسوية: 99.960223%\n", "cash_flows_Chang In Unearned revenue: 99.960223%\n", "cash_flows_Zakat Adjustments: 99.960223%\n", "cash_flows_Cahng In Securities auction shares under settlement: 99.960223%\n", "cash_flows_Chang In Provision for expected credit losses: 99.960223%\n", "cash_flows_Change In Due to related parties: 99.960223%\n", "cash_flows_provision of the expected credit loss: 99.960223%\n", "cash_flows_Employees benefits - Paid: 99.960223%\n", "cash_flows_WIP Additions: 99.960223%\n", "income_statement_Impairment on trees: 99.960223%\n", "financial_position_Accumulated changes in other comprehensive income: 99.960223%\n", "cash_flows_Chang in Securities auction shares under settlement: 99.960223%\n", "cash_flows_Dividends received from investment in subsidiary: 99.960223%\n", "cash_flows_unreceived portion of associate companies cash dividends: 99.960223%\n", "cash_flows_Proceeds from sale of investment at fair value through profit or loss: 99.960223%\n", "income_statement_Gain from sale of shares of an associate company: 99.960223%\n", "cash_flows_Written off from provision Impairment in inventory value: 99.960223%\n", "income_statement_Revaluation gains from investment at fair value through profit or loss: 99.960223%\n", "comprehensive_income_Groups share of Re measuring profits of defined benefit plan of the associate company: 99.960223%\n", "cash_flows_Proceeds from dividends from investments at fair value: 99.960223%\n", "comprehensive_income_Change in fair value of derivative financial instruments in associate company: 99.960223%\n", "cash_flows_Gain from sale of shares of an associate co: 99.960223%\n", "cash_flows_Purchase of Investment at Fair value through profit or loss: 99.960223%\n", "comprehensive_income_Company s share in change for fair value of cash flow hedge in associate company: 99.960223%\n", "cash_flows_share of results of associate companies Accounted by equity method: 99.960223%\n", "cash_flows_Dividends from equity instruments at fair value: 99.960223%\n", "cash_flows_Due to related parties: 99.960223%\n", "cash_flows_Settlement of lease liability against other income: 99.960223%\n", "cash_flows_Depreciations of right of use assets: 99.960223%\n", "cash_flows_Expected credit loss provision - charged: 99.960223%\n", "cash_flows_Expected credit losses provision during the year: 99.960223%\n", "cash_flows_Potential claims provision during the year: 99.960223%\n", "cash_flows_Payment For Due to related party: 99.960223%\n", "cash_flows_Change In Due to related party: 99.960223%\n", "cash_flows_Chang in Depreciations of investment property: 99.960223%\n", "cash_flows_Chang in Provision for expected credit losses: 99.960223%\n", "cash_flows_Change In Provision for impairment of other debit balances: 99.960223%\n", "cash_flows_Employees defined benefit obligation Paid: 99.960223%\n", "cash_flows_Non-Cash items Settlement of lease liability against other income: 99.960223%\n", "cash_flows_Provision for impairment of other debit balances: 99.960223%\n", "cash_flows_Impairment of goodwill - losses: 99.960223%\n", "cash_flows_Depreciations of investment property: 99.960223%\n", "cash_flows_Gain from disposal of right of use assets: 99.960223%\n", "cash_flows_Financing cost obligations during the year - Paid: 99.960223%\n", "cash_flows_Provision for potential claims - Paid: 99.960223%\n", "cash_flows_Due from related party: 99.960223%\n", "financial_position_Groups share in revaluation reserve for change in fair value of cash flow hedge: 99.960223%\n", "financial_position_Deposits with SAMA: 99.960223%\n", "financial_position_Lease liability: 99.960223%\n", "cash_flows_Charge for impairment on investments held at amortized cost: 99.960223%\n", "financial_position_Non-controlling interest put option: 99.960223%\n", "cash_flows_Balance due to Capital Market Authority: 99.960223%\n", "cash_flows_Clearing participant financial asset: 99.960223%\n", "cash_flows_Reversal of impairment in associates: 99.960223%\n", "financial_position_Deposits with Saudi Central Bank: 99.960223%\n", "cash_flows_Dividend income received: 99.960223%\n", "cash_flows_Commission income on SUKUK: 99.960223%\n", "cash_flows_Commission from SAMA Bills and deposits received: 99.960223%\n", "financial_position_Clearing participant financial liabilitie: 99.960223%\n", "cash_flows_Adjustments in increase (decrease) in Trade payables and other liabilities: 99.960223%\n", "financial_position_Balances due to Capital Market Authority: 99.960223%\n", "income_statement_Investments income: 99.960223%\n", "cash_flows_Provision for employees end-of-service benefits: 99.960223%\n", "cash_flows_Share of loss in equity-accounted investee: 99.960223%\n", "cash_flows_Balance due to the Capital Market Authority: 99.960223%\n", "cash_flows_Margin deposit from clearing participant: 99.960223%\n", "cash_flows_Members contribution to clearing house fund: 99.960223%\n", "cash_flows_Deposits with Saudi Central Bank (SAMA): 99.960223%\n", "cash_flows_Member contribution to clearing house fund: 99.960223%\n", "cash_flows_Additional investment in equity-accounted investee: 99.960223%\n", "cash_flows_Proceeds from maturity of sukuk: 99.960223%\n", "financial_position_Equity-accounted investee: 99.960223%\n", "cash_flows_Commission from SAMA Bills received: 99.960223%\n", "financial_position_Margin deposits from clearing participant: 99.960223%\n", "cash_flows_Zakat: 99.960223%\n", "cash_flows_ZAKAT: 99.960223%\n", "income_statement_Impairment loss on financial assets: 99.960223%\n", "cash_flows_Proceeds on disposal of oil and gas properties: 99.960223%\n", "cash_flows_proceeds from sale of equity intrest in an associate: 99.960223%\n", "income_statement_Miscellaneous income, net: 99.960223%\n", "income_statement_Reversal of impairment loss: 99.960223%\n", "cash_flows_Proceeds from sale of equity interest in an associate: 99.960223%\n", "cash_flows_Proceeds from borrowings: 99.960223%\n", "cash_flows_Proceeds from sale of affiliates: 99.960223%\n", "cash_flows_Adjustments for increase decrease in Trade payables and other laibilties: 99.960223%\n", "financial_position_Contract assets - Current: 99.960223%\n", "financial_position_Contract Assets Non Current: 99.960223%\n", "cash_flows_Proceed from sale of subsidiary: 99.960223%\n", "financial_position_Contract assets current: 99.960223%\n", "cash_flows_Proceeds from short term loan: 99.960223%\n", "cash_flows_Repayments of short term loans: 99.960223%\n", "cash_flows_Gain on modification of borrowings: 99.960223%\n", "cash_flows_Adjustment for allowance for doubtful receivables, net: 99.960223%\n", "cash_flows_Zakat expense: 99.960223%\n", "cash_flows_Lease obligations paid: 99.960223%\n", "income_statement_Provision for reversal of impairment of financial assets: 99.960223%\n", "cash_flows_Provision for reversal of impairment of financial asset: 99.960223%\n", "cash_flows_Net movement in short-term and long-term loan: 99.960223%\n", "financial_position_Investment in long-term sukuk: 99.960223%\n", "financial_position_Loans and lease liabites: 99.960223%\n", "cash_flows_Cash and cash equivalents of disposal group classified as held for sale: 99.960223%\n", "cash_flows_Gain on disposal group sale of Alanmaa: 99.960223%\n", "cash_flows_Zakat and income tax paid: 99.960223%\n", "financial_position_Time deposit: 99.960223%\n", "cash_flows_Finance costs paid: 99.920446%\n", "financial_position_Short term investment at amortized cost: 99.920446%\n", "cash_flows_Income tax paid.6: 99.920446%\n", "cash_flows_Income earned from insurance claim1: 99.920446%\n", "cash_flows_Gain on adjustment to provision for decommissioning, site rehabilitation and dismantling obligations1: 99.920446%\n", "cash_flows_Adjustment to intangible assets3: 99.920446%\n", "cash_flows_Obsolete spare parts written-off3: 99.920446%\n", "financial_position_Lease liabilities2: 99.920446%\n", "cash_flows_Impairment of mine properties: 99.920446%\n", "cash_flows_Impairment of right-of-use assets4: 99.920446%\n", "equity_changes_Treasury share transactions: 99.920446%\n", "equity_changes_Share-based payment transactions: 99.920446%\n", "financial_position_Right to use assets: 99.920446%\n", "cash_flows_Adjustments for gain on sale of oil and gas properties: 99.920446%\n", "cash_flows_Change in the main spare parts (machinery and ovens): 99.920446%\n", "financial_position_Provision for land restoration cost: 99.920446%\n", "cash_flows_Provision for obsolescence of main spare parts (machinery and ovens): 99.920446%\n", "cash_flows_Cash or loan received from shareholders: 99.920446%\n", "cash_flows_Adjustments to Intangible assets written off: 99.920446%\n", "cash_flows_Realized gain from financial assets at fair value through profit or loss: 99.920446%\n", "cash_flows_Disposal or purchase of financial assets at fair value through profit or loss: 99.920446%\n", "financial_position_Lease liabilities current portion: 99.920446%\n", "financial_position_Advances: 99.920446%\n", "cash_flows_Change in financial assets at fair value through profit or loss: 99.920446%\n", "cash_flows_Loss on disposal of subsidiary: 99.920446%\n", "financial_position_Other Property and equipment: 99.920446%\n", "financial_position_other non- current libillity: 99.920446%\n", "cash_flows_finance cost paid: 99.920446%\n", "cash_flows_Repayment of employees home ownership receivables: 99.920446%\n", "cash_flows_Proceeds of equity instruments at fair value through profit and loss: 99.920446%\n", "cash_flows_finance costs of lease liabilities: 99.920446%\n", "cash_flows_Adjustment for decrease (increase) in prepayments and other current assets: 99.920446%\n", "cash_flows_net movment in short term deposits: 99.920446%\n", "cash_flows_Adjustments for decrease (increase) in rent receivables: 99.920446%\n", "cash_flows_Provision for Bad-Debt: 99.920446%\n", "cash_flows_Due to Bank: 99.920446%\n", "cash_flows_Repayment of Murabaha loans: 99.920446%\n", "income_statement_Other (expenses) income-net: 99.920446%\n", "cash_flows_Impairment loss on Financial insturment: 99.920446%\n", "cash_flows_A,mourtazition of rights of use assets: 99.920446%\n", "cash_flows_Commission from SAMA Bills: 99.920446%\n", "financial_position_Members contribution to clearing house funds: 99.920446%\n", "financial_position_Employees benefits current: 99.920446%\n", "cash_flows_Proceeds from Murabaha loans: 99.920446%\n", "comprehensive_income_Share of post-employment benefit obligations remeasurement from joint ventures and associates: 99.920446%\n", "financial_position_Revaluation reserve for change in fair value of cash flow hedge: 99.920446%\n", "comprehensive_income_Company share in investment at fair value through other comprehensive income in associate company: 99.920446%\n", "cash_flows_Dividends from investments at fair value: 99.920446%\n", "financial_position_Groups share in investment at fair value through other comprehensive income in associate company: 99.920446%\n", "cash_flows_Commission income: 99.920446%\n", "cash_flows_Commission income received on investment at amortised cost: 99.920446%\n", "cash_flows_Commission received on time deposits: 99.920446%\n", "cash_flows_Finance cost paid of lease liabilities: 99.920446%\n", "cash_flows_Interest on lease liabilities: 99.920446%\n", "cash_flows_Collection against employees loans: 99.920446%\n", "cash_flows_Adjustments for impairment loss on trade receivables: 99.920446%\n", "income_statement_Reversal of impairment in investment in associates: 99.920446%\n", "financial_position_Balance due to Capital Market Authority: 99.920446%\n", "cash_flows_Realized gain on sale of investments: 99.920446%\n", "cash_flows_Unrealized gain on investments: 99.920446%\n", "cash_flows_Purchase of investments: 99.920446%\n", "cash_flows_Adjustments for payments and other assets: 99.920446%\n", "cash_flows_adjsutmetns for Accured expenses and other liabilities: 99.920446%\n", "financial_position_Current portion of long-term borrowings: 99.920446%\n", "cash_flows_Provision for employee benefits obligations: 99.920446%\n", "cash_flows_Allowance for inventory obsolescence and slow moving: 99.920446%\n", "income_statement_Reversal of impairment loss on property, plant and equipment: 99.920446%\n", "income_statement_Reversal of impairment loss on property, plant, and equipment: 99.920446%\n", "cash_flows_Income from financial investment at fair value through profit or loss: 99.920446%\n", "cash_flows_Change in lease liabilities: 99.920446%\n", "cash_flows_Reversed zakat provision for prior years: 99.920446%\n", "financial_position_Right to use assets Net: 99.920446%\n", "financial_position_Lease liabilities Noncurrent: 99.920446%\n", "financial_position_Provision for End of Service Indemnity: 99.920446%\n", "cash_flows_Impairment loss on intangible assets: 99.920446%\n", "cash_flows_Loss on disposals during the year: 99.920446%\n", "cash_flows_Purchase of vehicles: 99.920446%\n", "cash_flows_Purchase of main spare parts: 99.920446%\n", "cash_flows_Adjustment for previous years: 99.920446%\n", "financial_position_Obligation for equity accounted investees: 99.920446%\n", "cash_flows_Financial assets at FVTPL: 99.920446%\n", "cash_flows_Dividends income received from investments at FVTOCI: 99.920446%\n", "cash_flows_Proceeds from disposal of property, plant, and equipment: 99.920446%\n", "cash_flows_Investment made during the year: 99.920446%\n", "cash_flows_Interest income received from investment at amortised cost: 99.920446%\n", "cash_flows_Adjustments for decrease (increase) in Allowance for doubtful trade accounts receivable: 99.920446%\n", "cash_flows_Adjustments for Employees' defined benefits paid: 99.920446%\n", "cash_flows_Term Loan related party: 99.920446%\n", "income_statement_Other adjustments to reconcile profit (loss): 99.920446%\n", "income_statement_Gain on revaluation of investments designated at FVPL: 99.920446%\n", "cash_flows_Provision for(reversal of) expected credit losses: 99.920446%\n", "cash_flows_Amortisation of prepaid upfront fees on term loan: 99.920446%\n", "cash_flows_PROVISION OF EXPECTED CREDIT LOSS EXPENSE: 99.920446%\n", "cash_flows_PROVISION OF OBSOLESCENCE INVENTORY EXPENSE: 99.920446%\n", "cash_flows_FINANCE COST: 99.920446%\n", "cash_flows_EMPLOYEES END -OF-SERVICE BENEFITS PAID: 99.920446%\n", "cash_flows_Changes in Inventories: 99.920446%\n", "cash_flows_Depreciation of investment properties: 99.920446%\n", "cash_flows_DISPOSAL OF INVESTMENT IN EQUITY INSTRUMENTS AT FVTPL: 99.920446%\n", "cash_flows_Gains on changes in fair value of investment equity instruments: 99.920446%\n", "financial_position_Amounts due from related party: 99.920446%\n", "income_statement_Other income: 99.920446%\n", "cash_flows_Loss from disposal of property, plant and equipment: 99.920446%\n", "cash_flows_Write-off for receivables provision: 99.920446%\n", "cash_flows_Amortization of right of use asset: 99.920446%\n", "cash_flows_Time Deposite: 99.920446%\n", "cash_flows_Depreciation of Investment properties: 99.920446%\n", "cash_flows_Depreciation of right of use asset: 99.920446%\n", "cash_flows_Gain from investment valuation at fair value through profit or loss: 99.920446%\n", "comprehensive_income_The Groups share of the profit on remeasurement of employee defined benefit obligations of the associate: 99.920446%\n", "comprehensive_income_The Group share of profits from investments in equity instruments at fair value through other comprehensive income of the associate: 99.920446%\n", "comprehensive_income_The Group share of change in fair value of the cash flow risks hedging of the associate: 99.920446%\n", "cash_flows_Gain from investment valuation at fair value through profit and loss: 99.920446%\n", "cash_flows_Financing cost right of use assets: 99.920446%\n", "cash_flows_Proceeds from sale of Investment at fair value through profit or loss: 99.920446%\n", "cash_flows_Purchase of short time deposit: 99.920446%\n", "cash_flows_Purchase of property, plant and equipment and Capital work in progress: 99.920446%\n", "cash_flows_Provision for obsolescence inventory expense: 99.920446%\n", "financial_position_Investment in financial assets: 99.920446%\n", "cash_flows_Provisions n longer required: 99.920446%\n", "cash_flows_Gain on change in fair value of investments through profit or loss: 99.920446%\n", "cash_flows_Gain on sale property, plant and equipment: 99.920446%\n", "cash_flows_provision no ionger required: 99.920446%\n", "cash_flows_Chang in Due to related party: 99.920446%\n", "cash_flows_Zakat adjustments: 99.920446%\n", "income_statement_Fair value gain (loss) on investment in financial assets at FVTPL: 99.920446%\n", "cash_flows_Loss on investment in financial assets at fair value through profit or loss: 99.920446%\n", "cash_flows_Decrease in spare parts: 99.920446%\n", "cash_flows_Payment from employees benefit during the year: 99.920446%\n", "cash_flows_Proceeds from disposal of subsidiaries: 99.920446%\n", "cash_flows_Addition in cash and cash equivalents due to acquisition and establishment of subsidiaries: 99.920446%\n", "cash_flows_Provided reversal of expected credit loss provision: 99.920446%\n", "cash_flows_Employees defined benefit obligation - Paid: 99.920446%\n", "cash_flows_Interest income received from investments at amortised cost: 99.920446%\n", "cash_flows_Expenditure on oil and gas assets: 99.920446%\n", "cash_flows_Proceeds from investments at fair value through profit or loss: 99.920446%\n", "financial_position_Long term facilities: 99.920446%\n", "cash_flows_Adjustments for Interest income from investment at amortised cost: 99.920446%\n", "cash_flows_Purchase investments at fair value through profit or loss: 99.920446%\n", "financial_position_Deferred tax asset: 99.920446%\n", "cash_flows_Investment in an associate: 99.920446%\n", "income_statement_Interest income from investments at amortised cost: 99.920446%\n", "cash_flows_Adjustments for Interest income from investments at amortised cost: 99.920446%\n", "cash_flows_Finance cost payment relating to term loans: 99.920446%\n", "cash_flows_Write off property and equipment: 99.920446%\n", "cash_flows_Gain on derivative instrument at FVPL: 99.920446%\n", "cash_flows_provision for replacing cylinders and others: 99.920446%\n", "financial_position_Financial assets held at fair value through other: 99.920446%\n", "financial_position_Lease liabilitiess: 99.920446%\n", "cash_flows_Intangible assets: 99.920446%\n", "financial_position_Accounts receivable: 99.920446%\n", "cash_flows_Movement in obligations under capital lease: 99.920446%\n", "financial_position_Financial assets held at fair value through other comprehensive income (FVTOCI): 99.920446%\n", "financial_position_Financial assets held at amortised cost: 99.920446%\n", "financial_position_Prepayments and other assets - Nnon current portion: 99.920446%\n", "financial_position_Lease liabilities.: 99.920446%\n", "financial_position_Lease liabilities1: 99.920446%\n", "comprehensive_income_Change in fair value of financial assets held at fair value through other comprehensive income (FVTOCI): 99.920446%\n", "financial_position_Obligations under finance lease1: 99.920446%\n", "comprehensive_income_Re-measurement gain on defined benefit plans: 99.920446%\n", "cash_flows_Investment income from time deposits received: 99.920446%\n", "cash_flows_Changes in expected credit losses: 99.920446%\n", "cash_flows_paid dividends: 99.920446%\n", "cash_flows_paid payable dividends: 99.920446%\n", "financial_position_Suggested Dividends: 99.920446%\n", "financial_position_suggested dividends: 99.920446%\n", "cash_flows_Adjustments written-off of intangible assets: 99.920446%\n", "financial_position_Current portion of debt: 99.920446%\n", "financial_position_Current portion of employee benefits: 99.920446%\n", "financial_position_Trade payables: 99.920446%\n", "financial_position_Zakat provision: 99.920446%\n", "cash_flows_prepayments for PPE purchases: 99.920446%\n", "cash_flows_Deferred Revenue from additional sales program: 99.920446%\n", "cash_flows_Investment in an equity accounted investee: 99.920446%\n", "cash_flows_The write-off of property and equipment: 99.920446%\n", "cash_flows_Intangible assets written off: 99.920446%\n", "cash_flows_Deferred Tax: 99.920446%\n", "cash_flows_Biological assets CF: 99.920446%\n", "cash_flows_Adjustment for employees benefits: 99.920446%\n", "cash_flows_Assets classified as held for sale: 99.920446%\n", "financial_position_Vital assets: 99.920446%\n", "financial_position_Non - current biological assets: 99.920446%\n", "income_statement_Losses of capital projects: 99.920446%\n", "cash_flows_Depreciation of biologicalassets: 99.920446%\n", "cash_flows_Payment of lease liabilities: 99.920446%\n", "cash_flows_Receipt of government grant: 99.920446%\n", "cash_flows_Losses of capital projects: 99.920446%\n", "cash_flows_Provision for loan guarantee in associates: 99.920446%\n", "cash_flows_Impairment losses on vital assets: 99.920446%\n", "income_statement_Differences revaluation of crop stocks at harvest point: 99.920446%\n", "cash_flows_Amortization of biological assets Cash Flow: 99.920446%\n", "cash_flows_Loss on termination of lease contracts: 99.920446%\n", "cash_flows_Gain on termination of lease: 99.920446%\n", "financial_position_Amount due from an associate: 99.920446%\n", "cash_flows_Financial assets held at fair value through profit or loss (FVTPL): 99.920446%\n", "cash_flows_Proceeds from disposal of financial assets held at amortized cost: 99.920446%\n", "cash_flows_Dividends income received from financial assets at fair value through other comprehensive income (FVTOCI): 99.920446%\n", "cash_flows_Investment in equity accounted investee: 99.920446%\n", "cash_flows_Amortisation on right-of-use assets: 99.920446%\n", "cash_flows_Amount due to related parties: 99.920446%\n", "financial_position_Concession contract receivables: 99.920446%\n", "cash_flows_Income from investment at amortized cost: 99.920446%\n", "cash_flows_Rent Income from investment properties: 99.920446%\n", "cash_flows_Income from short - term Murabaha time deposits: 99.920446%\n", "cash_flows_Impairment on investment at amortized cost: 99.920446%\n", "cash_flows_Accrued expenses and other current liabilities: 99.920446%\n", "income_statement_Deferred tax income (expense): 99.920446%\n", "cash_flows_Finance income from net investment in finance lease: 99.920446%\n", "financial_position_Investment at fair value through other comprehensive income1: 99.920446%\n", "cash_flows_Amortisation of deferred income1: 99.920446%\n", "cash_flows_Other non current assets: 99.920446%\n", "financial_position_Due to a related party - loan: 99.920446%\n", "financial_position_Lease liabilities3: 99.920446%\n", "financial_position_Liabilities relating to disposal group classified: 99.920446%\n", "financial_position_Due to related party loan: 99.920446%\n", "financial_position_Investment in long-term sukuks: 99.920446%\n", "cash_flows_Gain on derecognition of property, plant and equipment1: 99.920446%\n", "cash_flows_Adjustments for income from financial asset held at FVTPL: 99.920446%\n", "financial_position_Loans and lease liabilities Non Current: 99.920446%\n", "financial_position_Time deposits: 99.920446%\n", "cash_flows_Disposal of a subsidiary: 99.920446%\n", "cash_flows_Cash received for settlement of a related party balance: 99.920446%\n", "financial_position_Due to a related party Loan: 99.920446%\n", "income_statement_Impairment charge on non-financial assets: 99.920446%\n", "comprehensive_income_Other comprehensive income, hedges of net investment in foreign operations: 99.920446%\n", "cash_flows_Acquisition of intangible asset: 99.920446%\n", "cash_flows_Additions to Vehicles, net of CWIP: 99.920446%\n", "income_statement_Impairment loss on other receivable: 99.920446%\n", "cash_flows_Impairment loss on other receivable: 99.920446%\n", "cash_flows_Paid to purchase intangible assets: 99.920446%\n", "financial_position_Cumulative changes in the items of other comprehensive income: 99.920446%\n", "cash_flows_Proceeds from disposal of investments: 99.920446%\n", "cash_flows_Special commission income: 99.920446%\n", "income_statement_Adjustments for decrease (increase) in investments held as fair value through statement of income [FVSI]: 99.920446%\n", "income_statement_Proceeds from maturity and sale of non-trading investments: 99.920446%\n", "income_statement_Severance fee: 99.920446%\n", "cash_flows_Provision for severance fees: 99.920446%\n", "cash_flows_Employee benefit paid: 99.920446%\n", "cash_flows_Creation (reversal) of provision expected credit losses on trade receivable: 99.920446%\n", "cash_flows_Reversal of other provisions: 99.920446%\n", "cash_flows_Reduction of provision for expected credit losses on trade receivables: 99.920446%\n", "financial_position_Other investment: 99.920446%\n", "cash_flows_Other Investement: 99.920446%\n", "cash_flows_Gain on modification of leases: 99.920446%\n", "income_statement_Gain on modification of borrowings: 99.920446%\n", "cash_flows_Expected credit loss (ECL): 99.920446%\n", "cash_flows_Addition in mine properties: 99.920446%\n", "income_statement_Disclosure of other non-cash information [text block]: 99.920446%\n", "income_statement_Reversal of Impairment in Property,plant and Equipment: 99.920446%\n", "comprehensive_income_Reclassification adjustment on available-for-sale financial assets due to sale: 99.920446%\n", "cash_flows_Proceeds from sale of subsidiaries: 99.920446%\n", "cash_flows_Increase in expected credit loss allowance on trade and other receivables1: 99.880668%\n", "cash_flows_Prepayments and other assets: 99.880668%\n", "cash_flows_Short-term investments mad: 99.880668%\n", "cash_flows_Deferred income and contract liabilities: 99.880668%\n", "cash_flows_Payment against amount due to related parties: 99.880668%\n", "cash_flows_Adjustments for decrease (increase) in other assets and receivables: 99.880668%\n", "cash_flows_Cash and cash equivalents through business combination: 99.880668%\n", "cash_flows_Other Provisions: 99.880668%\n", "cash_flows_Charge for credit losses on accounts receivable: 99.880668%\n", "cash_flows_Commission from deposits with SAMA: 99.880668%\n", "income_statement_Reversal of provision no longer required: 99.880668%\n", "income_statement_Impairment loss: 99.880668%\n", "cash_flows_Additions to Vehicles: 99.880668%\n", "cash_flows_Long term loan to joint venture: 99.880668%\n", "cash_flows_Provision for impairment of trade receivables: 99.880668%\n", "cash_flows_Gain on disposal of a subsidiary: 99.880668%\n", "cash_flows_Proceeds from long-term loans: 99.880668%\n", "cash_flows_Expected credit loss allowance8: 99.880668%\n", "cash_flows_Inventories.3: 99.880668%\n", "cash_flows_Net foreign exchange gain: 99.880668%\n", "financial_position_Assets relating to disposal group classified as held for sale: 99.880668%\n", "cash_flows_Depreciation of assets of right of use: 99.880668%\n", "cash_flows_Intangible assets written-off: 99.880668%\n", "financial_position_Trade and other receivables - current portion: 99.880668%\n", "financial_position_Installment sales receivables - current portion: 99.880668%\n", "financial_position_Right Of Use: 99.880668%\n", "financial_position_Trade and other receivables - noncurrent portion: 99.880668%\n", "financial_position_Income tax on continuing operations for period: 99.880668%\n", "cash_flows_Provision for gas cylinder inventory: 99.880668%\n", "cash_flows_Reversal of provision for expected credit losses: 99.880668%\n", "cash_flows_Dividends income received from associates: 99.880668%\n", "cash_flows_Settlement of finance lease liability: 99.880668%\n", "cash_flows_Cash in Portfolio - investments at fair value through profit or loss: 99.880668%\n", "cash_flows_Proceed from sale of investments in equity instruments: 99.880668%\n", "cash_flows_Dividends received from investments in associates: 99.880668%\n", "cash_flows_Dividends received from investments in equity instruments: 99.880668%\n", "cash_flows_Differences revaluation of crop stocks at harvest point: 99.880668%\n", "comprehensive_income_Income tax (charge) credit relating to unrealised losses on available-for-sale financial assets, net: 99.880668%\n", "income_statement_Cost of unutilized production capacity: 99.880668%\n", "financial_position_Financial assets at fair value through profit or loss: 99.880668%\n", "cash_flows_Paid out of employees end of service benefits: 99.880668%\n", "cash_flows_Zakat Expense: 99.880668%\n", "cash_flows_End of service benefits: 99.880668%\n", "financial_position_Investment in Islamic financing contracts - non current: 99.880668%\n", "financial_position_Installment sales receivables - noncurrent portion: 99.880668%\n", "financial_position_Deferred revenue from additional service program - current portion: 99.880668%\n", "financial_position_Lease Liability- current part: 99.880668%\n", "financial_position_Deferred revenue from additional service program - noncurrent portion: 99.880668%\n", "financial_position_Lease Liability- Non current part: 99.880668%\n", "financial_position_other assets and receivables: 99.880668%\n", "financial_position_noncurrent portion for long term loan: 99.880668%\n", "financial_position_Changes in OCI: 99.880668%\n", "cash_flows_Paid empolyee benefits: 99.880668%\n", "financial_position_accumulated changes in OCI: 99.880668%\n", "cash_flows_end of service paid: 99.880668%\n", "cash_flows_zakat paid: 99.880668%\n", "cash_flows_dividends payable paid: 99.880668%\n", "cash_flows_financing cost paid: 99.880668%\n", "financial_position_prepaid for fixed assets purchases: 99.880668%\n", "financial_position_Obligations under finance lease: 99.880668%\n", "comprehensive_income_Premeasurement of employee defined benefit obligation: 99.880668%\n", "financial_position_right-of-use assets: 99.880668%\n", "financial_position_Biological assets: 99.880668%\n", "financial_position_Provision for guarantee loan related to associate: 99.880668%\n", "financial_position_Dismantling provision LIB: 99.880668%\n", "cash_flows_Biological assets current: 99.880668%\n", "cash_flows_right-of-use assets: 99.880668%\n", "cash_flows_Finance cost on lease liability: 99.880668%\n", "financial_position_Biological assets current: 99.880668%\n", "cash_flows_Increase in extended warranty program: 99.880668%\n", "cash_flows_Settlement of finance lease contract: 99.880668%\n", "cash_flows_Share of loss from associate: 99.880668%\n", "cash_flows_Proceeds from disposal of subsidiary: 99.880668%\n", "cash_flows_Expenditure on mine development: 99.880668%\n", "cash_flows_Deferred revenue: 99.880668%\n", "equity_changes_Changes in non-controlling interest: 99.880668%\n", "cash_flows_Lease liability settlement against other income: 99.880668%\n", "income_statement_Gain on disposal of investment in financial assets at FVTPL: 99.880668%\n", "cash_flows_Decrease in contract liabilities: 99.880668%\n", "financial_position_Due from a related party: 99.880668%\n", "cash_flows_Dividends paid to the Company shareholders: 99.880668%\n", "cash_flows_Purchase of short term time deposit: 99.880668%\n", "cash_flows_Proceeds from the disposal of Property, Plant and Equipment: 99.880668%\n", "cash_flows_Purchase of short-term time deposit: 99.880668%\n", "cash_flows_Financing costs: 99.880668%\n", "cash_flows_Provision for of obsolescence inventory expense: 99.880668%\n", "cash_flows_Provision for of expected credit loss expense: 99.880668%\n", "financial_position_Employees benefits: 99.880668%\n", "cash_flows_Dividends received from investments in associate companies: 99.880668%\n", "financial_position_Revaluation reserve of investments in equity instruments at fair value through other comprehensive income in associate: 99.880668%\n", "cash_flows_Unrealized gain on equity instruments at fair value through profit or loss: 99.880668%\n", "cash_flows_Loss on derecognition of right of use assets: 99.880668%\n", "cash_flows_Realized gain on investments at fair value through other comprehensive income: 99.880668%\n", "cash_flows_Depreciation on investment properties: 99.880668%\n", "cash_flows_Provision of expected credit loss expense: 99.880668%\n", "cash_flows_Adjustment for amortization of intangible assets: 99.880668%\n", "cash_flows_Employees benefits: 99.880668%\n", "income_statement_Impairment for prepayments: 99.880668%\n", "cash_flows_Impairment provision for prepayments: 99.880668%\n", "cash_flows_Expected credit losses: 99.880668%\n", "cash_flows_Gain on derecognition of right-of-use assets: 99.880668%\n", "cash_flows_Impairment loss on the trade receivables: 99.880668%\n", "cash_flows_The impairment loss on trade receivables: 99.880668%\n", "cash_flows_Unrealised gain on investments at fair value through profit or loss: 99.880668%\n", "cash_flows_Collection against employee loans: 99.880668%\n", "income_statement_Impairment losses on financial assets: 99.880668%\n", "comprehensive_income_Net losses gain from equity instruments at fair value through other comprehensive income: 99.880668%\n", "cash_flows_Employees end-of-service benefits paid: 99.880668%\n", "financial_position_Clearing participant financial liabilities: 99.880668%\n", "cash_flows_Cash acquired on acquisition of subsidiary: 99.880668%\n", "cash_flows_Dividends received from investment in associate: 99.880668%\n", "financial_position_Company s share in investment at fair value through other comprehensive income in associate company: 99.880668%\n", "comprehensive_income_Change in value of investment in equity instruments at fair value: 99.880668%\n", "cash_flows_Proceeds from SIDF loan: 99.880668%\n", "financial_position_SIDF Loan: 99.880668%\n", "cash_flows_Movement in long term retention payable: 99.880668%\n", "cash_flows_Net movement in SIDF loan: 99.880668%\n", "cash_flows_Repayments of loans by employees: 99.880668%\n", "comprehensive_income_Deferred tax to re-measurements loss: 99.880668%\n", "comprehensive_income_Re-measurement(loss) gain on defined employee benefit obligation: 99.880668%\n", "cash_flows_(Reversal) expected credit loss: 99.880668%\n", "cash_flows_Zakat and incom tax charges: 99.880668%\n", "cash_flows_Provision for slow moving inventory: 99.880668%\n", "cash_flows_provision for impairment of trade receivable: 99.880668%\n", "cash_flows_provision for slow moving and obsolete: 99.880668%\n", "income_statement_Fair value gain loss on derivative financial instruments measured at fair value through profit and loss: 99.880668%\n", "cash_flows_adjustments for provisions for slow moving inventories: 99.880668%\n", "financial_position_Share closing price at the last trading day of financial year (in numbers): 99.880668%\n", "cash_flows_(Increase) decrease in other non-current assets: 99.880668%\n", "cash_flows_Income from financial assets at fair value through other comprehensive income: 99.880668%\n", "financial_position_Long term prepayments: 99.880668%\n", "cash_flows_Share of results from associate companies using equity method: 99.880668%\n", "cash_flows_Employees' defined benefits liabilities paid: 99.880668%\n", "cash_flows_Change in provision of land restoration cost: 99.880668%\n", "income_statement_Allowance expense for doubtful debts: 99.880668%\n", "cash_flows_Realized and unrealized gain from financial assets at fair value through profit or loss -trading: 99.880668%\n", "financial_position_Capital works in progres: 99.880668%\n", "financial_position_Current lease liability: 99.880668%\n", "cash_flows_Provision for obsolescence of spare parts: 99.880668%\n", "financial_position_Investments in debt and equity instruments: 99.880668%\n", "cash_flows_Dividend received from non-integral joint ventures and associates: 99.880668%\n", "financial_position_Right of return assets: 99.880668%\n", "cash_flows_Depreaction of right-of-use-assets: 99.880668%\n", "cash_flows_Adjustments for decrease (increase) in Accounts receivable and prepayments: 99.880668%\n", "cash_flows_Non-controlling interest, net: 99.880668%\n", "cash_flows_Provision for impairment of financial assets: 99.880668%\n", "financial_position_Time Deposit: 99.840891%\n", "comprehensive_income_Income tax (charge) credit relating to cash flow hedges: 99.840891%\n", "cash_flows_Dividends income: 99.840891%\n", "income_statement_Expected credit loss allowance1: 99.840891%\n", "cash_flows_ECL allowance on trade and other receivables1: 99.840891%\n", "financial_position_long term receivable and perpayments: 99.840891%\n", "cash_flows_hntrest incom on deposits: 99.840891%\n", "financial_position_Long-term receivables and prepayments: 99.840891%\n", "cash_flows_Depreciation on right of use assets: 99.840891%\n", "cash_flows_Withdrawals from short-term deposits: 99.840891%\n", "income_statement_Impairment loss on trade and other receivables: 99.840891%\n", "cash_flows_Adjustments for impairment loss (reversal of impairment loss) on Trade and other receivables: 99.840891%\n", "financial_position_Capital works in progress: 99.840891%\n", "financial_position_Right to use assets, Net: 99.840891%\n", "cash_flows_Proceeds against acquisition of non-controlling interests: 99.840891%\n", "cash_flows_Adjustments for gain on sale of mine properties: 99.840891%\n", "cash_flows_Employees' terminal benefits paid: 99.840891%\n", "cash_flows_Acquisition of capital work in progress: 99.840891%\n", "financial_position_Other property and equipment: 99.840891%\n", "financial_position_Long term loans to a joint venture: 99.840891%\n", "financial_position_Fair value change reserve of associate companys cash flow risks hedging: 99.840891%\n", "cash_flows_Proceeds from issue of treasury shares: 99.840891%\n", "financial_position_Investment in Islamic financing contracts - non curent: 99.840891%\n", "cash_flows_Increase in deferred revenue from extended warranty Program: 99.840891%\n", "financial_position_Right of use assets, net: 99.840891%\n", "financial_position_Unbilled receivables: 99.840891%\n", "cash_flows_fair value through other comprehensive income: 99.840891%\n", "cash_flows_Additions of investment property: 99.840891%\n", "cash_flows_Chang In Due to related party: 99.840891%\n", "cash_flows_Due to related party: 99.840891%\n", "financial_position_Other assets and receivables: 99.840891%\n", "financial_position_Current portion of employees benefits: 99.840891%\n", "financial_position_debt: 99.840891%\n", "cash_flows_Loss on disposal of property and equipment: 99.840891%\n", "cash_flows_Property and equipment written off: 99.840891%\n", "comprehensive_income_Reclassification adjustment on available-for-sale financial assets due to impairment: 99.840891%\n", "financial_position_Income (loss) from fair value through statement of income [FVSI] financial instruments, net: 99.840891%\n", "cash_flows_Debt proceeds: 99.840891%\n", "financial_position_Financial Assets at fair value through profit or loss: 99.840891%\n", "financial_position_Spare Parts: 99.840891%\n", "cash_flows_Buying intangible assets: 99.840891%\n", "financial_position_Investments in equity instruments: 99.840891%\n", "cash_flows_Previous years adjustments: 99.840891%\n", "cash_flows_Change in the right of use assets: 99.840891%\n", "cash_flows_Employees defined benefits paid: 99.840891%\n", "financial_position_Accounts Receivable: 99.840891%\n", "cash_flows_Provision for obsolescence of machineries and furnaces spare parts: 99.840891%\n", "cash_flows_Purchase of property, plant and equipment and investment properties: 99.840891%\n", "income_statement_Impairment of intangible assets: 99.840891%\n", "cash_flows_Investments in associates and joint ventures, net: 99.840891%\n", "cash_flows_Allowance for obsolescence inventory: 99.840891%\n", "cash_flows_Proceeds from the Sale of investment in equity instruments at FVTPL: 99.840891%\n", "cash_flows_Adjustments for movement in tenant deposits: 99.840891%\n", "equity_changes_Share issue cost: 99.840891%\n", "cash_flows_Finance costs of lease liabilities: 99.840891%\n", "cash_flows_Adjustments for Amortization of deferred costs: 99.840891%\n", "financial_position_Lease liabilities, Current: 99.840891%\n", "financial_position_long term loans: 99.840891%\n", "cash_flows_Sale of an investment in equity instruments at fair value through profit or loss: 99.840891%\n", "cash_flows_Adjustments for Provision for expected credit loss: 99.840891%\n", "financial_position_Lease liabilities-non currnet: 99.840891%\n", "comprehensive_income_Change in fair value of investments in financial assets through other comprehensive income: 99.840891%\n", "financial_position_Asset Under Construction: 99.840891%\n", "cash_flows_Follow up fees on term loan: 99.840891%\n", "financial_position_Prepayment and other assets: 99.840891%\n", "financial_position_Accrued expenses and other liabilities: 99.840891%\n", "financial_position_Long term borrowings: 99.840891%\n", "financial_position_Lease Liabilities: 99.840891%\n", "cash_flows_Adjustments for Depreciation and Amortization: 99.840891%\n", "cash_flows_Adjustments for non-cash employee benefit expenses: 99.840891%\n", "cash_flows_adjustments for provisions for employee benefi obligations: 99.840891%\n", "cash_flows_Proceeds from short term deposits: 99.840891%\n", "cash_flows_Finance income received on Murabaha deposits: 99.840891%\n", "financial_position_Provision for decommissioning obligation: 99.840891%\n", "financial_position_Projects in Progress: 99.840891%\n", "cash_flows_Other assets and receivables: 99.840891%\n", "cash_flows_Special commission income received: 99.840891%\n", "cash_flows_Interest expense on lease liability: 99.840891%\n", "financial_position_Cumulative changes in other comprehensive income: 99.840891%\n", "equity_changes_Other distributions to equity holders: 99.840891%\n", "income_statement_Net cash flows from (used in) financing activities: 99.840891%\n", "cash_flows_Provision for obsolescence of main spare parts: 99.840891%\n", "cash_flows_Change in provision of land restorations cost: 99.840891%\n", "cash_flows_Change in the right of use the asset: 99.840891%\n", "income_statement_Adjustments for gains (losses) on non-trading investments, net: 99.840891%\n", "cash_flows_Employee's defined benefit obligations paid: 99.840891%\n", "cash_flows_Purchase of investment at amortized costs: 99.840891%\n", "income_statement_Loss from investment at fair value through profit or loss: 99.840891%\n", "financial_position_Investment in equity instrument at fair value through other comprehensive income: 99.840891%\n", "financial_position_Current Lease Liabilities: 99.840891%\n", "financial_position_Non Current Lease Liabilities: 99.840891%\n", "cash_flows_Depreciation of right to use assets: 99.840891%\n", "cash_flows_finance charges: 99.840891%\n", "cash_flows_Amortization of financing costs for a long-term loan: 99.840891%\n", "cash_flows_Purchase of investment in equity instruments: 99.840891%\n", "financial_position_Loan from a related party - current portion: 99.840891%\n", "financial_position_Financial assets at fair value through other: 99.840891%\n", "cash_flows_Adjustments for decrease (increase) in Amortization of deferred costs: 99.840891%\n", "cash_flows_Adjustments for Contract assets: 99.840891%\n", "financial_position_Margin deposits from clearing participants: 99.840891%\n", "financial_position_Investment in associate - held for sale: 99.840891%\n", "income_statement_Cost of revenues: 99.840891%\n", "cash_flows_Advances and prepayments.5: 99.840891%\n", "cash_flows_Severance fees paid: 99.840891%\n", "cash_flows_Loss on exchange differences2: 99.840891%\n", "cash_flows_Expected credit loss: 99.840891%\n", "financial_position_Refund liabilities: 99.840891%\n", "equity_changes_Other contributions by equity holders: 99.840891%\n", "cash_flows_Obsolete and slow moving spare parts and consumable materials written-off1: 99.840891%\n", "cash_flows_Accrued and other current liabilities: 99.840891%\n", "cash_flows_Provision for impairment of financial asset: 99.801114%\n", "income_statement_Provision for impairment of financial assets: 99.801114%\n", "equity_changes_Transfer to statutory reserve: 99.801114%\n", "cash_flows_Movement in Refund Liabilities: 99.801114%\n", "financial_position_Investments in equity instruments designated at FVOCI: 99.801114%\n", "financial_position_Clearing participant financial assets: 99.801114%\n", "cash_flows_Unrealised gain on investments: 99.801114%\n", "cash_flows_Movement of cash under lien: 99.801114%\n", "financial_position_Prepayments and Other Receivables: 99.801114%\n", "financial_position_Capital work in progress: 99.801114%\n", "income_statement_Employee incentive: 99.801114%\n", "cash_flows_Adjustments for depreciation and impairment (reversal of impairment) of other property, plant and equipments: 99.801114%\n", "cash_flows_Employee incentive: 99.801114%\n", "financial_position_Trade payables and other liabilities: 99.801114%\n", "cash_flows_Depreciations of right of used assets: 99.801114%\n", "cash_flows_Finance charge of right of use assets: 99.801114%\n", "financial_position_Loan from a related party: 99.801114%\n", "cash_flows_Expected credit losses provision: 99.801114%\n", "cash_flows_Employees' defined benefit obligations paid: 99.801114%\n", "financial_position_Investments designated at FVPL: 99.801114%\n", "cash_flows_Short-term investments, net: 99.801114%\n", "financial_position_Short-term investment at amortised cost: 99.801114%\n", "income_statement_Other income, net: 99.801114%\n", "cash_flows_Realised gain on sale of investments: 99.801114%\n", "cash_flows_Dividend income: 99.801114%\n", "income_statement_Adjustments for impairment (reversal of impairment) for loans, financing and advances: 99.801114%\n", "comprehensive_income_Remeasurement of post-employment benefit obligations: 99.801114%\n", "cash_flows_Dividends paid: 99.801114%\n", "cash_flows_Financial charges paid: 99.801114%\n", "cash_flows_Repayment of debt: 99.801114%\n", "income_statement_Net cash flows from (used in) investing activities: 99.801114%\n", "cash_flows_Provision for obsolescence inventory in process: 99.801114%\n", "cash_flows_Sale of investment in equity instruments at FVTPL: 99.801114%\n", "cash_flows_Proceeds on disposal of mine properties: 99.801114%\n", "financial_position_Contract Liabilities: 99.801114%\n", "income_statement_Gain on sale of investment property, net: 99.801114%\n", "cash_flows_Realized gain from financial assets at fair value through other comprehensive income: 99.801114%\n", "cash_flows_Zakat Paid: 99.801114%\n", "cash_flows_Provision for replacing cylinders and others: 99.801114%\n", "income_statement_Proceeds from disposal of property and equipment: 99.801114%\n", "cash_flows_Adjustments for increase (decrease) in advances to suppliers: 99.801114%\n", "cash_flows_Other assets and liabilities changes: 99.801114%\n", "cash_flows_Impairment loss on financial assets: 99.801114%\n", "cash_flows_Provision for slow moving items: 99.801114%\n", "cash_flows_Retention payablee: 99.801114%\n", "cash_flows_(Increase).decrease in restricted cash: 99.801114%\n", "income_statement_Depreciation of right-of-us: 99.801114%\n", "cash_flows_Gain on termination of a lease: 99.801114%\n", "financial_position_Long-term borrowings: 99.801114%\n", "income_statement_Other operating income, net1: 99.801114%\n", "financial_position_Retentions Payable: 99.801114%\n", "income_statement_Zakat and income tax: 99.801114%\n", "cash_flows_Provided of expected credit losses provision: 99.801114%\n", "comprehensive_income_Income tax (charge) credit relating to translation of foreign operations: 99.801114%\n", "cash_flows_Adjustments for depletion: 99.801114%\n", "financial_position_Prepayments and other assets: 99.801114%\n", "cash_flows_Expected credit losses on trade receivables: 99.801114%\n", "financial_position_Post-employment benefit obligations: 99.761337%\n", "cash_flows_Adjustments for Finance charge on lease liability: 99.761337%\n", "financial_position_Balance due to Capital Market Authority (CMA): 99.761337%\n", "cash_flows_Adjustments for Financial charges: 99.761337%\n", "cash_flows_Proceeds from sale of non-controlling equity interest in a subsidiary: 99.761337%\n", "equity_changes_Bonus shares issued: 99.761337%\n", "cash_flows_Trade and other receivables.3: 99.761337%\n", "income_statement_Depreciation and amortization: 99.761337%\n", "cash_flows_Adjustments for depreciation and impairment (reversal of impairment) of Right of use Asset: 99.761337%\n", "income_statement_Expected credit loss (ECL): 99.761337%\n", "cash_flows_Adjustments for impairment (reversal of impairment) of oil and gas properties: 99.761337%\n", "cash_flows_Change in provision of land restoration: 99.761337%\n", "cash_flows_Allowance for expected credit losses: 99.761337%\n", "cash_flows_Adjustments for Amortisation of right of use asset: 99.761337%\n", "comprehensive_income_Actuarial gain (losses) on employees defined benefits liabilities: 99.761337%\n", "cash_flows_Loss on fair value measurement of assets classified as held for sale: 99.761337%\n", "equity_changes_Increase in share capital: 99.761337%\n", "cash_flows_Realised gain on investments at fair value through profit or loss: 99.761337%\n", "cash_flows_Adjustments for Financial charges on term facilities: 99.761337%\n", "cash_flows_Mine properties written-off: 99.761337%\n", "cash_flows_Derivative interest paid2: 99.761337%\n", "financial_position_Loans and borrowings: 99.761337%\n", "cash_flows_Adjustment to property, plant and equipment: 99.761337%\n", "financial_position_Due to a related party loan: 99.761337%\n", "financial_position_Retention payable: 99.761337%\n", "cash_flows_Proceeds from sale of a subsidiary: 99.761337%\n", "financial_position_Long Term Lease Liability: 99.761337%\n", "financial_position_Right of use asset: 99.761337%\n", "cash_flows_Change in financial investments at fair value through profit or loss: 99.761337%\n", "cash_flows_Changes in Post-employment benefit obligations: 99.761337%\n", "financial_position_Other investments2: 99.761337%\n", "financial_position_Advance from customer: 99.761337%\n", "cash_flows_The change in leasing obligations: 99.761337%\n", "financial_position_Employee benefit obligations: 99.761337%\n", "cash_flows_Payment for acquisition of subsidiary, net of cash acquired: 99.761337%\n", "income_statement_Adjustments for decrease (increase) in other operating assets: 99.761337%\n", "financial_position_Bank Borrowings: 99.761337%\n", "cash_flows_Adjustments for decrease (increase) in Depreciation of right of use asset: 99.761337%\n", "financial_position_Short term sukuk: 99.761337%\n", "cash_flows_End-of-service benefits paid: 99.761337%\n", "income_statement_Gain from investment valuation at fair: 99.761337%\n", "financial_position_Other investments.1: 99.761337%\n", "financial_position_Employees home ownership receivables: 99.761337%\n", "financial_position_Capital Work in progress: 99.761337%\n", "income_statement_Zakat and tax: 99.761337%\n", "financial_position_Deferred costs, net: 99.761337%\n", "cash_flows_Gain on derivative instrument at FVTPL: 99.761337%\n", "cash_flows_Other provisions: 99.761337%\n", "financial_position_Right of use of assets: 99.721559%\n", "cash_flows_Adjustments for depreciation and impairment (reversal of impairment) of Vehicles: 99.721559%\n", "financial_position_Total diluted earnings (loss) per share: 99.721559%\n", "comprehensive_income_Loss on exchange differences on translation2: 99.721559%\n", "cash_flows_Adjustment to mine properties: 99.721559%\n", "income_statement_Severance fees7: 99.721559%\n", "cash_flows_Dividend received from an associate: 99.721559%\n", "cash_flows_Net book value of vehicles disposed: 99.721559%\n", "income_statement_Adjustments for amortisation expense: 99.721559%\n", "cash_flows_Purchase of intangible assets and property and equipment: 99.721559%\n", "financial_position_Impairment (reversal of impairment) charge for credit losses/ loans, financing and advances: 99.721559%\n", "cash_flows_Adjustment for increase (decrease) in Accounts Payable and accruals: 99.721559%\n", "comprehensive_income_Remeasurement of post-employment benefits: 99.721559%\n", "cash_flows_Adjustment to right-of-use assets and the related lease liability1: 99.721559%\n", "cash_flows_Adjustments for Property and equipment written off: 99.721559%\n", "income_statement_Research expenses: 99.721559%\n", "financial_position_Deferred tax liability: 99.721559%\n", "income_statement_Adjustments for staff share based plan expenses: 99.721559%\n", "cash_flows_Payments for purchases of intangible assets: 99.721559%\n", "financial_position_Non Current portion of investment in Islamic financing contracts: 99.721559%\n", "cash_flows_Increase in deferred revenue from extended warranty program: 99.721559%\n", "financial_position_Liabilities directly associated with assets classified as held for sale: 99.721559%\n", "financial_position_Auction shares deposits under settlement: 99.721559%\n", "financial_position_Current portion of investment in Islamic financing contracts: 99.721559%\n", "cash_flows_Amortization of rights of use: 99.721559%\n", "financial_position_Loans and borrowings, non-current: 99.721559%\n", "cash_flows_Dividends received from investments FVTOCI: 99.721559%\n", "financial_position_Investment in Islamic financing contracts: 99.721559%\n", "cash_flows_Adjustment for increase (decrease) in accounts payable, accruals and othe current liabilities: 99.721559%\n", "financial_position_Lease liabilities Non Current Portion: 99.721559%\n", "cash_flows_Current portion of investment in Islamic financing contracts: 99.721559%\n", "cash_flows_Impairment recognized on trade receivables: 99.721559%\n", "financial_position_Contract liabilities: 99.721559%\n", "cash_flows_Purchase of treasury shares: 99.721559%\n", "cash_flows_Adjustments for impairment (reversal of impairment) of mine properties: 99.721559%\n", "financial_position_Non-current accounts receivable: 99.721559%\n", "cash_flows_Proceeds from Islamic loan facilities: 99.721559%\n", "financial_position_Diluted earnings (loss) per share from continuing operations: 99.721559%\n", "cash_flows_Dividends received from associates: 99.721559%\n", "comprehensive_income_Changes in fair value of equity investments classified as fair value through other comprehensive income: 99.721559%\n", "financial_position_Loans and borrowings, current: 99.721559%\n", "financial_position_Accrual and other liabilities: 99.721559%\n", "cash_flows_Adjustments for increase (decrease) in contract assets: 99.721559%\n", "financial_position_Right of use assets, Net: 99.721559%\n", "financial_position_Debt: 99.721559%\n", "financial_position_Oil and gas properties: 99.721559%\n", "income_statement_Zakat: 99.721559%\n", "income_statement_Purchase of intangible assets: 99.721559%\n", "income_statement_Interest income from investment at amortised cost: 99.721559%\n", "financial_position_Vehicles: 99.721559%\n", "cash_flows_Provisions and other movements, net: 99.721559%\n", "cash_flows_Additions to intangible assets: 99.721559%\n", "cash_flows_Employees benefits paid: 99.721559%\n", "cash_flows_Sales Instalment Receivable: 99.721559%\n", "comprehensive_income_Gains (losses) on hedges of net investments in foreign operations: 99.681782%\n", "financial_position_Loan and lease liabilities: 99.681782%\n", "cash_flows_Allowance for doubtful debts: 99.681782%\n", "income_statement_Gain from the sales of property and equipment: 99.681782%\n", "cash_flows_Dividends received from investments at fair value: 99.681782%\n", "cash_flows_Net movement in short-term and long-term loans: 99.681782%\n", "income_statement_Net decrease (increase) in operating assets: 99.681782%\n", "cash_flows_Adjustment to mine closure provision2: 99.681782%\n", "equity_changes_Interim dividend paid: 99.681782%\n", "cash_flows_Adjustments for Provision for impairment of trade receivable: 99.681782%\n", "cash_flows_Proceeds from long term Murabaha loans: 99.681782%\n", "cash_flows_Proceed from maturity of short-term investment: 99.681782%\n", "cash_flows_Change in fair value of investments through profit or loss: 99.681782%\n", "income_statement_Other inflows (outflows) of cash, classified as financing activities: 99.681782%\n", "cash_flows_Investment in a subsidary by a non-controlling shareholder: 99.681782%\n", "financial_position_Securities auction shares under settlement: 99.681782%\n", "cash_flows_Net movement in Murabaha loan: 99.681782%\n", "cash_flows_Dividends received from investments at FVTOCI: 99.681782%\n", "income_statement_Adjustments for decrease (increase) in other real estate, net: 99.681782%\n", "financial_position_Cash and cash equivalents: 99.681782%\n", "financial_position_Due to related party: 99.681782%\n", "cash_flows_Depreciation, amortisation and impairment: 99.681782%\n", "cash_flows_Employee benefit obligations paid: 99.681782%\n", "financial_position_Long term Murabaha loans: 99.681782%\n", "financial_position_Islamic loan facilities: 99.681782%\n", "cash_flows_Adjustments for decrease (increase) in due from the Government: 99.681782%\n", "financial_position_Contract Assets: 99.681782%\n", "cash_flows_Other assets movements: 99.681782%\n", "cash_flows_Adjustments for Financial charges on lease liabilities: 99.681782%\n", "cash_flows_Depreciation of right of use: 99.681782%\n", "cash_flows_Finance costs: 99.681782%\n", "cash_flows_Proceeds from debt: 99.681782%\n", "financial_position_Accounts payable and accruals: 99.681782%\n", "cash_flows_Employee benefits paid: 99.681782%\n", "cash_flows_Charge for employees share-based payment plan which will be equity-settled3: 99.681782%\n", "comprehensive_income_Investments at fair value through other comprehensive income - net change in fair value: 99.681782%\n", "cash_flows_Adjustments for depreciation of right-of-use assets: 99.681782%\n", "financial_position_Investment in debt securities3: 99.642005%\n", "comprehensive_income_Changes in fair value of debt securities classified as fair value through other comprehensive income: 99.642005%\n", "financial_position_SIDF loan: 99.642005%\n", "cash_flows_Share of results of joint ventures and associates: 99.642005%\n", "comprehensive_income_Share of post-employment benefits remeasurement from joint ventures and associates: 99.642005%\n", "cash_flows_Interest of lease liabilities: 99.642005%\n", "financial_position_Lease liabilities -non-current portion: 99.642005%\n", "financial_position_Investments available for sale: 99.642005%\n", "cash_flows_Net movement in long term retentions payable: 99.642005%\n", "cash_flows_Adjustments for increase (decrease) in Trade and other payables: 99.642005%\n", "financial_position_Projects under construction: 99.642005%\n", "financial_position_Investments: 99.642005%\n", "income_statement_Adjustments for decrease (increase) in financing, net: 99.642005%\n", "comprehensive_income_Cash flow hedges and other: 99.642005%\n", "cash_flows_Unearned revenue: 99.642005%\n", "financial_position_Current Lease Liability: 99.642005%\n", "cash_flows_Movement in equity investment at FVOCI: 99.642005%\n", "cash_flows_Net movement in investments at fair value through profit or loss: 99.642005%\n", "comprehensive_income_Unrealized fair value gains on equity investment at FVOCI: 99.642005%\n", "cash_flows_Finance cost: 99.642005%\n", "income_statement_provision for expected credit losses: 99.642005%\n", "cash_flows_Increase in net employee benefits obligations: 99.642005%\n", "financial_position_Lease liabilities - current portion: 99.642005%\n", "financial_position_VAT payable: 99.602228%\n", "cash_flows_Income received from time deposits: 99.602228%\n", "cash_flows_Gain on disposal of investment: 99.602228%\n", "income_statement_Gain on disposal of investment: 99.602228%\n", "cash_flows_Impairment loss on trade receivables: 99.602228%\n", "cash_flows_Term Deposits: 99.602228%\n", "cash_flows_Zakat paid: 99.602228%\n", "cash_flows_Net maturities (purchases) of short-term investments: 99.602228%\n", "financial_position_Term Deposit: 99.602228%\n", "cash_flows_Provision for allowance for inventory obsolescence1: 99.602228%\n", "income_statement_Share from operations results of Joint ventures: 99.602228%\n", "cash_flows_Change in joint ventures and associates inventory profit elimination: 99.602228%\n", "financial_position_Retained earnings - Appropriated: 99.602228%\n", "financial_position_Additional paid-in capital: 99.602228%\n", "financial_position_Retained earnings - Unappropriated: 99.602228%\n", "financial_position_Zakat and income tax payable: 99.602228%\n", "financial_position_Provision for land restoration subject to the franchise license: 99.602228%\n", "cash_flows_Changes in post-employment benefits: 99.602228%\n", "cash_flows_Adjustments for Depreciation of right of use assets: 99.602228%\n", "financial_position_Investment at amortised cost: 99.602228%\n", "financial_position_Long term retentions: 99.602228%\n", "financial_position_Investment at fair value through profit or loss: 99.602228%\n", "financial_position_Loans to employees: 99.602228%\n", "cash_flows_Adjustments for gain on sale of exploration and evaluation assets: 99.602228%\n", "financial_position_Derivative financial instruments1: 99.602228%\n", "income_statement_Gain from sale of property, plant and equipment: 99.602228%\n", "financial_position_Projects in progress: 99.602228%\n", "financial_position_Trade payples: 99.562450%\n", "financial_position_Investment in debt securities1: 99.562450%\n", "cash_flows_Projects and other payables . Trade: 99.562450%\n", "cash_flows_Refund liabilities: 99.562450%\n", "financial_position_Post-employment benefits: 99.562450%\n", "financial_position_Right to use Assets: 99.562450%\n", "cash_flows_Depreciation of Right to use Assets: 99.562450%\n", "cash_flows_Depreciation on right-of-use assets: 99.562450%\n", "cash_flows_Amortization of prepaid upfront fees on term loan: 99.562450%\n", "financial_position_Lease Laibilities: 99.562450%\n", "financial_position_Prepayments and other current assets: 99.562450%\n", "cash_flows_Loss on derecognition of property, plant and equipment1: 99.562450%\n", "comprehensive_income_Total other comprehensive income (loss), hedges of net investment in foreign operations: 99.562450%\n", "financial_position_Deferred costs net: 99.562450%\n", "financial_position_Post-employment benefits, non-current: 99.562450%\n", "cash_flows_Inventory movement: 99.562450%\n", "income_statement_Adjustments for increase (decrease) in other operating liabilities: 99.562450%\n", "income_statement_Adjustments for income from fair value through statement of income [FVSI] financial instruments: 99.562450%\n", "income_statement_Net increase (decrease) in cash and cash equivalents: 99.562450%\n", "income_statement_Interest paid, classified as operating activities: 99.562450%\n", "income_statement_Increase (decrease) in cash and cash equivalents before effect of exchange rate changes: 99.562450%\n", "cash_flows_Proceeds from disposal of property, plant and equipment: 99.562450%\n", "cash_flows_Employees end of service benefits paid: 99.562450%\n", "financial_position_Assets classified as held for sale: 99.562450%\n", "income_statement_Net increase (decrease) in operating liabilities: 99.562450%\n", "cash_flows_Other non-current assets: 99.562450%\n", "financial_position_Employee benefites: 99.562450%\n", "financial_position_Accrued and other current loabilities: 99.562450%\n", "financial_position_Lease liabilities-current portion: 99.562450%\n", "cash_flows_Other: 99.562450%\n", "income_statement_Adjustments for decrease (increase) in loans, financing and advances: 99.562450%\n", "cash_flows_Zakat and Income Tax Paid: 99.522673%\n", "cash_flows_Accrued expenses . Trade: 99.522673%\n", "financial_position_Financial assets at fair value through other comprehensive income: 99.522673%\n", "income_statement_Income from time deposits.1: 99.522673%\n", "income_statement_Dividends paid, classified as financing activities: 99.522673%\n", "cash_flows_Proceeds on disposal of exploration and evaluation assets: 99.522673%\n", "equity_changes_Final dividend paid: 99.522673%\n", "cash_flows_Proceeds from exercise of share options: 99.522673%\n", "financial_position_Trade and other payables: 99.522673%\n", "cash_flows_Prepayments and other current assets: 99.522673%\n", "cash_flows_Proceeds from term loans: 99.482896%\n", "financial_position_Investment: 99.482896%\n", "income_statement_Zakat expenses, classified as operating activities: 99.482896%\n", "equity_changes_Transfer from retained earnings: 99.482896%\n", "cash_flows_Changes in provisions and other liabilities: 99.482896%\n", "cash_flows_Proceeds from investment income: 99.482896%\n", "financial_position_Deferred tax liabilities.1: 99.482896%\n", "financial_position_Investments at fair value through profit or loss: 99.443119%\n", "financial_position_Trade and other receivables: 99.443119%\n", "financial_position_Other operating expense: 99.443119%\n", "financial_position_Provision for Zakat and Income Tax: 99.443119%\n", "income_statement_Net cash flows from (used in) operating activities: 99.443119%\n", "financial_position_Other operating income: 99.443119%\n", "income_statement_Total adjustments to reconcile profit (loss): 99.443119%\n", "cash_flows_Accretion of interest: 99.443119%\n", "financial_position_Mine properties.1: 99.443119%\n", "financial_position_Property, plant and equipment.1: 99.443119%\n", "cash_flows_Interest received on term deposits: 99.443119%\n", "cash_flows_Write-off of plant and equipment.5: 99.443119%\n", "financial_position_Equity investments at FVOCI: 99.403341%\n", "financial_position_Loans and lease liabilities: 99.403341%\n", "cash_flows_Loss on disposal of property, plant and equipment: 99.403341%\n", "financial_position_Inventories.2: 99.403341%\n", "cash_flows_Adjustments for other non-current liabilities: 99.403341%\n", "financial_position_Trade receivables: 99.403341%\n", "cash_flows_Payments of other equity instruments: 99.403341%\n", "cash_flows_Cash receipts from repayment of advances and loans made to other parties, classified as investing activities: 99.403341%\n", "financial_position_Board of directors' remunerations: 99.403341%\n", "financial_position_Accounts receivable and prepayments: 99.403341%\n", "financial_position_Non-current portion of obligation under finance lease.1: 99.403341%\n", "financial_position_Current portion of obligation under finance lease.1: 99.403341%\n", "income_statement_Other adjustments for non-cash items: 99.403341%\n", "income_statement_Net cash flows from (used in) operations: 99.403341%\n", "cash_flows_Net movement in other non-current assets: 99.403341%\n", "cash_flows_Employees defined benefits liabilities paid: 99.403341%\n", "financial_position_Murabaha Loan: 99.403341%\n", "cash_flows_Payment of lease liabilties: 99.403341%\n", "financial_position_Deferred tax assets.1: 99.363564%\n", "cash_flows_Finance income received: 99.363564%\n", "financial_position_Capital advances: 99.363564%\n", "income_statement_Impairment loss on trade receivables: 99.363564%\n", "income_statement_Income tax on discontinued operations for period: 99.363564%\n", "cash_flows_Expenditure on exploration and evaluation assets: 99.363564%\n", "financial_position_Special commission expenses / return on deposits: 99.363564%\n", "financial_position_Zakat and Income Tax Payable: 99.363564%\n", "financial_position_Provision for Zakat: 99.363564%\n", "cash_flows_Adjustment for depreciation of investment properties: 99.363564%\n", "financial_position_Advances to Suppliers: 99.363564%\n", "financial_position_Trade Account Receivable: 99.363564%\n", "cash_flows_Adjustments for Provision for allowance for expected credit losses: 99.363564%\n", "financial_position_Advance to Contractors: 99.323787%\n", "equity_changes_Adjustments for restatements: 99.323787%\n", "financial_position_Right-of-use asset: 99.323787%\n", "cash_flows_Depreciation of right-of-use assets2: 99.323787%\n", "cash_flows_Contribution for the employees savings plan: 99.323787%\n", "cash_flows_Depreciation of property, plant and equipment: 99.323787%\n", "financial_position_Current portion of Lease Liability: 99.323787%\n", "financial_position_Prepayments and Other Current Assets: 99.323787%\n", "financial_position_Investment in unconsolidated subsidiary: 99.323787%\n", "financial_position_Equity Investment at FVOCI and AFS Investment: 99.323787%\n", "cash_flows_Adjustments for Depreciation of right-of-use asset: 99.323787%\n", "financial_position_Zakat Provision: 99.323787%\n", "financial_position_Term Loans: 99.323787%\n", "financial_position_Current maturity of lease liabilities: 99.323787%\n", "financial_position_Refund Liabilities: 99.323787%\n", "financial_position_Projects, trade and other payables.2: 99.323787%\n", "financial_position_Current portion of long-term borrowings.2: 99.323787%\n", "financial_position_Right-of-use assets1: 99.323787%\n", "financial_position_Capital work-in-progress.1: 99.323787%\n", "financial_position_Income taxes and zakat payable: 99.323787%\n", "financial_position_Other assets and receivables - current: 99.323787%\n", "cash_flows_Dividends from investments in securities - investing activities: 99.323787%\n", "cash_flows_Distributions from joint ventures and associates: 99.323787%\n", "income_statement_Zakat and Income Tax: 99.323787%\n", "financial_position_Investment in joint ventures.1: 99.323787%\n", "financial_position_Long-term borrowings.3: 99.323787%\n", "financial_position_Provision for decommissioning, site rehabilitation and dismantling obligations: 99.323787%\n", "cash_flows_Employees' defined benefits liabilties and other benefits paid: 99.323787%\n", "financial_position_Borrowings - non-current: 99.323787%\n", "financial_position_Borrowings - current: 99.323787%\n", "financial_position_Provisions and other liabilities: 99.323787%\n", "financial_position_Other assets and receivables - non current: 99.323787%\n", "financial_position_Investments in securities: 99.323787%\n", "cash_flows_Amortization of right of use assets: 99.323787%\n", "financial_position_Due from the Government: 99.323787%\n", "financial_position_Cash and cash equivalents.2: 99.323787%\n", "financial_position_Advances and prepayments.2: 99.323787%\n", "financial_position_Trade and other receivables.2: 99.323787%\n", "income_statement_Share in net income of joint ventures that have been equity accounted: 99.323787%\n", "financial_position_Severance fees payable.1: 99.323787%\n", "financial_position_Projects, trade and other payables.4: 99.323787%\n", "financial_position_Employees benefits.1: 99.323787%\n", "income_statement_Exploration and technical services expenses.9: 99.323787%\n", "financial_position_Accrued expenses.2: 99.323787%\n", "financial_position_Zakat payable.3: 99.323787%\n", "income_statement_Purchase of property and equipment: 99.323787%\n", "cash_flows_Current service cost of employees end of service benefits: 99.323787%\n", "cash_flows_Depletion and depreciation of mine properties: 99.323787%\n", "cash_flows_Finance cost.4: 99.323787%\n", "cash_flows_Provision for severance fees.5: 99.323787%\n", "financial_position_Time deposits.2: 99.323787%\n", "financial_position_Intangible assets.1: 99.323787%\n", "financial_position_Rent and premises related expenses: 99.284010%\n", "financial_position_Profit (loss) from continuing operations before zakat and income tax: 99.284010%\n", "financial_position_Salaries and employee related expenses: 99.284010%\n", "income_statement_Repayments of debt securities, borrowings, term loan and sukuk: 99.284010%\n", "income_statement_Adjustments for depreciation: 99.284010%\n", "income_statement_Profit (loss) before zakat and income tax: 99.284010%\n", "income_statement_Cash and cash equivalents at end of period: 99.284010%\n", "financial_position_Accruals and other current liabilities: 99.284010%\n", "financial_position_Short-term investments: 99.284010%\n", "financial_position_Special commission income/ gross financing and investment income: 99.284010%\n", "income_statement_Profit (loss) from continuing operations before zakat and income tax: 99.284010%\n", "comprehensive_income_Equity balance at beginning of period (after adjustments): 99.284010%\n", "comprehensive_income_Equity balance at beginning of period (before adjustments): 99.284010%\n", "income_statement_Cash and cash equivalents at beginning of period: 99.284010%\n", "financial_position_Special commission income (expense)/ financing and investment income (expense), net: 99.284010%\n", "financial_position_Other general and administrative expenses: 99.284010%\n", "financial_position_Profit (loss) from operating activities: 99.284010%\n", "financial_position_Basic earnings (loss) per share from continuing operations: 99.284010%\n", "financial_position_Total basic earnings (loss) per share: 99.284010%\n", "financial_position_Profit (loss), attributable to equity holders of parent company: 99.284010%\n", "financial_position_Profit (loss) for the period: 99.284010%\n", "financial_position_Zakat expenses on continuing operations for period: 99.284010%\n", "financial_position_Profit (loss) from continuing operations: 99.284010%\n", "financial_position_Total operating expenses: 99.284010%\n", "financial_position_Weighted average number of equity shares outstanding: 99.284010%\n", "income_statement_Payments of finance lease liabilities: 99.284010%\n", "cash_flows_Disposal to non-controlling interest: 99.284010%\n", "income_statement_Proceeds from debt securities, borrowings, term loan and sukuk: 99.284010%\n", "financial_position_Fee and commission income (expense): 99.284010%\n", "comprehensive_income_Equity balance at end of period: 99.284010%\n", "financial_position_Total operating income: 99.284010%\n", "cash_flows_Proceeds from issuing other equity instruments: 99.284010%\n", "financial_position_Depreciation and amortisation expense: 99.284010%\n", "cash_flows_Adjustments for contribution of equipment by customers: 99.244232%\n", "financial_position_Current portion of Lease liabilities: 99.244232%\n", "cash_flows_Amortisation of intangible assets: 99.204455%\n", "cash_flows_Adjustments for unsuccessful exploration and evaluation expenditures: 99.204455%\n", "cash_flows_Purchase of intangible assets: 99.164678%\n", "cash_flows_Finance cost paid: 99.164678%\n", "cash_flows_Capital expenditure on completed investment properties: 99.164678%\n", "income_statement_Investment income: 99.124901%\n", "cash_flows_Adjustments for increase (decrease) in royalty payable: 99.085123%\n", "equity_changes_Other miscellaneous changes in equity: 99.085123%\n", "financial_position_Contract assets: 99.085123%\n", "financial_position_Rent receivables: 99.045346%\n", "financial_position_Mine properties: 99.045346%\n", "comprehensive_income_Other comprehensive income, available-for-sale financial assets: 99.045346%\n" ] }, { "data": { "text/html": [ "
| \n", " | comprehensive_income_Income tax (charge) credit relating to cash flow hedges | \n", "financial_position_Rent receivables | \n", "cash_flows_Cash receipts from repayment of advances and loans made to other parties, classified as investing activities | \n", "cash_flows_Adjustments for contribution of equipment by customers | \n", "cash_flows_Proceeds from issuing other equity instruments | \n", "comprehensive_income_Gains (losses) on hedges of net investments in foreign operations | \n", "comprehensive_income_Total other comprehensive income (loss), hedges of net investment in foreign operations | \n", "equity_changes_Adjustments for restatements | \n", "financial_position_Time deposit | \n", "financial_position_Deferred tax liability | \n", "financial_position_Loans and lease liabilities | \n", "financial_position_Loan and lease liabilities | \n", "cash_flows_Provision for impairment of financial asset | \n", "cash_flows_Gain on disposal group sale of Alanmaa | \n", "cash_flows_Zakat and income tax paid | \n", "cash_flows_Other non-current assets | \n", "cash_flows_Net movement in short-term and long-term loans | \n", "cash_flows_Finance costs paid | \n", "cash_flows_Dividends paid | \n", "cash_flows_Non-controlling interest, net | \n", "income_statement_Research expenses | \n", "income_statement_Provision for impairment of financial assets | \n", "cash_flows_Provision for impairment of financial assets | \n", "cash_flows_Other non current assets | \n", "cash_flows_Cash and cash equivalents of disposal group classified as held for sale | \n", "cash_flows_Net foreign exchange gain | \n", "financial_position_Due to a related party - loan | \n", "income_statement_Provision for reversal of impairment of financial assets | \n", "cash_flows_Provision for reversal of impairment of financial asset | \n", "cash_flows_Net movement in short-term and long-term loan | \n", "financial_position_Time Deposit | \n", "financial_position_Assets relating to disposal group classified as held for sale | \n", "financial_position_Short term investment at amortized cost | \n", "financial_position_Investment in long-term sukuk | \n", "financial_position_Loans and lease liabites | \n", "financial_position_Zakat and income tax payable | \n", "financial_position_Liabilities relating to disposal group classified | \n", "cash_flows_Provision for near expiry, obsolete and slow-moving inventories | \n", "cash_flows_Employee defined benefit cost | \n", "financial_position_time deposits | \n", "financial_position_Loans and lease liabilities - Current | \n", "financial_position_Due to related party loan | \n", "cash_flows_Provision for impairment of trade receivables | \n", "cash_flows_Proceeds from sale of a subsidiary | \n", "cash_flows_proceed from long term loan | \n", "financial_position_Loan and leaseliabilities | \n", "cash_flows_Gain on disposal of a subsidiary | \n", "cash_flows_Impairment on non-financial assets | \n", "cash_flows_Acquisition of a subsidiary | \n", "cash_flows_Net movement in short-term loans | \n", "cash_flows_Proceeds from long-term loans | \n", "financial_position_Investment in long-term sukuks | \n", "financial_position_Loans and lease liabilties | \n", "cash_flows_Provision for near expiry, obsolete and slow- moving inventories | \n", "cash_flows_Employee defined benefit costs | \n", "cash_flows_Provision for impairment of trade and other receivables | \n", "cash_flows_Net monetary loss (gain) | \n", "cash_flows_Amount received from purchaser of a subsidiary | \n", "financial_position_Due to a related party loan | \n", "financial_position_Loans and lease liabilities Non Current | \n", "financial_position_Time deposits | \n", "financial_position_Loan and lease liabilties | \n", "cash_flows_Inventory written-off | \n", "cash_flows_Disposal of a subsidiary | \n", "cash_flows_Cash received for settlement of a related party balance | \n", "financial_position_Due to a related party Loan | \n", "cash_flows_Net foreign exchange gain or loss | \n", "financial_position_Loans and lease liabiltes | \n", "cash_flows_Provison for impairment of financial assets | \n", "cash_flows_Financial assets written-off | \n", "financial_position_Loans and Lease Liabilities | \n", "cash_flows_Gain on disposal group - sale of Alanmaa | \n", "income_statement_Impairment of financial assets | \n", "cash_flows_Loss on disposal of property, plant and equipment | \n", "cash_flows_Repayment of a related party loan | \n", "cash_flows_Expected credit losses on trade receivables | \n", "cash_flows_Paid to purchase intangible assets | \n", "financial_position_Cumulative changes in the items of other comprehensive income | \n", "cash_flows_Reversal of provision for impairment of other receivables | \n", "cash_flows_Impairment (Reversal of impairment) in allowance for expected credit losses for trade receivables | \n", "cash_flows_Other provisions - (Reversal of other provisions) | \n", "cash_flows_Cash and cash equivalents through business combination | \n", "financial_position_Projects in progress | \n", "cash_flows_Other Provisions | \n", "cash_flows_End-of-service benefits paid | \n", "cash_flows_Write-off of projects in progress | \n", "financial_position_Cumulative changes in other comprehensive income | \n", "financial_position_Projects in Progress | \n", "cash_flows_Creation (reversal) of provision expected credit losses on trade receivable | \n", "income_statement_(Provision) reversal of expected credit loss (ECLs) on trade receivables | \n", "financial_position_Cumulative changes in the items of other comprehensive | \n", "cash_flows_Reversal of other provisions | \n", "cash_flows_Reduction of provision for expected credit losses on trade receivables | \n", "cash_flows_Amortization of intangible assets | \n", "cash_flows_Depreciation on right of-use of assets | \n", "cash_flows_Disposal to non-controlling interest | \n", "cash_flows_Expected Credit Losses | \n", "cash_flows_Provision for Contracts Incremental Costs | \n", "equity_changes_Other distributions to equity holders | \n", "cash_flows_A,mourtazition of rights of use assets | \n", "cash_flows_Reduction of share capital | \n", "cash_flows_Amortization of rights of use | \n", "cash_flows_(Reversal) expected credit loss | \n", "cash_flows_finance costs of lease liabilities | \n", "cash_flows_interest cost of employees defined benfit plan obligation | \n", "cash_flows_Impairment (reversal) of trade receivables | \n", "cash_flows_Capital reduction | \n", "cash_flows_Payment for acquisition of subsidiary, net of cash acquired | \n", "financial_position_Prepayment and other assets | \n", "financial_position_Employees home ownership receivables | \n", "financial_position_Loans to employees | \n", "financial_position_Accrued expenses and other liabilities | \n", "financial_position_Long term borrowings | \n", "financial_position_Lease Liabilities | \n", "financial_position_Employee benefit obligations | \n", "income_statement_Other (expenses) income-net | \n", "comprehensive_income_Deferred tax to re-measurements loss | \n", "comprehensive_income_Re-measurement(loss) gain on defined employee benefit obligation | \n", "cash_flows_Adjustments for Depreciation and Amortization | \n", "cash_flows_Adjustments for non-cash employee benefit expenses | \n", "cash_flows_adjustments for provisions for employee benefi obligations | \n", "cash_flows_Finance income received | \n", "cash_flows_Impairment loss on Financial insturment | \n", "cash_flows_Proceeds from short term deposits | \n", "cash_flows_Repayments of loans by employees | \n", "financial_position_Cash and cash equivalents | \n", "financial_position_Current portion of borrowings | \n", "financial_position_Borrowings | \n", "financial_position_Provision for decommissioning obligation | \n", "income_statement_Impairment loss on trade receivables | \n", "income_statement_Zakat and income tax | \n", "cash_flows_Adjustments for Depreciation on right-of-use assets | \n", "cash_flows_Adjustments for Interest on lease liabilities | \n", "cash_flows_Adjustments for Impairment loss on trade receivables | \n", "cash_flows_Adjustments for Allowance for slow moving inventories | \n", "cash_flows_Employee benefit obligations paid | \n", "cash_flows_Collection against employee loans | \n", "cash_flows_Finance cost paid | \n", "financial_position_Loans to employee | \n", "financial_position_current portion for long term borrowings | \n", "financial_position_Long Term Borrowings | \n", "financial_position_Lease Liabilites | \n", "financial_position_provision fro decommissioing obligation | \n", "income_statement_impairment losses on financial assets | \n", "income_statement_Zakat and income tax charge | \n", "cash_flows_Adjustment for insurance claim compensation | \n", "cash_flows_impariment loss on financial assets | \n", "cash_flows_write off of trade receivables | \n", "cash_flows_Net allowance for inventory obsolesence and slow moving | \n", "cash_flows_Finance Income Recevied | \n", "cash_flows_Employee benefit obligation paid | \n", "cash_flows_payment for intangible assets | \n", "cash_flows_investment in short term deposits | \n", "cash_flows_Maturity from short term deposits | \n", "cash_flows_Insurance claim compensation recevied | \n", "cash_flows_collection against employee loans | \n", "cash_flows_Disburesment of employee loans | \n", "cash_flows_Finance cost elements of lease payments | \n", "cash_flows_finance cost paid | \n", "income_statement_Fair value gain loss on derivative financial instruments measured at fair value through profit and loss | \n", "cash_flows_adjustments for provisions for slow moving inventories | \n", "cash_flows_Repayment of employees home ownership receivables | \n", "financial_position_Long-term borrowings | \n", "income_statement_Impairment losses on financial assets | \n", "comprehensive_income_Re-measurement loss on employee benefit obligations | \n", "cash_flows_Impairment loss on financial assets | \n", "cash_flows_Allowance for inventory obsolescence and slow moving | \n", "cash_flows_Depreciation on right of use assets | \n", "cash_flows_Interest on lease liabilities | \n", "cash_flows_Withdrawals from short-term deposits | \n", "cash_flows_Collection against employees loans | \n", "income_statement_Sales | \n", "cash_flows_Adjustments for impairment loss on trade receivables | \n", "cash_flows_Adjustments for payments and other assets | \n", "cash_flows_adjsutmetns for Accured expenses and other liabilities | \n", "cash_flows_Additions to intangible assets | \n", "financial_position_Current portion of long-term borrowings | \n", "income_statement_Impairment losss on financial assets | \n", "income_statement_Zakat and income tax credit (charge) | \n", "cash_flows_Interest on lease liabilitiess | \n", "cash_flows_Adjusments for Insurance claim compensation | \n", "cash_flows_Adjusments for Impairment loss on financial assets | \n", "cash_flows_Adjustment for Impairment of allowance on inventories | \n", "cash_flows_Loss on sale of property, plant and equipments | \n", "cash_flows_Employee benefit obligations paids | \n", "cash_flows_Finance income receiveds | \n", "cash_flows_Provision for employee benefits obligations | \n", "cash_flows_Loss on disposals of property and equipment | \n", "cash_flows_Impairment (reversal) charge on inventories | \n", "cash_flows_Non-cash employee expenses | \n", "cash_flows_Depreciation on right-of-use assets | \n", "cash_flows_Provision for employees benefits obligations | \n", "cash_flows_Loss on sale of property, plant and equipment | \n", "cash_flows_Allowance for (reversal of) slow moving inventories | \n", "equity_changes_Transfer of share capital | \n", "cash_flows_Property, plan and equipment written off | \n", "cash_flows_Adjustmetns for loss (gain) on sale of property and equipment | \n", "financial_position_Prepayments and other assets | \n", "income_statement_Other income | \n", "cash_flows_Employee related expenses | \n", "cash_flows_Payments for intangible assets | \n", "cash_flows_Investment in short-term deposits | \n", "cash_flows_Disbursement of employee loans | \n", "cash_flows_Repayments of borrowings | \n", "cash_flows_Finance cost element of lease payments | \n", "cash_flows_Principal element of lease payments | \n", "cash_flows_Dividends | \n", "equity_changes_Other miscellaneous changes in equity | \n", "cash_flows_PROVISION OF EXPECTED CREDIT LOSS EXPENSE | \n", "cash_flows_PROVISION OF OBSOLESCENCE INVENTORY EXPENSE | \n", "cash_flows_FINANCE COST | \n", "cash_flows_EMPLOYEES END -OF-SERVICE BENEFITS PAID | \n", "cash_flows_ZAKAT PAID | \n", "cash_flows_DISPOSAL OF INVESTMENT IN EQUITY INSTRUMENTS AT FVTPL | \n", "cash_flows_Gains on changes in fair value of investment equity instruments | \n", "cash_flows_Provision of expected credit loss expense | \n", "cash_flows_Provision for obsolescence inventory | \n", "cash_flows_Finance cost | \n", "cash_flows_from related party | \n", "cash_flows_Zakat paid | \n", "cash_flows_Employees end of service benefits paid | \n", "cash_flows_Sale of investment in equity instruments at FVTPL | \n", "cash_flows_Purchase of intangible assets | \n", "cash_flows_Time Deposite | \n", "cash_flows_Change in investments at joint ventures | \n", "cash_flows_Provision for obsolescence inventory in process | \n", "cash_flows_Allowance for doubtful debts | \n", "cash_flows_Paid out of employees end of service benefits | \n", "cash_flows_Buying intangible assets | \n", "cash_flows_Purchase of short-term time deposit | \n", "cash_flows_Financing costs | \n", "cash_flows_Sale of an investment in equity instruments at fair value through profit or loss | \n", "cash_flows_Provision for of obsolescence inventory expense | \n", "cash_flows_Provision for of expected credit loss expense | \n", "cash_flows_Purchase of short time deposit | \n", "cash_flows_Purchase of property, plant and equipment and Capital work in progress | \n", "cash_flows_Repayments of lease liability | \n", "cash_flows_provision for doubtful debts | \n", "cash_flows_interest expense | \n", "cash_flows_Provision for obsolescence inventory expense | \n", "cash_flows_Provisions n longer required | \n", "cash_flows_Gain on change in fair value of investments through profit or loss | \n", "cash_flows_Allowance for obsolescence inventory | \n", "cash_flows_Gain on sale property, plant and equipment | \n", "cash_flows_provision no ionger required | \n", "cash_flows_Proceeds from the Sale of investment in equity instruments at FVTPL | \n", "cash_flows_Purchase of short term time deposit | \n", "cash_flows_Proceeds from the disposal of Property, Plant and Equipment | \n", "cash_flows_Gains on changes in fair value of investment in equity instruments | \n", "cash_flows_Repayments of capital reduction | \n", "cash_flows_Gains on changes in fair value of investment in equity instrument | \n", "cash_flows_CHANGES IN INVENTORY | \n", "financial_position_Investment in Islamic financing contracts | \n", "financial_position_Trade and other receivables | \n", "financial_position_Investment in Islamic financing contracts - non curent | \n", "cash_flows_Increase in deferred revenue from extended warranty Program | \n", "cash_flows_Payments for purchases of intangible assets | \n", "cash_flows_Dividends paid to the Company shareholders | \n", "financial_position_Current portion of investment in Islamic financing contracts | \n", "financial_position_Non Current portion of investment in Islamic financing contracts | \n", "financial_position_Lease liabilities Non Current Portion | \n", "cash_flows_Gain on termination of a lease | \n", "cash_flows_Current portion of investment in Islamic financing contracts | \n", "cash_flows_Increase in deferred revenue from extended warranty program | \n", "cash_flows_Sales Instalment Receivable | \n", "cash_flows_Loss on disposal of property and equipment | \n", "cash_flows_Intangible assets written-off | \n", "cash_flows_Finance income from net investment in finance lease | \n", "financial_position_Trade and other receivables - current portion | \n", "financial_position_Installment sales receivables - current portion | \n", "financial_position_Right Of Use | \n", "financial_position_Trade and other receivables - noncurrent portion | \n", "financial_position_Installment sales receivables - noncurrent portion | \n", "financial_position_Deferred revenue from additional service program - current portion | \n", "financial_position_Lease Liability- current part | \n", "financial_position_Deferred revenue from additional service program - noncurrent portion | \n", "financial_position_Lease Liability- Non current part | \n", "income_statement_Zakat | \n", "income_statement_Deferred tax income (expense) | \n", "cash_flows_Depreciation of assets of right of use | \n", "cash_flows_The write-off of property and equipment | \n", "cash_flows_Intangible assets written off | \n", "cash_flows_Zakat Expense | \n", "cash_flows_Deferred Tax | \n", "cash_flows_End of service benefits | \n", "cash_flows_Loss - Income on termination of a lease | \n", "cash_flows_Deferred Revenue from additional sales program | \n", "cash_flows_Dividend payment | \n", "cash_flows_Gain on sub-lease | \n", "financial_position_Investment in Islamic financing contracts - non current | \n", "cash_flows_Property and equipment written off | \n", "cash_flows_Increase in extended warranty program | \n", "financial_position_Lease liabilities - Non Current | \n", "comprehensive_income_Re-measurement of end of service benefit obligation | \n", "cash_flows_impairment loss recognized on installment sales receivable, net | \n", "cash_flows_Impairment recognized against inventories | \n", "cash_flows_Purchase of treasury shares | \n", "cash_flows_Movement in foreign exchange translation | \n", "income_statement_Income tax on discontinued operations for period | \n", "equity_changes_Transfer from retained earnings | \n", "cash_flows_Adjustments for impairment (reversal of impairment) of mine properties | \n", "cash_flows_Expenditure on exploration and evaluation assets | \n", "income_statement_Adjustment for provision for slow moving items and inventory shortage | \n", "income_statement_Provisions | \n", "income_statement_provision for expected credit losses | \n", "cash_flows_Adjustments for increase (decrease) in royalty payable | \n", "financial_position_Oil and gas properties | \n", "financial_position_Mine properties | \n", "cash_flows_Proceeds from exercise of share options | \n", "cash_flows_Adjustments for gain on sale of exploration and evaluation assets | \n", "financial_position_Investment at fair value through profit or loss | \n", "financial_position_Deferred costs net | \n", "income_statement_Loss from investment at fair value through profit or loss | \n", "cash_flows_Adjustments for Provision for expected credit loss | \n", "cash_flows_Adjustments for Selling investments at fair value through profit or loss | \n", "cash_flows_Cash in Portfolio - investments at fair value through profit or loss | \n", "cash_flows_Adjustments for decrease (increase) in Loss from investment at fair value through profit or loss | \n", "financial_position_Investment at amortised cost | \n", "income_statement_Interest income from investment at amortised cost | \n", "cash_flows_Adjustments for Amortization of deferred costs | \n", "cash_flows_Adjustments for Amortisation of right of use asset | \n", "cash_flows_Adjustments for Financial charges on lease liabilities | \n", "cash_flows_Adjustments for Financial charges on term facilities | \n", "cash_flows_Interest income received from investment at amortised cost | \n", "income_statement_Other income, net | \n", "cash_flows_Adjustments for decrease (increase) in Depreciation of right of use asset | \n", "cash_flows_Expected credit losses | \n", "financial_position_Contract assets | \n", "financial_position_Deferred costs, net | \n", "cash_flows_Adjustments for decrease (increase) in Allowance for doubtful trade accounts receivable | \n", "cash_flows_Adjustments for Dividends from investments at fair value through profit or loss | \n", "cash_flows_Adjustments for Realized and unrealized profit from investment at fair value through profit and loss | \n", "cash_flows_Proceeds from investments at fair value through profit or loss | \n", "financial_position_Short-term investment at amortised cost | \n", "financial_position_Long term facilities | \n", "cash_flows_Adjustments for decrease (increase) in Amortization of deferred costs | \n", "cash_flows_Adjustments for Interest income from investment at amortised cost | \n", "cash_flows_Adjustments for Contract assets | \n", "cash_flows_Purchase investments at fair value through profit or loss | \n", "cash_flows_Adjustments for Allowance for expected credit losses | \n", "cash_flows_Adjustment to Interest income from investments at amortised cost | \n", "cash_flows_Adjustments for Employees' defined benefits paid | \n", "cash_flows_Purchase of investment at amortized costs | \n", "income_statement_Interest income from investments at amortised cost | \n", "cash_flows_Adjustments for Interest income from investments at amortised cost | \n", "cash_flows_Interest income received from investments at amortised cost | \n", "cash_flows_Selling investments at fair value through profit or loss | \n", "financial_position_Investment at fair value through profit and loss | \n", "income_statement_Profit from investment at fair value through profit and loss | \n", "cash_flows_Proceeds from disposal of subsidiary | \n", "cash_flows_Expenditure on oil and gas assets | \n", "cash_flows_Expenditure on mine development | \n", "cash_flows_Proceeds on disposal of mine properties | \n", "equity_changes_Final dividend paid | \n", "comprehensive_income_Other comprehensive income, available-for-sale financial assets | \n", "financial_position_Trade Account Receivable | \n", "financial_position_Advances to Suppliers | \n", "financial_position_Trade receivables | \n", "financial_position_Provision for Zakat and Income Tax | \n", "cash_flows_Adjustment for depreciation of investment properties | \n", "cash_flows_Adjustments for other non-current liabilities | \n", "cash_flows_Purchase of property, plant and equipment and investment properties | \n", "financial_position_Long term prepayments | \n", "cash_flows_Adjustments for increase (decrease) in contract assets | \n", "cash_flows_Adjustments for increase (decrease) in advances to suppliers | \n", "cash_flows_Cash or loan received from shareholders | \n", "income_statement_Impairment of intangible assets | \n", "cash_flows_Adjustments to Intangible assets written off | \n", "cash_flows_Employees defined benefits paid | \n", "cash_flows_Loss on disposal of subsidiary | \n", "financial_position_Contract Assets | \n", "financial_position_Accounts Receivable | \n", "income_statement_Impairment of investment in an associate | \n", "cash_flows_Allowance for expected credit losses | \n", "financial_position_Advance to Suppliers | \n", "financial_position_Other non-current assetsOther Non- Current Assets | \n", "cash_flows_Loss on disposal of a subsidiary | \n", "cash_flows_Adjustment for other non current liabilities | \n", "cash_flows_Remeasurement gain on right of use assets and lease liabilities | \n", "financial_position_Vehicles | \n", "financial_position_Other Property and equipment | \n", "financial_position_Right of use asset | \n", "financial_position_Advances | \n", "financial_position_Retention receivable | \n", "financial_position_Loans and borrowings, current | \n", "financial_position_Accrual and other liabilities | \n", "financial_position_Loans and borrowings, non-current | \n", "income_statement_Impairment loss on trade and other receivables | \n", "cash_flows_Net book value of vehicles disposed | \n", "cash_flows_Adjustments for impairment loss (reversal of impairment loss) on Trade and other receivables | \n", "cash_flows_Adjustments for depreciation and impairment (reversal of impairment) of Vehicles | \n", "cash_flows_Adjustments for depreciation and impairment (reversal of impairment) of Right of use Asset | \n", "cash_flows_Adjustments for depreciation and impairment (reversal of impairment) of other property, plant and equipments | \n", "cash_flows_Adjustments for Financial charges | \n", "cash_flows_Adjustments for Finance charge on lease liability | \n", "cash_flows_Additions to Vehicles | \n", "cash_flows_Employee benefits paid | \n", "cash_flows_Acquisition of capital work in progress | \n", "financial_position_Prepayments and Other Receivables | \n", "financial_position_Other property and equipment | \n", "financial_position_Capital work in progress | \n", "income_statement_Employee incentive | \n", "cash_flows_Employee incentive | \n", "cash_flows_Additions to Vehicles, net of CWIP | \n", "financial_position_Retention Receivable | \n", "cash_flows_Acquisition of other property and equipment | \n", "financial_position_Prepayments and other receivables | \n", "income_statement_Impairment loss on other receivable | \n", "cash_flows_Impairment loss on trade receivables | \n", "cash_flows_Impairment loss on other receivable | \n", "cash_flows_Adjustments for depreciation and impairment (reversal of impairment) of Other property plant and equipment | \n", "cash_flows_Acquisition of other property plant and equipment | \n", "cash_flows_Acquisition of intangible asset | \n", "financial_position_Retentions receivable | \n", "cash_flows_Adjustments for Other finance charges | \n", "cash_flows_Other Interest paid, classified as operating activities | \n", "cash_flows_Lease Interest paid, classified as operating activities | \n", "cash_flows_Interest paid on loans and borrowings, classified as operating activities | \n", "cash_flows_Additions to Vehicles, net of advances | \n", "cash_flows_Advances on acquisitions | \n", "income_statement_Employee Incentive | \n", "cash_flows_Impairment loss on Trade and Other receivables | \n", "cash_flows_Employee Incentive | \n", "cash_flows_Adjustments for decrease (increase) in Prepayment and Other receivables | \n", "cash_flows_Purchase of Capital work in progress | \n", "cash_flows_Related parties, net | \n", "cash_flows_Lease interest paid | \n", "financial_position_Special commission income/ gross financing and investment income | \n", "financial_position_Special commission expenses / return on deposits | \n", "financial_position_Special commission income (expense)/ financing and investment income (expense), net | \n", "financial_position_Fee and commission income (expense) | \n", "financial_position_Other operating income | \n", "financial_position_Total operating income | \n", "financial_position_Salaries and employee related expenses | \n", "financial_position_Rent and premises related expenses | \n", "financial_position_Depreciation and amortisation expense | \n", "financial_position_Other general and administrative expenses | \n", "financial_position_Board of directors' remunerations | \n", "financial_position_Other operating expense | \n", "financial_position_Total operating expenses | \n", "financial_position_Profit (loss) from operating activities | \n", "financial_position_Profit (loss) from continuing operations before zakat and income tax | \n", "financial_position_Zakat expenses on continuing operations for period | \n", "financial_position_Profit (loss) from continuing operations | \n", "financial_position_Profit (loss) for the period | \n", "financial_position_Profit (loss), attributable to equity holders of parent company | \n", "financial_position_Basic earnings (loss) per share from continuing operations | \n", "financial_position_Total basic earnings (loss) per share | \n", "financial_position_Diluted earnings (loss) per share from continuing operations | \n", "financial_position_Total diluted earnings (loss) per share | \n", "financial_position_Weighted average number of equity shares outstanding | \n", "income_statement_Profit (loss) from continuing operations before zakat and income tax | \n", "income_statement_Profit (loss) before zakat and income tax | \n", "income_statement_Adjustments for depreciation | \n", "income_statement_Adjustments for amortisation expense | \n", "income_statement_Adjustments for staff share based plan expenses | \n", "income_statement_Other adjustments for non-cash items | \n", "income_statement_Other adjustments to reconcile profit (loss) | \n", "income_statement_Total adjustments to reconcile profit (loss) | \n", "income_statement_Adjustments for decrease (increase) in financing, net | \n", "income_statement_Adjustments for decrease (increase) in loans, financing and advances | \n", "income_statement_Adjustments for decrease (increase) in other operating assets | \n", "income_statement_Net decrease (increase) in operating assets | \n", "income_statement_Net cash flows from (used in) operations | \n", "income_statement_Zakat expenses, classified as operating activities | \n", "income_statement_Net cash flows from (used in) operating activities | \n", "income_statement_Purchase of property and equipment | \n", "income_statement_Purchase of intangible assets | \n", "income_statement_Proceeds from debt securities, borrowings, term loan and sukuk | \n", "income_statement_Repayments of debt securities, borrowings, term loan and sukuk | \n", "income_statement_Payments of finance lease liabilities | \n", "income_statement_Increase (decrease) in cash and cash equivalents before effect of exchange rate changes | \n", "income_statement_Net increase (decrease) in cash and cash equivalents | \n", "income_statement_Cash and cash equivalents at beginning of period | \n", "income_statement_Cash and cash equivalents at end of period | \n", "comprehensive_income_Equity balance at beginning of period (before adjustments) | \n", "comprehensive_income_Equity balance at beginning of period (after adjustments) | \n", "comprehensive_income_Equity balance at end of period | \n", "financial_position_Impairment (reversal of impairment) charge for credit losses/ loans, financing and advances | \n", "income_statement_Adjustments for impairment (reversal of impairment) for loans, financing and advances | \n", "income_statement_Adjustments for increase (decrease) in other operating liabilities | \n", "income_statement_Net increase (decrease) in operating liabilities | \n", "financial_position_Share closing price at the last trading day of financial year (in numbers) | \n", "income_statement_Adjustments for income from fair value through statement of income [FVSI] financial instruments | \n", "income_statement_Proceeds from disposal of property and equipment | \n", "income_statement_Dividends paid, classified as financing activities | \n", "financial_position_Income tax on continuing operations for period | \n", "income_statement_Net cash flows from (used in) investing activities | \n", "financial_position_Income (loss) from fair value through statement of income [FVSI] financial instruments, net | \n", "cash_flows_Proceeds on disposal of exploration and evaluation assets | \n", "financial_position_Right-of-use assets, net | \n", "cash_flows_Accretion of interest | \n", "cash_flows_Gain on derivative instrument at FVTPL | \n", "cash_flows_Finance cost payment relating to term loans | \n", "cash_flows_Finance cost on lease liability | \n", "cash_flows_Derecognition of ROU and Lease liability | \n", "cash_flows_Write off property and equipment | \n", "cash_flows_Gain on derivative instrument at FVPL | \n", "cash_flows_ا Rent concession for leases | \n", "cash_flows_Write off (reversal) of property and equipment | \n", "cash_flows_Rent concession for leases | \n", "financial_position_Biological assets current | \n", "financial_position_Prepayments and other debit balances | \n", "financial_position_Assets classified as held for sale | \n", "financial_position_Accounts receivable | \n", "financial_position_right-of-use assets | \n", "financial_position_Biological assets | \n", "financial_position_Work in progress | \n", "financial_position_Investment | \n", "financial_position_Provision for guarantee loan related to associate | \n", "financial_position_Dismantling provision LIB | \n", "cash_flows_Biological assets current | \n", "cash_flows_right-of-use assets | \n", "cash_flows_Intangible assets | \n", "cash_flows_Work in progress | \n", "cash_flows_Assets classified as held for sale | \n", "financial_position_Vital assets | \n", "financial_position_Non - current biological assets | \n", "financial_position_Investments in equity instruments | \n", "income_statement_Impairment losses on other receivables | \n", "income_statement_impairment losses in inventory | \n", "income_statement_Losses of capital projects | \n", "income_statement_Share of profit or loss of an associate | \n", "comprehensive_income_Income tax (charge) credit relating to translation of foreign operations | \n", "cash_flows_Depreciation of biologicalassets | \n", "cash_flows_Losses of capital projects | \n", "cash_flows_Provision for loan guarantee in associates | \n", "cash_flows_Impairment losses on vital assets | \n", "cash_flows_Differences revaluation of crop stocks at harvest point | \n", "cash_flows_Impairment losses on other receivables | \n", "cash_flows_Gain on valuation of financial investments | \n", "cash_flows_impairment losses in inventory | \n", "income_statement_Differences revaluation of crop stocks at harvest point | \n", "income_statement_Loss of removal and destruction of crops | \n", "income_statement_Provision for loan guarantee in associates | \n", "income_statement_Impairment losses on vital assets | \n", "income_statement_Provision for expected credit losses | \n", "income_statement_Impairment on biological assets | \n", "cash_flows_Amortization of biological assets Cash Flow | \n", "cash_flows_Reversal provision Expected credit loss CF | \n", "cash_flows_Biological assets CF | \n", "financial_position_Non-current assets classified as held for sale | \n", "comprehensive_income_Income tax (charge) credit relating to unrealised losses on available-for-sale financial assets, net | \n", "comprehensive_income_Reclassification adjustment on available-for-sale financial assets due to impairment | \n", "cash_flows_Adjustments for depletion | \n", "financial_position_Financial assets at fair value through other comprehensive income | \n", "financial_position_Obligations under finance lease1 | \n", "financial_position_Obligations under finance lease | \n", "comprehensive_income_Unrealized gain on financial assets at fair value | \n", "comprehensive_income_Re-measurement gain on defined benefit plans | \n", "cash_flows_Proceeds from disposal of property, plant and equipment | \n", "cash_flows_Investment income from time deposits received | \n", "cash_flows_Net movement in other non-current assets | \n", "cash_flows_Movement in obligations under capital lease | \n", "cash_flows_Proceeds from short-term borrowings | \n", "comprehensive_income_Re-measurement (loss) gain on | \n", "cash_flows_Non cash post employees benefits expense | \n", "cash_flows_Interest income | \n", "cash_flows_Interest income received | \n", "financial_position_long term loans | \n", "financial_position_suggested dividends | \n", "financial_position_accumulated changes in OCI | \n", "cash_flows_changes in ECL Provision | \n", "cash_flows_Financing Expenses Paid | \n", "cash_flows_end of service paid | \n", "cash_flows_zakat paid | \n", "cash_flows_dividends payable paid | \n", "cash_flows_financing cost paid | \n", "financial_position_prepaid for fixed assets purchases | \n", "cash_flows_prepayments for PPE purchases | \n", "financial_position_noncurrent portion for long term loan | \n", "financial_position_Changes in OCI | \n", "cash_flows_Changes in expected credit losses | \n", "cash_flows_Paid empolyee benefits | \n", "cash_flows_paid dividends | \n", "cash_flows_paid payable dividends | \n", "financial_position_Suggested Dividends | \n", "cash_flows_Paid Financing cost | \n", "cash_flows_ROU Amortization | \n", "cash_flows_WIP Additions | \n", "income_statement_Impairment on trees | \n", "financial_position_Accumulated changes in other comprehensive income | \n", "financial_position_Securities auction shares under settlement | \n", "financial_position_Due to related party | \n", "cash_flows_Zakat adjustments | \n", "cash_flows_Chang in Securities auction shares under settlement | \n", "cash_flows_Unearned revenue | \n", "cash_flows_Additions of investment property | \n", "cash_flows_Chang In Due to related party | \n", "financial_position_Auction shares deposits under settlement | \n", "cash_flows_Chang In Provision for expected credit losses | \n", "cash_flows_Change In Due to related parties | \n", "cash_flows_Depreciations of right of used assets | \n", "cash_flows_provision of the expected credit loss | \n", "cash_flows_Employees benefits - Paid | \n", "cash_flows_Lease liability settlement against other income | \n", "cash_flows_Provided reversal of expected credit loss provision | \n", "cash_flows_Employees defined benefit obligation - Paid | \n", "cash_flows_Due to related party | \n", "cash_flows_Chang in Due to related party | \n", "cash_flows_Depreciation of investment properties | \n", "cash_flows_Zakat Adjustments | \n", "cash_flows_Cahng In Securities auction shares under settlement | \n", "cash_flows_Deferred revenue | \n", "cash_flows_Payment of fees from financing costs for the year | \n", "cash_flows_Payment from provision for potential claims | \n", "cash_flows_Payment from employees benefit during the year | \n", "financial_position_أمانات أسهم مزاد تحت التسوية | \n", "cash_flows_Provided of expected credit losses provision | \n", "cash_flows_Capital expenditure on completed investment properties | \n", "cash_flows_Chang In Unearned revenue | \n", "cash_flows_Non-Cash items Settlement of lease liability against other income | \n", "cash_flows_Provision for impairment of other debit balances | \n", "cash_flows_Impairment of goodwill - losses | \n", "cash_flows_Depreciations of investment property | \n", "cash_flows_Gain from disposal of right of use assets | \n", "cash_flows_Financing cost obligations during the year - Paid | \n", "cash_flows_Provision for potential claims - Paid | \n", "cash_flows_Due from related party | \n", "cash_flows_Expected credit losses provision during the year | \n", "cash_flows_Potential claims provision during the year | \n", "cash_flows_Payment For Due to related party | \n", "cash_flows_Change In Due to related party | \n", "cash_flows_Chang in Depreciations of investment property | \n", "cash_flows_Chang in Provision for expected credit losses | \n", "cash_flows_Change In Provision for impairment of other debit balances | \n", "cash_flows_Employees defined benefit obligation Paid | \n", "cash_flows_Due to related parties | \n", "cash_flows_Settlement of lease liability against other income | \n", "cash_flows_Depreciations of right of use assets | \n", "cash_flows_Expected credit loss provision - charged | \n", "financial_position_Short-term investments | \n", "financial_position_Due from the Government | \n", "financial_position_Other assets and receivables - current | \n", "financial_position_Investments in securities | \n", "financial_position_Other assets and receivables - non current | \n", "financial_position_Borrowings - current | \n", "financial_position_Trade and other payables | \n", "financial_position_Income taxes and zakat payable | \n", "financial_position_Borrowings - non-current | \n", "financial_position_Post-employment benefit obligations | \n", "financial_position_Provisions and other liabilities | \n", "financial_position_Additional paid-in capital | \n", "financial_position_Retained earnings - Unappropriated | \n", "financial_position_Retained earnings - Appropriated | \n", "comprehensive_income_Remeasurement of post-employment benefit obligations | \n", "comprehensive_income_Cash flow hedges and other | \n", "equity_changes_Bonus shares issued | \n", "cash_flows_Adjustments for unsuccessful exploration and evaluation expenditures | \n", "cash_flows_Change in fair value of investments through profit or loss | \n", "cash_flows_Adjustments for increase (decrease) in Trade and other payables | \n", "cash_flows_Other assets and receivables | \n", "cash_flows_Changes in Post-employment benefit obligations | \n", "cash_flows_Distributions from joint ventures and associates | \n", "cash_flows_Dividends from investments in securities - investing activities | \n", "comprehensive_income_Changes in fair value of equity investments classified as fair value through other comprehensive income | \n", "cash_flows_Change in joint ventures and associates inventory profit elimination | \n", "cash_flows_Changes in provisions and other liabilities | \n", "cash_flows_Cash acquired on acquisition of subsidiary | \n", "cash_flows_Proceeds from sale of non-controlling equity interest in a subsidiary | \n", "cash_flows_Proceeds from issue of treasury shares | \n", "comprehensive_income_Share of post-employment benefit obligations remeasurement from joint ventures and associates | \n", "cash_flows_Other | \n", "cash_flows_Inventory movement | \n", "financial_position_Post-employment benefits | \n", "financial_position_Trade payables and other liabilities | \n", "financial_position_Liabilities directly associated with assets classified as held for sale | \n", "financial_position_Post-employment benefits, non-current | \n", "comprehensive_income_Share of post-employment benefits remeasurement from joint ventures and associates | \n", "comprehensive_income_Changes in fair value of debt securities classified as fair value through other comprehensive income | \n", "cash_flows_Share of results of joint ventures and associates | \n", "cash_flows_Loss on fair value measurement of assets classified as held for sale | \n", "cash_flows_Adjustments for decrease (increase) in due from the Government | \n", "cash_flows_Adjustments in increase (decrease) in Trade payables and other liabilities | \n", "cash_flows_Changes in post-employment benefits | \n", "cash_flows_Net maturities (purchases) of short-term investments | \n", "cash_flows_Proceeds from sale of subsidiaries | \n", "comprehensive_income_Remeasurement of post-employment benefits | \n", "cash_flows_Adjustments for decrease (increase) in other assets and receivables | \n", "cash_flows_Proceeds from sale of equity interest in an associate | \n", "cash_flows_Proceeds from borrowings | \n", "cash_flows_Proceeds from sale of affiliates | \n", "cash_flows_Adjustments for increase decrease in Trade payables and other laibilties | \n", "cash_flows_proceeds from sale of equity intrest in an associate | \n", "cash_flows_Payments of other equity instruments | \n", "income_statement_Reversal of Impairment in Property,plant and Equipment | \n", "income_statement_Miscellaneous income, net | \n", "income_statement_Reversal of impairment loss | \n", "cash_flows_Adjustments for impairment (reversal of impairment) of oil and gas properties | \n", "equity_changes_Transfer to statutory reserve | \n", "equity_changes_Interim dividend paid | \n", "comprehensive_income_Reclassification adjustment on available-for-sale financial assets due to sale | \n", "financial_position_Prepayments and other current assets | \n", "financial_position_Trade payples | \n", "financial_position_Accrued and other current loabilities | \n", "financial_position_Lease liabilities-current portion | \n", "financial_position_Employee benefites | \n", "financial_position_Lease Laibilities | \n", "cash_flows_Accrued and other current liabilities | \n", "cash_flows_Prepayments and other current assets | \n", "cash_flows_Prepayments and other assets | \n", "cash_flows_Short-term investments mad | \n", "cash_flows_Proceed from maturity of short-term investment | \n", "financial_position_Employees benefits current | \n", "cash_flows_Proceeds on disposal of oil and gas properties | \n", "financial_position_Investments | \n", "financial_position_Clearing participant financial assets | \n", "financial_position_Margin deposits from clearing participants | \n", "financial_position_Balance due to Capital Market Authority (CMA) | \n", "income_statement_Impairment loss on financial assets | \n", "income_statement_Investment income | \n", "cash_flows_Realised gain on sale of investments | \n", "cash_flows_Unrealised gain on investments | \n", "cash_flows_Dividend income | \n", "cash_flows_Special commission income | \n", "cash_flows_Commission from deposits with SAMA | \n", "cash_flows_Commission from SAMA Bills | \n", "cash_flows_Special commission income received | \n", "cash_flows_Commission from SAMA Bills received | \n", "financial_position_Margin deposits from clearing participant | \n", "financial_position_Members contribution to clearing house funds | \n", "cash_flows_Zakat | \n", "cash_flows_ZAKAT | \n", "cash_flows_Interest expense on lease liability | \n", "cash_flows_Deposits with Saudi Central Bank (SAMA) | \n", "cash_flows_Member contribution to clearing house fund | \n", "cash_flows_Additional investment in equity-accounted investee | \n", "cash_flows_Proceeds from disposal of investments | \n", "cash_flows_Proceeds from maturity of sukuk | \n", "cash_flows_Purchase of intangible assets and property and equipment | \n", "financial_position_Equity-accounted investee | \n", "financial_position_Balances due to Capital Market Authority | \n", "income_statement_Investments income | \n", "cash_flows_Charge for credit losses on accounts receivable | \n", "cash_flows_Provision for employees end-of-service benefits | \n", "cash_flows_Share of loss in equity-accounted investee | \n", "cash_flows_Balance due to the Capital Market Authority | \n", "cash_flows_Margin deposit from clearing participant | \n", "cash_flows_Members contribution to clearing house fund | \n", "cash_flows_Employees end-of-service benefits paid | \n", "cash_flows_Dividend income received | \n", "financial_position_Clearing participant financial liabilities | \n", "cash_flows_Commission income on SUKUK | \n", "cash_flows_Commission from SAMA Bills and deposits received | \n", "financial_position_Clearing participant financial liabilitie | \n", "cash_flows_Commission income | \n", "cash_flows_Commission income received on investment at amortised cost | \n", "cash_flows_Commission received on time deposits | \n", "cash_flows_Finance cost paid of lease liabilities | \n", "income_statement_Reversal of impairment in investment in associates | \n", "cash_flows_Reversal of impairment in associates | \n", "financial_position_Deposits with Saudi Central Bank | \n", "financial_position_Balance due to Capital Market Authority | \n", "cash_flows_Realized gain on sale of investments | \n", "cash_flows_Unrealized gain on investments | \n", "cash_flows_Dividends income | \n", "cash_flows_Purchase of investments | \n", "financial_position_Deposits with SAMA | \n", "financial_position_Lease liability | \n", "cash_flows_Charge for impairment on investments held at amortized cost | \n", "financial_position_Non-controlling interest put option | \n", "cash_flows_Balance due to Capital Market Authority | \n", "cash_flows_Clearing participant financial asset | \n", "financial_position_Groups share in revaluation reserve for change in fair value of cash flow hedge | \n", "financial_position_Groups share in investment at fair value through other comprehensive income in associate company | \n", "comprehensive_income_Net losses gain from equity instruments at fair value through other comprehensive income | \n", "cash_flows_Amortization of right of use assets | \n", "cash_flows_Financing cost right of use assets | \n", "cash_flows_Proceeds from sale of Investment at fair value through profit or loss | \n", "cash_flows_Dividends received from investments in associate companies | \n", "financial_position_Revaluation reserve of investments in equity instruments at fair value through other comprehensive income in associate | \n", "financial_position_Fair value change reserve of associate companys cash flow risks hedging | \n", "income_statement_Gain from the sales of property and equipment | \n", "comprehensive_income_The Groups share of the profit on remeasurement of employee defined benefit obligations of the associate | \n", "comprehensive_income_The Group share of profits from investments in equity instruments at fair value through other comprehensive income of the associate | \n", "comprehensive_income_The Group share of change in fair value of the cash flow risks hedging of the associate | \n", "cash_flows_Finance charge of right of use assets | \n", "cash_flows_Dividends from equity instruments at fair value | \n", "cash_flows_Gain from investment valuation at fair value through profit and loss | \n", "cash_flows_Dividends received from investments at fair value | \n", "cash_flows_Dividends received from investment in associate | \n", "financial_position_Company s share in investment at fair value through other comprehensive income in associate company | \n", "financial_position_Revaluation reserve for change in fair value of cash flow hedge | \n", "comprehensive_income_Company s share in change for fair value of cash flow hedge in associate company | \n", "comprehensive_income_Company share in investment at fair value through other comprehensive income in associate company | \n", "cash_flows_share of results of associate companies Accounted by equity method | \n", "cash_flows_Dividends from investments at fair value | \n", "income_statement_Revaluation gains from investment at fair value through profit or loss | \n", "comprehensive_income_Groups share of Re measuring profits of defined benefit plan of the associate company | \n", "comprehensive_income_Change in value of investment in equity instruments at fair value | \n", "cash_flows_Proceeds from dividends from investments at fair value | \n", "cash_flows_Gain from investment valuation at fair value through profit or loss | \n", "comprehensive_income_Change in fair value of derivative financial instruments in associate company | \n", "cash_flows_Gain from sale of shares of an associate co | \n", "cash_flows_Purchase of Investment at Fair value through profit or loss | \n", "cash_flows_fair value through other comprehensive income | \n", "financial_position_Investments at fair value through profit or loss | \n", "income_statement_Gain from investment valuation at fair | \n", "cash_flows_Dividends received from investment in subsidiary | \n", "cash_flows_unreceived portion of associate companies cash dividends | \n", "cash_flows_Proceeds from sale of investment at fair value through profit or loss | \n", "income_statement_Gain from sale of shares of an associate company | \n", "cash_flows_Written off from provision Impairment in inventory value | \n", "cash_flows_Impairment in inventory value | \n", "cash_flows_Written off from provision Impairment of trade receivables | \n", "cash_flows_Proceeds from sale of Investments at fair value through profit or loss | \n", "cash_flows_Proceeds from sale of investment shares in associate company | \n", "income_statement_Gain from sold of shares of an associate company | \n", "income_statement_Gain from investment valuation at fair value | \n", "cash_flows_Proceeds from sale of investments in equity instruments at fair value through other comprehensive income | \n", "cash_flows_Proceeds from disposal of subsidiaries | \n", "cash_flows_Addition in cash and cash equivalents due to acquisition and establishment of subsidiaries | \n", "cash_flows_Gain on modification and termination of lease liability, net | \n", "cash_flows_Additions to right-of-use assets | \n", "equity_changes_Changes in non-controlling interest | \n", "financial_position_Other assets and receivables | \n", "financial_position_Current portion of employees benefits | \n", "financial_position_debt | \n", "cash_flows_Adjustment for depreciation of property, plant and equipment | \n", "cash_flows_Adjustment for amortization of intangible assets | \n", "cash_flows_Employees benefits | \n", "cash_flows_Adjustment for loss on disposal of property, plant and equipment | \n", "cash_flows_Adjustment for write-off of property, plant and equipment | \n", "cash_flows_Changes in Inventories | \n", "cash_flows_Employees benefits paid | \n", "cash_flows_Repayment of debt | \n", "financial_position_current portion of employees benefits | \n", "financial_position_Debt | \n", "cash_flows_Adjustment for Write-off of property plant and equipment | \n", "cash_flows_Adjustment for Impairment of property, plant and equipment | \n", "cash_flows_Debt proceeds | \n", "financial_position_cash and cash equivalents | \n", "financial_position_trade receivable | \n", "financial_position_prepayments | \n", "financial_position_inventories | \n", "financial_position_other current assets | \n", "financial_position_Right-o f-use assets | \n", "financial_position_Employees benefits | \n", "cash_flows_Adjustments written-off of intangible assets | \n", "cash_flows_COST PAID | \n", "financial_position_Cash and cash equivalent | \n", "financial_position_other assets and receivables | \n", "financial_position_Current portion of debt | \n", "financial_position_Current portion of employee benefits | \n", "financial_position_Trade payables | \n", "financial_position_Accruals and other current liabilities | \n", "financial_position_Zakat provision | \n", "cash_flows_Adjustments for depreciation of property , plant and equipment | \n", "cash_flows_Adjustments for depreciation of right of use assets | \n", "cash_flows_Adjustment for write off property , plant and equipment | \n", "cash_flows_Adjustment for provision for write off property , plant and equipment | \n", "cash_flows_Adjustment for employees benefits | \n", "cash_flows_Adjustment for accruals and other auurent liabililties | \n", "cash_flows_Finanace cost paid | \n", "cash_flows_Insurance proceeds received for business interruption losses | \n", "cash_flows_Insurance proceeds received for damaged assets | \n", "cash_flows_Payment of lease liabillties | \n", "financial_position_other current assets and receivables | \n", "cash_flows_FINANCE COST PAID | \n", "financial_position_Other assrts and receivables | \n", "cash_flows_Adjustment for drpreciation of property , plant and equipment | \n", "cash_flows_Adjustment for loss on disposal of property , plant and equipment | \n", "cash_flows_Change in inventories | \n", "cash_flows_Other current and non current assets | \n", "cash_flows_Accruals and other current liabilities | \n", "cash_flows_Insurance proceeds received for business | \n", "cash_flows_Net debt proceeds | \n", "financial_position_Right -of- ues assets | \n", "financial_position_Cureent portion of lease liabilities | \n", "cash_flows_Adjustments for depreciation of property,plant and equipment | \n", "cash_flows_Adjustment for depreciation of right-of-use assets | \n", "cash_flows_Adjustment for amortisation of intangible assets | \n", "cash_flows_Adjustment for write -off property, plant and equipment | \n", "cash_flows_Adjustment for provision for write -off property, plant and equipment | \n", "cash_flows_Adjustment for gain on derecognition of right of use assets and lease liabilities | \n", "cash_flows_Adjustment for other non- current assets | \n", "cash_flows_Adjustment for accruals and other current liabilities | \n", "cash_flows_Addition to intangible assets | \n", "cash_flows_proceeds of debt | \n", "cash_flows_Payment of lease liabilities | \n", "financial_position_Current portion of employess benefits | \n", "financial_position_right of use assets | \n", "financial_position_current portion of empolyees benfits | \n", "cash_flows_Gain from derecognition of lease liabilities | \n", "cash_flows_employees benefits paid | \n", "cash_flows_Insurance Proceeds for business interruption losses | \n", "cash_flows_Insurarnce proceeds against damaged assets | \n", "cash_flows_adjustments for depreciation of property palnt and equipments | \n", "cash_flows_Adjustments for amortization of intangible assets | \n", "cash_flows_Write off property, plant and equipments | \n", "cash_flows_Adjustments for decrease (increase) in inventory | \n", "cash_flows_Receipt of government grant | \n", "cash_flows_Adjustments for movement in tenant deposits | \n", "equity_changes_Share issue cost | \n", "financial_position_Financial assets held at fair value through other comprehensive income (FVTOCI) | \n", "financial_position_Financial assets held at amortised cost | \n", "financial_position_Prepayments and other assets - Nnon current portion | \n", "financial_position_Lease liabilities. | \n", "financial_position_Lease liabilities1 | \n", "comprehensive_income_Change in fair value of financial assets held at fair value through other comprehensive income (FVTOCI) | \n", "comprehensive_income_Share of other comprehensive loss from associates0 | \n", "cash_flows_Finance costs of lease liabilities | \n", "cash_flows_Amortization of prepaid upfront fees on term loan | \n", "cash_flows_Follow up fees on term loan | \n", "cash_flows_Provision for replacing cylinders and others | \n", "cash_flows_Reversal of provision for other receivables | \n", "cash_flows_Accrued expenses and other current liabilities | \n", "cash_flows_Financial assets held at fair value through profit or loss (FVTPL) | \n", "cash_flows_Employees defined benefits liabilities paid | \n", "cash_flows_Purchase of financial assets held at amortized cost | \n", "cash_flows_Proceeds from disposal of financial assets held at amortized cost | \n", "cash_flows_Proceeds from disposal of financial assets held at fair value through other comprehensive income (FVTOCI) | \n", "cash_flows_Dividends income received from associates | \n", "cash_flows_Dividends income received from financial assets at fair value through other comprehensive income (FVTOCI) | \n", "financial_position_Investments available for sale | \n", "financial_position_Lease liabilities - current portion | \n", "financial_position_Lease liabilities -non-current portion | \n", "comprehensive_income_Actuarial gain (losses) on employees defined benefits liabilities | \n", "cash_flows_Interest of lease liabilities | \n", "cash_flows_Reversal of provision for expected credit losses | \n", "cash_flows_Dividends received from investments at FVTOCI | \n", "cash_flows_Impairment on investment at amortized cost | \n", "cash_flows_Income from investment at amortized cost | \n", "cash_flows_Rent Income from investment properties | \n", "cash_flows_Income from short - term Murabaha time deposits | \n", "cash_flows_Provision for gas cylinder inventory | \n", "cash_flows_Dividends received from associates | \n", "cash_flows_Dividends received from investments FVTOCI | \n", "financial_position_Capital Work in progress | \n", "comprehensive_income_Change in fair value of investments in financial assets through other comprehensive income | \n", "financial_position_Asset Under Construction | \n", "financial_position_Investment in equity instrument at fair value through other comprehensive income | \n", "financial_position_Current Lease Liabilities | \n", "financial_position_Non Current Lease Liabilities | \n", "comprehensive_income_Premeasurement of employee defined benefit obligation | \n", "cash_flows_Depreciation of right to use assets | \n", "cash_flows_finance charges | \n", "cash_flows_Amortization of financing costs for a long-term loan | \n", "cash_flows_Employee's defined benefit obligations paid | \n", "cash_flows_Purchase of investment in equity instruments | \n", "cash_flows_Proceed from sale of investments in equity instruments | \n", "cash_flows_Dividends received from investments in associates | \n", "cash_flows_Dividends received from investments in equity instruments | \n", "cash_flows_provision for replacing cylinders and others | \n", "financial_position_Financial assets held at fair value through other | \n", "financial_position_Lease liabilitiess | \n", "comprehensive_income_Re measurement loss gain on employees defined benefits liabilities | \n", "cash_flows_Provision for(reversal of) expected credit losses | \n", "cash_flows_Amortisation of prepaid upfront fees on term loan | \n", "cash_flows_Loss on disposal of investment held at FVOCI | \n", "cash_flows_Financial assets at FVTPL | \n", "cash_flows_Dividends income received from investments at FVTOCI | \n", "cash_flows_Disposal of(additions to) investments at FVTOCI | \n", "cash_flows_Proceeds from disposal of property, plant, and equipment | \n", "cash_flows_intangible assets transferred to expenses | \n", "cash_flows_Other provisions | \n", "cash_flows_Purchase of investments held at amortized cost | \n", "cash_flows_Financial assets at FVPL | \n", "cash_flows_Finance income received from investment at amortized cost | \n", "cash_flows_Dividends income from investments at FVTOCI | \n", "cash_flows_Addition of investments at FVTOCI | \n", "cash_flows_Follow up fees of term loan | \n", "cash_flows_Purchase of financial assets held at amortised cost | \n", "cash_flows_Disposal of investments at FVTOCI | \n", "cash_flows_Impairment of gas cylinder to net realizable value | \n", "cash_flows_Reversal of other provision | \n", "cash_flows_Unrealized gain losses from investments in equity instruments | \n", "cash_flows_Actuarial losses on re-measurement of employee's defined benefit obligations | \n", "cash_flows_Proceed from selling investments held at amortized cost | \n", "comprehensive_income_Change in fair value of investment in equity instruments through other comprehensive income | \n", "financial_position_Investments in equity instruments designated at FVOCI | \n", "financial_position_Investments designated at FVPL | \n", "financial_position_Trade receivables - non-current | \n", "financial_position_Loan from a related party - current portion | \n", "financial_position_Loan from a related party | \n", "financial_position_Loan from Ministry of Finance | \n", "income_statement_Declined in value of investment properties | \n", "income_statement_Impairment of property and equipment | \n", "income_statement_Write-off of capital work-in-progress | \n", "income_statement_Impairment for prepayments | \n", "income_statement_Gain on revaluation of investments designated at FVPL | \n", "income_statement_Dividends income | \n", "income_statement_Gain on disposal of investments designated at FVPL | \n", "income_statement_Reversal provision of expected credit losses related to prepayments and other receivables due to collections of legal cases | \n", "cash_flows_Deprecation of right-of-use assets | \n", "cash_flows_Expected credit losses provision | \n", "cash_flows_Gain on disposal of investments designated as at FYPL | \n", "cash_flows_Write-off of PROJECT UNDER CONSTRCTION | \n", "cash_flows_Decline in value of investment properties | \n", "cash_flows_Impairment provision for prepayments | \n", "cash_flows_Reversal provision of expected credit losses related to prepayments and other receivables due to collections of legal cases | \n", "cash_flows_Derivative financial instruments | \n", "cash_flows_Employees' defined benefit obligations paid | \n", "cash_flows_Financial charges paid | \n", "cash_flows_Term Loan related party | \n", "financial_position_Contracts assets | \n", "financial_position_Trade receivables non-current portion | \n", "financial_position_Developed properties non-current portion | \n", "financial_position_Loan from Ministry of Finance current portion | \n", "financial_position_Lease liabilities current portion | \n", "cash_flows_Net proceeds from disposal of a subsidiary, net of cash disposed | \n", "cash_flows_Acquisition of non-controlling interests | \n", "cash_flows_Long-term and short-term loans, net | \n", "cash_flows_Dividends issues by a subsidiary to non-controlling interests | \n", "cash_flows_Cash and cash equivalents at the beginning of the period attributable to discounted operations | \n", "financial_position_Short term sukuk | \n", "financial_position_Advances from subscribers | \n", "financial_position_Contract liabilities | \n", "financial_position_Contract Liabilities | \n", "financial_position_Investments in debt instruments | \n", "financial_position_Current portion of long-term debt | \n", "financial_position_Long-term debt | \n", "comprehensive_income_Net change on revaluation of investments in equity instruments classified as fair value through other comprehensive income | \n", "comprehensive_income_Tax benefit | \n", "cash_flows_Depreciation of plant and equipment | \n", "cash_flows_Amortisation of intangible assets and other assets | \n", "cash_flows_Impairments and write-offs of plant and equipment, right-of-use assets and intangible assets | \n", "cash_flows_Impairment (net of reversals) of non-integral joint ventures and associates | \n", "cash_flows_Loss on disposals of property, plant and equipment | \n", "cash_flows_(Increase) decrease in other non-current assets | \n", "cash_flows_Increase in net employee benefits obligations | \n", "cash_flows_Increase in provisions and other non-current liabilities | \n", "cash_flows_Increase in trade payables | \n", "cash_flows_Increase (decrease) in accruals and other current liabilities | \n", "cash_flows_Dividend received from integral joint ventures | \n", "cash_flows_Short-term investments, net | \n", "cash_flows_Proceeds on the maturity of investments in debt and disposals of equity instruments | \n", "cash_flows_Proceeds from sale of property, plant and equipment | \n", "cash_flows_Dividend received from non-integral joint ventures and associates | \n", "cash_flows_Depreciation, amortisation and impairment | \n", "cash_flows_Finance costs | \n", "cash_flows_Provisions and other movements, net | \n", "cash_flows_Other assets and liabilities changes | \n", "cash_flows_Investments in associates and joint ventures, net | \n", "cash_flows_Other assets movements | \n", "cash_flows_Proceeds from debt | \n", "cash_flows_Proceeds against acquisition of non-controlling interests | \n", "financial_position_Investments in debt and equity instruments | \n", "financial_position_Assets held for sale | \n", "financial_position_Liabilities directly associated with assets held for sale | \n", "comprehensive_income_Share of other comprehensive loss of associates and joint ventures | \n", "cash_flows_Changes in inventories, trade recievable and payables | \n", "cash_flows_Depreciation,amortisation and impairment | \n", "cash_flows_Fair value re-measurement on assets helf for sale | \n", "cash_flows_Other movements, net | \n", "cash_flows_Interest received | \n", "financial_position_Property, plant and equipment and right-of-use assets | \n", "financial_position_Short-term borrowings, current portion of long-term debt and lease liabilities | \n", "financial_position_Trade payables and other current liabilities | \n", "financial_position_Long-term debt and lease liabilities | \n", "financial_position_Employee benefits | \n", "cash_flows_Income before zakat and income tax | \n", "cash_flows_Share of results of associates and joint ventures | \n", "cash_flows_Decrease in other non-current assets | \n", "cash_flows_Increase (decrease) in employee benefits | \n", "cash_flows_Increase in other non-current liabilities | \n", "cash_flows_The acquisitions of non controlling interests | \n", "cash_flows_Adjustments for gain on sale of oil and gas properties | \n", "cash_flows_Adjustments for gain on sale of mine properties | \n", "financial_position_Current portion of Lease liabilities | \n", "comprehensive_income_Investments at fair value through other comprehensive income - net change in fair value | \n", "income_statement_Gain on disposal of investment | \n", "cash_flows_Gain on disposal of investment | \n", "financial_position_Loans and borrowings | \n", "income_statement_Reversal of provision no longer required | \n", "income_statement_Impairment loss | \n", "equity_changes_Transfer to capital | \n", "financial_position_VAT payable | \n", "income_statement_Depreciation of right-of-us | \n", "cash_flows_Adjustments for depreciation of right-of-use assets | \n", "financial_position_Right of return assets | \n", "financial_position_Refund liabilities | \n", "cash_flows_Depreaction of right-of-use-assets | \n", "comprehensive_income_Income tax (charge) credit relating to hedges of net investment in foreign operations | \n", "comprehensive_income_Reclassification adjustment on hedges of net investment in foreign operations | \n", "comprehensive_income_Other comprehensive income, hedges of net investment in foreign operations | \n", "equity_changes_Transfer to general reserve | \n", "equity_changes_Discontinued operations | \n", "equity_changes_Reclassification of depreciation transferred | \n", "equity_changes_Other contributions by equity holders | \n", "equity_changes_Treasury share transactions | \n", "equity_changes_Share-based payment transactions | \n", "financial_position_Right to use Assets | \n", "financial_position_Current Lease Liability | \n", "income_statement_Share from operations results of Joint ventures | \n", "cash_flows_Depreciation of Right to use Assets | \n", "financial_position_Long Term Lease Liability | \n", "financial_position_Right to use assets | \n", "financial_position_Current lease liability | \n", "financial_position_Long Term lease liability | \n", "financial_position_Current portion of Islamic Murabaha Contracts long-term | \n", "cash_flows_Payments of financing costs | \n", "cash_flows_Net Finance Cost | \n", "financial_position_Capital works in progress | \n", "financial_position_Right to use assets, Net | \n", "financial_position_Provision for Zakat | \n", "financial_position_Provision for land restoration subject to the franchise license | \n", "comprehensive_income_Gains or losses on financial assets at fair value through | \n", "comprehensive_income_Difference remeasurement provision for end of service | \n", "cash_flows_Provision for obsolescence of spare parts | \n", "cash_flows_The change in leasing obligations | \n", "cash_flows_Change in provision of land restoration | \n", "cash_flows_Change in financial investments at fair value through profit or loss | \n", "cash_flows_Proceeds from investment income | \n", "cash_flows_Previous years adjustments | \n", "financial_position_Capital works in progres | \n", "financial_position_Right of use assets, Net | \n", "financial_position_Provision for land restoration cost | \n", "income_statement_Gain from sale of property, plant and equipment | \n", "cash_flows_Provision for obsolescence of main spare parts (machinery and ovens) | \n", "cash_flows_Change in provision of land restoration cost | \n", "cash_flows_Realized gain from financial assets at fair value through profit or loss | \n", "cash_flows_Disposal or purchase of financial assets at fair value through profit or loss | \n", "cash_flows_Change in the main spare parts (machinery and ovens) | \n", "cash_flows_Change in the right of use assets | \n", "cash_flows_Realized gain from financial assets at fair value through other comprehensive income | \n", "income_statement_Allowance expense for doubtful debts | \n", "comprehensive_income_Re-measurement for employees defined benefits | \n", "comprehensive_income_Gain of change in fair value of financial assets designated at fair value through other comprehensive income | \n", "cash_flows_Realized and unrealized gain from financial assets at fair value through profit or loss -trading | \n", "cash_flows_Share of results from associate companies using equity method | \n", "cash_flows_Zakat Paid | \n", "cash_flows_Employees' defined benefits liabilities paid | \n", "cash_flows_Change in financial assets at fair value through profit or loss | \n", "cash_flows_Prior years adjustments | \n", "financial_position_Projects under construction | \n", "comprehensive_income_Losses,gains on financial assets at fair value through other comprehensive income | \n", "cash_flows_Provision for obsolescence of machineries and furnaces spare parts | \n", "cash_flows_Income from financial assets at fair value through other comprehensive income | \n", "cash_flows_Income from financial investment at fair value through profit or loss | \n", "cash_flows_Gain, loss from associate companies | \n", "cash_flows_Change in lease liabilities | \n", "cash_flows_Dividends payable | \n", "cash_flows_Reversed zakat provision for prior years | \n", "cash_flows_Change in lease obligations | \n", "financial_position_Right to use assets Net | \n", "financial_position_Lease liabilities current | \n", "financial_position_Lease liabilities Noncurrent | \n", "financial_position_Provision for End of Service Indemnity | \n", "income_statement_Gain on sale of property, plant and equipmentt | \n", "comprehensive_income_(losses) Gains on financial assets at fair value through other comprehensive income | \n", "cash_flows_Change in the right to use the asset | \n", "comprehensive_income_Gain or loss of change in fair value of financial assets at fair value through other comprehensive income | \n", "cash_flows_Provision for obsolescence of main spare parts | \n", "cash_flows_Change in provision of land restorations cost | \n", "cash_flows_Change in leasing obligations | \n", "cash_flows_Change in the right of use the asset | \n", "financial_position_Provision for land restoration subject to the franchise | \n", "income_statement_Gain on sale of property, plant, and equipment | \n", "comprehensive_income_loss or gain of change in fair value of financial assets at fair value through other comprehensive income | \n", "cash_flows_Realized gain from disposal of financial assets at fair value through profit or loss | \n", "cash_flows_Reversed zakat provision | \n", "cash_flows_Purchase of main spare parts | \n", "financial_position_projects under costruction | \n", "financial_position_right to use assets Net | \n", "financial_position_zakat provsion | \n", "financial_position_lease libailities current portion | \n", "financial_position_lease liabilities noncurrent portion | \n", "income_statement_investment income | \n", "cash_flows_Adjustment for previous years | \n", "cash_flows_Change in financial assets at fair value through OCI | \n", "cash_flows_Investment in isalimc Murabaha | \n", "cash_flows_Financial assets at fair value through profit or losses | \n", "cash_flows_Short-term deposits with original maturities of more than three months | \n", "financial_position_Obligation for equity accounted investees | \n", "income_statement_Gain on sale of investment property, net | \n", "income_statement_Reversal of impairment loss on property, plant and equipment | \n", "income_statement_Zakat reversal for prior years | \n", "financial_position_Financial assets and Short-term Murabaha deposits | \n", "income_statement_Reversal of impairment loss on property, plant, and equipment | \n", "cash_flows_Reversal of impairment loss on property, plant, and equipment | \n", "financial_position_Zakat and foreign tax provision | \n", "financial_position_Bank Borrowings | \n", "cash_flows_Gain on derecognition of right-of-use assets | \n", "cash_flows_Impairment loss on the trade receivables | \n", "financial_position_Right-of-use Assets | \n", "cash_flows_Depereciation Right-of-use Assets | \n", "cash_flows_Finance costs-net | \n", "cash_flows_Provision for employees' benefits | \n", "cash_flows_Depreciation of property and equipment | \n", "cash_flows_Amortisation of intangible assets | \n", "financial_position_Financial assets at fair value through other | \n", "cash_flows_Impairment loss on intangible assets | \n", "cash_flows_Loss on disposals during the year | \n", "cash_flows_The impairment loss on trade receivables | \n", "cash_flows_Purchase of vehicles | \n", "cash_flows_Investment made during the year | \n", "income_statement_Zakat and tax | \n", "cash_flows_Investments | \n", "financial_position_Deferred tax asset | \n", "financial_position_Bank borrowings- non-current portion | \n", "income_statement_Net fair value loss on derivative financial instruments | \n", "income_statement_Expected credit loss on trade receivables | \n", "comprehensive_income_Remeasurement on employees defined benefits obligations | \n", "cash_flows_Loss on financial derivative | \n", "cash_flows_Allowance for spare parts | \n", "cash_flows_Acquisition of a subsidiary, net of cash acquired | \n", "financial_position_Current portion of bank borrowings | \n", "cash_flows_mortisation of intangible assets | \n", "financial_position_Investment at fair value through other comprehensive income | \n", "cash_flows_Acquisition of a subsidiary, net cash acquired | \n", "financial_position_Advance against investment | \n", "cash_flows_Amortisation of the intangible assets | \n", "cash_flows_Cash and cash equivalents at the beginning of the period | \n", "income_statement_The Selling and marketing expenses | \n", "income_statement_The General and administrative expenses | \n", "income_statement_The allowance for impairment losses on trade receivables | \n", "cash_flows_The Gain on derecognition of right-of-use assets | \n", "cash_flows_The Purchase of vehicles | \n", "cash_flows_The Finance costs paid | \n", "cash_flows_The Employee benefits paid | \n", "cash_flows_Investment in subsidiary, net of cash acquired | \n", "cash_flows_gain on derecognition of right-of-use assets | \n", "financial_position_Capital advances | \n", "cash_flows_Settlement of finance lease contract | \n", "cash_flows_Gain on disposal of right of use assets | \n", "cash_flows_Share of loss from associate | \n", "cash_flows_Change in capital advance | \n", "cash_flows_Investment in an associate | \n", "financial_position_Amount due from an associate | \n", "financial_position_Lease liabilities, Current | \n", "financial_position_Lease liabilities-non currnet | \n", "cash_flows_Change in related parties balances | \n", "financial_position_Investment in an associate | \n", "cash_flows_Amount due to related parties | \n", "financial_position_Concession contract receivables | \n", "financial_position_Other reserves of equity-accounted investees | \n", "financial_position_Actuarial valuation reserve | \n", "cash_flows_Allowance for expected credit losses on contract assets | \n", "cash_flows_Loss on termination of lease contracts | \n", "cash_flows_Allowance for expected credit losses on trade receivables | \n", "cash_flows_Write-off of property and equipment | \n", "cash_flows_Repayment of loan from equity accounted investee | \n", "financial_position_Financial asset from service concession arrangement | \n", "equity_changes_Increase in share capital | \n", "cash_flows_Settlement of finance lease liability | \n", "cash_flows_Gain on termination of lease | \n", "cash_flows_Payment received on loan to equity accounted investee | \n", "financial_position_Concession contract receivables - Current | \n", "financial_position_Advance from customer | \n", "cash_flows_الحصة في الخسارة من شركات مستثمر فيها بطريقة حقوق الملكية | \n", "cash_flows_Investment in equity accounted investee | \n", "cash_flows_Purchase of right-of-use assets | \n", "financial_position_Current portion lease liabilities | \n", "cash_flows_Provision (reversal) for expected credit losses | \n", "cash_flows_Amortisation on right-of-use assets | \n", "cash_flows_Amounts due from to related parties | \n", "cash_flows_Payment of lease liability | \n", "cash_flows_Share of loss from equity accounted investees | \n", "cash_flows_Provision for onerous contracts | \n", "cash_flows_Finance costs lease liabilities | \n", "cash_flows_Investment in an equity accounted investee | \n", "cash_flows_Movement of capital advances | \n", "cash_flows_Share of loss from equity accounted investee | \n", "cash_flows_Movement in capital advances | \n", "cash_flows_Reversal for provision for onerous contracts | \n", "cash_flows_Disposal of right of use assets | \n", "financial_position_Non-current accounts receivable | \n", "cash_flows_Allowance against amounts due from subsidiary | \n", "financial_position_Available for sale investments | \n", "financial_position_Accounts payable | \n", "income_statement_Cost of unutilized production capacity | \n", "cash_flows_Adjustment for decrease (increase) in Accounts receivable | \n", "financial_position_Lease liability - current | \n", "financial_position_Lease liability - non current | \n", "cash_flows_Impairment of accounts receivable | \n", "cash_flows_Amortization for arrangement fees | \n", "cash_flows_Lease Payment | \n", "cash_flows_Purchase of time deposit | \n", "financial_position_Financial assets at fair value through profit or loss | \n", "financial_position_Financial Assets at fair value through profit or loss | \n", "financial_position_Assets held for sale - net | \n", "financial_position_Investment at fair value through proft and loss | \n", "financial_position_investments at fair value through profit or loss | \n", "financial_position_Financial Assets at fair value through profits and losses | \n", "financial_position_Spare Parts | \n", "income_statement_Gain on disposal of investment in financial assets at fair value through profit or loss (FVTPL) | \n", "cash_flows_Net re-measurments of loss allowance | \n", "cash_flows_Decrease (Incraese) in spare parts | \n", "cash_flows_Increase decrease in contract assets | \n", "cash_flows_Increase decrease in contract liabilities | \n", "cash_flows_Employee defined benefits liabilities paid | \n", "cash_flows_Proceed on disposal of a subsidiary | \n", "financial_position_Investment in financial assets | \n", "income_statement_Gain on disposal of investment in financial assets at FVTPL | \n", "income_statement_Fair value gain (loss) on investment in financial assets at FVTPL | \n", "cash_flows_Loss on investment in financial assets at fair value through profit or loss | \n", "cash_flows_Increase in contract assets | \n", "cash_flows_Decrease in contract liabilities | \n", "comprehensive_income_Foreign currency translation reserve released on disposal of a foreign subsidiary | \n", "cash_flows_Gain on disposal of investment in financial assets at FVTPL | \n", "cash_flows_Fair value gain (loss) on investment in financial assets at FVTPL | \n", "cash_flows_Loss on disposal of a foreign subsidiary | \n", "cash_flows_Decrease in spare parts | \n", "cash_flows_Purchases of investment in financial assets at FVTPL | \n", "cash_flows_Proceeds from sale of investment in financial assets at FVTPL | \n", "cash_flows_Proceeds from disposal of a foreign subsidiary | \n", "financial_position_Right of use assets, net | \n", "financial_position_Due from a related party | \n", "financial_position_Unbilled receivables_non-current | \n", "financial_position_Amounts due from a related party | \n", "financial_position_Unbilled receivables | \n", "financial_position_Deferred Tax Asset | \n", "financial_position_Short-term Murabaha | \n", "financial_position_Contract liabilities_Current | \n", "cash_flows_Impairment of fixed assets | \n", "cash_flows_Impairment of trade receivables and other current assets | \n", "cash_flows_Adjustments to Inventories | \n", "cash_flows_Adjustments to contract liabilities | \n", "financial_position_Right of use assets net | \n", "financial_position_Contracts liabilities | \n", "financial_position_Advance from customer noncurrent portion | \n", "financial_position_Advance from a customer | \n", "financial_position_Unbilled receivables current | \n", "financial_position_Amounts due from related party | \n", "financial_position_Advance from customer non current portion | \n", "cash_flows_Impairment loss on trade receivables and other current assets | \n", "cash_flows_Gain from sale of property plant and equipment | \n", "financial_position_Unbilled receivables_current | \n", "cash_flows_Impairment of trade receivables and other current debit balances | \n", "cash_flows_Contract liabilities | \n", "cash_flows_Finance income collected | \n", "cash_flows_Movement in investments in equity instruments designated as at FVOCI | \n", "cash_flows_Depreciation of right of used assets | \n", "cash_flows_Depreciation of Investment properties | \n", "cash_flows_.Dividends income | \n", "cash_flows_Loss from disposal of right of used assets | \n", "cash_flows_Discontinued operations | \n", "cash_flows_Depreciation of right of use asset | \n", "cash_flows_Loss on derecognition of right of use assets | \n", "cash_flows_Realized gain on investments at fair value through other comprehensive income | \n", "cash_flows_Derecognition gain on disposal of subsidiaries | \n", "cash_flows_Depreciation on investment properties | \n", "cash_flows_Loss from disposal of property, plant and equipment | \n", "cash_flows_Provision for slow moving items | \n", "cash_flows_Impairment recognized on trade receivables | \n", "cash_flows_Bargain purchase on acquisition of subsidiary (note 5) | \n", "cash_flows_Gain on discontinued operations | \n", "cash_flows_Proceeds of financial instruments by fair value through other comprehensive income | \n", "cash_flows_Depreciation of right of use | \n", "cash_flows_Realised gain on investments at fair value through profit or loss | \n", "cash_flows_Unrealized gain on equity instruments at fair value through profit or loss | \n", "cash_flows_Write-off for receivables provision | \n", "cash_flows_Unrealized lloss gain on investments at fair value through profit or loss | \n", "cash_flows_Unrealized loses from investments at fair value through profit or loss | \n", "cash_flows_Realized gain from investments at fair value through profit or loss | \n", "cash_flows_Amortization of right of use asset | \n", "cash_flows_Realized gain on disposal of equity instruments at fair value through profit or loss | \n", "cash_flows_Gain from disposal of investments | \n", "cash_flows_Proceeds of equity instruments at fair value through profit and loss | \n", "cash_flows_Purchase of equity instruments at fair value through profit and loss | \n", "cash_flows_Unrealised gain on investments at fair value through profit or loss | \n", "cash_flows_Provision for slow moving inventory | \n", "cash_flows_Provision for Bad-Debt | \n", "cash_flows_Bargain purchase | \n", "cash_flows_Gain on disposal of discontinued operations | \n", "cash_flows_Due to Bank | \n", "cash_flows_Realized gain on investments at fair value through profit or loss | \n", "cash_flows_Unrealized (loss) gain on investments at fair value through profit or loss | \n", "equity_changes_Increase in share capital due to right issue | \n", "cash_flows_Gain from disposal of property, plant and equipment | \n", "cash_flows_share of affiliate result | \n", "cash_flows_Provision for impairment of doubtful other receivables write off reversal | \n", "cash_flows_Acquisition of extra shares in a subsidiary | \n", "financial_position_long term receivable and perpayments | \n", "cash_flows_provision for impairment of trade receivable | \n", "cash_flows_provision for slow moving and obsolete | \n", "cash_flows_hntrest incom on deposits | \n", "financial_position_other non- current libillity | \n", "financial_position_Deferred tax libillity | \n", "financial_position_Trade Paybles | \n", "cash_flows_Zakat and incom tax charges | \n", "financial_position_long tearm recevable | \n", "cash_flows_bentenchal losses | \n", "cash_flows_Employees cost | \n", "cash_flows_Employees cost 2 | \n", "cash_flows_loans cost | \n", "cash_flows_zakat | \n", "cash_flows_revenues from received duposet | \n", "cash_flows_short loans movments | \n", "cash_flows_net movment in short term deposits | \n", "cash_flows_Adjustment in Amortization of deferred employee benefits | \n", "cash_flows_Adjustment fro Other non-current liabilities | \n", "cash_flows_Adjustment to Long term receivables and prepayments | \n", "financial_position_Long-term receivables and prepayments | \n", "cash_flows_Amortization of deferred employee benefits | \n", "cash_flows_Charge for impairment of trade receivables | \n", "cash_flows_Adjustments for Other non-current liabilities | \n", "cash_flows_Adjustments for Long term receivables and other assets | \n", "cash_flows_مطلوبات غير مداولة اخرى | \n", "cash_flows_الزكاة وضريبة الدخل المحملة | \n", "financial_position_Long term receivable | \n", "cash_flows_Adjustment for amortization of deferred employee benefits | \n", "financial_position_Reserve of disposal group held for distribution/ sale | \n", "cash_flows_Adjustments for decrease (increase) in rent receivables | \n", "financial_position_Prepayments and Other Current Assets | \n", "financial_position_Investment in unconsolidated subsidiary | \n", "financial_position_Equity Investment at FVOCI and AFS Investment | \n", "financial_position_Current portion of Lease Liability | \n", "financial_position_Zakat and Income Tax Payable | \n", "financial_position_Murabaha Loan | \n", "financial_position_Retentions Payable | \n", "financial_position_SIDF loan | \n", "financial_position_Long term Murabaha loans | \n", "financial_position_Islamic loan facilities | \n", "income_statement_Zakat and Income Tax | \n", "cash_flows_Adjustment for decrease (increase) in prepayments and other current assets | \n", "cash_flows_Adjustment for increase (decrease) in accounts payable, accruals and othe current liabilities | \n", "cash_flows_Employees' defined benefits liabilties and other benefits paid | \n", "cash_flows_Zakat and Income Tax Paid | \n", "cash_flows_Finance income received on Murabaha deposits | \n", "cash_flows_Net movement in long term retentions payable | \n", "cash_flows_Payment of lease liabilties | \n", "cash_flows_Net movement in Murabaha loan | \n", "cash_flows_Proceeds from long term Murabaha loans | \n", "cash_flows_Proceeds from Islamic loan facilities | \n", "comprehensive_income_Unrealized fair value gains on equity investment at FVOCI | \n", "cash_flows_Net movement in SDIF laon | \n", "financial_position_Long term retentions | \n", "cash_flows_Net movement in investments at fair value through profit or loss | \n", "cash_flows_Investment in a subsidary by a non-controlling shareholder | \n", "cash_flows_Movement in equity investment at FVOCI | \n", "cash_flows_Proceeds from SIDF loan | \n", "financial_position_Current portion of Islamic loan facilities | \n", "cash_flows_Payments of Long Term Murabaha loans | \n", "cash_flows_Net movement in commercial loans | \n", "financial_position_SIDF Loan | \n", "cash_flows_Movement in long term retention payable | \n", "cash_flows_Net movement in SIDF loan | \n", "cash_flows_Non-controlling interst on itnitial investment | \n", "cash_flows_Net movement in investment at fair value through profit or loss | \n", "cash_flows_Movement in long term retentions payable | \n", "cash_flows_Initial investment in a subsidiary by a non-controlling shareholder | \n", "cash_flows_Proceeds from Murabaha loans | \n", "cash_flows_Repayment of Murabaha loans | \n", "financial_position_Current portion of Islamic Loan Facilities | \n", "income_statement_Impairment loss on investment in associate | \n", "cash_flows_Impairment Loss on investment in SKA | \n", "cash_flows_Repayment of short term Murabaha loans | \n", "financial_position_Retemtions payable | \n", "income_statement_Adjustments for gains (losses) on non-trading investments, net | \n", "income_statement_Adjustments for decrease (increase) in other real estate, net | \n", "income_statement_Interest paid, classified as operating activities | \n", "income_statement_Other inflows (outflows) of cash, classified as financing activities | \n", "income_statement_Disclosure of other non-cash information [text block] | \n", "income_statement_Adjustments for decrease (increase) in investments held as fair value through statement of income [FVSI] | \n", "income_statement_Proceeds from maturity and sale of non-trading investments | \n", "income_statement_Net cash flows from (used in) financing activities | \n", "income_statement_Adjustments for gains (losses) on disposal of property and equipment, net | \n", "income_statement_Other inflows (outflows) of cash, classified as investing activities | \n", "income_statement_Severance fee | \n", "cash_flows_Provision for severance fees | \n", "cash_flows_Severacne fee paid | \n", "cash_flows_Employee benefit paid | \n", "cash_flows_Addition in mine properties | \n", "cash_flows_Repayment of short term borrowing | \n", "financial_position_Advances and prepayments.2 | \n", "financial_position_Inventories.2 | \n", "financial_position_Trade and other receivables.2 | \n", "financial_position_Time deposits.2 | \n", "financial_position_Cash and cash equivalents.2 | \n", "financial_position_Other investments2 | \n", "financial_position_Property, plant and equipment.1 | \n", "financial_position_Capital work-in-progress.1 | \n", "financial_position_Intangible assets.1 | \n", "financial_position_Investment in joint ventures.1 | \n", "financial_position_Deferred tax assets.1 | \n", "financial_position_Other investments.1 | \n", "financial_position_Mine properties.1 | \n", "financial_position_Right-of-use assets1 | \n", "financial_position_Projects, trade and other payables.2 | \n", "financial_position_Accrued expenses.2 | \n", "financial_position_Zakat payable.3 | \n", "financial_position_Severance fees payable.1 | \n", "financial_position_Current portion of obligation under finance lease.1 | \n", "financial_position_Current portion of long-term borrowings.2 | \n", "financial_position_Deferred tax liabilities.1 | \n", "financial_position_Long-term borrowings.3 | \n", "financial_position_Provision for decommissioning, site rehabilitation and dismantling obligations | \n", "financial_position_Non-current portion of obligation under finance lease.1 | \n", "financial_position_Projects, trade and other payables.4 | \n", "financial_position_Employees benefits.1 | \n", "financial_position_Derivative financial instruments1 | \n", "income_statement_Exploration and technical services expenses.9 | \n", "income_statement_Share in net income of joint ventures that have been equity accounted | \n", "income_statement_Income from time deposits.1 | \n", "comprehensive_income_Loss on exchange differences on translation2 | \n", "cash_flows_Finance cost.4 | \n", "cash_flows_Depletion and depreciation of mine properties | \n", "cash_flows_Depreciation of property, plant and equipment | \n", "cash_flows_Current service cost of employees end of service benefits | \n", "cash_flows_Contribution for the employees savings plan | \n", "cash_flows_Provision for severance fees.5 | \n", "cash_flows_Obsolete and slow moving spare parts and consumable materials written-off1 | \n", "cash_flows_Provision for allowance for inventory obsolescence1 | \n", "cash_flows_Depreciation of right-of-use assets2 | \n", "cash_flows_Adjustment to mine closure provision2 | \n", "cash_flows_Loss on derecognition of property, plant and equipment1 | \n", "cash_flows_Impairment of plant and equipment1 | \n", "cash_flows_Increase in expected credit loss allowance on trade and other receivables1 | \n", "cash_flows_Projects and other payables . Trade | \n", "cash_flows_Accrued expenses . Trade | \n", "cash_flows_Severance fees paid | \n", "cash_flows_Income received from time deposits | \n", "financial_position_Investment in debt securities1 | \n", "cash_flows_Adjustment to mine properties | \n", "cash_flows_Write-off of plant and equipment.5 | \n", "cash_flows_Mine properties written-off | \n", "cash_flows_Impairment of mine properties | \n", "cash_flows_Impairment of right-of-use assets4 | \n", "financial_position_Investment in debt securities3 | \n", "financial_position_Lease liabilities3 | \n", "financial_position_Lease liabilities2 | \n", "income_statement_Other operating income, net1 | \n", "income_statement_Severance fees7 | \n", "cash_flows_Loss on exchange differences2 | \n", "cash_flows_Charge for employees share-based payment plan which will be equity-settled3 | \n", "cash_flows_Payment against provision for decommissioning, site rehabilitation and dismantling obligations1 | \n", "cash_flows_(Increase).decrease in restricted cash | \n", "cash_flows_Projects and other payables . Projects .3 | \n", "cash_flows_Adjustment to property, plant and equipment | \n", "cash_flows_Impairment of property, plant and equipment1 | \n", "cash_flows_Advances and prepayments.5 | \n", "cash_flows_Zakat paid.6 | \n", "cash_flows_Income tax paid.6 | \n", "income_statement_Expected credit loss allowance1 | \n", "cash_flows_ECL allowance on trade and other receivables1 | \n", "cash_flows_Adjustment to right-of-use assets and the related lease liability1 | \n", "cash_flows_Income earned from insurance claim1 | \n", "cash_flows_Gain on adjustment to provision for decommissioning, site rehabilitation and dismantling obligations1 | \n", "cash_flows_Adjustment to intangible assets3 | \n", "cash_flows_Obsolete spare parts written-off3 | \n", "cash_flows_Trade and other receivables.3 | \n", "cash_flows_Expected credit loss allowance8 | \n", "cash_flows_Derivative interest paid2 | \n", "cash_flows_Gain on derecognition of property, plant and equipment1 | \n", "cash_flows_Inventories.3 | \n", "financial_position_Investment at fair value through other comprehensive income1 | \n", "cash_flows_Amortisation of deferred income1 | \n", "equity_changes_Transactions with non-controlling interest 3 | \n", "cash_flows_Impairment of non-mine assets1 | \n", "cash_flows_Derivative interest received2 | \n", "cash_flows_Increase in time deposits | \n", "financial_position_Equity investments at FVOCI | \n", "income_statement_Impairment charge on non-financial assets | \n", "income_statement_Cost of revenues | \n", "financial_position_Right of use of assets | \n", "cash_flows_Adjustments for Depreciation of right of use assets | \n", "financial_position_Long term loans to a joint venture | \n", "cash_flows_Adjustments for Provision for impairment of trade receivable | \n", "cash_flows_Adjustments for income from financial asset held at FVTPL | \n", "cash_flows_Employees' terminal benefits paid | \n", "cash_flows_Long term loan to joint venture | \n", "cash_flows_Adjustments for Gain from disposal of right of use assets | \n", "cash_flows_Adjustment for rent concession | \n", "cash_flows_Adjustments for Gain on lease modifications | \n", "cash_flows_Adjustment for gains resulting from subsidiary acquisition | \n", "financial_position_Accounts receivable and prepayments | \n", "financial_position_Term Deposit | \n", "financial_position_Advance to Contractors | \n", "financial_position_Right-of-use asset | \n", "financial_position_Zakat Provision | \n", "financial_position_Accounts payable and accruals | \n", "financial_position_Refund Liabilities | \n", "financial_position_Current maturity of lease liabilities | \n", "financial_position_Term Loans | \n", "comprehensive_income_Re-measurement loss on employees retirement benefit obligations of the Associate | \n", "cash_flows_Adjustments for Depreciation of right-of-use asset | \n", "cash_flows_Adjustments for Provision for allowance for expected credit losses | \n", "cash_flows_Adjustments for Property and equipment written off | \n", "cash_flows_Adjustments for decrease (increase) in Accounts receivable and prepayments | \n", "cash_flows_Adjustment for increase (decrease) in Accounts Payable and accruals | \n", "cash_flows_Movement in Refund Liabilities | \n", "cash_flows_Interest received on term deposits | \n", "cash_flows_Dividend received from an associate | \n", "cash_flows_Proceeds from term loans | \n", "financial_position_Investment in associate - held for sale | \n", "financial_position_Retention payable | \n", "cash_flows_Refund liabilities | \n", "cash_flows_Retention payablee | \n", "cash_flows_Term Deposits | \n", "cash_flows_Adjustment for allowance for doubtful receivables, net | \n", "cash_flows_Zakat expense | \n", "financial_position_Other investment | \n", "cash_flows_Other Investement | \n", "cash_flows_Gain on modification of leases | \n", "cash_flows_Lease obligations paid | \n", "cash_flows_Proceeds from short term loan | \n", "cash_flows_Repayments of short term loans | \n", "income_statement_Depreciation and amortization | \n", "income_statement_Expected credit loss (ECL) | \n", "income_statement_Gain on modification of borrowings | \n", "cash_flows_Gain on modification of borrowings | \n", "cash_flows_Expected credit loss (ECL) | \n", "cash_flows_Movement of cash under lien | \n", "cash_flows_Deferred income and contract liabilities | \n", "cash_flows_Expected credit loss | \n", "cash_flows_Payment against amount due to related parties | \n", "financial_position_Contract assets - Current | \n", "financial_position_Contract Assets Non Current | \n", "cash_flows_Proceed from sale of subsidiary | \n", "financial_position_Contract assets current | \n", "financial_position_Contract assets non-current | \n", "cash_flows_Gain on disposal of property and equipment | \n", "cash_flows_Net other losses | \n", "
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "
| 1 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "
| 2 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "
| 3 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "
| 4 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "0.0 | \n", "