diff --git a/index.html b/index.html index 5943e1e..9f6e486 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ - + diff --git a/package.json b/package.json index 4b5ceea..185d4f2 100644 --- a/package.json +++ b/package.json @@ -25,6 +25,7 @@ "@firebase/firestore": "^4.7.4", "@formatjs/intl-pluralrules": "^5.3.4", "@formatjs/intl-relativetimeformat": "^11.4.4", + "@googlemaps/markerclusterer": "^2.6.2", "@mui/base": "5.0.0-beta.40", "@mui/icons-material": "^6.4.6", "@mui/material": "^6.1.6", @@ -59,6 +60,7 @@ "jspdf": "^3.0.1", "jspdf-autotable": "^5.0.2", "leaflet": "^1.9.4", + "leaflet.markercluster": "^1.5.3", "lucide-react": "^0.456.0", "metronic-tailwind-react": "file:", "mini-svg-data-uri": "^1.4.4", @@ -97,7 +99,9 @@ "devDependencies": { "@eslint/js": "^9.14.0", "@types/file-saver": "^2.0.7", - "@types/leaflet": "^1.9.14", + "@types/google.maps": "^3.65.2", + "@types/leaflet": "^1.9.21", + "@types/leaflet.markercluster": "^1.5.6", "@types/node": "^22.9.0", "@types/papaparse": "^5.3.16", "@types/react": "^18.3.12", diff --git a/public/media/app/logo-tt.jpeg b/public/media/app/logo-tt.jpeg new file mode 100644 index 0000000..8c5b1bb Binary files /dev/null and b/public/media/app/logo-tt.jpeg differ diff --git a/src/auth/pages/jwt/Login.tsx b/src/auth/pages/jwt/Login.tsx index fec6898..ebe2bac 100644 --- a/src/auth/pages/jwt/Login.tsx +++ b/src/auth/pages/jwt/Login.tsx @@ -23,12 +23,12 @@ const loginSchema = Yup.object().shape({ remember: Yup.boolean() }); -const initialValues = { - username: '', - password: '', - token: '', - remember: false -}; +// const initialValues = { +// username: '', +// password: '', +// token: '', +// remember: false +// }; const Login = () => { const [loading, setLoading] = useState(false); @@ -39,80 +39,80 @@ const Login = () => { const [showPassword, setShowPassword] = useState(false); const { currentLayout } = useLayout(); - const formik = useFormik({ - initialValues, - validationSchema: loginSchema, - onSubmit: async (values, { setStatus, setSubmitting }) => { - setLoading(true); + // const formik = useFormik({ + // initialValues, + // validationSchema: loginSchema, + // onSubmit: async (values, { setStatus, setSubmitting }) => { + // setLoading(true); - try { - if (!login) throw new Error('JWTProvider is required for this form.'); - await login(values.username, values.password, values.token); + // try { + // if (!login) throw new Error('JWTProvider is required for this form.'); + // await login(values.username, values.password, values.token); - if (values.remember) { - localStorage.setItem('username', values.username); - } else { - localStorage.removeItem('username'); - } + // if (values.remember) { + // localStorage.setItem('username', values.username); + // } else { + // localStorage.removeItem('username'); + // } - navigate(from, { replace: true }); - } catch (error: any) { - if (error.response && error.response.data) { - setStatus(error.response.data.message); - } else { - setStatus('The login details are incorrect'); - } + // navigate(from, { replace: true }); + // } catch (error: any) { + // if (error.response && error.response.data) { + // setStatus(error.response.data.message); + // } else { + // setStatus('The login details are incorrect'); + // } - setSubmitting(false); - } - setLoading(false); - } - }); + // setSubmitting(false); + // } + // setLoading(false); + // } + // }); - const togglePassword = (event: MouseEvent) => { - event.preventDefault(); - setShowPassword(!showPassword); - }; + // const togglePassword = (event: MouseEvent) => { + // event.preventDefault(); + // setShowPassword(!showPassword); + // }; - const handleKeyPress = (e: { key: string }) => { - if (e.key === 'Enter') { - formik.handleSubmit(); - } - }; + // const handleKeyPress = (e: { key: string }) => { + // if (e.key === 'Enter') { + // formik.handleSubmit(); + // } + // }; return ( <> - TPAY | Sign In + REVENUE | Sign In

Sign in

- {formik.status && {formik.status}} + {/* {formik.status && {formik.status}} */}
- {formik.touched.username && formik.errors.username && ( + {/* {formik.touched.username && formik.errors.username && ( {formik.errors.username} - )} + )} */}
@@ -124,13 +124,15 @@ const Login = () => { type={showPassword ? 'text' : 'password'} placeholder="Enter Password" autoComplete="off" - {...formik.getFieldProps('password')} - className={clsx('form-control', { - 'is-invalid': formik.touched.password && formik.errors.password - })} - onKeyPress={handleKeyPress} + // {...formik.getFieldProps('password')} + // className={clsx('form-control', { + // 'is-invalid': formik.touched.password && formik.errors.password + // })} + // onKeyPress={handleKeyPress} /> - - {formik.touched.password && formik.errors.password && ( + {/* {formik.touched.password && formik.errors.password && ( {formik.errors.password} - )} + )} */}
- -
- - - {formik.touched.token && formik.errors.token && ( - - {formik.errors.token} - - )} -
- -
- - {/* - Forgot Password? - */} -
-

- Copyright {moment().year()} © Telkomcel All rights reserved. + Copyright {moment().year()} © Timor Telecom All rights reserved.

diff --git a/src/components/loaders/LoaderTransparant.tsx b/src/components/loaders/LoaderTransparant.tsx index dcadcb9..243f42a 100644 --- a/src/components/loaders/LoaderTransparant.tsx +++ b/src/components/loaders/LoaderTransparant.tsx @@ -7,7 +7,7 @@ const LoaderTransparant = () => { logo {/*
Loading...
*/} diff --git a/src/components/loaders/ScreenLoader.tsx b/src/components/loaders/ScreenLoader.tsx index bda1c8a..9792639 100644 --- a/src/components/loaders/ScreenLoader.tsx +++ b/src/components/loaders/ScreenLoader.tsx @@ -7,7 +7,7 @@ const ScreenLoader = () => { logo {/*
Loading...
*/} diff --git a/src/layouts/auth-branded/AuthBrandedLayout.tsx b/src/layouts/auth-branded/AuthBrandedLayout.tsx index e6b7e15..75c9f0a 100644 --- a/src/layouts/auth-branded/AuthBrandedLayout.tsx +++ b/src/layouts/auth-branded/AuthBrandedLayout.tsx @@ -30,19 +30,19 @@ const Layout = () => {
-

TPAY Dashboard Portal

+

Revenue Dashboard Portal

- A user-friendly interface providing seamless access to TPAY’s + {/* A user-friendly interface providing seamless access to TPAY’s */}
- transaction management, reporting tools, and configuration settings. + {/* transaction management, reporting tools, and configuration settings. */}
diff --git a/src/layouts/demo2/header/Header.tsx b/src/layouts/demo2/header/Header.tsx index 474cf23..b11d400 100644 --- a/src/layouts/demo2/header/Header.tsx +++ b/src/layouts/demo2/header/Header.tsx @@ -19,7 +19,7 @@ const Header = () => { return (
{ alt="logo" /> */} logo logo @@ -66,7 +66,7 @@ const HeaderLogo = () => {
diff --git a/src/layouts/demo2/header/HeaderTopbar.tsx b/src/layouts/demo2/header/HeaderTopbar.tsx index 4786e5c..482b5cf 100644 --- a/src/layouts/demo2/header/HeaderTopbar.tsx +++ b/src/layouts/demo2/header/HeaderTopbar.tsx @@ -34,9 +34,9 @@ const HeaderTopbar = () => { > {getAuth()?.user.name} - + {/* as {getAuth()?.role_name} - + */}
diff --git a/src/layouts/demo2/navbar/NavbarMenu.tsx b/src/layouts/demo2/navbar/NavbarMenu.tsx index f6f03ae..8f2f8af 100644 --- a/src/layouts/demo2/navbar/NavbarMenu.tsx +++ b/src/layouts/demo2/navbar/NavbarMenu.tsx @@ -8,56 +8,69 @@ import { MenuSub, MenuTitle } from '@/components/menu'; -import { useMenus } from '@/providers'; +// import { useMenus } from '@/providers'; // import { useLocation } from 'react-router'; import { useLanguage } from '@/i18n'; -import { doGetNavbarMenu } from '@/actions/NavbarMenuActions'; -import { RoleList, MappedMenu } from '@/types/GlobalTypes'; -import { useEffect, useState } from 'react'; +import { MappedMenu } from '@/types/GlobalTypes'; + +// --------------------------------------------------------------------------- +// Static menu structure (previously fetched from the API via +// doGetNavbarMenu). Update `path` values to match your actual route +// definitions: +// - "Dashboard" points to the real dashboard route. +// - Every other item points to "/coming-soon", a shared placeholder page +// that just renders "This page will be available soon". +// --------------------------------------------------------------------------- +const COMING_SOON_PATH = '/coming-soon'; + +const STATIC_MENU: MappedMenu[] = [ + { + title: 'Main Dashboard', + path: '-', + children: [{ title: 'Dashboard', path: '/' }] + }, + { + title: 'Revenue', + path: '-', + children: [ + { title: 'SMS', path: COMING_SOON_PATH }, + { title: 'Voice', path: COMING_SOON_PATH }, + { title: 'Digital Content', path: COMING_SOON_PATH }, + { title: 'Refill Packet', path: COMING_SOON_PATH }, + { title: 'Refill Voucher', path: COMING_SOON_PATH } + ] + }, + { + title: 'Dealer & Outlet', + path: '-', + children: [ + { title: 'Dealer', path: COMING_SOON_PATH }, + { title: 'Outlet', path: COMING_SOON_PATH } + ] + }, + { + title: 'User Management', + path: '-', + children: [ + { title: 'User List', path: COMING_SOON_PATH }, + { title: 'Group Role List', path: COMING_SOON_PATH }, + { title: 'Role List', path: COMING_SOON_PATH } + ] + }, + { + title: 'Manage Profile', + path: '-', + children: [{ title: 'Manage Cell', path: COMING_SOON_PATH }] + } +]; const NavbarMenu = () => { // const { pathname } = useLocation(); // const { getMenuConfig } = useMenus(); // const primaryMenu = getMenuConfig('primary'); const { isRTL } = useLanguage(); - const [menuData, setMenuData] = useState([]); - const [error, setError] = useState(null); - let navbarMenu; - useEffect(() => { - const fetchNavbarMenu = async () => { - try { - const result = await doGetNavbarMenu(); - if (result.status && result.data) { - setMenuData(result.data.roles_list); - } else { - setError(result.message); - } - } catch (err) { - setError('Failed to fetch navbar menu'); - } - }; - - fetchNavbarMenu(); - }, []); - - const mapMenuData = (data: RoleList[]): MappedMenu[] => { - return data.map((item) => { - const mappedItem: MappedMenu = { - title: item.name, - path: item.link !== '-' ? item.link : '/' - }; - - if (item.children && item.children.length > 0) { - mappedItem.children = mapMenuData(item.children); - } - - return mappedItem; - }); - }; - - navbarMenu = mapMenuData(menuData); - // navbarMenu = primaryMenu?.[0].children; + const navbarMenu: TMenuConfig = STATIC_MENU; const buildMenu = (items: TMenuConfig) => { return items.map((item, index) => { @@ -149,11 +162,11 @@ const NavbarMenu = () => {
- {navbarMenu && navbarMenu && buildMenu(navbarMenu)} + {navbarMenu && buildMenu(navbarMenu)}
); }; -export { NavbarMenu }; +export { NavbarMenu }; \ No newline at end of file diff --git a/src/pages/ComingSoonPage.tsx b/src/pages/ComingSoonPage.tsx new file mode 100644 index 0000000..af5d0bd --- /dev/null +++ b/src/pages/ComingSoonPage.tsx @@ -0,0 +1,20 @@ +import { Container } from '@/components'; +import { Helmet } from 'react-helmet'; + +const ComingSoonPage = () => { + return ( + <> + + TPAY | Coming Soon + + +
+

This page will be available soon

+

We're still working on this feature. Please check back later.

+
+
+ + ); +}; + +export default ComingSoonPage; \ No newline at end of file diff --git a/src/pages/account/home/user-profile/AccountUserProfileContent.tsx b/src/pages/account/home/user-profile/AccountUserProfileContent.tsx index c483fe5..26505a3 100644 --- a/src/pages/account/home/user-profile/AccountUserProfileContent.tsx +++ b/src/pages/account/home/user-profile/AccountUserProfileContent.tsx @@ -25,7 +25,7 @@ const AccountUserProfileContent = () => { {/* Right Column - MFA Setup */}
- + {/* */}
diff --git a/src/pages/account/home/user-profile/blocks/BasicSettings.tsx b/src/pages/account/home/user-profile/blocks/BasicSettings.tsx index 0ac6b1a..604f84e 100644 --- a/src/pages/account/home/user-profile/blocks/BasicSettings.tsx +++ b/src/pages/account/home/user-profile/blocks/BasicSettings.tsx @@ -13,43 +13,43 @@ interface IBasicSettingsProps { const BasicSettings = () => { // const user = localStorage.getItem('user'); // const parsedUser = user ? JSON.parse(user) : null; - const parsedUser = getAuth()?.user; + // const parsedUser = getAuth()?.user; // console.log('parsedUser :', parsedUser); - const [newUsername, setNewUsername] = useState(parsedUser?.username || ''); - const [newEmail, setNewEmail] = useState(parsedUser?.email || ''); - const [newName, setNewName] = useState(parsedUser?.name || ''); + // const [newUsername, setNewUsername] = useState(parsedUser?.username || ''); + // const [newEmail, setNewEmail] = useState(parsedUser?.email || ''); + // const [newName, setNewName] = useState(parsedUser?.name || ''); const { setProfile } = useContext(AccountUserProfileContext); const [isSubmitting, setIsSubmitting] = useState(false); - const isChanged = - newUsername !== parsedUser?.username || - newEmail !== parsedUser?.email || - newName !== parsedUser?.name; + // const isChanged = + // newUsername !== parsedUser?.username || + // newEmail !== parsedUser?.email || + // newName !== parsedUser?.name; - const handleChangeProfile = async () => { - setIsSubmitting(true); - try { - await setProfile({ name: newName, username: newUsername, email: newEmail }); + // const handleChangeProfile = async () => { + // setIsSubmitting(true); + // try { + // // await setProfile({ name: newName, username: newUsername, email: newEmail }); - const newCache = { - name: newName, - email: newEmail, - username: newUsername - }; + // const newCache = { + // name: newName, + // email: newEmail, + // username: newUsername + // }; - localStorage.setItem('user', JSON.stringify(newCache)); - } catch (error: any) { - const errorMessage = - error?.response?.data?.message || - error?.message || - 'An error occurred while resetting the password.'; - toast.error(errorMessage); - } finally { - setIsSubmitting(false); - } - }; + // localStorage.setItem('user', JSON.stringify(newCache)); + // } catch (error: any) { + // const errorMessage = + // error?.response?.data?.message || + // error?.message || + // 'An error occurred while resetting the password.'; + // toast.error(errorMessage); + // } finally { + // setIsSubmitting(false); + // } + // }; return (
@@ -65,7 +65,7 @@ const BasicSettings = () => { type="text" placeholder='Name' // value={newName} - onChange={(e) => setNewName(e.target.value)} + // onChange={(e) => setNewName(e.target.value)} disabled={isSubmitting} />
@@ -76,7 +76,7 @@ const BasicSettings = () => { type="text" placeholder='Username' // value={newUsername} - onChange={(e) => setNewUsername(e.target.value)} + // onChange={(e) => setNewUsername(e.target.value)} disabled={isSubmitting} /> @@ -88,7 +88,7 @@ const BasicSettings = () => { type="email" placeholder='Email' // value={newEmail} - onChange={(e) => setNewEmail(e.target.value)} + // onChange={(e) => setNewEmail(e.target.value)} disabled={isSubmitting} /> @@ -99,8 +99,8 @@ const BasicSettings = () => {
diff --git a/src/pages/dashboards/home/DashboardHomePage.tsx b/src/pages/dashboards/home/DashboardHomePage.tsx index 9ee6e5d..13a206b 100644 --- a/src/pages/dashboards/home/DashboardHomePage.tsx +++ b/src/pages/dashboards/home/DashboardHomePage.tsx @@ -1,408 +1,20 @@ -import { Container, KeenIcon, DefaultTooltip } from '@/components'; -import { - Select, - SelectContent, - SelectItem, - SelectTrigger, - SelectValue -} from '@/components/ui/select'; -import { DateRange } from 'react-day-picker'; -import { useState, useEffect, useCallback } from 'react'; -import { Card, Chart, YearPicker } from './blocks'; -import moment from 'moment'; -import { useFetchCardData, useFetchChartData } from './hooks'; -import { Button } from '@/components/ui/button'; -import { useFetchYear } from './hooks/useFetchYear'; -import { get5LastYear } from '@/utils/Date'; -import { staticChartData } from './staticChart'; +import { Container } from '@/components'; import { Helmet } from 'react-helmet'; -import BalanceCard from './blocks/BalanceCard'; -import { getAuth } from '@/auth'; -import { useCallApi } from '@/hooks'; -import { apiConfig } from '@/config/api.config'; -import TransactionValue from './blocks/TransactionValue'; -import TransactionPieChart from './blocks/TransactionPieChart'; -import MemberActivity from './blocks/MemberActivity'; -import BankSaldo from './blocks/BankSaldo'; - -// sum -> nominal, count-> total -type CountType = 'sum' | 'count'; -type ChartType = 'line' | 'bar'; -type ChartLegend = 'true' | 'false'; +import SitesSatelliteMap from './blocks/SitesateliteMap'; const DashboardHomePage = () => { - const selectYear = get5LastYear(); - const [initialYear, setInitialYear] = useState(''); - const [selectedYear, setSelectedYear] = useState(''); - const [count, setCount] = useState('sum'); - const [chartType, setChartType] = useState('line'); - const [chartLegend, setChartLegend] = useState('true'); - const [dateRange, setDateRange] = useState<{ from: Date; to: Date }>({ - from: new Date(), - to: new Date() - }); - - const getFirstDayOfMonth = () => { - const now = new Date(); - return new Date(now.getFullYear(), now.getMonth(), 1); - }; - - const getToday = () => { - return new Date(); - }; - - const [fromDate, setFromDate] = useState(getFirstDayOfMonth()); - const [toDate, setToDate] = useState(getToday()); - - - const API_URL = apiConfig.api_dashboard; - const { GetData } = useCallApi(); - - const API_URL_BANK = apiConfig.service_wallet; - - const [responseStatisticCard, setResponseStatisticCard] = useState(null); - - const fetchData = async () => { - const res = await GetData(`${API_URL}/card-statistic`, {}); - setResponseStatisticCard(res); - }; - - const [bankaccount, setbankaccount] = useState(null); - - const fetchDataBankAccount = async () => { - const res = await GetData(`${API_URL_BANK}/dashboard/balance/account/${getAuth()?.user?.customer?.id}`, {}); - setbankaccount(res); - }; - - useEffect(() => { - fetchData(); - }, []); - - useEffect(() => { - fetchDataBankAccount(); - }, []); - - const [responseGraphic, setresponseGraphic] = useState(null); - - useEffect(() => { - const fetchDataGraphic = async () => { - const res = await GetData(`${API_URL}/cashin-vs-cashout`, { - date_from: fromDate.toISOString(), - date_to: toDate.toISOString() - }); - setresponseGraphic(res); - }; - - fetchDataGraphic(); - }, [fromDate, toDate]); - - let staticChartDataApiFetch = []; - - // Make map for date => { cashin: 0, cashout: 0 } - const dataMap: Record = {}; - const current = moment(fromDate); - const end = moment(toDate); - - // Inisialization dataMap with all dates - while (current.isSameOrBefore(end, 'day')) { - const dateStr = current.format('DD-MM-YYYY'); - dataMap[dateStr] = { cashin: 0, cashout: 0 }; - current.add(1, 'day'); - } - - // Add cashin - if (Array.isArray(responseGraphic?.data.total_cashin)) { - responseGraphic.data.total_cashin.forEach((item: any) => { - const date = moment(item.created_date).format('DD-MM-YYYY'); - // Only update cashin if it's not already set (meaning no value was added before) - if (dataMap[date]) { - dataMap[date].cashin = Number(item.total_count ?? 0); - } - }); - } - - // Add cashout - if (Array.isArray(responseGraphic?.data.total_cashout)) { - responseGraphic.data.total_cashout.forEach((item: any) => { - const date = moment(item.created_date).format('DD-MM-YYYY'); - // Only update cashout if it's not already set (meaning no value was added before) - if (dataMap[date]) { - dataMap[date].cashout = Number(item.total_count ?? 0); - } - }); - } - - // Change to array for chart - staticChartDataApiFetch = Object.entries(dataMap).map(([month, values]) => ({ - month, - cashin: values.cashin, - cashout: values.cashout - })); - - // Change to array for chart - staticChartDataApiFetch = Object.entries(dataMap).map(([month, values]) => ({ - month, - cashin: values.cashin, - cashout: values.cashout - })); - - const currentRole = getAuth()?.role_name; - const idCustomer = getAuth()?.user.customer?.id; - // console.log(currentRole); - - // Menyusun tanggal awal dan akhir berdasarkan selectedYear - useEffect(() => { - if (selectYear.length > 0 && !selectedYear) { - let latestYear = Math.max(...selectYear.map((item) => parseInt(item, 10))).toString(); - // console.log('latestYear :', latestYear); - setSelectedYear(latestYear); - setInitialYear(latestYear); - } - }, [selectYear, selectedYear]); - - useEffect(() => { - if (selectedYear) { - setDateRange({ - from: moment(`${selectedYear}-01-01`, 'YYYY-MM-DD').toDate(), - to: moment(`${selectedYear}-12-31`, 'YYYY-MM-DD').toDate() - }); - } - }, [selectedYear]); - - useEffect(() => { - if (initialYear) { - setDateRange({ - from: moment(`${initialYear}-01-01`, 'YYYY-MM-DD').toDate(), - to: moment(`${initialYear}-12-31`, 'YYYY-MM-DD').toDate() - }); - } - }, [initialYear]); - - const handleYearChange = (year: string) => { - setSelectedYear(year); - }; - - const handleCountType = (value: CountType) => { - setCount(value); - }; - - const handleChartType = (value: ChartType) => { - setChartType(value); - }; - - const handleChartLegend = (value: ChartLegend) => { - setChartLegend(value); - }; - - const resetFilter = useCallback(() => { - const firstDay = getFirstDayOfMonth(); - const today = getToday(); - - setFromDate(firstDay); - setToDate(today); - - // reset filter yang lain kalau perlu - setDateRange({ from: firstDay, to: today }); - setSelectedYear(initialYear); - setCount('sum'); - setChartType('line'); - setChartLegend('true'); - }, [initialYear]); - - const { cardData } = useFetchCardData( - moment(dateRange.from).format('YYYY-MM-DD'), - moment(dateRange.to).format('YYYY-MM-DD'), - count - ); - - const { chartData } = useFetchChartData( - moment(dateRange.from).format('YYYY-MM-DD'), - moment(dateRange.to).format('YYYY-MM-DD'), - count - ); - - const toolbar = ( -
-
- -
-
- -
-
- ); - - const number: number = responseStatisticCard?.data.total_cash_in ?? 0; - const formattedNumber: number = parseFloat(number.toFixed(2)); - - const numbercashout: number = responseStatisticCard?.data.total_cash_out ?? 0; - const formattedNumbercashout: number = parseFloat(numbercashout.toFixed(2)); - return ( <> - TPAY | Dashboard + REVENUE | Dashboard - {/* Account Balance Cards */} - {/* {currentRole === 'Escrow' || currentRole === 'Master Agent' ? ( -
- -
- ) : null} */} - -
- {bankaccount?.data && bankaccount?.data.length > 0 - && getAuth()?.statusbalance=='Y' - ? ( - bankaccount?.data.map((bankaccountdatas: { id_balance:string,amount: string, credit_limit: string, monthly_limit: string; wallet: string; }, index: number) => ( - - )) - ) : ( - "" - )} - +
+
- - {/* Cards */} -
- - - - - - -
- -
-
- - - -
- - - - -
- - - {/* Chart */} -
-
-
- -
-
-
- -
- - - -
- ); }; -export default DashboardHomePage; +export default DashboardHomePage; \ No newline at end of file diff --git a/src/pages/dashboards/home/blocks/SitesateliteMap.tsx b/src/pages/dashboards/home/blocks/SitesateliteMap.tsx new file mode 100644 index 0000000..65b1171 --- /dev/null +++ b/src/pages/dashboards/home/blocks/SitesateliteMap.tsx @@ -0,0 +1,189 @@ +import { useEffect, useRef, useState, useMemo } from 'react'; +import L from 'leaflet'; +import 'leaflet/dist/leaflet.css'; +import 'leaflet.markercluster'; +import 'leaflet.markercluster/dist/MarkerCluster.css'; +import 'leaflet.markercluster/dist/MarkerCluster.Default.css'; +import { sitePoints, SitePoint } from '../sitepoints'; + +// --------------------------------------------------------------------------- +// Satellite map (Leaflet + Esri World Imagery, no API key required) with a +// pin for every Cell/Sector row from the uploaded Excel +// (Sites_Coordinates_untuk_CC.xlsm -> "site coordinates 4G"). +// +// SETUP REQUIRED: +// npm install leaflet leaflet.markercluster +// npm install --save-dev @types/leaflet @types/leaflet.markercluster +// --------------------------------------------------------------------------- + +const DILI_CENTER: [number, number] = [-8.5586, 125.5736]; + +// Groups points that share the exact same coordinates so a single pin can +// list every cell/sector at that physical site. +const groupByCoordinate = (points: SitePoint[]) => { + const map = new Map(); + points.forEach((p) => { + const key = `${p.lat.toFixed(6)},${p.lng.toFixed(6)}`; + if (!map.has(key)) map.set(key, []); + map.get(key)!.push(p); + }); + return map; +}; + +// Signal-tower badge icon: colored circle background + white "broadcast +// tower" glyph, sized up slightly for pins that represent more than one +// cell/sector at the same coordinates. +const pinIcon = (multi: boolean) => { + const size = multi ? 30 : 26; + const bg = multi ? '#2563eb' : '#ef4444'; + + return L.divIcon({ + className: '', + html: ` +
+ + + + + + +
`, + iconSize: [size, size], + iconAnchor: [size / 2, size / 2], + popupAnchor: [0, -size / 2] + }); +}; + +const SitesSatelliteMap = () => { + const mapContainerRef = useRef(null); + const mapRef = useRef(null); + const clusterRef = useRef(null); + const markerByKeyRef = useRef>(new Map()); + const [search, setSearch] = useState(''); + const [selectedCount, setSelectedCount] = useState(sitePoints.length); + + const grouped = useMemo(() => groupByCoordinate(sitePoints), []); + + useEffect(() => { + if (!mapContainerRef.current || mapRef.current) return; + + const map = L.map(mapContainerRef.current, { + center: DILI_CENTER, + zoom: 12, + zoomControl: true + }); + mapRef.current = map; + + // Esri World Imagery — free satellite tiles, no API key required. + L.tileLayer( + 'https://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}', + { + attribution: + 'Tiles © Esri — Source: Esri, Maxar, Earthstar Geographics, and the GIS User Community', + maxZoom: 19 + } + ).addTo(map); + + // Optional labels/roads overlay on top of the satellite imagery. + L.tileLayer( + 'https://server.arcgisonline.com/ArcGIS/rest/services/Reference/World_Boundaries_and_Places/MapServer/tile/{z}/{y}/{x}', + { maxZoom: 19, opacity: 0.9 } + ).addTo(map); + + const cluster = L.markerClusterGroup({ maxClusterRadius: 50 }); + clusterRef.current = cluster; + + grouped.forEach((points, key) => { + const [lat, lng] = key.split(',').map(Number); + const marker = L.marker([lat, lng], { icon: pinIcon(points.length > 1) }); + + const site = points[0].site; + const location = points[0].location; + const rows = points + .map((p) => `${p.cell}${p.sector}`) + .join(''); + + marker.bindPopup(` +
+
${site}
+
${location} · ${lat.toFixed(5)}, ${lng.toFixed(5)}
+ ${rows}
+
+ `); + + markerByKeyRef.current.set(key, marker); + cluster.addLayer(marker); + }); + + map.addLayer(cluster); + + return () => { + map.remove(); + mapRef.current = null; + clusterRef.current = null; + markerByKeyRef.current.clear(); + }; + }, [grouped]); + + // Simple search: pans/zooms to a matching cell, sector, or site name and + // opens its popup. + const handleSearch = (value: string) => { + setSearch(value); + if (!value) { + setSelectedCount(sitePoints.length); + return; + } + const q = value.toLowerCase(); + const matches = sitePoints.filter( + (p) => + p.cell.toLowerCase().includes(q) || + p.sector.toLowerCase().includes(q) || + p.site.toLowerCase().includes(q) + ); + setSelectedCount(matches.length); + + if (matches.length > 0 && mapRef.current) { + const first = matches[0]; + const key = `${first.lat.toFixed(6)},${first.lng.toFixed(6)}`; + mapRef.current.setView([first.lat, first.lng], 17); + const marker = markerByKeyRef.current.get(key); + if (marker && clusterRef.current) { + clusterRef.current.zoomToShowLayer(marker, () => marker.openPopup()); + } + } + }; + + return ( +
+
+
+ Menampilkan {selectedCount} dari {sitePoints.length} titik + (Cell/Sector) +
+ handleSearch(e.target.value)} + placeholder="Cari Cell, Sector, atau nama Site..." + className="input input-sm w-full sm:w-72" + /> +
+ +
+
+
+
+ ); +}; + +export default SitesSatelliteMap; \ No newline at end of file diff --git a/src/pages/dashboards/home/sitepoints.ts b/src/pages/dashboards/home/sitepoints.ts new file mode 100644 index 0000000..85a5fea --- /dev/null +++ b/src/pages/dashboards/home/sitepoints.ts @@ -0,0 +1,1161 @@ +// Auto-generated from Sites_Coordinates_untuk_CC.xlsm (sheet: site coordinates 4G) +// 1 entry per Cell/Sector row, as provided in the source Excel file. +export interface SitePoint { + cell: string; + sector: string; + site: string; + lat: number; + lng: number; + location: string; +} + +export const sitePoints: SitePoint[] = [ + { cell: 'ACAD1E', sector: 'ACAD#1', site: 'ACADIRUHUN', lat: -8.55465, lng: 125.588254, location: 'Dili' }, + { cell: 'ACAD1F', sector: 'ACAD#1F', site: 'ACADIRUHUN', lat: -8.55465, lng: 125.588254, location: 'Dili' }, + { cell: 'ACAD2E', sector: 'ACAD#2', site: 'ACADIRUHUN', lat: -8.55465, lng: 125.588254, location: 'Dili' }, + { cell: 'ACAD2F', sector: 'ACAD#2F', site: 'ACADIRUHUN', lat: -8.55465, lng: 125.588254, location: 'Dili' }, + { cell: 'ACAD3E', sector: 'ACAD#3', site: 'ACADIRUHUN', lat: -8.55465, lng: 125.588254, location: 'Dili' }, + { cell: 'ACAD3F', sector: 'ACAD#3F', site: 'ACADIRUHUN', lat: -8.55465, lng: 125.588254, location: 'Dili' }, + { cell: 'ACAD4E', sector: 'ACAD#4', site: 'ACADIRUHUN', lat: -8.55465, lng: 125.588254, location: 'Dili' }, + { cell: 'ACAD4F', sector: 'ACAD#4F', site: 'ACADIRUHUN', lat: -8.55465, lng: 125.588254, location: 'Dili' }, + { cell: 'ACAD5E', sector: 'ACAD#5', site: 'ACADIRUHUN', lat: -8.55465, lng: 125.588254, location: 'Dili' }, + { cell: 'ACAD5F', sector: 'ACAD#5F', site: 'ACADIRUHUN', lat: -8.55465, lng: 125.588254, location: 'Dili' }, + { cell: 'ACAD6E', sector: 'ACAD#6', site: 'ACADIRUHUN', lat: -8.55465, lng: 125.588254, location: 'Dili' }, + { cell: 'ACAD6F', sector: 'ACAD#6F', site: 'ACADIRUHUN', lat: -8.55465, lng: 125.588254, location: 'Dili' }, + { cell: 'AERP1E', sector: 'AERP#1', site: 'DILI AEROPORTO', lat: -8.550135, lng: 125.522269, location: 'Dili' }, + { cell: 'AERP1F', sector: 'AERP#1F', site: 'DILI AEROPORTO', lat: -8.550135, lng: 125.522269, location: 'Dili' }, + { cell: 'AERP2E', sector: 'AERP#2', site: 'DILI AEROPORTO', lat: -8.550135, lng: 125.522269, location: 'Dili' }, + { cell: 'AERP2F', sector: 'AERP#2F', site: 'DILI AEROPORTO', lat: -8.550135, lng: 125.522269, location: 'Dili' }, + { cell: 'AERP3E', sector: 'AERP#3', site: 'DILI AEROPORTO', lat: -8.550135, lng: 125.522269, location: 'Dili' }, + { cell: 'AERP3F', sector: 'AERP#3F', site: 'DILI AEROPORTO', lat: -8.550135, lng: 125.522269, location: 'Dili' }, + { cell: 'AERP4E', sector: 'AERP#4E', site: 'DILI AEROPORTO', lat: -8.550135, lng: 125.522269, location: 'Dili' }, + { cell: 'AERP4F', sector: 'AERP#4F', site: 'DILI AEROPORTO', lat: -8.550135, lng: 125.522269, location: 'Dili' }, + { cell: 'AERP5E', sector: 'AERP#5E', site: 'DILI AEROPORTO', lat: -8.550135, lng: 125.522269, location: 'Dili' }, + { cell: 'AERP5F', sector: 'AERP#5F', site: 'DILI AEROPORTO', lat: -8.550135, lng: 125.522269, location: 'Dili' }, + { cell: 'AERP6E', sector: 'AERP#6E', site: 'DILI AEROPORTO', lat: -8.550135, lng: 125.522269, location: 'Dili' }, + { cell: 'AERP6F', sector: 'AERP#6F', site: 'DILI AEROPORTO', lat: -8.550135, lng: 125.522269, location: 'Dili' }, + { cell: 'AHUN1E', sector: 'AHUN#1', site: 'AINITAS HUN', lat: -8.57605, lng: 125.583067, location: 'Dili' }, + { cell: 'AHUN1F', sector: 'AHUN#1F', site: 'AINITAS HUN', lat: -8.57605, lng: 125.583067, location: 'Dili' }, + { cell: 'AHUN2E', sector: 'AHUN#2', site: 'AINITAS HUN', lat: -8.57605, lng: 125.583067, location: 'Dili' }, + { cell: 'AHUN2F', sector: 'AHUN#2F', site: 'AINITAS HUN', lat: -8.57605, lng: 125.583067, location: 'Dili' }, + { cell: 'AHUN3E', sector: 'AHUN#3', site: 'AINITAS HUN', lat: -8.57605, lng: 125.583067, location: 'Dili' }, + { cell: 'AHUN3F', sector: 'AHUN#3F', site: 'AINITAS HUN', lat: -8.57605, lng: 125.583067, location: 'Dili' }, + { cell: 'AHUN4E', sector: 'AHUN4E', site: 'AINITAS HUN', lat: -8.57605, lng: 125.583067, location: 'Dili' }, + { cell: 'AHUN4F', sector: 'AHUN4F', site: 'AINITAS HUN', lat: -8.57605, lng: 125.583067, location: 'Dili' }, + { cell: 'AHUN5E', sector: 'AHUN5E', site: 'AINITAS HUN', lat: -8.57605, lng: 125.583067, location: 'Dili' }, + { cell: 'AHUN5F', sector: 'AHUN5F', site: 'AINITAS HUN', lat: -8.57605, lng: 125.583067, location: 'Dili' }, + { cell: 'AHUN6E', sector: 'AHUN6E', site: 'AINITAS HUN', lat: -8.57605, lng: 125.583067, location: 'Dili' }, + { cell: 'AHUN6F', sector: 'AHUN6F', site: 'AINITAS HUN', lat: -8.57605, lng: 125.583067, location: 'Dili' }, + { cell: 'AIMU1E', sector: 'AIMU#1', site: 'AIMUTIN', lat: -8.559, lng: 125.5512, location: 'Dili' }, + { cell: 'AIMU1F', sector: 'AIMU#1F', site: 'AIMUTIN', lat: -8.559, lng: 125.5512, location: 'Dili' }, + { cell: 'AIMU2E', sector: 'AIMU#2', site: 'AIMUTIN', lat: -8.559, lng: 125.5512, location: 'Dili' }, + { cell: 'AIMU2F', sector: 'AIMU#2F', site: 'AIMUTIN', lat: -8.559, lng: 125.5512, location: 'Dili' }, + { cell: 'AIMU3E', sector: 'AIMU#3', site: 'AIMUTIN', lat: -8.559, lng: 125.5512, location: 'Dili' }, + { cell: 'AIMU3F', sector: 'AIMU#3F', site: 'AIMUTIN', lat: -8.559, lng: 125.5512, location: 'Dili' }, + { cell: 'AIMU4E', sector: 'AIMU4', site: 'AIMUTIN', lat: -8.559, lng: 125.5512, location: 'Dili' }, + { cell: 'AIMU4F', sector: 'AIMU#4F', site: 'AIMUTIN', lat: -8.559, lng: 125.5512, location: 'Dili' }, + { cell: 'AIMU5E', sector: 'AIMU5', site: 'AIMUTIN', lat: -8.559, lng: 125.5512, location: 'Dili' }, + { cell: 'AIMU5F', sector: 'AIMU#5F', site: 'AIMUTIN', lat: -8.559, lng: 125.5512, location: 'Dili' }, + { cell: 'AIMU6E', sector: 'AIMU6', site: 'AIMUTIN', lat: -8.559, lng: 125.5512, location: 'Dili' }, + { cell: 'AIMU6F', sector: 'AIMU#6F', site: 'AIMUTIN', lat: -8.559, lng: 125.5512, location: 'Dili' }, + { cell: 'AITE1E', sector: 'AITE#1', site: 'AIMUTIN TELEMOR', lat: -8.556629, lng: 125.545951, location: 'Dili' }, + { cell: 'AITE1F', sector: 'AITE#1F', site: 'AIMUTIN TELEMOR', lat: -8.556629, lng: 125.545951, location: 'Dili' }, + { cell: 'AITE2E', sector: 'AITE#2', site: 'AIMUTIN TELEMOR', lat: -8.556629, lng: 125.545951, location: 'Dili' }, + { cell: 'AITE2F', sector: 'AITE#2F', site: 'AIMUTIN TELEMOR', lat: -8.556629, lng: 125.545951, location: 'Dili' }, + { cell: 'AITE3E', sector: 'AITE#3', site: 'AIMUTIN TELEMOR', lat: -8.556629, lng: 125.545951, location: 'Dili' }, + { cell: 'AITE3F', sector: 'AITE#3F', site: 'AIMUTIN TELEMOR', lat: -8.556629, lng: 125.545951, location: 'Dili' }, + { cell: 'AITE4E', sector: 'AITE#4', site: 'AIMUTIN TELEMOR', lat: -8.556629, lng: 125.545951, location: 'Dili' }, + { cell: 'AITE4F', sector: 'AITE#4F', site: 'AIMUTIN TELEMOR', lat: -8.556629, lng: 125.545951, location: 'Dili' }, + { cell: 'AITE5E', sector: 'AITE#5', site: 'AIMUTIN TELEMOR', lat: -8.556629, lng: 125.545951, location: 'Dili' }, + { cell: 'AITE5F', sector: 'AITE#5F', site: 'AIMUTIN TELEMOR', lat: -8.556629, lng: 125.545951, location: 'Dili' }, + { cell: 'AITE6E', sector: 'AITE#6', site: 'AIMUTIN TELEMOR', lat: -8.556629, lng: 125.545951, location: 'Dili' }, + { cell: 'AITE6F', sector: 'AITE#6F', site: 'AIMUTIN TELEMOR', lat: -8.556629, lng: 125.545951, location: 'Dili' }, + { cell: 'AITL1E', sector: 'AITL#1', site: 'AITARAK LARAN', lat: -8.555907, lng: 125.563896, location: 'Dili' }, + { cell: 'AITL1F', sector: 'AITL#1F', site: 'AITARAK LARAN', lat: -8.555907, lng: 125.563896, location: 'Dili' }, + { cell: 'AITL2E', sector: 'AITL#2', site: 'AITARAK LARAN', lat: -8.555907, lng: 125.563896, location: 'Dili' }, + { cell: 'AITL2F', sector: 'AITL#2F', site: 'AITARAK LARAN', lat: -8.555907, lng: 125.563896, location: 'Dili' }, + { cell: 'AITL3E', sector: 'AITL#3', site: 'AITARAK LARAN', lat: -8.555907, lng: 125.563896, location: 'Dili' }, + { cell: 'AITL3F', sector: 'AITL#F', site: 'AITARAK LARAN', lat: -8.555907, lng: 125.563896, location: 'Dili' }, + { cell: 'AITL4E', sector: 'AITL#4', site: 'AITARAK LARAN', lat: -8.555907, lng: 125.563896, location: 'Dili' }, + { cell: 'AITL4F', sector: 'AITL#4F', site: 'AITARAK LARAN', lat: -8.555907, lng: 125.563896, location: 'Dili' }, + { cell: 'AITL5E', sector: 'AITL#5', site: 'AITARAK LARAN', lat: -8.555907, lng: 125.563896, location: 'Dili' }, + { cell: 'AITL5F', sector: 'AITL#5F', site: 'AITARAK LARAN', lat: -8.555907, lng: 125.563896, location: 'Dili' }, + { cell: 'AITL6E', sector: 'AITL#6', site: 'AITARAK LARAN', lat: -8.555907, lng: 125.563896, location: 'Dili' }, + { cell: 'AITL6F', sector: 'AITL#6F', site: 'AITARAK LARAN', lat: -8.555907, lng: 125.563896, location: 'Dili' }, + { cell: 'AITU1E', sector: 'AITU#1', site: 'AITURI LARAN', lat: -8.578361, lng: 125.595252, location: 'DILI' }, + { cell: 'AITU2E', sector: 'AITU#2', site: 'AITURI LARAN', lat: -8.578361, lng: 125.595252, location: 'DILI' }, + { cell: 'AITU3E', sector: 'AITU#2', site: 'AITURI LARAN', lat: -8.578361, lng: 125.595252, location: 'DILI' }, + { cell: 'ARBC1E', sector: 'ARBC#1', site: 'AREA BRANCA', lat: -8.530737, lng: 125.61606, location: 'Dili' }, + { cell: 'ARBC1F', sector: 'ARBC#1F', site: 'AREA BRANCA', lat: -8.530737, lng: 125.61606, location: 'Dili' }, + { cell: 'ARBC2E', sector: 'ARBC#2', site: 'AREA BRANCA', lat: -8.530737, lng: 125.61606, location: 'Dili' }, + { cell: 'ARBC2F', sector: 'ARBC#F', site: 'AREA BRANCA', lat: -8.530737, lng: 125.61606, location: 'Dili' }, + { cell: 'ARBC3E', sector: 'ARBC#3', site: 'AREA BRANCA', lat: -8.525296, lng: 125.609824, location: 'Dili' }, + { cell: 'ARBC3F', sector: 'ARBC#3F', site: 'AREA BRANCA', lat: -8.525296, lng: 125.609824, location: 'Dili' }, + { cell: 'ARBC4E', sector: 'ARBC#4', site: 'AREA BRANCA', lat: -8.530737, lng: 125.61606, location: 'Dili' }, + { cell: 'ARBC4F', sector: 'ARBC#4F', site: 'AREA BRANCA', lat: -8.530737, lng: 125.61606, location: 'Dili' }, + { cell: 'ARBC5E', sector: 'ARBC#5', site: 'AREA BRANCA', lat: -8.530737, lng: 125.61606, location: 'Dili' }, + { cell: 'ARBC5F', sector: 'ARBC#5F', site: 'AREA BRANCA', lat: -8.530737, lng: 125.61606, location: 'Dili' }, + { cell: 'ARBC6E', sector: 'ARBC#6', site: 'AREA BRANCA', lat: -8.525296, lng: 125.609824, location: 'Dili' }, + { cell: 'ARBC6F', sector: 'ARBC#6F', site: 'AREA BRANCA', lat: -8.525296, lng: 125.609824, location: 'Dili' }, + { cell: 'ARBI1E', sector: 'ARBI#1', site: 'HOTEL ARBIRU', lat: -8.540316, lng: 125.538277, location: 'Dili' }, + { cell: 'ARBI1F', sector: 'ARBI1F', site: 'HOTEL ARBIRU', lat: -8.540316, lng: 125.538277, location: 'Dili' }, + { cell: 'ARBI2E', sector: 'ARBI#2', site: 'HOTEL ARBIRU', lat: -8.540316, lng: 125.538277, location: 'Dili' }, + { cell: 'ARBI2F', sector: 'ARBI2F', site: 'HOTEL ARBIRU', lat: -8.540316, lng: 125.538277, location: 'Dili' }, + { cell: 'ARBI4E', sector: 'ARBI4E', site: 'HOTEL ARBIRU', lat: -8.540316, lng: 125.538277, location: 'Dili' }, + { cell: 'ARBI4F', sector: 'ARBI4F', site: 'HOTEL ARBIRU', lat: -8.540316, lng: 125.538277, location: 'Dili' }, + { cell: 'ARBI5E', sector: 'ARBI5E', site: 'HOTEL ARBIRU', lat: -8.540316, lng: 125.538277, location: 'Dili' }, + { cell: 'ARBI5F', sector: 'ARBI5F', site: 'HOTEL ARBIRU', lat: -8.540316, lng: 125.538277, location: 'Dili' }, + { cell: 'ARNA1E', sector: 'ARNA#1', site: 'AILOKLARAN RUINNAKLEKAR', lat: -8.572797, lng: 125.564997, location: 'Dili' }, + { cell: 'ARNA1F', sector: 'ARNA#1F', site: 'AILOKLARAN RUINNAKLEKAR', lat: -8.572797, lng: 125.564997, location: 'Dili' }, + { cell: 'ARNA2E', sector: 'ARNA#2', site: 'AILOKLARAN RUINNAKLEKAR', lat: -8.572797, lng: 125.564997, location: 'Dili' }, + { cell: 'ARNA2F', sector: 'ARNA#2F', site: 'AILOKLARAN RUINNAKLEKAR', lat: -8.572797, lng: 125.564997, location: 'Dili' }, + { cell: 'ARNA3E', sector: 'ARNA#3', site: 'AILOKLARAN RUINNAKLEKAR', lat: -8.572797, lng: 125.564997, location: 'Dili' }, + { cell: 'ARNA3F', sector: 'ARNA#3F', site: 'AILOKLARAN RUINNAKLEKAR', lat: -8.572797, lng: 125.564997, location: 'Dili' }, + { cell: 'ARNA4E', sector: 'ARNA#4', site: 'AILOKLARAN RUINNAKLEKAR', lat: -8.572797, lng: 125.564997, location: 'Dili' }, + { cell: 'ARNA4F', sector: 'ARNA#4F', site: 'AILOKLARAN RUINNAKLEKAR', lat: -8.572797, lng: 125.564997, location: 'Dili' }, + { cell: 'ARNA5E', sector: 'ARNA#5', site: 'AILOKLARAN RUINNAKLEKAR', lat: -8.572797, lng: 125.564997, location: 'Dili' }, + { cell: 'ARNA5F', sector: 'ARNA#5F', site: 'AILOKLARAN RUINNAKLEKAR', lat: -8.572797, lng: 125.564997, location: 'Dili' }, + { cell: 'ARNA6E', sector: 'ARNA#6', site: 'AILOKLARAN RUINNAKLEKAR', lat: -8.572797, lng: 125.564997, location: 'Dili' }, + { cell: 'ARNA6F', sector: 'ARNA#6F', site: 'AILOKLARAN RUINNAKLEKAR', lat: -8.572797, lng: 125.564997, location: 'Dili' }, + { cell: 'ATAU1E', sector: 'ATAU#1', site: 'ATAURO', lat: -8.272224, lng: 125.600594, location: 'Dili (District)' }, + { cell: 'BAMA1E', sector: 'BAMA#1', site: 'BIDAU STA. ANA MANUMATA', lat: -8.551831, lng: 125.594124, location: 'Dili' }, + { cell: 'BAMA1F', sector: 'BAMA#1F', site: 'BIDAU STA. ANA MANUMATA', lat: -8.551831, lng: 125.594124, location: 'Dili' }, + { cell: 'BAMA2E', sector: 'BAMA#2', site: 'BIDAU STA. ANA MANUMATA', lat: -8.551831, lng: 125.594124, location: 'Dili' }, + { cell: 'BAMA2F', sector: 'BAMA#2F', site: 'BIDAU STA. ANA MANUMATA', lat: -8.551831, lng: 125.594124, location: 'Dili' }, + { cell: 'BAMA3E', sector: 'BAMA#3', site: 'BIDAU STA. ANA MANUMATA', lat: -8.551831, lng: 125.594124, location: 'Dili' }, + { cell: 'BAMA3F', sector: 'BAMA#3F', site: 'BIDAU STA. ANA MANUMATA', lat: -8.551831, lng: 125.594124, location: 'Dili' }, + { cell: 'BAMA4E', sector: 'BAMA#4', site: 'BIDAU STA. ANA MANUMATA', lat: -8.551831, lng: 125.594124, location: 'Dili' }, + { cell: 'BAMA4F', sector: 'BAMA#4F', site: 'BIDAU STA. ANA MANUMATA', lat: -8.551831, lng: 125.594124, location: 'Dili' }, + { cell: 'BAMA5E', sector: 'BAMA#5', site: 'BIDAU STA. ANA MANUMATA', lat: -8.551831, lng: 125.594124, location: 'Dili' }, + { cell: 'BAMA5F', sector: 'BAMA#5F', site: 'BIDAU STA. ANA MANUMATA', lat: -8.551831, lng: 125.594124, location: 'Dili' }, + { cell: 'BAMA6E', sector: 'BAMA#6', site: 'BIDAU STA. ANA MANUMATA', lat: -8.551831, lng: 125.594124, location: 'Dili' }, + { cell: 'BAMA6F', sector: 'BAMA#6F', site: 'BIDAU STA. ANA MANUMATA', lat: -8.551831, lng: 125.594124, location: 'Dili' }, + { cell: 'BALA1E', sector: 'BALA#1', site: 'BAIRRO PITE AILOK LARAN', lat: -8.5663, lng: 125.5647, location: 'Dili' }, + { cell: 'BALA1F', sector: 'BALA#1F', site: 'BAIRRO PITE AILOK LARAN', lat: -8.5663, lng: 125.5647, location: 'Dili' }, + { cell: 'BALA2E', sector: 'BALA#2', site: 'BAIRRO PITE AILOK LARAN', lat: -8.5663, lng: 125.5647, location: 'Dili' }, + { cell: 'BALA2F', sector: 'BALA#2F', site: 'BAIRRO PITE AILOK LARAN', lat: -8.5663, lng: 125.5647, location: 'Dili' }, + { cell: 'BALA3E', sector: 'BALA#3', site: 'BAIRRO PITE AILOK LARAN', lat: -8.5663, lng: 125.5647, location: 'Dili' }, + { cell: 'BALA3F', sector: 'BALA#3F', site: 'BAIRRO PITE AILOK LARAN', lat: -8.5663, lng: 125.5647, location: 'Dili' }, + { cell: 'BALA4E', sector: 'BALA#4', site: 'BAIRRO PITE AILOK LARAN', lat: -8.5663, lng: 125.5647, location: 'Dili' }, + { cell: 'BALA4F', sector: 'BALA#4F', site: 'BAIRRO PITE AILOK LARAN', lat: -8.5663, lng: 125.5647, location: 'Dili' }, + { cell: 'BALA5E', sector: 'BALA#5', site: 'BAIRRO PITE AILOK LARAN', lat: -8.5663, lng: 125.5647, location: 'Dili' }, + { cell: 'BALA5F', sector: 'BALA#5F', site: 'BAIRRO PITE AILOK LARAN', lat: -8.5663, lng: 125.5647, location: 'Dili' }, + { cell: 'BALA6E', sector: 'BALA#6', site: 'BAIRRO PITE AILOK LARAN', lat: -8.5663, lng: 125.5647, location: 'Dili' }, + { cell: 'BALA6F', sector: 'BALA#6F', site: 'BAIRRO PITE AILOK LARAN', lat: -8.5663, lng: 125.5647, location: 'Dili' }, + { cell: 'BALD1E', sector: 'BALD#1', site: 'BALIDE', lat: -8.564396, lng: 125.582151, location: 'Dili' }, + { cell: 'BALD1F', sector: 'BALD#1F', site: 'BALIDE', lat: -8.564396, lng: 125.582151, location: 'Dili' }, + { cell: 'BALD2E', sector: 'BALD#2', site: 'BALIDE', lat: -8.564396, lng: 125.582151, location: 'Dili' }, + { cell: 'BALD2F', sector: 'BALD#2F', site: 'BALIDE', lat: -8.564396, lng: 125.582151, location: 'Dili' }, + { cell: 'BALD3E', sector: 'BALD#3', site: 'BALIDE', lat: -8.564396, lng: 125.582151, location: 'Dili' }, + { cell: 'BALD3F', sector: 'BALD#3F', site: 'BALIDE', lat: -8.564396, lng: 125.582151, location: 'Dili' }, + { cell: 'BALD4E', sector: 'BALD#4', site: 'BALIDE', lat: -8.564396, lng: 125.582151, location: 'Dili' }, + { cell: 'BALD4F', sector: 'BALD#4F', site: 'BALIDE', lat: -8.564396, lng: 125.582151, location: 'Dili' }, + { cell: 'BALD5E', sector: 'BALD#5', site: 'BALIDE', lat: -8.564396, lng: 125.582151, location: 'Dili' }, + { cell: 'BALD5F', sector: 'BALD#5F', site: 'BALIDE', lat: -8.564396, lng: 125.582151, location: 'Dili' }, + { cell: 'BALD6E', sector: 'BALD#6', site: 'BALIDE', lat: -8.564396, lng: 125.582151, location: 'Dili' }, + { cell: 'BALD6F', sector: 'BALD#6F', site: 'BALIDE', lat: -8.564396, lng: 125.582151, location: 'Dili' }, + { cell: 'BAUN1E', sector: 'BAUN#1', site: 'BECORA AUHUN', lat: -8.560255, lng: 125.599532, location: 'Dili' }, + { cell: 'BAUN1F', sector: 'BAUN#1F', site: 'BECORA AUHUN', lat: -8.560255, lng: 125.599532, location: 'Dili' }, + { cell: 'BAUN2E', sector: 'BAUN#2', site: 'BECORA AUHUN', lat: -8.560255, lng: 125.599532, location: 'Dili' }, + { cell: 'BAUN2F', sector: 'BAUN#F', site: 'BECORA AUHUN', lat: -8.560255, lng: 125.599532, location: 'Dili' }, + { cell: 'BAUN3E', sector: 'BAUN#3', site: 'BECORA AUHUN', lat: -8.560255, lng: 125.599532, location: 'Dili' }, + { cell: 'BAUN3F', sector: 'BAUN#3F', site: 'BECORA AUHUN', lat: -8.560255, lng: 125.599532, location: 'Dili' }, + { cell: 'BAUN4E', sector: 'BAUN#4', site: 'BECORA AUHUN', lat: -8.560255, lng: 125.599532, location: 'Dili' }, + { cell: 'BAUN4F', sector: 'BAUN#4F', site: 'BECORA AUHUN', lat: -8.560255, lng: 125.599532, location: 'Dili' }, + { cell: 'BAUN5E', sector: 'BAUN#5', site: 'BECORA AUHUN', lat: -8.560255, lng: 125.599532, location: 'Dili' }, + { cell: 'BAUN5F', sector: 'BAUN#5F', site: 'BECORA AUHUN', lat: -8.560255, lng: 125.599532, location: 'Dili' }, + { cell: 'BAUN6E', sector: 'BAUN#6', site: 'BECORA AUHUN', lat: -8.560255, lng: 125.599532, location: 'Dili' }, + { cell: 'BAUN6F', sector: 'BAUN#6F', site: 'BECORA AUHUN', lat: -8.560255, lng: 125.599532, location: 'Dili' }, + { cell: 'BEBK1E', sector: 'BEBK#1', site: 'BEBONUK', lat: -8.547527, lng: 125.54828, location: 'Dili' }, + { cell: 'BEBK1F', sector: 'BEBK#1F', site: 'BEBONUK', lat: -8.547527, lng: 125.54828, location: 'Dili' }, + { cell: 'BEBK2E', sector: 'BEBK#2', site: 'BEBONUK', lat: -8.547527, lng: 125.54828, location: 'Dili' }, + { cell: 'BEBK2F', sector: 'BEBK#2F', site: 'BEBONUK', lat: -8.547527, lng: 125.54828, location: 'Dili' }, + { cell: 'BEBK3E', sector: 'BEBK#3', site: 'BEBONUK', lat: -8.547527, lng: 125.54828, location: 'Dili' }, + { cell: 'BEBK3F', sector: 'BEBK#33', site: 'BEBONUK', lat: -8.547527, lng: 125.54828, location: 'Dili' }, + { cell: 'BEBK4E', sector: 'BEBK#4', site: 'BEBONUK', lat: -8.547527, lng: 125.54828, location: 'Dili' }, + { cell: 'BEBK4F', sector: 'BEBK#4F', site: 'BEBONUK', lat: -8.547527, lng: 125.54828, location: 'Dili' }, + { cell: 'BEBK5E', sector: 'BEBK#5', site: 'BEBONUK', lat: -8.547527, lng: 125.54828, location: 'Dili' }, + { cell: 'BEBK5F', sector: 'BEBK#5F', site: 'BEBONUK', lat: -8.547527, lng: 125.54828, location: 'Dili' }, + { cell: 'BEBK6E', sector: 'BEBK#6', site: 'BEBONUK', lat: -8.547527, lng: 125.54828, location: 'Dili' }, + { cell: 'BEBK6F', sector: 'BEBK#66', site: 'BEBONUK', lat: -8.547527, lng: 125.54828, location: 'Dili' }, + { cell: 'BECA1E', sector: 'BECA#1', site: 'BECARIL', lat: -8.54088, lng: 125.61633, location: 'Dili' }, + { cell: 'BECA1F', sector: 'BECA#1F', site: 'BECARIL', lat: -8.54088, lng: 125.61633, location: 'Dili' }, + { cell: 'BECA2E', sector: 'BECA#2', site: 'BECARIL', lat: -8.54088, lng: 125.61633, location: 'Dili' }, + { cell: 'BECA2F', sector: 'BECA#2F', site: 'BECARIL', lat: -8.54088, lng: 125.61633, location: 'Dili' }, + { cell: 'BECA4E', sector: 'BECA#4', site: 'BECARIL', lat: -8.54088, lng: 125.61633, location: 'Dili' }, + { cell: 'BECA4F', sector: 'BECA#4F', site: 'BECARIL', lat: -8.54088, lng: 125.61633, location: 'Dili' }, + { cell: 'BECA5E', sector: 'BECA#5', site: 'BECARIL', lat: -8.54088, lng: 125.61633, location: 'Dili' }, + { cell: 'BECA5F', sector: 'BECA#5F', site: 'BECARIL', lat: -8.54088, lng: 125.61633, location: 'Dili' }, + { cell: 'BECA3E', sector: 'BECA#3', site: 'BECARIL', lat: -8.543625, lng: 125.61096, location: 'Dili' }, + { cell: 'BECE1E', sector: 'BECE#1', site: 'BECUSSE CENTRO', lat: -8.563579, lng: 125.603619, location: 'Dili' }, + { cell: 'BECE1F', sector: 'BECE#1F', site: 'BECUSSE CENTRO', lat: -8.563579, lng: 125.603619, location: 'Dili' }, + { cell: 'BECE2E', sector: 'BECE#2', site: 'BECUSSE CENTRO', lat: -8.563579, lng: 125.603619, location: 'Dili' }, + { cell: 'BECE2F', sector: 'BECE#2F', site: 'BECUSSE CENTRO', lat: -8.563579, lng: 125.603619, location: 'Dili' }, + { cell: 'BECE3E', sector: 'BECE#3', site: 'BECUSSE CENTRO', lat: -8.563579, lng: 125.603619, location: 'Dili' }, + { cell: 'BECE3F', sector: 'BECE#3F', site: 'BECUSSE CENTRO', lat: -8.563579, lng: 125.603619, location: 'Dili' }, + { cell: 'BECE4E', sector: 'BECE4E', site: 'BECUSSE CENTRO', lat: -8.563579, lng: 125.603619, location: 'Dili' }, + { cell: 'BECE4F', sector: 'BECE4F', site: 'BECUSSE CENTRO', lat: -8.563579, lng: 125.603619, location: 'Dili' }, + { cell: 'BECE5E', sector: 'BECE5E', site: 'BECUSSE CENTRO', lat: -8.563579, lng: 125.603619, location: 'Dili' }, + { cell: 'BECE5F', sector: 'BECE5F', site: 'BECUSSE CENTRO', lat: -8.563579, lng: 125.603619, location: 'Dili' }, + { cell: 'BECE6E', sector: 'BECE6E', site: 'BECUSSE CENTRO', lat: -8.563579, lng: 125.603619, location: 'Dili' }, + { cell: 'BECE6F', sector: 'BECE6F', site: 'BECUSSE CENTRO', lat: -8.563579, lng: 125.603619, location: 'Dili' }, + { cell: 'BECR1E', sector: 'BECR#1', site: 'BECORA', lat: -8.566137, lng: 125.611287, location: 'Dili' }, + { cell: 'BECR1F', sector: 'BECR#1F', site: 'BECORA', lat: -8.566137, lng: 125.611287, location: 'Dili' }, + { cell: 'BECR2E', sector: 'BECR#2', site: 'BECORA', lat: -8.566137, lng: 125.611287, location: 'Dili' }, + { cell: 'BECR2F', sector: 'BECR#2F', site: 'BECORA', lat: -8.566137, lng: 125.611287, location: 'Dili' }, + { cell: 'BECR3E', sector: 'BECR#3', site: 'BECORA', lat: -8.566137, lng: 125.611287, location: 'Dili' }, + { cell: 'BECR3F', sector: 'BECR#3F', site: 'BECORA', lat: -8.566137, lng: 125.611287, location: 'Dili' }, + { cell: 'BECR4E', sector: 'BECR#4', site: 'BECORA', lat: -8.566137, lng: 125.611287, location: 'Dili' }, + { cell: 'BECR4F', sector: 'BECR#4F', site: 'BECORA', lat: -8.566137, lng: 125.611287, location: 'Dili' }, + { cell: 'BECR5E', sector: 'BECR#5', site: 'BECORA', lat: -8.566137, lng: 125.611287, location: 'Dili' }, + { cell: 'BECR5F', sector: 'BECR#5F', site: 'BECORA', lat: -8.566137, lng: 125.611287, location: 'Dili' }, + { cell: 'BECR6E', sector: 'BECR#6', site: 'BECORA', lat: -8.566137, lng: 125.611287, location: 'Dili' }, + { cell: 'BECR6F', sector: 'BECR#6F', site: 'BECORA', lat: -8.566137, lng: 125.611287, location: 'Dili' }, + { cell: 'BEDO1E', sector: 'BEDO#1', site: 'BEDOIS', lat: -8.567502, lng: 125.617224, location: 'Dili' }, + { cell: 'BEDO1F', sector: 'BEDO#1F', site: 'BEDOIS', lat: -8.567502, lng: 125.617224, location: 'Dili' }, + { cell: 'BEDO2E', sector: 'BEDO#2', site: 'BEDOIS', lat: -8.567502, lng: 125.617224, location: 'Dili' }, + { cell: 'BEDO2F', sector: 'BEDO#2F', site: 'BEDOIS', lat: -8.567502, lng: 125.617224, location: 'Dili' }, + { cell: 'BEDO3E', sector: 'BEDO#3', site: 'BEDOIS', lat: -8.567502, lng: 125.617224, location: 'Dili' }, + { cell: 'BEDO3F', sector: 'BEDO#3F', site: 'BEDOIS', lat: -8.567502, lng: 125.617224, location: 'Dili' }, + { cell: 'BEDO4E', sector: 'BEDO#4', site: 'BEDOIS', lat: -8.567502, lng: 125.617224, location: 'Dili' }, + { cell: 'BEDO4F', sector: 'BEDO#4F', site: 'BEDOIS', lat: -8.567502, lng: 125.617224, location: 'Dili' }, + { cell: 'BEDO5E', sector: 'BEDO#5', site: 'BEDOIS', lat: -8.567502, lng: 125.617224, location: 'Dili' }, + { cell: 'BEDO5F', sector: 'BEDO#5F', site: 'BEDOIS', lat: -8.567502, lng: 125.617224, location: 'Dili' }, + { cell: 'BEDO6E', sector: 'BEDO#6', site: 'BEDOIS', lat: -8.567502, lng: 125.617224, location: 'Dili' }, + { cell: 'BEDO6F', sector: 'BEDO#6F', site: 'BEDOIS', lat: -8.567502, lng: 125.617224, location: 'Dili' }, + { cell: 'BEIK1E', sector: 'BEIK#1', site: 'BECUSSE KRAIK', lat: -8.564282, lng: 125.597544, location: 'Dili' }, + { cell: 'BEIK1F', sector: 'BEIK#1F', site: 'BECUSSE KRAIK', lat: -8.564282, lng: 125.597544, location: 'Dili' }, + { cell: 'BEIK2E', sector: 'BEIK#2', site: 'BECUSSE KRAIK', lat: -8.564282, lng: 125.597544, location: 'Dili' }, + { cell: 'BEIK2F', sector: 'BEIK#2F', site: 'BECUSSE KRAIK', lat: -8.564282, lng: 125.597544, location: 'Dili' }, + { cell: 'BEIK3E', sector: 'BEIK#3', site: 'BECUSSE KRAIK', lat: -8.564282, lng: 125.597544, location: 'Dili' }, + { cell: 'BEIK3F', sector: 'BEIK#3F', site: 'BECUSSE KRAIK', lat: -8.564282, lng: 125.597544, location: 'Dili' }, + { cell: 'BEIK4E', sector: 'BEIK#4', site: 'BECUSSE KRAIK', lat: -8.564282, lng: 125.597544, location: 'Dili' }, + { cell: 'BEIK4F', sector: 'BEIK#4F', site: 'BECUSSE KRAIK', lat: -8.564282, lng: 125.597544, location: 'Dili' }, + { cell: 'BEIK5E', sector: 'BEIK#5', site: 'BECUSSE KRAIK', lat: -8.564282, lng: 125.597544, location: 'Dili' }, + { cell: 'BEIK5F', sector: 'BEIK#5F', site: 'BECUSSE KRAIK', lat: -8.564282, lng: 125.597544, location: 'Dili' }, + { cell: 'BEIK6E', sector: 'BEIK#6', site: 'BECUSSE KRAIK', lat: -8.564282, lng: 125.597544, location: 'Dili' }, + { cell: 'BEIK6F', sector: 'BEIK#6F', site: 'BECUSSE KRAIK', lat: -8.564282, lng: 125.597544, location: 'Dili' }, + { cell: 'BEMG1E', sector: 'BEMG#1', site: 'BETO DNMG', lat: -8.548623, lng: 125.527678, location: 'Dili' }, + { cell: 'BEMG1F', sector: 'BEMG#1F', site: 'BETO DNMG', lat: -8.548623, lng: 125.527678, location: 'Dili' }, + { cell: 'BEMG2E', sector: 'BEMG#2', site: 'BETO DNMG', lat: -8.548623, lng: 125.527678, location: 'Dili' }, + { cell: 'BEMG2F', sector: 'BEMG#F', site: 'BETO DNMG', lat: -8.548623, lng: 125.527678, location: 'Dili' }, + { cell: 'BEMG3E', sector: 'BEMG#3', site: 'BETO DNMG', lat: -8.548623, lng: 125.527678, location: 'Dili' }, + { cell: 'BEMG3F', sector: 'BEMG#3F', site: 'BETO DNMG', lat: -8.548623, lng: 125.527678, location: 'Dili' }, + { cell: 'BEMG4E', sector: 'BEMG#4', site: 'BETO DNMG', lat: -8.548623, lng: 125.527678, location: 'Dili' }, + { cell: 'BEMG4F', sector: 'BEMG#4F', site: 'BETO DNMG', lat: -8.548623, lng: 125.527678, location: 'Dili' }, + { cell: 'BEMG5E', sector: 'BEMG#5', site: 'BETO DNMG', lat: -8.548623, lng: 125.527678, location: 'Dili' }, + { cell: 'BEMG5F', sector: 'BEMG#5F', site: 'BETO DNMG', lat: -8.548623, lng: 125.527678, location: 'Dili' }, + { cell: 'BEMG6E', sector: 'BEMG#6', site: 'BETO DNMG', lat: -8.548623, lng: 125.527678, location: 'Dili' }, + { cell: 'BEMG6F', sector: 'BEMG#6F', site: 'BETO DNMG', lat: -8.548623, lng: 125.527678, location: 'Dili' }, + { cell: 'BENA1E', sector: 'BENA#1', site: 'BETO NAROMAN', lat: -8.548906, lng: 125.534374, location: 'Dili' }, + { cell: 'BENA1F', sector: 'BENA#1F', site: 'BETO NAROMAN', lat: -8.548906, lng: 125.534374, location: 'Dili' }, + { cell: 'BENA2E', sector: 'BENA#2', site: 'BETO NAROMAN', lat: -8.548906, lng: 125.534374, location: 'Dili' }, + { cell: 'BENA2F', sector: 'BENA#2F', site: 'BETO NAROMAN', lat: -8.548906, lng: 125.534374, location: 'Dili' }, + { cell: 'BENA3E', sector: 'BENA#3', site: 'BETO NAROMAN', lat: -8.548906, lng: 125.534374, location: 'Dili' }, + { cell: 'BENA3F', sector: 'BENA#3F', site: 'BETO NAROMAN', lat: -8.548906, lng: 125.534374, location: 'Dili' }, + { cell: 'BENA4E', sector: 'BENA#4', site: 'BETO NAROMAN', lat: -8.548906, lng: 125.534374, location: 'Dili' }, + { cell: 'BENA4F', sector: 'BENA#4F', site: 'BETO NAROMAN', lat: -8.548906, lng: 125.534374, location: 'Dili' }, + { cell: 'BENA5E', sector: 'BENA#5', site: 'BETO NAROMAN', lat: -8.548906, lng: 125.534374, location: 'Dili' }, + { cell: 'BENA5F', sector: 'BENA#5F', site: 'BETO NAROMAN', lat: -8.548906, lng: 125.534374, location: 'Dili' }, + { cell: 'BENA6E', sector: 'BENA#6', site: 'BETO NAROMAN', lat: -8.548906, lng: 125.534374, location: 'Dili' }, + { cell: 'BENA6F', sector: 'BENA#6F', site: 'BETO NAROMAN', lat: -8.548906, lng: 125.534374, location: 'Dili' }, + { cell: 'BETO1E', sector: 'BETO#1', site: 'BETO', lat: -8.553311, lng: 125.532549, location: 'Dili' }, + { cell: 'BETO2E', sector: 'BETO#2', site: 'BETO', lat: -8.553311, lng: 125.532549, location: 'Dili' }, + { cell: 'BETO3E', sector: 'BETO#3', site: 'BETO', lat: -8.553311, lng: 125.532549, location: 'Dili' }, + { cell: 'BETO4E', sector: 'BETO#4', site: 'BETO', lat: -8.553311, lng: 125.532549, location: 'Dili' }, + { cell: 'BETO5E', sector: 'BETO#5', site: 'BETO', lat: -8.553311, lng: 125.532549, location: 'Dili' }, + { cell: 'BETO6E', sector: 'BETO#6', site: 'BETO', lat: -8.553311, lng: 125.532549, location: 'Dili' }, + { cell: 'BETO2F', sector: 'BETO#8', site: 'BETO (iMacro)', lat: -8.552891, lng: 125.527198, location: 'Dili' }, + { cell: 'BETO5F', sector: 'BETO#11', site: 'BETO (iMacro)', lat: -8.552891, lng: 125.527198, location: 'Dili' }, + { cell: 'BETO3F', sector: 'BETO#9', site: 'BETO (iMacro)', lat: -8.552891, lng: 125.527198, location: 'Dili' }, + { cell: 'BETO6F', sector: 'BETO#12', site: 'BETO (iMacro)', lat: -8.552891, lng: 125.527198, location: 'Dili' }, + { cell: 'BIDA1E', sector: 'BIDA#1', site: 'BIDAU', lat: -8.557187, lng: 125.594275, location: 'Dili' }, + { cell: 'BIDA1F', sector: 'BIDA#1F', site: 'BIDAU', lat: -8.557187, lng: 125.594275, location: 'Dili' }, + { cell: 'BIDA2E', sector: 'BIDA#2', site: 'BIDAU', lat: -8.557187, lng: 125.594275, location: 'Dili' }, + { cell: 'BIDA2F', sector: 'BIDA#2F', site: 'BIDAU', lat: -8.557187, lng: 125.594275, location: 'Dili' }, + { cell: 'BIDA3E', sector: 'BIDA#3', site: 'BIDAU', lat: -8.557187, lng: 125.594275, location: 'Dili' }, + { cell: 'BIDA3F', sector: 'BIDA#3F', site: 'BIDAU', lat: -8.557187, lng: 125.594275, location: 'Dili' }, + { cell: 'BIDA4E', sector: 'BIDA#4', site: 'BIDAU', lat: -8.557187, lng: 125.594275, location: 'Dili' }, + { cell: 'BIDA4F', sector: 'BIDA#4F', site: 'BIDAU', lat: -8.557187, lng: 125.594275, location: 'Dili' }, + { cell: 'BIDA5E', sector: 'BIDA#5', site: 'BIDAU', lat: -8.557187, lng: 125.594275, location: 'Dili' }, + { cell: 'BIDA5F', sector: 'BIDA#5F', site: 'BIDAU', lat: -8.557187, lng: 125.594275, location: 'Dili' }, + { cell: 'BIDA6E', sector: 'BIDA#6', site: 'BIDAU', lat: -8.557187, lng: 125.594275, location: 'Dili' }, + { cell: 'BIDA6F', sector: 'BIDA#6F', site: 'BIDAU', lat: -8.557187, lng: 125.594275, location: 'Dili' }, + { cell: 'BMOR1E', sector: 'BMOR#1', site: 'BEMORI', lat: -8.559669, lng: 125.588966, location: 'Dili' }, + { cell: 'BMOR1F', sector: 'BMOR#1F', site: 'BEMORI', lat: -8.559669, lng: 125.588966, location: 'Dili' }, + { cell: 'BMOR2E', sector: 'BMOR#2', site: 'BEMORI', lat: -8.559669, lng: 125.588966, location: 'Dili' }, + { cell: 'BMOR2F', sector: 'BMOR#2F', site: 'BEMORI', lat: -8.559669, lng: 125.588966, location: 'Dili' }, + { cell: 'BMOR3E', sector: 'BMOR#3', site: 'BEMORI', lat: -8.559669, lng: 125.588966, location: 'Dili' }, + { cell: 'BMOR3F', sector: 'BMOR#3F', site: 'BEMORI', lat: -8.559669, lng: 125.588966, location: 'Dili' }, + { cell: 'BMOR4E', sector: 'BMOR#4', site: 'BEMORI', lat: -8.559669, lng: 125.588966, location: 'Dili' }, + { cell: 'BMOR4F', sector: 'BMOR#4F', site: 'BEMORI', lat: -8.559669, lng: 125.588966, location: 'Dili' }, + { cell: 'BMOR5E', sector: 'BMOR#5', site: 'BEMORI', lat: -8.559669, lng: 125.588966, location: 'Dili' }, + { cell: 'BMOR5F', sector: 'BMOR#5F', site: 'BEMORI', lat: -8.559669, lng: 125.588966, location: 'Dili' }, + { cell: 'BMOR6E', sector: 'BMOR#6', site: 'BEMORI', lat: -8.559669, lng: 125.588966, location: 'Dili' }, + { cell: 'BMOR6F', sector: 'BMOR#6F', site: 'BEMORI', lat: -8.559669, lng: 125.588966, location: 'Dili' }, + { cell: 'BILE1E', sector: 'BILE#1', site: 'BIDAU LECIDERE', lat: -8.549599, lng: 125.589457, location: 'Dili' }, + { cell: 'BILE1F', sector: 'BILE#1F', site: 'BIDAU LECIDERE', lat: -8.549599, lng: 125.589457, location: 'Dili' }, + { cell: 'BILE2E', sector: 'BILE#2', site: 'BIDAU LECIDERE', lat: -8.549599, lng: 125.589457, location: 'Dili' }, + { cell: 'BILE2F', sector: 'BILE#2F', site: 'BIDAU LECIDERE', lat: -8.549599, lng: 125.589457, location: 'Dili' }, + { cell: 'BILE3E', sector: 'BILE#3', site: 'BIDAU LECIDERE', lat: -8.549599, lng: 125.589457, location: 'Dili' }, + { cell: 'BILE3F', sector: 'BILE#3F', site: 'BIDAU LECIDERE', lat: -8.549599, lng: 125.589457, location: 'Dili' }, + { cell: 'BILE4E', sector: 'BILE#4', site: 'BIDAU LECIDERE', lat: -8.549599, lng: 125.589457, location: 'Dili' }, + { cell: 'BILE4F', sector: 'BILE#4F', site: 'BIDAU LECIDERE', lat: -8.549599, lng: 125.589457, location: 'Dili' }, + { cell: 'BILE5E', sector: 'BILE#5', site: 'BIDAU LECIDERE', lat: -8.549599, lng: 125.589457, location: 'Dili' }, + { cell: 'BILE5F', sector: 'BILE#5F', site: 'BIDAU LECIDERE', lat: -8.549599, lng: 125.589457, location: 'Dili' }, + { cell: 'BILE6E', sector: 'BILE#6', site: 'BIDAU LECIDERE', lat: -8.549599, lng: 125.589457, location: 'Dili' }, + { cell: 'BILE6F', sector: 'BILE#6F', site: 'BIDAU LECIDERE', lat: -8.549599, lng: 125.589457, location: 'Dili' }, + { cell: 'BIMA1E', sector: 'BIMA#1', site: 'BIDAU MASSAUR', lat: -8.554339, lng: 125.596989, location: 'Dili' }, + { cell: 'BIMA1F', sector: 'BIMA#1F', site: 'BIDAU MASSAUR', lat: -8.554339, lng: 125.596989, location: 'Dili' }, + { cell: 'BIMA2E', sector: 'BIMA#2', site: 'BIDAU MASSAUR', lat: -8.554339, lng: 125.596989, location: 'Dili' }, + { cell: 'BIMA2F', sector: 'BIMA#F', site: 'BIDAU MASSAUR', lat: -8.554339, lng: 125.596989, location: 'Dili' }, + { cell: 'BIMA3E', sector: 'BIMA#3', site: 'BIDAU MASSAUR', lat: -8.554339, lng: 125.596989, location: 'Dili' }, + { cell: 'BIMA3F', sector: 'BIMA#3F', site: 'BIDAU MASSAUR', lat: -8.554339, lng: 125.596989, location: 'Dili' }, + { cell: 'BIMA4E', sector: 'BIMA#4', site: 'BIMAU MASSAUR', lat: -8.554339, lng: 125.596989, location: 'Dili' }, + { cell: 'BIMA4F', sector: 'BIMA#4F', site: 'BIMAU MASSAUR', lat: -8.554339, lng: 125.596989, location: 'Dili' }, + { cell: 'BIMA5E', sector: 'BIMA#5', site: 'BIMAU MASSAUR', lat: -8.554339, lng: 125.596989, location: 'Dili' }, + { cell: 'BIMA5F', sector: 'BIMA#5F', site: 'BIMAU MASSAUR', lat: -8.554339, lng: 125.596989, location: 'Dili' }, + { cell: 'BIMA6E', sector: 'BIMA#6', site: 'BIMAU MASSAUR', lat: -8.554339, lng: 125.596989, location: 'Dili' }, + { cell: 'BIMA6F', sector: 'BIMA#6F', site: 'BIMAU MASSAUR', lat: -8.554339, lng: 125.596989, location: 'Dili' }, + { cell: 'BITT1E', sector: 'BITT#1', site: 'BITERLAUN', lat: -8.548328, lng: 125.623808, location: 'DILI' }, + { cell: 'BITT2E', sector: 'BITT#2', site: 'BITERLAUN', lat: -8.548328, lng: 125.623808, location: 'DILI' }, + { cell: 'BNU1E', sector: 'BNU1E', site: 'BNU', lat: -8.555103, lng: 125.576137, location: 'Dili' }, + { cell: 'BNU1F', sector: 'BNU1F', site: 'BNU', lat: -8.555103, lng: 125.576137, location: 'Dili' }, + { cell: 'BNU2E', sector: 'BNU2E', site: 'BNU', lat: -8.555103, lng: 125.576137, location: 'Dili' }, + { cell: 'BNU2F', sector: 'BNU2F', site: 'BNU', lat: -8.555103, lng: 125.576137, location: 'Dili' }, + { cell: 'BNU3E', sector: 'BNU3E', site: 'BNU', lat: -8.555103, lng: 125.576137, location: 'Dili' }, + { cell: 'BNU3F', sector: 'BNU3F', site: 'BNU', lat: -8.555103, lng: 125.576137, location: 'Dili' }, + { cell: 'BNU4E', sector: 'BNU4E', site: 'BNU', lat: -8.555103, lng: 125.576137, location: 'Dili' }, + { cell: 'BNU4F', sector: 'BNU4F', site: 'BNU', lat: -8.555103, lng: 125.576137, location: 'Dili' }, + { cell: 'BNU5E', sector: 'BNU5E', site: 'BNU', lat: -8.555103, lng: 125.576137, location: 'Dili' }, + { cell: 'BNU5F', sector: 'BNU5F', site: 'BNU', lat: -8.555103, lng: 125.576137, location: 'Dili' }, + { cell: 'BNU6E', sector: 'BNU6E', site: 'BNU', lat: -8.555103, lng: 125.576137, location: 'Dili' }, + { cell: 'BNU6F', sector: 'BNU6F', site: 'BNU', lat: -8.555103, lng: 125.576137, location: 'Dili' }, + { cell: 'BNUL1E', sector: 'BNUL#1', site: 'BECORA NU\'U LARAN', lat: -8.573319, lng: 125.617161, location: 'Dili' }, + { cell: 'BNUL1F', sector: 'BNUL#1F', site: 'BECORA NU\'U LARAN', lat: -8.573319, lng: 125.617161, location: 'Dili' }, + { cell: 'BNUL2E', sector: 'BNUL#2', site: 'BECORA NU\'U LARAN', lat: -8.573319, lng: 125.617161, location: 'Dili' }, + { cell: 'BNUL2F', sector: 'BNUL#2F', site: 'BECORA NU\'U LARAN', lat: -8.573319, lng: 125.617161, location: 'Dili' }, + { cell: 'BNUL3E', sector: 'BNUL#3', site: 'BECORA NU\'U LARAN', lat: -8.573319, lng: 125.617161, location: 'Dili' }, + { cell: 'BNUL3F', sector: 'BNUL#3F', site: 'BECORA NU\'U LARAN', lat: -8.573319, lng: 125.617161, location: 'Dili' }, + { cell: 'BNUL4E', sector: 'BNUL#4', site: 'BECORA NU\'U LARAN', lat: -8.573319, lng: 125.617161, location: 'Dili' }, + { cell: 'BNUL4F', sector: 'BNUL#4F', site: 'BECORA NU\'U LARAN', lat: -8.573319, lng: 125.617161, location: 'Dili' }, + { cell: 'BNUL5E', sector: 'BNUL#5', site: 'BECORA NU\'U LARAN', lat: -8.573319, lng: 125.617161, location: 'Dili' }, + { cell: 'BNUL5F', sector: 'BNUL#5F', site: 'BECORA NU\'U LARAN', lat: -8.573319, lng: 125.617161, location: 'Dili' }, + { cell: 'BNUL6E', sector: 'BNUL#6', site: 'BECORA NU\'U LARAN', lat: -8.573319, lng: 125.617161, location: 'Dili' }, + { cell: 'BNUL6F', sector: 'BNUL#6F', site: 'BECORA NU\'U LARAN', lat: -8.573319, lng: 125.617161, location: 'Dili' }, + { cell: 'BORA1E', sector: 'BORA#1', site: 'BEBORA', lat: -8.55652, lng: 125.567234, location: 'Dili' }, + { cell: 'BORA1F', sector: 'BORA#1F', site: 'BEBORA', lat: -8.55652, lng: 125.567234, location: 'Dili' }, + { cell: 'BORA2E', sector: 'BORA#2', site: 'BEBORA', lat: -8.55652, lng: 125.567234, location: 'Dili' }, + { cell: 'BORA2F', sector: 'BORA#2F', site: 'BEBORA', lat: -8.55652, lng: 125.567234, location: 'Dili' }, + { cell: 'BORA3E', sector: 'BORA#3', site: 'BEBORA', lat: -8.55652, lng: 125.567234, location: 'Dili' }, + { cell: 'BORA3F', sector: 'BORA#3F', site: 'BEBORA', lat: -8.55652, lng: 125.567234, location: 'Dili' }, + { cell: 'BORA4E', sector: 'BORA#4E', site: 'BEBORA', lat: -8.55652, lng: 125.567234, location: 'Dili' }, + { cell: 'BORA4F', sector: 'BORA#4F', site: 'BEBORA', lat: -8.55652, lng: 125.567234, location: 'Dili' }, + { cell: 'BORA5E', sector: 'BORA#5E', site: 'BEBORA', lat: -8.55652, lng: 125.567234, location: 'Dili' }, + { cell: 'BORA5F', sector: 'BORA#5F', site: 'BEBORA', lat: -8.55652, lng: 125.567234, location: 'Dili' }, + { cell: 'BORA6E', sector: 'BORA#6E', site: 'BEBORA', lat: -8.55652, lng: 125.567234, location: 'Dili' }, + { cell: 'BORA6F', sector: 'BORA#6F', site: 'BEBORA', lat: -8.55652, lng: 125.567234, location: 'Dili' }, + { cell: 'BTAT1E', sector: 'BTAT#1', site: 'BAIROPITE TAT', lat: -8.558858, lng: 125.561385, location: 'Dili' }, + { cell: 'BTAT1F', sector: 'BTAT#1F', site: 'BAIROPITE TAT', lat: -8.558858, lng: 125.561385, location: 'Dili' }, + { cell: 'BTAT2E', sector: 'BTAT#2', site: 'BAIROPITE TAT', lat: -8.558858, lng: 125.561385, location: 'Dili' }, + { cell: 'BTAT2F', sector: 'BTAT#2F', site: 'BAIROPITE TAT', lat: -8.558858, lng: 125.561385, location: 'Dili' }, + { cell: 'BTAT3E', sector: 'BTAT#3', site: 'BAIROPITE TAT', lat: -8.558858, lng: 125.561385, location: 'Dili' }, + { cell: 'BTAT3F', sector: 'BTAT#3F', site: 'BAIROPITE TAT', lat: -8.558858, lng: 125.561385, location: 'Dili' }, + { cell: 'BTAT4E', sector: 'BTAT#4', site: 'BAIROPITE TAT', lat: -8.558858, lng: 125.561385, location: 'Dili' }, + { cell: 'BTAT4F', sector: 'BTAT#4F', site: 'BAIROPITE TAT', lat: -8.558858, lng: 125.561385, location: 'Dili' }, + { cell: 'BTAT5E', sector: 'BTAT#5', site: 'BAIROPITE TAT', lat: -8.558858, lng: 125.561385, location: 'Dili' }, + { cell: 'BTAT5F', sector: 'BTAT#5F', site: 'BAIROPITE TAT', lat: -8.558858, lng: 125.561385, location: 'Dili' }, + { cell: 'BTAT6E', sector: 'BTAT#6', site: 'BAIROPITE TAT', lat: -8.558858, lng: 125.561385, location: 'Dili' }, + { cell: 'BTAT6F', sector: 'BTAT#6F', site: 'BAIROPITE TAT', lat: -8.558858, lng: 125.561385, location: 'Dili' }, + { cell: 'CACU1E', sector: 'CACU#1', site: 'CACAULIDUM', lat: -8.566511, lng: 125.558621, location: 'Dili' }, + { cell: 'CACU1F', sector: 'CACU#1F', site: 'CACAULIDUM', lat: -8.566511, lng: 125.558621, location: 'Dili' }, + { cell: 'CACU2E', sector: 'CACU#2', site: 'CACAULIDUM', lat: -8.566511, lng: 125.558621, location: 'Dili' }, + { cell: 'CACU2F', sector: 'CACU#2F', site: 'CACAULIDUM', lat: -8.566511, lng: 125.558621, location: 'Dili' }, + { cell: 'CACU3E', sector: 'CACU#3', site: 'CACAULIDUM', lat: -8.566511, lng: 125.558621, location: 'Dili' }, + { cell: 'CACU3F', sector: 'CACU#3F', site: 'CACAULIDUM', lat: -8.566511, lng: 125.558621, location: 'Dili' }, + { cell: 'CACU4E', sector: 'CACU#4', site: 'CACAULIDUM', lat: -8.566511, lng: 125.558621, location: 'Dili' }, + { cell: 'CACU4F', sector: 'CACU#4F', site: 'CACAULIDUM', lat: -8.566511, lng: 125.558621, location: 'Dili' }, + { cell: 'CACU5E', sector: 'CACU#5', site: 'CACAULIDUM', lat: -8.566511, lng: 125.558621, location: 'Dili' }, + { cell: 'CACU5F', sector: 'CACU#5F', site: 'CACAULIDUM', lat: -8.566511, lng: 125.558621, location: 'Dili' }, + { cell: 'CACU6E', sector: 'CACU#6', site: 'CACAULIDUM', lat: -8.566511, lng: 125.558621, location: 'Dili' }, + { cell: 'CACU6F', sector: 'CACU#6F', site: 'CACAULIDUM', lat: -8.566511, lng: 125.558621, location: 'Dili' }, + { cell: 'CAIC1E', sector: 'CAIC#1', site: 'CAICOLI', lat: -8.562981, lng: 125.575436, location: 'Dili' }, + { cell: 'CAIC1F', sector: 'CAIC#1f', site: 'CAICOLI', lat: -8.562981, lng: 125.575436, location: 'Dili' }, + { cell: 'CAIC2E', sector: 'CAIC#2', site: 'CAICOLI', lat: -8.562981, lng: 125.575436, location: 'Dili' }, + { cell: 'CAIC2F', sector: 'CAIC#2F', site: 'CAICOLI', lat: -8.562981, lng: 125.575436, location: 'Dili' }, + { cell: 'CAIC3E', sector: 'CAIC#3', site: 'CAICOLI', lat: -8.562981, lng: 125.575436, location: 'Dili' }, + { cell: 'CAIC3F', sector: 'CAIC#F', site: 'CAICOLI', lat: -8.562981, lng: 125.575436, location: 'Dili' }, + { cell: 'CAIC4E', sector: 'CAIC#4', site: 'CAICOLI', lat: -8.562981, lng: 125.575436, location: 'Dili' }, + { cell: 'CAIC4F', sector: 'CAIC#4F', site: 'CAICOLI', lat: -8.562981, lng: 125.575436, location: 'Dili' }, + { cell: 'CAIC5E', sector: 'CAIC#5', site: 'CAICOLI', lat: -8.562981, lng: 125.575436, location: 'Dili' }, + { cell: 'CAIC5F', sector: 'CAIC#5F', site: 'CAICOLI', lat: -8.562981, lng: 125.575436, location: 'Dili' }, + { cell: 'CAIC6E', sector: 'CAIC#6', site: 'CAICOLI', lat: -8.562981, lng: 125.575436, location: 'Dili' }, + { cell: 'CAIC6F', sector: 'CAIC#6F', site: 'CAICOLI', lat: -8.562981, lng: 125.575436, location: 'Dili' }, + { cell: 'CALI1E', sector: 'CALI#1', site: 'HOTEL CALIFORNIA', lat: -8.543625, lng: 125.61096, location: 'Dili' }, + { cell: 'CALI2E', sector: 'CALI#2', site: 'HOTEL CALIFORNIA', lat: -8.543625, lng: 125.61096, location: 'Dili' }, + { cell: 'CALA1E', sector: 'CALA#1', site: 'CAMEA AILOKLARAN', lat: -8.561831, lng: 125.612114, location: 'Dili' }, + { cell: 'CALA1F', sector: 'CALA#1F', site: 'CAMEA AILOKLARAN', lat: -8.561831, lng: 125.612114, location: 'Dili' }, + { cell: 'CALA2E', sector: 'CALA#2', site: 'CAMEA AILOKLARAN', lat: -8.561831, lng: 125.612114, location: 'Dili' }, + { cell: 'CALA2F', sector: 'CALA#2F', site: 'CAMEA AILOKLARAN', lat: -8.561831, lng: 125.612114, location: 'Dili' }, + { cell: 'CALA3E', sector: 'CALA#3', site: 'CAMEA AILOKLARAN', lat: -8.561831, lng: 125.612114, location: 'Dili' }, + { cell: 'CALA3F', sector: 'CALA#3F', site: 'CAMEA AILOKLARAN', lat: -8.561831, lng: 125.612114, location: 'Dili' }, + { cell: 'CALA4E', sector: 'CALA#4', site: 'CAMEA AILOKLARAN', lat: -8.561831, lng: 125.612114, location: 'Dili' }, + { cell: 'CALA4F', sector: 'CALA#4F', site: 'CAMEA AILOKLARAN', lat: -8.561831, lng: 125.612114, location: 'Dili' }, + { cell: 'CALA5E', sector: 'CALA#5', site: 'CAMEA AILOKLARAN', lat: -8.561831, lng: 125.612114, location: 'Dili' }, + { cell: 'CALA5F', sector: 'CALA#5F', site: 'CAMEA AILOKLARAN', lat: -8.561831, lng: 125.612114, location: 'Dili' }, + { cell: 'CALA6E', sector: 'CALA#6', site: 'CAMEA AILOKLARAN', lat: -8.561831, lng: 125.612114, location: 'Dili' }, + { cell: 'CALA6F', sector: 'CALA#6F', site: 'CAMEA AILOKLARAN', lat: -8.561831, lng: 125.612114, location: 'Dili' }, + { cell: 'CMEA1E', sector: 'CMEA#1', site: 'CAMEA BEDOIS', lat: -8.564444, lng: 125.617789, location: 'Dili' }, + { cell: 'CMEA1F', sector: 'CMEA#1F', site: 'CAMEA BEDOIS', lat: -8.564444, lng: 125.617789, location: 'Dili' }, + { cell: 'CMEA2E', sector: 'CMEA#2', site: 'CAMEA BEDOIS', lat: -8.564444, lng: 125.617789, location: 'Dili' }, + { cell: 'CMEA2F', sector: 'CMEA#2F', site: 'CAMEA BEDOIS', lat: -8.564444, lng: 125.617789, location: 'Dili' }, + { cell: 'CMEA3E', sector: 'CMEA#3', site: 'CAMEA BEDOIS', lat: -8.564444, lng: 125.617789, location: 'Dili' }, + { cell: 'CMEA3F', sector: 'CMEA#3F', site: 'CAMEA BEDOIS', lat: -8.564444, lng: 125.617789, location: 'Dili' }, + { cell: 'CMEA4E', sector: 'CMEA#4', site: 'CAMEA BEDOIS', lat: -8.564444, lng: 125.617789, location: 'Dili' }, + { cell: 'CMEA4F', sector: 'CMEA#4F', site: 'CAMEA BEDOIS', lat: -8.564444, lng: 125.617789, location: 'Dili' }, + { cell: 'CMEA5E', sector: 'CMEA#5', site: 'CAMEA BEDOIS', lat: -8.564444, lng: 125.617789, location: 'Dili' }, + { cell: 'CMEA5F', sector: 'CMEA#5F', site: 'CAMEA BEDOIS', lat: -8.564444, lng: 125.617789, location: 'Dili' }, + { cell: 'CMEA6E', sector: 'CMEA#6', site: 'CAMEA BEDOIS', lat: -8.564444, lng: 125.617789, location: 'Dili' }, + { cell: 'CMEA6F', sector: 'CMEA#6F', site: 'CAMEA BEDOIS', lat: -8.564444, lng: 125.617789, location: 'Dili' }, + { cell: 'CBDT1E', sector: 'CBDT#1', site: 'TIMOR PLAZA CBD2', lat: -8.552789, lng: 125.542079, location: 'Dili' }, + { cell: 'CBDT2E', sector: 'CBDT#2', site: 'TIMOR PLAZA CBD2', lat: -8.552789, lng: 125.542079, location: 'Dili' }, + { cell: 'CBDT3E (Split CGR)', sector: 'CBDT#3', site: 'TIMOR PLAZA CBD2', lat: -8.548729, lng: 125.542886, location: 'Dili' }, + { cell: 'CBDT4E', sector: 'CBDT#4', site: 'TIMOR PLAZA CBD2', lat: -8.552789, lng: 125.542079, location: 'Dili' }, + { cell: 'CBDT5E', sector: 'CBDT#5', site: 'TIMOR PLAZA CBD2', lat: -8.552789, lng: 125.542079, location: 'Dili' }, + { cell: 'CBDT6E (Split CGR)', sector: 'CBDT#6', site: 'TIMOR PLAZA CBD2', lat: -8.548729, lng: 125.542886, location: 'Dili' }, + { cell: 'CDTR1E', sector: 'CDTR#1', site: 'CAREIRA DE TIRRO', lat: -8.564653, lng: 125.595349, location: 'Dili' }, + { cell: 'CDTR2E', sector: 'CDTR#2', site: 'CAREIRA DE TIRRO', lat: -8.564653, lng: 125.595349, location: 'Dili' }, + { cell: 'CDTR3E', sector: 'CDTR#3', site: 'CAREIRA DE TIRRO', lat: -8.564653, lng: 125.595349, location: 'Dili' }, + { cell: 'CFJJ1E', sector: 'CFJJ#1', site: 'CENTRO FORMAÇÃO JURÍDICO E JURICIÁRIO', lat: -8.559916, lng: 125.575097, location: 'Dili' }, + { cell: 'CFJJ1F', sector: 'CFJJ#1F', site: 'CENTRO FORMAÇÃO JURÍDICO E JURICIÁRIO', lat: -8.559916, lng: 125.575097, location: 'Dili' }, + { cell: 'CFJJ2E', sector: 'CFJJ#2', site: 'CENTRO FORMAÇÃO JURÍDICO E JURICIÁRIO', lat: -8.559916, lng: 125.575097, location: 'Dili' }, + { cell: 'CFJJ2F', sector: 'CFJJ#2F', site: 'CENTRO FORMAÇÃO JURÍDICO E JURICIÁRIO', lat: -8.559916, lng: 125.575097, location: 'Dili' }, + { cell: 'CFJJ3E', sector: 'CFJJ#3', site: 'CENTRO FORMAÇÃO JURÍDICO E JURICIÁRIO', lat: -8.559916, lng: 125.575097, location: 'Dili' }, + { cell: 'CFJJ3F', sector: 'CFJJ#3F', site: 'CENTRO FORMAÇÃO JURÍDICO E JURICIÁRIO', lat: -8.559916, lng: 125.575097, location: 'Dili' }, + { cell: 'CFJJ4E', sector: 'CFJJ#4', site: 'CENTRO FORMAÇÃO JURÍDICO E JURICIÁRIO', lat: -8.559916, lng: 125.575097, location: 'Dili' }, + { cell: 'CFJJ4F', sector: 'CFJJ#4F', site: 'CENTRO FORMAÇÃO JURÍDICO E JURICIÁRIO', lat: -8.559916, lng: 125.575097, location: 'Dili' }, + { cell: 'CFJJ5E', sector: 'CFJJ#5', site: 'CENTRO FORMAÇÃO JURÍDICO E JURICIÁRIO', lat: -8.559916, lng: 125.575097, location: 'Dili' }, + { cell: 'CFJJ5F', sector: 'CFJJ#5F', site: 'CENTRO FORMAÇÃO JURÍDICO E JURICIÁRIO', lat: -8.559916, lng: 125.575097, location: 'Dili' }, + { cell: 'CFJJ6E', sector: 'CFJJ#6', site: 'CENTRO FORMAÇÃO JURÍDICO E JURICIÁRIO', lat: -8.559916, lng: 125.575097, location: 'Dili' }, + { cell: 'CFJJ6F', sector: 'CFJJ#6F', site: 'CENTRO FORMAÇÃO JURÍDICO E JURICIÁRIO', lat: -8.559916, lng: 125.575097, location: 'Dili' }, + { cell: 'COLM1E', sector: 'COLM#1', site: 'COLMERA', lat: -8.557754, lng: 125.57179, location: 'Dili' }, + { cell: 'COLM2E', sector: 'COLM#2', site: 'COLMERA', lat: -8.557754, lng: 125.57179, location: 'Dili' }, + { cell: 'COLM3E', sector: 'COLM#3', site: 'COLMERA', lat: -8.557754, lng: 125.57179, location: 'Dili' }, + { cell: 'COLM4E', sector: 'COLM#4', site: 'COLMERA', lat: -8.557754, lng: 125.57179, location: 'Dili' }, + { cell: 'COLM5E', sector: 'COLM#5', site: 'COLMERA', lat: -8.557754, lng: 125.57179, location: 'Dili' }, + { cell: 'COLM6E', sector: 'COLM#6', site: 'COLMERA', lat: -8.557754, lng: 125.57179, location: 'Dili' }, + { cell: 'COMR1E', sector: 'COMR#1', site: 'COMORO', lat: -8.556842, lng: 125.537612, location: 'Dili' }, + { cell: 'COMR1F', sector: 'COMR#1F', site: 'COMORO', lat: -8.556842, lng: 125.537612, location: 'Dili' }, + { cell: 'COMR2E', sector: 'COMR#2', site: 'COMORO', lat: -8.556842, lng: 125.537612, location: 'Dili' }, + { cell: 'COMR2F', sector: 'COMR#2F', site: 'COMORO', lat: -8.556842, lng: 125.537612, location: 'Dili' }, + { cell: 'COMR3E', sector: 'COMR#3', site: 'COMORO', lat: -8.556842, lng: 125.537612, location: 'Dili' }, + { cell: 'COMR3F', sector: 'COMR#3F', site: 'COMORO', lat: -8.556842, lng: 125.537612, location: 'Dili' }, + { cell: 'COMR4E', sector: 'COMR#4', site: 'COMORO', lat: -8.556842, lng: 125.537612, location: 'Dili' }, + { cell: 'COMR4F', sector: 'COMR4F', site: 'COMORO', lat: -8.556842, lng: 125.537612, location: 'Dili' }, + { cell: 'COMR5E', sector: 'COMR#5', site: 'COMORO', lat: -8.556842, lng: 125.537612, location: 'Dili' }, + { cell: 'COMR5F', sector: 'COMR5F', site: 'COMORO', lat: -8.556842, lng: 125.537612, location: 'Dili' }, + { cell: 'COMR6E', sector: 'COMR#6', site: 'COMORO', lat: -8.556842, lng: 125.537612, location: 'Dili' }, + { cell: 'COMR6F', sector: 'COMR6F', site: 'COMORO', lat: -8.556842, lng: 125.537612, location: 'Dili' }, + { cell: 'CRUZ1E', sector: 'CRUZ#1', site: 'SANTA CRUZ', lat: -8.559771, lng: 125.586388, location: 'Dili' }, + { cell: 'CRUZ1F', sector: 'CRUZ#1F', site: 'SANTA CRUZ', lat: -8.559771, lng: 125.586388, location: 'Dili' }, + { cell: 'CRUZ2E', sector: 'CRUZ#2', site: 'SANTA CRUZ', lat: -8.559771, lng: 125.586388, location: 'Dili' }, + { cell: 'CRUZ2F', sector: 'CRUZ#2F', site: 'SANTA CRUZ', lat: -8.559771, lng: 125.586388, location: 'Dili' }, + { cell: 'CRUZ3E', sector: 'CRUZ#3', site: 'SANTA CRUZ', lat: -8.559771, lng: 125.586388, location: 'Dili' }, + { cell: 'CRUZ3F', sector: 'CRUZ#3F', site: 'SANTA CRUZ', lat: -8.559771, lng: 125.586388, location: 'Dili' }, + { cell: 'CRUZ4E', sector: 'CRUZ#4', site: 'SANTA CRUZ', lat: -8.559771, lng: 125.586388, location: 'Dili' }, + { cell: 'CRUZ4F', sector: 'CRUZ#4F', site: 'SANTA CRUZ', lat: -8.559771, lng: 125.586388, location: 'Dili' }, + { cell: 'CRUZ5E', sector: 'CRUZ#5', site: 'SANTA CRUZ', lat: -8.559771, lng: 125.586388, location: 'Dili' }, + { cell: 'CRUZ5F', sector: 'CRUZ#5F', site: 'SANTA CRUZ', lat: -8.559771, lng: 125.586388, location: 'Dili' }, + { cell: 'CRUZ6E', sector: 'CRUZ#6', site: 'SANTA CRUZ', lat: -8.559771, lng: 125.586388, location: 'Dili' }, + { cell: 'CRUZ6F', sector: 'CRUZ#6F', site: 'SANTA CRUZ', lat: -8.559771, lng: 125.586388, location: 'Dili' }, + { cell: 'CUCA1E', sector: 'CUCA#1', site: 'CUCAHUN CALIFORNIA', lat: -8.560121, lng: 125.593541, location: 'Dili' }, + { cell: 'CUCA1F', sector: 'CUCA#1F', site: 'CUCAHUN CALIFORNIA', lat: -8.560121, lng: 125.593541, location: 'Dili' }, + { cell: 'CUCA2E', sector: 'CUCA#2', site: 'CUCAHUN CALIFORNIA', lat: -8.560121, lng: 125.593541, location: 'Dili' }, + { cell: 'CUCA2F', sector: 'CUCA#2F', site: 'CUCAHUN CALIFORNIA', lat: -8.560121, lng: 125.593541, location: 'Dili' }, + { cell: 'CUCA3E', sector: 'CUCA#3', site: 'CUCAHUN CALIFORNIA', lat: -8.560121, lng: 125.593541, location: 'Dili' }, + { cell: 'CUCA3F', sector: 'CUCA#3F', site: 'CUCAHUN CALIFORNIA', lat: -8.560121, lng: 125.593541, location: 'Dili' }, + { cell: 'CUCA4E', sector: 'CUCA#4', site: 'CULUHUN CALIFORNIA', lat: -8.560121, lng: 125.593541, location: 'Dili' }, + { cell: 'CUCA4F', sector: 'CUCA#4F', site: 'CULUHUN CALIFORNIA', lat: -8.560121, lng: 125.593541, location: 'Dili' }, + { cell: 'CUCA5E', sector: 'CUCA#5', site: 'CULUHUN CALIFORNIA', lat: -8.560121, lng: 125.593541, location: 'Dili' }, + { cell: 'CUCA5F', sector: 'CUCA#5F', site: 'CULUHUN CALIFORNIA', lat: -8.560121, lng: 125.593541, location: 'Dili' }, + { cell: 'CUCA6E', sector: 'CUCA#6', site: 'CULUHUN CALIFORNIA', lat: -8.560121, lng: 125.593541, location: 'Dili' }, + { cell: 'CUCA6F', sector: 'CUCA#6F', site: 'CULUHUN CALIFORNIA', lat: -8.560121, lng: 125.593541, location: 'Dili' }, + { cell: 'CVAR1E', sector: 'CVAR#1', site: 'CASNAVAR', lat: -8.600231, lng: 125.530978, location: 'DILI' }, + { cell: 'CVAR2E', sector: 'CVAR#2', site: 'CASNAVAR', lat: -8.600231, lng: 125.530978, location: 'DILI' }, + { cell: 'CVAR3E', sector: 'CVAR#3', site: 'CASNAVAR', lat: -8.600231, lng: 125.530978, location: 'DILI' }, + { cell: 'DLTA1E', sector: 'DLTA#1', site: 'DELTA', lat: -8.559742, lng: 125.543133, location: 'Dili' }, + { cell: 'DLTA4E', sector: 'DLTA#4E', site: 'DELTA', lat: -8.559742, lng: 125.543133, location: 'Dili' }, + { cell: 'DLTA2E', sector: 'DLTA#2', site: 'DELTA', lat: -8.559742, lng: 125.543133, location: 'Dili' }, + { cell: 'DLTA5E', sector: 'DLTA#5E', site: 'DELTA', lat: -8.559742, lng: 125.543133, location: 'Dili' }, + { cell: 'DLTA3E', sector: 'DLTA#3', site: 'DELTA', lat: -8.559742, lng: 125.543133, location: 'Dili' }, + { cell: 'DLTA6E', sector: 'DLTA#6E', site: 'DELTA', lat: -8.559742, lng: 125.543133, location: 'Dili' }, + { cell: 'DUYU1E', sector: 'DUYU#1', site: 'DUYUNG', lat: -8.53132, lng: 125.75596, location: 'Dili (District)' }, + { cell: 'DUYU2E', sector: 'DUYU#2', site: 'DUYUNG', lat: -8.53132, lng: 125.75596, location: 'Dili (District)' }, + { cell: 'ETO1E', sector: 'ETO#1', site: 'ETO', lat: -8.553875, lng: 125.570303, location: 'Dili' }, + { cell: 'ETO1F', sector: 'ETO#1F', site: 'ETO', lat: -8.553875, lng: 125.570303, location: 'Dili' }, + { cell: 'ETO2E', sector: 'ETO#2', site: 'ETO', lat: -8.553875, lng: 125.570303, location: 'Dili' }, + { cell: 'ETO2F', sector: 'ETO#2F', site: 'ETO', lat: -8.553875, lng: 125.570303, location: 'Dili' }, + { cell: 'ETO3E', sector: 'ETO#3', site: 'ETO', lat: -8.553875, lng: 125.570303, location: 'Dili' }, + { cell: 'ETO3F', sector: 'ETO#F', site: 'ETO', lat: -8.553875, lng: 125.570303, location: 'Dili' }, + { cell: 'ETO4E', sector: 'ETO#4', site: 'ETO', lat: -8.553875, lng: 125.570303, location: 'Dili' }, + { cell: 'ETO4F', sector: 'ETO#4F', site: 'ETO', lat: -8.553875, lng: 125.570303, location: 'Dili' }, + { cell: 'ETO5E', sector: 'ETO#5', site: 'ETO', lat: -8.553875, lng: 125.570303, location: 'Dili' }, + { cell: 'ETO5E', sector: 'ETO#5F', site: 'ETO', lat: -8.553875, lng: 125.570303, location: 'Dili' }, + { cell: 'ETO6E', sector: 'ETO#6', site: 'ETO', lat: -8.553875, lng: 125.570303, location: 'Dili' }, + { cell: 'ETO6F', sector: 'ETO#6F', site: 'ETO', lat: -8.553875, lng: 125.570303, location: 'Dili' }, + { cell: 'EWSD1E', sector: 'EWSD#1', site: 'EWSD', lat: -8.55893, lng: 125.579062, location: 'Dili' }, + { cell: 'EWSD1F', sector: 'EWSD#1F', site: 'EWSD', lat: -8.55893, lng: 125.579062, location: 'Dili' }, + { cell: 'EWSD2E', sector: 'EWSD#2', site: 'EWSD', lat: -8.55893, lng: 125.579062, location: 'Dili' }, + { cell: 'EWSD2F', sector: 'EWSD#2F', site: 'EWSD', lat: -8.55893, lng: 125.579062, location: 'Dili' }, + { cell: 'EWSD3E', sector: 'EWSD#3', site: 'EWSD', lat: -8.55893, lng: 125.579062, location: 'Dili' }, + { cell: 'EWSD3F', sector: 'EWSD#3F', site: 'EWSD', lat: -8.55893, lng: 125.579062, location: 'Dili' }, + { cell: 'EWSD4E', sector: 'EWSD4E', site: 'EWSD', lat: -8.55893, lng: 125.579062, location: 'Dili' }, + { cell: 'EWSD4F', sector: 'EWSD4F', site: 'EWSD', lat: -8.55893, lng: 125.579062, location: 'Dili' }, + { cell: 'EWSD5E', sector: 'EWSD5E', site: 'EWSD', lat: -8.55893, lng: 125.579062, location: 'Dili' }, + { cell: 'EWSD5F', sector: 'EWSD5F', site: 'EWSD', lat: -8.55893, lng: 125.579062, location: 'Dili' }, + { cell: 'EWSD6E', sector: 'EWSD6E', site: 'EWSD', lat: -8.55893, lng: 125.579062, location: 'Dili' }, + { cell: 'EWSD6F', sector: 'EWSD6F', site: 'EWSD', lat: -8.55893, lng: 125.579062, location: 'Dili' }, + { cell: 'FATA1E', sector: 'FATA#1', site: 'FATUMETA', lat: -8.564751, lng: 125.553508, location: 'Dili' }, + { cell: 'FATA1F', sector: 'FATA#1F', site: 'FATUMETA', lat: -8.564751, lng: 125.553508, location: 'Dili' }, + { cell: 'FATA2E', sector: 'FATA#2', site: 'FATUMETA', lat: -8.564751, lng: 125.553508, location: 'Dili' }, + { cell: 'FATA2F', sector: 'FATA#2F', site: 'FATUMETA', lat: -8.564751, lng: 125.553508, location: 'Dili' }, + { cell: 'FATA3E', sector: 'FATA#3', site: 'FATUMETA', lat: -8.564751, lng: 125.553508, location: 'Dili' }, + { cell: 'FATA3F', sector: 'FATA#3F', site: 'FATUMETA', lat: -8.564751, lng: 125.553508, location: 'Dili' }, + { cell: 'FATA4E', sector: 'FATA#4', site: 'FATUMETA', lat: -8.564751, lng: 125.553508, location: 'Dili' }, + { cell: 'FATA4F', sector: 'FATA#4F', site: 'FATUMETA', lat: -8.564751, lng: 125.553508, location: 'Dili' }, + { cell: 'FATA5E', sector: 'FATA#5', site: 'FATUMETA', lat: -8.564751, lng: 125.553508, location: 'Dili' }, + { cell: 'FATA5F', sector: 'FATA#5F', site: 'FATUMETA', lat: -8.564751, lng: 125.553508, location: 'Dili' }, + { cell: 'FATA6E', sector: 'FATA#6', site: 'FATUMETA', lat: -8.564751, lng: 125.553508, location: 'Dili' }, + { cell: 'FATA6F', sector: 'FATA#6F', site: 'FATUMETA', lat: -8.564751, lng: 125.553508, location: 'Dili' }, + { cell: 'FATU1E', sector: 'FATU#1', site: 'FATUHADA', lat: -8.556222, lng: 125.553624, location: 'Dili' }, + { cell: 'FATU1F', sector: 'FATU#1', site: 'FATUHADA', lat: -8.556222, lng: 125.553624, location: 'Dili' }, + { cell: 'FATU2E', sector: 'FATU#2', site: 'FATUHADA', lat: -8.556222, lng: 125.553624, location: 'Dili' }, + { cell: 'FATU2F', sector: 'FATU#2F', site: 'FATUHADA', lat: -8.556222, lng: 125.553624, location: 'Dili' }, + { cell: 'FATU3E', sector: 'FATU#3', site: 'FATUHADA', lat: -8.556222, lng: 125.553624, location: 'Dili' }, + { cell: 'FATU3F', sector: 'FATU#3F', site: 'FATUHADA', lat: -8.556222, lng: 125.553624, location: 'Dili' }, + { cell: 'FATU4E', sector: 'FATU#3', site: 'FATUHADA', lat: -8.556222, lng: 125.553624, location: 'Dili' }, + { cell: 'FATU4F', sector: 'FATU#3F', site: 'FATUHADA', lat: -8.556222, lng: 125.553624, location: 'Dili' }, + { cell: 'FATU5E', sector: 'FATU#5', site: 'FATUHADA', lat: -8.556222, lng: 125.553624, location: 'Dili' }, + { cell: 'FATU5F', sector: 'FATU#5F', site: 'FATUHADA', lat: -8.556222, lng: 125.553624, location: 'Dili' }, + { cell: 'FATU6E', sector: 'FATU#6', site: 'FATUHADA', lat: -8.556222, lng: 125.553624, location: 'Dili' }, + { cell: 'FATU6F', sector: 'FATU#6F', site: 'FATUHADA', lat: -8.556222, lng: 125.553624, location: 'Dili' }, + { cell: 'FAMA1E', sector: 'FAMA#7', site: 'FATUHADA (iMacro)', lat: -8.554103, lng: 125.555887, location: 'Dili' }, + { cell: 'FAMA4E', sector: 'FAMA#17', site: 'FATUHADA (iMacro)', lat: -8.554103, lng: 125.555887, location: 'Dili' }, + { cell: 'FAMA2E', sector: 'FAMA#8', site: 'FATUHADA (iMacro)', lat: -8.554103, lng: 125.555887, location: 'Dili' }, + { cell: 'FAMA5E', sector: 'FAMA#18', site: 'FATUHADA (iMacro)', lat: -8.554103, lng: 125.555887, location: 'Dili' }, + { cell: 'FOME1E', sector: 'FOME#1', site: 'FOMENTO', lat: -8.56461, lng: 125.534242, location: 'Dili' }, + { cell: 'FOME1F', sector: 'FOME#1F', site: 'FOMENTO', lat: -8.56461, lng: 125.534242, location: 'Dili' }, + { cell: 'FOME2E', sector: 'FOME#2', site: 'FOMENTO', lat: -8.56461, lng: 125.534242, location: 'Dili' }, + { cell: 'FOME2F', sector: 'FOME#2F', site: 'FOMENTO', lat: -8.56461, lng: 125.534242, location: 'Dili' }, + { cell: 'FOME3E', sector: 'FOME#3', site: 'FOMENTO', lat: -8.56461, lng: 125.534242, location: 'Dili' }, + { cell: 'FOME3F', sector: 'FOME#3F', site: 'FOMENTO', lat: -8.56461, lng: 125.534242, location: 'Dili' }, + { cell: 'FOME4E', sector: 'FOME#4', site: 'FOMENTO', lat: -8.56461, lng: 125.534242, location: 'Dili' }, + { cell: 'FOME4F', sector: 'FOME#4F', site: 'FOMENTO', lat: -8.56461, lng: 125.534242, location: 'Dili' }, + { cell: 'FOME5E', sector: 'FOME#5', site: 'FOMENTO', lat: -8.56461, lng: 125.534242, location: 'Dili' }, + { cell: 'FOME5F', sector: 'FOME#5F', site: 'FOMENTO', lat: -8.56461, lng: 125.534242, location: 'Dili' }, + { cell: 'FOME6E', sector: 'FOME#6', site: 'FOMENTO', lat: -8.56461, lng: 125.534242, location: 'Dili' }, + { cell: 'FOME6F', sector: 'FOME#6F', site: 'FOMENTO', lat: -8.56461, lng: 125.534242, location: 'Dili' }, + { cell: 'FOTE1E', sector: 'FOTE#1', site: 'FOMENTO III', lat: -8.5621, lng: 125.5384, location: 'Dili' }, + { cell: 'FOTE1F', sector: 'FOTE#1F', site: 'FOMENTO III', lat: -8.5621, lng: 125.5384, location: 'Dili' }, + { cell: 'FOTE2E', sector: 'FOTE#2', site: 'FOMENTO III', lat: -8.5621, lng: 125.5384, location: 'Dili' }, + { cell: 'FOTE2F', sector: 'FOTE#2F', site: 'FOMENTO III', lat: -8.5621, lng: 125.5384, location: 'Dili' }, + { cell: 'FOTE3E', sector: 'FOTE#3', site: 'FOMENTO III', lat: -8.5621, lng: 125.5384, location: 'Dili' }, + { cell: 'FOTE3F', sector: 'FOTE#3F', site: 'FOMENTO III', lat: -8.5621, lng: 125.5384, location: 'Dili' }, + { cell: 'FOTE4E', sector: 'FOTE#4', site: 'FOMENTO III', lat: -8.5621, lng: 125.5384, location: 'Dili' }, + { cell: 'FOTE4F', sector: 'FOTE#4F', site: 'FOMENTO III', lat: -8.5621, lng: 125.5384, location: 'Dili' }, + { cell: 'FOTE5E', sector: 'FOTE#5', site: 'FOMENTO III', lat: -8.5621, lng: 125.5384, location: 'Dili' }, + { cell: 'FOTE5F', sector: 'FOTE#5F', site: 'FOMENTO III', lat: -8.5621, lng: 125.5384, location: 'Dili' }, + { cell: 'FOTE6E', sector: 'FOTE#6', site: 'FOMENTO III', lat: -8.5621, lng: 125.5384, location: 'Dili' }, + { cell: 'FOTE6F', sector: 'FOTE#6F', site: 'FOMENTO III', lat: -8.5621, lng: 125.5384, location: 'Dili' }, + { cell: 'GFOR1E', sector: 'GFOR#1', site: 'GRICENFOR', lat: -8.554321, lng: 125.582925, location: 'Dili' }, + { cell: 'GFOR1F', sector: 'GFOR#1F', site: 'GRICENFOR', lat: -8.554321, lng: 125.582925, location: 'Dili' }, + { cell: 'GFOR2E', sector: 'GFOR#2', site: 'GRICENFOR', lat: -8.554321, lng: 125.582925, location: 'Dili' }, + { cell: 'GFOR2F', sector: 'GFOR#2F', site: 'GRICENFOR', lat: -8.554321, lng: 125.582925, location: 'Dili' }, + { cell: 'GFOR3E', sector: 'GFOR#3', site: 'GRICENFOR', lat: -8.554321, lng: 125.582925, location: 'Dili' }, + { cell: 'GFOR3F', sector: 'GFOR#3F', site: 'GRICENFOR', lat: -8.554321, lng: 125.582925, location: 'Dili' }, + { cell: 'GFOR4E', sector: 'GFOR#4', site: 'GRICENFOR', lat: -8.554321, lng: 125.582925, location: 'Dili' }, + { cell: 'GFOR4F', sector: 'GFOR#4F', site: 'GRICENFOR', lat: -8.554321, lng: 125.582925, location: 'Dili' }, + { cell: 'GFOR5E', sector: 'GFOR#5', site: 'GRICENFOR', lat: -8.554321, lng: 125.582925, location: 'Dili' }, + { cell: 'GFOR5F', sector: 'GFOR#5F', site: 'GRICENFOR', lat: -8.554321, lng: 125.582925, location: 'Dili' }, + { cell: 'GFOR6E', sector: 'GFOR#6', site: 'GRICENFOR', lat: -8.554321, lng: 125.582925, location: 'Dili' }, + { cell: 'GFOR6F', sector: 'GFOR#6F', site: 'GRICENFOR', lat: -8.554321, lng: 125.582925, location: 'Dili' }, + { cell: 'GMOR1E', sector: 'GMOR#1', site: 'GARDAMOR', lat: -8.553605, lng: 125.550514, location: 'Dili' }, + { cell: 'GMOR1F', sector: 'GMOR#1F', site: 'GARDAMOR', lat: -8.553605, lng: 125.550514, location: 'Dili' }, + { cell: 'GMOR2E', sector: 'GMOR#2', site: 'GARDAMOR', lat: -8.553605, lng: 125.550514, location: 'Dili' }, + { cell: 'GMOR2F', sector: 'GMOR#2F', site: 'GARDAMOR', lat: -8.553605, lng: 125.550514, location: 'Dili' }, + { cell: 'GMOR3E', sector: 'GMOR#3', site: 'GARDAMOR', lat: -8.553605, lng: 125.550514, location: 'Dili' }, + { cell: 'GMOR3F', sector: 'GMOR#3F', site: 'GARDAMOR', lat: -8.553605, lng: 125.550514, location: 'Dili' }, + { cell: 'GMOR4E', sector: 'GMOR#4', site: 'GARDAMOR', lat: -8.553605, lng: 125.550514, location: 'Dili' }, + { cell: 'GMOR4F', sector: 'GMOR#4F', site: 'GARDAMOR', lat: -8.553605, lng: 125.550514, location: 'Dili' }, + { cell: 'GMOR5E', sector: 'GMOR#5', site: 'GARDAMOR', lat: -8.553605, lng: 125.550514, location: 'Dili' }, + { cell: 'GMOR5F', sector: 'GMOR#5F', site: 'GARDAMOR', lat: -8.553605, lng: 125.550514, location: 'Dili' }, + { cell: 'GMOR6E', sector: 'GMOR#6', site: 'GARDAMOR', lat: -8.553605, lng: 125.550514, location: 'Dili' }, + { cell: 'GMOR6F', sector: 'GMOR#6F', site: 'GARDAMOR', lat: -8.553605, lng: 125.550514, location: 'Dili' }, + { cell: 'GOTA1E', sector: 'GOTA#1', site: 'GOLGOTA', lat: -8.555048, lng: 125.518629, location: 'Dili' }, + { cell: 'GOTA1F', sector: 'GOTA#1F', site: 'GOLGOTA', lat: -8.555048, lng: 125.518629, location: 'Dili' }, + { cell: 'GOTA2E', sector: 'GOTA#2', site: 'GOLGOTA', lat: -8.555048, lng: 125.518629, location: 'Dili' }, + { cell: 'GOTA2F', sector: 'GOTA#2F', site: 'GOLGOTA', lat: -8.555048, lng: 125.518629, location: 'Dili' }, + { cell: 'GOTA3E', sector: 'GOTA#3', site: 'GOLGOTA', lat: -8.555048, lng: 125.518629, location: 'Dili' }, + { cell: 'GOTA3F', sector: 'GOTA#3F', site: 'GOLGOTA', lat: -8.555048, lng: 125.518629, location: 'Dili' }, + { cell: 'GOTA4E', sector: 'GOTA#4', site: 'GOLGOTA', lat: -8.555048, lng: 125.518629, location: 'Dili' }, + { cell: 'GOTA4F', sector: 'GOTA#4F', site: 'GOLGOTA', lat: -8.555048, lng: 125.518629, location: 'Dili' }, + { cell: 'GOTA5E', sector: 'GOTA#5', site: 'GOLGOTA', lat: -8.555048, lng: 125.518629, location: 'Dili' }, + { cell: 'GOTA5F', sector: 'GOTA#5F', site: 'GOLGOTA', lat: -8.555048, lng: 125.518629, location: 'Dili' }, + { cell: 'GOTA6E', sector: 'GOTA#6', site: 'GOLGOTA', lat: -8.555048, lng: 125.518629, location: 'Dili' }, + { cell: 'GOTA6F', sector: 'GOTA#6F', site: 'GOLGOTA', lat: -8.555048, lng: 125.518629, location: 'Dili' }, + { cell: 'HACA1E', sector: 'HACA#1', site: 'HERA ACANUNO', lat: -8.554865, lng: 125.652393, location: 'Dili (District)' }, + { cell: 'HACA1F', sector: 'HACA1F', site: 'HERA ACANUNO', lat: -8.554865, lng: 125.652393, location: 'Dili (District)' }, + { cell: 'HACA2E', sector: 'HACA#2', site: 'HERA ACANUNO', lat: -8.554865, lng: 125.652393, location: 'Dili (District)' }, + { cell: 'HACA2F', sector: 'HACA2F', site: 'HERA ACANUNO', lat: -8.554865, lng: 125.652393, location: 'Dili (District)' }, + { cell: 'HACA3E', sector: 'HACA#3', site: 'HERA ACANUNO', lat: -8.554865, lng: 125.652393, location: 'Dili (District)' }, + { cell: 'HACA3F', sector: 'HACA3F', site: 'HERA ACANUNO', lat: -8.554865, lng: 125.652393, location: 'Dili (District)' }, + { cell: 'HACA4E', sector: 'HACA4E', site: 'HERA ACANUNO', lat: -8.554865, lng: 125.652393, location: 'Dili (District)' }, + { cell: 'HACA4F', sector: 'HACA4F', site: 'HERA ACANUNO', lat: -8.554865, lng: 125.652393, location: 'Dili (District)' }, + { cell: 'HACA5E', sector: 'HACA5E', site: 'HERA ACANUNO', lat: -8.554865, lng: 125.652393, location: 'Dili (District)' }, + { cell: 'HACA5F', sector: 'HACA5F', site: 'HERA ACANUNO', lat: -8.554865, lng: 125.652393, location: 'Dili (District)' }, + { cell: 'HACA6E', sector: 'HACA6E', site: 'HERA ACANUNO', lat: -8.554865, lng: 125.652393, location: 'Dili (District)' }, + { cell: 'HACA6F', sector: 'HACA6F', site: 'HERA ACANUNO', lat: -8.554865, lng: 125.652393, location: 'Dili (District)' }, + { cell: 'HALA4E', sector: 'HALA#4', site: 'HERA AILOKLARAN', lat: -8.5301, lng: 125.665, location: 'DILI (Distric)' }, + { cell: 'HALA5E', sector: 'HALA#5', site: 'HERA AILOKLARAN', lat: -8.5301, lng: 125.665, location: 'DILI (Distric)' }, + { cell: 'HALA6E', sector: 'HALA#6', site: 'HERA AILOKLARAN', lat: -8.5301, lng: 125.665, location: 'DILI (Distric)' }, + { cell: 'HERA1E', sector: 'HERA#1', site: 'HERA', lat: -8.545247, lng: 125.673123, location: 'Dili (District)' }, + { cell: 'HERA2E ', sector: 'HERA#2', site: 'HERA', lat: -8.545247, lng: 125.673123, location: 'Dili (District)' }, + { cell: 'HERA3E', sector: 'HERA#3', site: 'HERA', lat: -8.545247, lng: 125.673123, location: 'Dili (District)' }, + { cell: 'HETE1E', sector: 'HETE1E', site: 'HERA TEMPORARIO', lat: -8.559034, lng: 125.645948, location: 'Dili' }, + { cell: 'HETE1F', sector: 'HETE1F', site: 'HERA TEMPORARIO', lat: -8.559034, lng: 125.645948, location: 'Dili' }, + { cell: 'HETE2E', sector: 'HETE2E', site: 'HERA TEMPORARIO', lat: -8.559034, lng: 125.645948, location: 'Dili' }, + { cell: 'HETE2F', sector: 'HETE2F', site: 'HERA TEMPORARIO', lat: -8.559034, lng: 125.645948, location: 'Dili' }, + { cell: 'HETE3E', sector: 'HETE3E', site: 'HERA TEMPORARIO', lat: -8.559034, lng: 125.645948, location: 'Dili' }, + { cell: 'HETE3F', sector: 'HETE3F', site: 'HERA TEMPORARIO', lat: -8.559034, lng: 125.645948, location: 'Dili' }, + { cell: 'HETE4E', sector: 'HETE4E', site: 'HERA TEMPORARIO', lat: -8.559034, lng: 125.645948, location: 'Dili' }, + { cell: 'HETE4F', sector: 'HETE4F', site: 'HERA TEMPORARIO', lat: -8.559034, lng: 125.645948, location: 'Dili' }, + { cell: 'HETE5E', sector: 'HETE5E', site: 'HERA TEMPORARIO', lat: -8.559034, lng: 125.645948, location: 'Dili' }, + { cell: 'HETE5F', sector: 'HETE5F', site: 'HERA TEMPORARIO', lat: -8.559034, lng: 125.645948, location: 'Dili' }, + { cell: 'HETE6E', sector: 'HETE6E', site: 'HERA TEMPORARIO', lat: -8.559034, lng: 125.645948, location: 'Dili' }, + { cell: 'HETE6F', sector: 'HETE6F', site: 'HERA TEMPORARIO', lat: -8.559034, lng: 125.645948, location: 'Dili' }, + { cell: 'HRAM1E', sector: 'HRAM#1', site: 'HOTEL RAMELAU', lat: -8.555201, lng: 125.54862, location: 'Dili' }, + { cell: 'HRAM1F', sector: 'HRAM#1F', site: 'HOTEL RAMELAU', lat: -8.555201, lng: 125.54862, location: 'Dili' }, + { cell: 'HRAM2E', sector: 'HRAM#2', site: 'HOTEL RAMELAU', lat: -8.555201, lng: 125.54862, location: 'Dili' }, + { cell: 'HRAM2F', sector: 'HRAM#2F', site: 'HOTEL RAMELAU', lat: -8.555201, lng: 125.54862, location: 'Dili' }, + { cell: 'HRAM3E', sector: 'HRAM#3', site: 'HOTEL RAMELAU', lat: -8.555201, lng: 125.54862, location: 'Dili' }, + { cell: 'HRAM3F', sector: 'HRAM#3F', site: 'HOTEL RAMELAU', lat: -8.555201, lng: 125.54862, location: 'Dili' }, + { cell: 'HRAM4E', sector: 'HRAM#4E', site: 'HOTEL RAMELAU', lat: -8.555201, lng: 125.54862, location: 'Dili' }, + { cell: 'HRAM4F', sector: 'HRAM#4F', site: 'HOTEL RAMELAU', lat: -8.555201, lng: 125.54862, location: 'Dili' }, + { cell: 'HRAM5E', sector: 'HRAM#5E', site: 'HOTEL RAMELAU', lat: -8.555201, lng: 125.54862, location: 'Dili' }, + { cell: 'HRAM5F', sector: 'HRAM#5F', site: 'HOTEL RAMELAU', lat: -8.555201, lng: 125.54862, location: 'Dili' }, + { cell: 'HRAM6E', sector: 'HRAM#6E', site: 'HOTEL RAMELAU', lat: -8.555201, lng: 125.54862, location: 'Dili' }, + { cell: 'HRAM6F', sector: 'HRAM#6F', site: 'HOTEL RAMELAU', lat: -8.555201, lng: 125.54862, location: 'Dili' }, + { cell: 'HTIM1E', sector: 'HTIM#1', site: 'HOTEL TIMOR', lat: -8.554222, lng: 125.573653, location: 'Dili' }, + { cell: 'HTIM1F', sector: 'HTIM#1F', site: 'HOTEL TIMOR', lat: -8.554222, lng: 125.573653, location: 'Dili' }, + { cell: 'HTIM2E', sector: 'HTIM#2', site: 'HOTEL TIMOR', lat: -8.554222, lng: 125.573653, location: 'Dili' }, + { cell: 'HTIM2F', sector: 'HTIM#2F', site: 'HOTEL TIMOR', lat: -8.554222, lng: 125.573653, location: 'Dili' }, + { cell: 'HTIM3E', sector: 'HTIM#3', site: 'HOTEL TIMOR', lat: -8.554222, lng: 125.573653, location: 'Dili' }, + { cell: 'HTIM3F', sector: 'HTIM#3F', site: 'HOTEL TIMOR', lat: -8.554222, lng: 125.573653, location: 'Dili' }, + { cell: 'HTIM4E', sector: 'HTIM#4', site: 'HOTEL TIMOR', lat: -8.554222, lng: 125.573653, location: 'Dili' }, + { cell: 'HTIM4F', sector: 'HTIM#4F', site: 'HOTEL TIMOR', lat: -8.554222, lng: 125.573653, location: 'Dili' }, + { cell: 'HTIM5E', sector: 'HTIM#5', site: 'HOTEL TIMOR', lat: -8.554222, lng: 125.573653, location: 'Dili' }, + { cell: 'HTIM5F', sector: 'HTIM#5F', site: 'HOTEL TIMOR', lat: -8.554222, lng: 125.573653, location: 'Dili' }, + { cell: 'HTIM6E', sector: 'HTIM#6', site: 'HOTEL TIMOR', lat: -8.554222, lng: 125.573653, location: 'Dili' }, + { cell: 'HTIM6F', sector: 'HTIM#6F', site: 'HOTEL TIMOR', lat: -8.554222, lng: 125.573653, location: 'Dili' }, + { cell: 'HUSK1E', sector: 'HUSK#1', site: 'HUSBUK', lat: -8.559698, lng: 125.487105, location: 'Dili' }, + { cell: 'HUSK1F', sector: 'HUSK#1F', site: 'HUSBUK', lat: -8.559698, lng: 125.487105, location: 'Dili' }, + { cell: 'HUSK4E', sector: 'HUSK#4', site: 'HUSBUK', lat: -8.559698, lng: 125.487105, location: 'Dili' }, + { cell: 'HUSK4F', sector: 'HUSK#4F', site: 'HUSBUK', lat: -8.559698, lng: 125.487105, location: 'Dili' }, + { cell: 'HULA1E', sector: 'HULA#1', site: 'HUDILARAN', lat: -8.556, lng: 125.5589, location: 'Dili' }, + { cell: 'HULA1F', sector: 'HULA#1F', site: 'HUDILARAN', lat: -8.556, lng: 125.5589, location: 'Dili' }, + { cell: 'HULA2E', sector: 'HULA#2', site: 'HUDILARAN', lat: -8.556, lng: 125.5589, location: 'Dili' }, + { cell: 'HULA2F', sector: 'HULA#2F', site: 'HUDILARAN', lat: -8.556, lng: 125.5589, location: 'Dili' }, + { cell: 'HULA3E', sector: 'HULA#3', site: 'HUDILARAN', lat: -8.556, lng: 125.5589, location: 'Dili' }, + { cell: 'HULA3F', sector: 'HULA#3F', site: 'HUDILARAN', lat: -8.556, lng: 125.5589, location: 'Dili' }, + { cell: 'HULA4E', sector: 'HULA#4', site: 'HUDILARAN', lat: -8.556, lng: 125.5589, location: 'Dili' }, + { cell: 'HULA4F', sector: 'HULA#4F', site: 'HUDILARAN', lat: -8.556, lng: 125.5589, location: 'Dili' }, + { cell: 'HULA5E', sector: 'HULA#5', site: 'HUDILARAN', lat: -8.556, lng: 125.5589, location: 'Dili' }, + { cell: 'HULA5F', sector: 'HULA#5F', site: 'HUDILARAN', lat: -8.556, lng: 125.5589, location: 'Dili' }, + { cell: 'HULA6E', sector: 'HULA#6', site: 'HUDILARAN', lat: -8.556, lng: 125.5589, location: 'Dili' }, + { cell: 'HULA6F', sector: 'HULA#6F', site: 'HUDILARAN', lat: -8.556, lng: 125.5589, location: 'Dili' }, + { cell: 'KAME1E', sector: 'KAME#1', site: 'KAMPUNG MERDEKA', lat: -8.558557, lng: 125.531874, location: 'Dili' }, + { cell: 'KAME2E', sector: 'KAME#2', site: 'KAMPUNG MERDEKA', lat: -8.558557, lng: 125.531874, location: 'Dili' }, + { cell: 'KAME3E', sector: 'KAME#3', site: 'KAMPUNG MERDEKA', lat: -8.558557, lng: 125.531874, location: 'Dili' }, + { cell: 'KAME4E', sector: 'KAME#4', site: 'KAMPUNG MERDEKA', lat: -8.558557, lng: 125.531874, location: 'Dili' }, + { cell: 'KAME5E', sector: 'KAME#5', site: 'KAMPUNG MERDEKA', lat: -8.558557, lng: 125.531874, location: 'Dili' }, + { cell: 'KAME6E', sector: 'KAME#6', site: 'KAMPUNG MERDEKA', lat: -8.558557, lng: 125.531874, location: 'Dili' }, + { cell: 'KBAR1E', sector: 'KBAR#1', site: 'KAMPUNG BARU', lat: -8.565125, lng: 125.526904, location: 'Dili' }, + { cell: 'KBAR11E', sector: 'KBAR#11', site: 'KAMPUNG BARU', lat: -8.565125, lng: 125.526904, location: 'Dili' }, + { cell: 'KBAR2E', sector: 'KBAR#2', site: 'KAMPUNG BARU', lat: -8.565125, lng: 125.526904, location: 'Dili' }, + { cell: 'KBAR12E', sector: 'KBAR#12', site: 'KAMPUNG BARU', lat: -8.565125, lng: 125.526904, location: 'Dili' }, + { cell: 'KBAR3E', sector: 'KBAR#3', site: 'KAMPUNG BARU', lat: -8.565125, lng: 125.526904, location: 'Dili' }, + { cell: 'KBAR13E', sector: 'KBAR#13', site: 'KAMPUNG BARU', lat: -8.565125, lng: 125.526904, location: 'Dili' }, + { cell: 'KBAR4E', sector: 'KBAR#4', site: 'KAMPUNG BARU', lat: -8.565125, lng: 125.526904, location: 'Dili' }, + { cell: 'KBAR14E', sector: 'KBAR#14', site: 'KAMPUNG BARU', lat: -8.565125, lng: 125.526904, location: 'Dili' }, + { cell: 'KBAR5E', sector: 'KBAR#5', site: 'KAMPUNG BARU', lat: -8.565125, lng: 125.526904, location: 'Dili' }, + { cell: 'KBAR15E', sector: 'KBAR#15', site: 'KAMPUNG BARU', lat: -8.565125, lng: 125.526904, location: 'Dili' }, + { cell: 'KBAR6E', sector: 'KBAR#6', site: 'KAMPUNG BARU', lat: -8.565125, lng: 125.526904, location: 'Dili' }, + { cell: 'KBAR16E', sector: 'KBAR#16', site: 'KAMPUNG BARU', lat: -8.565125, lng: 125.526904, location: 'Dili' }, + { cell: 'KLOR1E', sector: 'KLOR#1', site: 'KAMPUNG ALOR', lat: -8.55109, lng: 125.55968, location: 'Dili' }, + { cell: 'KLOR1F', sector: 'KLOR#1F', site: 'KAMPUNG ALOR', lat: -8.55109, lng: 125.55968, location: 'Dili' }, + { cell: 'KLOR2E', sector: 'KLOR#2', site: 'KAMPUNG ALOR', lat: -8.55109, lng: 125.55968, location: 'Dili' }, + { cell: 'KLOR2F', sector: 'KLOR#2F', site: 'KAMPUNG ALOR', lat: -8.55109, lng: 125.55968, location: 'Dili' }, + { cell: 'KLOR3E', sector: 'KLOR#3', site: 'KAMPUNG ALOR', lat: -8.55109, lng: 125.55968, location: 'Dili' }, + { cell: 'KLOR3F', sector: 'KLOR#3F', site: 'KAMPUNG ALOR', lat: -8.55109, lng: 125.55968, location: 'Dili' }, + { cell: 'KLOR4E', sector: 'KLOR#4', site: 'KAMPUNG ALOR', lat: -8.55109, lng: 125.55968, location: 'Dili' }, + { cell: 'KLOR4F', sector: 'KLOR#4F', site: 'KAMPUNG ALOR', lat: -8.55109, lng: 125.55968, location: 'Dili' }, + { cell: 'KLOR5E', sector: 'KLOR#5', site: 'KAMPUNG ALOR', lat: -8.55109, lng: 125.55968, location: 'Dili' }, + { cell: 'KLOR5F', sector: 'KLOR#5F', site: 'KAMPUNG ALOR', lat: -8.55109, lng: 125.55968, location: 'Dili' }, + { cell: 'KLOR6F', sector: 'KLOR#6F', site: 'KAMPUNG ALOR', lat: -8.55109, lng: 125.55968, location: 'Dili' }, + { cell: 'KLOR6F', sector: 'KLOR#6F', site: 'KAMPUNG ALOR', lat: -8.55109, lng: 125.55968, location: 'Dili' }, + { cell: 'LAHO1E', sector: 'LAHO#1', site: 'LAHANE ORIENTAL', lat: -8.56691, lng: 125.58464, location: 'Dili' }, + { cell: 'LAHO1F', sector: 'LAHO#1F', site: 'LAHANE ORIENTAL', lat: -8.56691, lng: 125.58464, location: 'Dili' }, + { cell: 'LAHO2E', sector: 'LAHO#2', site: 'LAHANE ORIENTAL', lat: -8.56691, lng: 125.58464, location: 'Dili' }, + { cell: 'LAHO2F', sector: 'LAHO#2F', site: 'LAHANE ORIENTAL', lat: -8.56691, lng: 125.58464, location: 'Dili' }, + { cell: 'LAHO3E', sector: 'LAHO#3', site: 'LAHANE ORIENTAL', lat: -8.56691, lng: 125.58464, location: 'Dili' }, + { cell: 'LAHO3F', sector: 'LAHO#3F', site: 'LAHANE ORIENTAL', lat: -8.56691, lng: 125.58464, location: 'Dili' }, + { cell: 'LAHO4E', sector: 'LAHO#4', site: 'LAHANE ORIENTAL', lat: -8.56691, lng: 125.58464, location: 'Dili' }, + { cell: 'LAHO4F', sector: 'LAHO#4F', site: 'LAHANE ORIENTAL', lat: -8.56691, lng: 125.58464, location: 'Dili' }, + { cell: 'LAHO5E', sector: 'LAHO#5', site: 'LAHANE ORIENTAL', lat: -8.56691, lng: 125.58464, location: 'Dili' }, + { cell: 'LAHO5F', sector: 'LAHO#5F', site: 'LAHANE ORIENTAL', lat: -8.56691, lng: 125.58464, location: 'Dili' }, + { cell: 'LAHO6E', sector: 'LAHO#6', site: 'LAHANE ORIENTAL', lat: -8.56691, lng: 125.58464, location: 'Dili' }, + { cell: 'LAHO6F', sector: 'LAHO#6F', site: 'LAHANE ORIENTAL', lat: -8.56691, lng: 125.58464, location: 'Dili' }, + { cell: 'LECI1E', sector: 'LECI#1', site: 'LECIDERE', lat: -8.551937, lng: 125.583601, location: 'Dili' }, + { cell: 'LECI1F', sector: 'LECI#1F', site: 'LECIDERE', lat: -8.551937, lng: 125.583601, location: 'Dili' }, + { cell: 'LECI2E', sector: 'LECI#2', site: 'LECIDERE', lat: -8.551937, lng: 125.583601, location: 'Dili' }, + { cell: 'LECI2F', sector: 'LECI#2F', site: 'LECIDERE', lat: -8.551937, lng: 125.583601, location: 'Dili' }, + { cell: 'LECI3E', sector: 'LECI#3', site: 'LECIDERE', lat: -8.551937, lng: 125.583601, location: 'Dili' }, + { cell: 'LECI3F', sector: 'LECI#3F', site: 'LECIDERE', lat: -8.551937, lng: 125.583601, location: 'Dili' }, + { cell: 'LECI4E', sector: 'LECI#4', site: 'LECIDERE', lat: -8.551937, lng: 125.583601, location: 'Dili' }, + { cell: 'LECI4F', sector: 'LECI#4F', site: 'LECIDERE', lat: -8.551937, lng: 125.583601, location: 'Dili' }, + { cell: 'LECI5E', sector: 'LECI#5', site: 'LECIDERE', lat: -8.551937, lng: 125.583601, location: 'Dili' }, + { cell: 'LECI5F', sector: 'LECI#5F', site: 'LECIDERE', lat: -8.551937, lng: 125.583601, location: 'Dili' }, + { cell: 'LECI6E', sector: 'LECI#6', site: 'LECIDERE', lat: -8.551937, lng: 125.583601, location: 'Dili' }, + { cell: 'LECI6F', sector: 'LECI#6F', site: 'LECIDERE', lat: -8.551937, lng: 125.583601, location: 'Dili' }, + { cell: 'LEMK1E', sector: 'LEMK#1', site: 'LEMOKARI', lat: -8.571833, lng: 125.535189, location: 'Dili' }, + { cell: 'LEMK1F', sector: 'LEMK#1F', site: 'LEMOKARI', lat: -8.571833, lng: 125.535189, location: 'Dili' }, + { cell: 'LEMK2E', sector: 'LEMK#2', site: 'LEMOKARI', lat: -8.571833, lng: 125.535189, location: 'Dili' }, + { cell: 'LEMK2F', sector: 'LEMK#2F', site: 'LEMOKARI', lat: -8.571833, lng: 125.535189, location: 'Dili' }, + { cell: 'LEMK3E', sector: 'LEMK#3', site: 'LEMOKARI', lat: -8.571833, lng: 125.535189, location: 'Dili' }, + { cell: 'LEMK3F', sector: 'LEMK#3F', site: 'LEMOKARI', lat: -8.571833, lng: 125.535189, location: 'Dili' }, + { cell: 'LEMK4E', sector: 'LEMK#4', site: 'LEMOKARI', lat: -8.571833, lng: 125.535189, location: 'Dili' }, + { cell: 'LEMK4F', sector: 'LEMK#4F', site: 'LEMOKARI', lat: -8.571833, lng: 125.535189, location: 'Dili' }, + { cell: 'LEMK5E', sector: 'LEMK#5', site: 'LEMOKARI', lat: -8.571833, lng: 125.535189, location: 'Dili' }, + { cell: 'LEMK5F', sector: 'LEMK#5F', site: 'LEMOKARI', lat: -8.571833, lng: 125.535189, location: 'Dili' }, + { cell: 'LEMK6E', sector: 'LEMK#6', site: 'LEMOKARI', lat: -8.571833, lng: 125.535189, location: 'Dili' }, + { cell: 'LEMK6F', sector: 'LEMK#6F', site: 'LEMOKARI', lat: -8.571833, lng: 125.535189, location: 'Dili' }, + { cell: 'LIDU1E', sector: 'LIDU#1E', site: 'LIDUN', lat: -8.574247, lng: 125.542276, location: 'Dili' }, + { cell: 'LIDU1F', sector: 'LIDU#1F', site: 'LIDUN', lat: -8.574247, lng: 125.542276, location: 'Dili' }, + { cell: 'LIDU2E', sector: 'LIDU#2E', site: 'LIDUN', lat: -8.574247, lng: 125.542276, location: 'Dili' }, + { cell: 'LIDU2F', sector: 'LIDU#2F', site: 'LIDUN', lat: -8.574247, lng: 125.542276, location: 'Dili' }, + { cell: 'LIDU3E', sector: 'LIDU#3E', site: 'LIDUN', lat: -8.574247, lng: 125.542276, location: 'Dili' }, + { cell: 'LIDU3F', sector: 'LIDU#3F', site: 'LIDUN', lat: -8.574247, lng: 125.542276, location: 'Dili' }, + { cell: 'LIDU4E', sector: 'LIDU#4E', site: 'LIDUN', lat: -8.574247, lng: 125.542276, location: 'Dili' }, + { cell: 'LIDU4F', sector: 'LIDU#4F', site: 'LIDUN', lat: -8.574247, lng: 125.542276, location: 'Dili' }, + { cell: 'LIDU5E', sector: 'LIDU#5E', site: 'LIDUN', lat: -8.574247, lng: 125.542276, location: 'Dili' }, + { cell: 'LIDU5F', sector: 'LIDU#5F', site: 'LIDUN', lat: -8.574247, lng: 125.542276, location: 'Dili' }, + { cell: 'LIDU6E', sector: 'LIDU#6E', site: 'LIDUN', lat: -8.574247, lng: 125.542276, location: 'Dili' }, + { cell: 'LIDU6F', sector: 'LIDU#6F', site: 'LIDUN', lat: -8.574247, lng: 125.542276, location: 'Dili' }, + { cell: 'LISB1E', sector: 'LISB#1', site: 'LISBUTAK', lat: -8.576319, lng: 125.532329, location: 'Dili' }, + { cell: 'LISB1F', sector: 'LISB#1F', site: 'LISBUTAK', lat: -8.576319, lng: 125.532329, location: 'Dili' }, + { cell: 'LISB2E', sector: 'LISB#2', site: 'LISBUTAK', lat: -8.576319, lng: 125.532329, location: 'Dili' }, + { cell: 'LISB2F', sector: 'LISB#2F', site: 'LISBUTAK', lat: -8.576319, lng: 125.532329, location: 'Dili' }, + { cell: 'LISB3E', sector: 'LISB#3', site: 'LISBUTAK', lat: -8.576319, lng: 125.532329, location: 'Dili' }, + { cell: 'LISB3F', sector: 'LISB#3F', site: 'LISBUTAK', lat: -8.576319, lng: 125.532329, location: 'Dili' }, + { cell: 'LISB4E', sector: 'LISB#4', site: 'LISBUTAK', lat: -8.576319, lng: 125.532329, location: 'Dili' }, + { cell: 'LISB4F', sector: 'LISB#4F', site: 'LISBUTAK', lat: -8.576319, lng: 125.532329, location: 'Dili' }, + { cell: 'LISB5E', sector: 'LISB#5', site: 'LISBUTAK', lat: -8.576319, lng: 125.532329, location: 'Dili' }, + { cell: 'LISB5F', sector: 'LISB#5F', site: 'LISBUTAK', lat: -8.576319, lng: 125.532329, location: 'Dili' }, + { cell: 'LISB6E', sector: 'LISB#6', site: 'LISBUTAK', lat: -8.576319, lng: 125.532329, location: 'Dili' }, + { cell: 'LISB6F', sector: 'LISB#6F', site: 'LISBUTAK', lat: -8.576319, lng: 125.532329, location: 'Dili' }, + { cell: 'LOCE1E', sector: 'LOCE#1', site: 'LOCENEON', lat: -8.559331, lng: 125.582984, location: 'Dili' }, + { cell: 'LOCE1F', sector: 'LOCE#1F', site: 'LOCENEON', lat: -8.559331, lng: 125.582984, location: 'Dili' }, + { cell: 'LOCE2E', sector: 'LOCE#2', site: 'LOCENEON', lat: -8.559331, lng: 125.582984, location: 'Dili' }, + { cell: 'LOCE2F', sector: 'LOCE#2F', site: 'LOCENEON', lat: -8.559331, lng: 125.582984, location: 'Dili' }, + { cell: 'LOCE3E', sector: 'LOCE#3', site: 'LOCENEON', lat: -8.559331, lng: 125.582984, location: 'Dili' }, + { cell: 'LOCE3F', sector: 'LOCE#3F', site: 'LOCENEON', lat: -8.559331, lng: 125.582984, location: 'Dili' }, + { cell: 'LOCE4E', sector: 'LOCE#4', site: 'LOCENEON', lat: -8.559331, lng: 125.582984, location: 'Dili' }, + { cell: 'LOCE4F', sector: 'LOCE#4F', site: 'LOCENEON', lat: -8.559331, lng: 125.582984, location: 'Dili' }, + { cell: 'LOCE5E', sector: 'LOCE#5', site: 'LOCENEON', lat: -8.559331, lng: 125.582984, location: 'Dili' }, + { cell: 'LOCE5F', sector: 'LOCE#5F', site: 'LOCENEON', lat: -8.559331, lng: 125.582984, location: 'Dili' }, + { cell: 'LOCE6E', sector: 'LOCE#6', site: 'LOCENEON', lat: -8.559331, lng: 125.582984, location: 'Dili' }, + { cell: 'LOCE6F', sector: 'LOCE#6F', site: 'LOCENEON', lat: -8.559331, lng: 125.582984, location: 'Dili' }, + { cell: 'LUMA1E', sector: 'LUMA#1', site: 'LUROMATA', lat: -8.551274, lng: 125.554004, location: 'Dili' }, + { cell: 'LUMA1F', sector: 'LUMA#1F', site: 'LUROMATA', lat: -8.551274, lng: 125.554004, location: 'Dili' }, + { cell: 'LUMA2E', sector: 'LUMA#2', site: 'LUROMATA', lat: -8.551274, lng: 125.554004, location: 'Dili' }, + { cell: 'LUMA2F', sector: 'LUMA#2F', site: 'LUROMATA', lat: -8.551274, lng: 125.554004, location: 'Dili' }, + { cell: 'LUMA3E', sector: 'LUMA#3', site: 'LUROMATA', lat: -8.551274, lng: 125.554004, location: 'Dili' }, + { cell: 'LUMA3F', sector: 'LUMA#3F', site: 'LUROMATA', lat: -8.551274, lng: 125.554004, location: 'Dili' }, + { cell: 'LUMA4E', sector: 'LUMA#4', site: 'LUROMATA', lat: -8.551274, lng: 125.554004, location: 'Dili' }, + { cell: 'LUMA4F', sector: 'LUMA#4F', site: 'LUROMATA', lat: -8.551274, lng: 125.554004, location: 'Dili' }, + { cell: 'LUMA5E', sector: 'LUMA#5', site: 'LUROMATA', lat: -8.551274, lng: 125.554004, location: 'Dili' }, + { cell: 'LUMA5F', sector: 'LUMA#5F', site: 'LUROMATA', lat: -8.551274, lng: 125.554004, location: 'Dili' }, + { cell: 'LUMA6E', sector: 'LUMA#6', site: 'LUROMATA', lat: -8.551274, lng: 125.554004, location: 'Dili' }, + { cell: 'LUMA6F', sector: 'LUMA#6F', site: 'LUROMATA', lat: -8.551274, lng: 125.554004, location: 'Dili' }, + { cell: 'MADU1E', sector: 'MADU#1', site: ' MASLIDUN', lat: -8.568757, lng: 125.514704, location: 'Dili' }, + { cell: 'MADU1F', sector: 'MADU#1F', site: ' MASLIDUN', lat: -8.568757, lng: 125.514704, location: 'Dili' }, + { cell: 'MADU2E', sector: 'MADU#2', site: ' MASLIDUN', lat: -8.568757, lng: 125.514704, location: 'Dili' }, + { cell: 'MADU2F', sector: 'MADU#F', site: ' MASLIDUN', lat: -8.568757, lng: 125.514704, location: 'Dili' }, + { cell: 'MADU3E', sector: 'MADU#3', site: ' MASLIDUN', lat: -8.568757, lng: 125.514704, location: 'Dili' }, + { cell: 'MADU3F', sector: 'MADU#3F', site: ' MASLIDUN', lat: -8.568757, lng: 125.514704, location: 'Dili' }, + { cell: 'MADU4E', sector: 'MADU#4', site: ' MASLIDUN', lat: -8.568757, lng: 125.514704, location: 'Dili' }, + { cell: 'MADU4F', sector: 'MADU#4F', site: ' MASLIDUN', lat: -8.568757, lng: 125.514704, location: 'Dili' }, + { cell: 'MADU5E', sector: 'MADU#5', site: ' MASLIDUN', lat: -8.568757, lng: 125.514704, location: 'Dili' }, + { cell: 'MADU5F', sector: 'MADU#5F', site: ' MASLIDUN', lat: -8.568757, lng: 125.514704, location: 'Dili' }, + { cell: 'MADU6E', sector: 'MADU#6', site: ' MASLIDUN', lat: -8.568757, lng: 125.514704, location: 'Dili' }, + { cell: 'MADU6F', sector: 'MADU#6F', site: ' MASLIDUN', lat: -8.568757, lng: 125.514704, location: 'Dili' }, + { cell: 'MANA1E', sector: 'MANA#1', site: 'MANLEUANA', lat: -8.5749, lng: 125.5383, location: 'Dili' }, + { cell: 'MANA1F', sector: 'MANA#1F', site: 'MANLEUANA', lat: -8.5749, lng: 125.5383, location: 'Dili' }, + { cell: 'MANA2E', sector: 'MANA#2', site: 'MANLEUANA', lat: -8.5749, lng: 125.5383, location: 'Dili' }, + { cell: 'MANA2F', sector: 'MANA#2F', site: 'MANLEUANA', lat: -8.5749, lng: 125.5383, location: 'Dili' }, + { cell: 'MANA3E', sector: 'MANA#3', site: 'MANLEUANA', lat: -8.5749, lng: 125.5383, location: 'Dili' }, + { cell: 'MANA3F', sector: 'MANA#3F', site: 'MANLEUANA', lat: -8.5749, lng: 125.5383, location: 'Dili' }, + { cell: 'MANA4E', sector: 'MANA#4', site: 'MANLEUANA', lat: -8.5749, lng: 125.5383, location: 'Dili' }, + { cell: 'MANA4F', sector: 'MANA#4F', site: 'MANLEUANA', lat: -8.5749, lng: 125.5383, location: 'Dili' }, + { cell: 'MANA5E', sector: 'MANA#5', site: 'MANLEUANA', lat: -8.5749, lng: 125.5383, location: 'Dili' }, + { cell: 'MANA5F', sector: 'MANA#5F', site: 'MANLEUANA', lat: -8.5749, lng: 125.5383, location: 'Dili' }, + { cell: 'MANA6E', sector: 'MANA#6', site: 'MANLEUANA', lat: -8.5749, lng: 125.5383, location: 'Dili' }, + { cell: 'MANA6F', sector: 'MANA#6F', site: 'MANLEUANA', lat: -8.5749, lng: 125.5383, location: 'Dili' }, + { cell: 'MANE1E', sector: 'MANE#1', site: 'MANELEU', lat: -8.564059, lng: 125.544706, location: 'Dili' }, + { cell: 'MANE1F', sector: 'MANE#1F', site: 'MANELEU', lat: -8.564059, lng: 125.544706, location: 'Dili' }, + { cell: 'MANE2E', sector: 'MANE#2', site: 'MANELEU', lat: -8.564059, lng: 125.544706, location: 'Dili' }, + { cell: 'MANE2F', sector: 'MANE#2F', site: 'MANELEU', lat: -8.564059, lng: 125.544706, location: 'Dili' }, + { cell: 'MANE3E', sector: 'MANE#3', site: 'MANELEU', lat: -8.564059, lng: 125.544706, location: 'Dili' }, + { cell: 'MANE3F', sector: 'MANE#3F', site: 'MANELEU', lat: -8.564059, lng: 125.544706, location: 'Dili' }, + { cell: 'MANE4E', sector: 'MANE#4', site: 'MANELEU', lat: -8.564059, lng: 125.544706, location: 'Dili' }, + { cell: 'MANE4F', sector: 'MANE#4F', site: 'MANELEU', lat: -8.564059, lng: 125.544706, location: 'Dili' }, + { cell: 'MANE5E', sector: 'MANE#5', site: 'MANELEU', lat: -8.564059, lng: 125.544706, location: 'Dili' }, + { cell: 'MANE5F', sector: 'MANE#5F', site: 'MANELEU', lat: -8.564059, lng: 125.544706, location: 'Dili' }, + { cell: 'MANE6E', sector: 'MANE#6', site: 'MANELEU', lat: -8.564059, lng: 125.544706, location: 'Dili' }, + { cell: 'MANE6F', sector: 'MANE#6F', site: 'MANELEU', lat: -8.564059, lng: 125.544706, location: 'Dili' }, + { cell: 'MARA1E', sector: 'MARA#1', site: 'Marabia', lat: -8.579707, lng: 125.575098, location: 'Dili' }, + { cell: 'MARA2E', sector: 'MARA#2', site: 'Marabia', lat: -8.579707, lng: 125.575098, location: 'Dili' }, + { cell: 'MARA3E', sector: 'MARA#3', site: 'Marabia', lat: -8.579707, lng: 125.575098, location: 'Dili' }, + { cell: 'MASC1E', sector: 'MASC#1', site: 'MASCARENHAS', lat: -8.565056, lng: 125.577416, location: 'Dili' }, + { cell: 'MASC1F', sector: 'MASC#1F', site: 'MASCARENHAS', lat: -8.565056, lng: 125.577416, location: 'Dili' }, + { cell: 'MASC2E', sector: 'MASC#2', site: 'MASCARENHAS', lat: -8.565056, lng: 125.577416, location: 'Dili' }, + { cell: 'MASC2F', sector: 'MASC#2F', site: 'MASCARENHAS', lat: -8.565056, lng: 125.577416, location: 'Dili' }, + { cell: 'MASC3E', sector: 'MASC#3', site: 'MASCARENHAS', lat: -8.565056, lng: 125.577416, location: 'Dili' }, + { cell: 'MASC3F', sector: 'MASC#3F', site: 'MASCARENHAS', lat: -8.565056, lng: 125.577416, location: 'Dili' }, + { cell: 'MASC4E', sector: 'MASC#4', site: 'MASCARENHAS', lat: -8.565056, lng: 125.577416, location: 'Dili' }, + { cell: 'MASC4F', sector: 'MASC#4F', site: 'MASCARENHAS', lat: -8.565056, lng: 125.577416, location: 'Dili' }, + { cell: 'MASC5E', sector: 'MASC#5', site: 'MASCARENHAS', lat: -8.565056, lng: 125.577416, location: 'Dili' }, + { cell: 'MASC5F', sector: 'MASC#5F', site: 'MASCARENHAS', lat: -8.565056, lng: 125.577416, location: 'Dili' }, + { cell: 'MASC6E', sector: 'MASC#6', site: 'MASCARENHAS', lat: -8.565056, lng: 125.577416, location: 'Dili' }, + { cell: 'MASC6F', sector: 'MASC#6F', site: 'MASCARENHAS', lat: -8.565056, lng: 125.577416, location: 'Dili' }, + { cell: 'METI1E', sector: 'METI#1', site: 'METIAUT', lat: -8.5481, lng: 125.600977, location: 'Dili' }, + { cell: 'METI1F', sector: 'METI1F', site: 'METIAUT', lat: -8.5481, lng: 125.600977, location: 'Dili' }, + { cell: 'METI2E', sector: 'METI#2', site: 'METIAUT', lat: -8.5481, lng: 125.600977, location: 'Dili' }, + { cell: 'METI2F', sector: 'METI2F', site: 'METIAUT', lat: -8.5481, lng: 125.600977, location: 'Dili' }, + { cell: 'METI4E', sector: 'METI4E', site: 'METIAUT', lat: -8.5481, lng: 125.600977, location: 'Dili' }, + { cell: 'METI4F', sector: 'METI4F', site: 'METIAUT', lat: -8.5481, lng: 125.600977, location: 'Dili' }, + { cell: 'METI5E', sector: 'METI5E', site: 'METIAUT', lat: -8.5481, lng: 125.600977, location: 'Dili' }, + { cell: 'METI5F', sector: 'METI5F', site: 'METIAUT', lat: -8.5481, lng: 125.600977, location: 'Dili' }, + { cell: 'MLMO1E', sector: 'MLMO#1', site: 'MALINAMOK', lat: -8.55743, lng: 125.526083, location: 'Dili' }, + { cell: 'MLMO1F', sector: 'MLMO#1F', site: 'MALINAMOK', lat: -8.55743, lng: 125.526083, location: 'Dili' }, + { cell: 'MLMO2E', sector: 'MLMO#2', site: 'MALINAMOK', lat: -8.55743, lng: 125.526083, location: 'Dili' }, + { cell: 'MLMO2F', sector: 'MLMO#2F', site: 'MALINAMOK', lat: -8.55743, lng: 125.526083, location: 'Dili' }, + { cell: 'MLMO3E', sector: 'MLMO#3', site: 'MALINAMOK', lat: -8.55743, lng: 125.526083, location: 'Dili' }, + { cell: 'MLMO3F', sector: 'MLMO#3F', site: 'MALINAMOK', lat: -8.55743, lng: 125.526083, location: 'Dili' }, + { cell: 'MLMO4E', sector: 'MLMO#4', site: 'MALINAMOK', lat: -8.55743, lng: 125.526083, location: 'Dili' }, + { cell: 'MLMO4F', sector: 'MLMO#4F', site: 'MALINAMOK', lat: -8.55743, lng: 125.526083, location: 'Dili' }, + { cell: 'MLMO5E', sector: 'MLMO#5', site: 'MALINAMOK', lat: -8.55743, lng: 125.526083, location: 'Dili' }, + { cell: 'MLMO5F', sector: 'MLMO#5F', site: 'MALINAMOK', lat: -8.55743, lng: 125.526083, location: 'Dili' }, + { cell: 'MLMO6E', sector: 'MLMO#6', site: 'MALINAMOK', lat: -8.55743, lng: 125.526083, location: 'Dili' }, + { cell: 'MLMO6F', sector: 'MLMO#6F', site: 'MALINAMOK', lat: -8.55743, lng: 125.526083, location: 'Dili' }, + { cell: 'MNEC1E', sector: 'MNEC#1', site: 'MNEC', lat: -8.548266, lng: 125.557369, location: 'Dili' }, + { cell: 'MNEC2E', sector: 'MNEC#2', site: 'MNEC', lat: -8.548266, lng: 125.557369, location: 'Dili' }, + { cell: 'MNEC3E', sector: 'MNEC#3', site: 'MNEC', lat: -8.548266, lng: 125.557369, location: 'Dili' }, + { cell: 'MNEC4E', sector: 'MNEC#4', site: 'MNEC', lat: -8.548266, lng: 125.557369, location: 'Dili' }, + { cell: 'MNEC5E', sector: 'MNEC#5', site: 'MNEC', lat: -8.548266, lng: 125.557369, location: 'Dili' }, + { cell: 'MNEC6E', sector: 'MNEC#6', site: 'MNEC', lat: -8.548266, lng: 125.557369, location: 'Dili' }, + { cell: 'MOTE1E', sector: 'MOTE#1', site: 'MOTAEL TEMPORARIO', lat: -8.551134, lng: 125.571302, location: 'Dili' }, + { cell: 'MOTE2E', sector: 'MOTE#2', site: 'MOTAEL TEMPORARIO', lat: -8.551134, lng: 125.571302, location: 'Dili' }, + { cell: 'MTNR1E', sector: 'MTNR#1', site: 'METINARO', lat: -8.517556, lng: 125.779543, location: 'Dili (District)' }, + { cell: 'MTNR2E', sector: 'MTNR#2', site: 'METINARO', lat: -8.517556, lng: 125.779543, location: 'Dili (District)' }, + { cell: 'MTNR3E (Split DUYU#2)', sector: 'MTNR#3', site: 'METINARO (splittagem Duyu#2)', lat: -8.53132, lng: 125.75596, location: 'Dili (District)' }, + { cell: 'MUPE1E', sector: 'MUPE#1', site: 'LISBUTAK MUNDO PERDIDO ', lat: -8.579338, lng: 125.53699, location: 'Dili' }, + { cell: 'MUPE1F', sector: 'MUPE#1F', site: 'LISBUTAK MUNDO PERDIDO ', lat: -8.579338, lng: 125.53699, location: 'Dili' }, + { cell: 'MUPE2E', sector: 'MUPE#2', site: 'LISBUTAK MUNDO PERDIDO ', lat: -8.579338, lng: 125.53699, location: 'Dili' }, + { cell: 'MUPE2F', sector: 'MUPE#2F', site: 'LISBUTAK MUNDO PERDIDO ', lat: -8.579338, lng: 125.53699, location: 'Dili' }, + { cell: 'MUPE3E', sector: 'MUPE#3', site: 'LISBUTAK MUNDO PERDIDO ', lat: -8.579338, lng: 125.53699, location: 'Dili' }, + { cell: 'MUPE3F', sector: 'MUPE#3F', site: 'LISBUTAK MUNDO PERDIDO ', lat: -8.579338, lng: 125.53699, location: 'Dili' }, + { cell: 'MUPE4E', sector: 'MUPE#4', site: 'LISBUTAK MUNDO PERDIDO ', lat: -8.579338, lng: 125.53699, location: 'Dili' }, + { cell: 'MUPE4F', sector: 'MUPE#4F', site: 'LISBUTAK MUNDO PERDIDO ', lat: -8.579338, lng: 125.53699, location: 'Dili' }, + { cell: 'MUPE5E', sector: 'MUPE#5', site: 'LISBUTAK MUNDO PERDIDO ', lat: -8.579338, lng: 125.53699, location: 'Dili' }, + { cell: 'MUPE5F', sector: 'MUPE#5F', site: 'LISBUTAK MUNDO PERDIDO ', lat: -8.579338, lng: 125.53699, location: 'Dili' }, + { cell: 'MUPE6E', sector: 'MUPE#6', site: 'LISBUTAK MUNDO PERDIDO ', lat: -8.579338, lng: 125.53699, location: 'Dili' }, + { cell: 'MUPE6F', sector: 'MUPE#6F', site: 'LISBUTAK MUNDO PERDIDO ', lat: -8.579338, lng: 125.53699, location: 'Dili' }, + { cell: 'NOPE1E', sector: 'NOPE#1', site: 'NOPENG', lat: -8.561, lng: 125.5698, location: 'Dili' }, + { cell: 'NOPE1F', sector: 'NOPE#1F', site: 'NOPENG', lat: -8.561, lng: 125.5698, location: 'Dili' }, + { cell: 'NOPE2E', sector: 'NOPE#2', site: 'NOPENG', lat: -8.561, lng: 125.5698, location: 'Dili' }, + { cell: 'NOPE2F', sector: 'NOPE#2F', site: 'NOPENG', lat: -8.561, lng: 125.5698, location: 'Dili' }, + { cell: 'NOPE3E', sector: 'NOPE#3', site: 'NOPENG', lat: -8.561, lng: 125.5698, location: 'Dili' }, + { cell: 'NOPE3F', sector: 'NOPE#3F', site: 'NOPENG', lat: -8.561, lng: 125.5698, location: 'Dili' }, + { cell: 'NOPE4E', sector: 'NOPE#4E', site: 'NOPENG', lat: -8.561, lng: 125.5698, location: 'Dili' }, + { cell: 'NOPE4F', sector: 'NOPE#4F', site: 'NOPENG', lat: -8.561, lng: 125.5698, location: 'Dili' }, + { cell: 'NOPE5E', sector: 'NOPE#5E', site: 'NOPENG', lat: -8.561, lng: 125.5698, location: 'Dili' }, + { cell: 'NOPE5F', sector: 'NOPE#5F', site: 'NOPENG', lat: -8.561, lng: 125.5698, location: 'Dili' }, + { cell: 'NOPE6E', sector: 'NOPE#6E', site: 'NOPENG', lat: -8.561, lng: 125.5698, location: 'Dili' }, + { cell: 'NOPE6F', sector: 'NOPE#6F', site: 'NOPENG', lat: -8.561, lng: 125.5698, location: 'Dili' }, + { cell: 'PALA1E', sector: 'PALA#1', site: 'PALAPACO', lat: -8.552033, lng: 125.566838, location: 'Dili' }, + { cell: 'PALA2E', sector: 'PALA#2', site: 'PALAPACO', lat: -8.552033, lng: 125.566838, location: 'Dili' }, + { cell: 'PALA3E', sector: 'PALA#3', site: 'PALAPACO', lat: -8.552033, lng: 125.566838, location: 'Dili' }, + { cell: 'PALA4E', sector: 'PALA#4', site: 'PALAPAÇO', lat: -8.552033, lng: 125.566838, location: 'Dili' }, + { cell: 'PALA5E', sector: 'PALA#5', site: 'PALAPAÇO', lat: -8.552033, lng: 125.566838, location: 'Dili' }, + { cell: 'PALA6E', sector: 'PALA#6', site: 'PALAPAÇO', lat: -8.552033, lng: 125.566838, location: 'Dili' }, + { cell: 'PALA1F', sector: 'PALA#7', site: 'PALAPASO (iMacro)', lat: -8.548391, lng: 125.565259, location: 'Dili' }, + { cell: 'PALA4F', sector: 'PALA#11', site: 'PALAPASO (iMacro)', lat: -8.548391, lng: 125.565259, location: 'Dili' }, + { cell: 'PALA3F', sector: 'PALA#9', site: 'PALAPASO (iMacro)', lat: -8.548391, lng: 125.565259, location: 'Dili' }, + { cell: 'PALA6F', sector: 'PALA#12', site: 'PALAPASO (iMacro)', lat: -8.548391, lng: 125.565259, location: 'Dili' }, + { cell: 'PANA1E', sector: 'PANA#1', site: 'PARLAMENTO NACIONAL', lat: -8.554402, lng: 125.57883, location: 'Dili' }, + { cell: 'PANA1F', sector: 'PANA#1F', site: 'PARLAMENTO NACIONAL', lat: -8.554402, lng: 125.57883, location: 'Dili' }, + { cell: 'PANA2E', sector: 'PANA#2', site: 'PARLAMENTO NACIONAL', lat: -8.554402, lng: 125.57883, location: 'Dili' }, + { cell: 'PANA2F', sector: 'PANA#2F', site: 'PARLAMENTO NACIONAL', lat: -8.554402, lng: 125.57883, location: 'Dili' }, + { cell: 'PANA3E', sector: 'PANA#3', site: 'PARLAMENTO NACIONAL', lat: -8.554402, lng: 125.57883, location: 'Dili' }, + { cell: 'PANA3F', sector: 'PANA#3F', site: 'PARLAMENTO NACIONAL', lat: -8.554402, lng: 125.57883, location: 'Dili' }, + { cell: 'PANA4E', sector: 'PANA4E', site: 'PARLAMENTO NACIONAL', lat: -8.554402, lng: 125.57883, location: 'Dili' }, + { cell: 'PANA4F', sector: 'PANA4F', site: 'PARLAMENTO NACIONAL', lat: -8.554402, lng: 125.57883, location: 'Dili' }, + { cell: 'PANA5E', sector: 'PANA5E', site: 'PARLAMENTO NACIONAL', lat: -8.554402, lng: 125.57883, location: 'Dili' }, + { cell: 'PANA5F', sector: 'PANA5F', site: 'PARLAMENTO NACIONAL', lat: -8.554402, lng: 125.57883, location: 'Dili' }, + { cell: 'PANA6E', sector: 'PANA6E', site: 'PARLAMENTO NACIONAL', lat: -8.554402, lng: 125.57883, location: 'Dili' }, + { cell: 'PANA6F', sector: 'PANA6F', site: 'PARLAMENTO NACIONAL', lat: -8.554402, lng: 125.57883, location: 'Dili' }, + { cell: 'PITE1E', sector: 'PITE#1', site: 'BAIRRO PITE', lat: -8.56241, lng: 125.562484, location: 'Dili' }, + { cell: 'PITE1F', sector: 'PITE#1F', site: 'BAIRRO PITE', lat: -8.56241, lng: 125.562484, location: 'Dili' }, + { cell: 'PITE2E', sector: 'PITE#2', site: 'BAIRRO PITE', lat: -8.56241, lng: 125.562484, location: 'Dili' }, + { cell: 'PITE2F', sector: 'PITE#2F', site: 'BAIRRO PITE', lat: -8.56241, lng: 125.562484, location: 'Dili' }, + { cell: 'PITE3E', sector: 'PITE#3', site: 'BAIRRO PITE', lat: -8.56241, lng: 125.562484, location: 'Dili' }, + { cell: 'PITE3F', sector: 'PITE#3F', site: 'BAIRRO PITE', lat: -8.56241, lng: 125.562484, location: 'Dili' }, + { cell: 'PITE4E', sector: 'PITE4E', site: 'BAIRRO PITE', lat: -8.56241, lng: 125.562484, location: 'Dili' }, + { cell: 'PITE4F', sector: 'PITE4F', site: 'BAIRRO PITE', lat: -8.56241, lng: 125.562484, location: 'Dili' }, + { cell: 'PITE5E', sector: 'PITE5E', site: 'BAIRRO PITE', lat: -8.56241, lng: 125.562484, location: 'Dili' }, + { cell: 'PITE5F', sector: 'PITE5F', site: 'BAIRRO PITE', lat: -8.56241, lng: 125.562484, location: 'Dili' }, + { cell: 'PITE6E', sector: 'PITE6E', site: 'BAIRRO PITE', lat: -8.56241, lng: 125.562484, location: 'Dili' }, + { cell: 'PITE6F', sector: 'PITE6F', site: 'BAIRRO PITE', lat: -8.56241, lng: 125.562484, location: 'Dili' }, + { cell: 'RAKA1E', sector: 'RAKA#1', site: 'BERAKA', lat: -8.534815, lng: 125.706246, location: 'Dili Distrito' }, + { cell: 'RAKA2E', sector: 'RAKA#2', site: 'BERAKA', lat: -8.534815, lng: 125.706246, location: 'Dili Distrito' }, + { cell: 'RAKA3E', sector: 'RAKA#3', site: 'BERAKA', lat: -8.534815, lng: 125.706246, location: 'Dili Distrito' }, + { cell: 'RAIN1E', sector: 'RAIN#1', site: 'RAINAIN', lat: -8.562049, lng: 125.556946, location: 'Dili' }, + { cell: 'RAIN1F', sector: 'RAIN#1F', site: 'RAINAIN', lat: -8.562049, lng: 125.556946, location: 'Dili' }, + { cell: 'RAIN2E', sector: 'RAIN#2', site: 'RAINAIN', lat: -8.562049, lng: 125.556946, location: 'Dili' }, + { cell: 'RAIN2F', sector: 'RAIN#2F', site: 'RAINAIN', lat: -8.562049, lng: 125.556946, location: 'Dili' }, + { cell: 'RAIN3E', sector: 'RAIN#3', site: 'RAINAIN', lat: -8.562049, lng: 125.556946, location: 'Dili' }, + { cell: 'RAIN3F', sector: 'RAIN#3F', site: 'RAINAIN', lat: -8.562049, lng: 125.556946, location: 'Dili' }, + { cell: 'RAIN4E', sector: 'RAIN#4', site: 'RAI NAIN', lat: -8.562049, lng: 125.556946, location: 'Dili' }, + { cell: 'RAIN4F', sector: 'RAIN#4F', site: 'RAI NAIN', lat: -8.562049, lng: 125.556946, location: 'Dili' }, + { cell: 'RAIN5E', sector: 'RAIN#5', site: 'RAI NAIN', lat: -8.562049, lng: 125.556946, location: 'Dili' }, + { cell: 'RAIN5F', sector: 'RAIN#5F', site: 'RAI NAIN', lat: -8.562049, lng: 125.556946, location: 'Dili' }, + { cell: 'RAIN6E', sector: 'RAIN#6', site: 'RAI NAIN', lat: -8.562049, lng: 125.556946, location: 'Dili' }, + { cell: 'RAIN6F', sector: 'RAIN#6F', site: 'RAI NAIN', lat: -8.562049, lng: 125.556946, location: 'Dili' }, + { cell: 'REMA1E', sector: 'REMA#1', site: 'REMACK', lat: -8.561853, lng: 125.605291, location: 'Dili' }, + { cell: 'REMA1F', sector: 'REMA#1F', site: 'REMACK', lat: -8.561853, lng: 125.605291, location: 'Dili' }, + { cell: 'REMA2E', sector: 'REMA#2', site: 'REMACK', lat: -8.561853, lng: 125.605291, location: 'Dili' }, + { cell: 'REMA2F', sector: 'REMA#2F', site: 'REMACK', lat: -8.561853, lng: 125.605291, location: 'Dili' }, + { cell: 'REMA3E', sector: 'REMA#3', site: 'REMACK', lat: -8.561853, lng: 125.605291, location: 'Dili' }, + { cell: 'REMA3F', sector: 'REMA#3F', site: 'REMACK', lat: -8.561853, lng: 125.605291, location: 'Dili' }, + { cell: 'REMA4E', sector: 'REMA#4', site: 'REMACK', lat: -8.561853, lng: 125.605291, location: 'Dili' }, + { cell: 'REMA4F', sector: 'REMA#4F', site: 'REMACK', lat: -8.561853, lng: 125.605291, location: 'Dili' }, + { cell: 'REMA5E', sector: 'REMA#5', site: 'REMACK', lat: -8.561853, lng: 125.605291, location: 'Dili' }, + { cell: 'REMA5F', sector: 'REMA#5F', site: 'REMACK', lat: -8.561853, lng: 125.605291, location: 'Dili' }, + { cell: 'REMA6E', sector: 'REMA#6', site: 'REMACK', lat: -8.561853, lng: 125.605291, location: 'Dili' }, + { cell: 'REMA6F', sector: 'REMA#6F', site: 'REMACK', lat: -8.561853, lng: 125.605291, location: 'Dili' }, + { cell: 'RUAK1E', sector: 'RUAK#1', site: 'MATAN RUAK', lat: -8.5476, lng: 125.5534, location: 'Dili' }, + { cell: 'RUAK1F', sector: 'RUAK#1F', site: 'MATAN RUAK', lat: -8.5476, lng: 125.5534, location: 'Dili' }, + { cell: 'RUAK2E', sector: 'RUAK#2', site: 'MATAN RUAK', lat: -8.5476, lng: 125.5534, location: 'Dili' }, + { cell: 'RUAK2F', sector: 'RUAK#2F', site: 'MATAN RUAK', lat: -8.5476, lng: 125.5534, location: 'Dili' }, + { cell: 'RUAK3E', sector: 'RUAK#3', site: 'MATAN RUAK', lat: -8.5476, lng: 125.5534, location: 'Dili' }, + { cell: 'RUAK3F', sector: 'RUAK#3F', site: 'MATAN RUAK', lat: -8.5476, lng: 125.5534, location: 'Dili' }, + { cell: 'RUAK4E', sector: 'RUAK#4', site: 'MATAN RUAK', lat: -8.5476, lng: 125.5534, location: 'Dili' }, + { cell: 'RUAK4F', sector: 'RUAK#4F', site: 'MATAN RUAK', lat: -8.5476, lng: 125.5534, location: 'Dili' }, + { cell: 'RUAK5E', sector: 'RUAK#5', site: 'MATAN RUAK', lat: -8.5476, lng: 125.5534, location: 'Dili' }, + { cell: 'RUAK5F', sector: 'RUAK#5F', site: 'MATAN RUAK', lat: -8.5476, lng: 125.5534, location: 'Dili' }, + { cell: 'RUAK6E', sector: 'RUAK#6', site: 'MATAN RUAK', lat: -8.5476, lng: 125.5534, location: 'Dili' }, + { cell: 'RUAK6F', sector: 'RUAK#6F', site: 'MATAN RUAK', lat: -8.5476, lng: 125.5534, location: 'Dili' }, + { cell: 'SUKA4E', sector: 'SUKA#4', site: 'Sukaer Laran', lat: -8.53891, lng: 125.68461, location: 'Dili (District)' }, + { cell: 'SUKA5E', sector: 'SUKA#5', site: 'Sukaer Laran', lat: -8.53891, lng: 125.68461, location: 'Dili (District)' }, + { cell: 'SUKA6E', sector: 'SUKA#6', site: 'Sukaer Laran', lat: -8.53891, lng: 125.68461, location: 'Dili (District)' }, + { cell: 'SUKA2E (Spllitagem to Beraka#3)', sector: 'SUKA#3', site: 'Sukaer Laran', lat: -8.534815, lng: 125.706246, location: 'Dili (District)' }, + { cell: 'SURI1E', sector: 'SURI#1', site: 'SURIKMAS', lat: -8.562456, lng: 125.55039, location: 'Dili' }, + { cell: 'SURI1F', sector: 'SURI#1F', site: 'SURIKMAS', lat: -8.562456, lng: 125.55039, location: 'Dili' }, + { cell: 'SURI2E', sector: 'SURI#2', site: 'SURIKMAS', lat: -8.562456, lng: 125.55039, location: 'Dili' }, + { cell: 'SURI2F', sector: 'SURI#2F', site: 'SURIKMAS', lat: -8.562456, lng: 125.55039, location: 'Dili' }, + { cell: 'SURI3E', sector: 'SURI#3', site: 'SURIKMAS', lat: -8.562456, lng: 125.55039, location: 'Dili' }, + { cell: 'SURI3F', sector: 'SURI#3F', site: 'SURIKMAS', lat: -8.562456, lng: 125.55039, location: 'Dili' }, + { cell: 'SURI4E', sector: 'SURI4', site: 'SURIKMAS', lat: -8.562456, lng: 125.55039, location: 'Dili' }, + { cell: 'SURI4F', sector: 'SURI#4F', site: 'SURIKMAS', lat: -8.562456, lng: 125.55039, location: 'Dili' }, + { cell: 'SURI5E', sector: 'SURI5', site: 'SURIKMAS', lat: -8.562456, lng: 125.55039, location: 'Dili' }, + { cell: 'SURI5F', sector: 'SURI#5F', site: 'SURIKMAS', lat: -8.562456, lng: 125.55039, location: 'Dili' }, + { cell: 'SURI6E', sector: 'SURI6', site: 'SURIKMAS', lat: -8.562456, lng: 125.55039, location: 'Dili' }, + { cell: 'SURI6F', sector: 'SURI#6F', site: 'SURIKMAS', lat: -8.562456, lng: 125.55039, location: 'Dili' }, + { cell: 'TAIN1E', sector: 'TAIN#1', site: 'TASITOLU INUR', lat: -8.563604, lng: 125.502143, location: 'Dili' }, + { cell: 'TAIN1F', sector: 'TAIN#1f', site: 'TASITOLU INUR', lat: -8.563604, lng: 125.502143, location: 'Dili' }, + { cell: 'TAIN2E', sector: 'TAIN#2', site: 'TASITOLU INUR', lat: -8.563604, lng: 125.502143, location: 'Dili' }, + { cell: 'TAIN2F', sector: 'TAIN#2F', site: 'TASITOLU INUR', lat: -8.563604, lng: 125.502143, location: 'Dili' }, + { cell: 'TAIN3E', sector: 'TAIN#3', site: 'TASITOLU INUR', lat: -8.563604, lng: 125.502143, location: 'Dili' }, + { cell: 'TAIN3F', sector: 'TAIN#F', site: 'TASITOLU INUR', lat: -8.563604, lng: 125.502143, location: 'Dili' }, + { cell: 'TAIN4E', sector: 'TAIN#4', site: 'TASITOLU INUR', lat: -8.563604, lng: 125.502143, location: 'Dili' }, + { cell: 'TAIN4F', sector: 'TAIN#4F', site: 'TASITOLU INUR', lat: -8.563604, lng: 125.502143, location: 'Dili' }, + { cell: 'TAIN5E', sector: 'TAIN#5', site: 'TASITOLU INUR', lat: -8.563604, lng: 125.502143, location: 'Dili' }, + { cell: 'TAIN5E', sector: 'TAIN#5F', site: 'TASITOLU INUR', lat: -8.563604, lng: 125.502143, location: 'Dili' }, + { cell: 'TAIN6E', sector: 'TAIN#6', site: 'TASITOLU INUR', lat: -8.563604, lng: 125.502143, location: 'Dili' }, + { cell: 'TAIN6F', sector: 'TAIN#6F', site: 'TASITOLU INUR', lat: -8.563604, lng: 125.502143, location: 'Dili' }, + { cell: 'TAPT1E', sector: 'TAPT1E', site: 'TASITOLU TEMPORARIO PELICAN', lat: -8.557709, lng: 125.492723, location: 'Dili' }, + { cell: 'TAPT2E', sector: 'TAPT2E', site: 'TASITOLU TEMPORARIO PELICAN', lat: -8.557709, lng: 125.492723, location: 'Dili' }, + { cell: 'TAPT3E', sector: 'TAPT3E', site: 'TASITOLU TEMPORARIO PELICAN', lat: -8.557709, lng: 125.492723, location: 'Dili' }, + { cell: 'TATE1E', sector: 'TATE#1', site: 'TASITOLUTEMPORARIO', lat: -8.559535, lng: 125.505449, location: 'Dili' }, + { cell: 'TATE2E', sector: 'TATE#2', site: 'TASITOLUTEMPORARIO', lat: -8.559535, lng: 125.505449, location: 'Dili' }, + { cell: 'TATE4E', sector: 'TATE#4', site: 'TASITOLUTEMPORARIO', lat: -8.559535, lng: 125.505449, location: 'Dili' }, + { cell: 'TATE5E', sector: 'TATE#5', site: 'TASITOLUTEMPORARIO', lat: -8.559535, lng: 125.505449, location: 'Dili' }, + { cell: 'TASI1E', sector: 'TASI#1', site: 'TASITOLU', lat: -8.558093, lng: 125.50949, location: 'Dili' }, + { cell: 'TASI1F', sector: 'TASI#1F', site: 'TASITOLU', lat: -8.558093, lng: 125.50949, location: 'Dili' }, + { cell: 'TASI2E', sector: 'TASI#2', site: 'TASITOLU', lat: -8.558093, lng: 125.50949, location: 'Dili' }, + { cell: 'TASI2F', sector: 'TASI#2F', site: 'TASITOLU', lat: -8.558093, lng: 125.50949, location: 'Dili' }, + { cell: 'TASI3E', sector: 'TASI#3', site: 'TASITOLU', lat: -8.558093, lng: 125.50949, location: 'Dili' }, + { cell: 'TASI3F', sector: 'TASI#3F', site: 'TASITOLU', lat: -8.558093, lng: 125.50949, location: 'Dili' }, + { cell: 'TASI4E', sector: 'TASI#4', site: 'TASITOLU', lat: -8.558093, lng: 125.50949, location: 'Dili' }, + { cell: 'TASI4F', sector: 'TASI#4F', site: 'TASITOLU', lat: -8.558093, lng: 125.50949, location: 'Dili' }, + { cell: 'TASI5E', sector: 'TASI#5', site: 'TASITOLU', lat: -8.558093, lng: 125.50949, location: 'Dili' }, + { cell: 'TASI5F', sector: 'TASI#5F', site: 'TASITOLU', lat: -8.558093, lng: 125.50949, location: 'Dili' }, + { cell: 'TASI6E', sector: 'TASI#6', site: 'TASITOLU', lat: -8.558093, lng: 125.50949, location: 'Dili' }, + { cell: 'TASI6F', sector: 'TASI#6F', site: 'TASITOLU', lat: -8.558093, lng: 125.50949, location: 'Dili' }, + { cell: 'TATE1E', sector: 'TATE#7', site: 'TASITOLU (iMacro)', lat: -8.559479, lng: 125.505493, location: 'Dili' }, + { cell: 'TATE1F', sector: 'TATE#17', site: 'TASITOLU (iMacro)', lat: -8.559479, lng: 125.505493, location: 'Dili' }, + { cell: 'TATE2E', sector: 'TATE#8', site: 'TASITOLU (iMacro)', lat: -8.559479, lng: 125.505493, location: 'Dili' }, + { cell: 'TATE2F', sector: 'TATE#18', site: 'TASITOLU (iMacro)', lat: -8.559479, lng: 125.505493, location: 'Dili' }, + { cell: 'TATD1E', sector: 'TATD1E', site: 'TASITOLU TEMPORARIO2', lat: -8.560451, lng: 125.503787, location: 'Dili' }, + { cell: 'TATD1F', sector: 'TATD1F', site: 'TASITOLU TEMPORARIO2', lat: -8.560451, lng: 125.503787, location: 'Dili' }, + { cell: 'TATD2E', sector: 'TATD2E', site: 'TASITOLU TEMPORARIO2', lat: -8.560451, lng: 125.503787, location: 'Dili' }, + { cell: 'TATD2F', sector: 'TATD2F', site: 'TASITOLU TEMPORARIO2', lat: -8.560451, lng: 125.503787, location: 'Dili' }, + { cell: 'TATD3E', sector: 'TATD3E', site: 'TASITOLU TEMPORARIO2', lat: -8.560451, lng: 125.503787, location: 'Dili' }, + { cell: 'TATD3F', sector: 'TATD3F', site: 'TASITOLU TEMPORARIO2', lat: -8.560451, lng: 125.503787, location: 'Dili' }, + { cell: 'TATD4E', sector: 'TATD4E', site: 'TASITOLU TEMPORARIO2', lat: -8.560451, lng: 125.503787, location: 'Dili' }, + { cell: 'TATD4F', sector: 'TATD4F', site: 'TASITOLU TEMPORARIO2', lat: -8.560451, lng: 125.503787, location: 'Dili' }, + { cell: 'TATD5E', sector: 'TATD5E', site: 'TASITOLU TEMPORARIO2', lat: -8.560451, lng: 125.503787, location: 'Dili' }, + { cell: 'TATD5F', sector: 'TATD5F', site: 'TASITOLU TEMPORARIO2', lat: -8.560451, lng: 125.503787, location: 'Dili' }, + { cell: 'TATD6E', sector: 'TATD6E', site: 'TASITOLU TEMPORARIO2', lat: -8.560451, lng: 125.503787, location: 'Dili' }, + { cell: 'TATD6F', sector: 'TATD6F', site: 'TASITOLU TEMPORARIO2', lat: -8.560451, lng: 125.503787, location: 'Dili' }, + { cell: 'TATT1E', sector: 'TATT1E', site: 'TASITOLU TEMPORARIO3', lat: -8.556031, lng: 125.511544, location: 'Dili' }, + { cell: 'TATT1F', sector: 'TATT1F', site: 'TASITOLU TEMPORARIO3', lat: -8.556031, lng: 125.511544, location: 'Dili' }, + { cell: 'TATT2E', sector: 'TATT2E', site: 'TASITOLU TEMPORARIO3', lat: -8.556031, lng: 125.511544, location: 'Dili' }, + { cell: 'TATT2F', sector: 'TATT2F', site: 'TASITOLU TEMPORARIO3', lat: -8.556031, lng: 125.511544, location: 'Dili' }, + { cell: 'TATT3E', sector: 'TATT3E', site: 'TASITOLU TEMPORARIO3', lat: -8.558093, lng: 125.50949, location: 'Dili' }, + { cell: 'TATT3F', sector: 'TATT3F', site: 'TASITOLU TEMPORARIO3', lat: -8.558093, lng: 125.50949, location: 'Dili' }, + { cell: 'TATT4E', sector: 'TATT4E', site: 'TASITOLU TEMPORARIO3', lat: -8.556031, lng: 125.511544, location: 'Dili' }, + { cell: 'TATT4F', sector: 'TATT4F', site: 'TASITOLU TEMPORARIO3', lat: -8.556031, lng: 125.511544, location: 'Dili' }, + { cell: 'TATT5E', sector: 'TATT5E', site: 'TASITOLU TEMPORARIO3', lat: -8.556031, lng: 125.511544, location: 'Dili' }, + { cell: 'TATT5F', sector: 'TATT5F', site: 'TASITOLU TEMPORARIO3', lat: -8.556031, lng: 125.511544, location: 'Dili' }, + { cell: 'TATT6E', sector: 'TATT6E', site: 'TASITOLU TEMPORARIO3', lat: -8.558093, lng: 125.50949, location: 'Dili' }, + { cell: 'TATT6F', sector: 'TATT6F', site: 'TASITOLU TEMPORARIO3', lat: -8.558093, lng: 125.50949, location: 'Dili' }, + { cell: 'TATU1E', sector: 'TATU1E', site: 'TASITOLU TEMPORARIO1', lat: -8.559476, lng: 125.505488, location: 'Dili' }, + { cell: 'TATU1F', sector: 'TATU1F', site: 'TASITOLU TEMPORARIO1', lat: -8.559476, lng: 125.505488, location: 'Dili' }, + { cell: 'TATU2E', sector: 'TATU2E', site: 'TASITOLU TEMPORARIO1', lat: -8.559476, lng: 125.505488, location: 'Dili' }, + { cell: 'TATU2F', sector: 'TATU2F', site: 'TASITOLU TEMPORARIO1', lat: -8.559476, lng: 125.505488, location: 'Dili' }, + { cell: 'TATU3E', sector: 'TATU3E', site: 'TASITOLU TEMPORARIO1', lat: -8.559476, lng: 125.505488, location: 'Dili' }, + { cell: 'TATU3F', sector: 'TATU3F', site: 'TASITOLU TEMPORARIO1', lat: -8.559476, lng: 125.505488, location: 'Dili' }, + { cell: 'TATU4E', sector: 'TATU4E', site: 'TASITOLU TEMPORARIO1', lat: -8.559476, lng: 125.505488, location: 'Dili' }, + { cell: 'TATU4F', sector: 'TATU4F', site: 'TASITOLU TEMPORARIO1', lat: -8.559476, lng: 125.505488, location: 'Dili' }, + { cell: 'TATU5E', sector: 'TATU5E', site: 'TASITOLU TEMPORARIO1', lat: -8.559476, lng: 125.505488, location: 'Dili' }, + { cell: 'TATU5F', sector: 'TATU5F', site: 'TASITOLU TEMPORARIO1', lat: -8.559476, lng: 125.505488, location: 'Dili' }, + { cell: 'TATU6E', sector: 'TATU6E', site: 'TASITOLU TEMPORARIO1', lat: -8.559476, lng: 125.505488, location: 'Dili' }, + { cell: 'TATU6F', sector: 'TATU6F', site: 'TASITOLU TEMPORARIO1', lat: -8.559476, lng: 125.505488, location: 'Dili' }, + { cell: 'TAVC1E', sector: 'TAVC#1', site: 'TAIBESSI VILLA CARDIM', lat: -8.56577, lng: 125.590753, location: 'Dili' }, + { cell: 'TAVC1F', sector: 'TAVC#1F', site: 'TAIBESSI VILLA CARDIM', lat: -8.56577, lng: 125.590753, location: 'Dili' }, + { cell: 'TAVC2E', sector: 'TAVC#2', site: 'TAIBESSI VILLA CARDIM', lat: -8.56577, lng: 125.590753, location: 'Dili' }, + { cell: 'TAVC2F', sector: 'TAVC#2F', site: 'TAIBESSI VILLA CARDIM', lat: -8.56577, lng: 125.590753, location: 'Dili' }, + { cell: 'TAVC3E', sector: 'TAVC#3', site: 'TAIBESSI VILLA CARDIM', lat: -8.56577, lng: 125.590753, location: 'Dili' }, + { cell: 'TAVC3F', sector: 'TAVC#3F', site: 'TAIBESSI VILLA CARDIM', lat: -8.56577, lng: 125.590753, location: 'Dili' }, + { cell: 'TAVC4E', sector: 'TAVC#4', site: 'TAIBESSI VILLA CARDIM', lat: -8.56577, lng: 125.590753, location: 'Dili' }, + { cell: 'TAVC4F', sector: 'TAVC#4F', site: 'TAIBESSI VILLA CARDIM', lat: -8.56577, lng: 125.590753, location: 'Dili' }, + { cell: 'TAVC5E', sector: 'TAVC#5', site: 'TAIBESSI VILLA CARDIM', lat: -8.56577, lng: 125.590753, location: 'Dili' }, + { cell: 'TAVC5F', sector: 'TAVC#5F', site: 'TAIBESSI VILLA CARDIM', lat: -8.56577, lng: 125.590753, location: 'Dili' }, + { cell: 'TAVC6E', sector: 'TAVC#6', site: 'TAIBESSI VILLA CARDIM', lat: -8.56577, lng: 125.590753, location: 'Dili' }, + { cell: 'TAVC6F', sector: 'TAVC#6F', site: 'TAIBESSI VILLA CARDIM', lat: -8.56577, lng: 125.590753, location: 'Dili' }, + { cell: 'TBES1E', sector: 'TBES#1', site: 'TAIBESSI', lat: -8.562955, lng: 125.588688, location: 'Dili' }, + { cell: 'TBES1F', sector: 'TBES#1F', site: 'TAIBESSI', lat: -8.562955, lng: 125.588688, location: 'Dili' }, + { cell: 'TBES2E', sector: 'TBES#2', site: 'TAIBESSI', lat: -8.562955, lng: 125.588688, location: 'Dili' }, + { cell: 'TBES2F', sector: 'TBES#2F', site: 'TAIBESSI', lat: -8.562955, lng: 125.588688, location: 'Dili' }, + { cell: 'TBES3E', sector: 'TBES#3', site: 'TAIBESSI', lat: -8.562955, lng: 125.588688, location: 'Dili' }, + { cell: 'TBES3F', sector: 'TBES#3F', site: 'TAIBESSI', lat: -8.562955, lng: 125.588688, location: 'Dili' }, + { cell: 'TBES4E', sector: 'TBES#4E', site: 'TAIBESSI', lat: -8.562955, lng: 125.588688, location: 'Dili' }, + { cell: 'TBES4F', sector: 'TBES#4F', site: 'TAIBESSI', lat: -8.562955, lng: 125.588688, location: 'Dili' }, + { cell: 'TBES5E', sector: 'TBES#5E', site: 'TAIBESSI', lat: -8.562955, lng: 125.588688, location: 'Dili' }, + { cell: 'TBES5F', sector: 'TBES#5F', site: 'TAIBESSI', lat: -8.562955, lng: 125.588688, location: 'Dili' }, + { cell: 'TBES6E', sector: 'TBES#6E', site: 'TAIBESSI', lat: -8.562955, lng: 125.588688, location: 'Dili' }, + { cell: 'TBES6F', sector: 'TBES#6F', site: 'TAIBESSI', lat: -8.562955, lng: 125.588688, location: 'Dili' }, + { cell: 'TERA1E', sector: 'TERA#1', site: 'TERRAMOTO', lat: -8.546358, lng: 125.541319, location: 'Dili' }, + { cell: 'TERA1F', sector: 'TERA#1F', site: 'TERRAMOTO', lat: -8.546358, lng: 125.541319, location: 'Dili' }, + { cell: 'TERA2E', sector: 'TERA#2', site: 'TERRAMOTO', lat: -8.546358, lng: 125.541319, location: 'Dili' }, + { cell: 'TERA2F', sector: 'TERA#2F', site: 'TERRAMOTO', lat: -8.546358, lng: 125.541319, location: 'Dili' }, + { cell: 'TERA3E', sector: 'TERA#3', site: 'TERRAMOTO', lat: -8.546358, lng: 125.541319, location: 'Dili' }, + { cell: 'TERA3F', sector: 'TERA#3F', site: 'TERRAMOTO', lat: -8.546358, lng: 125.541319, location: 'Dili' }, + { cell: 'TERA4E', sector: 'TERA#4', site: 'TERRAMOTO', lat: -8.546358, lng: 125.541319, location: 'Dili' }, + { cell: 'TERA4F', sector: 'TERA#4F', site: 'TERRAMOTO', lat: -8.546358, lng: 125.541319, location: 'Dili' }, + { cell: 'TERA5E', sector: 'TERA#5', site: 'TERRAMOTO', lat: -8.546358, lng: 125.541319, location: 'Dili' }, + { cell: 'TERA5F', sector: 'TERA#5F', site: 'TERRAMOTO', lat: -8.546358, lng: 125.541319, location: 'Dili' }, + { cell: 'TERA6E', sector: 'TERA#6', site: 'TERRAMOTO', lat: -8.546358, lng: 125.541319, location: 'Dili' }, + { cell: 'TERA6F', sector: 'TERA#6F', site: 'TERRAMOTO', lat: -8.546358, lng: 125.541319, location: 'Dili' }, + { cell: 'THAL1E', sector: 'THAL#1', site: 'TAIBESSI HAS LARAN', lat: -8.5638, lng: 125.5912, location: 'Dili' }, + { cell: 'THAL2E', sector: 'THAL#2', site: 'TAIBESSI HAS LARAN', lat: -8.5638, lng: 125.5912, location: 'Dili' }, + { cell: 'THAL3E', sector: 'THAL#3', site: 'TAIBESSI HAS LARAN', lat: -8.5638, lng: 125.5912, location: 'Dili' }, + { cell: 'THAL4E', sector: 'THAL#4', site: 'TAIBESSI HAS LARAN', lat: -8.5638, lng: 125.5912, location: 'Dili' }, + { cell: 'THAL5E', sector: 'THAL#5', site: 'TAIBESSI HAS LARAN', lat: -8.5638, lng: 125.5912, location: 'Dili' }, + { cell: 'THAL6E', sector: 'THAL#6', site: 'TAIBESSI HAS LARAN', lat: -8.5638, lng: 125.5912, location: 'Dili' }, + { cell: 'TITE1E', sector: 'TITE1E', site: 'TIBAR TEMPORARIO', lat: -8.567375, lng: 125.490274, location: 'Dili' }, + { cell: 'TITE1F', sector: 'TITE1F', site: 'TIBAR TEMPORARIO', lat: -8.567375, lng: 125.490274, location: 'Dili' }, + { cell: 'TITE2E', sector: 'TITE2E', site: 'TIBAR TEMPORARIO', lat: -8.567375, lng: 125.490274, location: 'Dili' }, + { cell: 'TITE2F', sector: 'TITE2F', site: 'TIBAR TEMPORARIO', lat: -8.567375, lng: 125.490274, location: 'Dili' }, + { cell: 'TITE3E', sector: 'TITE3E', site: 'TIBAR TEMPORARIO', lat: -8.567375, lng: 125.490274, location: 'Dili' }, + { cell: 'TITE3F', sector: 'TITE3F', site: 'TIBAR TEMPORARIO', lat: -8.567375, lng: 125.490274, location: 'Dili' }, + { cell: 'TITE4E', sector: 'TITE4E', site: 'TIBAR TEMPORARIO', lat: -8.567375, lng: 125.490274, location: 'Dili' }, + { cell: 'TITE4F', sector: 'TITE4F', site: 'TIBAR TEMPORARIO', lat: -8.567375, lng: 125.490274, location: 'Dili' }, + { cell: 'TITE5E', sector: 'TITE5E', site: 'TIBAR TEMPORARIO', lat: -8.567375, lng: 125.490274, location: 'Dili' }, + { cell: 'TITE5F', sector: 'TITE5F', site: 'TIBAR TEMPORARIO', lat: -8.567375, lng: 125.490274, location: 'Dili' }, + { cell: 'TITE6E', sector: 'TITE6E', site: 'TIBAR TEMPORARIO', lat: -8.567375, lng: 125.490274, location: 'Dili' }, + { cell: 'TITE6F', sector: 'TITE6F', site: 'TIBAR TEMPORARIO', lat: -8.567375, lng: 125.490274, location: 'Dili' }, + { cell: 'TPIN1E', sector: 'TPIN#1', site: 'TIMOR PLAZA INDOOR', lat: -8.553847, lng: 125.54154, location: 'Dili' }, + { cell: 'TPOD1E', sector: 'TPOD#1', site: 'TIMOR PLAZA OUTDOOR', lat: -8.553878, lng: 125.541972, location: 'Dili' }, + { cell: 'TPOD1F', sector: 'TPOD#1F', site: 'TIMOR PLAZA OUTDOOR', lat: -8.553878, lng: 125.541972, location: 'Dili' }, + { cell: 'TPOD2E', sector: 'TPOD#2', site: 'TIMOR PLAZA OUTDOOR', lat: -8.553878, lng: 125.541972, location: 'Dili' }, + { cell: 'TPOD2F', sector: 'TPOD#2F', site: 'TIMOR PLAZA OUTDOOR', lat: -8.553878, lng: 125.541972, location: 'Dili' }, + { cell: 'TPOD3E', sector: 'TPOD#3', site: 'TIMOR PLAZA OUTDOOR', lat: -8.553677, lng: 125.541174, location: 'Dili' }, + { cell: 'TPOD3F', sector: 'TPOD#3F', site: 'TIMOR PLAZA OUTDOOR', lat: -8.553878, lng: 125.541972, location: 'Dili' }, + { cell: 'TPOD4E', sector: 'TPOD#4', site: 'TIMOR PLAZA OUTDOOR', lat: -8.553878, lng: 125.541972, location: 'Dili' }, + { cell: 'TPOD4F', sector: 'TPOD#4F', site: 'TIMOR PLAZA OUTDOOR', lat: -8.553878, lng: 125.541972, location: 'Dili' }, + { cell: 'TPOD5E', sector: 'TPOD#5', site: 'TIMOR PLAZA OUTDOOR', lat: -8.553878, lng: 125.541972, location: 'Dili' }, + { cell: 'TPOD5F', sector: 'TPOD#5F', site: 'TIMOR PLAZA OUTDOOR', lat: -8.553878, lng: 125.541972, location: 'Dili' }, + { cell: 'TPOD6E', sector: 'TPOD#6', site: 'TIMOR PLAZA OUTDOOR', lat: -8.553878, lng: 125.541972, location: 'Dili' }, + { cell: 'TPOD6F', sector: 'TPOD#6F', site: 'TIMOR PLAZA OUTDOOR', lat: -8.553878, lng: 125.541972, location: 'Dili' }, + { cell: 'TUBA1E', sector: 'TUBA#1', site: 'TUBARAI', lat: -8.56849, lng: 125.59189, location: 'Dili' }, + { cell: 'TUBA1F', sector: 'TUBA1F', site: 'TUBARAI', lat: -8.56849, lng: 125.59189, location: 'Dili' }, + { cell: 'TUBA2E', sector: 'TUBA#2', site: 'TUBARAI', lat: -8.56849, lng: 125.59189, location: 'Dili' }, + { cell: 'TUBA2F', sector: 'TUBA2F', site: 'TUBARAI', lat: -8.56849, lng: 125.59189, location: 'Dili' }, + { cell: 'TUBA3E', sector: 'TUBA#3', site: 'TUBARAI', lat: -8.56849, lng: 125.59189, location: 'Dili' }, + { cell: 'TUBA3F', sector: 'TUBA3F', site: 'TUBARAI', lat: -8.56849, lng: 125.59189, location: 'Dili' }, + { cell: 'TUBA4E', sector: 'TUBA4E', site: 'TUBARAI', lat: -8.56849, lng: 125.59189, location: 'Dili' }, + { cell: 'TUBA4F', sector: 'TUBA4F', site: 'TUBARAI', lat: -8.56849, lng: 125.59189, location: 'Dili' }, + { cell: 'TUBA5E', sector: 'TUBA5E', site: 'TUBARAI', lat: -8.56849, lng: 125.59189, location: 'Dili' }, + { cell: 'TUBA5F', sector: 'TUBA5F', site: 'TUBARAI', lat: -8.56849, lng: 125.59189, location: 'Dili' }, + { cell: 'TUBA6E', sector: 'TUBA6E', site: 'TUBARAI', lat: -8.56849, lng: 125.59189, location: 'Dili' }, + { cell: 'TUBA6F', sector: 'TUBA6F', site: 'TUBARAI', lat: -8.56849, lng: 125.59189, location: 'Dili' }, + { cell: 'TUTI1E', sector: 'TUTI#1', site: 'TUTI', lat: -8.550753, lng: 125.538265, location: 'Dili' }, + { cell: 'TUTI1F', sector: 'TUTI#1F', site: 'TUTI', lat: -8.550753, lng: 125.538265, location: 'Dili' }, + { cell: 'TUTI2E', sector: 'TUTI#2', site: 'TUTI', lat: -8.550753, lng: 125.538265, location: 'Dili' }, + { cell: 'TUTI2F', sector: 'TUTI#2F', site: 'TUTI', lat: -8.550753, lng: 125.538265, location: 'Dili' }, + { cell: 'TUTI3E', sector: 'TUTI#3', site: 'TUTI', lat: -8.550753, lng: 125.538265, location: 'Dili' }, + { cell: 'TUTI3F', sector: 'TUTI#3F', site: 'TUTI', lat: -8.550753, lng: 125.538265, location: 'Dili' }, + { cell: 'TUTI4E', sector: 'TUTI#4', site: 'TUTI', lat: -8.550753, lng: 125.538265, location: 'Dili' }, + { cell: 'TUTI4F', sector: 'TUTI#4F', site: 'TUTI', lat: -8.550753, lng: 125.538265, location: 'Dili' }, + { cell: 'TUTI5E', sector: 'TUTI#5', site: 'TUTI', lat: -8.550753, lng: 125.538265, location: 'Dili' }, + { cell: 'TUTI5F', sector: 'TUTI#5F', site: 'TUTI', lat: -8.550753, lng: 125.538265, location: 'Dili' }, + { cell: 'TUTI6E', sector: 'TUTI#6', site: 'TUTI', lat: -8.550753, lng: 125.538265, location: 'Dili' }, + { cell: 'TUTI6F', sector: 'TUTI#6F', site: 'TUTI', lat: -8.550753, lng: 125.538265, location: 'Dili' }, + { cell: 'VERD1E', sector: 'VERD#1', site: 'VILA VERDE', lat: -8.562632, lng: 125.567864, location: 'Dili' }, + { cell: 'VERD1F', sector: 'VERD#1F', site: 'VILA VERDE', lat: -8.562632, lng: 125.567864, location: 'Dili' }, + { cell: 'VERD2E', sector: 'VERD#2', site: 'VILA VERDE', lat: -8.562632, lng: 125.567864, location: 'Dili' }, + { cell: 'VERD2F', sector: 'VERD#2F', site: 'VILA VERDE', lat: -8.562632, lng: 125.567864, location: 'Dili' }, + { cell: 'VERD3E', sector: 'VERD#3', site: 'VILA VERDE', lat: -8.562632, lng: 125.567864, location: 'Dili' }, + { cell: 'VERD3F', sector: 'VERD#3F', site: 'VILA VERDE', lat: -8.562632, lng: 125.567864, location: 'Dili' }, + { cell: 'VERD4E', sector: 'VERD#4', site: 'VILA VERDE', lat: -8.562632, lng: 125.567864, location: 'Dili' }, + { cell: 'VERD4F', sector: 'VERD#4F', site: 'VILA VERDE', lat: -8.562632, lng: 125.567864, location: 'Dili' }, + { cell: 'VERD5E', sector: 'VERD#5', site: 'VILA VERDE', lat: -8.562632, lng: 125.567864, location: 'Dili' }, + { cell: 'VERD5F', sector: 'VERD#5F', site: 'VILA VERDE', lat: -8.562632, lng: 125.567864, location: 'Dili' }, + { cell: 'VERD6E', sector: 'VERD#6', site: 'VILA VERDE', lat: -8.562632, lng: 125.567864, location: 'Dili' }, + { cell: 'VERD6F', sector: 'VERD#6F', site: 'VILA VERDE', lat: -8.562632, lng: 125.567864, location: 'Dili' }, + { cell: 'BBAR1E', sector: 'BBAR#1', site: 'BALIBAR', lat: -8.598, lng: 125.6035, location: 'Dili (District)' }, + { cell: 'BBAR3E', sector: 'BBAR#3', site: 'BALIBAR', lat: -8.598, lng: 125.6035, location: 'Dili (District)' }, +]; \ No newline at end of file diff --git a/src/routing/AppRoutingSetup.tsx b/src/routing/AppRoutingSetup.tsx index 6d162bd..2300a7f 100644 --- a/src/routing/AppRoutingSetup.tsx +++ b/src/routing/AppRoutingSetup.tsx @@ -54,16 +54,18 @@ import WithdrawalEmoney from '@/pages/transaction/withdrawl-emoney/WithdrawalEmo import ManageCards from '@/pages/cards/manage-card/ManageCard'; import HistoryCard from '@/pages/cards/history-card/HistoryCard'; -// DISBURSEMENT +import ComingSoonPage from '@/pages/ComingSoonPage'; const AppRoutingSetup = (): ReactElement => { return ( - }> + {/* }> */} }> } /> + } /> + } /> - } /> + {/* } /> } /> } /> } /> @@ -87,7 +89,7 @@ const AppRoutingSetup = (): ReactElement => { } /> - } /> + } /> @@ -98,10 +100,10 @@ const AppRoutingSetup = (): ReactElement => { } /> } /> } /> - } /> + } /> */} {/* cards */} - } /> + {/* } /> } /> @@ -131,16 +133,16 @@ const AppRoutingSetup = (): ReactElement => { } - /> + /> */} {/* DISBURSEMENT */} - } - /> + /> */} {/* DISBURSEMENT */} - + {/* */} } /> } /> } /> diff --git a/tsconfig.json b/tsconfig.json index 1f0a192..deb2698 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,6 +5,7 @@ "lib": ["ES2020", "DOM", "DOM.Iterable"], "module": "ESNext", "skipLibCheck": true, + "types": ["google.maps", "vite/client"], /* Bundler mode */ "moduleResolution": "bundler",