From ed16e0745f02290074f8b806742cdedbc0da32fc Mon Sep 17 00:00:00 2001 From: aliqasemi Date: Thu, 16 Dec 2021 13:16:01 +0330 Subject: [PATCH] fix --- app/Providers/EventServiceProvider.php | 6 +- cityTag.json | 1 + composer.json | 18 +- composer.lock | 2113 +++++++------ .../2021_12_16_130810_update_user.php | 28 + database/seeds/DatabaseSeeder.php | 23 +- .../assets/css/bootstrap.min.css | 6 + .../assets/css/jquery.fancybox.min.css | 1 + .../assets/css/modification.css | 146 + .../assets/css/style.css | 2777 +++++++++++++++++ .../assets/css/swiper-bundle.min.css | 13 + .../assets/js/ScrollToPlugin.min.js | 10 + .../assets/js/ScrollTrigger.min.js | 10 + .../assets/js/bootstrap.min.js | 6 + .../assets/js/custom.js | 231 ++ .../assets/js/font-awesome.min.js | 2 + .../assets/js/gsap.min.js | 10 + .../assets/js/jquery-3.6.0.min.js | 2 + .../assets/js/jquery.fancybox.min.js | 13 + .../assets/js/jquery.mixitup.min.js | 14 + .../assets/js/parallax.min.js | 1 + .../assets/js/popper.min.js | 5 + .../assets/js/rellax-custom.js | 22 + .../assets/js/rellax.min.js | 14 + .../assets/js/smooth-scroll.js | 122 + .../assets/js/swiper-bundle.min.js | 13 + .../cache/footer-footer-Sn6NB.blade.php | 1 + .../cache/header-header-F7Y23.blade.php | 1 + .../cache/news_show-news-d44wV.blade.php | 421 +++ .../product_show-product-G27S6.blade.php | 439 +++ .../cache/public-feature_box-pOYVj.blade.php | 58 + .../frames/cache/public-info-TjvIO.blade.php | 24 + .../cache/public-info_1-FymDi.blade.php | 32 + .../cache/public-info_3-FOUT8.blade.php | 16 + .../cache/public-slider-K6dwg.blade.php | 59 + .../custom/fa/frames/cache/user_frames.php | 87 + .../custom/fa/frames/footer-footer-Sn6NB.php | 6 + .../custom/fa/frames/header-header-F7Y23.php | 6 + .../frames/product_detail-product-jkLmx.php | 121 + .../fa/frames/product_show-product-G27S6.php | 6 + .../frames/product_show-product_1-2rIm4.php | 55 + .../custom/fa/pages.php | 17 + .../custom/fa/pages/home-dEApOWB9Ov/main.php | 15 + .../pages/product-details-FFfrp8v0EE/main.php | 0 .../fa/pages/products-uqGN5YASiK/main.php | 0 .../custom/fa/pages/test-AZzOpqwVL3/main.php | 0 .../custom/fa/pages/user_pages.php | 35 + .../frames/footer/footer/cache.blade.php | 0 .../frames/footer/footer/config.php | 6 + .../frames/footer/footer/content.blade.php | 1 + .../frames/footer/frames.php | 9 + .../frames/header/frames.php | 8 + .../frames/header/header/cache.blade.php | 0 .../frames/header/header/config.php | 6 + .../frames/header/header/content.blade.php | 1 + .../frames/product_detail/frames.php | 9 + .../product_detail/product/cache.blade.php | 1 + .../frames/product_detail/product/config.php | 5 + .../product_detail/product/content.blade.php | 1 + .../frames/product_show/frames.php | 9 + .../frames/product_show/product/config.php | 5 + .../product_show/product/content.blade.php | 100 + .../frames/public/frames.php | 5 + .../demopofo-v4_d1uWOJTb0M/master.blade.php | 95 + .../demopofo-v4_d1uWOJTb0M/metadata.php | 69 + .../demopofo-v4_d1uWOJTb0M/settings.php | 46 + scity.json | 1 + sdistinc.json | 1 + webpack.mix.js | 5 +- 69 files changed, 6449 insertions(+), 940 deletions(-) create mode 100644 cityTag.json create mode 100644 database/migrations/2021_12_16_130810_update_user.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/css/bootstrap.min.css create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/css/jquery.fancybox.min.css create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/css/modification.css create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/css/style.css create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/css/swiper-bundle.min.css create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/ScrollToPlugin.min.js create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/ScrollTrigger.min.js create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/bootstrap.min.js create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/custom.js create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/font-awesome.min.js create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/gsap.min.js create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/jquery-3.6.0.min.js create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/jquery.fancybox.min.js create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/jquery.mixitup.min.js create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/parallax.min.js create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/popper.min.js create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/rellax-custom.js create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/rellax.min.js create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/smooth-scroll.js create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/swiper-bundle.min.js create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/footer-footer-Sn6NB.blade.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/header-header-F7Y23.blade.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/news_show-news-d44wV.blade.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/product_show-product-G27S6.blade.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/public-feature_box-pOYVj.blade.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/public-info-TjvIO.blade.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/public-info_1-FymDi.blade.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/public-info_3-FOUT8.blade.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/public-slider-K6dwg.blade.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/user_frames.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/footer-footer-Sn6NB.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/header-header-F7Y23.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/product_detail-product-jkLmx.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/product_show-product-G27S6.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/product_show-product_1-2rIm4.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/pages.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/pages/home-dEApOWB9Ov/main.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/pages/product-details-FFfrp8v0EE/main.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/pages/products-uqGN5YASiK/main.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/pages/test-AZzOpqwVL3/main.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/pages/user_pages.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/footer/footer/cache.blade.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/footer/footer/config.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/footer/footer/content.blade.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/footer/frames.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/header/frames.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/header/header/cache.blade.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/header/header/config.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/header/header/content.blade.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/product_detail/frames.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/product_detail/product/cache.blade.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/product_detail/product/config.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/product_detail/product/content.blade.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/product_show/frames.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/product_show/product/config.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/product_show/product/content.blade.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/public/frames.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/master.blade.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/metadata.php create mode 100644 resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/settings.php create mode 100644 scity.json create mode 100644 sdistinc.json diff --git a/app/Providers/EventServiceProvider.php b/app/Providers/EventServiceProvider.php index b8fcd7f..89d7d1c 100644 --- a/app/Providers/EventServiceProvider.php +++ b/app/Providers/EventServiceProvider.php @@ -25,9 +25,9 @@ class EventServiceProvider extends ServiceProvider SmsSent::class => [ StoreSmsInDatabase::class, ], - UploadSiteEvent::class => [ - UploadSiteListener::class, - ] +// UploadSiteEvent::class => [ +// UploadSiteListener::class, +// ] ]; /** diff --git a/cityTag.json b/cityTag.json new file mode 100644 index 0000000..039452c --- /dev/null +++ b/cityTag.json @@ -0,0 +1 @@ +[{"title":"\u0647\u0641\u062f\u0647 \u0634\u0647\u0631\u06cc\u0648\u0631","type":"STREET","district_id":992},{"title":"\u0631\u06cc","type":"STREET","district_id":992},{"title":"\u062e\u06cc\u0627\u0628\u0627\u0646 \u0622\u0628\u0634\u0627\u0631","type":"STREET","district_id":992},{"title":"\u06af\u0648\u062a\u0647","type":"STREET","district_id":992},{"title":"\u0645\u062d\u0644\u0627\u062a\u06cc","type":"HIGHWAY","district_id":992},{"title":"\u0627\u0645\u06cc\u062f \u062f\u0698\u0628\u0627\u0646","type":"TOWN","district_id":907},{"title":"\u062e\u0631\u0627\u0632\u06cc","type":"HIGHWAY","district_id":907},{"title":"\u0646\u0645\u0648\u0646\u0647","type":"TOWN","district_id":907},{"title":"\u0633\u0628\u0627\u0631\u06cc","type":"STREET","district_id":40},{"title":"\u0645\u0648\u062d\u062f \u062f\u0627\u0646\u0634","type":"STREET","district_id":40},{"title":"\u0645\u0646\u062c\u06cc\u0644","type":"STREET","district_id":40},{"title":"\u06a9\u0644\u0647\u0631","type":"STREET","district_id":654},{"title":"\u0622\u0630\u0631\u0628\u0627\u06cc\u062c\u0627\u0646","type":"STREET","district_id":654},{"title":"\u0631\u0648\u062f\u06a9\u06cc","type":"STREET","district_id":654},{"title":"\u0622\u0632\u0627\u062f\u06cc","type":"STREET","district_id":654},{"title":"\u0642\u062f\u0631\u062a \u067e\u0627\u06a9\u06cc","type":"STREET","district_id":198},{"title":"\u0644\u0642\u0645\u0627\u0646 \u062d\u06a9\u06cc\u0645","type":"STREET","district_id":198},{"title":"\u0627\u0645\u0627\u0645\u200c\u0632\u0627\u062f\u0647 \u062d\u0633\u0646","type":"STREET","district_id":198},{"title":"\u0633\u0626\u0648\u0644","type":"STREET","district_id":87},{"title":"\u0641\u062c\u0631","type":"TOWN","district_id":87},{"title":"\u0648\u0646\u06a9","type":"STREET","district_id":87},{"title":"\u0631\u0634\u06cc\u062f \u06cc\u0627\u0633\u0645\u06cc","type":"STREET","district_id":87},{"title":"\u0622\u0641\u062a\u0627\u0628","type":"STREET","district_id":87},{"title":"\u062e\u062f\u0627\u0645\u06cc","type":"STREET","district_id":87},{"title":"\u0622\u0631\u0698\u0627\u0646\u062a\u06cc\u0646","type":"SQUARE","district_id":301},{"title":"\u0627\u062d\u0645\u062f \u0642\u0635\u06cc\u0631","type":"STREET","district_id":301},{"title":"\u062e\u0627\u0644\u062f \u0627\u0633\u0644\u0627\u0645\u0628\u0648\u0644\u06cc","type":"STREET","district_id":301},{"title":"\u0648\u0644\u06cc\u0639\u0635\u0631","type":"STREET","district_id":301},{"title":"\u0627\u0644\u0648\u0646\u062f","type":"STREET","district_id":301},{"title":"\u0628\u06cc\u0647\u0642\u06cc","type":"STREET","district_id":301},{"title":"\u0641\u0631\u062d\u0632\u0627\u062f\u06cc","type":"BOULEVARD","district_id":925},{"title":"\u0633\u0631\u0648 \u063a\u0631\u0628\u06cc","type":"STREET","district_id":925},{"title":"\u06a9\u0648\u0647\u0633\u062a\u0627\u0646","type":"STREET","district_id":925},{"title":"\u0637\u0627\u0647\u0631\u062e\u0627\u0646\u06cc","type":"STREET","district_id":925},{"title":"\u0647\u0627\u0634\u0645\u06cc \u0631\u0641\u0633\u0646\u062c\u0627\u0646\u06cc","type":"HIGHWAY","district_id":925},{"title":"\u062f\u0645\u0627\u0648\u0646\u062f","type":"STREET","district_id":951},{"title":"\u06cc\u0627\u0633\u06cc\u0646\u06cc","type":"HIGHWAY","district_id":951},{"title":"\u0686\u0627\u06cc\u0686\u06cc","type":"SQUARE","district_id":951},{"title":"\u062e\u0627\u0642\u0627\u0646\u06cc","type":"STREET","district_id":951},{"title":"\u0627\u0637\u0644\u0627\u0639\u0627\u062a","type":"SQUARE","district_id":951},{"title":"\u0628\u0644\u0627\u0644 \u062d\u0628\u0634\u06cc","type":"STREET","district_id":951},{"title":"\u0627\u0628\u0648\u0630\u0631","type":"BOULEVARD","district_id":273},{"title":"\u0645\u06cc\u062b\u0645","type":"CROSSROAD","district_id":273},{"title":"\u0646\u0628\u0631\u062f","type":"STREET","district_id":273},{"title":"\u0645\u062d\u0644\u0627\u062a\u06cc","type":"HIGHWAY","district_id":273},{"title":"\u0639\u0644\u0627\u0645\u0647 \u0627\u0645\u06cc\u0646\u06cc","type":"STREET","district_id":273},{"title":"\u062f\u0647\u200c\u062d\u0642\u06cc","type":"STREET","district_id":273},{"title":"\u0632\u0645\u0632\u0645","type":"STREET","district_id":273},{"title":"\u06af\u0644\u0634\u0646\u0627\u0633","type":"STREET","district_id":273},{"title":"\u0627\u0626\u0645\u0647 \u0627\u0637\u0647\u0627\u0631","type":"STREET","district_id":291},{"title":"\u0627\u0628\u0648\u0630\u0631","type":"STREET","district_id":291},{"title":"\u0646\u0628\u0631\u062f \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":291},{"title":"\u067e\u0631\u0633\u062a\u0627\u0631","type":"STREET","district_id":291},{"title":"\u0645\u0642\u062f\u0627\u062f","type":"STREET","district_id":291},{"title":"\u06a9\u0631\u06cc\u0645\u0634\u0627\u0647\u06cc\u0627\u0646","type":"STREET","district_id":291},{"title":"\u0627\u0628\u0627\u0630\u0631","type":"BOULEVARD","district_id":173},{"title":"\u067e\u06cc\u0627\u0645\u0628\u0631 \u0634\u0631\u0642\u06cc","type":"STREET","district_id":173},{"title":"\u062f\u0648\u0645 \u0635\u0627\u062f\u0642\u06cc\u0647","type":"SQUARE","district_id":173},{"title":"\u0634\u0627\u0644\u06cc","type":"STREET","district_id":173},{"title":"\u06af\u0644\u0633\u062a\u0627\u0646","type":"STREET","district_id":173},{"title":"\u0627\u0633\u06a9\u0646\u062f\u0631\u0632\u0627\u062f\u0647","type":"STREET","district_id":173},{"title":"\u06a9\u0627\u0634\u0627\u0646\u06cc","type":"HIGHWAY","district_id":173},{"title":"\u0627\u0628\u0631\u0627\u0647\u06cc\u0645\u200c\u0622\u0628\u0627\u062f","type":"STREET","district_id":191},{"title":"\u0632\u0646\u062f\u06cc\u0647","type":"STREET","district_id":191},{"title":"\u0627\u0633\u062f\u0622\u0628\u0627\u062f\u06cc","type":"STREET","district_id":191},{"title":"\u0627\u0644\u063a\u062f\u06cc\u0631","type":"BOULEVARD","district_id":191},{"title":"\u063a\u06cc\u0648\u0631\u06cc","type":"STREET","district_id":979},{"title":"\u0627\u0628\u0646 \u0628\u0627\u0628\u0648\u06cc\u0647","type":"STREET","district_id":979},{"title":"\u0628\u0633\u06cc\u062c \u0645\u0633\u062a\u0636\u0639\u0641\u06cc\u0646","type":"SQUARE","district_id":979},{"title":"\u0641\u062f\u0627\u06cc\u06cc\u0627\u0646 \u0627\u0633\u0644\u0627\u0645","type":"STREET","district_id":979},{"title":"\u06a9\u0631\u06cc\u0645\u06cc","type":"HIGHWAY","district_id":979},{"title":"\u0627\u0628\u0648\u0630\u0631","type":"BOULEVARD","district_id":1020},{"title":"\u0645\u0633\u0644\u0645","type":"STREET","district_id":1020},{"title":"\u0646\u0628\u0631\u062f","type":"STREET","district_id":1020},{"title":"\u0648\u062d\u062f\u062a","type":"STREET","district_id":1020},{"title":"\u0627\u0642\u0627\u062c\u0627\u0646\u0644\u0648","type":"STREET","district_id":1020},{"title":"\u062e\u0627\u0648\u0631\u0627\u0646","type":"STREET","district_id":1020},{"title":"\u062f\u0647\u200c\u062d\u0642\u06cc","type":"STREET","district_id":1020},{"title":"\u0630\u0648\u0627\u0644\u0641\u0642\u0627\u0631\u06cc","type":"STREET","district_id":1019},{"title":"\u062e\u0627\u0648\u0631\u0627\u0646","type":"STREET","district_id":1019},{"title":"\u0631\u0636\u0627\u06cc\u06cc","type":"STREET","district_id":1019},{"title":"\u0647\u0627\u0634\u0645\u200c\u0622\u0628\u0627\u062f","type":"STREET","district_id":1019},{"title":"\u0645\u0628\u0639\u062b","type":"STREET","district_id":1019},{"title":"\u0627\u062a\u062d\u0627\u062f","type":"BOULEVARD","district_id":990},{"title":"\u0627\u062d\u0633\u0627\u0646","type":"BOULEVARD","district_id":990},{"title":"\u0641\u0631\u0647\u0646\u06af\u0633\u0631\u0627","type":"SUBWAY","district_id":990},{"title":"\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc\u0647 \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":68},{"title":"\u062f\u06cc\u0628\u0627\u062c\u06cc \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":68},{"title":"\u06a9\u0644\u0627\u0647\u062f\u0648\u0632","type":"STREET","district_id":68},{"title":"\u067e\u0627\u0633\u062f\u0627\u0631\u0627\u0646","type":"STREET","district_id":68},{"title":"\u0645\u0646\u0638\u0631\u06cc\u0647","type":"STREET","district_id":68},{"title":"\u062c\u0647\u0627\u0646\u062a\u0627\u0628","type":"STREET","district_id":68},{"title":"\u06a9\u0627\u0648\u0647","type":"BOULEVARD","district_id":68},{"title":"\u0633\u0646\u062c\u0627\u0628\u06cc","type":"STREET","district_id":68},{"title":"\u0635\u0646\u0627\u06cc\u0639","type":"STREET","district_id":943},{"title":"\u06af\u0644\u0632\u0627\u0631","type":"STREET","district_id":943},{"title":"\u0646\u0648\u0628\u0646\u06cc\u0627\u062f","type":"SUBWAY","district_id":943},{"title":"\u0627\u0631\u0627\u0645\u0646\u0647","type":"STREET","district_id":131},{"title":"\u0646\u0627\u0645\u062c\u0648","type":"SQUARE","district_id":131},{"title":"\u0633\u0628\u0644\u0627\u0646 \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":131},{"title":"\u0645\u062f\u0646\u06cc","type":"STREET","district_id":131},{"title":"\u0627\u062c\u0627\u0631\u0647\u200c\u062f\u0627\u0631","type":"STREET","district_id":131},{"title":"\u0641\u0631\u062f\u0648\u0633 \u063a\u0631\u0628","type":"BOULEVARD","district_id":160},{"title":"\u0628\u0647\u0627\u0631 \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":160},{"title":"\u0628\u0647\u0627\u0631 \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":160},{"title":"\u0647\u0644\u0627\u0644 \u0627\u062d\u0645\u0631","type":"STREET","district_id":160},{"title":"\u0628\u06cc\u062f\u0633\u062a\u0627\u0646","type":"STREET","district_id":53},{"title":"\u0646\u0648\u0628\u0647\u0627\u0631","type":"STREET","district_id":53},{"title":"\u06af\u0644\u0686\u06cc\u0646","type":"STREET","district_id":53},{"title":"\u0627\u0631\u062a\u0634","type":"BOULEVARD","district_id":53},{"title":"\u0628\u0627\u0628\u0627\u06cc\u06cc","type":"HIGHWAY","district_id":53},{"title":"\u0622\u0628\u0634\u0627\u0631","type":"STREET","district_id":53},{"title":"\u0634\u0647\u06cc\u062f \u0645\u062d\u0644\u0627\u062a\u06cc","type":"SUBWAY","district_id":53},{"title":"\u0627\u0633\u062a\u0627\u062f \u0645\u0639\u06cc\u0646","type":"BOULEVARD","district_id":195},{"title":"\u0644\u0639\u0644","type":"STREET","district_id":195},{"title":"\u0622\u0632\u0627\u062f\u06cc","type":"SQUARE","district_id":195},{"title":"\u062f\u0627\u0645\u067e\u0632\u0634\u06a9\u06cc","type":"STREET","district_id":195},{"title":"\u0647\u0627\u0634\u0645\u06cc","type":"STREET","district_id":195},{"title":"\u063a\u06cc\u0627\u062b\u0648\u0646\u062f","type":"STREET","district_id":195},{"title":"\u062f\u0647\u0642\u0627\u0646","type":"STREET","district_id":195},{"title":"\u0637\u0648\u0633 \u063a\u0631\u0628\u06cc","type":"STREET","district_id":195},{"title":"\u0627\u0633\u062a\u062e\u0631","type":"STREET","district_id":112},{"title":"\u0634\u0647\u06cc\u062f \u0628\u0647\u0634\u062a\u06cc","type":"TOWN","district_id":112},{"title":"\u0628\u0627\u0628\u0627\u06cc\u06cc","type":"HIGHWAY","district_id":112},{"title":"\u062f\u0627\u0646\u0634\u06af\u0627\u0647","type":"BOULEVARD","district_id":112},{"title":"\u0628\u0647\u0627\u0631","type":"BOULEVARD","district_id":112},{"title":"\u0634\u0647\u0631\u06a9 \u0634\u0647\u06cc\u062f \u0628\u0647\u0634\u062a\u06cc","type":"TOWN","district_id":112},{"title":"\u0645\u06cc\u062b\u0627\u0642","type":"STREET","district_id":256},{"title":"\u0644\u0637\u06cc\u0641\u06cc","type":"STREET","district_id":256},{"title":"\u0647\u0648\u06cc\u0632\u0647","type":"SQUARE","district_id":256},{"title":"\u0627\u0633\u06a9\u0646\u062f\u0631\u06cc \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":283},{"title":"\u0645\u0631\u062a\u0636\u0648\u06cc","type":"STREET","district_id":283},{"title":"\u06a9\u0645\u06cc\u0644","type":"STREET","district_id":283},{"title":"\u06a9\u0645\u0627\u0644\u06cc","type":"STREET","district_id":283},{"title":"\u0646\u0648\u0627\u0628","type":"HIGHWAY","district_id":283},{"title":"\u0627\u0645\u0627\u0645 \u062e\u0645\u06cc\u0646\u06cc","type":"STREET","district_id":283},{"title":"\u0634\u06a9\u0648\u0641\u0647","type":"STREET","district_id":283},{"title":"\u0622\u0630\u0631\u0628\u0627\u06cc\u062c\u0627\u0646","type":"STREET","district_id":283},{"title":"\u06f2\u06f0 \u0645\u062a\u0631\u06cc \u0627\u0641\u0633\u0631\u06cc\u0647","type":"STREET","district_id":249},{"title":"\u062e\u0627\u062a\u0645 \u0627\u0644\u0627\u0646\u0628\u06cc\u0627","type":"STREET","district_id":249},{"title":"\u0646\u06cc\u06a9\u0648\u0639\u0645\u0644","type":"STREET","district_id":249},{"title":"\u0628\u0633\u06cc\u062c","type":"HIGHWAY","district_id":249},{"title":"\u0645\u0648\u062d\u062f \u062f\u0627\u0646\u0634","type":"STREET","district_id":48},{"title":"\u06af\u0644\u0633\u062a\u0627\u0646 \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":48},{"title":"\u06af\u0644\u0633\u062a\u0627\u0646 \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":48},{"title":"\u0645\u0646\u062c\u06cc\u0644","type":"STREET","district_id":48},{"title":"\u0639\u0632\u062a\u200c\u0627\u0644\u0644\u0647 \u0627\u0646\u062a\u0638\u0627\u0645\u06cc","type":"STREET","district_id":48},{"title":"\u0641\u06cc\u0631\u0648\u0632\u0628\u062e\u0634","type":"STREET","district_id":48},{"title":"\u0635\u0627\u062d\u0628\u0642\u0631\u0627\u0646\u06cc\u0647","type":"TOWN","district_id":48},{"title":"\u0627\u06a9\u0628\u0627\u062a\u0627\u0646","type":"TOWN","district_id":167},{"title":"\u0628\u0648\u0630\u0631\u06cc","type":"STREET","district_id":167},{"title":"\u0635\u0646\u0627\u06cc\u0639 \u0647\u0648\u0627\u067e\u06cc\u0645\u0627\u06cc\u06cc","type":"STREET","district_id":167},{"title":"\u0634\u0647\u0631\u06a9 \u0627\u06a9\u0628\u0627\u062a\u0627\u0646","type":"SUBWAY","district_id":167},{"title":"\u0633\u0631\u062f\u0627\u0631 \u062c\u0646\u06af\u0644 \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":143},{"title":"\u0633\u06cc\u0645\u0648\u0646 \u0628\u0648\u0644\u06cc\u0648\u0627\u0631","type":"BOULEVARD","district_id":143},{"title":"\u0641\u06a9\u0648\u0631\u06cc","type":"STREET","district_id":143},{"title":"\u0632\u06cc\u062a\u0648\u0646","type":"STREET","district_id":143},{"title":"\u0635\u0628\u0627","type":"BOULEVARD","district_id":143},{"title":"\u0627\u0634\u0631\u0641\u06cc \u0627\u0635\u0641\u0647\u0627\u0646\u06cc","type":"HIGHWAY","district_id":143},{"title":"\u0641\u06cc\u0627\u0636\u06cc","type":"STREET","district_id":85},{"title":"\u0648\u0644\u06cc\u0639\u0635\u0631","type":"STREET","district_id":85},{"title":"\u0686\u0646\u0627\u0631\u0627\u0646","type":"STREET","district_id":85},{"title":"\u062e\u0632\u0631","type":"STREET","district_id":85},{"title":"\u0622\u0642\u0627 \u0628\u0632\u0631\u06af\u06cc","type":"STREET","district_id":85},{"title":"\u0634\u0631\u06cc\u0641\u06cc\u200c\u0645\u0646\u0634","type":"STREET","district_id":85},{"title":"\u0634\u0631\u06cc\u0639\u062a\u06cc","type":"STREET","district_id":85},{"title":"\u0627\u0633\u062a\u0627\u0646\u0628\u0648\u0644","type":"STREET","district_id":85},{"title":"\u0627\u0645\u0627\u0645\u062a","type":"STREET","district_id":953},{"title":"\u062f\u0645\u0627\u0648\u0646\u062f","type":"STREET","district_id":953},{"title":"\u0633\u06cc\u200c\u0645\u062a\u0631\u06cc \u0646\u06cc\u0631\u0648\u06cc \u0647\u0648\u0627\u06cc\u06cc","type":"STREET","district_id":953},{"title":"\u0627\u0628\u0648\u0631\u06cc\u062d\u0627\u0646","type":"STREET","district_id":953},{"title":"\u062a\u06cc\u0645\u0648\u0631\u06cc\u200c\u0641\u0631","type":"STREET","district_id":953},{"title":"\u0627\u0645\u0627\u0645 \u062d\u0633\u06cc\u0646","type":"SQUARE","district_id":287},{"title":"\u0647\u0641\u062f\u0647 \u0634\u0647\u0631\u06cc\u0648\u0631","type":"STREET","district_id":287},{"title":"\u0627\u0645\u0627\u0645\u200c\u0632\u0627\u062f\u0647 \u062d\u0633\u0646","type":"STREET","district_id":1021},{"title":"\u0645\u0647\u0645\u0627\u0646 \u0646\u0648\u0627\u0632\u0627\u0646","type":"STREET","district_id":1021},{"title":"\u0641\u0631\u06cc\u062f\u0648\u0646 \u0627\u062d\u0645\u062f\u06cc","type":"STREET","district_id":1021},{"title":"\u0642\u0632\u0648\u06cc\u0646","type":"STREET","district_id":1021},{"title":"\u0628\u0627\u0647\u0646\u0631","type":"STREET","district_id":45},{"title":"\u0645\u0698\u062f\u0647","type":"CROSSROAD","district_id":45},{"title":"\u0627\u0644\u0641\u062a","type":"STREET","district_id":45},{"title":"\u062a\u0628\u0631\u06cc\u0632\u06cc","type":"STREET","district_id":45},{"title":"\u0645\u0642\u062f\u0633\u06cc","type":"STREET","district_id":45},{"title":"\u0645\u0631\u062c\u0627\u0646","type":"STREET","district_id":45},{"title":"\u0647\u0645\u0627\u06cc\u0648\u0646","type":"STREET","district_id":45},{"title":"\u0628\u0648\u06a9\u0627\u0646","type":"STREET","district_id":45},{"title":"\u062f\u0631\u0628\u0646\u062f","type":"STREET","district_id":45},{"title":"\u0642\u062f\u0633","type":"SQUARE","district_id":45},{"title":"\u0635\u0627\u062f\u0642\u06cc \u0642\u0645\u06cc","type":"STREET","district_id":45},{"title":"\u0633\u062c\u0627\u062f \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":1014},{"title":"\u063a\u0644\u0627\u0645\u062d\u0633\u06cc\u0646 \u0628\u0647\u0628\u0648\u062f\u06cc","type":"STREET","district_id":1014},{"title":"\u0627\u0628\u0648\u0630\u0631","type":"STREET","district_id":1014},{"title":"\u0628\u0647\u0627\u0631\u0627\u0646","type":"SQUARE","district_id":1014},{"title":"\u0646\u0644\u0633\u0648\u0646 \u0645\u0627\u0646\u062f\u0644\u0627","type":"BOULEVARD","district_id":360},{"title":"\u0627\u0633\u0641\u0646\u062f\u06cc\u0627\u0631","type":"STREET","district_id":360},{"title":"\u0635\u0628\u0627","type":"STREET","district_id":360},{"title":"\u0646\u0627\u0647\u06cc\u062f \u063a\u0631\u0628\u06cc","type":"STREET","district_id":360},{"title":"\u0646\u0627\u0647\u06cc\u062f \u0634\u0631\u0642\u06cc","type":"STREET","district_id":360},{"title":"\u062c\u0627\u0645 \u062c\u0645","type":"STREET","district_id":360},{"title":"\u0622\u0631\u0634 \u063a\u0631\u0628\u06cc","type":"STREET","district_id":360},{"title":"\u0648\u0644\u06cc\u0639\u0635\u0631","type":"STREET","district_id":360},{"title":"\u06a9\u0627\u0631\u06af\u0631 \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":91},{"title":"\u0622\u0632\u0627\u062f\u06af\u0627\u0646","type":"BOULEVARD","district_id":91},{"title":"\u062c\u0627\u0646\u0628\u0627\u0632\u0627\u0646","type":"STREET","district_id":91},{"title":"\u062c\u0644\u0627\u0644 \u0622\u0644 \u0622\u062d\u0645\u062f","type":"HIGHWAY","district_id":91},{"title":"\u06a9\u0631\u062f\u0633\u062a\u0627\u0646","type":"HIGHWAY","district_id":91},{"title":"\u0641\u0631\u0634\u06cc\u200c\u0645\u0642\u062f\u0645","type":"STREET","district_id":91},{"title":"\u0628\u0634\u06cc\u0631\u06cc","type":"STREET","district_id":276},{"title":"\u0641\u0631\u0648\u0632\u0634","type":"STREET","district_id":276},{"title":"\u0648\u062d\u062f\u062a \u0627\u0633\u0644\u0627\u0645\u06cc","type":"STREET","district_id":276},{"title":"\u0628\u0634\u06cc\u0631\u06cc","type":"STREET","district_id":276},{"title":"\u0645\u062f\u0631\u0633","type":"STREET","district_id":276},{"title":"\u0648\u0644\u06cc\u0639\u0635\u0631","type":"STREET","district_id":276},{"title":"\u062a\u0634\u06a9\u0631\u06cc \u0645\u0648\u062d\u062f","type":"STREET","district_id":276},{"title":"\u0645\u0648\u0644\u0648\u06cc","type":"STREET","district_id":276},{"title":"\u0648\u062d\u062f\u062a \u0627\u0633\u0644\u0627\u0645\u06cc","type":"STREET","district_id":277},{"title":"\u0628\u0634\u06cc\u0631\u06cc","type":"STREET","district_id":277},{"title":"\u0641\u0631\u0647\u0646\u06af","type":"STREET","district_id":277},{"title":"\u0627\u0628\u0648\u0633\u0639\u06cc\u062f","type":"STREET","district_id":277},{"title":"\u0648\u0644\u06cc\u0639\u0635\u0631","type":"STREET","district_id":277},{"title":"\u0645\u0646\u06cc\u0631\u06cc\u0647","type":"SQUARE","district_id":277},{"title":"\u06a9\u0627\u0631\u06af\u0631 \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":277},{"title":"\u0642\u0632\u0648\u06cc\u0646","type":"STREET","district_id":277},{"title":"\u0631\u06cc","type":"STREET","district_id":993},{"title":"\u067e\u0627\u0646\u0632\u062f\u0647 \u062e\u0631\u062f\u0627\u062f","type":"STREET","district_id":993},{"title":"\u0645\u0635\u0637\u0641\u06cc \u062e\u0645\u06cc\u0646\u06cc","type":"STREET","district_id":993},{"title":"\u0645\u0631\u0627\u062f\u06cc","type":"STREET","district_id":156},{"title":"\u0647\u0645\u062a","type":"HIGHWAY","district_id":156},{"title":"\u0639\u0644\u0627\u0645\u0647 \u062c\u0639\u0641\u0631\u06cc","type":"HIGHWAY","district_id":156},{"title":"\u062a\u0639\u0627\u0648\u0646","type":"BOULEVARD","district_id":156},{"title":"\u0633\u0631\u0627\u062c","type":"STREET","district_id":115},{"title":"\u062f\u0644\u0627\u0648\u0631\u0627\u0646","type":"BOULEVARD","district_id":115},{"title":"\u0627\u0631\u062f\u06cc\u0628\u0647\u0634\u062a","type":"STREET","district_id":115},{"title":"\u0647\u0646\u06af\u0627\u0645","type":"STREET","district_id":115},{"title":"\u062f\u0631\u06a9\u0647","type":"STREET","district_id":57},{"title":"\u0627\u0639\u0631\u0627\u0628\u06cc","type":"STREET","district_id":57},{"title":"\u063a\u06cc\u0627\u062b\u06cc","type":"STREET","district_id":57},{"title":"\u06a9\u0686\u0648\u06cc\u06cc","type":"STREET","district_id":57},{"title":"\u062f\u0627\u0646\u0634\u062c\u0648","type":"BOULEVARD","district_id":57},{"title":"\u0627\u06cc\u0631\u0627\u0646","type":"STREET","district_id":991},{"title":"\u0634\u0647\u062f\u0627","type":"SQUARE","district_id":991},{"title":"\u06af\u0648\u062a\u0647","type":"STREET","district_id":991},{"title":"\u0641\u06cc\u0627\u0636\u200c\u0628\u062e\u0634","type":"STREET","district_id":991},{"title":"\u062f\u06cc\u0627\u0644\u0645\u0647","type":"STREET","district_id":991},{"title":"\u0647\u0641\u062f\u0647 \u0634\u0647\u0631\u06cc\u0648\u0631","type":"STREET","district_id":991},{"title":"\u0645\u062c\u0627\u0647\u062f\u06cc\u0646","type":"STREET","district_id":991},{"title":"\u0627\u06cc\u0631\u0627\u0646\u0634\u0647\u0631","type":"STREET","district_id":298},{"title":"\u0647\u0641\u062a \u062a\u06cc\u0631","type":"SQUARE","district_id":298},{"title":"\u06a9\u0631\u06cc\u0645\u062e\u0627\u0646","type":"STREET","district_id":298},{"title":"\u062e\u0631\u062f\u0645\u0646\u062f \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":298},{"title":"\u0645\u0641\u062a\u062d","type":"STREET","district_id":298},{"title":"\u0633\u067e\u0647\u0628\u062f \u0642\u0631\u0646\u06cc","type":"STREET","district_id":298},{"title":"\u0633\u0645\u06cc\u0647","type":"STREET","district_id":298},{"title":"\u0627\u06cc\u0648\u0627\u0646\u06a9","type":"STREET","district_id":927},{"title":"\u062e\u0648\u0627\u0631\u0632\u0645","type":"STREET","district_id":927},{"title":"\u0641\u0644\u0627\u0645\u06a9","type":"STREET","district_id":927},{"title":"\u0632\u0631\u0627\u0641\u0634\u0627\u0646","type":"STREET","district_id":927},{"title":"\u0641\u0631\u062d\u0632\u0627\u062f\u06cc","type":"STREET","district_id":927},{"title":"\u0633\u06cc\u0645\u0627\u06cc \u0627\u06cc\u0631\u0627\u0646","type":"STREET","district_id":927},{"title":"\u062e\u06cc\u0627\u0645","type":"STREET","district_id":93},{"title":"\u0645\u0648\u0644\u0648\u06cc","type":"STREET","district_id":93},{"title":"\u0645\u062d\u0645\u062f\u06cc\u0647","type":"SQUARE","district_id":93},{"title":"\u0645\u0635\u0637\u0641\u06cc \u062e\u0645\u06cc\u0646\u06cc","type":"STREET","district_id":93},{"title":"\u0635\u0627\u0628\u0648\u0646\u06cc\u0627\u0646","type":"STREET","district_id":264},{"title":"\u0628\u062e\u0627\u0631\u0627\u06cc\u06cc","type":"STREET","district_id":264},{"title":"\u0641\u062f\u0627\u06cc\u06cc\u0627\u0646 \u0627\u0633\u0644\u0627\u0645","type":"STREET","district_id":264},{"title":"\u0634\u0648\u0634","type":"STREET","district_id":264},{"title":"\u0628\u0639\u062b\u062a","type":"HIGHWAY","district_id":264},{"title":"\u0639\u0627\u0631\u0641 \u0642\u0632\u0648\u06cc\u0646\u06cc","type":"STREET","district_id":1022},{"title":"\u062a\u0647\u0645\u062a\u0646","type":"STREET","district_id":1022},{"title":"\u0639\u0628\u06cc\u062f \u0632\u0627\u06a9\u0627\u0646\u06cc","type":"STREET","district_id":1022},{"title":"\u0645\u0647\u0645\u0627\u0646 \u0646\u0648\u0627\u0632\u0627\u0646","type":"STREET","district_id":1022},{"title":"\u0642\u0632\u0648\u06cc\u0646","type":"STREET","district_id":1022},{"title":"\u0627\u0645\u0627\u0645\u200c\u0632\u0627\u062f\u0647 \u062d\u0633\u0646","type":"STREET","district_id":1022},{"title":"\u0647\u0627\u0634\u0645\u06cc","type":"HIGHWAY","district_id":217},{"title":"\u062f\u0631\u0628\u0646\u062f\u06cc","type":"STREET","district_id":930},{"title":"\u0648\u0644\u06cc\u0639\u0635\u0631","type":"STREET","district_id":930},{"title":"\u062a\u0648\u062a\u0648\u0646\u0686\u06cc","type":"STREET","district_id":930},{"title":"\u067e\u06cc\u0627\u0645\u0628\u0631 \u0645\u0631\u06a9\u0632\u06cc","type":"STREET","district_id":920},{"title":"\u0647\u062c\u0631\u062a","type":"STREET","district_id":920},{"title":"\u0645\u0647\u0633\u062a\u0627\u0646","type":"STREET","district_id":920},{"title":"\u0633\u062a\u0627\u0631\u06cc","type":"HIGHWAY","district_id":920},{"title":"\u0627\u0634\u0631\u0641\u06cc \u0627\u0635\u0641\u0647\u0627\u0646\u06cc","type":"HIGHWAY","district_id":920},{"title":"\u062d\u06a9\u06cc\u0645","type":"HIGHWAY","district_id":920},{"title":"\u0639\u062f\u0644 \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":920},{"title":"\u0627\u0645\u06cc\u0631 \u0627\u0628\u0631\u0627\u0647\u06cc\u0645","type":"STREET","district_id":920},{"title":"\u0628\u06cc\u0633\u062a \u0648 \u062f\u0648 \u0628\u0647\u0645\u0646","type":"STREET","district_id":920},{"title":"\u0628\u0631\u06cc\u0627\u0646\u06a9 \u063a\u0631\u0628\u06cc","type":"STREET","district_id":197},{"title":"\u0645\u062d\u0628\u0648\u0628 \u0645\u062c\u0627\u0632","type":"STREET","district_id":197},{"title":"\u0635\u0641\u062f\u0631\u06cc","type":"STREET","district_id":197},{"title":"\u06a9\u0645\u06cc\u0644","type":"STREET","district_id":197},{"title":"\u0646\u0648\u0627\u0628","type":"HIGHWAY","district_id":197},{"title":"\u0642\u0632\u0648\u06cc\u0646","type":"STREET","district_id":197},{"title":"\u06a9\u0634\u0627\u0648\u0631\u0632","type":"BOULEVARD","district_id":208},{"title":"\u0641\u0644\u0633\u0637\u06cc\u0646 \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":208},{"title":"\u0632\u0631\u062a\u0634\u062a \u063a\u0631\u0628\u06cc","type":"STREET","district_id":208},{"title":"\u062d\u062c\u0627\u0628","type":"STREET","district_id":208},{"title":"\u062f\u0627\u0626\u0645\u06cc","type":"STREET","district_id":208},{"title":"\u0641\u0627\u0637\u0645\u06cc","type":"SQUARE","district_id":208},{"title":"\u0648\u0644\u06cc\u0639\u0635\u0631","type":"STREET","district_id":208},{"title":"\u0628\u0627\u0628\u0627\u0637\u0627\u0647\u0631","type":"STREET","district_id":208},{"title":"\u062c\u0648\u06cc\u0628\u0627\u0631","type":"STREET","district_id":208},{"title":"\u06a9\u0628\u06a9\u0627\u0646\u06cc\u0627\u0646","type":"STREET","district_id":208},{"title":"\u0647\u0644\u0627\u0644 \u0627\u062d\u0645\u0631","type":"STREET","district_id":1007},{"title":"\u0628\u0631\u0627\u062f\u0631\u0627\u0646 \u062d\u0633\u0646\u06cc","type":"STREET","district_id":1007},{"title":"\u0646\u0648\u0627\u0628","type":"HIGHWAY","district_id":1007},{"title":"\u0686\u0631\u0627\u063a\u06cc","type":"HIGHWAY","district_id":1007},{"title":"\u0642\u0632\u0648\u06cc\u0646","type":"STREET","district_id":1007},{"title":"\u0628\u0648\u0645\u0647\u0646","type":"STREET","district_id":419},{"title":"\u0628\u0647\u0627\u0631","type":"STREET","district_id":938},{"title":"\u0634\u0631\u06cc\u0639\u062a\u06cc","type":"STREET","district_id":938},{"title":"\u0637\u0627\u0644\u0642\u0627\u0646\u06cc","type":"STREET","district_id":938},{"title":"\u0628\u0647\u0627\u0631 \u0634\u06cc\u0631\u0627\u0632","type":"STREET","district_id":938},{"title":"\u0645\u06cc\u062b\u0627\u0642","type":"STREET","district_id":938},{"title":"\u0633\u0645\u06cc\u0647","type":"STREET","district_id":938},{"title":"\u06a9\u0648\u0647\u0633\u0627\u0631","type":"BOULEVARD","district_id":154},{"title":"\u0628\u0647\u0627\u0631\u0627\u0646","type":"SQUARE","district_id":154},{"title":"\u0628\u0647\u0627\u0631\u0633\u062a\u0627\u0646","type":"SQUARE","district_id":92},{"title":"\u0638\u0647\u06cc\u0631\u0627\u0644\u0627\u0633\u0644\u0627\u0645","type":"STREET","district_id":92},{"title":"\u0635\u0641\u06cc \u0639\u0644\u06cc\u0634\u0627\u0647","type":"STREET","district_id":92},{"title":"\u0633\u0639\u062f\u06cc","type":"STREET","district_id":92},{"title":"\u0627\u0646\u0642\u0644\u0627\u0628","type":"STREET","district_id":92},{"title":"\u0645\u0635\u0637\u0641\u06cc \u062e\u0645\u06cc\u0646\u06cc","type":"STREET","district_id":92},{"title":"\u0644\u0627\u0631\u0633\u062a\u0627\u0646","type":"STREET","district_id":297},{"title":"\u0645\u06cc\u0631\u0632\u0627\u06cc \u0634\u06cc\u0631\u0627\u0632\u06cc","type":"STREET","district_id":297},{"title":"\u0645\u0637\u0647\u0631\u06cc","type":"STREET","district_id":297},{"title":"\u06a9\u0631\u06cc\u0645\u062e\u0627\u0646","type":"STREET","district_id":297},{"title":"\u0648\u0644\u06cc\u0639\u0635\u0631","type":"STREET","district_id":297},{"title":"\u062d\u0627\u0641\u0638","type":"STREET","district_id":297},{"title":"\u0632\u0631\u062a\u0634\u062a","type":"STREET","district_id":297},{"title":"\u0628\u0647\u062f\u0627\u0634\u062a","type":"STREET","district_id":917},{"title":"\u0628\u0627\u0641\u0627\u0646","type":"STREET","district_id":917},{"title":"\u0637\u0627\u0644\u0642\u0627\u0646\u06cc","type":"STREET","district_id":917},{"title":"\u0633\u0639\u06cc\u062f\u06cc","type":"HIGHWAY","district_id":917},{"title":"\u0628\u0647\u0645\u0646\u06cc\u0627\u0631","type":"STREET","district_id":254},{"title":"\u062a\u0646\u062f\u06af\u0648\u06cc\u0627\u0646","type":"STREET","district_id":254},{"title":"\u062f\u0627\u0646\u0634\u06af\u0627\u0647","type":"BOULEVARD","district_id":254},{"title":"\u0648\u0635\u0627\u0644","type":"BOULEVARD","district_id":254},{"title":"\u0644\u0637\u06cc\u0641\u06cc","type":"STREET","district_id":254},{"title":"\u0647\u0641\u062f\u0647 \u0634\u0647\u0631\u06cc\u0648\u0631 \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":1015},{"title":"\u0631\u0636\u0627\u06cc\u06cc","type":"STREET","district_id":1015},{"title":"\u0642\u0646\u0628\u0631\u06cc","type":"STREET","district_id":1015},{"title":"\u062c\u0647\u0627\u0646\u06af\u0631\u062f","type":"STREET","district_id":1015},{"title":"\u0627\u0646\u0648\u0631\u0632\u0627\u062f\u0647","type":"STREET","district_id":1015},{"title":"\u067e\u0627\u062a\u0631\u06cc\u0633 \u0644\u0648\u0645\u0648\u0645\u0628\u0627","type":"STREET","district_id":206},{"title":"\u06a9\u0648\u06a9\u0628","type":"STREET","district_id":206},{"title":"\u0633\u062a\u0627\u0631\u062e\u0627\u0646","type":"STREET","district_id":206},{"title":"\u06a9\u0628\u06cc\u0631\u06cc\u200c\u067e\u0648\u0631","type":"STREET","district_id":206},{"title":"\u0628\u0627\u0642\u0631\u062e\u0627\u0646","type":"STREET","district_id":206},{"title":"\u067e\u0627\u0633\u062f\u0627\u0631\u0627\u0646","type":"STREET","district_id":67},{"title":"\u0634\u0647\u06cc\u062f \u0639\u0631\u0627\u0642\u06cc","type":"STREET","district_id":67},{"title":"\u0633\u0627\u0642\u062f\u0648\u0634","type":"STREET","district_id":67},{"title":"\u0641\u0631\u062e\u06cc \u06cc\u0632\u062f\u06cc","type":"STREET","district_id":67},{"title":"\u0635\u06cc\u0627\u062f \u0634\u06cc\u0631\u0627\u0632\u06cc","type":"HIGHWAY","district_id":67},{"title":"\u067e\u0627\u06a9\u062f\u0634\u062a","type":"STREET","district_id":638},{"title":"\u067e\u0627\u0645\u0646\u0627\u0631","type":"STREET","district_id":280},{"title":"\u0646\u0627\u0635\u0631\u062e\u0633\u0631\u0648","type":"STREET","district_id":280},{"title":"\u0633\u0639\u062f\u06cc \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":280},{"title":"\u062e\u06cc\u0627\u0645","type":"STREET","district_id":280},{"title":"\u0627\u0645\u06cc\u0631\u06a9\u0628\u06cc\u0631","type":"STREET","district_id":280},{"title":"\u067e\u0631\u062f\u06cc\u0633","type":"STREET","district_id":420},{"title":"\u067e\u0631\u0633\u062a\u0627\u0631","type":"STREET","district_id":965},{"title":"\u067e\u06cc\u0631\u0648\u0632\u06cc","type":"STREET","district_id":965},{"title":"\u0645\u0642\u062f\u0627\u062f","type":"STREET","district_id":965},{"title":"\u0627\u0641\u0631\u0627\u0633\u06cc\u0627\u0628\u06cc","type":"STREET","district_id":965},{"title":"\u0646\u0628\u0631\u062f \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":965},{"title":"\u0633\u06cc\u0632\u062f\u0647 \u0622\u0628\u0627\u0646","type":"SQUARE","district_id":965},{"title":"\u067e\u0631\u0646\u062f","type":"STREET","district_id":427},{"title":"\u06a9\u0648\u0647\u0633\u0627\u0631","type":"BOULEVARD","district_id":922},{"title":"\u06cc\u0627\u062f\u06af\u0627\u0631 \u0627\u0645\u0627\u0645","type":"HIGHWAY","district_id":922},{"title":"\u0627\u06cc\u062b\u0627\u0631","type":"BOULEVARD","district_id":922},{"title":"\u0627\u06cc\u062b\u0627\u0631\u06af\u0631\u0627\u0646","type":"STREET","district_id":922},{"title":"\u067e\u06cc\u0627\u0645","type":"BOULEVARD","district_id":922},{"title":"\u0628\u0647\u0631\u0648\u062f","type":"SQUARE","district_id":922},{"title":"\u06a9\u0644\u06cc\u0645 \u06a9\u0627\u0634\u0627\u0646\u06cc","type":"STREET","district_id":959},{"title":"\u067e\u0644\u06cc\u0633","type":"STREET","district_id":959},{"title":"\u0634\u0631\u06cc\u0639\u062a\u06cc","type":"STREET","district_id":959},{"title":"\u0627\u062f\u06cc\u0628\u06cc","type":"STREET","district_id":959},{"title":"\u0634\u06cc\u062e \u0635\u0641\u06cc","type":"STREET","district_id":959},{"title":"\u0633\u067e\u0627\u0647","type":"SQUARE","district_id":959},{"title":"\u06a9\u0634\u0648\u0627\u062f","type":"STREET","district_id":959},{"title":"\u062e\u0648\u0627\u062c\u0647 \u0646\u0635\u06cc\u0631\u0627\u0644\u062f\u06cc\u0646 \u0637\u0648\u0633\u06cc","type":"STREET","district_id":959},{"title":"\u0639\u062f\u0644","type":"Square","district_id":82},{"title":"\u0633\u0631\u062f\u0627\u0631 \u062c\u0646\u06af\u0644","type":"STREET","district_id":82},{"title":"\u0639\u062f\u0644 \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":82},{"title":"\u0635\u0627\u062f\u0642\u06cc\u0647","type":"Metro","district_id":82},{"title":"\u0633\u0631\u062f\u0627\u0631 \u062c\u0646\u06af\u0644","type":"Street","district_id":82},{"title":"\u0645\u062e\u0628\u0631\u06cc","type":"STREET","district_id":82},{"title":"\u062d\u06cc\u062f\u0631\u06cc \u0645\u0642\u062f\u0645","type":"STREET","district_id":82},{"title":"\u0627\u0634\u0631\u0641\u06cc \u0627\u0635\u0641\u0647\u0627\u0646\u06cc","type":"HIGHWAY","district_id":82},{"title":"\u0645\u06cc\u0631\u0632\u0627 \u0628\u0627\u0628\u0627\u06cc\u06cc","type":"BOULEVARD","district_id":82},{"title":"\u067e\u06cc\u0631\u0648\u0632\u06cc","type":"STREET","district_id":292},{"title":"\u0633\u06cc\u200c\u0645\u062a\u0631\u06cc \u0646\u06cc\u0631\u0648 \u0647\u0648\u0627\u06cc\u06cc","type":"STREET","district_id":292},{"title":"\u067e\u0646\u062c\u0645 \u0646\u06cc\u0631\u0648 \u0647\u0648\u0627\u06cc\u06cc","type":"STREET","district_id":292},{"title":"\u06cc\u06a9\u0645 \u0646\u06cc\u0631\u0648 \u0647\u0648\u0627\u06cc\u06cc","type":"STREET","district_id":292},{"title":"\u0627\u0628\u0648\u0630\u0631","type":"STREET","district_id":966},{"title":"\u0646\u0628\u0631\u062f \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":966},{"title":"\u0645\u062d\u0644\u0627\u062a\u06cc","type":"HIGHWAY","district_id":966},{"title":"\u062a\u062c\u0631\u06cc\u0634","type":"SQUARE","district_id":61},{"title":"\u062f\u0631\u0628\u0646\u062f\u06cc","type":"STREET","district_id":61},{"title":"\u0642\u062f\u0633","type":"SQUARE","district_id":61},{"title":"\u0634\u0631\u06cc\u0639\u062a\u06cc","type":"STREET","district_id":61},{"title":"\u0634\u0647\u0631\u062f\u0627\u0631\u06cc","type":"STREET","district_id":61},{"title":"\u062a\u0633\u0644\u06cc\u062d\u0627\u062a","type":"SQUARE","district_id":956},{"title":"\u0645\u062f\u0646\u06cc","type":"STREET","district_id":956},{"title":"\u062f\u0627\u0648\u0648\u062f\u06cc","type":"STREET","district_id":956},{"title":"\u0648\u0627\u0634\u0642\u0627\u0646\u06cc","type":"STREET","district_id":956},{"title":"\u0648\u0644\u06cc\u0639\u0635\u0631","type":"STREET","district_id":934},{"title":"\u062f\u0648\u0633\u062a\u0627\u0646","type":"STREET","district_id":934},{"title":"\u0646\u0638\u0627\u0645\u06cc \u06af\u0646\u062c\u0648\u06cc","type":"STREET","district_id":934},{"title":"\u062a\u0648\u062d\u06cc\u062f","type":"SQUARE","district_id":203},{"title":"\u067e\u0631\u0686\u0645 \u063a\u0631\u0628\u06cc","type":"STREET","district_id":203},{"title":"\u0628\u0647\u0628\u0648\u062f\u06cc","type":"STREET","district_id":203},{"title":"\u0633\u062a\u0627\u0631\u062e\u0627\u0646","type":"STREET","district_id":203},{"title":"\u0631\u0648\u062f\u06a9\u06cc \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":203},{"title":"\u062e\u0648\u0634 \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":203},{"title":"\u062a\u0648\u062d\u06cc\u062f","type":"SUBWAY","district_id":203},{"title":"\u062a\u062e\u062a\u06cc","type":"STREET","district_id":916},{"title":"\u0645\u0639\u0644\u0645","type":"BOULEVARD","district_id":916},{"title":"\u0645\u0631\u0627\u062f\u062e\u0627\u0646\u06cc","type":"STREET","district_id":916},{"title":"\u062f\u0631\u062c\u0632\u06cc\u0646\u06cc","type":"STREET","district_id":916},{"title":"\u0632\u0631\u0646\u062f","type":"STREET","district_id":916},{"title":"\u067e\u0631\u0648\u06cc\u0646","type":"BOULEVARD","district_id":109},{"title":"\u0634\u0628\u0633\u062a\u0631\u06cc","type":"STREET","district_id":109},{"title":"\u0634\u0627\u062f\u0644\u0648\u06cc\u06cc","type":"STREET","district_id":109},{"title":"\u0631\u0634\u06cc\u062f","type":"STREET","district_id":108},{"title":"\u0627\u0631\u062f\u06cc\u0628\u0647\u0634\u062a","type":"STREET","district_id":108},{"title":"\u0642\u0632\u0627\u0642\u06cc","type":"STREET","district_id":108},{"title":"\u0641\u0631\u062c\u0627\u0645","type":"STREET","district_id":108},{"title":"\u0628\u0627\u0642\u0631\u06cc","type":"HIGHWAY","district_id":108},{"title":"\u0631\u0636\u0648\u0627\u0646","type":"STREET","district_id":108},{"title":"\u0634\u06cc\u0631\u0648\u062f","type":"STREET","district_id":108},{"title":"\u0641\u0644\u06a9\u0647 \u0633\u0648\u0645 \u062a\u0647\u0631\u0627\u0646\u067e\u0627\u0631\u0633","type":"SQUARE","district_id":108},{"title":"\u062a\u0647\u0631\u0627\u0646\u200c\u0633\u0631","type":"BOULEVARD","district_id":178},{"title":"\u06cc\u0627\u0633","type":"BOULEVARD","district_id":178},{"title":"\u0622\u0632\u0627\u062f\u06af\u0627\u0646","type":"HIGHWAY","district_id":178},{"title":"\u0644\u0634\u06af\u0631\u06cc","type":"HIGHWAY","district_id":178},{"title":"\u0641\u062a\u062d","type":"HIGHWAY","district_id":178},{"title":"\u062f\u0645\u0627\u0648\u0646\u062f","type":"STREET","district_id":123},{"title":"\u062a\u06cc\u0645\u0648\u0631\u06cc\u200c\u0641\u0631","type":"STREET","district_id":123},{"title":"\u0645\u0633\u06cc\u0644 \u062c\u0627\u062c\u0631\u0648\u062f","type":"STREET","district_id":123},{"title":"\u0627\u0628\u0648\u0631\u06cc\u062d\u0627\u0646","type":"STREET","district_id":123},{"title":"\u0627\u0637\u0644\u0627\u0639\u0627\u062a","type":"SQUARE","district_id":123},{"title":"\u0686\u0627\u06cc\u0686\u06cc","type":"SQUARE","district_id":123},{"title":"\u0627\u0645\u0627\u0645 \u0645\u0646\u062a\u0638\u0631","type":"STREET","district_id":201},{"title":"\u0633\u062a\u0627\u0631\u062e\u0627\u0646","type":"STREET","district_id":201},{"title":"\u0645\u0646\u0635\u0648\u0631\u06cc \u06a9\u06cc\u0627","type":"STREET","district_id":201},{"title":"\u0634\u06a9\u0648\u0641\u0647","type":"STREET","district_id":971},{"title":"\u062f\u0631\u0648\u062f\u06cc\u0627\u0646","type":"STREET","district_id":971},{"title":"\u0633\u06cc\u0631\u062c\u0627\u0646","type":"STREET","district_id":971},{"title":"\u0646\u0644\u0633\u0648\u0646 \u0645\u0627\u0646\u062f\u0644\u0627","type":"BOULEVARD","district_id":86},{"title":"\u0645\u06cc\u0631\u062f\u0627\u0645\u0627\u062f","type":"STREET","district_id":86},{"title":"\u062c\u0647\u0627\u0646 \u06a9\u0648\u062f\u06a9","type":"CROSSROAD","district_id":86},{"title":"\u06af\u0627\u0646\u062f\u06cc","type":"STREET","district_id":86},{"title":"\u0648\u0644\u06cc\u0639\u0635\u0631","type":"STREET","district_id":86},{"title":"\u0631\u0634\u06cc\u062f \u06cc\u0627\u0633\u0645\u06cc","type":"STREET","district_id":86},{"title":"\u0639\u0637\u0627\u0631","type":"STREET","district_id":86},{"title":"\u062e\u062f\u0627\u0645\u06cc","type":"STREET","district_id":86},{"title":"\u0627\u0633\u0641\u0646\u062f\u06cc\u0627\u0631","type":"STREET","district_id":86},{"title":"\u062c\u0644\u0641\u0627","type":"STREET","district_id":1028},{"title":"\u0634\u0631\u06cc\u0639\u062a\u06cc","type":"STREET","district_id":1028},{"title":"\u0633\u06cc\u062f\u062e\u0646\u062f\u0627\u0646","type":"STREET","district_id":1028},{"title":"\u0627\u0631\u0633\u0628\u0627\u0631\u0627\u0646","type":"STREET","district_id":1028},{"title":"\u0627\u062d\u0645\u062f\u06cc\u200c\u0631\u0648\u0634\u0646","type":"STREET","district_id":1028},{"title":"\u062c\u0644\u06cc\u0644\u06cc","type":"STREET","district_id":1013},{"title":"\u0641\u0644\u0627\u062d","type":"STREET","district_id":1013},{"title":"\u063a\u0644\u0627\u0645\u062d\u0633\u06cc\u0646 \u0628\u0647\u0628\u0648\u062f\u06cc","type":"STREET","district_id":1013},{"title":"\u0633\u0644\u0627\u0645\u062a","type":"STREET","district_id":1013},{"title":"\u06cc\u0627\u0633\u0631","type":"STREET","district_id":44},{"title":"\u0628\u0627\u0647\u0646\u0631","type":"STREET","district_id":44},{"title":"\u0641\u06cc\u0636\u06cc\u0647","type":"STREET","district_id":44},{"title":"\u0627\u0645\u06cc\u062f\u0648\u0627\u0631","type":"STREET","district_id":44},{"title":"\u0635\u0627\u062f\u0642\u06cc \u0642\u0645\u06cc","type":"STREET","district_id":44},{"title":"\u062c\u0645\u0627\u0644\u200c\u0632\u0627\u062f\u0647 \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":204},{"title":"\u06a9\u0644\u0647\u0631","type":"STREET","district_id":204},{"title":"\u062c\u0645\u0647\u0648\u0631\u06cc","type":"STREET","district_id":204},{"title":"\u062f\u06cc\u0644\u0645\u0627\u0646","type":"STREET","district_id":204},{"title":"\u06cc\u0627\u0633\u0631\u06cc","type":"STREET","district_id":204},{"title":"\u06a9\u0627\u0631\u06af\u0631 \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":204},{"title":"\u0632\u0631\u06cc\u0646 \u0642\u062f\u0645","type":"STREET","district_id":204},{"title":"\u06af\u0644\u0634\u0646","type":"STREET","district_id":204},{"title":"\u0622\u0630\u0631\u0628\u0627\u06cc\u062c\u0627\u0646","type":"STREET","district_id":204},{"title":"\u06af\u0644\u0634\u0646","type":"STREET","district_id":94},{"title":"\u062c\u0645\u0647\u0648\u0631\u06cc","type":"STREET","district_id":94},{"title":"\u0628\u0627\u0633\u062a\u0627\u0646","type":"STREET","district_id":94},{"title":"\u06a9\u0644\u0647\u0631","type":"STREET","district_id":94},{"title":"\u0627\u0648\u0633\u062a\u0627","type":"STREET","district_id":94},{"title":"\u0627\u0633\u06a9\u0646\u062f\u0631\u06cc","type":"STREET","district_id":94},{"title":"\u0646\u0648\u0627\u0628","type":"HIGHWAY","district_id":94},{"title":"\u0622\u0630\u0631\u0628\u0627\u06cc\u062c\u0627\u0646","type":"STREET","district_id":94},{"title":"\u062c\u0646\u062a\u200c\u0622\u0628\u0627\u062f \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":148},{"title":"\u0645\u062c\u0627\u0647\u062f \u06a9\u0628\u06cc\u0631","type":"STREET","district_id":148},{"title":"\u062c\u0647\u0627\u062f \u0627\u06a9\u0628\u0631","type":"STREET","district_id":148},{"title":"\u067e\u06cc\u0627\u0645\u0628\u0631 \u063a\u0631\u0628\u06cc","type":"STREET","district_id":148},{"title":"\u0686\u0647\u0627\u0631\u0628\u0627\u063a","type":"STREET","district_id":148},{"title":"\u0634\u0627\u0647\u06cc\u0646 \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":148},{"title":"\u0646\u0645\u0627\u0632\u06cc","type":"STREET","district_id":148},{"title":"\u062c\u0646\u062a\u200c\u0622\u0628\u0627\u062f \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":145},{"title":"\u0645\u0628\u0639\u062b","type":"STREET","district_id":145},{"title":"\u0633\u06cc\u0645\u0648\u0646 \u0628\u0648\u0644\u06cc\u0648\u0627\u0631","type":"BOULEVARD","district_id":145},{"title":"\u0627\u0646\u0635\u0627\u0631 \u0627\u0644\u0645\u0647\u062f\u06cc","type":"STREET","district_id":145},{"title":"\u0627\u06cc\u0631\u0627\u0646\u0634\u0647\u0631","type":"STREET","district_id":145},{"title":"\u062c\u0646\u062a\u200c\u0622\u0628\u0627\u062f \u0645\u0631\u06a9\u0632\u06cc","type":"STREET","district_id":146},{"title":"\u0634\u0627\u0647\u06cc\u0646 \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":146},{"title":"\u0628\u0639\u062b\u062a","type":"STREET","district_id":146},{"title":"\u0645\u062e\u0628\u0631\u06cc","type":"STREET","district_id":146},{"title":"\u0627\u0642\u0627\u0642\u06cc\u0627","type":"STREET","district_id":146},{"title":"\u0686\u0645\u0631\u0627\u0646","type":"STREET","district_id":146},{"title":"\u0628\u06cc\u0633\u062a\u200c\u0645\u062a\u0631\u06cc \u062c\u0648\u0627\u062f\u06cc\u0647","type":"STREET","district_id":265},{"title":"\u062f\u0634\u062a \u0622\u0632\u0627\u062f\u06af\u0627\u0646","type":"BOULEVARD","district_id":265},{"title":"\u0628\u0647\u0645\u0646","type":"SQUARE","district_id":265},{"title":"\u06cc\u0627\u0631\u062c\u0627\u0646\u06cc","type":"HIGHWAY","district_id":265},{"title":"\u0632\u0647\u062f\u06cc","type":"STREET","district_id":947},{"title":"\u0627\u0633\u0641\u0646\u062f\u0627\u0646\u06cc","type":"STREET","district_id":947},{"title":"\u0627\u062d\u0633\u0627\u0646","type":"STREET","district_id":947},{"title":"\u0641\u0631\u0647\u0646\u06af\u0633\u0631\u0627","type":"SUBWAY","district_id":947},{"title":"\u0634\u0647\u06cc\u062f \u063a\u06cc\u0628\u06cc","type":"STREET","district_id":231},{"title":"\u0641\u062f\u0627\u06cc\u06cc\u0627\u0646 \u0627\u0633\u0644\u0627\u0645","type":"STREET","district_id":231},{"title":"\u0631\u062c\u0627\u06cc\u06cc","type":"HIGHWAY","district_id":231},{"title":"\u0622\u0632\u0627\u062f\u06af\u0627\u0646","type":"HIGHWAY","district_id":231},{"title":"\u0628\u0633\u06cc\u062c","type":"BOULEVARD","district_id":231},{"title":"\u062c\u0647\u0627\u062f","type":"SQUARE","district_id":933},{"title":"\u0633\u0644\u0645\u0627\u0633","type":"SQUARE","district_id":933},{"title":"\u0641\u062a\u062d\u06cc \u0634\u0642\u0627\u0642\u06cc","type":"STREET","district_id":933},{"title":"\u0686\u0647\u0644\u0633\u062a\u0648\u0646","type":"STREET","district_id":933},{"title":"\u0645\u06cc\u062f\u0627\u0646 \u062c\u0647\u0627\u062f","type":"SUBWAY","district_id":933},{"title":"\u0628\u062e\u062a\u06cc\u0627\u0631\u06cc","type":"STREET","district_id":196},{"title":"\u0628\u0631\u0627\u062f\u0631\u0627\u0646 \u0641\u0644\u0627\u062d","type":"STREET","district_id":196},{"title":"\u062c\u0631\u062c\u0627\u0646\u06cc","type":"STREET","district_id":196},{"title":"\u062c\u06cc\u062d\u0648\u0646","type":"STREET","district_id":657},{"title":"\u062f\u0627\u0645\u067e\u0632\u0634\u06a9\u06cc","type":"STREET","district_id":657},{"title":"\u06a9\u0627\u0631\u0648\u0646","type":"STREET","district_id":657},{"title":"\u06a9\u0645\u06cc\u0644","type":"STREET","district_id":657},{"title":"\u0645\u0627\u0644\u06a9 \u0627\u0634\u062a\u0631","type":"STREET","district_id":657},{"title":"\u0645\u0631\u062a\u0636\u0648\u06cc","type":"STREET","district_id":657},{"title":"\u0642\u0635\u0631\u0627\u0644\u062f\u0634\u062a","type":"STREET","district_id":657},{"title":"\u0637\u0648\u0633","type":"STREET","district_id":657},{"title":"\u0627\u0645\u0627\u0645 \u062e\u0645\u06cc\u0646\u06cc","type":"STREET","district_id":657},{"title":"\u0628\u0647\u0646\u0648\u062f","type":"STREET","district_id":657},{"title":"\u067e\u06cc\u0631\u0648\u0632\u06cc","type":"STREET","district_id":251},{"title":"\u0634\u06a9\u0648\u0641\u0647","type":"STREET","district_id":251},{"title":"\u0628\u0631\u0648\u062c\u0631\u062f\u06cc","type":"SQUARE","district_id":251},{"title":"\u0646\u06cc\u06a9\u0646\u0627\u0645","type":"STREET","district_id":251},{"title":"\u062a\u0627\u062c\u0631\u06cc","type":"STREET","district_id":251},{"title":"\u062f\u0631\u06cc\u0627\u0628\u0627\u0631\u06cc","type":"STREET","district_id":251},{"title":"\u062f\u0647\u0645 \u0641\u0631\u0648\u0631\u062f\u06cc\u0646","type":"STREET","district_id":251},{"title":"\u0639\u0632\u06cc\u0632\u06cc","type":"STREET","district_id":251},{"title":"\u0644\u0634\u06af\u0631\u06cc","type":"HIGHWAY","district_id":306},{"title":"\u0641\u062a\u062d","type":"HIGHWAY","district_id":306},{"title":"\u0645\u0631\u0648\u0627\u0631\u06cc\u062f \u0634\u0647\u0631","type":"TOWN","district_id":306},{"title":"\u0627\u0646\u062f\u0631\u0632\u06af\u0648","type":"STREET","district_id":63},{"title":"\u0633\u0644\u06cc\u0645\u06cc \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":63},{"title":"\u0642\u06cc\u0637\u0631\u06cc\u0647","type":"STREET","district_id":63},{"title":"\u0686\u06cc\u0630\u0631\u06cc","type":"STREET","district_id":63},{"title":"\u0634\u06cc\u0628\u0627\u0646\u06cc","type":"STREET","district_id":63},{"title":"\u0627\u0645\u0627\u0645\u200c\u0632\u0627\u062f\u0647 \u0639\u0644\u06cc\u200c\u0627\u06a9\u0628\u0631","type":"STREET","district_id":63},{"title":"\u0644\u0648\u0632\u06cc","type":"SQUARE","district_id":952},{"title":"\u0633\u06cc\u200c\u0645\u062a\u0631\u06cc \u0646\u06cc\u0631\u0648\u06cc \u0647\u0648\u0627\u06cc\u06cc","type":"STREET","district_id":952},{"title":"\u062d\u0633\u0646\u200c\u0622\u0628\u0627\u062f","type":"STREET","district_id":99},{"title":"\u0648\u062d\u062f\u062a \u0627\u0633\u0644\u0627\u0645\u06cc","type":"STREET","district_id":99},{"title":"\u0627\u0645\u0627\u0645 \u062e\u0645\u06cc\u0646\u06cc","type":"STREET","district_id":99},{"title":"\u0647\u0627\u0634\u0645\u06cc","type":"HIGHWAY","district_id":216},{"title":"\u062e\u0644\u06cc\u062c \u0641\u0627\u0631\u0633","type":"HIGHWAY","district_id":216},{"title":"\u0627\u0641\u062a\u062e\u0627\u0631\u06cc\u0627\u0646","type":"STREET","district_id":1025},{"title":"\u0634\u0639\u0628\u0627\u0646\u0644\u0648","type":"STREET","district_id":1025},{"title":"\u0648\u0641\u0627\u0645\u0646\u0634","type":"STREET","district_id":1025},{"title":"\u0645\u0639\u0644\u0645","type":"STREET","district_id":130},{"title":"\u0645\u0631\u0648\u062f\u0634\u062a","type":"STREET","district_id":130},{"title":"\u0642\u062f\u0648\u0633\u06cc","type":"STREET","district_id":130},{"title":"\u0634\u0631\u06cc\u0639\u062a\u06cc","type":"STREET","district_id":130},{"title":"\u067e\u0644\u06cc\u0633","type":"STREET","district_id":130},{"title":"\u062b\u0631\u0648\u062a\u06cc","type":"STREET","district_id":942},{"title":"\u0633\u0639\u06cc\u062f\u06cc","type":"STREET","district_id":942},{"title":"\u0644\u0648\u0627\u0633\u0627\u0646\u06cc \u0634\u0631\u0642\u06cc","type":"STREET","district_id":942},{"title":"\u0645\u062a\u0642\u06cc\u0627\u0646","type":"STREET","district_id":942},{"title":"\u0639\u0633\u06af\u0631\u06cc\u0627\u0646","type":"STREET","district_id":942},{"title":"\u0628\u0627\u0647\u0646\u0631","type":"STREET","district_id":942},{"title":"\u067e\u0627\u0633\u062f\u0627\u0631\u0627\u0646 \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":942},{"title":"\u0628\u0627\u0647\u0646\u0631","type":"SQUARE","district_id":942},{"title":"\u0633\u06cc\u0645\u0648\u0646 \u0628\u0648\u0644\u06cc\u0648\u0627\u0631","type":"BOULEVARD","district_id":919},{"title":"\u0646\u0633\u06cc\u0645","type":"STREET","district_id":919},{"title":"\u062f\u0627\u0646\u0634\u06af\u0627\u0647","type":"BOULEVARD","district_id":919},{"title":"\u0627\u0646\u062f\u0631\u0632\u06af\u0648","type":"STREET","district_id":931},{"title":"\u0635\u0628\u0627","type":"BOULEVARD","district_id":931},{"title":"\u0642\u06cc\u0637\u0631\u06cc\u0647","type":"STREET","district_id":931},{"title":"\u0648\u0627\u0639\u0638\u06cc","type":"STREET","district_id":931},{"title":"\u0645\u0648\u0633\u06cc\u0648\u0646\u062f","type":"STREET","district_id":931},{"title":"\u0631\u0641\u0639\u062a","type":"STREET","district_id":931},{"title":"\u06a9\u0631\u06cc\u0645\u06cc","type":"STREET","district_id":931},{"title":"\u0633\u0644\u06cc\u0645\u06cc \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":931},{"title":"\u0634\u0631\u06cc\u0639\u062a\u06cc","type":"STREET","district_id":931},{"title":"\u0633\u0644\u06cc\u0645\u0627\u0646\u06cc \u063a\u0631\u0628\u06cc","type":"STREET","district_id":931},{"title":"\u0633\u0644\u06cc\u0645\u0627\u0646\u06cc \u0634\u0631\u0642\u06cc","type":"STREET","district_id":931},{"title":"\u0645\u0698\u062f\u0647","type":"CROSSROAD","district_id":931},{"title":"\u0642\u062f\u0633","type":"SQUARE","district_id":931},{"title":"\u062a\u062c\u0631\u06cc\u0634","type":"SUBWAY","district_id":931},{"title":"\u0642\u06cc\u0637\u0631\u06cc\u0647","type":"SUBWAY","district_id":931},{"title":"\u06a9\u0648\u06cc \u062f\u0627\u0646\u0634\u06af\u0627\u0647","type":"STREET","district_id":121},{"title":"\u0628\u0647\u0627\u0631","type":"BOULEVARD","district_id":121},{"title":"\u0634\u0647\u0631\u06a9 \u0634\u0647\u06cc\u062f \u0628\u0647\u0634\u062a\u06cc","type":"TOWN","district_id":121},{"title":"\u0634\u0647\u06cc\u062f \u063a\u06cc\u0628\u06cc","type":"SQUARE","district_id":985},{"title":"\u0646\u0645\u0627\u0632","type":"SQUARE","district_id":985},{"title":"\u0641\u0631\u0645\u0627\u0646\u062f\u0627\u0631\u06cc","type":"SQUARE","district_id":985},{"title":"\u0634\u0647\u0631\u0631\u06cc","type":"SUBWAY","district_id":985},{"title":"\u0647\u0641\u062a \u062a\u06cc\u0631","type":"SQUARE","district_id":937},{"title":"\u0645\u0641\u062a\u062d","type":"STREET","district_id":937},{"title":"\u0628\u0647\u0627\u0631","type":"STREET","district_id":937},{"title":"\u0645\u0641\u062a\u062d","type":"STREET","district_id":937},{"title":"\u0633\u0645\u06cc\u0647","type":"STREET","district_id":937},{"title":"\u0637\u0627\u0644\u0642\u0627\u0646\u06cc","type":"STREET","district_id":937},{"title":"\u0628\u0647\u0627\u0631 \u0634\u06cc\u0631\u0627\u0632","type":"STREET","district_id":937},{"title":"\u0631\u0647\u0628\u0631","type":"SQUARE","district_id":948},{"title":"\u0627\u062d\u0633\u0627\u0646","type":"BOULEVARD","district_id":948},{"title":"\u0632\u0647\u062f\u06cc","type":"STREET","district_id":948},{"title":"\u0648\u062d\u062f\u062a \u0627\u0633\u0644\u0627\u0645\u06cc","type":"STREET","district_id":255},{"title":"\u0645\u062e\u062a\u0627\u0631\u06cc","type":"STREET","district_id":255},{"title":"\u062a\u062e\u062a\u06cc","type":"STREET","district_id":255},{"title":"\u062e\u06cc\u0627\u0645","type":"STREET","district_id":255},{"title":"\u0634\u0648\u0634","type":"STREET","district_id":255},{"title":"\u0645\u0648\u0644\u0648\u06cc","type":"STREET","district_id":255},{"title":"\u0645\u06cc\u0639\u0627\u062f","type":"STREET","district_id":989},{"title":"\u0645\u06cc\u062b\u0627\u0642","type":"STREET","district_id":989},{"title":"\u0644\u0637\u06cc\u0641\u06cc","type":"STREET","district_id":989},{"title":"\u062a\u0646\u062f\u06af\u0648\u06cc\u0627\u0646","type":"BOULEVARD","district_id":989},{"title":"\u0622\u0632\u0627\u062f\u06af\u0627\u0646","type":"BOULEVARD","district_id":989},{"title":"\u062e\u0627\u0648\u0631\u0627\u0646","type":"STREET","district_id":1017},{"title":"\u062e\u0631\u0627\u0633\u0627\u0646","type":"SQUARE","district_id":1017},{"title":"\u0647\u0641\u062f\u0647 \u0634\u0647\u0631\u06cc\u0648\u0631","type":"STREET","district_id":1017},{"title":"\u0645\u062e\u0628\u0631 \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":1017},{"title":"\u062c\u0647\u0627\u0646\u200c\u067e\u0646\u0627\u0647","type":"STREET","district_id":1017},{"title":"\u0622\u06cc\u062a\u200c\u0627\u0644\u0644\u0647 \u0633\u0639\u06cc\u062f\u06cc","type":"STREET","district_id":1017},{"title":"\u0628\u0639\u062b\u062a","type":"TOWN","district_id":253},{"title":"\u0628\u062e\u0627\u0631\u0627\u06cc\u06cc","type":"STREET","district_id":253},{"title":"\u0641\u062f\u0627\u06cc\u06cc\u0627\u0646 \u0627\u0633\u0644\u0627\u0645","type":"STREET","district_id":253},{"title":"\u0627\u0628\u0631\u06cc\u0634\u0645","type":"BOULEVARD","district_id":253},{"title":"\u062e\u0644\u06cc\u062c \u0641\u0627\u0631\u0633","type":"BOULEVARD","district_id":188},{"title":"\u0633\u06cc\u0646\u0627","type":"TOWN","district_id":188},{"title":"\u0641\u062a\u062d","type":"HIGHWAY","district_id":188},{"title":"\u0622\u0632\u0627\u062f\u06af\u0627\u0646","type":"HIGHWAY","district_id":188},{"title":"\u0633\u067e\u0627\u0647","type":"SQUARE","district_id":286},{"title":"\u0637\u0627\u0644\u0642\u0627\u0646\u06cc","type":"STREET","district_id":286},{"title":"\u0634\u0631\u06cc\u0639\u062a\u06cc","type":"STREET","district_id":286},{"title":"\u062d\u0642\u0648\u0642\u06cc","type":"STREET","district_id":286},{"title":"\u0646\u0627\u0645\u062c\u0648","type":"STREET","district_id":286},{"title":"\u0627\u0646\u0642\u0644\u0627\u0628","type":"STREET","district_id":286},{"title":"\u062e\u0648\u0627\u062c\u0647 \u0646\u0635\u06cc\u0631\u0627\u0644\u062f\u06cc\u0646 \u0637\u0648\u0633\u06cc","type":"STREET","district_id":286},{"title":"\u0646\u0627\u0645\u062c\u0648","type":"STREET","district_id":958},{"title":"\u0634\u06cc\u062e \u0635\u0641\u06cc","type":"STREET","district_id":958},{"title":"\u0633\u067e\u0627\u0647","type":"SQUARE","district_id":958},{"title":"\u062e\u0648\u0627\u062c\u0647 \u0646\u0635\u06cc\u0631\u0627\u0644\u062f\u06cc\u0646 \u0637\u0648\u0633\u06cc","type":"STREET","district_id":958},{"title":"\u067e\u0648\u0631\u0627\u0628\u062a\u0647\u0627\u062c","type":"STREET","district_id":47},{"title":"\u0627\u0641\u062a\u062e\u0627\u0631\u06cc","type":"STREET","district_id":47},{"title":"\u0627\u0631\u062a\u0634","type":"BOULEVARD","district_id":47},{"title":"\u06a9\u0634\u0627\u0648\u0631\u0632","type":"BOULEVARD","district_id":209},{"title":"\u0637\u0627\u0644\u0642\u0627\u0646\u06cc","type":"STREET","district_id":209},{"title":"\u0641\u0644\u0633\u0637\u06cc\u0646","type":"STREET","district_id":209},{"title":"\u0634\u0627\u0646\u0632\u062f\u0647 \u0622\u0630\u0631","type":"STREET","district_id":209},{"title":"\u0628\u0632\u0631\u06af\u0645\u0647\u0631","type":"STREET","district_id":209},{"title":"\u0642\u062f\u0633","type":"STREET","district_id":209},{"title":"\u0627\u0646\u0642\u0644\u0627\u0628","type":"STREET","district_id":209},{"title":"\u062a\u06cc\u0645\u0648\u0631\u06cc","type":"STREET","district_id":928},{"title":"\u062d\u0628\u06cc\u0628\u200c\u0627\u0644\u0644\u0647","type":"STREET","district_id":928},{"title":"\u0644\u0637\u0641\u0639\u0644\u06cc\u200c\u062e\u0627\u0646\u06cc","type":"STREET","district_id":928},{"title":"\u0627\u06a9\u0628\u0631\u06cc","type":"BOULEVARD","district_id":928},{"title":"\u0622\u0632\u0627\u062f\u06cc","type":"STREET","district_id":928},{"title":"\u062f\u0627\u0646\u0634\u06af\u0627\u0647 \u0634\u0631\u06cc\u0641","type":"SUBWAY","district_id":928},{"title":"\u0641\u0631\u062c\u0627\u0645","type":"STREET","district_id":116},{"title":"\u0647\u0646\u06af\u0627\u0645","type":"STREET","district_id":116},{"title":"\u0633\u0631\u0627\u062c","type":"STREET","district_id":116},{"title":"\u062f\u0644\u0627\u0648\u0631\u0627\u0646","type":"BOULEVARD","district_id":116},{"title":"\u062d\u06cc\u062f\u0631\u062e\u0627\u0646\u06cc","type":"STREET","district_id":116},{"title":"\u0633\u06cc\u062f\u062e\u0646\u062f\u0627\u0646","type":"STREET","district_id":127},{"title":"\u0627\u0633\u062a\u0627\u062f \u062d\u0633\u0646 \u0628\u0646\u0627 \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":127},{"title":"\u062d\u0627\u062c\u06cc \u067e\u0648\u0631","type":"STREET","district_id":127},{"title":"\u06a9\u0644\u0627\u0647\u062f\u0648\u0632","type":"STREET","district_id":940},{"title":"\u06a9\u06cc\u06a9\u0627\u0648\u0648\u0633","type":"STREET","district_id":940},{"title":"\u06a9\u0627\u0648\u0647","type":"BOULEVARD","district_id":940},{"title":"\u0634\u0631\u06cc\u0639\u062a\u06cc","type":"STREET","district_id":940},{"title":"\u0635\u062f\u0631","type":"HIGHWAY","district_id":940},{"title":"\u0642\u0644\u0646\u062f\u0631\u06cc \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":940},{"title":"\u062f\u0631\u0628\u0646\u062f","type":"STREET","district_id":54},{"title":"\u0627\u0633\u062f\u0627\u0644\u0647\u06cc","type":"STREET","district_id":54},{"title":"\u0641\u0646\u0627\u062e\u0633\u0631\u0648","type":"STREET","district_id":54},{"title":"\u0633\u0639\u062f\u0622\u0628\u0627\u062f","type":"STREET","district_id":54},{"title":"\u0642\u062f\u0633","type":"SQUARE","district_id":54},{"title":"\u062a\u062c\u0631\u06cc\u0634","type":"SQUARE","district_id":54},{"title":"\u0634\u0647\u0631\u062f\u0627\u0631\u06cc","type":"STREET","district_id":54},{"title":"\u062a\u062c\u0631\u06cc\u0634","type":"SUBWAY","district_id":54},{"title":"\u0637\u0628\u0627\u0637\u0628\u0627\u06cc\u06cc\u200c\u067e\u0648\u0631","type":"STREET","district_id":54},{"title":"\u063a\u0644\u0627\u0645 \u062c\u0639\u0641\u0631\u06cc","type":"STREET","district_id":54},{"title":"\u0634\u06a9\u06cc\u0628\u0627\u06cc\u06cc","type":"STREET","district_id":54},{"title":"\u0645\u0644\u06a9\u06cc","type":"STREET","district_id":54},{"title":"\u062f\u0631\u062f\u0634\u062a","type":"STREET","district_id":118},{"title":"\u06af\u0644\u0628\u0631\u06af \u0634\u0631\u0642\u06cc","type":"STREET","district_id":118},{"title":"\u0628\u0627\u0642\u0631\u06cc","type":"HIGHWAY","district_id":118},{"title":"\u062f\u0631\u06a9\u0647","type":"STREET","district_id":58},{"title":"\u0634\u0627\u0647\u200c\u062d\u0633\u06cc\u0646\u06cc","type":"STREET","district_id":58},{"title":"\u0632\u0631\u06cc\u0646 \u0646\u0639\u0644","type":"STREET","district_id":285},{"title":"\u062e\u0648\u0631\u0634\u06cc\u062f","type":"STREET","district_id":285},{"title":"\u0634\u0647\u062f\u0627","type":"SQUARE","district_id":285},{"title":"\u0635\u0641\u0627 \u063a\u0631\u0628\u06cc","type":"STREET","district_id":285},{"title":"\u0645\u062c\u0627\u0647\u062f\u06cc\u0646","type":"STREET","district_id":285},{"title":"\u0627\u0646\u0642\u0644\u0627\u0628","type":"STREET","district_id":285},{"title":"\u0647\u0641\u062f\u0647 \u0634\u0647\u0631\u06cc\u0648\u0631","type":"STREET","district_id":285},{"title":"\u067e\u0627\u0633\u062f\u0627\u0631\u0627\u0646","type":"STREET","district_id":71},{"title":"\u06cc\u062e\u0686\u0627\u0644","type":"STREET","district_id":71},{"title":"\u06a9\u0644\u0627\u0647\u062f\u0648\u0632","type":"STREET","district_id":71},{"title":"\u0647\u062f\u0627\u06cc\u062a","type":"STREET","district_id":71},{"title":"\u0634\u0647\u0631\u0632\u0627\u062f","type":"BOULEVARD","district_id":71},{"title":"\u06cc\u0627\u0631\u0645\u062d\u0645\u062f\u06cc","type":"STREET","district_id":71},{"title":"\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc\u0647 \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":71},{"title":"\u0645\u062d\u0633\u0646\u06cc\u0627\u0646","type":"STREET","district_id":71},{"title":"\u0633\u0639\u0627\u062f\u062a\u200c\u0622\u0628\u0627\u062f \u062c\u0646\u0648\u0628\u06cc","type":"BOULEVARD","district_id":929},{"title":"\u062f\u0631\u06cc\u0627","type":"BOULEVARD","district_id":929},{"title":"\u0645\u062f\u06cc\u0631\u06cc\u062a","type":"BOULEVARD","district_id":929},{"title":"\u067e\u0627\u06a9\u0646\u0698\u0627\u062f","type":"BOULEVARD","district_id":929},{"title":"\u0641\u0631\u0647\u0646\u06af","type":"BOULEVARD","district_id":929},{"title":"\u062f\u0627\u062f\u0645\u0627\u0646","type":"BOULEVARD","district_id":929},{"title":"\u0635\u0631\u0627\u0641\u0647\u0627","type":"BOULEVARD","district_id":929},{"title":"\u0647\u0627\u0634\u0645\u06cc \u0631\u0641\u0633\u0646\u062c\u0627\u0646\u06cc","type":"HIGHWAY","district_id":929},{"title":"\u062f\u0631\u06cc\u0627\u0686\u0647","type":"SQUARE","district_id":1031},{"title":"\u062e\u0631\u0627\u0632\u06cc","type":"HIGHWAY","district_id":1031},{"title":"\u0634\u0647\u0631\u06a9 \u062f\u0627\u0646\u0634\u06af\u0627\u0647 \u0634\u0631\u06cc\u0641","type":"TOWN","district_id":1031},{"title":"\u0645\u0631\u0648\u0627\u0631\u06cc\u062f \u0634\u0647\u0631","type":"TOWN","district_id":1031},{"title":"\u0633\u062a\u0627\u0631\u062e\u0627\u0646","type":"STREET","district_id":200},{"title":"\u0632\u0646\u062c\u0627\u0646 \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":200},{"title":"\u062d\u0628\u06cc\u0628 \u0627\u0644\u0644\u0647","type":"STREET","district_id":200},{"title":"\u0647\u0645\u0627\u06cc\u0648\u0646\u200c\u0634\u0647\u0631 \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":200},{"title":"\u0628\u0627\u0647\u0646\u0631","type":"STREET","district_id":66},{"title":"\u0644\u0648\u0627\u0633\u0627\u0646\u06cc \u063a\u0631\u0628\u06cc","type":"STREET","district_id":66},{"title":"\u0639\u0645\u0627\u0631","type":"STREET","district_id":66},{"title":"\u0646\u062c\u0627\u0628\u062a\u200c\u062c\u0648","type":"STREET","district_id":66},{"title":"\u062f\u06a9\u062a\u0631 \u0647\u0648\u0634\u06cc\u0627\u0631","type":"STREET","district_id":1029},{"title":"\u0627\u0633\u062a\u0627\u062f \u0645\u0639\u06cc\u0646","type":"BOULEVARD","district_id":1029},{"title":"\u062f\u0627\u0645\u067e\u0632\u0634\u06a9\u06cc","type":"STREET","district_id":1029},{"title":"\u0637\u0648\u0633","type":"STREET","district_id":1029},{"title":"\u06f2\u06f1 \u0645\u062a\u0631\u06cc \u062c\u06cc","type":"STREET","district_id":1029},{"title":"\u0634\u0647\u06cc\u062f\u0627\u0646","type":"STREET","district_id":1029},{"title":"\u0622\u0632\u0627\u062f\u06cc","type":"STREET","district_id":1029},{"title":"\u0647\u0627\u0634\u0645\u06cc","type":"STREET","district_id":1029},{"title":"\u0634\u06a9\u0648\u0641\u0647","type":"STREET","district_id":290},{"title":"\u062f\u0698\u06a9\u0627\u0645","type":"STREET","district_id":290},{"title":"\u06a9\u0631\u0645\u0627\u0646","type":"STREET","district_id":290},{"title":"\u062f\u0631\u0648\u062f\u06cc\u0627\u0646","type":"STREET","district_id":290},{"title":"\u0646\u06cc\u06a9\u0646\u0627\u0645","type":"STREET","district_id":290},{"title":"\u0634\u06a9\u0648\u0631\u06cc","type":"STREET","district_id":290},{"title":"\u0633\u0639\u06cc\u062f\u06cc","type":"SQUARE","district_id":272},{"title":"\u062e\u0627\u0648\u0631\u0627\u0646","type":"STREET","district_id":272},{"title":"\u0645\u062d\u0644\u0627\u062a\u06cc","type":"HIGHWAY","district_id":272},{"title":"\u0628\u0631\u0627\u062f\u0631\u0627\u0646 \u0627\u0631\u062f\u0633\u062a\u0627\u0646\u06cc","type":"SQUARE","district_id":233},{"title":"\u0642\u062f\u0633","type":"BOULEVARD","district_id":233},{"title":"\u0628\u0631\u0648\u062c\u0631\u062f\u06cc","type":"SQUARE","district_id":233},{"title":"\u067e\u0631\u0648\u06cc\u0646 \u0627\u0639\u062a\u0635\u0627\u0645\u06cc","type":"STREET","district_id":233},{"title":"\u06af\u0644\u0633\u0627\u0631","type":"TOWN","district_id":918},{"title":"\u0633\u0639\u06cc\u062f\u06cc","type":"HIGHWAY","district_id":918},{"title":"\u0622\u0632\u0627\u062f\u06af\u0627\u0646","type":"HIGHWAY","district_id":918},{"title":"\u062f\u0647\u0642\u0627\u0646","type":"STREET","district_id":962},{"title":"\u067e\u06cc\u0631\u0648\u0632\u06cc","type":"STREET","district_id":962},{"title":"\u06cc\u06a9\u0645 \u0646\u06cc\u0631\u0648 \u0647\u0648\u0627\u06cc\u06cc","type":"STREET","district_id":962},{"title":"\u062f\u0647\u06a9\u062f\u0647 \u0627\u0644\u0645\u067e\u06cc\u06a9","type":"BOULEVARD","district_id":161},{"title":"\u0622\u0628\u0634\u0627\u0631","type":"BOULEVARD","district_id":161},{"title":"\u0648\u0631\u0632\u0634","type":"BOULEVARD","district_id":161},{"title":"\u062e\u0631\u0627\u0632\u06cc","type":"HIGHWAY","district_id":161},{"title":"\u0634\u06cc\u062e \u0628\u0647\u0627\u06cc\u06cc \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":81},{"title":"\u0633\u0626\u0648\u0644","type":"STREET","district_id":81},{"title":"\u062f\u06cc\u0644\u0645\u0627\u0646","type":"STREET","district_id":228},{"title":"\u0646\u0645\u0627\u0632","type":"SQUARE","district_id":228},{"title":"\u0645\u0646\u062a\u0638\u0631\u06cc","type":"STREET","district_id":228},{"title":"\u06af\u0644\u0647\u0627","type":"STREET","district_id":228},{"title":"\u0631\u0628\u0627\u0637\u200c\u06a9\u0631\u06cc\u0645","type":"STREET","district_id":426},{"title":"\u0631\u0648\u062f\u0647\u0646","type":"STREET","district_id":418},{"title":"\u0632\u0627\u0647\u062f \u06af\u06cc\u0644\u0627\u0646\u06cc","type":"STREET","district_id":964},{"title":"\u067e\u06cc\u0631\u0648\u0632\u06cc","type":"STREET","district_id":964},{"title":"\u06a9\u0644\u06cc\u0646\u06cc","type":"STREET","district_id":964},{"title":"\u0637\u0628\u0631\u0633\u06cc","type":"STREET","district_id":964},{"title":"\u067e\u06cc\u0686\u06a9","type":"STREET","district_id":964},{"title":"\u067e\u0631\u0648\u0627\u0632","type":"STREET","district_id":964},{"title":"\u062f\u0627\u0648\u0648\u062f\u06cc","type":"STREET","district_id":955},{"title":"\u06af\u0644\u0634\u0646\u200c\u062f\u0648\u0633\u062a","type":"STREET","district_id":955},{"title":"\u062f\u0645\u0627\u0648\u0646\u062f","type":"STREET","district_id":955},{"title":"\u0634\u0631\u06cc\u0639\u062a\u06cc","type":"STREET","district_id":84},{"title":"\u0639\u0645\u0631\u0627\u0646\u06cc","type":"STREET","district_id":84},{"title":"\u062f\u0644\u06cc\u0631\u06cc","type":"STREET","district_id":84},{"title":"\u0631\u0648\u062f\u06a9\u06cc","type":"STREET","district_id":84},{"title":"\u0635\u062f\u0631","type":"HIGHWAY","district_id":84},{"title":"\u0627\u0639\u062c\u0627\u0632\u06cc","type":"STREET","district_id":56},{"title":"\u0645\u0642\u062f\u0633 \u0627\u0631\u062f\u0628\u06cc\u0644\u06cc","type":"STREET","district_id":56},{"title":"\u0627\u0644\u0641","type":"STREET","district_id":56},{"title":"\u0641\u0644\u0627\u062d\u06cc","type":"STREET","district_id":56},{"title":"\u0645\u0627\u06a9\u0648\u0626\u06cc\u200c\u067e\u0648\u0631","type":"STREET","district_id":56},{"title":"\u0646\u06cc\u0627\u0632\u0632\u0627\u062f\u0647","type":"STREET","district_id":56},{"title":"\u0641\u06cc\u0631\u0648\u0632\u06a9\u0648\u0647","type":"STREET","district_id":56},{"title":"\u0648\u0644\u06cc\u0639\u0635\u0631","type":"STREET","district_id":56},{"title":"\u0634\u0647\u06cc\u062f \u063a\u0644\u0627\u0645\u0631\u0636\u0627\u06cc\u06cc","type":"STREET","district_id":1009},{"title":"\u0646\u0648\u0627\u0628","type":"HIGHWAY","district_id":1009},{"title":"\u0686\u0631\u0627\u063a\u06cc","type":"HIGHWAY","district_id":1009},{"title":"\u0637\u0648\u0633","type":"STREET","district_id":1001},{"title":"\u0628\u0647\u0646\u0648\u062f","type":"STREET","district_id":1001},{"title":"\u062f\u0627\u0645\u067e\u0632\u0634\u06a9\u06cc","type":"STREET","district_id":1001},{"title":"\u062c\u06cc\u062d\u0648\u0646","type":"STREET","district_id":1001},{"title":"\u06cc\u0627\u062f\u06af\u0627\u0631 \u0627\u0645\u0627\u0645","type":"HIGHWAY","district_id":1001},{"title":"\u0622\u0632\u0627\u062f\u06cc","type":"STREET","district_id":1001},{"title":"\u0634\u0647\u06cc\u062f\u0627\u0646","type":"STREET","district_id":1001},{"title":"\u0647\u0627\u0634\u0645\u06cc","type":"STREET","district_id":1001},{"title":"\u0634\u0647\u06cc\u062f \u063a\u0644\u0627\u0645\u0631\u0636\u0627\u06cc\u06cc","type":"STREET","district_id":268},{"title":"\u0633\u0639\u06cc\u062f\u06cc","type":"HIGHWAY","district_id":268},{"title":"\u0686\u0631\u0627\u063a\u06cc","type":"HIGHWAY","district_id":268},{"title":"\u062f\u0647\u06a9\u062f\u0647 \u0627\u0644\u0645\u067e\u06cc\u06a9","type":"BOULEVARD","district_id":162},{"title":"\u0686\u0634\u0645\u0647","type":"TOWN","district_id":162},{"title":"\u0644\u0627\u0644\u0647","type":"TOWN","district_id":162},{"title":"\u06af\u0644\u0628\u0627\u0646\u06af","type":"STREET","district_id":162},{"title":"\u062f\u0648\u0631\u0627\u0646","type":"HIGHWAY","district_id":122},{"title":"\u06cc\u0627\u0633\u06cc\u0646\u06cc","type":"HIGHWAY","district_id":122},{"title":"\u0634\u0631\u0628\u06cc\u0627\u0646\u06cc","type":"STREET","district_id":157},{"title":"\u0646\u06cc\u0644\u0648\u0641\u0631","type":"STREET","district_id":157},{"title":"\u0633\u0631\u0648","type":"STREET","district_id":157},{"title":"\u0646\u06cc\u0644\u0648\u0641\u0631","type":"STREET","district_id":157},{"title":"\u0646\u0648\u0631\u0648\u0632\u06cc","type":"STREET","district_id":157},{"title":"\u0641\u0631\u0633\u0627\u062f","type":"STREET","district_id":157},{"title":"\u062a\u0639\u0627\u0648\u0646","type":"BOULEVARD","district_id":157},{"title":"\u0633\u0627\u0632\u0645\u0627\u0646 \u0628\u0631\u0646\u0627\u0645\u0647","type":"STREET","district_id":158},{"title":"\u0634\u0642\u0627\u06cc\u0642","type":"BOULEVARD","district_id":158},{"title":"\u0641\u0631\u062f\u0648\u0633 \u063a\u0631\u0628","type":"BOULEVARD","district_id":158},{"title":"\u0644\u0627\u0644\u0647","type":"BOULEVARD","district_id":158},{"title":"\u0622\u06cc\u062a\u200c\u0627\u0644\u0644\u0647 \u06a9\u0627\u0634\u0627\u0646\u06cc","type":"HIGHWAY","district_id":158},{"title":"\u0633\u0628\u0644\u0627\u0646 \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":950},{"title":"\u0645\u062f\u0646\u06cc","type":"STREET","district_id":950},{"title":"\u062d\u06cc\u062f\u0631\u06cc","type":"STREET","district_id":950},{"title":"\u0633\u067e\u0647\u0631","type":"STREET","district_id":926},{"title":"\u0641\u0631\u062d\u0632\u0627\u062f\u06cc","type":"BOULEVARD","district_id":926},{"title":"\u062f\u0627\u062f\u0645\u0627\u0646","type":"BOULEVARD","district_id":926},{"title":"\u062f\u0631\u062e\u062a\u06cc","type":"STREET","district_id":926},{"title":"\u0647\u0627\u0634\u0645\u06cc \u0631\u0641\u0633\u0646\u062c\u0627\u0646\u06cc","type":"HIGHWAY","district_id":926},{"title":"\u0633\u062a\u0627\u0631\u062e\u0627\u0646","type":"STREET","district_id":205},{"title":"\u062d\u0627\u062c\u06cc\u200c\u067e\u0648\u0631","type":"STREET","district_id":205},{"title":"\u062c\u0647\u0627\u0646\u06cc\u200c\u0646\u0633\u0628","type":"STREET","district_id":205},{"title":"\u062c\u0644\u0627\u0644 \u0622\u0644 \u0622\u062d\u0645\u062f","type":"HIGHWAY","district_id":205},{"title":"\u0634\u06cc\u062e \u0641\u0636\u0644\u200c\u0627\u0644\u0644\u0647","type":"HIGHWAY","district_id":205},{"title":"\u06cc\u0627\u062f\u06af\u0627\u0631 \u0627\u0645\u0627\u0645","type":"HIGHWAY","district_id":205},{"title":"\u062a\u0627\u062c\u06cc\u06a9","type":"STREET","district_id":970},{"title":"\u067e\u0627\u0633\u062f\u0627\u0631 \u06af\u0645\u0646\u0627\u0645","type":"STREET","district_id":970},{"title":"\u062e\u0636\u0631\u0627\u06cc\u06cc","type":"STREET","district_id":970},{"title":"\u06a9\u0631\u0645\u0627\u0646","type":"STREET","district_id":970},{"title":"\u0627\u0645\u0627\u0645 \u0639\u0644\u06cc","type":"HIGHWAY","district_id":970},{"title":"\u0637\u0627\u0644\u0642\u0627\u0646\u06cc","type":"STREET","district_id":914},{"title":"\u062a\u0647\u0631\u0627\u0646-\u06a9\u0631\u062c","type":"HIGHWAY","district_id":914},{"title":"\u062a\u0641\u0631\u0634 \u063a\u0631\u0628\u06cc","type":"STREET","district_id":914},{"title":"\u0648\u0627\u0634\u0642\u0627\u0646\u06cc \u0641\u0631\u0627\u0647\u0627\u0646\u06cc","type":"STREET","district_id":914},{"title":"\u0632\u0631\u0646\u062f","type":"STREET","district_id":914},{"title":"\u0647\u0627\u062f\u06cc \u0633\u0627\u0639\u06cc","type":"SQUARE","district_id":984},{"title":"\u0622\u0633\u062a\u0627\u0646\u0647","type":"STREET","district_id":984},{"title":"\u0645\u062f\u0631\u0633","type":"BOULEVARD","district_id":984},{"title":"\u06cc\u0627\u0633\u06cc\u0646\u06cc","type":"HIGHWAY","district_id":946},{"title":"\u062f\u0645\u0627\u0648\u0646\u062f","type":"STREET","district_id":946},{"title":"\u0622\u0632\u0627\u062f\u0634\u0647\u0631","type":"TOWN","district_id":311},{"title":"\u062a\u0647\u0631\u0627\u0646-\u06a9\u0631\u062c","type":"HIGHWAY","district_id":311},{"title":"\u062e\u0631\u0627\u0632\u06cc","type":"HIGHWAY","district_id":311},{"title":"\u0633\u0639\u0627\u062f\u062a\u200c\u0622\u0628\u0627\u062f","type":"BOULEVARD","district_id":75},{"title":"\u06a9\u0627\u062c","type":"SQUARE","district_id":75},{"title":"\u067e\u0627\u06a9\u0646\u0698\u0627\u062f","type":"BOULEVARD","district_id":75},{"title":"\u0641\u0631\u0647\u0646\u06af","type":"BOULEVARD","district_id":75},{"title":"\u0628\u062e\u0634\u0627\u06cc\u0634","type":"STREET","district_id":75},{"title":"\u0633\u0631\u0648 \u063a\u0631\u0628\u06cc","type":"STREET","district_id":75},{"title":"\u0633\u0631\u0648 \u0634\u0631\u0642\u06cc","type":"STREET","district_id":75},{"title":"\u0645\u0631\u0648\u0627\u0631\u06cc\u062f","type":"STREET","district_id":75},{"title":"\u0641\u0631\u0647\u0646\u06af","type":"SQUARE","district_id":75},{"title":"\u0647\u0627\u0634\u0645\u06cc \u0631\u0641\u0633\u0646\u062c\u0627\u0646\u06cc","type":"HIGHWAY","district_id":75},{"title":"\u06cc\u0627\u062f\u06af\u0627\u0631 \u0627\u0645\u0627\u0645","type":"HIGHWAY","district_id":75},{"title":"\u0633\u0639\u06cc\u062f\u0622\u0628\u0627\u062f","type":"STREET","district_id":913},{"title":"\u0646\u0648\u0627\u0628","type":"STREET","district_id":999},{"title":"\u0645\u062d\u0628\u0648\u0628 \u0645\u062c\u0627\u0632","type":"STREET","district_id":999},{"title":"\u0628\u0631\u06cc\u0627\u0646\u06a9 \u0634\u0631\u0642\u06cc","type":"STREET","district_id":999},{"title":"\u062e\u0631\u0645\u0634\u0647\u0631","type":"STREET","district_id":999},{"title":"\u062c\u0648\u0627\u0646\u0645\u0631\u062f","type":"STREET","district_id":999},{"title":"\u06a9\u0645\u06cc\u0644","type":"STREET","district_id":999},{"title":"\u0631\u0648\u062f\u06a9\u06cc","type":"STREET","district_id":284},{"title":"\u0642\u0635\u0631\u0627\u0644\u062f\u0634\u062a","type":"STREET","district_id":284},{"title":"\u06a9\u0645\u06cc\u0644","type":"STREET","district_id":284},{"title":"\u0645\u0631\u062a\u0636\u0648\u06cc","type":"STREET","district_id":284},{"title":"\u0627\u0645\u0627\u0645 \u062e\u0645\u06cc\u0646\u06cc","type":"STREET","district_id":284},{"title":"\u0645\u0627\u0644\u06a9 \u0627\u0634\u062a\u0631","type":"STREET","district_id":284},{"title":"\u062e\u0648\u0634","type":"STREET","district_id":284},{"title":"\u0627\u0630\u0631\u0628\u0627\u06cc\u062c\u0627\u0646","type":"STREET","district_id":284},{"title":"\u0628\u0647\u0646\u0648\u062f","type":"STREET","district_id":284},{"title":"\u06a9\u0644\u0647\u0631","type":"STREET","district_id":284},{"title":"\u0647\u0627\u0634\u0645\u06cc","type":"STREET","district_id":284},{"title":"\u0622\u0632\u0627\u062f\u06cc","type":"STREET","district_id":284},{"title":"\u0646\u0648\u0627\u0628","type":"HIGHWAY","district_id":284},{"title":"\u0633\u0628\u062d\u0627\u0646\u06cc","type":"STREET","district_id":1005},{"title":"\u062d\u0633\u0627\u0645 \u0627\u0644\u062f\u06cc\u0646","type":"STREET","district_id":1005},{"title":"\u0631\u0646\u062c\u0628\u0631","type":"STREET","district_id":1005},{"title":"\u06a9\u0627\u0638\u0645\u06cc","type":"STREET","district_id":1005},{"title":"\u0642\u0632\u0648\u06cc\u0646","type":"STREET","district_id":1005},{"title":"\u0646\u0648\u0631\u06cc","type":"STREET","district_id":1005},{"title":"\u0633\u0646\u0627\u06cc\u06cc","type":"STREET","district_id":299},{"title":"\u0647\u0641\u062a \u062a\u06cc\u0631","type":"SQUARE","district_id":299},{"title":"\u062e\u0631\u062f\u0645\u0646\u062f \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":299},{"title":"\u0645\u0637\u0647\u0631\u06cc","type":"STREET","district_id":299},{"title":"\u0645\u06cc\u0631\u0632\u0627\u06cc \u0634\u06cc\u0631\u0627\u0632\u06cc","type":"STREET","district_id":299},{"title":"\u0642\u0627\u0626\u0645 \u0645\u0642\u0627\u0645","type":"STREET","district_id":299},{"title":"\u0645\u0634\u0627\u0647\u06cc\u0631","type":"STREET","district_id":299},{"title":"\u0628\u0647\u0634\u062a\u06cc","type":"STREET","district_id":299},{"title":"\u0648\u062d\u062f\u062a \u0627\u0633\u0644\u0627\u0645\u06cc","type":"STREET","district_id":279},{"title":"\u0645\u0648\u0644\u0648\u06cc","type":"STREET","district_id":279},{"title":"\u062e\u06cc\u0627\u0645","type":"STREET","district_id":279},{"title":"\u062f\u06a9\u062a\u0631 \u0641\u06cc\u0627\u0636\u200c\u0628\u062e\u0634","type":"STREET","district_id":279},{"title":"\u0627\u0645\u0627\u0645 \u062e\u0645\u06cc\u0646\u06cc","type":"STREET","district_id":279},{"title":"\u0644\u0627\u0644\u0647","type":"TOWN","district_id":52},{"title":"\u06a9\u0648\u062b\u0631","type":"TOWN","district_id":52},{"title":"\u0627\u0631\u062a\u0634","type":"BOULEVARD","district_id":52},{"title":"\u0627\u0628\u0648\u0630\u0631","type":"TOWN","district_id":52},{"title":"\u0642\u0627\u0626\u0645","type":"SUBWAY","district_id":52},{"title":"\u0645\u06cc\u0646\u06cc \u0633\u06cc\u062a\u06cc","type":"TOWN","district_id":52},{"title":"\u0633\u0647\u0631\u0648\u0631\u062f\u06cc \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":302},{"title":"\u062a\u0631\u06a9\u0645\u0646\u0633\u062a\u0627\u0646","type":"STREET","district_id":302},{"title":"\u0645\u0637\u0647\u0631\u06cc","type":"STREET","district_id":302},{"title":"\u0628\u0647\u0627\u0631 \u0634\u06cc\u0631\u0627\u0632","type":"STREET","district_id":302},{"title":"\u0633\u0644\u06cc\u0645\u0627\u0646 \u062e\u0627\u0637\u0631","type":"STREET","district_id":302},{"title":"\u0634\u0631\u06cc\u0639\u062a\u06cc","type":"STREET","district_id":302},{"title":"\u0645\u0641\u062a\u062d","type":"STREET","district_id":302},{"title":"\u06cc\u0648\u0633\u0641\u06cc\u0627\u0646","type":"STREET","district_id":302},{"title":"\u0633\u06cc\u062f\u062e\u0646\u062f\u0627\u0646","type":"STREET","district_id":95},{"title":"\u0634\u0647\u06cc\u062f \u0639\u0631\u0627\u0642\u06cc","type":"STREET","district_id":95},{"title":"\u062a\u06cc\u0633\u0641\u0648\u0646","type":"STREET","district_id":95},{"title":"\u062e\u0648\u0627\u062c\u0647 \u0639\u0628\u062f\u0627\u0644\u0644\u0647 \u0627\u0646\u0635\u0627\u0631\u06cc","type":"STREET","district_id":95},{"title":"\u0627\u0628\u0648\u0630\u0631 \u063a\u0641\u0627\u0631\u06cc","type":"STREET","district_id":95},{"title":"\u0634\u0631\u06cc\u0639\u062a\u06cc","type":"STREET","district_id":95},{"title":"\u0631\u0633\u0627\u0644\u062a","type":"HIGHWAY","district_id":95},{"title":"\u0633\u06cc\u0631\u0648\u0633","type":"CROSSROAD","district_id":996},{"title":"\u0642\u06cc\u0627\u0645","type":"SQUARE","district_id":996},{"title":"\u0631\u06cc","type":"STREET","district_id":996},{"title":"\u067e\u0627\u0646\u0632\u062f\u0647 \u062e\u0631\u062f\u0627\u062f","type":"STREET","district_id":996},{"title":"\u0645\u0648\u0644\u0648\u06cc","type":"STREET","district_id":996},{"title":"\u0645\u0635\u0637\u0641\u06cc \u062e\u0645\u06cc\u0646\u06cc","type":"STREET","district_id":996},{"title":"\u0631\u062c\u0627\u06cc\u06cc","type":"HIGHWAY","district_id":983},{"title":"\u0645\u0639\u0631\u0627\u062c","type":"TOWN","district_id":983},{"title":"\u062e\u0627\u062a\u0645 \u0627\u0644\u0627\u0646\u0628\u06cc\u0627","type":"STREET","district_id":983},{"title":"\u0622\u0632\u0627\u062f\u06af\u0627\u0646","type":"HIGHWAY","district_id":983},{"title":"\u0627\u0644\u0632\u0647\u0631\u0627","type":"BOULEVARD","district_id":189},{"title":"\u0646\u06af\u0627\u0631\u0633\u062a\u0627\u0646","type":"STREET","district_id":189},{"title":"\u0627\u0644\u063a\u062f\u06cc\u0631","type":"BOULEVARD","district_id":189},{"title":"\u0627\u0628\u0631\u0627\u0647\u06cc\u0645\u200c\u0622\u0628\u0627\u062f","type":"BOULEVARD","district_id":189},{"title":"\u0633\u0639\u06cc\u062f\u0622\u0628\u0627\u062f","type":"STREET","district_id":189},{"title":"\u0634\u0627\u062f\u0645\u0627\u0646","type":"STREET","district_id":656},{"title":"\u0633\u062a\u0627\u0631\u062e\u0627\u0646","type":"STREET","district_id":656},{"title":"\u0628\u0647\u0628\u0648\u062f\u06cc","type":"STREET","district_id":656},{"title":"\u0632\u0646\u062c\u0627\u0646 \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":656},{"title":"\u0634\u0627\u062f\u0645\u0627\u0646","type":"BOULEVARD","district_id":656},{"title":"\u0633\u0628\u0644\u0627\u0646 \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":957},{"title":"\u0645\u062f\u0646\u06cc","type":"STREET","district_id":957},{"title":"\u0627\u0646\u0635\u0627\u0631\u0627\u0644\u062d\u0633\u06cc\u0646","type":"STREET","district_id":957},{"title":"\u062f\u0645\u0627\u0648\u0646\u062f","type":"STREET","district_id":957},{"title":"\u0645\u062d\u0645\u0648\u062f\u06cc","type":"STREET","district_id":957},{"title":"\u0633\u062c\u0627\u062f","type":"STREET","district_id":1008},{"title":"\u06cc\u0627\u0641\u062a\u200c\u0622\u0628\u0627\u062f","type":"STREET","district_id":1008},{"title":"\u0628\u0631\u0627\u062f\u0631\u0627\u0646 \u0628\u0647\u0631\u0627\u0645\u06cc","type":"STREET","district_id":1008},{"title":"\u0633\u0639\u06cc\u062f\u06cc","type":"HIGHWAY","district_id":1008},{"title":"\u0628\u0647\u0627\u0631\u0627\u0646","type":"SQUARE","district_id":1008},{"title":"\u0646\u0628\u0631\u062f \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":972},{"title":"\u0645\u062d\u0644\u0627\u062a\u06cc","type":"HIGHWAY","district_id":972},{"title":"\u0642\u06cc\u0627\u0645","type":"STREET","district_id":972},{"title":"\u067e\u0627\u0633\u062f\u0627\u0631 \u06af\u0645\u0646\u0627\u0645","type":"STREET","district_id":972},{"title":"\u0634\u0627\u0647\u06cc\u0646 \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":147},{"title":"\u0628\u0635\u0627\u0631\u062a\u06cc","type":"STREET","district_id":147},{"title":"\u0686\u0645\u0631\u0627\u0646","type":"STREET","district_id":147},{"title":"\u0645\u062e\u0628\u0631\u06cc","type":"STREET","district_id":147},{"title":"\u062c\u0631\u062c\u0627\u0646\u06cc","type":"STREET","district_id":1004},{"title":"\u0633\u0628\u062d\u0627\u0646\u06cc","type":"STREET","district_id":1004},{"title":"\u0628\u0631\u0627\u062f\u0631\u0627\u0646 \u0641\u0644\u0627\u062d","type":"STREET","district_id":1004},{"title":"\u0628\u062e\u062a\u06cc\u0627\u0631\u06cc","type":"STREET","district_id":1004},{"title":"\u06a9\u0645\u06cc\u0644","type":"STREET","district_id":1004},{"title":"\u0639\u0631\u0628\u0644\u0648","type":"STREET","district_id":1004},{"title":"\u062f\u0627\u0646\u0634\u06af\u0627\u0647 \u0634\u0631\u06cc\u0641","type":"TOWN","district_id":1034},{"title":"\u0627\u0631\u062f\u0633\u062a\u0627\u0646\u06cc","type":"STREET","district_id":1034},{"title":"\u062a\u0647\u0631\u0627\u0646-\u06a9\u0631\u062c","type":"HIGHWAY","district_id":1034},{"title":"\u062e\u0631\u0627\u0632\u06cc","type":"HIGHWAY","district_id":1034},{"title":"\u0634\u0631\u06cc\u0641\u200c\u0622\u0628\u0627\u062f","type":"STREET","district_id":637},{"title":"\u0634\u06a9\u0648\u0641\u0647","type":"STREET","district_id":969},{"title":"\u067e\u06cc\u0631\u0648\u0632\u06cc","type":"STREET","district_id":969},{"title":"\u0634\u0647\u062f\u0627","type":"SQUARE","district_id":969},{"title":"\u0647\u0641\u062f\u0647 \u0634\u0647\u0631\u06cc\u0648\u0631","type":"STREET","district_id":969},{"title":"\u06a9\u06cc\u0627\u0645\u0646\u0634","type":"STREET","district_id":969},{"title":"\u0631\u06cc\u062d\u0627\u0646\u06cc","type":"STREET","district_id":125},{"title":"\u0645\u0644\u062a","type":"SQUARE","district_id":125},{"title":"\u0628\u0647\u0634\u062a\u06cc","type":"SQUARE","district_id":125},{"title":"\u06a9\u0631\u062f","type":"STREET","district_id":125},{"title":"\u0627\u0633\u062a\u0627\u062f \u062d\u0633\u0646 \u0628\u0646\u0627","type":"STREET","district_id":125},{"title":"\u06af\u0644\u0647\u0627","type":"STREET","district_id":125},{"title":"\u0631\u0633\u0627\u0644\u062a","type":"HIGHWAY","district_id":125},{"title":"\u0634\u0645\u0634\u06cc\u0631\u06cc","type":"STREET","district_id":915},{"title":"\u062a\u0641\u0631\u0634 \u0634\u0631\u0642\u06cc","type":"STREET","district_id":915},{"title":"\u0632\u0631\u0646\u062f","type":"STREET","district_id":915},{"title":"\u0642\u0632\u0648\u06cc\u0646","type":"STREET","district_id":915},{"title":"\u0627\u0644\u063a\u062f\u06cc\u0631","type":"SQUARE","district_id":106},{"title":"\u0647\u0646\u06af\u0627\u0645","type":"STREET","district_id":106},{"title":"\u0634\u0648\u0634","type":"SQUARE","district_id":240},{"title":"\u0647\u0641\u062f\u0647 \u0634\u0647\u0631\u06cc\u0648\u0631 \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":240},{"title":"\u0627\u0631\u062c","type":"STREET","district_id":240},{"title":"\u0645\u0638\u0627\u0647\u0631\u06cc","type":"STREET","district_id":240},{"title":"\u0631\u062c\u0628\u200c\u0646\u06cc\u0627","type":"STREET","district_id":240},{"title":"\u0633\u062c\u0627\u062f\u06cc\u0647","type":"TOWN","district_id":240},{"title":"\u0631\u0636\u0627\u06cc\u06cc","type":"STREET","district_id":240},{"title":"\u0641\u062f\u0627\u06cc\u06cc\u0627\u0646 \u0627\u0633\u0644\u0627\u0645","type":"STREET","district_id":240},{"title":"\u0634\u0647\u0627\u062f\u062a","type":"STREET","district_id":977},{"title":"\u063a\u06cc\u0648\u0631\u06cc","type":"STREET","district_id":977},{"title":"\u0639\u0644\u06cc\u0646\u0648\u0627\u0632","type":"STREET","district_id":977},{"title":"\u0628\u0633\u06cc\u062c","type":"BOULEVARD","district_id":977},{"title":"\u0634\u0647\u0631\u0622\u0631\u0627","type":"STREET","district_id":202},{"title":"\u0645\u0646\u0635\u0648\u0631\u06cc \u06a9\u06cc\u0627","type":"STREET","district_id":202},{"title":"\u0633\u062a\u0627\u0631\u062e\u0627\u0646","type":"STREET","district_id":202},{"title":"\u067e\u0627\u062a\u0631\u06cc\u0633 \u0644\u0648\u0645\u0648\u0645\u0628\u0627","type":"STREET","district_id":202},{"title":"\u0622\u0631\u0634 \u0645\u0647\u0631","type":"STREET","district_id":202},{"title":"\u0634\u0647\u0631\u0627\u0646 \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":152},{"title":"\u0637\u0648\u0642\u0627\u0646\u06cc","type":"STREET","district_id":152},{"title":"\u06a9\u0648\u0647\u0633\u0627\u0631","type":"BOULEVARD","district_id":152},{"title":"\u062d\u06a9\u06cc\u0645","type":"HIGHWAY","district_id":152},{"title":"\u0634\u0647\u0631\u0627\u0646 \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":151},{"title":"\u06a9\u0648\u0647\u0633\u0627\u0631","type":"BOULEVARD","district_id":151},{"title":"\u062e\u06cc\u0627\u0628\u0627\u0646\u06cc","type":"STREET","district_id":151},{"title":"\u0646\u06cc\u0631\u0648","type":"STREET","district_id":151},{"title":"\u0633\u0648\u0645 \u0634\u0647\u0631\u0627\u0646","type":"STREET","district_id":151},{"title":"\u0646\u0627\u0631\u0646\u062c","type":"SQUARE","district_id":986},{"title":"\u0632\u06a9\u0631\u06cc\u0627 \u0631\u0627\u0632\u06cc","type":"STREET","district_id":986},{"title":"\u06a9\u0631\u06cc\u0645\u06cc \u0634\u06cc\u0631\u0627\u0632\u06cc","type":"STREET","district_id":986},{"title":"\u0628\u0627\u0642\u0631\u0634\u0647\u0631","type":"TOWN","district_id":986},{"title":"\u0622\u0631\u062f \u0627\u06cc\u0631\u0627\u0646","type":"STREET","district_id":987},{"title":"\u0632\u06a9\u0631\u06cc\u0627 \u0631\u0627\u0632\u06cc","type":"STREET","district_id":987},{"title":"\u067e\u06cc\u0644\u063a\u0648\u0634","type":"STREET","district_id":987},{"title":"\u0627\u0633\u0645\u0627\u0639\u06cc\u0644\u06cc","type":"STREET","district_id":987},{"title":"\u0634\u0647\u0631\u0631\u06cc","type":"SQUARE","district_id":987},{"title":"\u0628\u0627\u0642\u0631\u0634\u0647\u0631","type":"TOWN","district_id":987},{"title":"\u062a\u0647\u0631\u0627\u0646-\u0648\u0631\u0627\u0645\u06cc\u0646","type":"HIGHWAY","district_id":980},{"title":"\u0645\u0641\u062a\u062d","type":"TOWN","district_id":212},{"title":"\u062a\u0647\u0631\u0627\u0646-\u0648\u0631\u0627\u0645\u06cc\u0646","type":"HIGHWAY","district_id":212},{"title":"\u062a\u0647\u0631\u0627\u0646-\u0648\u0631\u0627\u0645\u06cc\u0646","type":"HIGHWAY","district_id":981},{"title":"\u0645\u06cc\u062b\u0645","type":"STREET","district_id":224},{"title":"\u0645\u0639\u0644\u0645","type":"SQUARE","district_id":224},{"title":"\u0648\u0644\u06cc\u0639\u0635\u0631","type":"TOWN","district_id":224},{"title":"\u0631\u0636\u0648\u0627\u0646","type":"STREET","district_id":224},{"title":"\u0628\u0627\u0642\u0631\u0634\u0647\u0631","type":"TOWN","district_id":224},{"title":"\u0646\u0627\u0631\u0646\u062c","type":"SQUARE","district_id":221},{"title":"\u0633\u0644\u0645\u0627\u0646 \u0641\u0627\u0631\u0633\u06cc","type":"STREET","district_id":221},{"title":"\u0634\u0647\u062f\u0627\u06cc \u0627\u06cc\u0631\u0627\u0646\u06cc\u062a","type":"STREET","district_id":221},{"title":"\u0628\u0627\u0642\u0631\u0634\u0647\u0631","type":"TOWN","district_id":221},{"title":"\u0634\u0647\u0631\u0632\u06cc\u0628\u0627","type":"BOULEVARD","district_id":155},{"title":"\u0644\u0627\u0644\u0647","type":"BOULEVARD","district_id":155},{"title":"\u0645\u062e\u0627\u0628\u0631\u0627\u062a","type":"STREET","district_id":155},{"title":"\u0634\u0647\u0631 \u0642\u062f\u0633","type":"STREET","district_id":313},{"title":"\u0622\u067e\u0627\u062f\u0627\u0646\u0627","type":"TOWN","district_id":169},{"title":"\u0622\u0632\u0627\u062f\u06cc","type":"SQUARE","district_id":169},{"title":"\u0628\u0631\u0627\u062f\u0631\u0627\u0646 \u0631\u062d\u0645\u0627\u0646\u06cc","type":"STREET","district_id":169},{"title":"\u0631\u06cc\u0627\u062d\u06cc","type":"STREET","district_id":169},{"title":"\u0645\u06cc\u062f\u0627\u0646 \u0622\u0632\u0627\u062f\u06cc","type":"SUBWAY","district_id":169},{"title":"\u0622\u0632\u0627\u062f\u06cc","type":"TOWN","district_id":164},{"title":"\u0644\u0634\u06af\u0631\u06cc","type":"HIGHWAY","district_id":164},{"title":"\u0641\u0647\u0645\u06cc\u062f\u0647","type":"HIGHWAY","district_id":164},{"title":"\u0686\u0648\u06af\u0627\u0646","type":"BOULEVARD","district_id":164},{"title":"\u0622\u0633\u0645\u0627\u0646","type":"TOWN","district_id":180},{"title":"\u0641\u062a\u062d","type":"HIGHWAY","district_id":180},{"title":"\u06af\u0644\u0647\u0627","type":"BOULEVARD","district_id":180},{"title":"\u0627\u0628\u0648\u0630\u0631","type":"STREET","district_id":259},{"title":"\u0622\u0632\u0627\u062f\u06af\u0627\u0646","type":"HIGHWAY","district_id":259},{"title":"\u06a9\u0627\u0638\u0645\u06cc","type":"STREET","district_id":259},{"title":"\u062e\u0644\u0627\u0632\u06cc\u0644","type":"STREET","district_id":259},{"title":"\u0627\u062d\u0645\u062f\u06cc\u0647","type":"TOWN","district_id":259},{"title":"\u0627\u0633\u062a\u0642\u0644\u0627\u0644","type":"TOWN","district_id":175},{"title":"\u0644\u0634\u06af\u0631\u06cc","type":"HIGHWAY","district_id":175},{"title":"\u062a\u0647\u0631\u0627\u0646-\u06a9\u0631\u062c","type":"HIGHWAY","district_id":175},{"title":"\u0641\u062a\u062d","type":"HIGHWAY","district_id":175},{"title":"\u0633\u067e\u0627\u0647 \u0627\u0633\u0644\u0627\u0645","type":"STREET","district_id":175},{"title":"\u0627\u0645\u0627\u0645 \u062e\u0645\u06cc\u0646\u06cc","type":"TOWN","district_id":190},{"title":"\u0627\u0644\u063a\u062f\u06cc\u0631","type":"BOULEVARD","district_id":190},{"title":"\u0647\u0641\u062f\u0647\u0645 \u0634\u0647\u0631\u06cc\u0648\u0631","type":"BOULEVARD","district_id":190},{"title":"\u0627\u0645\u06cc\u062f \u062f\u0698\u0628\u0627\u0646","type":"TOWN","district_id":113},{"title":"\u0627\u0633\u062a\u0642\u0644\u0627\u0644","type":"BOULEVARD","district_id":113},{"title":"\u0628\u0627\u0642\u0631\u06cc","type":"HIGHWAY","district_id":113},{"title":"\u0627\u0645\u06cc\u0631\u0627\u0644\u0645\u0648\u0645\u0646\u06cc\u0646","type":"TOWN","district_id":271},{"title":"\u0627\u0646\u0635\u0627\u0631","type":"TOWN","district_id":166},{"title":"\u0644\u0634\u06af\u0631\u06cc","type":"HIGHWAY","district_id":166},{"title":"\u0641\u0647\u0645\u06cc\u062f\u0647","type":"HIGHWAY","district_id":166},{"title":"\u0622\u0632\u0627\u062f\u06af\u0627\u0646","type":"HIGHWAY","district_id":166},{"title":"\u067e\u0627\u0633\u062f\u0627\u0631\u0627\u0646","type":"TOWN","district_id":910},{"title":"\u0641\u0631\u062f\u0648\u0633 \u063a\u0631\u0628","type":"BOULEVARD","district_id":159},{"title":"\u067e\u0631\u0648\u0627\u0646\u0647","type":"STREET","district_id":159},{"title":"\u0648\u0631\u0632\u06cc","type":"STREET","district_id":159},{"title":"\u0634\u0642\u0627\u06cc\u0642","type":"BOULEVARD","district_id":159},{"title":"\u062a\u062e\u062a\u06cc","type":"STREET","district_id":236},{"title":"\u0628\u0647\u0634\u062a\u06cc","type":"TOWN","district_id":236},{"title":"\u0633\u0645\u0646\u062f\u0631 \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":236},{"title":"\u0627\u0628\u0631\u06cc\u0634\u0645","type":"BOULEVARD","district_id":236},{"title":"\u0631\u062c\u0627\u06cc\u06cc","type":"HIGHWAY","district_id":236},{"title":"\u0622\u0632\u0627\u062f\u06af\u0627\u0646","type":"HIGHWAY","district_id":236},{"title":"\u062f\u0627\u0646\u0634\u06af\u0627\u0647 \u062a\u0647\u0631\u0627\u0646","type":"TOWN","district_id":1033},{"title":"\u0644\u0634\u06af\u0631\u06cc","type":"HIGHWAY","district_id":1033},{"title":"\u0641\u062a\u062d","type":"HIGHWAY","district_id":1033},{"title":"\u0627\u06cc\u0631\u0627\u0646\u200c\u062e\u0648\u062f\u0631\u0648","type":"BOULEVARD","district_id":1033},{"title":"\u0633\u067e\u0627\u0647 \u0627\u0633\u0644\u0627\u0645","type":"STREET","district_id":1033},{"title":"\u062f\u0627\u0646\u0634\u06af\u0627\u0647\u06cc","type":"TOWN","district_id":1032},{"title":"\u0644\u0634\u06af\u0631\u06cc","type":"HIGHWAY","district_id":1032},{"title":"\u062a\u0647\u0631\u0627\u0646-\u06a9\u0631\u062c","type":"HIGHWAY","district_id":1032},{"title":"\u0627\u06cc\u0631\u0627\u0646\u200c\u062e\u0648\u062f\u0631\u0648","type":"BOULEVARD","district_id":1032},{"title":"\u062f\u0631\u06cc\u0627","type":"TOWN","district_id":179},{"title":"\u0627\u062a\u0631\u06cc\u0634","type":"SQUARE","district_id":165},{"title":"\u06cc\u0627\u0633","type":"TOWN","district_id":165},{"title":"\u0633\u0627\u062d\u0644","type":"SQUARE","district_id":165},{"title":"\u062e\u0631\u0627\u0632\u06cc","type":"HIGHWAY","district_id":165},{"title":"\u06af\u0644\u0647\u0627","type":"SQUARE","district_id":165},{"title":"\u0628\u0631\u0627\u062f\u0631\u0627\u0646 \u0632\u06cc\u0646\u0639\u0644\u06cc","type":"SQUARE","district_id":165},{"title":"\u06a9\u0627\u0634\u0627\u0646","type":"SQUARE","district_id":165},{"title":"\u0647\u0627\u0634\u0645\u200c\u0632\u0627\u062f\u0647","type":"SQUARE","district_id":165},{"title":"\u0645\u0631\u0632\u062f\u0627\u0631\u0627\u0646 \u0634\u0631\u0642\u06cc","type":"BOULEVARD","district_id":138},{"title":"\u0627\u0637\u0627\u0639\u062a\u06cc","type":"STREET","district_id":138},{"title":"\u0633\u067e\u0647\u0631","type":"STREET","district_id":138},{"title":"\u06af\u0644\u0628\u0631\u06af","type":"STREET","district_id":138},{"title":"\u0627\u06cc\u062b\u0627\u0631","type":"STREET","district_id":138},{"title":"\u062c\u0627\u0646\u0628\u0627\u0632\u0627\u0646","type":"STREET","district_id":138},{"title":"\u062c\u0644\u0627\u0644 \u0622\u0644 \u0622\u062d\u0645\u062f","type":"HIGHWAY","district_id":138},{"title":"\u0634\u06cc\u062e \u0641\u0636\u0644\u200c\u0627\u0644\u0644\u0647","type":"HIGHWAY","district_id":138},{"title":"\u062d\u06a9\u06cc\u0645","type":"HIGHWAY","district_id":138},{"title":"\u06cc\u0627\u062f\u06af\u0627\u0631 \u0627\u0645\u0627\u0645","type":"HIGHWAY","district_id":138},{"title":"\u0633\u06cc\u0646\u0645\u0627\u06cc\u06cc","type":"TOWN","district_id":308},{"title":"\u0644\u0634\u06af\u0631\u06cc","type":"HIGHWAY","district_id":308},{"title":"\u062a\u0647\u0631\u0627\u0646-\u06a9\u0631\u062c","type":"HIGHWAY","district_id":308},{"title":"\u0634\u0631\u06cc\u0639\u062a\u06cc","type":"STREET","district_id":257},{"title":"\u0645\u0647\u0631\u0627\u0646","type":"STREET","district_id":257},{"title":"\u0686\u0631\u0627\u063a\u06cc","type":"HIGHWAY","district_id":257},{"title":"\u0622\u0632\u0627\u062f\u06af\u0627\u0646","type":"HIGHWAY","district_id":257},{"title":"\u0634\u0631\u06cc\u0641\u06cc","type":"TOWN","district_id":260},{"title":"\u0648\u0631\u0627\u0645\u06cc\u0646\u06cc","type":"BOULEVARD","district_id":260},{"title":"\u0633\u0639\u06cc\u062f\u06cc","type":"HIGHWAY","district_id":260},{"title":"\u0622\u0632\u0627\u062f\u06af\u0627\u0646","type":"HIGHWAY","district_id":260},{"title":"\u0634\u0647\u06cc\u062f \u0628\u0627\u0642\u0631\u06cc","type":"TOWN","district_id":1030},{"title":"\u062e\u0631\u0627\u0632\u06cc","type":"HIGHWAY","district_id":1030},{"title":"\u062f\u0631\u06cc\u0627\u0686\u0647","type":"BOULEVARD","district_id":1030},{"title":"\u062f\u0647\u06a9\u062f\u0647 \u0627\u0644\u0645\u067e\u06cc\u06a9","type":"BOULEVARD","district_id":163},{"title":"\u063a\u0631\u0628\u06cc \u0648\u0631\u0632\u0634\u06af\u0627\u0647 \u0622\u0632\u0627\u062f\u06cc","type":"BOULEVARD","district_id":163},{"title":"\u062c\u0647\u0627\u062f \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":163},{"title":"\u062c\u0647\u0627\u062f \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":163},{"title":"\u0648\u0631\u0632\u0634\u06af\u0627\u0647 \u0622\u0632\u0627\u062f\u06cc","type":"SUBWAY","district_id":163},{"title":"\u0637\u0627\u0644\u0642\u0627\u0646\u06cc","type":"TOWN","district_id":187},{"title":"\u062e\u0644\u06cc\u062c \u0641\u0627\u0631\u0633","type":"BOULEVARD","district_id":187},{"title":"\u0635\u0646\u0639\u062a","type":"SQUARE","district_id":78},{"title":"\u067e\u0627\u06a9\u0646\u0698\u0627\u062f","type":"STREET","district_id":78},{"title":"\u0627\u06cc\u0631\u0627\u0646\u200c\u0632\u0645\u06cc\u0646","type":"STREET","district_id":78},{"title":"\u0641\u0631\u062d\u0632\u0627\u062f\u06cc","type":"STREET","district_id":78},{"title":"\u0647\u0631\u0645\u0632\u0627\u0646","type":"STREET","district_id":78},{"title":"\u062f\u0627\u062f\u0645\u0627\u0646","type":"STREET","district_id":78},{"title":"\u063a\u0632\u0627\u0644\u06cc","type":"TOWN","district_id":307},{"title":"\u0644\u0634\u06af\u0631\u06cc","type":"HIGHWAY","district_id":307},{"title":"\u062a\u0647\u0631\u0627\u0646-\u06a9\u0631\u062c","type":"HIGHWAY","district_id":307},{"title":"\u062a\u062e\u062a\u06cc","type":"STREET","district_id":185},{"title":"\u0645\u0639\u0644\u0645","type":"SQUARE","district_id":185},{"title":"\u0628\u0631\u0627\u062f\u0631\u0627\u0646 \u0627\u0633\u0645\u0627\u0639\u06cc\u0644\u06cc","type":"STREET","district_id":185},{"title":"\u0686\u0647\u0627\u0631\u062f\u0647 \u0645\u0639\u0635\u0648\u0645","type":"STREET","district_id":185},{"title":"\u0641\u0631\u0647\u0646\u06af\u06cc\u0627\u0646","type":"TOWN","district_id":911},{"title":"\u0644\u0634\u06af\u0631\u06cc","type":"HIGHWAY","district_id":911},{"title":"\u0641\u0647\u0645\u06cc\u062f\u0647","type":"HIGHWAY","district_id":911},{"title":"\u0634\u06cc\u0634\u0647 \u0645\u06cc\u0646\u0627","type":"STREET","district_id":911},{"title":"\u0627\u0642\u0628\u0627\u0644\u200c\u067e\u0648\u0631","type":"STREET","district_id":140},{"title":"\u0627\u0644\u0648\u0646\u062f","type":"BOULEVARD","district_id":140},{"title":"\u0633\u06cc\u0645\u0648\u0646 \u0628\u0648\u0644\u06cc\u0648\u0627\u0631","type":"BOULEVARD","district_id":140},{"title":"\u0645\u0639\u06cc\u0646","type":"STREET","district_id":140},{"title":"\u0631\u062c\u0628\u200c\u0646\u06cc\u0627","type":"STREET","district_id":241},{"title":"\u062c\u0645\u0647\u0648\u0631\u06cc","type":"TOWN","district_id":241},{"title":"\u0645\u0637\u0647\u0631\u06cc","type":"TOWN","district_id":241},{"title":"\u0634\u0627\u0647\u062f","type":"STREET","district_id":241},{"title":"\u0641\u062f\u0627\u06cc\u06cc\u0627\u0646 \u0627\u0633\u0644\u0627\u0645","type":"STREET","district_id":241},{"title":"\u0628\u0639\u062b\u062a","type":"HIGHWAY","district_id":241},{"title":"\u0622\u0632\u0627\u062f\u06af\u0627\u0646","type":"HIGHWAY","district_id":241},{"title":"\u0645\u0698\u062f\u06cc","type":"BOULEVARD","district_id":50},{"title":"\u0627\u0631\u062a\u0634","type":"BOULEVARD","district_id":50},{"title":"\u0648\u0644\u0627\u06cc\u062a","type":"STREET","district_id":51},{"title":"\u0646\u062e\u0644","type":"STREET","district_id":51},{"title":"\u0627\u0631\u062a\u0634","type":"BOULEVARD","district_id":51},{"title":"\u0634\u0647\u062f\u0627","type":"BOULEVARD","district_id":51},{"title":"\u0634\u0647\u06cc\u062f \u0645\u062d\u0644\u0627\u062a\u06cc","type":"SUBWAY","district_id":51},{"title":"\u0642\u0627\u0626\u0645","type":"TOWN","district_id":51},{"title":"\u0642\u0627\u0626\u0645","type":"SUBWAY","district_id":51},{"title":"\u0628\u0633\u06cc\u062c","type":"BOULEVARD","district_id":51},{"title":"\u0645\u06cc\u0646\u06cc \u0633\u06cc\u062a\u06cc","type":"TOWN","district_id":51},{"title":"\u0645\u0639\u0644\u0645","type":"BOULEVARD","district_id":193},{"title":"\u0645\u0633\u0644\u0645\u06cc\u0646","type":"TOWN","district_id":193},{"title":"\u0635\u0627\u062d\u0628 \u0627\u0644\u0632\u0645\u0627\u0646","type":"TOWN","district_id":193},{"title":"\u0632\u0646\u062f\u06cc\u0647","type":"STREET","district_id":193},{"title":"\u0634\u0647\u0631\u06a9 \u0648\u0644\u06cc\u0639\u0635\u0631","type":"STREET","district_id":193},{"title":"\u0634\u0647\u062f\u0627\u06cc \u062f\u0627\u0646\u0634\u200c\u0622\u0645\u0648\u0632","type":"STREET","district_id":193},{"title":"\u0645\u06cc\u0646\u06cc \u0633\u06cc\u062a\u06cc","type":"TOWN","district_id":49},{"title":"\u06cc\u0627\u0631\u0627\u0646","type":"STREET","district_id":49},{"title":"\u0645\u062d\u06a9","type":"STREET","district_id":49},{"title":"\u0646\u062e\u0644","type":"STREET","district_id":49},{"title":"\u0635\u062f\u0641","type":"TOWN","district_id":49},{"title":"\u0645\u0698\u062f\u06cc","type":"BOULEVARD","district_id":49},{"title":"\u0627\u0631\u062a\u0634","type":"BOULEVARD","district_id":49},{"title":"\u0634\u0647\u06cc\u062f \u0645\u062d\u0644\u0627\u062a\u06cc","type":"SUBWAY","district_id":49},{"title":"\u06a9\u0646\u06af\u0627\u0646","type":"STREET","district_id":49},{"title":"\u0644\u0627\u0648\u0627\u0646","type":"STREET","district_id":49},{"title":"\u0648\u0632\u0627\u0631\u062a \u0627\u0645\u0648\u0631 \u062e\u0627\u0631\u062c\u0647","type":"STREET","district_id":49},{"title":"\u0646\u0641\u062a","type":"STREET","district_id":921},{"title":"\u0645\u0639\u06cc\u0646","type":"STREET","district_id":921},{"title":"\u0633\u06cc\u0645\u0648\u0646 \u0628\u0648\u0644\u06cc\u0648\u0627\u0631","type":"BOULEVARD","district_id":921},{"title":"\u0648\u0627\u0644\u0641\u062c\u0631","type":"TOWN","district_id":932},{"title":"\u06a9\u0627\u0631\u06af\u0631 \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":932},{"title":"\u0627\u06cc\u0631\u0627\u0646\u0634\u0646\u0627\u0633\u06cc","type":"STREET","district_id":932},{"title":"\u0647\u0645\u062a","type":"HIGHWAY","district_id":932},{"title":"\u0648\u0644\u06cc\u0639\u0635\u0631","type":"TOWN","district_id":194},{"title":"\u0637\u0627\u0644\u0642\u0627\u0646\u06cc","type":"STREET","district_id":194},{"title":"\u0627\u062d\u0645\u062f \u062d\u0633\u06cc\u0646\u06cc","type":"STREET","district_id":194},{"title":"\u062d\u06cc\u062f\u0631\u06cc","type":"STREET","district_id":194},{"title":"\u0628\u0647 \u062e\u06cc\u0627\u0644","type":"STREET","district_id":194},{"title":"\u0628\u0631\u0627\u062f\u0631\u0627\u0646 \u0628\u0647\u0631\u0627\u0645\u06cc","type":"STREET","district_id":194},{"title":"\u0634\u0647\u0631\u06cc\u0627\u0631","type":"STREET","district_id":653},{"title":"\u0647\u0627\u062f\u06cc \u0633\u0627\u0639\u06cc","type":"SQUARE","district_id":982},{"title":"\u0645\u062f\u0631\u0633","type":"BOULEVARD","district_id":982},{"title":"\u0622\u0648\u06cc\u0646\u06cc","type":"HIGHWAY","district_id":982},{"title":"\u0632\u0627\u0647\u062f \u06af\u06cc\u0644\u0627\u0646\u06cc","type":"STREET","district_id":963},{"title":"\u062f\u0645\u0627\u0648\u0646\u062f","type":"STREET","district_id":963},{"title":"\u0627\u0633\u062f\u06cc","type":"BOULEVARD","district_id":963},{"title":"\u062b\u0627\u0631\u0627\u0644\u0644\u0647","type":"STREET","district_id":963},{"title":"\u0628\u0631\u0648\u062c\u0631\u062f\u06cc","type":"TOWN","district_id":1023},{"title":"\u0628\u0639\u062b\u062a","type":"HIGHWAY","district_id":1023},{"title":"\u0622\u0632\u0627\u062f\u06af\u0627\u0646","type":"HIGHWAY","district_id":1023},{"title":"\u0627\u0645\u0627\u0645 \u0639\u0644\u06cc","type":"HIGHWAY","district_id":1023},{"title":"\u0634\u0647\u06cc\u062f \u062f\u0633\u062a\u063a\u06cc\u0628","type":"STREET","district_id":1003},{"title":"\u0646\u0648\u0631\u06cc \u0646\u06cc\u0627\u0631\u06a9\u06cc","type":"STREET","district_id":1003},{"title":"\u0647\u0627\u0634\u0645\u06cc","type":"STREET","district_id":1003},{"title":"\u06cc\u0627\u062f\u06af\u0627\u0631 \u0627\u0645\u0627\u0645","type":"HIGHWAY","district_id":1003},{"title":"\u0633\u06cc\u062f\u0627\u0644\u0634\u0647\u062f\u0627","type":"STREET","district_id":263},{"title":"\u0639\u0644\u06cc\u062e\u0627\u0646\u06cc","type":"STREET","district_id":263},{"title":"\u0627\u06cc\u062b\u0627\u0631\u06af\u0631\u0627\u0646","type":"SQUARE","district_id":263},{"title":"\u0632\u0627\u0647\u062f\u06cc","type":"SQUARE","district_id":263},{"title":"\u0622\u0632\u0627\u062f\u06af\u0627\u0646","type":"HIGHWAY","district_id":263},{"title":"\u0633\u0639\u06cc\u062f\u06cc","type":"HIGHWAY","district_id":263},{"title":"\u0634\u06cc\u0627\u0646","type":"STREET","district_id":103},{"title":"\u0634\u06cc\u062e \u0647\u0627\u062f\u06cc","type":"STREET","district_id":281},{"title":"\u062c\u0645\u0647\u0648\u0631\u06cc","type":"STREET","district_id":281},{"title":"\u062c\u0627\u0645\u06cc","type":"STREET","district_id":281},{"title":"\u067e\u0627\u0633\u062a\u0648\u0631","type":"STREET","district_id":281},{"title":"\u0627\u0631\u062f\u06cc\u0628\u0647\u0634\u062a","type":"STREET","district_id":281},{"title":"\u0648\u0644\u06cc\u0639\u0635\u0631","type":"STREET","district_id":281},{"title":"\u062d\u0627\u0641\u0638","type":"STREET","district_id":281},{"title":"\u06a9\u0627\u0631\u06af\u0631 \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":281},{"title":"\u0634\u06cc\u062e \u0628\u0647\u0627\u06cc\u06cc \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":1035},{"title":"\u0634\u06cc\u0631\u0627\u0632 \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":1035},{"title":"\u0627\u06cc\u0631\u0627\u0646\u0634\u0646\u0627\u0633\u06cc","type":"STREET","district_id":1035},{"title":"\u0634\u0635\u062a \u0648 \u0686\u0647\u0627\u0631\u0645","type":"STREET","district_id":1035},{"title":"\u06a9\u0631\u062f\u0633\u062a\u0627\u0646","type":"HIGHWAY","district_id":1035},{"title":"\u062a\u0627\u062c\u0631\u06cc","type":"STREET","district_id":968},{"title":"\u0644\u0631\u0633\u062a\u0627\u0646","type":"STREET","district_id":968},{"title":"\u0644\u0631\u0633\u062a\u0627\u0646","type":"STREET","district_id":973},{"title":"\u0641\u0631\u0634\u062a\u0647 \u0622\u0632\u0627\u062f\u06cc","type":"STREET","district_id":973},{"title":"\u067e\u0627\u0633\u062f\u0627\u0631 \u06af\u0645\u0646\u0627\u0645","type":"STREET","district_id":973},{"title":"\u0627\u0648\u0644 \u0635\u0627\u062f\u0642\u06cc\u0647","type":"SQUARE","district_id":172},{"title":"\u062e\u0633\u0631\u0648 \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":172},{"title":"\u06af\u0644\u0627\u0628","type":"STREET","district_id":172},{"title":"\u062e\u0628\u0631\u0646\u06af\u0627\u0631","type":"SQUARE","district_id":172},{"title":"\u062c\u0644\u0627\u0644 \u0622\u0644 \u0622\u062d\u0645\u062f","type":"HIGHWAY","district_id":172},{"title":"\u0633\u062a\u0627\u0631\u062e\u0627\u0646","type":"STREET","district_id":172},{"title":"\u0627\u0634\u0631\u0641\u06cc \u0627\u0635\u0641\u0647\u0627\u0646\u06cc","type":"HIGHWAY","district_id":172},{"title":"\u0622\u0632\u0627\u062f\u06af\u0627\u0646","type":"HIGHWAY","district_id":1026},{"title":"\u0647\u0627\u0634\u0645\u06cc","type":"HIGHWAY","district_id":1026},{"title":"\u067e\u06cc\u0631\u0648\u0632\u06cc","type":"STREET","district_id":289},{"title":"\u062f\u0647\u0645 \u0641\u0631\u0648\u0631\u062f\u06cc\u0646","type":"STREET","district_id":289},{"title":"\u0646\u0628\u0631\u062f \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":289},{"title":"\u0641\u0631\u0632\u0627\u0646\u0647","type":"CROSSROAD","district_id":289},{"title":"\u0646\u062c\u0627\u0631 \u0645\u062d\u0645\u0648\u062f\u06cc","type":"STREET","district_id":289},{"title":"\u0635\u0641\u0627","type":"STREET","district_id":288},{"title":"\u0634\u0647\u062f\u0627","type":"SQUARE","district_id":288},{"title":"\u067e\u06cc\u0631\u0648\u0632\u06cc","type":"STREET","district_id":288},{"title":"\u062e\u0634\u06a9\u0628\u0627\u0631\u0686\u06cc","type":"STREET","district_id":288},{"title":"\u0647\u0641\u062f\u0647 \u0634\u0647\u0631\u06cc\u0648\u0631","type":"STREET","district_id":288},{"title":"\u062b\u0627\u0631\u0627\u0644\u0644\u0647","type":"STREET","district_id":288},{"title":"\u0635\u0641\u0627\u06cc\u06cc\u0647","type":"SQUARE","district_id":978},{"title":"\u063a\u06cc\u0648\u0631\u06cc","type":"STREET","district_id":978},{"title":"\u0633\u0631\u06af\u0631\u062f \u0645\u062d\u0645\u062f\u06cc","type":"STREET","district_id":978},{"title":"\u0627\u0628\u0646\u200c\u0628\u0627\u0628\u0648\u06cc\u0647","type":"STREET","district_id":978},{"title":"\u0628\u0633\u06cc\u062c","type":"BOULEVARD","district_id":978},{"title":"\u0633\u0645\u0627","type":"SQUARE","district_id":171},{"title":"\u062a\u06cc\u0645\u0648\u0631\u06cc","type":"SQUARE","district_id":171},{"title":"\u0635\u0627\u0644\u062d\u06cc","type":"BOULEVARD","district_id":171},{"title":"\u0627\u06a9\u0628\u0631\u06cc","type":"BOULEVARD","district_id":171},{"title":"\u0622\u0632\u0627\u062f\u06cc","type":"SQUARE","district_id":171},{"title":"\u0633\u062c\u0627\u062f \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":1011},{"title":"\u0627\u0628\u0648\u0630\u0631","type":"STREET","district_id":1011},{"title":"\u0641\u0631\u06cc\u062f\u0648\u0646 \u0627\u062d\u0645\u062f\u06cc","type":"STREET","district_id":1011},{"title":"\u0631\u0634\u06cc\u062f\u06cc\u200c\u062c\u0647\u0627\u0646","type":"STREET","district_id":1011},{"title":"\u0637\u06cc\u0628","type":"STREET","district_id":1016},{"title":"\u062e\u0631\u0627\u0633\u0627\u0646","type":"SQUARE","district_id":1016},{"title":"\u0647\u0641\u062f\u0647 \u0634\u0647\u0631\u06cc\u0648\u0631","type":"STREET","district_id":1016},{"title":"\u062e\u0627\u0648\u0631\u0627\u0646","type":"STREET","district_id":1016},{"title":"\u0628\u0646\u06cc \u0637\u0628\u0627","type":"STREET","district_id":1016},{"title":"\u062a\u0641\u0631\u0634\u06cc","type":"STREET","district_id":1016},{"title":"\u0638\u0641\u0631","type":"STREET","district_id":72},{"title":"\u0634\u0631\u06cc\u0639\u062a\u06cc","type":"STREET","district_id":72},{"title":"\u0645\u06cc\u0631\u062f\u0627\u0645\u0627\u062f","type":"STREET","district_id":72},{"title":"\u0646\u0641\u062a","type":"STREET","district_id":72},{"title":"\u0639\u0645\u0631\u0627\u0646\u06cc","type":"STREET","district_id":72},{"title":"\u062f\u0644\u06cc\u0631\u06cc","type":"STREET","district_id":72},{"title":"\u0641\u0631\u06cc\u062f \u0627\u0641\u0634\u0627\u0631","type":"STREET","district_id":72},{"title":"\u06af\u0648\u06cc \u0622\u0628\u0627\u062f\u06cc","type":"STREET","district_id":72},{"title":"\u0645\u0639\u0644\u0645","type":"SQUARE","district_id":227},{"title":"\u0627\u0628\u0646 \u0628\u0627\u0628\u0648\u06cc\u0647","type":"STREET","district_id":227},{"title":"\u0646\u0628\u06cc\u200c\u067e\u0648\u0631","type":"STREET","district_id":227},{"title":"\u062a\u0627\u062c\u06cc\u06a9","type":"STREET","district_id":974},{"title":"\u0645\u062e\u0628\u0631 \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":974},{"title":"\u0645\u062d\u0644\u0627\u062a\u06cc","type":"HIGHWAY","district_id":974},{"title":"\u0634\u0647\u0645\u06cc\u0631\u0632\u0627\u062f\u06cc","type":"STREET","district_id":974},{"title":"\u0633\u0647\u0631\u0648\u0631\u062f\u06cc \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":300},{"title":"\u0645\u06cc\u0631\u0639\u0645\u0627\u062f","type":"STREET","district_id":300},{"title":"\u0634\u0631\u06cc\u0639\u062a\u06cc","type":"STREET","district_id":300},{"title":"\u0645\u0641\u062a\u062d \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":300},{"title":"\u0628\u0647\u0634\u062a\u06cc","type":"STREET","district_id":300},{"title":"\u0645\u0637\u0647\u0631\u06cc","type":"STREET","district_id":300},{"title":"\u0622\u0632\u0627\u062f\u06af\u0627\u0646","type":"HIGHWAY","district_id":1027},{"title":"\u062e\u0644\u06cc\u062c \u0641\u0627\u0631\u0633","type":"HIGHWAY","district_id":1027},{"title":"\u06a9\u0627\u0638\u0645\u06cc","type":"HIGHWAY","district_id":220},{"title":"\u0686\u0631\u0627\u063a\u06cc","type":"HIGHWAY","district_id":220},{"title":"\u0628\u062f\u0631","type":"STREET","district_id":220},{"title":"\u0627\u0628\u0631\u06cc\u0634\u0645","type":"BOULEVARD","district_id":235},{"title":"\u062f\u0633\u062a\u0648\u0627\u0631\u0647","type":"STREET","district_id":235},{"title":"\u0641\u0644\u0627\u062d\u062a\u06cc","type":"STREET","district_id":235},{"title":"\u062f\u06a9\u062a\u0631 \u0641\u0627\u0637\u0645\u06cc","type":"STREET","district_id":210},{"title":"\u06af\u0644\u0647\u0627","type":"SQUARE","district_id":210},{"title":"\u0631\u0647\u06cc \u0645\u0639\u06cc\u0631\u06cc","type":"STREET","district_id":210},{"title":"\u067e\u0631\u0648\u06cc\u0646 \u0627\u0639\u062a\u0635\u0627\u0645\u06cc","type":"STREET","district_id":210},{"title":"\u0647\u0634\u062a\u200c\u0628\u0647\u0634\u062a","type":"STREET","district_id":210},{"title":"\u06a9\u0627\u0631\u06af\u0631 \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":210},{"title":"\u0641\u062a\u062d","type":"HIGHWAY","district_id":912},{"title":"\u06af\u0644\u0628\u0631\u06af \u063a\u0631\u0628\u06cc","type":"STREET","district_id":120},{"title":"\u06af\u0644\u0634\u0646\u200c\u062f\u0648\u0633\u062a","type":"STREET","district_id":120},{"title":"\u0631\u0633\u0627\u0644\u062a","type":"HIGHWAY","district_id":120},{"title":"\u0633\u0645\u0646\u06af\u0627\u0646","type":"STREET","district_id":120},{"title":"\u0627\u0645\u0627\u0645 \u0639\u0644\u06cc","type":"HIGHWAY","district_id":120},{"title":"\u0647\u0644\u0627\u0644 \u0627\u062d\u0645\u0631","type":"SQUARE","district_id":120},{"title":"\u0627\u0645\u0627\u0645\u200c\u0632\u0627\u062f\u0647 \u062f\u0627\u0648\u062f","type":"STREET","district_id":59},{"title":"\u0641\u0631\u062d\u0632\u0627\u062f\u06cc","type":"BOULEVARD","district_id":59},{"title":"\u0627\u06cc\u062b\u0627\u0631\u06af\u0631\u0627\u0646","type":"STREET","district_id":59},{"title":"\u0641\u0631\u062f\u0648\u0633\u06cc","type":"STREET","district_id":994},{"title":"\u0633\u06cc \u062a\u06cc\u0631","type":"STREET","district_id":994},{"title":"\u0627\u0646\u0642\u0644\u0627\u0628","type":"STREET","district_id":994},{"title":"\u062c\u0645\u0647\u0648\u0631\u06cc","type":"STREET","district_id":994},{"title":"\u0644\u0627\u0644\u0647\u200c\u0632\u0627\u0631","type":"STREET","district_id":994},{"title":"\u062d\u0627\u0641\u0638","type":"STREET","district_id":994},{"title":"\u0633\u0639\u062f\u06cc","type":"STREET","district_id":994},{"title":"\u0646\u0648\u0641\u0644 \u0644\u0648\u0634\u0627\u062a\u0648","type":"STREET","district_id":994},{"title":"\u062f\u0631\u0648\u0627\u0632\u0647 \u062f\u0648\u0644\u062a","type":"SUBWAY","district_id":994},{"title":"\u0644\u0648\u0627\u0633\u0627\u0646\u06cc \u0634\u0631\u0642\u06cc","type":"STREET","district_id":64},{"title":"\u062f\u06cc\u0628\u0627\u062c\u06cc \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":64},{"title":"\u067e\u0627\u0634\u0627 \u0638\u0647\u0631\u06cc","type":"STREET","district_id":64},{"title":"\u067e\u0627\u0633\u062f\u0627\u0631\u0627\u0646 \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":64},{"title":"\u0633\u0646\u0628\u0644","type":"STREET","district_id":64},{"title":"\u0644\u0646\u06af\u0631\u06cc","type":"STREET","district_id":64},{"title":"\u0622\u0630\u0631\u0645\u06cc\u0646\u0627","type":"STREET","district_id":64},{"title":"\u0646\u0648\u0631\u06cc\u0627\u0646","type":"STREET","district_id":64},{"title":"\u0645\u0631\u06cc\u0645","type":"STREET","district_id":64},{"title":"\u062c\u0647\u0627\u0646\u0628\u062e\u0634\u200c\u0646\u0698\u0627\u062f","type":"STREET","district_id":64},{"title":"\u0646\u0648\u0628\u0646\u06cc\u0627\u062f","type":"SQUARE","district_id":64},{"title":"\u0635\u062f\u0631","type":"HIGHWAY","district_id":64},{"title":"\u0646\u0648\u0628\u0646\u06cc\u0627\u062f","type":"SUBWAY","district_id":64},{"title":"\u0627\u0642\u062f\u0633\u06cc\u0647","type":"SUBWAY","district_id":64},{"title":"\u0644\u0634\u06af\u0631\u06cc","type":"HIGHWAY","district_id":182},{"title":"\u0641\u062a\u062d","type":"HIGHWAY","district_id":182},{"title":"\u0633\u0639\u06cc\u062f\u06cc","type":"HIGHWAY","district_id":182},{"title":"\u0641\u0634\u0645","type":"STREET","district_id":422},{"title":"\u0627\u06a9\u0628\u0631 \u0633\u0648\u0631\u06cc","type":"STREET","district_id":199},{"title":"\u0641\u0631\u06cc\u062f\u0648\u0646 \u0627\u062d\u0645\u062f\u06cc","type":"STREET","district_id":199},{"title":"\u0627\u0628\u0648\u0630\u0631","type":"STREET","district_id":199},{"title":"\u06a9\u0645\u0627\u0644\u06cc","type":"STREET","district_id":199},{"title":"\u0634\u0647\u06cc\u062f \u063a\u06cc\u0628\u06cc","type":"STREET","district_id":988},{"title":"\u0634\u06cc\u062e \u0627\u06a9\u0628\u0631\u06cc","type":"STREET","district_id":988},{"title":"\u0631\u0648\u0634\u0646","type":"STREET","district_id":988},{"title":"\u0641\u0631\u0645\u0627\u0646\u062f\u0627\u0631\u06cc","type":"SQUARE","district_id":988},{"title":"\u0634\u0647\u0631\u0631\u06cc","type":"SQUARE","district_id":988},{"title":"\u0641\u062f\u0627\u06cc\u06cc\u0627\u0646 \u0627\u0633\u0644\u0627\u0645","type":"STREET","district_id":988},{"title":"\u0641\u06cc\u0631\u0648\u0632\u06a9\u0648\u0647","type":"STREET","district_id":673},{"title":"\u062f\u0645\u0627\u0648\u0646\u062f","type":"STREET","district_id":961},{"title":"\u0627\u0634\u0631\u0627\u0642\u06cc","type":"STREET","district_id":961},{"title":"\u0633\u06cc\u200c\u0645\u062a\u0631\u06cc \u0646\u06cc\u0631\u0648 \u0647\u0648\u0627\u06cc\u06cc","type":"STREET","district_id":961},{"title":"\u0642\u0628\u0627","type":"SQUARE","district_id":941},{"title":"\u0646\u0627\u0637\u0642 \u0646\u0648\u0631\u06cc","type":"STREET","district_id":941},{"title":"\u0634\u0631\u06cc\u0639\u062a\u06cc","type":"STREET","district_id":941},{"title":"\u067e\u0627\u0633\u062f\u0627\u0631\u0627\u0646","type":"STREET","district_id":941},{"title":"\u0634\u0647\u0631\u0632\u0627\u062f","type":"BOULEVARD","district_id":941},{"title":"\u0642\u0631\u0686\u06a9","type":"STREET","district_id":424},{"title":"\u06a9\u0627\u0631\u06af\u0631 \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":211},{"title":"\u062c\u0627\u0646\u0628\u0627\u0632\u0627\u0646","type":"STREET","district_id":211},{"title":"\u062c\u0647\u0627\u0646\u200c\u0622\u0631\u0627","type":"STREET","district_id":211},{"title":"\u06a9\u0631\u062f\u0633\u062a\u0627\u0646","type":"HIGHWAY","district_id":211},{"title":"\u062c\u0644\u0627\u0644 \u0622\u0644 \u0622\u062d\u0645\u062f","type":"HIGHWAY","district_id":211},{"title":"\u0642\u0635\u0631 \u0641\u06cc\u0631\u0648\u0632\u0647","type":"TOWN","district_id":293},{"title":"\u0648\u0627\u0644\u0641\u062c\u0631","type":"TOWN","district_id":293},{"title":"\u06a9\u0644\u0627\u0647\u062f\u0648\u0632","type":"TOWN","district_id":293},{"title":"\u0628\u0633\u06cc\u062c","type":"HIGHWAY","district_id":293},{"title":"\u0646\u06cc\u06a9\u0648\u0639\u0645\u0644","type":"TOWN","district_id":248},{"title":"\u06af\u0644\u200c\u0646\u0631\u06af\u0633","type":"SQUARE","district_id":248},{"title":"\u0642\u0632\u0648\u06cc\u0646","type":"SQUARE","district_id":998},{"title":"\u0645\u062f\u0631\u0633","type":"STREET","district_id":998},{"title":"\u06a9\u0627\u0631\u06af\u0631 \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":998},{"title":"\u0648\u0644\u06cc\u0639\u0635\u0631","type":"STREET","district_id":998},{"title":"\u0634\u0631\u06cc\u0639\u062a\u06cc","type":"STREET","district_id":70},{"title":"\u06cc\u062e\u0686\u0627\u0644","type":"STREET","district_id":70},{"title":"\u06a9\u0644\u0627\u0647\u062f\u0648\u0632","type":"STREET","district_id":70},{"title":"\u0641\u06a9\u0648\u0631\u06cc\u0627\u0646","type":"STREET","district_id":70},{"title":"\u0634\u0647\u0631\u0632\u0627\u062f","type":"BOULEVARD","district_id":70},{"title":"\u0627\u0633\u062a\u0642\u0644\u0627\u0644","type":"BOULEVARD","district_id":105},{"title":"\u0628\u0627\u0642\u0631\u06cc","type":"HIGHWAY","district_id":105},{"title":"\u0632\u06cc\u0646\u200c\u0627\u0644\u062f\u06cc\u0646","type":"HIGHWAY","district_id":105},{"title":"\u0642\u06cc\u0627\u0645","type":"SQUARE","district_id":995},{"title":"\u062e\u0631\u0627\u0633\u0627\u0646","type":"SQUARE","district_id":995},{"title":"\u0647\u0641\u062f\u0647 \u0634\u0647\u0631\u06cc\u0648\u0631","type":"STREET","district_id":995},{"title":"\u0631\u06cc","type":"STREET","district_id":995},{"title":"\u0645\u062d\u0644\u0627\u062a\u06cc","type":"HIGHWAY","district_id":995},{"title":"\u0642\u06cc\u0627\u0645\u200c\u062f\u0634\u062a","type":"STREET","district_id":639},{"title":"\u0642\u06cc\u0637\u0631\u06cc\u0647","type":"STREET","district_id":65},{"title":"\u0627\u0646\u062f\u0631\u0632\u06af\u0648","type":"STREET","district_id":65},{"title":"\u0635\u0628\u0627","type":"BOULEVARD","district_id":65},{"title":"\u06a9\u0627\u0648\u0647","type":"BOULEVARD","district_id":65},{"title":"\u067e\u0644 \u0631\u0648\u0645\u06cc","type":"STREET","district_id":65},{"title":"\u0634\u0631\u06cc\u0639\u062a\u06cc","type":"STREET","district_id":65},{"title":"\u0633\u0628\u062d\u0627\u0646","type":"STREET","district_id":65},{"title":"\u0633\u0647\u06cc\u0644","type":"STREET","district_id":65},{"title":"\u0628\u0647\u0627\u0631 \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":65},{"title":"\u0635\u062f\u0631","type":"HIGHWAY","district_id":65},{"title":"\u0642\u0644\u0646\u062f\u0631\u06cc \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":65},{"title":"\u0635\u062f\u0631","type":"SUBWAY","district_id":65},{"title":"\u0642\u06cc\u0637\u0631\u06cc\u0647","type":"SUBWAY","district_id":65},{"title":"\u0631\u0636\u0648\u06cc\u0647","type":"HIGHWAY","district_id":245},{"title":"\u0627\u0645\u0627\u0645 \u062e\u0645\u06cc\u0646\u06cc","type":"STREET","district_id":245},{"title":"\u067e\u0648\u0631\u0627\u0628\u062a\u0647\u0627\u062c","type":"STREET","district_id":43},{"title":"\u0635\u0628\u0648\u0631\u06cc","type":"STREET","district_id":43},{"title":"\u0633\u067e\u0646\u062f","type":"STREET","district_id":43},{"title":"\u0627\u0645\u06cc\u0631\u0628\u0647\u0627\u062f\u0631","type":"STREET","district_id":43},{"title":"\u0646\u0635\u06cc\u0631\u0622\u0628\u0627\u062f\u06cc","type":"STREET","district_id":43},{"title":"\u0628\u0646\u06cc\u200c\u0647\u0627\u0634\u0645","type":"STREET","district_id":128},{"title":"\u0645\u0644\u062a","type":"SQUARE","district_id":128},{"title":"\u0627\u0633\u062a\u0627\u062f \u062d\u0633\u0646 \u0628\u0646\u0627","type":"STREET","district_id":128},{"title":"\u0633\u0627\u0642\u062f\u0648\u0634","type":"STREET","district_id":128},{"title":"\u0628\u0627\u0632\u062f\u0627\u0631","type":"STREET","district_id":62},{"title":"\u0644\u0648\u0627\u0633\u0627\u0646\u06cc \u063a\u0631\u0628\u06cc","type":"STREET","district_id":62},{"title":"\u062b\u0631\u0648\u062a\u06cc","type":"STREET","district_id":62},{"title":"\u0634\u06cc\u0628\u0627\u0646\u06cc","type":"STREET","district_id":62},{"title":"\u0628\u0627\u0647\u0646\u0631","type":"STREET","district_id":62},{"title":"\u06af\u0644\u0628\u0631\u06af \u063a\u0631\u0628\u06cc","type":"STREET","district_id":945},{"title":"\u06a9\u0631\u0645\u0627\u0646","type":"STREET","district_id":945},{"title":"\u0631\u0633\u0627\u0644\u062a","type":"HIGHWAY","district_id":945},{"title":"\u06af\u0644\u0634\u0646\u200c\u062f\u0648\u0633\u062a","type":"STREET","district_id":945},{"title":"\u0635\u0641\u0627\u06cc\u06cc","type":"STREET","district_id":945},{"title":"\u0627\u0631\u062f\u0633\u062a\u0627\u0646\u06cc","type":"STREET","district_id":945},{"title":"\u0622\u0632\u0627\u062f\u06af\u0627\u0646","type":"HIGHWAY","district_id":219},{"title":"\u062e\u0644\u06cc\u062c \u0641\u0627\u0631\u0633","type":"HIGHWAY","district_id":219},{"title":"\u06a9\u0648\u0647\u0633\u0627\u0631","type":"BOULEVARD","district_id":153},{"title":"\u062f\u0631\u0647 \u0632\u0631\u0646\u0648","type":"STREET","district_id":153},{"title":"\u0639\u0627\u0635\u0645\u06cc","type":"STREET","district_id":153},{"title":"\u062d\u06a9\u06cc\u0645","type":"HIGHWAY","district_id":153},{"title":"\u062d\u062f\u0627\u062f\u0639\u0627\u062f\u0644","type":"STREET","district_id":997},{"title":"\u062e\u0631\u0627\u0633\u0627\u0646","type":"SQUARE","district_id":997},{"title":"\u0647\u0641\u062f\u0647 \u0634\u0647\u0631\u06cc\u0648\u0631","type":"STREET","district_id":997},{"title":"\u0644\u0631\u0632\u0627\u062f\u0647","type":"STREET","district_id":997},{"title":"\u0631\u06cc","type":"STREET","district_id":997},{"title":"\u0634\u0648\u0634","type":"STREET","district_id":997},{"title":"\u0639\u0644\u06cc\u0645\u0631\u0627\u062f\u06cc","type":"STREET","district_id":909},{"title":"\u062a\u0647\u0631\u0627\u0646-\u06a9\u0631\u062c","type":"HIGHWAY","district_id":909},{"title":"\u0628\u06cc\u0645\u0647 \u06cc\u06a9\u0645","type":"STREET","district_id":168},{"title":"\u0644\u0634\u06af\u0631\u06cc","type":"HIGHWAY","district_id":168},{"title":"\u0646\u0641\u06cc\u0633\u06cc","type":"STREET","district_id":168},{"title":"\u0628\u06cc\u0645\u0647","type":"SUBWAY","district_id":168},{"title":"\u0641\u0631\u0627\u0632","type":"STREET","district_id":923},{"title":"\u0630\u0628\u06cc\u062d\u06cc","type":"BOULEVARD","district_id":923},{"title":"\u067e\u06cc\u0627\u0645","type":"BOULEVARD","district_id":923},{"title":"\u06cc\u0627\u062f\u06af\u0627\u0631 \u0627\u0645\u0627\u0645","type":"HIGHWAY","district_id":923},{"title":"\u0628\u0648\u0639\u0644\u06cc","type":"TOWN","district_id":923},{"title":"\u0645\u062e\u0627\u0628\u0631\u0627\u062a","type":"TOWN","district_id":923},{"title":"\u0641\u0631\u062f\u0648\u0633 \u0634\u0631\u0642","type":"STREET","district_id":170},{"title":"\u0639\u0642\u06cc\u0644","type":"STREET","district_id":170},{"title":"\u0631\u0627\u0645\u06cc\u0646","type":"STREET","district_id":170},{"title":"\u0648\u0641\u0627 \u0622\u0630\u0631","type":"STREET","district_id":170},{"title":"\u062f\u0648\u0645 \u0635\u0627\u062f\u0642\u06cc\u0647","type":"SQUARE","district_id":170},{"title":"\u06a9\u0627\u0634\u0627\u0646\u06cc","type":"HIGHWAY","district_id":170},{"title":"\u0633\u062a\u0627\u0631\u06cc","type":"HIGHWAY","district_id":170},{"title":"\u062c\u0646\u0627\u062d","type":"HIGHWAY","district_id":170},{"title":"\u0635\u0627\u062f\u0642\u06cc\u0647","type":"SUBWAY","district_id":170},{"title":"\u0627\u0628\u0627\u0630\u0631","type":"BOULEVARD","district_id":174},{"title":"\u067e\u06cc\u0627\u0645\u0628\u0631 \u0634\u0631\u0642\u06cc","type":"STREET","district_id":174},{"title":"\u0628\u0647\u0646\u0627\u0645","type":"STREET","district_id":174},{"title":"\u0645\u0642\u062f\u0627\u062f","type":"STREET","district_id":174},{"title":"\u06a9\u0627\u0634\u0627\u0646\u06cc","type":"HIGHWAY","district_id":174},{"title":"\u062d\u06a9\u06cc\u0645","type":"HIGHWAY","district_id":174},{"title":"\u0635\u062f\u0631","type":"HIGHWAY","district_id":944},{"title":"\u0635\u06cc\u0627\u062f \u0634\u06cc\u0631\u0627\u0632\u06cc","type":"HIGHWAY","district_id":944},{"title":"\u0627\u0645\u0627\u0645 \u0639\u0644\u06cc","type":"HIGHWAY","district_id":944},{"title":"\u0647\u0641\u062f\u0647\u0645 \u0634\u0647\u0631\u06cc\u0648\u0631","type":"BOULEVARD","district_id":184},{"title":"\u0641\u062a\u062d","type":"HIGHWAY","district_id":184},{"title":"\u0634\u0647\u062f\u0627\u06cc \u0635\u0646\u0627\u06cc\u0639 \u0641\u0644\u0632\u06cc","type":"STREET","district_id":184},{"title":"\u06af\u0627\u0646\u062f\u06cc \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":96},{"title":"\u0646\u0644\u0633\u0648\u0646 \u0645\u0627\u0646\u062f\u0644\u0627","type":"STREET","district_id":96},{"title":"\u062c\u0647\u0627\u0646 \u06a9\u0648\u062f\u06a9","type":"CROSSROAD","district_id":96},{"title":"\u062e\u0627\u0644\u062f \u0627\u0633\u0644\u0627\u0645\u0628\u0648\u0644\u06cc","type":"STREET","district_id":96},{"title":"\u0648\u0644\u06cc\u0639\u0635\u0631","type":"STREET","district_id":96},{"title":"\u0634\u0647\u06cc\u062f\u06cc","type":"STREET","district_id":96},{"title":"\u0646\u0627\u0645\u062c\u0648","type":"STREET","district_id":960},{"title":"\u0633\u0644\u0645\u0627\u0646 \u0641\u0627\u0631\u0633\u06cc","type":"STREET","district_id":960},{"title":"\u0645\u062f\u0646\u06cc","type":"STREET","district_id":960},{"title":"\u062e\u0648\u0627\u062c\u0647 \u0646\u0635\u06cc\u0631\u0627\u0644\u062f\u06cc\u0646 \u0637\u0648\u0633\u06cc","type":"STREET","district_id":960},{"title":"\u06cc\u0632\u062f\u06cc","type":"STREET","district_id":960},{"title":"\u0628\u0648\u06a9\u0627\u0646","type":"STREET","district_id":46},{"title":"\u06a9\u0648\u0647\u0633\u0627\u0631","type":"STREET","district_id":46},{"title":"\u0635\u0627\u062f\u0642\u06cc \u0642\u0645\u06cc","type":"STREET","district_id":46},{"title":"\u0642\u062f\u0631\u062a\u06cc","type":"STREET","district_id":1012},{"title":"\u0641\u062a\u062d\u06cc","type":"STREET","district_id":1012},{"title":"\u0627\u0628\u0648\u0630\u0631","type":"STREET","district_id":1012},{"title":"\u0631\u0627\u0632\u06cc","type":"SQUARE","district_id":275},{"title":"\u0647\u0644\u0627\u0644 \u0627\u062d\u0645\u0631","type":"STREET","district_id":275},{"title":"\u0645\u062e\u062a\u0627\u0631\u06cc","type":"STREET","district_id":275},{"title":"\u0648\u062d\u062f\u062a \u0627\u0633\u0644\u0627\u0645\u06cc","type":"STREET","district_id":275},{"title":"\u0642\u0632\u0648\u06cc\u0646","type":"STREET","district_id":275},{"title":"\u06a9\u0627\u0631\u06af\u0631 \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":275},{"title":"\u0646\u0648\u0627\u0628","type":"HIGHWAY","district_id":275},{"title":"\u06af\u06cc\u0634\u0627","type":"STREET","district_id":88},{"title":"\u0628\u0644\u0648\u0686\u0633\u062a\u0627\u0646","type":"STREET","district_id":88},{"title":"\u0641\u0627\u0636\u0644","type":"STREET","district_id":88},{"title":"\u062c\u0644\u0627\u0644 \u0622\u0644 \u0622\u062d\u0645\u062f","type":"HIGHWAY","district_id":88},{"title":"\u06af\u0644\u0634\u0646\u200c\u062f\u0648\u0633\u062a","type":"STREET","district_id":949},{"title":"\u062d\u06cc\u062f\u0631\u06cc","type":"STREET","district_id":949},{"title":"\u0627\u0633\u062a\u0627\u062f \u062d\u0633\u0646 \u0628\u0646\u0627","type":"STREET","district_id":949},{"title":"\u0645\u062f\u0646\u06cc","type":"STREET","district_id":949},{"title":"\u0644\u0648\u0627\u0633\u0627\u0646","type":"STREET","district_id":421},{"title":"\u0627\u0633\u062a\u0642\u0644\u0627\u0644","type":"STREET","district_id":104},{"title":"\u0633\u0631\u0627\u062c","type":"STREET","district_id":104},{"title":"\u0634\u06cc\u0627\u0646","type":"STREET","district_id":104},{"title":"\u062e\u0644\u06cc\u062c \u0641\u0627\u0631\u0633","type":"HIGHWAY","district_id":214},{"title":"\u0634\u0627\u0647\u062f","type":"SUBWAY","district_id":214},{"title":"\u0641\u0631\u0647\u0646\u06af\u06cc\u0627\u0646","type":"TOWN","district_id":110},{"title":"\u067e\u0627\u0631\u0633","type":"TOWN","district_id":110},{"title":"\u06a9\u0627\u062c","type":"TOWN","district_id":110},{"title":"\u0627\u0633\u062a\u0642\u0644\u0627\u0644","type":"BOULEVARD","district_id":110},{"title":"\u062a\u0648\u062d\u06cc\u062f","type":"STREET","district_id":110},{"title":"\u0628\u0627\u0642\u0631\u06cc","type":"HIGHWAY","district_id":110},{"title":"\u0632\u06cc\u0646\u200c\u0627\u0644\u062f\u06cc\u0646","type":"HIGHWAY","district_id":110},{"title":"\u06af\u0644\u0628\u0631\u06af \u063a\u0631\u0628\u06cc","type":"STREET","district_id":126},{"title":"\u0627\u0633\u062a\u0627\u062f \u062d\u0633\u0646 \u0628\u0646\u0627 \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":126},{"title":"\u0627\u062b\u0646\u06cc\u200c\u0639\u0634\u0631\u06cc","type":"STREET","district_id":126},{"title":"\u0645\u062d\u0645\u0648\u062f\u06cc\u0647","type":"STREET","district_id":60},{"title":"\u0627\u0644\u0641","type":"STREET","district_id":60},{"title":"\u0645\u0642\u062f\u0633 \u0627\u0631\u062f\u0628\u06cc\u0644\u06cc","type":"STREET","district_id":60},{"title":"\u06cc\u0645\u0646","type":"STREET","district_id":60},{"title":"\u0648\u0644\u06cc\u0639\u0635\u0631","type":"STREET","district_id":60},{"title":"\u0645\u062e\u0635\u0648\u0635","type":"STREET","district_id":1000},{"title":"\u0645\u062d\u0628\u0648\u0628 \u0645\u062c\u0627\u0632","type":"STREET","district_id":1000},{"title":"\u062e\u0631\u0645\u0634\u0647\u0631","type":"STREET","district_id":1000},{"title":"\u063a\u0641\u0627\u0631\u06cc","type":"STREET","district_id":1000},{"title":"\u06a9\u0645\u0627\u0644\u06cc","type":"STREET","district_id":1000},{"title":"\u06a9\u0627\u0631\u06af\u0631 \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":1000},{"title":"\u0642\u0632\u0648\u06cc\u0646","type":"STREET","district_id":1000},{"title":"\u0645\u062f\u0627\u0626\u0646","type":"STREET","district_id":117},{"title":"\u06af\u0644\u0628\u0631\u06af \u0634\u0631\u0642\u06cc","type":"STREET","district_id":117},{"title":"\u0631\u0648\u062f\u0628\u0627\u0631\u06cc","type":"STREET","district_id":117},{"title":"\u0622\u06cc\u062a","type":"STREET","district_id":117},{"title":"\u0631\u0633\u0627\u0644\u062a","type":"HIGHWAY","district_id":117},{"title":"\u0627\u0644\u0648\u0646\u062f","type":"BOULEVARD","district_id":141},{"title":"\u0633\u06cc\u0645\u0648\u0646 \u0628\u0648\u0644\u06cc\u0648\u0627\u0631","type":"BOULEVARD","district_id":141},{"title":"\u0645\u0631\u0632\u062f\u0627\u0631\u0627\u0646 \u063a\u0631\u0628\u06cc","type":"BOULEVARD","district_id":139},{"title":"\u0627\u0628\u0631\u0627\u0647\u06cc\u0645\u06cc","type":"STREET","district_id":139},{"title":"\u0644\u0627\u0644\u0647","type":"STREET","district_id":139},{"title":"\u0646\u0627\u0647\u06cc\u062f","type":"STREET","district_id":139},{"title":"\u0627\u0634\u0631\u0641\u06cc \u0627\u0635\u0641\u0647\u0627\u0646\u06cc","type":"HIGHWAY","district_id":139},{"title":"\u06cc\u0627\u062f\u06af\u0627\u0631 \u0627\u0645\u0627\u0645","type":"HIGHWAY","district_id":139},{"title":"\u062d\u06a9\u06cc\u0645","type":"HIGHWAY","district_id":139},{"title":"\u0648\u0627\u0644\u0641\u062c\u0631","type":"TOWN","district_id":246},{"title":"\u06a9\u0644\u0647\u0631","type":"STREET","district_id":246},{"title":"\u0627\u0645\u0627\u0645 \u0631\u0636\u0627","type":"HIGHWAY","district_id":246},{"title":"\u0627\u0628\u0648\u0645\u0633\u0644\u0645 \u062e\u0631\u0627\u0633\u0627\u0646\u06cc","type":"STREET","district_id":246},{"title":"\u062e\u0627\u062a\u0645 \u0627\u0644\u0627\u0646\u0628\u06cc\u0627","type":"STREET","district_id":246},{"title":"\u06a9\u0644\u0647\u0631","type":"STREET","district_id":976},{"title":"\u0633\u0627\u0632\u0645\u0627\u0646 \u0622\u0628","type":"STREET","district_id":243},{"title":"\u0628\u0648\u0639\u0644\u06cc","type":"STREET","district_id":243},{"title":"\u0622\u0632\u0627\u062f\u06af\u0627\u0646","type":"HIGHWAY","district_id":243},{"title":"\u0627\u0645\u0627\u0645 \u0631\u0636\u0627","type":"HIGHWAY","district_id":243},{"title":"\u0631\u0634\u06cc\u062f\u06cc \u062c\u0647\u0627\u0646","type":"STREET","district_id":1010},{"title":"\u062d\u0642\u06cc\u0642\u06cc","type":"STREET","district_id":1010},{"title":"\u0641\u0644\u0627\u062d\u06cc","type":"STREET","district_id":1010},{"title":"\u0627\u0628\u0648\u0630\u0631","type":"STREET","district_id":1010},{"title":"\u0634\u0647\u06cc\u062f \u063a\u06cc\u0628\u06cc","type":"STREET","district_id":234},{"title":"\u0632\u0647\u0631\u0647\u200c\u0648\u0646\u062f","type":"STREET","district_id":234},{"title":"\u0641\u062f\u0627\u06cc\u06cc\u0627\u0646 \u0627\u0633\u0644\u0627\u0645","type":"STREET","district_id":234},{"title":"\u0622\u0632\u0627\u062f\u06af\u0627\u0646","type":"HIGHWAY","district_id":234},{"title":"\u063a\u06cc\u0648\u0631\u06cc","type":"STREET","district_id":232},{"title":"\u0628\u0633\u06cc\u062c","type":"BOULEVARD","district_id":232},{"title":"\u0633\u0631\u06af\u0631\u062f \u0645\u062d\u0645\u062f\u06cc","type":"STREET","district_id":232},{"title":"\u0641\u062f\u0627\u06cc\u06cc\u0627\u0646 \u0627\u0633\u0644\u0627\u0645","type":"STREET","district_id":232},{"title":"\u06a9\u0631\u06cc\u0645\u06cc","type":"HIGHWAY","district_id":232},{"title":"\u0645\u0646\u06cc\u0631\u06cc\u0647","type":"SQUARE","district_id":278},{"title":"\u0627\u0628\u0648\u0633\u0639\u06cc\u062f","type":"STREET","district_id":278},{"title":"\u0648\u062d\u062f\u062a \u0627\u0633\u0644\u0627\u0645\u06cc","type":"STREET","district_id":278},{"title":"\u0627\u0645\u0627\u0645 \u062e\u0645\u06cc\u0646\u06cc","type":"STREET","district_id":278},{"title":"\u0635\u0646\u06cc\u0639\u06cc \u067e\u0648\u0631","type":"STREET","district_id":278},{"title":"\u06a9\u0627\u0631\u06af\u0631 \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":278},{"title":"\u0648\u0644\u06cc\u0639\u0635\u0631","type":"STREET","district_id":278},{"title":"\u0627\u0633\u062f\u06cc \u0645\u0646\u0634","type":"STREET","district_id":278},{"title":"\u0645\u0648\u0644\u0648\u06cc","type":"STREET","district_id":266},{"title":"\u062e\u06cc\u0627\u0645","type":"STREET","district_id":266},{"title":"\u0645\u062d\u0645\u062f\u06cc\u0647","type":"SQUARE","district_id":266},{"title":"\u0631\u06cc","type":"STREET","district_id":266},{"title":"\u0647\u0631\u0646\u062f\u06cc","type":"STREET","district_id":266},{"title":"\u0634\u0648\u0634","type":"STREET","district_id":266},{"title":"\u0635\u0627\u062d\u0628\u200c\u062c\u0645\u0639","type":"STREET","district_id":266},{"title":"\u0634\u0645\u0634\u06cc\u0631\u06cc","type":"STREET","district_id":186},{"title":"\u0635\u0641\u0631\u06cc","type":"STREET","district_id":186},{"title":"\u062f\u0627\u0646\u0634\u06af\u0627\u0647 \u0647\u0648\u0627\u06cc\u06cc \u0634\u0645\u0627\u0644","type":"STREET","district_id":186},{"title":"\u0641\u062a\u062d","type":"HIGHWAY","district_id":186},{"title":"\u0627\u0646\u0642\u0644\u0627\u0628","type":"SQUARE","district_id":655},{"title":"\u06a9\u0627\u0631\u06af\u0631 \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":655},{"title":"\u0641\u0644\u0633\u0637\u06cc\u0646","type":"STREET","district_id":655},{"title":"\u0646\u0648\u0641\u0644 \u0644\u0648\u0634\u0627\u062a\u0648","type":"STREET","district_id":655},{"title":"\u062c\u0645\u0647\u0648\u0631\u06cc","type":"STREET","district_id":655},{"title":"\u062e\u0627\u0631\u06a9","type":"STREET","district_id":655},{"title":"\u062d\u0627\u0641\u0638","type":"STREET","district_id":655},{"title":"\u067e\u0627\u0633\u062a\u0648\u0631","type":"SQUARE","district_id":282},{"title":"\u06a9\u0627\u0634\u0627\u0646","type":"STREET","district_id":282},{"title":"\u06a9\u0627\u0631\u06af\u0631 \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":282},{"title":"\u0622\u0698\u06cc\u062f\u0647","type":"STREET","district_id":282},{"title":"\u06a9\u0645\u0627\u0644\u06cc","type":"STREET","district_id":282},{"title":"\u0627\u0630\u0631\u0628\u0627\u06cc\u062c\u0627\u0646","type":"STREET","district_id":282},{"title":"\u062d\u0631","type":"SQUARE","district_id":282},{"title":"\u0627\u0645\u0627\u0645 \u062e\u0645\u06cc\u0646\u06cc","type":"STREET","district_id":282},{"title":"\u0648\u0644\u06cc\u0639\u0635\u0631","type":"SQUARE","district_id":658},{"title":"\u0637\u0627\u0644\u0642\u0627\u0646\u06cc","type":"STREET","district_id":658},{"title":"\u0641\u0644\u0633\u0637\u06cc\u0646","type":"STREET","district_id":658},{"title":"\u06a9\u0631\u06cc\u0645\u062e\u0627\u0646","type":"STREET","district_id":658},{"title":"\u0627\u0646\u0642\u0644\u0627\u0628","type":"STREET","district_id":658},{"title":"\u06a9\u0634\u0627\u0648\u0631\u0632","type":"STREET","district_id":658},{"title":"\u0628\u0632\u0631\u06af\u0645\u0647\u0631","type":"STREET","district_id":658},{"title":"\u062d\u0627\u0641\u0638","type":"STREET","district_id":658},{"title":"\u0645\u06cc\u0631\u062f\u0627\u0645\u0627\u062f","type":"STREET","district_id":74},{"title":"\u062d\u0635\u0627\u0631\u06cc","type":"STREET","district_id":74},{"title":"\u0645\u0627\u062f\u0631","type":"SQUARE","district_id":74},{"title":"\u0634\u0645\u0633 \u062a\u0628\u0631\u06cc\u0632\u06cc \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":74},{"title":"\u062d\u0642\u0627\u0646\u06cc","type":"HIGHWAY","district_id":74},{"title":"\u06af\u06cc\u0644\u06a9\u06cc","type":"STREET","district_id":975},{"title":"\u0645\u062e\u0628\u0631","type":"STREET","district_id":975},{"title":"\u0647\u0641\u062f\u0647 \u0634\u0647\u0631\u06cc\u0648\u0631","type":"STREET","district_id":975},{"title":"\u0622\u06cc\u062a\u200c\u0627\u0644\u0644\u0647 \u0633\u0639\u06cc\u062f\u06cc","type":"STREET","district_id":975},{"title":"\u0645\u062d\u0644\u0627\u062a\u06cc","type":"HIGHWAY","district_id":975},{"title":"\u06a9\u06cc\u0627\u0645\u0646\u0634","type":"STREET","district_id":975},{"title":"\u0646\u0627\u0635\u0631\u06cc","type":"STREET","district_id":1018},{"title":"\u0630\u0648\u0627\u0644\u0641\u0642\u0627\u0631\u06cc","type":"STREET","district_id":1018},{"title":"\u062e\u0627\u0648\u0631\u0627\u0646","type":"STREET","district_id":1018},{"title":"\u0631\u0636\u0627\u06cc\u06cc","type":"STREET","district_id":1018},{"title":"\u0627\u0646\u0648\u0631\u0632\u0627\u062f\u0647","type":"STREET","district_id":1018},{"title":"\u0641\u0631\u062c\u0627\u0645","type":"STREET","district_id":399},{"title":"\u062d\u06cc\u062f\u0631\u062e\u0627\u0646\u06cc","type":"STREET","district_id":399},{"title":"\u0646\u06cc\u0631\u0648\u06cc \u062f\u0631\u06cc\u0627\u06cc\u06cc","type":"STREET","district_id":399},{"title":"\u0631\u0633\u0627\u0644\u062a","type":"HIGHWAY","district_id":399},{"title":"\u0639\u0628\u0627\u062f\u06cc","type":"STREET","district_id":399},{"title":"\u062f\u0645\u0627\u0648\u0646\u062f","type":"STREET","district_id":954},{"title":"\u062b\u0627\u0646\u06cc","type":"STREET","district_id":954},{"title":"\u0622\u06cc\u062a \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":954},{"title":"\u062a\u0648\u0644\u0627\u06cc\u06cc","type":"STREET","district_id":252},{"title":"\u0631\u062c\u0627\u06cc\u06cc","type":"HIGHWAY","district_id":252},{"title":"\u0628\u0647\u0645\u0646","type":"SQUARE","district_id":252},{"title":"\u0646\u06cc\u06a9\u0646\u0627\u0645","type":"STREET","district_id":252},{"title":"\u0633\u0645\u0646\u062f\u0631 \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":252},{"title":"\u0646\u0628\u0631\u062f \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":967},{"title":"\u062f\u0647\u0645 \u0641\u0631\u0648\u0631\u062f\u06cc\u0646","type":"STREET","district_id":967},{"title":"\u0646\u0628\u06cc \u0627\u06a9\u0631\u0645","type":"STREET","district_id":967},{"title":"\u0646\u062c\u0627\u062a \u0627\u0644\u0644\u0647\u06cc","type":"STREET","district_id":936},{"title":"\u06a9\u0631\u06cc\u0645\u062e\u0627\u0646","type":"STREET","district_id":936},{"title":"\u0633\u0645\u06cc\u0647","type":"STREET","district_id":936},{"title":"\u0637\u0627\u0644\u0642\u0627\u0646\u06cc","type":"STREET","district_id":936},{"title":"\u0627\u0646\u0642\u0644\u0627\u0628","type":"STREET","district_id":936},{"title":"\u0633\u067e\u0647\u0628\u062f \u0642\u0631\u0646\u06cc","type":"STREET","district_id":936},{"title":"\u062d\u0627\u0641\u0638","type":"STREET","district_id":936},{"title":"\u0631\u0627\u0645\u0633\u0631","type":"STREET","district_id":936},{"title":"\u0646\u0635\u0631\u062a \u0634\u0631\u0642\u06cc","type":"STREET","district_id":935},{"title":"\u062c\u0645\u0627\u0644\u200c\u0632\u0627\u062f\u0647 \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":935},{"title":"\u06a9\u0634\u0627\u0648\u0631\u0632","type":"BOULEVARD","district_id":935},{"title":"\u0642\u0631\u06cc\u0628","type":"STREET","district_id":935},{"title":"\u0641\u0631\u0635\u062a \u0634\u06cc\u0631\u0627\u0632\u06cc","type":"STREET","district_id":935},{"title":"\u06a9\u0627\u0631\u06af\u0631 \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":935},{"title":"\u0628\u0627\u0642\u0631\u062e\u0627\u0646","type":"STREET","district_id":935},{"title":"\u0645\u06cc\u062f\u0627\u0646 \u0627\u0646\u0642\u0644\u0627\u0628 \u0627\u0633\u0644\u0627\u0645\u06cc","type":"SUBWAY","district_id":935},{"title":"\u0645\u062f\u0646\u06cc","type":"STREET","district_id":132},{"title":"\u0645\u062d\u0645\u0648\u062f\u06cc","type":"STREET","district_id":132},{"title":"\u062f\u0645\u0627\u0648\u0646\u062f","type":"STREET","district_id":132},{"title":"\u0633\u0639\u06cc\u062f\u06cc","type":"HIGHWAY","district_id":262},{"title":"\u06a9\u0627\u0638\u0645\u06cc","type":"HIGHWAY","district_id":262},{"title":"\u0646\u0648\u0627\u0628","type":"HIGHWAY","district_id":312},{"title":"\u0628\u0627\u0647\u0646\u0631","type":"STREET","district_id":42},{"title":"\u0645\u0646\u0638\u0631\u06cc\u0647","type":"STREET","district_id":42},{"title":"\u0634\u0641\u06cc\u0639\u06cc","type":"STREET","district_id":42},{"title":"\u0632\u06cc\u0646\u0639\u0644\u06cc","type":"STREET","district_id":42},{"title":"\u0633\u06cc\u200c\u0645\u062a\u0631\u06cc \u0646\u06cc\u0631\u0648 \u0647\u0648\u0627\u06cc\u06cc","type":"STREET","district_id":134},{"title":"\u067e\u0646\u062c\u0645 \u0646\u06cc\u0631\u0648 \u0647\u0648\u0627\u06cc\u06cc","type":"STREET","district_id":134},{"title":"\u06cc\u06a9\u0645 \u0646\u06cc\u0631\u0648 \u0647\u0648\u0627\u06cc\u06cc","type":"STREET","district_id":134},{"title":"\u0633\u0647\u0631\u0648\u0631\u062f\u06cc \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":939},{"title":"\u067e\u0627\u0644\u06cc\u0632\u06cc","type":"STREET","district_id":939},{"title":"\u0635\u0627\u0628\u0648\u0646\u0686\u06cc","type":"STREET","district_id":939},{"title":"\u062e\u0631\u0645\u0634\u0647\u0631","type":"STREET","district_id":939},{"title":"\u0647\u0648\u06cc\u0632\u0647","type":"STREET","district_id":939},{"title":"\u067e\u0627\u06a9\u0633\u062a\u0627\u0646","type":"STREET","district_id":939},{"title":"\u062f\u0627\u0648\u0648\u062f\u06cc","type":"STREET","district_id":133},{"title":"\u0633\u0628\u0644\u0627\u0646 \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":133},{"title":"\u0627\u0631\u0628\u0627\u0628 \u0645\u0647\u062f\u06cc","type":"STREET","district_id":133},{"title":"\u062f\u0645\u0627\u0648\u0646\u062f","type":"STREET","district_id":133},{"title":"\u0645\u062f\u0646\u06cc","type":"STREET","district_id":133},{"title":"\u0648\u0631\u0627\u0645\u06cc\u0646","type":"STREET","district_id":425},{"title":"\u0648\u0631\u062f\u0622\u0648\u0631\u062f","type":"STREET","district_id":374},{"title":"\u062f\u0627\u0631\u0648\u067e\u062e\u0634","type":"STREET","district_id":374},{"title":"\u0644\u0634\u06af\u0631\u06cc","type":"HIGHWAY","district_id":374},{"title":"\u062a\u0647\u0631\u0627\u0646-\u06a9\u0631\u062c","type":"HIGHWAY","district_id":374},{"title":"\u0628\u0647\u0627\u0631\u0627\u0646","type":"SQUARE","district_id":269},{"title":"\u0633\u0644\u0627\u0645\u062a","type":"STREET","district_id":269},{"title":"\u0641\u0631\u062f \u0645\u062d\u0645\u062f\u06cc","type":"STREET","district_id":269},{"title":"\u0628\u0631\u0627\u062f\u0631\u0627\u0646 \u0645\u0642\u062f\u0645","type":"STREET","district_id":269},{"title":"\u0648\u0644\u0646\u062c\u06a9","type":"STREET","district_id":55},{"title":"\u0633\u0627\u0633\u0627\u0646","type":"STREET","district_id":55},{"title":"\u062f\u0627\u0646\u0634\u062c\u0648","type":"BOULEVARD","district_id":55},{"title":"\u0645\u0642\u062f\u0633 \u0627\u0631\u062f\u0628\u06cc\u0644\u06cc","type":"STREET","district_id":55},{"title":"\u0639\u062f\u0627\u0644\u062a","type":"STREET","district_id":55},{"title":"\u06cc\u0645\u0646","type":"STREET","district_id":55},{"title":"\u062b\u0627\u0631\u0627\u0644\u0644\u0647","type":"STREET","district_id":55},{"title":"\u0648\u0646\u06a9","type":"SQUARE","district_id":315},{"title":"\u0648\u0644\u06cc\u0639\u0635\u0631","type":"STREET","district_id":315},{"title":"\u0645\u0644\u0627\u0635\u062f\u0631\u0627","type":"STREET","district_id":315},{"title":"\u0634\u06cc\u0631\u0627\u0632 \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":315},{"title":"\u0634\u06cc\u062e \u0628\u0647\u0627\u06cc\u06cc \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":315},{"title":"\u0628\u0631\u0632\u06cc\u0644","type":"STREET","district_id":315},{"title":"\u0647\u0627\u0634\u0645\u200c\u0622\u0628\u0627\u062f","type":"STREET","district_id":270},{"title":"\u062e\u0627\u0648\u0631\u0627\u0646","type":"STREET","district_id":270},{"title":"\u0639\u0628\u0627\u0633 \u06a9\u0627\u0634\u06cc","type":"STREET","district_id":270},{"title":"\u0631\u0636\u0627\u06cc\u06cc","type":"STREET","district_id":270},{"title":"\u0628\u0639\u062b\u062a","type":"HIGHWAY","district_id":270},{"title":"\u0647\u0627\u0634\u0645\u06cc","type":"STREET","district_id":1002},{"title":"\u0645\u0627\u0644\u06a9 \u0627\u0634\u062a\u0631","type":"STREET","district_id":1002},{"title":"\u06a9\u0645\u06cc\u0644","type":"STREET","district_id":1002},{"title":"\u0627\u0645\u0627\u0645 \u062e\u0645\u06cc\u0646\u06cc","type":"STREET","district_id":1002},{"title":"\u062c\u06cc\u062d\u0648\u0646","type":"STREET","district_id":1002},{"title":"\u06cc\u0627\u062f\u06af\u0627\u0631 \u0627\u0645\u0627\u0645","type":"HIGHWAY","district_id":1002},{"title":"\u0647\u0631\u0648\u06cc","type":"SQUARE","district_id":1024},{"title":"\u0633\u0627\u0642\u062f\u0648\u0634","type":"STREET","district_id":1024},{"title":"\u0639\u0642\u06cc\u0644\u06cc","type":"SQUARE","district_id":1024},{"title":"\u067e\u0646\u0627\u0647\u06cc\u200c\u0646\u06cc\u0627","type":"SQUARE","district_id":1024},{"title":"\u0648\u0641\u0627\u0645\u0646\u0634","type":"SQUARE","district_id":1024},{"title":"\u06af\u0644\u0647\u0627","type":"SQUARE","district_id":1024},{"title":"\u0636\u0627\u0628\u0637\u06cc","type":"STREET","district_id":1024},{"title":"\u06a9\u0648\u0647\u0633\u0627\u0631","type":"BOULEVARD","district_id":924},{"title":"\u06a9\u0645\u06cc\u0644","type":"STREET","district_id":1006},{"title":"\u062d\u0633\u0627\u0645 \u0627\u0644\u062f\u06cc\u0646","type":"STREET","district_id":1006},{"title":"\u0631\u0646\u062c\u0628\u0631","type":"STREET","district_id":1006},{"title":"\u0646\u0648\u0631\u06cc","type":"STREET","district_id":1006},{"title":"\u062c\u06cc\u062d\u0648\u0646","type":"STREET","district_id":1006},{"title":"\u0646\u0648\u0627\u0628","type":"HIGHWAY","district_id":1006},{"title":"\u0642\u0632\u0648\u06cc\u0646","type":"STREET","district_id":1006},{"title":"\u0646\u0628\u0648\u062a","type":"SQUARE","district_id":119},{"title":"\u0633\u0645\u0646\u06af\u0627\u0646","type":"STREET","district_id":119},{"title":"\u06af\u0644\u0628\u0631\u06af \u063a\u0631\u0628\u06cc","type":"STREET","district_id":119},{"title":"\u0631\u0633\u0627\u0644\u062a","type":"HIGHWAY","district_id":119},{"title":"\u0622\u06cc\u062a","type":"STREET","district_id":119},{"title":"\u0647\u0648\u0627\u0646\u06cc\u0631\u0648\u0632","type":"STREET","district_id":908},{"title":"\u0635\u062f\u0641","type":"SQUARE","district_id":908},{"title":"\u0622\u0632\u0627\u062f\u06af\u0627\u0646","type":"HIGHWAY","district_id":908},{"title":"\u06cc\u0627\u062e\u0686\u06cc\u200c\u0622\u0628\u0627\u062f","type":"STREET","district_id":250},{"title":"\u0628\u0647\u0645\u0646\u06cc\u0627\u0631","type":"STREET","district_id":250},{"title":"\u0641\u0631\u0647\u0646\u06af\u06cc\u0627\u0646","type":"TOWN","district_id":250},{"title":"\u0648\u0635\u0627\u0644","type":"TOWN","district_id":250},{"title":"\u0631\u062c\u0627\u06cc\u06cc","type":"HIGHWAY","district_id":250},{"title":"\u0622\u0632\u0627\u062f\u06af\u0627\u0646","type":"HIGHWAY","district_id":250},{"title":"\u0627\u0644\u063a\u062f\u06cc\u0631","type":"BOULEVARD","district_id":192},{"title":"\u0627\u0644\u063a\u062f\u06cc\u0631","type":"SQUARE","district_id":192},{"title":"\u0646\u0633\u062a\u0631\u0646","type":"STREET","district_id":192},{"title":"\u0632\u0646\u062f\u06cc\u0647","type":"STREET","district_id":192},{"title":"\u0622\u0632\u0627\u062f\u06af\u0627\u0646","type":"HIGHWAY","district_id":192},{"title":"\u0627\u0628\u0631\u0627\u0647\u06cc\u0645 \u0622\u0628\u0627\u062f","type":"STREET","district_id":192},{"title":"\u0646\u0645\u0648\u0646\u0647","type":"TOWN","district_id":192},{"title":"\u0627\u0633\u062f\u0622\u0628\u0627\u062f\u06cc","type":"STREET","district_id":90},{"title":"\u0627\u0628\u0646\u200c\u0633\u06cc\u0646\u0627","type":"STREET","district_id":90},{"title":"\u062c\u0647\u0627\u0646\u200c\u0622\u0631\u0627","type":"STREET","district_id":90},{"title":"\u0627\u06a9\u0628\u0631\u06cc","type":"STREET","district_id":90},{"title":"\u0648\u0644\u06cc\u0639\u0635\u0631","type":"STREET","district_id":90},{"title":"\u06a9\u0631\u062f\u0633\u062a\u0627\u0646","type":"HIGHWAY","district_id":90},{"title":"\u0627\u0645\u0627\u0645 \u062e\u0645\u06cc\u0646\u06cc","type":"STREET","district_id":1170},{"title":"\u0631\u0627\u0632\u06cc","type":"STREET","district_id":1170},{"title":"\u0622\u062e\u0648\u0646\u062f \u062e\u0631\u0627\u0633\u0627\u0646\u06cc","type":"STREET","district_id":1170},{"title":"\u067e\u0631\u0648\u06cc\u0646 \u0627\u0639\u062a\u0635\u0627\u0645\u06cc","type":"STREET","district_id":452},{"title":"\u0634\u06cc\u0631\u0648\u062f\u06cc","type":"STREET","district_id":452},{"title":"\u06a9\u0648\u0634\u0634","type":"STREET","district_id":452},{"title":"\u0639\u0646\u0635\u0631\u06cc","type":"STREET","district_id":452},{"title":"\u0639\u0637\u0627\u0631","type":"STREET","district_id":1176},{"title":"\u06a9\u0644\u0627\u0647\u062f\u0648\u0632","type":"STREET","district_id":1176},{"title":"\u0633\u0646\u0627\u0628\u0627\u062f","type":"STREET","district_id":1176},{"title":"\u0641\u0644\u0633\u0637\u06cc\u0646","type":"STREET","district_id":1176},{"title":"\u0631\u0627\u0647\u0646\u0645\u0627\u06cc\u06cc","type":"STREET","district_id":1176},{"title":"\u0645\u062f\u0631\u0633","type":"STREET","district_id":431},{"title":"\u0641\u0631\u0647\u0646\u06af","type":"STREET","district_id":431},{"title":"\u0628\u06cc\u0647\u0642\u06cc","type":"STREET","district_id":431},{"title":"\u0622\u0632\u0627\u062f\u06cc","type":"STREET","district_id":431},{"title":"\u0645\u06cc\u0631\u0632\u0627 \u06a9\u0648\u0686\u06a9 \u062e\u0627\u0646","type":"STREET","district_id":431},{"title":"\u0633\u06cc\u062f \u0631\u0636\u06cc","type":"STREET","district_id":431},{"title":"\u0648\u06a9\u06cc\u0644 \u0622\u0628\u0627\u062f","type":"STREET","district_id":431},{"title":"\u062d\u0633\u06cc\u0646 \u0628\u0627\u0634\u06cc","type":"STREET","district_id":1156},{"title":"\u0645\u062c\u0644\u0633\u06cc","type":"STREET","district_id":1156},{"title":"\u0631\u0627\u0647 \u0622\u0647\u0646","type":"STREET","district_id":1156},{"title":"\u0645\u0648\u062d\u062f\u06cc\u0646","type":"STREET","district_id":1156},{"title":"\u0645\u06cc\u062b\u0645","type":"STREET","district_id":1193},{"title":"\u0637\u0628\u0631\u0633\u06cc","type":"STREET","district_id":1193},{"title":"\u0627\u06cc\u062b\u0627\u0631\u06af\u0631\u0627\u0646","type":"STREET","district_id":437},{"title":"\u0639\u0628\u062f\u0627\u0644\u0645\u0637\u0644\u0628","type":"STREET","district_id":437},{"title":"\u0645\u0648\u0633\u0648\u06cc \u0642\u0648\u0686\u0627\u0646\u06cc","type":"STREET","district_id":437},{"title":"\u0647\u062f\u0627\u06cc\u062a \u06f3\u06f5","type":"STREET","district_id":437},{"title":"\u062d\u0631 \u0639\u0627\u0645\u0644\u06cc","type":"STREET","district_id":437},{"title":"\u067e\u0631\u062f\u06cc\u0633","type":"STREET","district_id":437},{"title":"\u0646\u0627\u0635\u0631 \u062e\u0633\u0631\u0648","type":"STREET","district_id":440},{"title":"\u0628\u062e\u0627\u0631\u0627\u06cc\u06cc","type":"STREET","district_id":440},{"title":"\u067e\u0627\u0633\u062a\u0648\u0631","type":"STREET","district_id":440},{"title":"\u0627\u0628\u0648\u0630\u0631","type":"STREET","district_id":440},{"title":"\u062d\u06a9\u06cc\u0645 \u0646\u0638\u0627\u0645\u06cc","type":"STREET","district_id":440},{"title":"\u0628\u0647\u0634\u062a\u06cc","type":"STREET","district_id":440},{"title":"\u0631\u0627\u0647\u0646\u0645\u0627\u06cc\u06cc","type":"STREET","district_id":440},{"title":"\u0641\u0644\u0633\u0637\u06cc\u0646","type":"STREET","district_id":440},{"title":"\u0647\u062c\u0631\u062a","type":"STREET","district_id":1162},{"title":"\u0628\u06cc\u0633\u062a\u0648\u0646","type":"STREET","district_id":1162},{"title":"\u067e\u06cc\u0627\u0645","type":"STREET","district_id":1162},{"title":"\u0648\u062d\u062f\u062a","type":"STREET","district_id":1162},{"title":"\u062a\u0648\u0641\u06cc\u0642","type":"STREET","district_id":1162},{"title":"\u0645\u0627\u0644\u06a9 \u0627\u0634\u062a\u0631","type":"STREET","district_id":1162},{"title":"\u0628\u0631\u0633\u0644\u0627\u0646\u06cc","type":"STREET","district_id":1134},{"title":"\u0628\u0646\u0641\u0634\u0647","type":"STREET","district_id":1134},{"title":"\u0648\u06a9\u06cc\u0644 \u0622\u0628\u0627\u062f","type":"STREET","district_id":1134},{"title":"\u0644\u0627\u062f\u0646 \u06f7","type":"STREET","district_id":1134},{"title":"\u0641\u0627\u0631\u063a \u0627\u0644\u062a\u062d\u0635\u06cc\u0644\u0627\u0646","type":"STREET","district_id":1134},{"title":"\u0627\u0645\u06cc\u0631\u06cc\u0647","type":"STREET","district_id":488},{"title":"\u0631\u062d\u0645\u0627\u0646\u06cc\u0647","type":"STREET","district_id":488},{"title":"\u0645\u062c\u06cc\u062f\u06cc\u0647 \u06f2\u06f7","type":"STREET","district_id":488},{"title":"\u0645\u062d\u0645\u062f\u06cc\u0647 \u06f1\u06f0","type":"STREET","district_id":488},{"title":"\u0627\u0642\u062f\u0633\u06cc\u0647 \u06f2\u06f1","type":"STREET","district_id":488},{"title":"\u0646\u0642\u0648\u06cc\u0647 \u06f1\u06f4","type":"STREET","district_id":488},{"title":"\u0633\u062c\u0627\u062f\u06cc\u0647 \u06f1\u06f6","type":"STREET","district_id":488},{"title":"\u0645\u06cc\u062b\u0627\u0642 \u06f1\u06f2","type":"STREET","district_id":488},{"title":"\u0647\u0645\u062a","type":"STREET","district_id":473},{"title":"\u06a9\u0648\u0634\u0634","type":"STREET","district_id":478},{"title":"\u0639\u0635\u0645\u062a\u06cc\u0647","type":"STREET","district_id":1130},{"title":"\u0627\u0644\u0647\u06cc\u0647","type":"STREET","district_id":1130},{"title":"\u0645\u0646\u062c\u0645","type":"STREET","district_id":1130},{"title":"\u0634\u0647\u0631\u06a9 \u0634\u0647\u06cc\u062f \u0631\u062c\u0627\u06cc\u06cc","type":"STREET","district_id":1195},{"title":"\u0633\u062d\u0631","type":"STREET","district_id":1237},{"title":"\u0633\u06cc\u062f\u06cc","type":"STREET","district_id":1237},{"title":"\u0639\u0644\u06cc\u0645\u0631\u062f\u0627\u0646\u06cc","type":"STREET","district_id":1200},{"title":"\u0648\u062d\u06cc\u062f","type":"STREET","district_id":1200},{"title":"\u0634\u0641\u0627","type":"STREET","district_id":1149},{"title":"\u0627\u0628\u0648\u0637\u0627\u0644\u0628","type":"STREET","district_id":1149},{"title":"\u0645\u06cc\u062f\u0627\u0646 \u0627\u0645\u0627\u0645 \u062d\u0633\u06cc\u0646","type":"STREET","district_id":1149},{"title":"\u0647\u062f\u0627\u06cc\u062a \u06f2\u06f1","type":"STREET","district_id":1149},{"title":"\u0627\u0645\u0627\u0645 \u062e\u0645\u06cc\u0646\u06cc","type":"STREET","district_id":1173},{"title":"\u0641\u0631\u0647\u0627\u062f","type":"STREET","district_id":1169},{"title":"\u0646\u0633\u062a\u0631\u0646","type":"STREET","district_id":1169},{"title":"\u0641\u0644\u0633\u0637\u06cc\u0646","type":"STREET","district_id":1169},{"title":"\u0642\u062f\u0633","type":"STREET","district_id":1169},{"title":"\u0628\u0632\u0631\u06af\u0645\u0647\u0631","type":"STREET","district_id":1169},{"title":"\u06af\u0648\u06cc\u0627","type":"STREET","district_id":1169},{"title":"\u0647\u0648\u0634\u06cc\u0627\u0631","type":"STREET","district_id":1169},{"title":"\u0631\u0633\u0627\u0644\u062a","type":"STREET","district_id":1180},{"title":"\u0627\u0645\u0627\u0645 \u0647\u0627\u062f\u06cc","type":"STREET","district_id":642},{"title":"\u062e\u0627\u062f\u0645 \u0627\u0644\u0634\u0631\u06cc\u0639\u0647","type":"STREET","district_id":642},{"title":"\u062d\u062c\u062a","type":"STREET","district_id":642},{"title":"\u062d\u0634\u0645\u062a\u06cc","type":"STREET","district_id":642},{"title":"\u0627\u0645\u06cc\u0646","type":"STREET","district_id":642},{"title":"\u0622\u062a\u0634\u06a9\u0627\u0631","type":"STREET","district_id":642},{"title":"\u0622\u0632\u0627\u062f\u06cc \u06f9\u06f3","type":"STREET","district_id":642},{"title":"\u0628\u0635\u06cc\u0631","type":"STREET","district_id":642},{"title":"\u0628\u0632\u0631\u06af\u0645\u0647\u0631","type":"STREET","district_id":435},{"title":"\u06af\u0644\u0631\u06cc\u0632","type":"STREET","district_id":435},{"title":"\u06af\u0648\u06cc\u0627","type":"STREET","district_id":435},{"title":"\u06cc\u0627\u0633\u0645\u0646","type":"STREET","district_id":435},{"title":"\u0627\u0642\u0627\u0642\u06cc\u0627","type":"STREET","district_id":435},{"title":"\u0646\u06cc\u0644\u0648\u0641\u0631","type":"STREET","district_id":435},{"title":"\u0628\u0646\u0641\u0634\u0647","type":"STREET","district_id":435},{"title":"\u0645\u06cc\u0644\u0627\u062f","type":"STREET","district_id":435},{"title":"\u062c\u0627\u0646\u0628\u0627\u0632","type":"STREET","district_id":1139},{"title":"\u0633\u067e\u0627\u0647","type":"STREET","district_id":1238},{"title":"\u0633\u06cc\u062f\u06cc","type":"STREET","district_id":1238},{"title":"\u0645\u0632\u062f\u0648\u0631\u06cc","type":"STREET","district_id":1238},{"title":"\u062e\u0648\u0627\u062c\u0647 \u0631\u0628\u06cc\u0639","type":"STREET","district_id":1146},{"title":"\u0645\u06cc\u062f\u0627\u0646 \u0627\u0645\u0627\u0645 \u062d\u0633\u06cc\u0646","type":"STREET","district_id":1146},{"title":"\u0646\u06af\u06cc\u0646","type":"STREET","district_id":1147},{"title":"\u0637\u0628\u0631\u0633\u06cc \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":1230},{"title":"\u0627\u0645\u0627\u0645 \u062d\u0633\u06cc\u0646","type":"STREET","district_id":481},{"title":"\u0631\u0633\u0627\u0644\u062a","type":"STREET","district_id":481},{"title":"\u0645\u0647\u0631","type":"STREET","district_id":481},{"title":"\u0633\u062a\u0627\u06cc\u0634","type":"STREET","district_id":1194},{"title":"\u06cc\u0627\u0633","type":"STREET","district_id":497},{"title":"\u062a\u0644\u0627\u0634","type":"STREET","district_id":497},{"title":"\u0648\u0635\u0627\u0644","type":"STREET","district_id":497},{"title":"\u062c\u0627\u0646\u0628\u0627\u0632\u06f7","type":"STREET","district_id":497},{"title":"\u0641\u062e\u0631","type":"STREET","district_id":497},{"title":"\u0645\u06cc\u0644\u0627\u062f","type":"STREET","district_id":497},{"title":"\u06af\u0644\u0633\u062a\u0627\u0646","type":"STREET","district_id":1175},{"title":"\u0622\u062e\u0648\u0646\u062f \u062e\u0631\u0627\u0633\u0627\u0646\u06cc","type":"STREET","district_id":1211},{"title":"\u0634\u06cc\u0631\u0648\u062f\u06cc","type":"STREET","district_id":1220},{"title":"\u0686\u0645\u0646","type":"STREET","district_id":1220},{"title":"\u0628\u0644\u0648\u0627\u0631 \u062a\u0648\u0633","type":"STREET","district_id":1138},{"title":"\u0627\u0645\u0627\u0645 \u0631\u0636\u0627","type":"STREET","district_id":474},{"title":"\u0637\u0628\u0631\u0633\u06cc","type":"STREET","district_id":474},{"title":"\u0639\u0644\u06cc\u0645\u0631\u062f\u0627\u0646\u06cc","type":"STREET","district_id":1203},{"title":"\u0628\u0644\u0627\u0644","type":"STREET","district_id":1181},{"title":"\u0628\u0647\u0645\u0646","type":"STREET","district_id":1181},{"title":"\u0635\u062f\u0641","type":"STREET","district_id":463},{"title":"\u0641\u0631\u0647\u0646\u06af","type":"STREET","district_id":463},{"title":"\u0628\u0648\u0644\u0648\u0627\u0631 \u0645\u0639\u0644\u0645","type":"STREET","district_id":463},{"title":"\u0648\u06a9\u06cc\u0644 \u0622\u0628\u0627\u062f","type":"STREET","district_id":463},{"title":"\u0633\u06cc\u062f \u0631\u0636\u06cc","type":"STREET","district_id":463},{"title":"\u0631\u0636\u0627\u0634\u0647\u0631","type":"STREET","district_id":1124},{"title":"\u0631\u0633\u0627\u0644\u062a","type":"STREET","district_id":1182},{"title":"\u0639\u0628\u0627\u062f\u06cc","type":"STREET","district_id":1172},{"title":"\u0647\u0627\u0634\u0645\u06cc \u0646\u0698\u0627\u062f","type":"STREET","district_id":1172},{"title":"\u0647\u0627\u062a\u0641","type":"STREET","district_id":1172},{"title":"\u0645\u06cc\u062f\u0627\u0646 \u0634\u0647\u062f\u0627","type":"STREET","district_id":1172},{"title":"\u0628\u062e\u0627\u0631\u0627\u06cc\u06cc","type":"STREET","district_id":442},{"title":"\u0641\u0644\u0633\u0637\u06cc\u0646","type":"STREET","district_id":442},{"title":"\u0633\u0644\u0645\u0627\u0646 \u0641\u0627\u0631\u0633\u06cc","type":"STREET","district_id":442},{"title":"\u0622\u0628\u06a9\u0648\u0647","type":"STREET","district_id":442},{"title":"\u0637\u0628\u0631\u0633\u06cc","type":"STREET","district_id":498},{"title":"\u06af\u0627\u0632","type":"STREET","district_id":498},{"title":"\u0645\u0642\u062f\u0627\u062f","type":"STREET","district_id":498},{"title":"\u0641\u062a\u0627\u062d","type":"STREET","district_id":498},{"title":"\u06a9\u0627\u0641\u06cc","type":"STREET","district_id":498},{"title":"\u062e\u0627\u0642\u0627\u0646\u06cc","type":"STREET","district_id":433},{"title":"\u0631\u0648\u062f\u06a9\u06cc","type":"STREET","district_id":433},{"title":"\u062f\u0647\u062e\u062f\u0627","type":"STREET","district_id":433},{"title":"\u0641\u0631\u062e\u06cc","type":"STREET","district_id":433},{"title":"\u0634\u0647\u0631\u06a9 \u0637\u0627\u0644\u0642\u0627\u0646\u06cc","type":"STREET","district_id":433},{"title":"\u0627\u0646\u0648\u0631\u06cc","type":"STREET","district_id":433},{"title":"\u06a9\u0633\u0627\u06cc\u06cc","type":"STREET","district_id":433},{"title":"\u067e\u06cc\u0631\u0648\u0632\u06cc \u06f2\u06f0","type":"STREET","district_id":433},{"title":"\u0622\u0645\u0648\u0632\u06af\u0627\u0631","type":"STREET","district_id":1131},{"title":"\u0648\u06a9\u06cc\u0644 \u0622\u0628\u0627\u062f","type":"STREET","district_id":1131},{"title":"\u062f\u0627\u0646\u0634\u06af\u0627\u0647","type":"STREET","district_id":491},{"title":"\u0627\u0645\u0627\u0645 \u062e\u0645\u06cc\u0646\u06cc","type":"STREET","district_id":491},{"title":"\u0631\u0627\u0647 \u0622\u0647\u0646","type":"STREET","district_id":1153},{"title":"\u0639\u0637\u0627\u0631","type":"STREET","district_id":462},{"title":"\u062f\u0627\u0646\u0634\u0633\u0631\u0627","type":"STREET","district_id":462},{"title":"\u062a\u0631\u0628\u06cc\u062a","type":"STREET","district_id":462},{"title":"\u0645\u0646\u0648\u0686\u0647\u0631\u06cc","type":"STREET","district_id":462},{"title":"\u06af\u0644\u0633\u062a\u0627\u0646","type":"STREET","district_id":462},{"title":"\u0645\u0637\u0647\u0631\u06cc \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":462},{"title":"\u0622\u0628\u06a9\u0648\u0647","type":"STREET","district_id":462},{"title":"\u0645\u0648\u0644\u0648\u06cc","type":"STREET","district_id":462},{"title":"\u0633\u062d\u0631","type":"STREET","district_id":1235},{"title":"\u0633\u067e\u0627\u0647","type":"STREET","district_id":1235},{"title":"\u06a9\u0648\u06cc \u0645\u0647\u062f\u06cc","type":"STREET","district_id":1235},{"title":"\u062e\u0644\u062c","type":"STREET","district_id":1235},{"title":"\u0628\u0648\u0644\u0648\u0627\u0631 \u0635\u0628\u0627","type":"STREET","district_id":1235},{"title":"\u0634\u0647\u06cc\u062f \u062f\u0627\u06cc\u06cc","type":"STREET","district_id":1235},{"title":"\u0627\u06cc\u062b\u0627\u0631\u06af\u0631\u0627\u0646","type":"STREET","district_id":1151},{"title":"\u0644\u0627\u062f\u0646","type":"STREET","district_id":1117},{"title":"\u0635\u0627\u0628\u0631","type":"STREET","district_id":1117},{"title":"\u0627\u0642\u0628\u0627\u0644","type":"STREET","district_id":1117},{"title":"\u0628\u0631\u0633\u0644\u0627\u0646\u06cc","type":"STREET","district_id":1117},{"title":"\u0635\u06cc\u0627\u062f \u0634\u06cc\u0631\u0627\u0632\u06cc","type":"STREET","district_id":1117},{"title":"\u0628\u0647\u0627\u0631\u0633\u062a\u0627\u0646","type":"STREET","district_id":1125},{"title":"\u0627\u0631\u063a\u0648\u0627\u0646","type":"STREET","district_id":1125},{"title":"\u0631\u0636\u0627\u0634\u0647\u0631","type":"STREET","district_id":1125},{"title":"\u0646\u0645\u0627\u0632 \u06f2\u06f7","type":"STREET","district_id":1125},{"title":"\u06a9\u0631\u06cc\u0645\u06cc","type":"STREET","district_id":1155},{"title":"\u0627\u0628\u0648\u0637\u0627\u0644\u0628","type":"STREET","district_id":1155},{"title":"\u0645\u0648\u0633\u0648\u06cc \u0642\u0648\u0686\u0627\u0646\u06cc","type":"STREET","district_id":1155},{"title":"\u0634\u06cc\u0634\u0647 \u0686\u06cc","type":"STREET","district_id":1155},{"title":"\u062d\u0633\u06cc\u0646 \u0628\u0627\u0634\u06cc","type":"STREET","district_id":1155},{"title":"\u0647\u062c\u0631\u062a","type":"STREET","district_id":1155},{"title":"\u0646\u06a9\u0627\u062d","type":"STREET","district_id":1155},{"title":"\u062d\u0631 \u0639\u0627\u0645\u0644\u06cc","type":"STREET","district_id":1155},{"title":"\u0634\u0641\u0627","type":"STREET","district_id":1154},{"title":"\u0627\u0628\u0648\u0637\u0627\u0644\u0628","type":"STREET","district_id":1154},{"title":"\u062f\u0627\u0646\u0634\u062c\u0648","type":"STREET","district_id":1132},{"title":"\u0648\u06a9\u06cc\u0644 \u0622\u0628\u0627\u062f","type":"STREET","district_id":1132},{"title":"\u0645\u0639\u0644\u0645 \u06f6\u06f3","type":"STREET","district_id":1132},{"title":"\u0627\u0642\u0628\u0627\u0644","type":"STREET","district_id":460},{"title":"\u0634\u0642\u0627\u06cc\u0642","type":"STREET","district_id":460},{"title":"\u0635\u0627\u0628\u0631","type":"STREET","district_id":460},{"title":"\u0647\u0641\u062a \u062a\u06cc\u0631","type":"STREET","district_id":460},{"title":"\u0648\u06a9\u06cc\u0644 \u0622\u0628\u0627\u062f","type":"STREET","district_id":460},{"title":"\u0646\u0648\u0631","type":"STREET","district_id":460},{"title":"\u0628\u0646\u0641\u0634\u0647","type":"STREET","district_id":460},{"title":"\u0641\u06a9\u0648\u0631\u06cc \u06f1\u06f1","type":"STREET","district_id":460},{"title":"\u062d\u0631\u0645 \u0645\u0637\u0647\u0631","type":"STREET","district_id":450},{"title":"\u0637\u0628\u0627\u0637\u0628\u0627\u06cc\u06cc","type":"STREET","district_id":1184},{"title":"\u062c\u0645\u0627\u0631\u0627\u0646","type":"STREET","district_id":1184},{"title":"\u0628\u0627\u0628\u0627\u0646\u0638\u0631","type":"STREET","district_id":1184},{"title":"\u0641\u0631\u0647\u0646\u06af\u06cc\u0627\u0646","type":"STREET","district_id":454},{"title":"\u0628\u0639\u062b\u062a","type":"STREET","district_id":454},{"title":"\u06a9\u0631\u06cc\u0645\u06cc","type":"STREET","district_id":1165},{"title":"\u0639\u0628\u0627\u062f\u06cc","type":"STREET","district_id":1165},{"title":"\u0645\u06cc\u062f\u0627\u0646 \u0634\u0647\u062f\u0627","type":"STREET","district_id":1165},{"title":"\u062a\u0648\u062d\u06cc\u062f","type":"STREET","district_id":1165},{"title":"\u0647\u0627\u0634\u0645\u06cc \u0646\u0698\u0627\u062f","type":"STREET","district_id":1165},{"title":"\u062d\u0631 \u0639\u0627\u0645\u0644\u06cc","type":"STREET","district_id":1165},{"title":"\u0645\u0648\u0633\u0648\u06cc","type":"STREET","district_id":1165},{"title":"\u062e\u06cc\u0627\u0645","type":"STREET","district_id":465},{"title":"\u0645\u0648\u0633\u0648\u06cc \u0642\u0648\u0686\u0627\u0646\u06cc","type":"STREET","district_id":465},{"title":"\u0627\u0628\u0648\u0637\u0627\u0644\u0628","type":"STREET","district_id":465},{"title":"\u0642\u0627\u0626\u0645","type":"STREET","district_id":465},{"title":"\u0631\u0633\u062a\u06af\u0627\u0631 \u0645\u0642\u062f\u0645","type":"STREET","district_id":465},{"title":"\u0622\u0645\u0648\u0632\u06af\u0627\u0631","type":"STREET","district_id":1129},{"title":"\u0633\u062a\u0627\u0631\u06cc","type":"STREET","district_id":1129},{"title":"\u0630\u0648\u0627\u0644\u0641\u0642\u0627\u0631","type":"STREET","district_id":1141},{"title":"\u0631\u0633\u0627\u0644\u062a","type":"STREET","district_id":447},{"title":"\u0628\u0647\u0627\u0631\u0627\u0646","type":"STREET","district_id":447},{"title":"\u06cc\u0627\u0633","type":"STREET","district_id":447},{"title":"\u0628\u0646\u0641\u0634\u0647","type":"STREET","district_id":447},{"title":"\u0645\u06cc\u0644\u0627\u062f","type":"STREET","district_id":447},{"title":"\u062d\u0631","type":"STREET","district_id":447},{"title":"\u062e\u06cc\u0627\u0628\u0627\u0646 \u0645\u0647\u062f\u06cc","type":"STREET","district_id":447},{"title":"\u062a\u0639\u0627\u0648\u0646","type":"STREET","district_id":447},{"title":"\u0633\u06cc\u062f \u0631\u0636\u06cc","type":"STREET","district_id":1133},{"title":"\u0633\u0631\u0648\u0634","type":"STREET","district_id":1133},{"title":"\u0645\u0639\u0627\u062f","type":"STREET","district_id":1133},{"title":"\u0639\u062f\u0644","type":"STREET","district_id":1133},{"title":"\u062f\u0627\u0646\u0634\u062c\u0648","type":"STREET","district_id":1133},{"title":"\u0634\u06cc\u062e \u0645\u0641\u06cc\u062f","type":"STREET","district_id":1133},{"title":"\u0648\u06a9\u06cc\u0644 \u0622\u0628\u0627\u062f","type":"STREET","district_id":1133},{"title":"\u0642\u0627\u0633\u0645\u06cc","type":"STREET","district_id":1133},{"title":"\u0641\u0631\u0647\u0627\u062f","type":"STREET","district_id":439},{"title":"\u0647\u062c\u0631\u062a","type":"STREET","district_id":439},{"title":"\u0642\u062f\u0633","type":"STREET","district_id":439},{"title":"\u0628\u06cc\u0633\u062a\u0648\u0646","type":"STREET","district_id":439},{"title":"\u0646\u0633\u062a\u0631\u0646","type":"STREET","district_id":439},{"title":"\u062a\u0648\u0641\u06cc\u0642","type":"STREET","district_id":439},{"title":"\u0631\u0627\u0647\u0646\u0645\u0627\u06cc\u06cc","type":"STREET","district_id":439},{"title":"\u0648\u062d\u062f\u062a","type":"STREET","district_id":439},{"title":"\u0627\u0645\u0627\u0645 \u0631\u0636\u0627","type":"STREET","district_id":490},{"title":"\u0627\u0645\u0627\u0645 \u0631\u0636\u0627","type":"STREET","district_id":486},{"title":"\u06a9\u0648\u0634\u0634","type":"STREET","district_id":486},{"title":"\u062d\u062c\u0627\u0628","type":"STREET","district_id":428},{"title":"\u0645\u0634\u06a9\u06cc\u0646\u06cc","type":"STREET","district_id":428},{"title":"\u0628\u0647\u0648\u0631\u0632","type":"STREET","district_id":428},{"title":"\u06cc\u0648\u0633\u0641\u06cc\u0647","type":"STREET","district_id":428},{"title":"\u0646\u0647\u0636\u062a","type":"STREET","district_id":428},{"title":"\u0645\u06cc\u0639\u0627\u062f","type":"STREET","district_id":428},{"title":"\u0645\u0631\u0648\u0627\u0631\u06cc\u062f","type":"STREET","district_id":428},{"title":"\u0631\u0627\u0632\u06cc","type":"STREET","district_id":428},{"title":"\u062d\u0627\u0641\u0638","type":"STREET","district_id":493},{"title":"\u0686\u0645\u0631\u0627\u0646","type":"STREET","district_id":493},{"title":"\u0628\u0644\u0627\u0644","type":"STREET","district_id":493},{"title":"\u0641\u0631\u0647\u0646\u06af\u06cc\u0627\u0646","type":"STREET","district_id":493},{"title":"\u0646\u0627\u0635\u0631 \u062e\u0633\u0631\u0648","type":"STREET","district_id":493},{"title":"\u06a9\u0644\u0627\u0647\u062f\u0648\u0632","type":"STREET","district_id":493},{"title":"\u0631\u0627\u0632\u06cc","type":"STREET","district_id":493},{"title":"\u0639\u0637\u0627\u0631","type":"STREET","district_id":493},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0645\u0639\u0644\u0645","type":"STREET","district_id":485},{"title":"\u0627\u0631\u063a\u0648\u0627\u0646","type":"STREET","district_id":485},{"title":"\u062a\u0648\u0633","type":"STREET","district_id":1144},{"title":"\u062e\u06cc\u0646 \u0639\u0631\u0628","type":"STREET","district_id":1144},{"title":"\u0686\u0631\u0627\u063a\u0686\u06cc \u06f4\u06f9","type":"STREET","district_id":1144},{"title":"\u0645\u062c\u062f","type":"STREET","district_id":443},{"title":"\u0639\u0637\u0627\u0631","type":"STREET","district_id":443},{"title":"\u062a\u0648\u0631\u062c","type":"STREET","district_id":443},{"title":"\u0622\u0628\u06a9\u0648\u0647","type":"STREET","district_id":443},{"title":"\u0628\u0647\u0634\u062a\u06cc","type":"STREET","district_id":457},{"title":"\u062d\u06a9\u06cc\u0645 \u0646\u0638\u0627\u0645\u06cc","type":"STREET","district_id":457},{"title":"\u0631\u0648\u062f\u06a9\u06cc","type":"STREET","district_id":457},{"title":"\u067e\u0627\u0631\u0633","type":"STREET","district_id":457},{"title":"\u0647\u0645\u062a","type":"STREET","district_id":457},{"title":"\u062c\u0647\u0627\u0646 \u0622\u0631\u0627","type":"STREET","district_id":457},{"title":"\u0627\u0628\u0648\u0630\u0631","type":"STREET","district_id":457},{"title":"\u0645\u062d\u062a\u0634\u0645\u06cc","type":"STREET","district_id":457},{"title":"\u062e\u06cc\u0627\u0645","type":"STREET","district_id":1143},{"title":"\u0648\u0644\u06cc\u0639\u0635\u0631","type":"STREET","district_id":1143},{"title":"\u0627\u0645\u06cc\u0631","type":"STREET","district_id":1143},{"title":"\u06a9\u0634\u0627\u0648\u0631\u0632","type":"STREET","district_id":1143},{"title":"\u062a\u0648\u0633","type":"STREET","district_id":1143},{"title":"\u0630\u0648\u0627\u0644\u0641\u0642\u0627\u0631","type":"STREET","district_id":1143},{"title":"\u0634\u0642\u0627\u06cc\u0642","type":"STREET","district_id":1143},{"title":"\u062c\u0627\u0646\u0628\u0627\u0632","type":"STREET","district_id":1143},{"title":"\u0633\u06cc\u062f\u06cc","type":"STREET","district_id":489},{"title":"\u0642\u0627\u0626\u0645","type":"STREET","district_id":489},{"title":"\u06a9\u0648\u0634\u0634","type":"STREET","district_id":489},{"title":"\u0628\u0648\u0644\u0648\u0627\u0631 \u0635\u0628\u0627","type":"STREET","district_id":489},{"title":"\u0634\u0647\u06cc\u062f \u062f\u0627\u06cc\u06cc","type":"STREET","district_id":489},{"title":"\u062e\u0644\u062c","type":"STREET","district_id":489},{"title":"\u0631\u0633\u0627\u0644\u062a","type":"STREET","district_id":495},{"title":"\u0641\u0627\u0637\u0645\u06cc\u0647","type":"STREET","district_id":495},{"title":"\u0645\u06cc\u062f\u0627\u0646 \u0627\u0645\u0627\u0645 \u062d\u0633\u06cc\u0646","type":"STREET","district_id":495},{"title":"\u0644\u0627\u0644\u0647","type":"STREET","district_id":466},{"title":"\u0641\u0631\u0648\u0631\u062f\u06cc\u0646","type":"STREET","district_id":466},{"title":"\u0634\u0645\u0633","type":"STREET","district_id":466},{"title":"\u0637\u0648\u0628\u06cc","type":"STREET","district_id":466},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0627\u0645\u0627\u0645 \u0631\u0636\u0627","type":"STREET","district_id":466},{"title":"\u0628\u0647\u0627\u0631","type":"STREET","district_id":466},{"title":"\u0645\u0647\u0631\u06af\u0627\u0646 \u06f1\u06f8","type":"STREET","district_id":466},{"title":"\u0646\u06cc\u0644\u0648\u0641\u0631","type":"STREET","district_id":466},{"title":"\u06a9\u0644\u0627\u0647\u062f\u0648\u0632","type":"STREET","district_id":444},{"title":"\u06a9\u0631\u06cc\u0645\u06cc","type":"STREET","district_id":1163},{"title":"\u0645\u0637\u0647\u0631\u06cc \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":1163},{"title":"\u06a9\u0644\u0627\u0647\u062f\u0648\u0632","type":"STREET","district_id":1163},{"title":"\u0627\u0628\u0648\u0637\u0627\u0644\u0628","type":"STREET","district_id":1163},{"title":"\u062e\u06cc\u0627\u0628\u0627\u0646 \u0634\u06cc\u0631\u0627\u0632\u06cc","type":"STREET","district_id":1206},{"title":"\u0631\u062d\u0645\u0627\u0646\u06cc\u0647","type":"STREET","district_id":1127},{"title":"\u0627\u0644\u0647\u06cc\u0647","type":"STREET","district_id":1127},{"title":"\u0628\u0648\u0633\u062a\u0627\u0646","type":"STREET","district_id":1127},{"title":"\u06a9\u0648\u062b\u0631 \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":1119},{"title":"\u0646\u06cc\u0627\u0648\u0631\u0627\u0646","type":"STREET","district_id":1119},{"title":"\u0628\u0647\u0627\u0631\u0627\u0646","type":"STREET","district_id":1119},{"title":"\u0637\u0628\u0631\u0633\u06cc","type":"STREET","district_id":1187},{"title":"\u0645\u06cc\u062b\u0645","type":"STREET","district_id":1187},{"title":"\u0646\u062e\u0644","type":"STREET","district_id":1120},{"title":"\u0631\u0647\u0627\u06cc\u06cc","type":"STREET","district_id":1120},{"title":"\u0632\u06cc\u062a\u0648\u0646","type":"STREET","district_id":1120},{"title":"\u0646\u0627\u0631\u0646\u062c","type":"STREET","district_id":1120},{"title":"\u0622\u0631\u0645\u0627\u0646","type":"STREET","district_id":1120},{"title":"\u062e\u0633\u0631\u0648\u06cc","type":"STREET","district_id":1120},{"title":"\u062f\u0644\u0627\u0648\u0631\u0627\u0646 \u06f2\u06f0","type":"STREET","district_id":1120},{"title":"\u067e\u06cc\u0631\u0648\u0632\u06cc \u06f3\u06f0","type":"STREET","district_id":1120},{"title":"\u0648\u062d\u06cc\u062f","type":"STREET","district_id":436},{"title":"\u0627\u06cc\u062b\u0627\u0631","type":"STREET","district_id":436},{"title":"\u0637\u0628\u0631\u0633\u06cc","type":"STREET","district_id":436},{"title":"\u0627\u0628\u0648\u0630\u0631","type":"STREET","district_id":436},{"title":"\u062a\u0644\u06af\u0631\u062f","type":"STREET","district_id":436},{"title":"\u0639\u0644\u0627\u0645\u0647 \u0637\u0628\u0627\u0637\u0628\u0627\u06cc\u06cc","type":"STREET","district_id":436},{"title":"\u0647\u0627\u0634\u0645\u06cc\u0647","type":"STREET","district_id":1122},{"title":"\u0644\u0627\u0644\u0647","type":"STREET","district_id":1122},{"title":"\u0641\u0631\u0634\u062a\u0647","type":"STREET","district_id":1122},{"title":"\u06af\u0644\u062f\u06cc\u0633","type":"STREET","district_id":1122},{"title":"\u0627\u0631\u0634\u0627\u062f","type":"STREET","district_id":1122},{"title":"\u0647\u062f\u0627\u06cc\u062a \u06f3\u06f5","type":"STREET","district_id":1148},{"title":"\u0628\u0631\u06a9\u067e\u0648\u0631","type":"STREET","district_id":1118},{"title":"\u0647\u0627\u0634\u0645\u06cc\u0647","type":"STREET","district_id":1118},{"title":"\u0646\u0633\u062a\u0631\u0646","type":"STREET","district_id":1118},{"title":"\u0647\u0641\u062a \u062a\u06cc\u0631","type":"STREET","district_id":1118},{"title":"\u0646\u0648\u0632\u062f\u0647 \u0628\u0647\u0645\u0646","type":"STREET","district_id":1118},{"title":"\u06af\u0644\u0634\u0646","type":"STREET","district_id":477},{"title":"\u0647\u0627\u0634\u0645\u06cc\u0647","type":"STREET","district_id":477},{"title":"\u0633\u0627\u0645\u0627\u0646\u06cc\u0647","type":"STREET","district_id":477},{"title":"\u0647\u0641\u062a \u062a\u06cc\u0631","type":"STREET","district_id":477},{"title":"\u0627\u0631\u0634\u0627\u062f","type":"STREET","district_id":477},{"title":"\u0635\u0627\u0631\u0645\u06cc \u06f3\u06f6","type":"STREET","district_id":477},{"title":"\u062a\u0627\u0628\u0627\u0646","type":"STREET","district_id":477},{"title":"\u0686\u0645\u0646","type":"STREET","district_id":451},{"title":"\u0634\u06cc\u0631\u0648\u062f\u06cc","type":"STREET","district_id":451},{"title":"\u0639\u0637\u0627\u0631","type":"STREET","district_id":449},{"title":"\u0645\u062c\u062f","type":"STREET","district_id":449},{"title":"\u062a\u0648\u062d\u06cc\u062f","type":"STREET","district_id":449},{"title":"\u0645\u0646\u0648\u0686\u0647\u0631\u06cc","type":"STREET","district_id":449},{"title":"\u062a\u0631\u0628\u06cc\u062a","type":"STREET","district_id":449},{"title":"\u06a9\u0641\u0627\u0634","type":"STREET","district_id":449},{"title":"\u0622\u0628\u06a9\u0648\u0647","type":"STREET","district_id":449},{"title":"\u062e\u06cc\u0627\u0628\u0627\u0646 \u0635\u0627\u062d\u0628 \u0627\u0644\u0632\u0645\u0627\u0646","type":"STREET","district_id":449},{"title":"\u067e\u0631\u0648\u06cc\u0646 \u0627\u0639\u062a\u0635\u0627\u0645\u06cc","type":"STREET","district_id":1227},{"title":"\u06a9\u0648\u0634\u0634","type":"STREET","district_id":1227},{"title":"\u0639\u0628\u062f\u0627\u0644\u0645\u0637\u0644\u0628","type":"STREET","district_id":479},{"title":"\u062d\u0631 \u0639\u0627\u0645\u0644\u06cc","type":"STREET","district_id":479},{"title":"\u0628\u0644\u0648\u0627\u0631 \u062a\u0648\u0633","type":"STREET","district_id":1137},{"title":"\u0627\u0645\u0627\u0645 \u0631\u0636\u0627","type":"STREET","district_id":476},{"title":"\u0627\u0642\u0628\u0627\u0644","type":"STREET","district_id":430},{"title":"\u0641\u0627\u0631\u063a \u0627\u0644\u062a\u062d\u0635\u06cc\u0644\u0627\u0646","type":"STREET","district_id":430},{"title":"\u062f\u0627\u062f\u06af\u0631","type":"STREET","district_id":430},{"title":"\u0633\u062a\u0627\u0631\u06cc","type":"STREET","district_id":430},{"title":"\u0635\u062f\u0641","type":"STREET","district_id":430},{"title":"\u0633\u0631\u0648\u0634","type":"STREET","district_id":430},{"title":"\u0641\u0631\u0647\u0646\u06af","type":"STREET","district_id":430},{"title":"\u0635\u06cc\u0627\u062f \u0634\u06cc\u0631\u0627\u0632\u06cc","type":"STREET","district_id":430},{"title":"\u0633\u0627\u0645\u0627\u0646\u06cc\u0647","type":"STREET","district_id":432},{"title":"\u0641\u0631\u0634\u062a\u0647","type":"STREET","district_id":432},{"title":"\u062a\u0627\u0628\u0627\u0646","type":"STREET","district_id":432},{"title":"\u0627\u0631\u063a\u0648\u0627\u0646","type":"STREET","district_id":432},{"title":"\u0634\u0642\u0627\u06cc\u0642","type":"STREET","district_id":467},{"title":"\u06af\u0644\u0634\u0646","type":"STREET","district_id":467},{"title":"\u0627\u0631\u0634\u0627\u062f","type":"STREET","district_id":467},{"title":"\u0648\u06cc\u0644\u0627","type":"STREET","district_id":467},{"title":"\u0635\u06cc\u0627\u062f \u0634\u06cc\u0631\u0627\u0632\u06cc","type":"STREET","district_id":467},{"title":"\u0635\u0627\u0628\u0631","type":"STREET","district_id":467},{"title":"\u0641\u06a9\u0648\u0631\u06cc \u06f1\u06f1","type":"STREET","district_id":467},{"title":"\u0648\u06a9\u06cc\u0644 \u0622\u0628\u0627\u062f","type":"STREET","district_id":467},{"title":"\u0634\u0647\u0631\u06a9 \u06cc\u0627\u0633","type":"STREET","district_id":1058},{"title":"\u0634\u0627\u0647\u06cc\u0646 \u0648\u06cc\u0644\u0627","type":"STREET","district_id":1058},{"title":"\u062d\u0635\u0627\u0631\u06a9","type":"STREET","district_id":1058},{"title":"\u0645\u0637\u0647\u0631\u06cc","type":"STREET","district_id":589},{"title":"\u0637\u0627\u0644\u0642\u0627\u0646\u06cc","type":"STREET","district_id":589},{"title":"\u0628\u0631\u063a\u0627\u0646","type":"STREET","district_id":589},{"title":"\u0639\u0638\u06cc\u0645\u06cc\u0647","type":"STREET","district_id":589},{"title":"\u06a9\u0627\u062c","type":"STREET","district_id":589},{"title":"\u0633\u0644\u0645\u0627\u0646 \u0641\u0627\u0631\u0633\u06cc","type":"STREET","district_id":589},{"title":"\u0628\u0647\u0627\u0631","type":"STREET","district_id":589},{"title":"\u0627\u0645\u0627\u0645 \u0631\u0636\u0627","type":"STREET","district_id":589},{"title":"\u0645\u06cc\u0644\u0627\u062f","type":"STREET","district_id":1041},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0627\u0631\u0645","type":"STREET","district_id":1041},{"title":"\u0634\u0634\u0645 \u0634\u0631\u0642\u06cc","type":"STREET","district_id":1041},{"title":"\u067e\u0646\u062c\u0645 \u0634\u0631\u0642\u06cc","type":"STREET","district_id":1041},{"title":"\u06af\u0648\u0647\u0631\u062f\u0634\u062a","type":"STREET","district_id":1078},{"title":"\u0627\u0633\u062a\u0642\u0644\u0627\u0644 \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":1078},{"title":"\u0627\u0641\u0634\u0627\u0631","type":"STREET","district_id":1045},{"title":"\u0639\u062f\u0627\u0644\u062a","type":"STREET","district_id":1045},{"title":"\u0628\u0646\u0641\u0634\u0647","type":"STREET","district_id":1045},{"title":"\u062a\u0648\u0627\u0646\u06cc\u0631","type":"STREET","district_id":1042},{"title":"\u0639\u0638\u06cc\u0645\u06cc\u0647","type":"STREET","district_id":1101},{"title":"\u0647\u0641\u062a \u062a\u06cc\u0631","type":"STREET","district_id":1081},{"title":"\u0637\u0627\u0644\u0642\u0627\u0646\u06cc","type":"STREET","district_id":1081},{"title":"\u0628\u0647\u0627\u0631\u0627\u0646","type":"STREET","district_id":1081},{"title":"\u0645\u0638\u0627\u0647\u0631\u06cc","type":"STREET","district_id":1081},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0628\u0644\u0627\u0644","type":"STREET","district_id":1081},{"title":"\u0645\u06cc\u062f\u0627\u0646 \u062a\u0648\u062d\u06cc\u062f","type":"STREET","district_id":1081},{"title":"\u0622\u0628\u0627\u0646","type":"STREET","district_id":1081},{"title":"\u0644\u0627\u0644\u0647","type":"STREET","district_id":573},{"title":"\u067e\u06cc\u0631\u0648\u0632\u06cc","type":"STREET","district_id":573},{"title":"\u06af\u0644\u0633\u062a\u0627\u0646","type":"STREET","district_id":573},{"title":"\u0634\u0627\u0647\u06cc\u0646 \u0648\u06cc\u0644\u0627","type":"STREET","district_id":573},{"title":"\u0634\u0647\u0631\u06a9 \u0628\u0647\u0627\u0631\u0633\u062a\u0627\u0646","type":"STREET","district_id":573},{"title":"\u0646\u06cc\u0627\u06cc\u0634","type":"STREET","district_id":573},{"title":"\u06a9\u0648\u062b\u0631 \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":573},{"title":"\u06af\u0648\u0647\u0631\u062f\u0634\u062a","type":"STREET","district_id":573},{"title":"\u0641\u0631\u0648\u063a\u06cc","type":"STREET","district_id":1105},{"title":"\u0628\u0647\u0627\u0631","type":"STREET","district_id":1105},{"title":"\u0637\u0627\u0644\u0642\u0627\u0646\u06cc","type":"STREET","district_id":1105},{"title":"\u0622\u0632\u0627\u062f\u06af\u0627\u0646","type":"STREET","district_id":1105},{"title":"\u0634\u0627\u0647\u062f","type":"STREET","district_id":1105},{"title":"\u0641\u0631\u0648\u063a\u06cc","type":"STREET","district_id":1104},{"title":"\u0637\u0627\u0644\u0642\u0627\u0646\u06cc","type":"STREET","district_id":1104},{"title":"\u0628\u0631\u063a\u0627\u0646","type":"STREET","district_id":1104},{"title":"\u0628\u0647\u0627\u0631\u0627\u0646","type":"STREET","district_id":1104},{"title":"\u062d\u0627\u0641\u0638","type":"STREET","district_id":1104},{"title":"\u06af\u0644\u062f\u0634\u062a","type":"STREET","district_id":1091},{"title":"\u0628\u0647\u0627\u0631","type":"STREET","district_id":1091},{"title":"\u062d\u0635\u0627\u0631\u06a9","type":"STREET","district_id":1091},{"title":"\u0645\u0637\u0647\u0631\u06cc","type":"STREET","district_id":572},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0645\u0648\u0644\u0627\u0646\u0627","type":"STREET","district_id":572},{"title":"\u06a9\u0633\u0631\u06cc","type":"STREET","district_id":572},{"title":"\u0628\u0647\u0627\u0631\u0633\u062a\u0627\u0646","type":"STREET","district_id":572},{"title":"\u0627\u062a\u062d\u0627\u062f","type":"STREET","district_id":572},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0645\u0627\u0647\u0627\u0646","type":"STREET","district_id":572},{"title":"\u06a9\u0648\u06cc \u06a9\u0627\u0631\u0645\u0646\u062f\u0627\u0646 \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":572},{"title":"\u0645\u06cc\u062f\u0627\u0646 \u06af\u0644\u0647\u0627","type":"STREET","district_id":572},{"title":"\u0637\u0627\u0644\u0642\u0627\u0646\u06cc","type":"STREET","district_id":1083},{"title":"\u0647\u0641\u062a \u062a\u06cc\u0631","type":"STREET","district_id":1083},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0627\u0631\u0645","type":"STREET","district_id":1044},{"title":"\u0641\u0631\u0647\u0646\u06af","type":"STREET","district_id":1044},{"title":"\u0634\u0628\u0646\u0645","type":"STREET","district_id":1044},{"title":"\u0627\u0641\u0634\u0627\u0631","type":"STREET","district_id":1044},{"title":"\u0639\u062f\u0627\u0644\u062a","type":"STREET","district_id":1044},{"title":"\u0627\u06cc\u0631\u0627\u0646 \u0632\u0645\u06cc\u0646","type":"STREET","district_id":579},{"title":"\u0627\u0644\u0645\u0647\u062f\u06cc","type":"STREET","district_id":579},{"title":"\u0634\u0647\u0631\u06a9 \u0631\u0627\u0632\u06cc","type":"STREET","district_id":579},{"title":"\u067e\u06cc\u0634\u0627\u0647\u0646\u06af\u06cc","type":"STREET","district_id":579},{"title":"\u0628\u0631\u0632\u0646\u062a","type":"STREET","district_id":579},{"title":"\u06af\u0644\u0634\u0647\u0631","type":"STREET","district_id":579},{"title":"\u0627\u0646\u0642\u0644\u0627\u0628","type":"STREET","district_id":579},{"title":"\u0644\u0627\u0644\u0647","type":"STREET","district_id":579},{"title":"\u0639\u062f\u0644","type":"STREET","district_id":1070},{"title":"\u0628\u0646\u06cc \u0646\u062c\u0627\u0631","type":"STREET","district_id":1070},{"title":"\u0634\u0627\u0647\u06cc\u0646 \u0648\u06cc\u0644\u0627","type":"STREET","district_id":1070},{"title":"\u0641\u0631\u0634\u06cc\u062f \u0641\u0631","type":"STREET","district_id":1070},{"title":"\u0642\u0631\u0646\u06cc","type":"STREET","district_id":1070},{"title":"\u0639\u0644\u0627\u0645\u0647 \u0645\u062c\u0644\u0633\u06cc","type":"STREET","district_id":1070},{"title":"\u0641\u0627\u0636\u0644\u06cc","type":"STREET","district_id":1070},{"title":"\u0686\u0645\u0631\u0627\u0646","type":"STREET","district_id":1070},{"title":"\u0645\u06cc\u062b\u0645 \u06f1","type":"STREET","district_id":588},{"title":"\u067e\u06cc\u0634\u0627\u0647\u0646\u06af\u06cc","type":"STREET","district_id":588},{"title":"\u0628\u0647\u0627\u0631","type":"STREET","district_id":588},{"title":"\u06a9\u0645\u0627\u0644\u06cc","type":"STREET","district_id":588},{"title":"\u0645\u0647\u0631\u0648\u06cc\u0644\u0627","type":"STREET","district_id":598},{"title":"\u0648\u0644\u06cc\u0639\u0635\u0631","type":"STREET","district_id":598},{"title":"\u0631\u0648\u062f\u06a9\u06cc \u063a\u0631\u0628\u06cc","type":"STREET","district_id":598},{"title":"\u0628\u0632\u0631\u06af\u0645\u0647\u0631 \u0634\u0631\u0642\u06cc","type":"STREET","district_id":598},{"title":"\u0627\u0646\u0648\u0634\u06cc\u0631\u0648\u0627\u0646 \u0634\u0631\u0642\u06cc","type":"STREET","district_id":598},{"title":"\u062e\u06cc\u0627\u0645 \u0634\u0631\u0642\u06cc","type":"STREET","district_id":598},{"title":"\u0627\u0628\u0648\u0633\u0639\u06cc\u062f","type":"STREET","district_id":1080},{"title":"\u06cc\u0627\u0633\u0631","type":"STREET","district_id":591},{"title":"\u06a9\u0631\u062c \u0646\u0648","type":"STREET","district_id":591},{"title":"\u0642\u0627\u0635\u062f\u06cc","type":"STREET","district_id":591},{"title":"\u0627\u0646\u0642\u0644\u0627\u0628","type":"STREET","district_id":591},{"title":"\u0627\u0628\u0648\u0630\u0631","type":"STREET","district_id":591},{"title":"\u0645\u06cc\u0646\u0627","type":"STREET","district_id":591},{"title":"\u0686\u0645\u0631\u0627\u0646","type":"STREET","district_id":597},{"title":"\u0642\u0644\u0645\u0633\u062a\u0627\u0646","type":"STREET","district_id":597},{"title":"\u0645\u0635\u0628\u0627\u062d","type":"STREET","district_id":597},{"title":"\u0641\u0631\u062f\u0648\u0633\u06cc","type":"STREET","district_id":597},{"title":"\u0627\u0633\u062a\u0642\u0644\u0627\u0644","type":"STREET","district_id":597},{"title":"\u06a9\u06cc\u0627\u0646\u0645\u0647\u0631","type":"STREET","district_id":1111},{"title":"\u0645\u0639\u0631\u0627\u062c","type":"STREET","district_id":1111},{"title":"\u062e\u062f\u0627\u06a9\u0631\u0645","type":"STREET","district_id":1111},{"title":"\u0632\u0646\u0628\u0642","type":"STREET","district_id":1111},{"title":"\u0645\u0631\u0648\u0627\u0631\u06cc\u062f","type":"STREET","district_id":1111},{"title":"\u0627\u06cc\u062b\u0627\u0631","type":"STREET","district_id":1111},{"title":"\u06a9\u0648\u06cc \u0645\u0647\u0631","type":"STREET","district_id":1111},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0622\u0632\u0627\u062f\u06cc","type":"STREET","district_id":1111},{"title":"\u0634\u0647\u0631\u06a9 \u06cc\u0627\u0633","type":"STREET","district_id":570},{"title":"\u0628\u0627\u063a\u0633\u062a\u0627\u0646","type":"STREET","district_id":570},{"title":"\u062d\u06cc\u062f\u0631\u0622\u0628\u0627\u062f","type":"STREET","district_id":570},{"title":"\u062e\u06cc\u0627\u0628\u0627\u0646 \u0642\u0644\u0645","type":"STREET","district_id":570},{"title":"\u0628\u0647\u0627\u0631\u0627\u0646","type":"STREET","district_id":570},{"title":"\u0645\u062f\u0631\u0633 \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":570},{"title":"\u0634\u0647\u0631\u06a9 \u06af\u0644\u0647\u0627","type":"STREET","district_id":570},{"title":"\u06af\u0648\u0647\u0631","type":"STREET","district_id":570},{"title":"\u0635\u062f\u0641","type":"STREET","district_id":576},{"title":"\u0645\u0631\u06cc\u0645","type":"STREET","district_id":576},{"title":"\u0637\u0627\u0644\u0642\u0627\u0646\u06cc","type":"STREET","district_id":576},{"title":"\u06af\u0644\u0633\u062a\u0627\u0646","type":"STREET","district_id":576},{"title":"\u0641\u0631\u062f\u06cc\u0633","type":"STREET","district_id":576},{"title":"\u0638\u0641\u0631","type":"STREET","district_id":576},{"title":"\u0645\u0644\u0627\u0631\u062f","type":"STREET","district_id":576},{"title":"\u0632\u06cc\u062a\u0648\u0646","type":"STREET","district_id":576},{"title":"\u0647\u0633\u0627","type":"STREET","district_id":575},{"title":"\u0627\u0631\u0645","type":"STREET","district_id":575},{"title":"\u0639\u0631\u0634\u06cc\u0627","type":"STREET","district_id":575},{"title":"\u0646\u06cc\u06a9\u0627\u0646","type":"STREET","district_id":575},{"title":"\u0633\u0631\u0632\u0645\u06cc\u0646","type":"STREET","district_id":575},{"title":"\u0645\u0627\u0647\u0627\u0646","type":"STREET","district_id":575},{"title":"\u0627\u0633\u06a9\u0627\u0646","type":"STREET","district_id":575},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0627\u0645\u0627\u0645 \u0631\u0636\u0627","type":"STREET","district_id":575},{"title":"\u067e\u06cc\u0631\u0648\u0632\u06cc","type":"STREET","district_id":1072},{"title":"\u06af\u0648\u0647\u0631\u062f\u0634\u062a","type":"STREET","district_id":1072},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0645\u0648\u0630\u0646","type":"STREET","district_id":1072},{"title":"\u062a\u062e\u062a \u062c\u0645\u0634\u06cc\u062f","type":"STREET","district_id":1040},{"title":"\u067e\u0627\u0631\u0633\u0647","type":"STREET","district_id":1040},{"title":"\u0645\u0627\u0631\u06af\u0648\u0646","type":"STREET","district_id":1040},{"title":"\u0627\u0631\u063a\u0648\u0627\u0646","type":"STREET","district_id":1040},{"title":"\u06a9\u0648\u0647\u067e\u0627\u06cc\u0647","type":"STREET","district_id":1089},{"title":"\u0628\u0648\u0639\u0644\u06cc","type":"STREET","district_id":1089},{"title":"\u06a9\u0648\u0647\u067e\u0627\u06cc\u0647","type":"STREET","district_id":596},{"title":"\u0645\u0647\u0633\u062a\u0627\u0646","type":"STREET","district_id":596},{"title":"\u0634\u0647\u0631\u06a9 \u0627\u0645\u0627\u0645 \u0631\u0636\u0627","type":"STREET","district_id":596},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0646\u0628\u0648\u062a","type":"STREET","district_id":596},{"title":"\u0639\u0645\u0627\u0631","type":"STREET","district_id":596},{"title":"\u0627\u06cc\u062b\u0627\u0631","type":"STREET","district_id":590},{"title":"\u0648\u062d\u062f\u062a","type":"STREET","district_id":590},{"title":"\u0628\u0647\u0627\u0631\u0633\u062a\u0627\u0646","type":"STREET","district_id":590},{"title":"\u0634\u0642\u0627\u06cc\u0642","type":"STREET","district_id":590},{"title":"\u0632\u0646\u0628\u0642","type":"STREET","district_id":590},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0627\u0633\u062a\u0642\u0644\u0627\u0644","type":"STREET","district_id":590},{"title":"\u0644\u0627\u0644\u0647","type":"STREET","district_id":590},{"title":"\u0633\u0631\u062d\u062f \u0622\u0628\u0627\u062f","type":"STREET","district_id":590},{"title":"\u067e\u06cc\u0631\u0648\u0632\u06cc \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":1073},{"title":"\u0628\u0627\u063a\u0633\u062a\u0627\u0646","type":"STREET","district_id":1073},{"title":"\u062c\u0647\u0627\u0646 \u0646\u0645\u0627","type":"STREET","district_id":1094},{"title":"\u06a9\u0644\u0627\u06a9 \u0646\u0648","type":"STREET","district_id":1094},{"title":"\u0627\u0644\u0645\u0647\u062f\u06cc","type":"STREET","district_id":1094},{"title":"\u06af\u0631\u0645\u062f\u0631\u0647","type":"TOWN","district_id":1094},{"title":"\u062d\u0635\u0627\u0631\u06a9","type":"STREET","district_id":1052},{"title":"\u0647\u0641\u062a \u062a\u06cc\u0631","type":"STREET","district_id":1084},{"title":"\u0645\u0635\u0628\u0627\u062d","type":"STREET","district_id":1084},{"title":"\u0634\u0647\u0631\u06a9 \u06cc\u0627\u0633","type":"STREET","district_id":1059},{"title":"\u0645\u0646\u0638\u0631\u06cc\u0647","type":"STREET","district_id":594},{"title":"\u06cc\u0627\u0633","type":"STREET","district_id":594},{"title":"\u06af\u0631\u0645\u062f\u0631\u0647","type":"TOWN","district_id":594},{"title":"\u0634\u0647\u0631\u06a9 \u06af\u0644\u0647\u0627","type":"STREET","district_id":1057},{"title":"\u06a9\u0648\u062b\u0631","type":"STREET","district_id":1057},{"title":"\u06af\u0644\u0633\u0627\u0631","type":"STREET","district_id":1057},{"title":"\u0628\u0647\u0627\u0631","type":"STREET","district_id":586},{"title":"\u0633\u0631\u0648","type":"STREET","district_id":586},{"title":"\u0633\u0627\u062c\u062f\u06cc","type":"STREET","district_id":586},{"title":"\u0628\u0647\u0627\u0631\u0627\u0646","type":"STREET","district_id":586},{"title":"\u0628\u0647\u062a\u0648\u06cc\u06cc","type":"STREET","district_id":569},{"title":"\u0632\u0646\u0628\u0642","type":"STREET","district_id":569},{"title":"\u0645\u06cc\u062f\u0627\u0646 \u0627\u0633\u0628\u06cc","type":"STREET","district_id":569},{"title":"\u0628\u0639\u062b\u062a","type":"STREET","district_id":569},{"title":"\u0645\u0647\u0631\u06af\u0627\u0646","type":"STREET","district_id":569},{"title":"\u0627\u0644\u0647\u0627\u0645","type":"STREET","district_id":569},{"title":"\u0645\u0637\u0647\u0631\u06cc","type":"STREET","district_id":569},{"title":"\u0637\u0627\u0644\u0642\u0627\u0646\u06cc","type":"STREET","district_id":569},{"title":"\u0642\u0631\u06cc\u0634\u06cc","type":"STREET","district_id":565},{"title":"\u067e\u06cc\u06a9","type":"STREET","district_id":565},{"title":"\u0637\u0627\u0644\u0642\u0627\u0646\u06cc","type":"STREET","district_id":565},{"title":"\u0645\u0646\u0638\u0631\u06cc\u0647","type":"STREET","district_id":565},{"title":"\u0628\u0644\u0648\u0627\u0631 \u06a9\u0646\u06af\u0631\u0627\u0646\u06cc","type":"STREET","district_id":565},{"title":"\u06af\u0644\u0633\u062a\u0627\u0646","type":"STREET","district_id":565},{"title":"\u06a9\u0627\u0646\u0627\u0644 \u063a\u0631\u0628\u06cc","type":"STREET","district_id":565},{"title":"\u062d\u0627\u0641\u0638\u06cc\u0647","type":"STREET","district_id":565},{"title":"\u06af\u0644\u0634\u0647\u0631","type":"STREET","district_id":1067},{"title":"\u0627\u0628\u0648\u0630\u0631","type":"STREET","district_id":1067},{"title":"\u062a\u0631\u0627\u0628\u06cc","type":"STREET","district_id":1067},{"title":"\u062c\u0646\u06cc\u062f\u06cc","type":"STREET","district_id":1067},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0645\u062d\u0645\u062f\u06cc","type":"STREET","district_id":1067},{"title":"\u06af\u0644\u0627\u06cc\u0644","type":"STREET","district_id":1067},{"title":"\u062f\u0647\u0642\u0627\u0646 \u0648\u06cc\u0644\u0627","type":"STREET","district_id":1067},{"title":"\u067e\u06cc\u0634\u0627\u0647\u0646\u06af\u06cc","type":"STREET","district_id":581},{"title":"\u0628\u0627\u063a \u0632\u0645\u0627\u0646\u06cc","type":"STREET","district_id":581},{"title":"\u0628\u0648\u0633\u062a\u0627\u0646","type":"STREET","district_id":581},{"title":"\u0631\u0636\u0648\u0627\u0646\u06cc\u0647","type":"STREET","district_id":581},{"title":"\u06af\u0644\u062f\u0634\u062a","type":"STREET","district_id":581},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0634\u0647\u0631\u062f\u0627\u0631\u06cc","type":"STREET","district_id":581},{"title":"\u067e\u0627\u0633\u0627\u0631\u06af\u0627\u062f","type":"STREET","district_id":581},{"title":"\u06af\u0648\u0647\u0631\u062f\u0634\u062a","type":"STREET","district_id":1071},{"title":"\u0645\u062d\u0645\u062f\u0634\u0647\u0631","type":"STREET","district_id":1055},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0627\u0631\u0645","type":"STREET","district_id":1038},{"title":"\u0645\u06cc\u0639\u0627\u062f","type":"STREET","district_id":1038},{"title":"\u0633\u0627\u0645\u0627\u0646\u062f\u0647\u06cc","type":"STREET","district_id":1038},{"title":"\u06a9\u06cc\u0627\u0646\u0645\u0647\u0631","type":"STREET","district_id":1038},{"title":"\u0645\u06cc\u062e\u06a9","type":"STREET","district_id":1038},{"title":"\u062d\u0633\u06cc\u0646 \u0622\u0628\u0627\u062f","type":"STREET","district_id":1046},{"title":"\u0634\u0647\u0631\u06a9 \u0627\u0645\u0627\u0645 \u0631\u0636\u0627","type":"STREET","district_id":1088},{"title":"\u0628\u0644\u0648\u0627\u0631 \u062a\u0639\u0627\u0648\u0646","type":"STREET","district_id":1088},{"title":"\u0628\u0644\u0627\u0644","type":"STREET","district_id":1069},{"title":"\u062f\u0647\u0642\u0627\u0646 \u0648\u06cc\u0644\u0627","type":"STREET","district_id":1076},{"title":"\u0645\u0637\u0647\u0631\u06cc","type":"STREET","district_id":1086},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0627\u0645\u0627\u0645 \u0631\u0636\u0627","type":"STREET","district_id":1086},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0627\u0631\u0645","type":"STREET","district_id":1039},{"title":"\u0632\u0646\u0628\u0642","type":"STREET","district_id":1039},{"title":"\u0633\u0627\u0645\u0627\u0646\u062f\u0647\u06cc","type":"STREET","district_id":1039},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0622\u0632\u0627\u062f\u06cc","type":"STREET","district_id":1039},{"title":"\u06f1\u06f2 \u062f\u0633\u062a\u06af\u0627\u0647","type":"STREET","district_id":1039},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0634\u0647\u0631\u062f\u0627\u0631\u06cc","type":"STREET","district_id":1039},{"title":"\u0633\u0627\u0645\u0627\u0646\u062f\u0647\u06cc","type":"STREET","district_id":582},{"title":"\u062e\u062f\u0627\u06a9\u0631\u0645","type":"STREET","district_id":582},{"title":"\u0645\u0639\u0631\u0627\u062c","type":"STREET","district_id":582},{"title":"\u0632\u0646\u0628\u0642","type":"STREET","district_id":582},{"title":"\u0628\u0633\u06cc\u062c","type":"STREET","district_id":582},{"title":"\u0627\u0631\u063a\u0648\u0627\u0646","type":"STREET","district_id":582},{"title":"\u0645\u0647\u0631\u06af\u0627\u0646","type":"STREET","district_id":582},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0627\u0645\u0627\u0645 \u0631\u0636\u0627","type":"STREET","district_id":582},{"title":"\u067e\u06cc\u0634\u0627\u0647\u0646\u06af\u06cc","type":"STREET","district_id":1092},{"title":"\u06af\u0644\u0633\u062a\u0627\u0646\u06a9","type":"STREET","district_id":1054},{"title":"\u062a\u0627\u062c\u062f\u0627\u0631\u06cc","type":"STREET","district_id":568},{"title":"\u06a9\u0648\u06a9\u0628 \u063a\u0631\u0628\u06cc","type":"STREET","district_id":568},{"title":"\u0627\u0631\u063a\u0648\u0627\u0646 \u0634\u0631\u0642\u06cc","type":"STREET","district_id":568},{"title":"\u0627\u0628\u0648\u0630\u0631","type":"STREET","district_id":568},{"title":"\u0628\u0647\u0627\u0631\u0627\u0646","type":"STREET","district_id":568},{"title":"\u06a9\u0631\u062c \u0646\u0648","type":"STREET","district_id":568},{"title":"\u0627\u062e\u062a\u0631 \u0634\u0631\u0642\u06cc","type":"STREET","district_id":568},{"title":"\u06a9\u062a\u0648\u0626\u06cc \u0632\u0627\u062f\u0647","type":"STREET","district_id":568},{"title":"\u0645\u0647\u0631\u0648\u06cc\u0644\u0627","type":"STREET","district_id":1077},{"title":"\u0631\u0648\u062f\u06a9\u06cc \u063a\u0631\u0628\u06cc","type":"STREET","district_id":1077},{"title":"\u0627\u0631\u063a\u0648\u0627\u0646 \u0634\u0631\u0642\u06cc","type":"STREET","district_id":1077},{"title":"\u06a9\u0648\u06a9\u0628 \u063a\u0631\u0628\u06cc","type":"STREET","district_id":1077},{"title":"\u062d\u0627\u0641\u0638","type":"STREET","district_id":1077},{"title":"\u06a9\u0631\u062c \u0646\u0648","type":"STREET","district_id":1077},{"title":"\u062f\u0631\u062e\u062a\u06cc","type":"STREET","district_id":1077},{"title":"\u0627\u0628\u0646 \u0633\u06cc\u0646\u0627","type":"STREET","district_id":1077},{"title":"\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc","type":"STREET","district_id":566},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0627\u0646\u0642\u0644\u0627\u0628","type":"STREET","district_id":566},{"title":"\u067e\u06cc\u0631\u0648\u0632\u06cc \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":566},{"title":"\u0627\u062a\u062d\u0627\u062f","type":"STREET","district_id":566},{"title":"\u0628\u0627\u063a\u0633\u062a\u0627\u0646","type":"STREET","district_id":566},{"title":"\u0645\u0637\u0647\u0631\u06cc","type":"STREET","district_id":566},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0645\u0648\u0630\u0646","type":"STREET","district_id":566},{"title":"\u0634\u0647\u0631\u062f\u0627\u0631\u06cc","type":"STREET","district_id":566},{"title":"\u067e\u0631\u0646\u06cc\u0627\u0646","type":"STREET","district_id":577},{"title":"\u0645\u0644\u0627\u0631\u062f","type":"STREET","district_id":577},{"title":"\u0627\u0631\u063a\u0648\u0627\u0646","type":"STREET","district_id":577},{"title":"\u0645\u0631\u06cc\u0645","type":"STREET","district_id":577},{"title":"\u0628\u0647\u0627\u0631\u0647 \u0634\u0631\u0642\u06cc","type":"STREET","district_id":577},{"title":"\u0645\u06cc\u0646\u0627","type":"STREET","district_id":577},{"title":"\u0627\u0637\u0644\u0633 \u063a\u0631\u0628\u06cc","type":"STREET","district_id":577},{"title":"\u062f\u06a9\u062a\u0631 \u062d\u0633\u0627\u0628\u06cc","type":"STREET","district_id":577},{"title":"\u0627\u0641\u0631\u0627","type":"STREET","district_id":583},{"title":"\u0645\u0647\u0631","type":"STREET","district_id":583},{"title":"\u0645\u0637\u0647\u0631\u06cc","type":"STREET","district_id":583},{"title":"\u0627\u0644\u0632\u0647\u0631\u0627","type":"STREET","district_id":583},{"title":"\u0627\u0646\u062f\u06cc\u0634\u0647","type":"STREET","district_id":578},{"title":"\u0641\u0631\u062f\u0648\u0633\u06cc","type":"STREET","district_id":578},{"title":"\u062d\u0627\u0641\u0638","type":"STREET","district_id":578},{"title":"\u06af\u0644\u0633\u062a\u0627\u0646\u06a9","type":"STREET","district_id":578},{"title":"\u0627\u062a\u062d\u0627\u062f","type":"STREET","district_id":578},{"title":"\u0644\u0627\u0644\u0647","type":"STREET","district_id":578},{"title":"\u0628\u0644\u0648\u0627\u0631 \u062f\u0634\u062a \u0628\u0647\u0634\u062a","type":"STREET","district_id":578},{"title":"\u0628\u062e\u062a\u06cc\u0627\u0631\u06cc","type":"STREET","district_id":578},{"title":"\u0645\u062d\u0645\u0648\u062f\u0622\u0628\u0627\u062f","type":"STREET","district_id":1074},{"title":"\u0641\u0631\u062f\u06cc\u0633","type":"STREET","district_id":593},{"title":"\u0628\u0646\u0641\u0634\u0647","type":"STREET","district_id":593},{"title":"\u0641\u0631\u062f\u0648\u0633\u06cc","type":"STREET","district_id":580},{"title":"\u0633\u0627\u0633\u0627\u0646\u06cc","type":"STREET","district_id":580},{"title":"\u0646\u062c\u0627\u0631\u06cc","type":"STREET","district_id":580},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0627\u0645\u0627\u0645\u0632\u0627\u062f\u0647 \u062d\u0633\u0646","type":"STREET","district_id":580},{"title":"\u0645\u0627\u0631\u0644\u06cc\u06a9","type":"STREET","district_id":592},{"title":"\u0644\u0627\u0644\u0647","type":"STREET","district_id":592},{"title":"\u0628\u0647\u0627\u0631\u0647 \u0634\u0631\u0642\u06cc","type":"STREET","district_id":592},{"title":"\u06a9\u0627\u0634\u0627\u0646\u06cc","type":"STREET","district_id":592},{"title":"\u0627\u0637\u0644\u0633 \u0634\u0631\u0642\u06cc","type":"STREET","district_id":592},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0631\u0627\u063a\u0628","type":"STREET","district_id":592},{"title":"\u0635\u062f\u0648\u0642\u06cc","type":"STREET","district_id":592},{"title":"\u062d\u0627\u0641\u0638","type":"STREET","district_id":592},{"title":"\u067e\u06cc\u06a9","type":"STREET","district_id":587},{"title":"\u0641\u0631\u06cc\u0628\u0627","type":"STREET","district_id":587},{"title":"\u0641\u0631\u062f\u06cc\u0633","type":"STREET","district_id":587},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0627\u0631\u0645","type":"STREET","district_id":587},{"title":"\u0646\u0633\u06cc\u0645","type":"STREET","district_id":587},{"title":"\u062e\u06cc\u0627\u0628\u0627\u0646 \u0627\u0647\u0631\u06cc","type":"STREET","district_id":587},{"title":"\u062c\u0627\u062f\u0647 \u0645\u0644\u0627\u0631\u062f","type":"STREET","district_id":587},{"title":"\u06af\u0644\u0633\u062a\u0627\u0646","type":"STREET","district_id":587},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0627\u0631\u0645","type":"STREET","district_id":1114},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0634\u0647\u0631\u062f\u0627\u0631\u06cc","type":"STREET","district_id":1114},{"title":"\u0628\u0644\u0648\u0627\u0631 \u062f\u0627\u0646\u0634","type":"STREET","district_id":1114},{"title":"\u0634\u0628\u0646\u0645","type":"STREET","district_id":1114},{"title":"\u0628\u0646\u0641\u0634\u0647","type":"STREET","district_id":1114},{"title":"\u0627\u0641\u0634\u0627\u0631","type":"STREET","district_id":1114},{"title":"\u0646\u0633\u062a\u0631\u0646","type":"STREET","district_id":1114},{"title":"\u062d\u0633\u06cc\u0646 \u0622\u0628\u0627\u062f","type":"STREET","district_id":1114},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0634\u0647\u0631\u062f\u0627\u0631\u06cc","type":"STREET","district_id":1112},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0627\u0631\u0645","type":"STREET","district_id":1112},{"title":"\u067e\u0646\u062c\u0645 \u0634\u0631\u0642\u06cc","type":"STREET","district_id":1112},{"title":"\u0645\u06cc\u0644\u0627\u062f","type":"STREET","district_id":1113},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0634\u0647\u0631\u062f\u0627\u0631\u06cc","type":"STREET","district_id":1113},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0627\u0631\u0645","type":"STREET","district_id":1113},{"title":"\u0628\u0648\u0633\u062a\u0627\u0646","type":"STREET","district_id":1113},{"title":"\u06af\u0644\u0633\u062a\u0627\u0646","type":"STREET","district_id":1113},{"title":"\u06a9\u0648\u06cc \u0645\u0647\u0631","type":"STREET","district_id":1113},{"title":"\u06af\u0644\u0633\u062a\u0627\u0646","type":"STREET","district_id":567},{"title":"\u0633\u0644\u0645\u0627\u0646 \u0641\u0627\u0631\u0633\u06cc","type":"STREET","district_id":567},{"title":"\u062d\u0633\u06cc\u0646 \u0622\u0628\u0627\u062f","type":"STREET","district_id":567},{"title":"\u0644\u0627\u062f\u0646","type":"STREET","district_id":567},{"title":"\u0645\u0647\u0631\u0648\u06cc\u0644\u0627","type":"STREET","district_id":567},{"title":"\u06af\u0644\u0647\u0627","type":"STREET","district_id":567},{"title":"\u0633\u0644\u0645\u0627\u0646 \u0641\u0627\u0631\u0633\u06cc","type":"STREET","district_id":1097},{"title":"\u0631\u0648\u062f\u06a9\u06cc \u063a\u0631\u0628\u06cc","type":"STREET","district_id":571},{"title":"\u0627\u0646\u0648\u0634\u06cc\u0631\u0648\u0627\u0646 \u063a\u0631\u0628\u06cc","type":"STREET","district_id":571},{"title":"\u0633\u0647\u0631\u0648\u0631\u062f\u06cc","type":"STREET","district_id":571},{"title":"\u06af\u0644\u0634\u0647\u0631","type":"STREET","district_id":571},{"title":"\u062f\u0631\u062e\u062a\u06cc","type":"STREET","district_id":571},{"title":"\u0628\u0632\u0631\u06af\u0645\u0647\u0631 \u0634\u0631\u0642\u06cc","type":"STREET","district_id":571},{"title":"\u062d\u0627\u0641\u0638","type":"STREET","district_id":571},{"title":"\u0627\u0631\u063a\u0648\u0627\u0646 \u0634\u0631\u0642\u06cc","type":"STREET","district_id":571},{"title":"\u0645\u0647\u0631","type":"STREET","district_id":574},{"title":"\u0633\u0644\u0645\u0627\u0646 \u0641\u0627\u0631\u0633\u06cc","type":"STREET","district_id":574},{"title":"\u0622\u0632\u0627\u062f\u06af\u0627\u0646","type":"STREET","district_id":574},{"title":"\u0645\u0635\u0644\u06cc","type":"STREET","district_id":574},{"title":"\u0633\u0631\u062e\u0627\u0628","type":"TOWN","district_id":574},{"title":"\u0637\u0627\u0644\u0642\u0627\u0646\u06cc \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":585},{"title":"\u0686\u0647\u0627\u0631\u0635\u062f \u062f\u0633\u062a\u06af\u0627\u0647","type":"STREET","district_id":585},{"title":"\u0628\u0644\u0627\u0644","type":"STREET","district_id":585},{"title":"\u0644\u0627\u0644\u0647","type":"STREET","district_id":585},{"title":"\u0628\u0644\u0648\u0627\u0631 \u062f\u0627\u0646\u0634 \u0622\u0645\u0648\u0632","type":"STREET","district_id":585},{"title":"\u0628\u0646\u06cc \u0641\u0627\u0637\u0645\u0647","type":"STREET","district_id":585},{"title":"\u0633\u06cc\u0627\u062d\u062a\u06af\u0631","type":"STREET","district_id":1359},{"title":"\u0633\u0631\u0628\u0627\u0632","type":"STREET","district_id":1359},{"title":"\u0627\u06cc\u062b\u0627\u0631\u06af\u0631\u0627\u0646","type":"STREET","district_id":1359},{"title":"\u0627\u0635\u0644\u0627\u062d \u0646\u0698\u0627\u062f","type":"STREET","district_id":1359},{"title":"\u0627\u0639\u062a\u0645\u0627\u062f\u06cc","type":"STREET","district_id":1359},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0627\u0645\u06cc\u0631\u06a9\u0628\u06cc\u0631","type":"STREET","district_id":1359},{"title":"\u0644\u0627\u0644\u0647","type":"STREET","district_id":1382},{"title":"\u0637\u0644\u0627\u0628","type":"STREET","district_id":1382},{"title":"\u0631\u06cc\u0627\u0633\u062a\u06cc","type":"STREET","district_id":1382},{"title":"\u0641\u06cc\u0636","type":"STREET","district_id":1382},{"title":"\u0633\u0631\u062f\u0627\u0631\u0627\u0646","type":"STREET","district_id":1382},{"title":"\u0641\u0636\u06cc\u0644\u062a","type":"STREET","district_id":1382},{"title":"\u067e\u0627\u06cc\u06cc\u0632\u0627\u0646","type":"STREET","district_id":1382},{"title":"\u0686\u0645\u0631\u0627\u0646","type":"STREET","district_id":1374},{"title":"\u0686\u0648\u06af\u06cc\u0627","type":"STREET","district_id":1374},{"title":"\u062f\u0627\u0646\u0634\u062c\u0648","type":"STREET","district_id":1374},{"title":"\u0641\u0631\u0647\u0646\u06af\u06cc\u0627\u0646","type":"STREET","district_id":1310},{"title":"\u0646\u0627\u0631\u0648\u0646","type":"STREET","district_id":522},{"title":"\u062e\u0627\u06a9\u0634\u0646\u0627\u0633\u06cc","type":"STREET","district_id":522},{"title":"\u062f\u0627\u0646\u0634\u06af\u0627\u0647","type":"STREET","district_id":522},{"title":"\u0646\u0634\u0627\u0637","type":"STREET","district_id":522},{"title":"\u0686\u0646\u0686\u0646\u0647","type":"STREET","district_id":522},{"title":"\u0641\u0631\u062f\u0648\u0633\u06cc","type":"STREET","district_id":522},{"title":"\u062f\u0627\u0646\u0634\u062c\u0648","type":"STREET","district_id":522},{"title":"\u0633\u0631\u0648\u0646\u0627\u0632","type":"STREET","district_id":522},{"title":"\u0633\u06cc\u0627\u062d\u062a\u06af\u0631","type":"STREET","district_id":1360},{"title":"\u0644\u0627\u0644\u0647","type":"STREET","district_id":1360},{"title":"\u0642\u062f\u0645\u06af\u0627\u0647","type":"STREET","district_id":1360},{"title":"\u0622\u0628\u06cc\u0627\u0631\u06cc","type":"STREET","district_id":1360},{"title":"\u0627\u06cc\u062b\u0627\u0631\u06af\u0631\u0627\u0646","type":"STREET","district_id":1360},{"title":"\u0634\u0645\u0633 \u062a\u0628\u0631\u06cc\u0632\u06cc","type":"STREET","district_id":1360},{"title":"\u0627\u0639\u062a\u0645\u0627\u062f\u06cc","type":"STREET","district_id":1360},{"title":"\u0647\u062c\u0631\u062a","type":"STREET","district_id":509},{"title":"\u062c\u0627\u0648\u06cc\u062f","type":"STREET","district_id":509},{"title":"\u0633\u0645\u06cc\u0647","type":"STREET","district_id":509},{"title":"\u0633\u0645\u06cc\u0647","type":"STREET","district_id":1253},{"title":"\u0627\u0628\u0631\u06cc\u0634\u0645\u06cc","type":"STREET","district_id":1253},{"title":"\u0622\u0633\u062a\u0627\u0646\u0647","type":"STREET","district_id":1364},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0641\u0631\u0635\u062a \u0634\u06cc\u0631\u0627\u0632\u06cc","type":"STREET","district_id":1388},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0645\u062f\u0631\u0633","type":"STREET","district_id":1388},{"title":"\u0645\u06cc\u0646\u0648","type":"STREET","district_id":1388},{"title":"\u0645\u0637\u0647\u0631","type":"STREET","district_id":1388},{"title":"\u0633\u0631\u0628\u0627\u0632","type":"STREET","district_id":555},{"title":"\u0634\u0628\u0627\u0646","type":"STREET","district_id":555},{"title":"\u062e\u0644\u062f\u0628\u0631\u06cc\u0646","type":"STREET","district_id":555},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0627\u0633\u062a\u0642\u0644\u0627\u0644","type":"STREET","district_id":555},{"title":"\u0627\u0628\u0631\u06cc\u0634\u0645\u06cc","type":"STREET","district_id":552},{"title":"\u0633\u0645\u06cc\u0647","type":"STREET","district_id":552},{"title":"\u0641\u0631\u062f\u0648\u0633\u06cc","type":"STREET","district_id":552},{"title":"\u0627\u0637\u0644\u0633\u06cc","type":"STREET","district_id":552},{"title":"\u062e\u0627\u06a9\u0634\u0646\u0627\u0633\u06cc","type":"STREET","district_id":552},{"title":"\u0632\u0646\u062f","type":"STREET","district_id":552},{"title":"\u0646\u0634\u0627\u0637","type":"STREET","district_id":552},{"title":"\u062c\u0647\u0627\u062f \u0633\u0627\u0632\u0646\u062f\u06af\u06cc","type":"STREET","district_id":552},{"title":"\u0644\u0634\u06a9\u0631\u06cc","type":"STREET","district_id":511},{"title":"\u0641\u0627\u0636\u0644","type":"STREET","district_id":1334},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0645\u062f\u0631\u0633","type":"STREET","district_id":1334},{"title":"\u0645\u0637\u0647\u0631","type":"STREET","district_id":1334},{"title":"\u0634\u0631\u06cc\u0641 \u0622\u0628\u0627\u062f","type":"STREET","district_id":1334},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0641\u0631\u0635\u062a \u0634\u06cc\u0631\u0627\u0632\u06cc","type":"STREET","district_id":1334},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0633\u0631\u062f\u0627\u0631\u0627\u0646","type":"STREET","district_id":1334},{"title":"\u0631\u0648\u0632\u06cc \u0637\u0644\u0628","type":"STREET","district_id":1334},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0628\u0647\u0634\u062a","type":"STREET","district_id":512},{"title":"\u06af\u0644\u062f\u0634\u062a \u0645\u062d\u0645\u062f\u06cc","type":"STREET","district_id":512},{"title":"\u0686\u0645\u0631\u0627\u0646","type":"STREET","district_id":512},{"title":"\u0634\u0647\u0627\u0645\u062a","type":"STREET","district_id":512},{"title":"\u0634\u0647\u0631\u06a9 \u0628\u0627\u0647\u0646\u0631","type":"STREET","district_id":512},{"title":"\u0645\u0639\u0627\u0644\u06cc \u0622\u0628\u0627\u062f","type":"STREET","district_id":512},{"title":"\u0627\u0628\u0631\u06cc\u0634\u0645\u06cc","type":"STREET","district_id":1254},{"title":"\u0644\u0627\u0644\u0647","type":"STREET","district_id":1361},{"title":"\u0635\u0646\u0639\u062a\u06af\u0631","type":"STREET","district_id":1411},{"title":"\u0627\u062e\u0644\u0627\u0642","type":"STREET","district_id":1411},{"title":"\u0628\u0644\u0648\u0627\u0631 \u067e\u0627\u0633\u0627\u0631\u06af\u0627\u062f","type":"STREET","district_id":1411},{"title":"\u0645\u06cc\u062f\u0627\u0646 \u067e\u0627\u0631\u0633\u0647","type":"STREET","district_id":1411},{"title":"\u0627\u0628\u0631\u06cc\u0634\u0645\u06cc","type":"STREET","district_id":551},{"title":"\u06a9\u0648\u0647\u0633\u0627\u0631","type":"STREET","district_id":551},{"title":"\u06a9\u0648\u0647\u0633\u062a\u0627\u0646","type":"STREET","district_id":551},{"title":"\u0646\u0627\u0631\u0648\u0646","type":"STREET","district_id":551},{"title":"\u0644\u0627\u0644\u0647","type":"STREET","district_id":1268},{"title":"\u062e\u0627\u06a9\u0634\u0646\u0627\u0633\u06cc","type":"STREET","district_id":1255},{"title":"\u0646\u0627\u0631\u0648\u0646","type":"STREET","district_id":1255},{"title":"\u0627\u0628\u0631\u06cc\u0634\u0645\u06cc","type":"STREET","district_id":1255},{"title":"\u0627\u0631\u0645","type":"STREET","district_id":1255},{"title":"\u0686\u0648\u06af\u06cc\u0627","type":"STREET","district_id":1375},{"title":"\u0641\u0631\u0632\u0627\u0646\u06af\u0627\u0646","type":"STREET","district_id":1375},{"title":"\u0628\u0644\u0648\u0627\u0631 \u06af\u0644\u0633\u062a\u0627\u0646","type":"STREET","district_id":1384},{"title":"\u0627\u0637\u0644\u0633\u06cc","type":"STREET","district_id":1384},{"title":"\u0628\u0647\u0634\u062a\u06cc","type":"STREET","district_id":544},{"title":"\u0645\u0634\u06cc\u0631 \u063a\u0631\u0628\u06cc","type":"STREET","district_id":544},{"title":"\u0642\u0635\u0631\u062f\u0634\u062a","type":"STREET","district_id":1391},{"title":"\u0639\u0641\u06cc\u0641 \u0622\u0628\u0627\u062f","type":"STREET","district_id":1391},{"title":"\u0633\u06cc\u0627\u062d\u062a\u06af\u0631","type":"STREET","district_id":1283},{"title":"\u0622\u0641\u062a\u0627\u0628","type":"STREET","district_id":1283},{"title":"\u0648\u0635\u0627\u0644","type":"STREET","district_id":1371},{"title":"\u0642\u0635\u0631\u062f\u0634\u062a","type":"STREET","district_id":1390},{"title":"\u0642\u0635\u0631\u0627\u0644\u062f\u0634\u062a","type":"STREET","district_id":1390},{"title":"\u0634\u0647\u06cc\u062f \u0631\u0636\u0627\u06cc\u06cc","type":"STREET","district_id":1307},{"title":"\u06a9\u0644\u0627\u0647\u062f\u0648\u0632","type":"STREET","district_id":1395},{"title":"\u0635\u0646\u0639\u062a\u06af\u0631","type":"STREET","district_id":1395},{"title":"\u0633\u0631\u0628\u0627\u0632","type":"STREET","district_id":1395},{"title":"\u0631\u0633\u0627\u0644\u062a","type":"STREET","district_id":1395},{"title":"\u0635\u0627\u062d\u0628 \u0627\u0644\u0627\u0645\u0631","type":"STREET","district_id":1395},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0627\u0645\u06cc\u0631\u06a9\u0628\u06cc\u0631","type":"STREET","district_id":1395},{"title":"\u0622\u0628\u06cc\u0627\u0631\u06cc","type":"STREET","district_id":1395},{"title":"\u0622\u0641\u062a\u0627\u0628","type":"STREET","district_id":1395},{"title":"\u0633\u062a\u0627\u0631\u062e\u0627\u0646","type":"STREET","district_id":533},{"title":"\u0628\u0644\u0648\u0627\u0631 \u067e\u0627\u0633\u062f\u0627\u0631\u0627\u0646","type":"STREET","district_id":1358},{"title":"\u0642\u062f\u0648\u0633\u06cc \u0634\u0631\u0642\u06cc","type":"STREET","district_id":1358},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0627\u0633\u062a\u0642\u0644\u0627\u0644","type":"STREET","district_id":1358},{"title":"\u0631\u06cc\u0634\u0645\u06a9","type":"STREET","district_id":1358},{"title":"\u0633\u062a\u0627\u0631\u062e\u0627\u0646","type":"STREET","district_id":1358},{"title":"\u0641\u0631\u062f\u0648\u0633\u06cc","type":"STREET","district_id":529},{"title":"\u0631\u0648\u062f\u06a9\u06cc","type":"STREET","district_id":529},{"title":"\u0646\u0634\u0627\u0637","type":"STREET","district_id":529},{"title":"\u0645\u06cc\u0627\u0646\u0631\u0648\u062f","type":"STREET","district_id":1342},{"title":"\u0648\u0644\u06cc\u0639\u0635\u0631","type":"STREET","district_id":523},{"title":"\u0628\u0639\u062b\u062a","type":"STREET","district_id":523},{"title":"\u0632\u0631\u06af\u0631\u06cc","type":"STREET","district_id":523},{"title":"\u062e\u0644\u062f\u0628\u0631\u06cc\u0646","type":"STREET","district_id":523},{"title":"\u0627\u0646\u0635\u0627\u0631","type":"STREET","district_id":523},{"title":"\u0642\u062f\u0648\u0633\u06cc \u0634\u0631\u0642\u06cc","type":"STREET","district_id":523},{"title":"\u0628\u0644\u0648\u0627\u0631 \u062f\u0648\u0644\u062a","type":"STREET","district_id":538},{"title":"\u0645\u0639\u0631\u0627\u062c","type":"STREET","district_id":538},{"title":"\u0634\u0647\u0631\u06a9 \u0633\u0639\u062f\u06cc","type":"STREET","district_id":1381},{"title":"\u0627\u0637\u0644\u0633\u06cc","type":"STREET","district_id":1251},{"title":"\u0648\u0635\u0627\u0644","type":"STREET","district_id":534},{"title":"\u0635\u0648\u0631\u062a\u06af\u0631","type":"STREET","district_id":534},{"title":"\u0645\u0634\u06cc\u0631 \u0641\u0627\u0637\u0645\u06cc","type":"STREET","district_id":534},{"title":"\u067e\u0648\u0633\u062a\u0686\u06cc","type":"STREET","district_id":534},{"title":"\u0632\u0646\u062f","type":"STREET","district_id":534},{"title":"\u0627\u0635\u0644\u0627\u062d \u0646\u0698\u0627\u062f","type":"STREET","district_id":534},{"title":"\u0632\u0627\u06af\u0631\u0633","type":"STREET","district_id":1282},{"title":"\u0633\u0631\u0627\u062c","type":"STREET","district_id":1282},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0635\u0644\u062d","type":"STREET","district_id":1282},{"title":"\u0627\u0645\u0627\u0645 \u062e\u0645\u06cc\u0646\u06cc","type":"STREET","district_id":1282},{"title":"\u0645\u06cc\u062f\u0627\u0646 \u067e\u0627\u0631\u0633\u0647","type":"STREET","district_id":1282},{"title":"\u0634\u0631\u06cc\u0641 \u0627\u0628\u0627\u062f","type":"STREET","district_id":1333},{"title":"\u0641\u0627\u0636\u0644","type":"STREET","district_id":1333},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0627\u062a\u062d\u0627\u062f","type":"STREET","district_id":1333},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0641\u0631\u0635\u062a \u0634\u06cc\u0631\u0627\u0632\u06cc","type":"STREET","district_id":1333},{"title":"\u06a9\u0648\u0647\u0633\u0627\u0631","type":"STREET","district_id":500},{"title":"\u06cc\u0627\u0633","type":"STREET","district_id":500},{"title":"\u0628\u0644\u0648\u0627\u0631 \u062f\u0627\u0646\u0634","type":"STREET","district_id":500},{"title":"\u0645\u0647\u0631","type":"STREET","district_id":500},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0627\u06cc\u0631\u0627\u0646","type":"STREET","district_id":500},{"title":"\u0639\u062f\u0627\u0644\u062a","type":"STREET","district_id":500},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0632\u0627\u06af\u0631\u0633","type":"STREET","district_id":500},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0645\u0648\u0644\u0627\u0646\u0627","type":"STREET","district_id":500},{"title":"\u0646\u0628\u06cc \u0627\u06a9\u0631\u0645","type":"STREET","district_id":550},{"title":"\u062f\u0633\u062a\u063a\u06cc\u0628","type":"STREET","district_id":550},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0635\u0644\u062d","type":"STREET","district_id":550},{"title":"\u0633\u0641\u06cc\u0631 \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":550},{"title":"\u0641\u062a\u062d \u0627\u0644\u0645\u0628\u06cc\u0646","type":"STREET","district_id":550},{"title":"\u0628\u0644\u0648\u0627\u0631 \u067e\u0627\u0633\u0627\u0631\u06af\u0627\u062f","type":"STREET","district_id":550},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0627\u0645\u06cc\u0631\u06a9\u0628\u06cc\u0631","type":"STREET","district_id":521},{"title":"\u0645\u0647\u062f\u06cc\u0647","type":"STREET","district_id":521},{"title":"\u0641\u0644\u0627\u062d\u06cc","type":"STREET","district_id":1257},{"title":"\u06a9\u0644\u0627\u0647\u062f\u0648\u0632","type":"STREET","district_id":1257},{"title":"\u0645\u0628\u0639\u062b","type":"STREET","district_id":1257},{"title":"\u0628\u0644\u0648\u0627\u0631 \u067e\u0627\u0633\u062f\u0627\u0631\u0627\u0646","type":"STREET","district_id":1257},{"title":"\u062c\u0648\u0627\u062f\u06cc\u0647","type":"STREET","district_id":1269},{"title":"\u0622\u0632\u0627\u062f\u06af\u0627\u0646","type":"STREET","district_id":542},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0633\u0631\u062f\u0627\u0631\u0627\u0646","type":"STREET","district_id":542},{"title":"\u06a9\u0644\u0627\u0646\u062a\u0631\u06cc","type":"STREET","district_id":542},{"title":"\u0641\u06cc\u062c\u0627\u0646\u06cc","type":"STREET","district_id":542},{"title":"\u0633\u0641\u06cc\u0631 \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":517},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0635\u0644\u062d","type":"STREET","district_id":517},{"title":"\u0627\u0645\u0627\u0645 \u062e\u0645\u06cc\u0646\u06cc","type":"STREET","district_id":517},{"title":"\u0628\u0644\u0648\u0627\u0631 \u067e\u0627\u0633\u0627\u0631\u06af\u0627\u062f","type":"STREET","district_id":517},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0632\u0627\u06af\u0631\u0633","type":"STREET","district_id":517},{"title":"\u067e\u0627\u0626\u06cc\u0632","type":"STREET","district_id":517},{"title":"\u0645\u06cc\u062f\u0627\u0646 \u0645\u0647\u0627\u0631\u062a","type":"STREET","district_id":517},{"title":"\u06af\u0644\u062f\u0634\u062a \u062d\u0627\u0641\u0638","type":"STREET","district_id":536},{"title":"\u0634\u0647\u0631\u06a9 \u0622\u0631\u06cc\u0646","type":"STREET","district_id":536},{"title":"\u0628\u0644\u0648\u0627\u0631 \u062f\u0648\u0644\u062a","type":"STREET","district_id":554},{"title":"\u062f\u0648\u06a9\u0648\u0647\u06a9","type":"STREET","district_id":1293},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0627\u062a\u062d\u0627\u062f","type":"STREET","district_id":1327},{"title":"\u0631\u0627\u06cc\u062d\u0647","type":"STREET","district_id":502},{"title":"\u0639\u0644\u0627\u0645\u0647 \u0627\u0645\u06cc\u0646\u06cc","type":"STREET","district_id":502},{"title":"\u06a9\u0648\u062b\u0631","type":"STREET","district_id":1276},{"title":"\u06a9\u0648\u0634\u06a9 \u0645\u06cc\u062f\u0627\u0646","type":"STREET","district_id":1314},{"title":"\u062c\u0627\u0646\u0628\u0627\u0632\u0627\u0646","type":"STREET","district_id":1336},{"title":"\u0633\u067e\u06cc\u062f\u0647","type":"STREET","district_id":513},{"title":"\u0647\u0648\u06cc\u0632\u0647","type":"STREET","district_id":513},{"title":"\u0641\u062f\u06a9","type":"STREET","district_id":1315},{"title":"\u0641\u0636\u0644 \u0622\u0628\u0627\u062f","type":"STREET","district_id":1315},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0647\u0631\u0645\u0632\u06af\u0627\u0646","type":"STREET","district_id":1315},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0631\u0627\u0632\u06cc","type":"STREET","district_id":1349},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0645\u062f\u0631\u0633","type":"STREET","district_id":1405},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0635\u0644\u062d","type":"STREET","district_id":543},{"title":"\u0631\u0648\u06cc \u0633\u0627\u0632\u06cc","type":"STREET","district_id":543},{"title":"\u0645\u06cc\u0627\u0646\u0631\u0648\u062f","type":"STREET","district_id":543},{"title":"\u0647\u0645\u0627\u06cc\u0648\u0646","type":"STREET","district_id":543},{"title":"\u06a9\u0627\u0648\u0647","type":"STREET","district_id":543},{"title":"\u0648\u0644\u06cc\u0639\u0635\u0631","type":"STREET","district_id":535},{"title":"\u0633\u062a\u0627\u0631\u062e\u0627\u0646","type":"STREET","district_id":535},{"title":"\u0642\u0635\u0631\u062f\u0634\u062a","type":"STREET","district_id":535},{"title":"\u062e\u0644\u062f\u0628\u0631\u06cc\u0646","type":"STREET","district_id":535},{"title":"\u062e\u0644\u06cc\u0644\u06cc","type":"STREET","district_id":535},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0646\u0627\u0631\u0646\u062c","type":"STREET","district_id":1305},{"title":"\u0645\u06cc\u0627\u0646\u0631\u0648\u062f","type":"STREET","district_id":1305},{"title":"\u062a\u0627\u06a9\u0633\u062a\u0627\u0646","type":"STREET","district_id":507},{"title":"\u0645\u06cc\u062f\u0627\u0646 \u0645\u0639\u0644\u0645","type":"STREET","district_id":507},{"title":"\u0627\u0646\u062f\u06cc\u0634\u0647","type":"STREET","district_id":507},{"title":"\u067e\u0632\u0634\u06a9\u0627\u0646","type":"STREET","district_id":507},{"title":"\u0645\u0639\u0627\u0644\u06cc \u0622\u0628\u0627\u062f","type":"STREET","district_id":507},{"title":"\u0633\u062c\u0627\u062f\u06cc\u0647 \u062f\u0648\u0645","type":"STREET","district_id":507},{"title":"\u0627\u06cc\u0645\u0627\u0646 \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":507},{"title":"\u0631\u0634\u062f","type":"STREET","district_id":1308},{"title":"\u0641\u0631\u0632\u0627\u0646\u06af\u0627\u0646","type":"STREET","district_id":1308},{"title":"\u0647\u0648\u06cc\u0632\u0647","type":"STREET","district_id":1308},{"title":"\u06af\u0644\u0633\u062a\u0627\u0646","type":"STREET","district_id":526},{"title":"\u0641\u062f\u06a9","type":"STREET","district_id":1403},{"title":"\u0622\u0632\u0627\u062f\u06af\u0627\u0646","type":"STREET","district_id":527},{"title":"\u0634\u0647\u0631\u06a9 \u067e\u0631\u0648\u0627\u0632","type":"STREET","district_id":527},{"title":"\u0628\u0627\u0631\u0627\u0646","type":"STREET","district_id":527},{"title":"\u0637\u0644\u0627\u0628","type":"STREET","district_id":527},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0645\u062f\u0631\u0633","type":"STREET","district_id":527},{"title":"\u06a9\u0627\u0648\u0647","type":"STREET","district_id":527},{"title":"\u0645\u0631\u06cc\u0645","type":"STREET","district_id":527},{"title":"\u06a9\u0644\u0627\u0647\u062f\u0648\u0632","type":"STREET","district_id":531},{"title":"\u0641\u0644\u0627\u062d\u06cc","type":"STREET","district_id":531},{"title":"\u0635\u062f\u0627 \u0648 \u0633\u06cc\u0645\u0627","type":"STREET","district_id":531},{"title":"\u0632\u0631\u0647\u06cc","type":"STREET","district_id":531},{"title":"\u0645\u0628\u0639\u062b","type":"STREET","district_id":531},{"title":"\u062c\u0647\u0627\u0646 \u0622\u0631\u0627","type":"STREET","district_id":531},{"title":"\u0628\u0644\u0648\u0627\u0631 \u067e\u0627\u0633\u062f\u0627\u0631\u0627\u0646","type":"STREET","district_id":531},{"title":"\u0633\u062a\u0627\u0631\u062e\u0627\u0646","type":"STREET","district_id":531},{"title":"\u0642\u0635\u0631\u062f\u0634\u062a","type":"STREET","district_id":515},{"title":"\u0686\u0645\u0631\u0627\u0646","type":"STREET","district_id":515},{"title":"\u0646\u06cc\u0627\u06cc\u0634","type":"STREET","district_id":515},{"title":"\u0627\u0628\u06cc\u0648\u0631\u062f\u06cc","type":"STREET","district_id":515},{"title":"\u0632\u0631\u06af\u0631\u06cc","type":"STREET","district_id":515},{"title":"\u0642\u0645 \u0622\u0628\u0627\u062f","type":"STREET","district_id":515},{"title":"\u0645\u062a\u06cc\u0646","type":"STREET","district_id":515},{"title":"\u062f\u0627\u0646\u0634 \u0622\u0645\u0648\u0632","type":"STREET","district_id":515},{"title":"\u0634\u0647\u0631\u06a9 \u0648\u0644\u06cc\u0639\u0635\u0631","type":"STREET","district_id":1348},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0627\u062a\u062d\u0627\u062f","type":"STREET","district_id":1325},{"title":"\u0628\u0644\u0648\u0627\u0631 \u06af\u0644\u0633\u062a\u0627\u0646","type":"STREET","district_id":1383},{"title":"\u0633\u0644\u0645\u0627\u0646 \u0641\u0627\u0631\u0633\u06cc","type":"STREET","district_id":1383},{"title":"\u0633\u0641\u0631","type":"STREET","district_id":1383},{"title":"\u0645\u0639\u0632\u06cc","type":"STREET","district_id":1383},{"title":"\u0628\u0627\u0647\u0646\u0631","type":"STREET","district_id":514},{"title":"\u0633\u0644\u0645\u0627\u0646 \u0641\u0627\u0631\u0633\u06cc","type":"STREET","district_id":514},{"title":"\u0641\u062f\u06a9","type":"STREET","district_id":563},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0631\u0627\u0632\u06cc","type":"STREET","district_id":563},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0645\u062f\u0631\u0633","type":"STREET","district_id":563},{"title":"\u0634\u0647\u0631\u06a9 \u0648\u0644\u06cc\u0639\u0635\u0631","type":"STREET","district_id":563},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0647\u0631\u0645\u0632\u06af\u0627\u0646","type":"STREET","district_id":563},{"title":"\u0641\u0636\u0644 \u0622\u0628\u0627\u062f","type":"STREET","district_id":563},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0627\u06cc\u062b\u0627\u0631","type":"STREET","district_id":563},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0635\u0644\u062d","type":"STREET","district_id":1320},{"title":"\u0646\u0628\u06cc \u0627\u06a9\u0631\u0645","type":"STREET","district_id":1320},{"title":"\u0628\u06cc\u0633\u062a \u0645\u062a\u0631\u06cc \u0627\u0645\u0627\u0645 \u062e\u0645\u06cc\u0646\u06cc","type":"STREET","district_id":1320},{"title":"\u0633\u0641\u06cc\u0631 \u062c\u0646\u0648\u0628\u06cc","type":"STREET","district_id":1320},{"title":"\u0634\u0628\u0627\u0646","type":"STREET","district_id":1256},{"title":"\u0633\u0631\u0628\u0627\u0632","type":"STREET","district_id":1256},{"title":"\u0645\u06cc\u062f\u0627\u0646 \u0645\u0639\u0644\u0645","type":"STREET","district_id":1286},{"title":"\u0647\u0627\u062a\u0641","type":"STREET","district_id":540},{"title":"\u0645\u0639\u0627\u0644\u06cc \u0622\u0628\u0627\u062f","type":"STREET","district_id":1264},{"title":"\u062f\u0648\u0633\u062a\u0627\u0646","type":"STREET","district_id":1264},{"title":"\u0641\u0631\u0647\u0646\u06af \u0634\u0647\u0631","type":"STREET","district_id":1264},{"title":"\u0686\u0645\u0631\u0627\u0646","type":"STREET","district_id":1264},{"title":"\u062a\u0627\u0686\u0627\u0631\u0627","type":"STREET","district_id":1264},{"title":"\u0634\u0647\u0631\u06a9 \u0628\u0627\u0647\u0646\u0631","type":"STREET","district_id":1264},{"title":"\u062e\u06cc\u0627\u0628\u0627\u0646 \u062f\u0646\u0627","type":"STREET","district_id":1264},{"title":"\u0645\u0637\u0647\u0631\u06cc","type":"STREET","district_id":1287},{"title":"\u06a9\u0645\u06cc\u0644","type":"STREET","district_id":1287},{"title":"\u0645\u06cc\u062f\u0627\u0646 \u0645\u0639\u0644\u0645","type":"STREET","district_id":1287},{"title":"\u0641\u0644\u06a9\u0647 \u0641\u0631\u0648\u062f\u06af\u0627\u0647","type":"STREET","district_id":1357},{"title":"\u062c\u0647\u0627\u0646\u06af\u0631\u062f\u06cc","type":"STREET","district_id":524},{"title":"\u0628\u0644\u0648\u0627\u0631 \u06af\u0644\u0633\u062a\u0627\u0646","type":"STREET","district_id":524},{"title":"\u0627\u0633\u062a\u0627\u062f \u0634\u0647\u0631\u06cc\u0627\u0631","type":"STREET","district_id":524},{"title":"\u06a9\u0633\u0631\u06cc","type":"STREET","district_id":524},{"title":"\u0633\u0644\u0645\u0627\u0646 \u0641\u0627\u0631\u0633\u06cc","type":"STREET","district_id":524},{"title":"\u0686\u0645\u0631\u0627\u0646","type":"STREET","district_id":1300},{"title":"\u0646\u06cc\u0627\u06cc\u0634","type":"STREET","district_id":1300},{"title":"\u0645\u0647\u0631\u06af\u0627\u0646","type":"STREET","district_id":504},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0627\u0633\u062a\u0642\u0644\u0627\u0644","type":"STREET","district_id":1393},{"title":"\u0628\u0631\u0642","type":"STREET","district_id":1393},{"title":"\u062e\u0644\u06cc\u0644\u06cc","type":"STREET","district_id":505},{"title":"\u0642\u0635\u0631\u062f\u0634\u062a","type":"STREET","district_id":505},{"title":"\u0628\u0631\u0642","type":"STREET","district_id":505},{"title":"\u0631\u062d\u0645\u062a \u0622\u0628\u0627\u062f","type":"STREET","district_id":505},{"title":"\u0646\u0634\u0627\u0637","type":"STREET","district_id":505},{"title":"\u062f\u0627\u0646\u0634\u062c\u0648","type":"STREET","district_id":505},{"title":"\u0645\u062d\u0631\u0627\u0628","type":"STREET","district_id":548},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0645\u062f\u0631\u0633","type":"STREET","district_id":548},{"title":"\u067e\u0648\u062f\u0646\u06a9","type":"STREET","district_id":548},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0641\u0631\u0635\u062a \u0634\u06cc\u0631\u0627\u0632\u06cc","type":"STREET","district_id":548},{"title":"\u0642\u0635\u0631\u062f\u0634\u062a","type":"STREET","district_id":1398},{"title":"\u0633\u0627\u0645\u0627\u0646","type":"STREET","district_id":516},{"title":"\u0637\u0644\u0627\u0626\u06cc\u0647","type":"STREET","district_id":516},{"title":"\u0634\u0647\u0631\u06a9 \u0645\u062f\u0631\u0633","type":"STREET","district_id":516},{"title":"\u0641\u0631\u0632\u0627\u0646\u06af\u0627\u0646","type":"STREET","district_id":516},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0646\u0627\u0631\u0646\u062c","type":"STREET","district_id":516},{"title":"\u0634\u0647\u0631\u06a9 \u0633\u0639\u062f\u06cc","type":"STREET","district_id":1416},{"title":"\u067e\u0644 \u0628\u0627\u063a \u0635\u0641\u0627","type":"STREET","district_id":1396},{"title":"\u0641\u0631\u062f\u0648\u0633\u06cc","type":"STREET","district_id":1396},{"title":"\u0645\u062d\u0645\u0648\u062f\u06cc\u0647","type":"STREET","district_id":1299},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0645\u062f\u0631\u0633","type":"STREET","district_id":506},{"title":"\u0641\u0636\u0644 \u0622\u0628\u0627\u062f","type":"STREET","district_id":506},{"title":"\u067e\u0644 \u063a\u062f\u06cc\u0631","type":"STREET","district_id":506},{"title":"\u062e\u06cc\u0627\u0628\u0627\u0646 \u0645\u0646\u0648\u0686\u0647\u0631\u06cc","type":"STREET","district_id":1373},{"title":"\u0628\u0644\u0648\u0627\u0631 \u06af\u0644\u0633\u062a\u0627\u0646","type":"STREET","district_id":1401},{"title":"\u0627\u0633\u062a\u0627\u062f \u0634\u0647\u0631\u06cc\u0627\u0631","type":"STREET","district_id":1401},{"title":"\u0642\u0627\u0646\u0639\u06cc","type":"STREET","district_id":1401},{"title":"\u0633\u067e\u0647\u0633\u0627\u0644\u0627\u0631","type":"STREET","district_id":1593},{"title":"\u0645\u0633\u0631\u0648\u0631","type":"STREET","district_id":1593},{"title":"\u0627\u0644\u0647\u06cc\u0647","type":"STREET","district_id":1593},{"title":"\u0645\u0634\u062a\u0627\u0642","type":"STREET","district_id":1593},{"title":"\u0628\u0627\u063a \u0627\u0631\u0645","type":"STREET","district_id":1593},{"title":"\u0634\u06cc\u062e \u0628\u0647\u0627\u06cc\u06cc","type":"STREET","district_id":1521},{"title":"\u0627\u0631\u062f\u06cc\u0628\u0647\u0634\u062a","type":"STREET","district_id":1521},{"title":"\u0645\u0637\u0647\u0631\u06cc","type":"STREET","district_id":1521},{"title":"\u0639\u0628\u0627\u0633 \u0622\u0628\u0627\u062f","type":"STREET","district_id":1521},{"title":"\u0622\u062a\u0634\u06af\u0627\u0647","type":"STREET","district_id":1543},{"title":"\u0641\u0631\u062f\u0648\u0633\u06cc","type":"STREET","district_id":1590},{"title":"\u0646\u0638\u0631 \u0634\u0631\u0642\u06cc","type":"STREET","district_id":1590},{"title":"\u0627\u0637\u0634\u0627\u0631\u0627\u0646","type":"STREET","district_id":1560},{"title":"\u0627\u0631\u06cc\u0633\u0648\u0646","type":"STREET","district_id":1560},{"title":"\u0644\u0627\u0644\u0647","type":"STREET","district_id":1560},{"title":"\u0633\u0631\u0648\u0634","type":"STREET","district_id":1470},{"title":"\u0628\u0632\u0631\u06af\u0645\u0647\u0631","type":"STREET","district_id":1470},{"title":"\u0644\u0627\u0644\u0647","type":"STREET","district_id":1470},{"title":"\u0645\u06cc\u0644\u0627\u062f","type":"STREET","district_id":1470},{"title":"\u06af\u0644\u0632\u0627\u0631","type":"STREET","district_id":1470},{"title":"\u0648\u0644\u06cc \u0639\u0635\u0631","type":"STREET","district_id":1470},{"title":"\u0627\u062d\u0645\u062f \u0622\u0628\u0627\u062f","type":"STREET","district_id":1470},{"title":"\u0645\u0647\u0631\u06af\u0627\u0646","type":"STREET","district_id":1470},{"title":"\u0634\u0647\u0631\u06a9 \u0627\u0644\u0647\u06cc\u0647","type":"STREET","district_id":1554},{"title":"\u0645\u0631\u0648\u0627\u0631\u06cc\u062f","type":"STREET","district_id":1554},{"title":"\u0628\u0631\u0627\u0632\u0646\u062f\u0647","type":"STREET","district_id":1446},{"title":"\u0627\u06cc\u0645\u0627\u0646","type":"STREET","district_id":1446},{"title":"\u0622\u0644 \u0645\u062d\u0645\u062f","type":"STREET","district_id":1446},{"title":"\u06af\u0644\u0633\u062a\u0627\u0646","type":"STREET","district_id":1446},{"title":"\u06cc\u06a9\u062a\u0627","type":"STREET","district_id":1446},{"title":"\u0627\u062a\u062d\u0627\u062f","type":"STREET","district_id":1446},{"title":"\u0628\u0639\u062b\u062a","type":"STREET","district_id":1446},{"title":"\u0644\u0627\u0644\u0647","type":"STREET","district_id":1446},{"title":"\u062e\u06cc\u0627\u0645","type":"STREET","district_id":1490},{"title":"\u062c\u0647\u0627\u062f","type":"STREET","district_id":1490},{"title":"\u0634\u06cc\u062e \u0628\u0647\u0627\u06cc\u06cc","type":"STREET","district_id":1490},{"title":"\u062e\u0631\u0645","type":"STREET","district_id":1490},{"title":"\u0635\u0627\u0631\u0645\u06cc\u0647","type":"STREET","district_id":1490},{"title":"\u0634\u0647\u0631\u06a9 \u0648\u0644\u06cc\u0639\u0635\u0631","type":"STREET","district_id":1529},{"title":"\u062f\u06a9\u062a\u0631 \u062d\u0633\u0627\u0628\u06cc","type":"STREET","district_id":1529},{"title":"\u06a9\u0634\u0627\u0648\u0631\u0632","type":"STREET","district_id":1529},{"title":"\u06a9\u0634\u0627\u0648\u0631\u0632\u06cc","type":"STREET","district_id":1529},{"title":"\u06a9\u0648\u062b\u0631","type":"STREET","district_id":1428},{"title":"\u0637\u0627\u0644\u0642\u0627\u0646\u06cc","type":"STREET","district_id":1428},{"title":"\u0632\u06cc\u0646\u0628\u06cc\u0647","type":"STREET","district_id":1575},{"title":"\u062f\u0631\u0648\u0627\u0632\u0647 \u062f\u0648\u0644\u062a","type":"STREET","district_id":1462},{"title":"\u0645\u06cc\u0631\u0632\u0627\u0637\u0627\u0647\u0631","type":"STREET","district_id":1495},{"title":"\u0622\u062a\u0634\u06af\u0627\u0647","type":"STREET","district_id":1495},{"title":"\u0631\u0648\u062f\u06a9\u06cc","type":"STREET","district_id":1532},{"title":"\u062f\u0642\u06cc\u0642\u06cc","type":"STREET","district_id":1532},{"title":"\u062e\u0627\u0642\u0627\u0646\u06cc","type":"STREET","district_id":1532},{"title":"\u0646\u0627\u0698\u0648\u0627\u0646","type":"STREET","district_id":1532},{"title":"\u0633\u0647\u0631\u0648\u0631\u062f\u06cc","type":"STREET","district_id":1532},{"title":"\u0639\u0644\u0627\u0645\u0647 \u062c\u0639\u0641\u0631\u06cc","type":"STREET","district_id":1532},{"title":"\u0622\u0630\u0631","type":"STREET","district_id":1532},{"title":"\u0648\u062d\u06cc\u062f","type":"STREET","district_id":1532},{"title":"\u062d\u06a9\u06cc\u0645 \u0646\u0638\u0627\u0645\u06cc","type":"STREET","district_id":1589},{"title":"\u062a\u0648\u062d\u06cc\u062f","type":"STREET","district_id":1589},{"title":"\u0646\u0638\u0631 \u0634\u0631\u0642\u06cc","type":"STREET","district_id":1589},{"title":"\u0645\u0644\u062a","type":"STREET","district_id":1589},{"title":"\u0633\u0647\u0631\u0648\u0631\u062f\u06cc","type":"STREET","district_id":1530},{"title":"\u0646\u0627\u0698\u0648\u0627\u0646","type":"STREET","district_id":1530},{"title":"\u0641\u0631\u0647\u0646\u06af","type":"STREET","district_id":1530},{"title":"\u0648\u062d\u06cc\u062f","type":"STREET","district_id":1530},{"title":"\u067e\u0631\u062f\u06cc\u0633","type":"STREET","district_id":1506},{"title":"\u0641\u0631\u062f\u0648\u0633","type":"STREET","district_id":1506},{"title":"\u06a9\u0648\u062b\u0631","type":"STREET","district_id":1506},{"title":"\u0628\u0627\u0632\u0627\u0631\u0686\u0647","type":"STREET","district_id":1506},{"title":"\u0646\u06cc\u0631\u0648","type":"STREET","district_id":1506},{"title":"\u063a\u0631\u0636\u06cc","type":"STREET","district_id":1606},{"title":"\u06af\u0644\u0633\u062a\u0627\u0646","type":"STREET","district_id":1606},{"title":"\u0645\u062c\u062a\u0645\u0639 \u06a9\u0648\u062b\u0631","type":"STREET","district_id":1606},{"title":"\u0634\u0647\u06cc\u062f \u0627\u062d\u0645\u062f\u06cc","type":"STREET","district_id":1606},{"title":"\u0647\u0641\u062a \u062f\u0633\u062a","type":"STREET","district_id":1591},{"title":"\u0641\u06cc\u0636","type":"STREET","district_id":1591},{"title":"\u0628\u0644\u0648\u0627\u0631 \u0627\u06cc\u0645\u0627\u0646","type":"STREET","district_id":1444},{"title":"\u06af\u0644\u0633\u062a\u0627\u0646","type":"STREET","district_id":1444},{"title":"\u0627\u0634\u0631\u0627\u0642","type":"STREET","district_id":1444},{"title":"\u06a9\u0627\u0648\u0647","type":"STREET","district_id":1444},{"title":"\u0622\u0644 \u0645\u062d\u0645\u062f","type":"STREET","district_id":1444},{"title":"\u0646\u06af\u0627\u0631\u0633\u062a\u0627\u0646","type":"STREET","district_id":1444},{"title":"\u0628\u0639\u062b\u062a","type":"STREET","district_id":1444},{"title":"\u0635\u0641\u0627\u0626\u06cc\u0647","type":"STREET","district_id":1444},{"title":"\u0644\u0627\u0647\u0648\u0631","type":"STREET","district_id":380},{"title":"\u06af\u0644\u0632\u0627\u0631","type":"STREET","district_id":380},{"title":"\u0645\u0647\u0631\u06af\u0627\u0646","type":"STREET","district_id":380},{"title":"\u0647\u0634\u062a \u0628\u0647\u0634\u062a \u0634\u0631\u0642\u06cc","type":"STREET","district_id":380},{"title":"\u0628\u06cc\u0633\u06cc\u0645","type":"STREET","district_id":380},{"title":"\u0634\u0631\u06cc\u0641 \u0648\u0627\u0642\u0641\u06cc","type":"STREET","district_id":380},{"title":"\u0631\u06a9\u0646 \u0627\u0644\u062f\u0648\u0644\u0647","type":"STREET","district_id":380},{"title":"\u0641\u0631\u0647\u0646\u06af\u06cc\u0627\u0646","type":"STREET","district_id":380},{"title":"\u0634\u0647\u0631\u0648\u0646\u062f","type":"STREET","district_id":1559},{"title":"\u062d\u06a9\u06cc\u0645 \u0646\u0638\u0627\u0645\u06cc","type":"STREET","district_id":1600},{"title":"\u0634\u0631\u06cc\u0639\u062a\u06cc","type":"STREET","district_id":1600},{"title":"\u062a\u0648\u062d\u06cc\u062f","type":"STREET","district_id":1600},{"title":"\u0645\u062d\u062a\u0634\u0645 \u06a9\u0627\u0634\u0627\u0646\u06cc","type":"STREET","district_id":1600},{"title":"\u062f\u0642\u06cc\u0642\u06cc","type":"STREET","district_id":1600},{"title":"\u0634\u0641\u0642","type":"STREET","district_id":382},{"title":"\u06af\u0644\u0633\u062a\u0627\u0646","type":"STREET","district_id":382},{"title":"\u0628\u0647\u0634\u062a","type":"STREET","district_id":382},{"title":"\u06a9\u0648\u0647\u0633\u0627\u0631","type":"STREET","district_id":382},{"title":"\u0641\u0631\u0634\u062a\u0647","type":"STREET","district_id":382},{"title":"\u0641\u0631\u0648\u0631\u062f\u06cc\u0646","type":"STREET","district_id":382},{"title":"\u0628\u0647\u0627\u0631","type":"STREET","district_id":382},{"title":"\u0634\u0645\u0634\u0627\u062f","type":"STREET","district_id":382},{"title":"\u062e\u0627\u0646\u0647 \u0627\u0635\u0641\u0647\u0627\u0646","type":"STREET","district_id":1580},{"title":"\u0645\u0644\u06a9 \u0634\u0647\u0631","type":"STREET","district_id":1580},{"title":"\u0641\u0631\u0648\u063a\u06cc","type":"STREET","district_id":376},{"title":"\u0637\u06cc\u0628","type":"STREET","district_id":376},{"title":"\u067e\u0646\u062c \u0631\u0645\u0636\u0627\u0646","type":"STREET","district_id":376},{"title":"\u062c\u0627\u0645\u06cc","type":"STREET","district_id":376},{"title":"\u062e\u0627\u062f\u0645\u06cc","type":"STREET","district_id":376},{"title":"\u0645\u0633\u062c\u062f \u0633\u06cc\u062f","type":"STREET","district_id":376},{"title":"\u0637\u0627\u0644\u0642\u0627\u0646\u06cc","type":"STREET","district_id":376},{"title":"\u0686\u0647\u0627\u0631\u0628\u0627\u063a \u067e\u0627\u06cc\u06cc\u0646","type":"STREET","district_id":376},{"title":"\u067e\u0631\u0648\u06cc\u0646","type":"STREET","district_id":1448},{"title":"\u0634\u06cc\u062e \u0637\u0648\u0633\u06cc","type":"STREET","district_id":1448},{"title":"\u0645\u0639\u0631\u0627\u062c","type":"STREET","district_id":1448},{"title":"\u0639\u0633\u06af\u0631\u06cc\u0647","type":"STREET","district_id":1448},{"title":"\u0644\u0627\u0644\u0647","type":"STREET","district_id":1448},{"title":"\u0644\u0627\u0647\u0648\u0631","type":"STREET","district_id":1480},{"title":"\u062e\u06cc\u0627\u0645","type":"STREET","district_id":1491},{"title":"\u0645\u0642\u062f\u0627\u062f","type":"STREET","district_id":1491},{"title":"\u0635\u0627\u0626\u0628","type":"STREET","district_id":1491},{"title":"\u0622\u062a\u0634","type":"STREET","district_id":1491},{"title":"\u0646\u0627\u0698\u0648\u0627\u0646","type":"STREET","district_id":1491},{"title":"\u06a9\u0633\u0631\u06cc","type":"STREET","district_id":1491},{"title":"\u0645\u0627\u0631\u0646\u0627\u0646","type":"STREET","district_id":1491},{"title":"\u0645\u0648\u0644\u0648\u06cc","type":"STREET","district_id":1452},{"title":"\u0627\u0634\u0631\u0627\u0642","type":"STREET","district_id":1452},{"title":"\u0627\u0645\u0627\u0645 \u062e\u0645\u06cc\u0646\u06cc","type":"STREET","district_id":1588},{"title":"\u0633\u0627\u062d\u0644","type":"STREET","district_id":1588},{"title":"\u0645\u0633\u062c\u062f \u0639\u0644\u06cc","type":"STREET","district_id":1509},{"title":"\u0645\u0634\u062a\u0627\u0642","type":"STREET","district_id":1514},{"title":"\u067e\u0631\u0648\u06cc\u0646","type":"STREET","district_id":1477},{"title":"\u0634\u0647\u0631\u0648\u0646\u062f","type":"STREET","district_id":1477},{"title":"\u0633\u0631\u0648\u0633\u062a\u0627\u0646","type":"STREET","district_id":1477},{"title":"\u0645\u06cc\u0644\u0627\u062f","type":"STREET","district_id":1477},{"title":"\u062e\u0648\u0627\u062c\u0647 \u0639\u0645\u06cc\u062f","type":"STREET","district_id":1477},{"title":"\u0635\u0628\u0627\u062d\u06cc","type":"STREET","district_id":1477},{"title":"\u062d\u06a9\u06cc\u0645 \u0634\u0641\u0627\u06cc\u06cc \u0633\u0648\u0645","type":"STREET","district_id":1477},{"title":"\u0647\u0641\u062a \u062a\u06cc\u0631","type":"STREET","district_id":1477},{"title":"\u0628\u0627\u0647\u0646\u0631","type":"STREET","district_id":402},{"title":"\u06a9\u0627\u0648\u0647","type":"STREET","district_id":402},{"title":"\u0686\u0645\u0631\u0627\u0646","type":"STREET","district_id":402},{"title":"\u0639\u0644\u0627\u0642\u0645\u0646\u062f\u0627\u0646","type":"STREET","district_id":402},{"title":"\u0646\u06af\u06cc\u0646","type":"STREET","district_id":402},{"title":"\u0631\u0628\u0627\u0637","type":"STREET","district_id":1577},{"title":"\u067e\u0646\u062c \u0622\u0630\u0631","type":"STREET","district_id":1577},{"title":"\u0639\u0627\u0631\u0641","type":"STREET","district_id":1577},{"title":"\u0631\u0632\u0645\u0646\u062f\u06af\u0627\u0646","type":"STREET","district_id":1577},{"title":"\u06a9\u0627\u0648\u0647","type":"STREET","district_id":1577},{"title":"\u0644\u0627\u0644\u0647","type":"STREET","district_id":1577},{"title":"\u0628\u0647\u0627\u0631\u0633\u062a\u0627\u0646","type":"STREET","district_id":1577},{"title":"\u0627\u06cc\u0645\u0627\u0646","type":"STREET","district_id":1577},{"title":"\u0628\u0627\u0628\u06a9","type":"STREET","district_id":1550},{"title":"\u0634\u0647\u06cc\u062f\u0627\u0646","type":"STREET","district_id":1550},{"title":"\u06a9\u0647\u0646\u062f\u0698","type":"STREET","district_id":1549},{"title":"\u0622\u062a\u0634\u06af\u0627\u0647","type":"STREET","district_id":1551},{"title":"\u0627\u062a\u0634\u06af\u0627\u0647","type":"STREET","district_id":1551},{"title":"\u0646\u0628\u0648\u06cc \u0645\u0646\u0634","type":"STREET","district_id":1551},{"title":"\u0634\u0647\u062f\u0627","type":"STREET","district_id":1551},{"title":"\u062e\u0627\u0642\u0627\u0646\u06cc","type":"STREET","district_id":394},{"title":"\u062a\u0648\u062d\u06cc\u062f","type":"STREET","district_id":394},{"title":"\u062d\u06a9\u06cc\u0645 \u0646\u0638\u0627\u0645\u06cc","type":"STREET","district_id":394},{"title":"\u062f\u0642\u06cc\u0642\u06cc","type":"STREET","district_id":394},{"title":"\u0646\u0638\u0631 \u063a\u0631\u0628\u06cc","type":"STREET","district_id":394},{"title":"\u0645\u062d\u062a\u0634\u0645 \u06a9\u0627\u0634\u0627\u0646\u06cc","type":"STREET","district_id":394},{"title":"\u0634\u0631\u06cc\u0639\u062a\u06cc","type":"STREET","district_id":394},{"title":"\u0645\u0647\u0631\u062f\u0627\u062f","type":"STREET","district_id":394},{"title":"\u06a9\u0647\u0646\u062f\u0698","type":"STREET","district_id":1463},{"title":"\u0633\u0631\u0648\u0634","type":"STREET","district_id":1455},{"title":"\u0639\u0633\u06af\u0631\u06cc\u0647","type":"STREET","district_id":1455},{"title":"\u0635\u063a\u06cc\u0631","type":"STREET","district_id":1455},{"title":"\u06a9\u0647\u0646\u062f\u0698","type":"STREET","district_id":1492},{"title":"\u062e\u0631\u0645","type":"STREET","district_id":1492},{"title":"\u062e\u06cc\u0627\u0645","type":"STREET","district_id":1492},{"title":"\u0633\u0631\u0648\u0633\u062a\u0627\u0646","type":"STREET","district_id":1497},{"title":"\u0641\u0631\u062f\u0648\u0633\u06cc","type":"STREET","district_id":1487},{"title":"\u06a9\u0645\u0627\u0644 \u0627\u0633\u0645\u0627\u0639\u06cc\u0644","type":"STREET","district_id":1487},{"title":"\u062d\u06a9\u06cc\u0645 \u0646\u0638\u0627\u0645\u06cc","type":"STREET","district_id":645},{"title":"\u0627\u0631\u062a\u0634","type":"STREET","district_id":645},{"title":"\u062f\u0642\u06cc\u0642\u06cc","type":"STREET","district_id":645},{"title":"\u0645\u062d\u062a\u0634\u0645 \u06a9\u0627\u0634\u0627\u0646\u06cc","type":"STREET","district_id":645},{"title":"\u0633\u062c\u0627\u062f\u06cc\u0647","type":"STREET","district_id":645},{"title":"\u062c\u0648\u0634\u0642\u0627\u0646\u06cc","type":"STREET","district_id":645},{"title":"\u0628\u06cc\u0698\u0646","type":"STREET","district_id":645},{"title":"\u0635\u0641\u0647","type":"STREET","district_id":645},{"title":"\u0631\u0633\u0627\u0644\u062a","type":"STREET","district_id":381},{"title":"\u0631\u0632\u0645\u0646\u062f\u06af\u0627\u0646","type":"STREET","district_id":381},{"title":"\u06af\u0644\u062e\u0627\u0646\u0647","type":"STREET","district_id":381},{"title":"\u0633\u067e\u0627\u0647","type":"STREET","district_id":381},{"title":"\u0645\u06cc\u062e\u06a9","type":"STREET","district_id":381},{"title":"\u0645\u0627\u0647 \u0641\u0631\u062e\u06cc","type":"STREET","district_id":381},{"title":"\u0628\u0647\u0627\u0631\u0633\u062a\u0627\u0646","type":"STREET","district_id":381},{"title":"\u0628\u0646\u0641\u0634\u0647","type":"STREET","district_id":381},{"title":"\u0627\u0645\u0627\u0645 \u062e\u0645\u06cc\u0646\u06cc","type":"STREET","district_id":1599},{"title":"\u0628\u0627\u0647\u0646\u0631","type":"STREET","district_id":1599},{"title":"\u0631\u0628\u0627\u0637","type":"STREET","district_id":1599},{"title":"\u0641\u0631\u0648\u063a\u06cc","type":"STREET","district_id":1599},{"title":"\u062f\u0631\u0648\u0627\u0632\u0647 \u062a\u0647\u0631\u0627\u0646","type":"STREET","district_id":1599},{"title":"\u0634\u0647\u06cc\u062f\u0627\u0646 \u063a\u0631\u0628\u06cc","type":"STREET","district_id":1599},{"title":"\u0634\u06cc\u062e \u0628\u0647\u0627\u06cc\u06cc","type":"STREET","district_id":1536},{"title":"\u0637\u0627\u0644\u0642\u0627\u0646\u06cc","type":"STREET","district_id":1536},{"title":"\u0627\u0631\u062f\u06cc\u0628\u0647\u0634\u062a","type":"STREET","district_id":1536},{"title":"\u0637\u06cc\u0628","type":"STREET","district_id":1536},{"title":"\u0634\u0645\u0633 \u0622\u0628\u0627\u062f\u06cc","type":"STREET","district_id":1536},{"title":"\u062c\u0647\u0627\u062f","type":"STREET","district_id":1536},{"title":"\u0622\u0630\u0631","type":"STREET","district_id":1536},{"title":"\u0627\u0631\u063a\u0648\u0627\u0646","type":"STREET","district_id":387},{"title":"\u06af\u0644\u062f\u06cc\u0633","type":"STREET","district_id":387},{"title":"\u0645\u0647\u0633\u062a\u0627\u0646","type":"STREET","district_id":387},{"title":"\u062c\u0627\u0646\u0628\u0627\u0632\u0627\u0646","type":"STREET","district_id":387},{"title":"\u067e\u0631\u062f\u06cc\u0633","type":"STREET","district_id":387},{"title":"\u0646\u06af\u0627\u0631\u0633\u062a\u0627\u0646","type":"STREET","district_id":387},{"title":"\u0628\u0647\u0627\u0631","type":"STREET","district_id":387},{"title":"\u0627\u0645\u06cc\u0631\u06a9\u0628\u06cc\u0631","type":"STREET","district_id":387},{"title":"\u0634\u0631\u06cc\u0641 \u0648\u0627\u0642\u0641\u06cc","type":"STREET","district_id":391},{"title":"\u0641\u0631\u062f\u0648\u0633\u06cc","type":"STREET","district_id":391},{"title":"\u0628\u0632\u0631\u06af\u0645\u0647\u0631","type":"STREET","district_id":391},{"title":"\u0634\u0647\u062f\u0627","type":"STREET","district_id":391},{"title":"\u0645\u0646\u0648\u0686\u0647\u0631\u06cc","type":"STREET","district_id":391},{"title":"\u0646\u0634\u0627\u0637","type":"STREET","district_id":391},{"title":"\u06af\u0644\u0632\u0627\u0631","type":"STREET","district_id":391},{"title":"\u0645\u0634\u062a\u0627\u0642 \u0627\u0648\u0644","type":"STREET","district_id":391},{"title":"\u06a9\u0634\u0627\u0648\u0631\u0632\u06cc","type":"STREET","district_id":1540},{"title":"\u06a9\u0634\u0627\u0648\u0631\u0632","type":"STREET","district_id":1540},{"title":"\u0635\u0627\u062f\u0642\u06cc","type":"STREET","district_id":1457},{"title":"\u067e\u0631\u0648\u06cc\u0646","type":"STREET","district_id":1476},{"title":"\u0633\u0631\u0648\u0634","type":"STREET","district_id":1476},{"title":"\u0641\u0631\u0633\u0627\u0646","type":"STREET","district_id":1476},{"title":"\u0639\u0633\u06af\u0631\u06cc\u0647","type":"STREET","district_id":1476},{"title":"\u0622\u0644 \u062e\u062c\u0646\u062f","type":"STREET","district_id":1476},{"title":"\u06a9\u0627\u062e","type":"STREET","district_id":1476},{"title":"\u0647\u0641\u062a \u062a\u06cc\u0631","type":"STREET","district_id":1476},{"title":"\u0635\u0628\u0627\u062d\u06cc","type":"STREET","district_id":1476},{"title":"\u0628\u0639\u062b\u062a","type":"STREET","district_id":1524},{"title":"\u062f\u0648\u0644\u062a","type":"STREET","district_id":1609},{"title":"\u063a\u0631\u0636\u06cc","type":"STREET","district_id":1605},{"title":"\u0631\u0628\u0627\u0637","type":"STREET","district_id":1582},{"title":"\u0627\u0635\u0641\u0647\u0627\u0646 \u0648\u06cc\u0644\u0627","type":"STREET","district_id":1582},{"title":"\u0633\u0627\u062d\u0644","type":"STREET","district_id":1582},{"title":"\u0631\u0633\u062a\u0645 \u0634\u06cc\u0631\u0627\u0632\u06cc","type":"STREET","district_id":1582},{"title":"\u0632\u06cc\u062a\u0648\u0646","type":"STREET","district_id":1582},{"title":"\u062c\u0627\u0628\u0631 \u0627\u0646\u0635\u0627\u0631\u06cc","type":"STREET","district_id":1582},{"title":"\u0627\u0645\u0627\u0645 \u062e\u0645\u06cc\u0646\u06cc","type":"STREET","district_id":1427},{"title":"\u0634\u0647\u0631\u06a9 \u0632\u0627\u06cc\u0646\u062f\u0647 \u0631\u0648\u062f","type":"STREET","district_id":1519},{"title":"\u062f\u0631\u062e\u0634\u0627\u0646","type":"STREET","district_id":1523},{"title":"\u0627\u0645\u0627\u0645 \u062e\u0645\u06cc\u0646\u06cc","type":"STREET","district_id":1523},{"title":"\u0634\u0631\u06cc\u0641 \u0634\u0631\u0642\u06cc","type":"STREET","district_id":1523},{"title":"\u06a9\u0647\u0646\u062f\u0698","type":"STREET","district_id":1523},{"title":"\u0634\u0647\u06cc\u062f\u0627\u0646 \u063a\u0631\u0628\u06cc","type":"STREET","district_id":1523},{"title":"\u0645\u06cc\u0631\u0632\u0627\u0637\u0627\u0647\u0631","type":"STREET","district_id":1548},{"title":"\u0622\u062a\u0634\u06af\u0627\u0647","type":"STREET","district_id":1548},{"title":"\u0634\u0647\u0631\u06a9 \u0627\u0645\u0627\u0645 \u062d\u0633\u06cc\u0646","type":"STREET","district_id":409},{"title":"\u062a\u0648\u062d\u06cc\u062f","type":"STREET","district_id":385},{"title":"\u0634\u0627\u0647\u062f","type":"STREET","district_id":385},{"title":"\u063a\u062f\u06cc\u0631","type":"STREET","district_id":385},{"title":"\u0627\u0646\u062f\u06cc\u0634\u0647","type":"STREET","district_id":385},{"title":"\u062e\u0648\u0627\u0631\u0632\u0645\u06cc","type":"STREET","district_id":385},{"title":"\u062c\u06cc","type":"STREET","district_id":1562},{"title":"\u062d\u06a9\u06cc\u0645 \u0646\u0638\u0627\u0645\u06cc","type":"STREET","district_id":1537},{"title":"\u0627\u0631\u062a\u0634","type":"STREET","district_id":1537},{"title":"\u0645\u0644\u0627\u0635\u062f\u0631\u0627","type":"STREET","district_id":1542},{"title":"\u062f\u0631\u0648\u0627\u0632\u0647 \u0634\u06cc\u0631\u0627\u0632","type":"STREET","district_id":1542},{"title":"\u0645\u0631\u062f\u0627\u0648\u06cc\u062c","type":"STREET","district_id":1542},{"title":"\u0634\u06cc\u062e \u0635\u062f\u0648\u0642","type":"STREET","district_id":1542},{"title":"\u06a9\u0647\u0646\u062f\u0698","type":"STREET","district_id":1465},{"title":"\u062a\u0648\u062d\u06cc\u062f","type":"STREET","district_id":386},{"title":"\u0634\u0631\u06cc\u0639\u062a\u06cc","type":"STREET","district_id":386},{"title":"\u0686\u0647\u0627\u0631 \u0628\u0627\u063a \u0628\u0627\u0644\u0627","type":"STREET","district_id":386},{"title":"\u0645\u0647\u0631\u062f\u0627\u062f","type":"STREET","district_id":386},{"title":"\u0646\u0638\u0631 \u0634\u0631\u0642\u06cc","type":"STREET","district_id":386},{"title":"\u0628\u0647\u0627\u0631","type":"STREET","district_id":386},{"title":"\u0644\u0627\u0647\u0648\u0631","type":"STREET","district_id":1479},{"title":"\u0639\u0637\u0627\u0631","type":"STREET","district_id":379},{"title":"\u0645\u062e\u0627\u0628\u0631\u0627\u062a","type":"STREET","district_id":379},{"title":"\u0641\u0631\u062f\u0648\u0633\u06cc","type":"STREET","district_id":379},{"title":"\u062f\u0647\u062e\u062f\u0627","type":"STREET","district_id":379},{"title":"\u0647\u0634\u062a \u0628\u0647\u0634\u062a","type":"STREET","district_id":379},{"title":"\u067e\u0631\u062f\u06cc\u0633","type":"STREET","district_id":379},{"title":"\u0637\u0627\u0644\u0642\u0627\u0646\u06cc","type":"STREET","district_id":379},{"title":"\u0631\u062f\u0627\u0646\u06cc","type":"STREET","district_id":379},{"title":"\u06af\u0644\u0632\u0627\u0631","type":"STREET","district_id":1581},{"title":"\u0645\u0634\u062a\u0627\u0642","type":"STREET","district_id":1496},{"title":"\u0628\u0627\u063a \u0645\u0634\u0647\u062f","type":"STREET","district_id":1496},{"title":"\u0628\u0627\u0632\u0627\u0631\u0686\u0647","type":"STREET","district_id":1496},{"title":"\u0645\u06cc\u062f\u0627\u0646 \u0634\u0647\u062f\u0627","type":"STREET","district_id":411},{"title":"\u0627\u0631\u063a\u0648\u0627\u0646\u06cc\u0647","type":"STREET","district_id":1511},{"title":"\u0631\u0648\u0634\u0646 \u062f\u0634\u062a","type":"STREET","district_id":1515},{"title":"\u063a\u0631\u0636\u06cc","type":"STREET","district_id":1443},{"title":"\u06af\u0644\u0633\u062a\u0627\u0646","type":"STREET","district_id":1443},{"title":"\u062e\u0631\u062f\u0645\u0646\u062f","type":"STREET","district_id":1443},{"title":"\u0628\u0631\u0627\u0632\u0646\u062f\u0647","type":"STREET","district_id":1443},{"title":"\u0622\u0632\u0627\u062f\u06cc","type":"STREET","district_id":1443},{"title":"\u0641\u0631\u0647\u0646\u06af\u06cc\u0627\u0646","type":"STREET","district_id":1443},{"title":"\u0627\u06cc\u0645\u0627\u0646","type":"STREET","district_id":1443},{"title":"\u0627\u0634\u0631\u0627\u0642","type":"STREET","district_id":1443},{"title":"\u0634\u0647\u0631\u06a9 \u0642\u062f\u0633","type":"STREET","district_id":1425},{"title":"\u0627\u0645\u0627\u0645 \u062e\u0645\u06cc\u0646\u06cc","type":"STREET","district_id":1425},{"title":"\u063a\u0631\u0636\u06cc","type":"STREET","district_id":1442},{"title":"\u062e\u0631\u062f\u0645\u0646\u062f","type":"STREET","district_id":1442},{"title":"\u0634\u0647\u0631\u06a9 \u06a9\u0627\u0648\u0647","type":"STREET","district_id":1442},{"title":"\u0628\u0627\u063a \u0641\u062f\u06a9","type":"STREET","district_id":1442},{"title":"\u06a9\u0627\u0648\u0647","type":"STREET","district_id":1441},{"title":"\u062f\u06a9\u062a\u0631 \u062d\u0633\u0627\u0628\u06cc","type":"STREET","district_id":1528},{"title":"\u062c\u0627\u0646\u0628\u0627\u0632\u0627\u0646","type":"STREET","district_id":1528},{"title":"\u0631\u0628\u0627\u0637","type":"STREET","district_id":1584},{"title":"\u062c\u0627\u0628\u0631 \u0627\u0646\u0635\u0627\u0631\u06cc","type":"STREET","district_id":1584},{"title":"\u067e\u0646\u062c \u0622\u0630\u0631","type":"STREET","district_id":1584},{"title":"\u0631\u0633\u062a\u0645 \u0634\u06cc\u0631\u0627\u0632\u06cc","type":"STREET","district_id":1584},{"title":"\u0646\u06af\u0627\u0631\u0633\u062a\u0627\u0646","type":"STREET","district_id":1584},{"title":"\u0627\u06cc\u0645\u0627\u0646","type":"STREET","district_id":1584},{"title":"\u0631\u0632\u0645\u0646\u062f\u06af\u0627\u0646","type":"STREET","district_id":1584},{"title":"\u0686\u0645\u0631\u0627\u0646","type":"STREET","district_id":1584},{"title":"\u0627\u0628\u0646 \u0633\u06cc\u0646\u0627","type":"STREET","district_id":1454},{"title":"\u0639\u0628\u062f\u0627\u0644\u0631\u0632\u0627\u0642","type":"STREET","district_id":1454},{"title":"\u0686\u0647\u0627\u0631\u0628\u0627\u063a \u067e\u0627\u06cc\u06cc\u0646","type":"STREET","district_id":1454},{"title":"\u0645\u06cc\u062f\u0627\u0646 \u0634\u0647\u062f\u0627","type":"STREET","district_id":1454},{"title":"\u0645\u062f\u0631\u0633","type":"STREET","district_id":1454},{"title":"\u0631\u062c\u0627\u06cc\u06cc","type":"STREET","district_id":1558},{"title":"\u0627\u0631\u06cc\u0633\u0648\u0646","type":"STREET","district_id":1558},{"title":"\u0628\u0627\u0647\u0646\u0631","type":"STREET","district_id":1456},{"title":"\u0641\u0631\u0648\u063a\u06cc","type":"STREET","district_id":1456},{"title":"\u0631\u0633\u0627\u0644\u062a","type":"STREET","district_id":1456},{"title":"\u0627\u0645\u0627\u0645 \u062e\u0645\u06cc\u0646\u06cc","type":"STREET","district_id":1456},{"title":"\u0628\u0627\u0628\u06a9","type":"STREET","district_id":1456},{"title":"\u0627\u0628\u0648\u0631\u06cc\u062d\u0627\u0646","type":"STREET","district_id":1456},{"title":"\u062f\u0631\u0648\u0627\u0632\u0647 \u062a\u0647\u0631\u0627\u0646","type":"STREET","district_id":1456},{"title":"\u067e\u0646\u062c \u0631\u0645\u0636\u0627\u0646","type":"STREET","district_id":1456},{"title":"\u0645\u0644\u0627\u0635\u062f\u0631\u0627","type":"STREET","district_id":1535},{"title":"\u0645\u0635\u0644\u06cc","type":"STREET","district_id":1535},{"title":"\u0647\u0641\u062a \u062f\u0633\u062a","type":"STREET","district_id":1535},{"title":"\u062f\u0631\u0648\u0627\u0632\u0647 \u0634\u06cc\u0631\u0627\u0632","type":"STREET","district_id":1535},{"title":"\u0646\u06cc\u06a9\u0628\u062e\u062a","type":"STREET","district_id":1535},{"title":"\u0646\u0638\u0631 \u0634\u0631\u0642\u06cc","type":"STREET","district_id":1535},{"title":"\u0686\u0647\u0627\u0631 \u0628\u0627\u063a \u0628\u0627\u0644\u0627","type":"STREET","district_id":1535},{"title":"\u0634\u0631\u06cc\u0639\u062a\u06cc","type":"STREET","district_id":1535},{"title":"\u0634\u0631\u06cc\u0641 \u0648\u0627\u0642\u0641\u06cc","type":"STREET","district_id":1474},{"title":"\u0646\u0642\u0634 \u062c\u0647\u0627\u0646","type":"STREET","district_id":1474},{"title":"\u062d\u06a9\u06cc\u0645 \u0646\u0638\u0627\u0645\u06cc","type":"STREET","district_id":1527},{"title":"\u06a9\u0648\u06cc \u0628\u0647\u0627\u0631","type":"STREET","district_id":1527},{"title":"\u0627\u0631\u062a\u0634","type":"STREET","district_id":1527},{"title":"\u062f\u0631\u0648\u0627\u0632\u0647 \u0634\u06cc\u0631\u0627\u0632","type":"STREET","district_id":1527},{"title":"\u0686\u0647\u0627\u0631 \u0628\u0627\u063a \u0628\u0627\u0644\u0627","type":"STREET","district_id":1527},{"title":"\u0634\u06cc\u062e \u0635\u062f\u0648\u0642","type":"STREET","district_id":1527},{"title":"\u0647\u0632\u0627\u0631\u062c\u0631\u06cc\u0628","type":"STREET","district_id":1527},{"title":"\u0645\u0631\u062f\u0627\u0648\u06cc\u062c","type":"STREET","district_id":1527},{"title":"\u0645\u062e\u0627\u0628\u0631\u0627\u062a","type":"STREET","district_id":1576},{"title":"\u0633\u0631\u0648\u0634","type":"STREET","district_id":1449},{"title":"\u0627\u0628\u0646 \u0633\u06cc\u0646\u0627","type":"STREET","district_id":1449},{"title":"\u0645\u0648\u0644\u0648\u06cc","type":"STREET","district_id":1449},{"title":"\u0645\u062f\u0631\u0633","type":"STREET","district_id":1449},{"title":"\u0645\u0635\u0644\u06cc","type":"STREET","district_id":1449},{"title":"\u0627\u062f\u06cc\u0628","type":"STREET","district_id":1449},{"title":"\u0622\u0630\u0631","type":"STREET","district_id":377},{"title":"\u06a9\u0645\u0627\u0644 \u0627\u0633\u0645\u0627\u0639\u06cc\u0644","type":"STREET","district_id":377},{"title":"\u0641\u0631\u062f\u0648\u0633\u06cc","type":"STREET","district_id":377},{"title":"\u0634\u0645\u0633 \u0622\u0628\u0627\u062f\u06cc","type":"STREET","district_id":377},{"title":"\u0635\u0627\u0626\u0628","type":"STREET","district_id":377},{"title":"\u0633\u0631\u0648\u0634","type":"STREET","district_id":1574},{"title":"\u062f\u0634\u062a\u0633\u062a\u0627\u0646","type":"STREET","district_id":1574},{"title":"\u067e\u0631\u0648\u06cc\u0646","type":"STREET","district_id":1574},{"title":"\u0641\u0631\u0633\u0627\u0646","type":"STREET","district_id":1574},{"title":"\u06af\u0644\u0633\u062a\u0627\u0646","type":"STREET","district_id":1574},{"title":"\u0647\u0645\u0627\u0641\u0631","type":"STREET","district_id":1574},{"title":"\u062d\u06a9\u06cc\u0645 \u0634\u0641\u0627\u06cc\u06cc","type":"STREET","district_id":1574},{"title":"\u0622\u0644 \u062e\u062c\u0646\u062f","type":"STREET","district_id":1574},{"title":"\u0641\u0631\u062f\u0648\u0633\u06cc","type":"STREET","district_id":1488},{"title":"\u062e\u0648\u0627\u062c\u0648","type":"STREET","district_id":1488},{"title":"\u0645\u0646\u0648\u0686\u0647\u0631\u06cc","type":"STREET","district_id":1488},{"title":"\u0639\u0627\u0641\u06cc\u062a","type":"STREET","district_id":1488},{"title":"\u0627\u0645\u0627\u0645 \u062e\u0645\u06cc\u0646\u06cc","type":"STREET","district_id":1586},{"title":"\u0628\u0627\u063a \u063a\u062f\u06cc\u0631","type":"STREET","district_id":1503},{"title":"\u0634\u0627\u0647\u062f","type":"STREET","district_id":1450},{"title":"\u0628\u0627\u063a \u0632\u06cc\u0627\u0631","type":"STREET","district_id":1533},{"title":"\u0633\u0647\u0631\u0648\u0631\u062f\u06cc","type":"STREET","district_id":1533},{"title":"\u06a9\u0634\u0627\u0648\u0631\u0632","type":"STREET","district_id":1533},{"title":"\u0628\u0632\u0631\u06af\u0645\u0647\u0631","type":"STREET","district_id":1484},{"title":"\u0639\u0644\u0627\u0645\u0647 \u0627\u0645\u06cc\u0646\u06cc \u063a\u0631\u0628\u06cc","type":"STREET","district_id":1484},{"title":"\u06f2\u06f2 \u0628\u0647\u0645\u0646","type":"STREET","district_id":1484},{"title":"\u0646\u0634\u0627\u0637","type":"STREET","district_id":1473},{"title":"\u0647\u0634\u062a \u0628\u0647\u0634\u062a \u063a\u0631\u0628\u06cc","type":"STREET","district_id":1473},{"title":"\u0622\u062a\u0634\u06af\u0627\u0647","type":"STREET","district_id":1546},{"title":"\u0627\u062a\u0634\u06af\u0627\u0647","type":"STREET","district_id":1546},{"title":"\u0631\u0628\u0627\u0637","type":"STREET","district_id":1585},{"title":"\u062f\u06a9\u062a\u0631 \u062d\u0633\u0627\u0628\u06cc","type":"STREET","district_id":1538},{"title":"\u06a9\u0634\u0627\u0648\u0631\u0632","type":"STREET","district_id":1538},{"title":"\u0641\u0631\u0647\u0646\u06af","type":"STREET","district_id":1538},{"title":"\u0648\u062d\u06cc\u062f","type":"STREET","district_id":1538},{"title":"\u0645\u06cc\u062b\u0645","type":"STREET","district_id":1505},{"title":"\u0646\u06cc\u0631\u0648","type":"STREET","district_id":1505},{"title":"\u0647\u0645\u062f\u0627\u0646\u06cc\u0627\u0646","type":"STREET","district_id":1505},{"title":"\u0627\u0645\u0627\u0645 \u062e\u0645\u06cc\u0646\u06cc","type":"STREET","district_id":1587},{"title":"\u062e\u0627\u0646\u0647 \u0627\u0635\u0641\u0647\u0627\u0646","type":"STREET","district_id":1587},{"title":"\u0631\u0632\u0645\u0646\u062f\u06af\u0627\u0646","type":"STREET","district_id":1587},{"title":"\u0645\u0644\u062a","type":"STREET","district_id":1587},{"title":"\u0633\u067e\u0647\u0633\u0627\u0644\u0627\u0631","type":"STREET","district_id":1501},{"title":"\u0628\u0647\u0627\u0631","type":"STREET","district_id":1594},{"title":"\u0647\u0632\u0627\u0631\u062c\u0631\u06cc\u0628","type":"STREET","district_id":1594},{"title":"\u0622\u0628\u0634\u0627\u0631","type":"STREET","district_id":1502},{"title":"\u0647\u0627\u062a\u0641","type":"STREET","district_id":1468},{"title":"\u0628\u0632\u0631\u06af\u0645\u0647\u0631","type":"STREET","district_id":1472},{"title":"\u0645\u0647\u0631\u06af\u0627\u0646","type":"STREET","district_id":1472},{"title":"\u0622\u0631\u0627\u0633\u062a\u0647","type":"STREET","district_id":1472},{"title":"\u0647\u0634\u062a \u0628\u0647\u0634\u062a \u063a\u0631\u0628\u06cc","type":"STREET","district_id":1472},{"title":"\u0631\u0632\u0645\u0646\u062f\u06af\u0627\u0646","type":"STREET","district_id":1578},{"title":"\u062e\u0627\u0646\u0647 \u0627\u0635\u0641\u0647\u0627\u0646","type":"STREET","district_id":1578},{"title":"\u0631\u0628\u0627\u0637","type":"STREET","district_id":1578},{"title":"\u0645\u0644\u06a9 \u0634\u0647\u0631","type":"STREET","district_id":1578},{"title":"\u0622\u062a\u0634\u06af\u0627\u0647","type":"STREET","district_id":1460},{"title":"\u0642\u062f\u0633","type":"STREET","district_id":1471},{"title":"\u067e\u0631\u0648\u06cc\u0646","type":"STREET","district_id":1447},{"title":"\u0634\u0627\u0647\u062f","type":"STREET","district_id":1447},{"title":"\u062f\u0631\u062e\u0634\u0627\u0646","type":"STREET","district_id":1433},{"title":"\u0627\u0645\u0627\u0645 \u0631\u0636\u0627","type":"STREET","district_id":1433},{"title":"\u062e\u0627\u0646\u0647 \u0627\u0635\u0641\u0647\u0627\u0646","type":"STREET","district_id":1433},{"title":"\u062e\u06cc\u0627\u0645","type":"STREET","district_id":378},{"title":"\u0645\u06cc\u0631\u0632\u0627\u0637\u0627\u0647\u0631","type":"STREET","district_id":378},{"title":"\u0634\u0627\u062f\u0627\u0628","type":"STREET","district_id":378},{"title":"\u0622\u0630\u0631\u0645\u0647\u0631","type":"STREET","district_id":378},{"title":"\u0628\u0647\u0634\u062a\u06cc","type":"STREET","district_id":378},{"title":"\u0645\u0642\u062f\u0627\u062f","type":"STREET","district_id":378},{"title":"\u062e\u0627\u0646\u0647 \u0627\u0635\u0641\u0647\u0627\u0646","type":"STREET","district_id":1430},{"title":"\u062e\u0627\u0642\u0627\u0646\u06cc","type":"STREET","district_id":1498},{"title":"\u0628\u0627\u063a \u062f\u0631\u06cc\u0627\u0686\u0647","type":"STREET","district_id":1498},{"title":"\u062f\u0642\u06cc\u0642\u06cc","type":"STREET","district_id":1498},{"title":"\u0646\u0638\u0631 \u063a\u0631\u0628\u06cc","type":"STREET","district_id":1498},{"title":"\u062d\u06a9\u06cc\u0645 \u0646\u0638\u0627\u0645\u06cc","type":"STREET","district_id":1498},{"title":"\u0631\u0648\u062f\u06a9\u06cc","type":"STREET","district_id":1498},{"title":"\u0645\u062d\u062a\u0634\u0645 \u06a9\u0627\u0634\u0627\u0646\u06cc","type":"STREET","district_id":1498},{"title":"\u0627\u0631\u062a\u0634","type":"STREET","district_id":1498},{"title":"\u0646\u06cc\u06a9\u0628\u062e\u062a","type":"STREET","district_id":413},{"title":"\u0645\u06cc\u0631\u062f\u0627\u0645\u0627\u062f","type":"STREET","district_id":1459},{"title":"\u0627\u0631\u062f\u06cc\u0628\u0647\u0634\u062a \u0634\u0645\u0627\u0644\u06cc","type":"STREET","district_id":1459},{"title":"\u0645\u0633\u062c\u062f \u0633\u06cc\u062f","type":"STREET","district_id":1459},{"title":"\u0628\u0631\u0627\u0632\u0646\u062f\u0647","type":"STREET","district_id":1467},{"title":"\u06af\u0644\u0647\u0627","type":"STREET","district_id":1467},{"title":"\u0627\u0631\u062a\u0634","type":"STREET","district_id":1534},{"title":"\u0633\u0647\u0631\u0648\u0631\u062f\u06cc","type":"STREET","district_id":1534},{"title":"\u062c\u0627\u0646\u0628\u0627\u0632\u0627\u0646","type":"STREET","district_id":1534},{"title":"\u0646\u0633\u062a\u0648\u0647","type":"STREET","district_id":1534},{"title":"\u0627\u0628\u0646 \u0633\u06cc\u0646\u0627","type":"STREET","district_id":1453},{"title":"\u0645\u0648\u0644\u0648\u06cc","type":"STREET","district_id":1453},{"title":"\u06a9\u0627\u0648\u0647","type":"STREET","district_id":1453},{"title":"\u0636\u0627\u0628\u0637 \u0632\u0627\u062f\u0647","type":"STREET","district_id":1453},{"title":"\u0627\u062f\u06cc\u0628","type":"STREET","district_id":1453},{"title":"\u067e\u0648\u0631\u06cc\u0627\u06cc \u0648\u0644\u06cc","type":"STREET","district_id":1453},{"title":"\u06af\u0644\u0647\u0627","type":"STREET","district_id":1453},{"title":"\u0645\u0644\u0627\u0635\u062f\u0631\u0627","type":"STREET","district_id":398},{"title":"\u0631\u0633\u0627\u0644\u062a","type":"STREET","district_id":398},{"title":"\u06a9\u0648\u06cc \u0627\u0645\u0627\u0645","type":"STREET","district_id":398},{"title":"\u0641\u0631\u0627\u06cc\u0628\u0648\u0631\u06af","type":"STREET","district_id":398},{"title":"\u0647\u0632\u0627\u0631\u062c\u0631\u06cc\u0628","type":"STREET","district_id":398},{"title":"\u0635\u0641\u0647","type":"STREET","district_id":398},{"title":"\u06a9\u0627\u0631\u06af\u0631","type":"STREET","district_id":398},{"title":"\u0628\u0627\u063a \u0645\u0634\u0647\u062f","type":"STREET","district_id":392},{"title":"\u0627\u0631\u063a\u0648\u0627\u0646\u06cc\u0647","type":"STREET","district_id":392},{"title":"\u0645\u0647\u0631\u0627\u0646","type":"STREET","district_id":392},{"title":"\u0628\u0627\u0632\u0627\u0631\u0686\u0647","type":"STREET","district_id":392},{"title":"\u062c\u06cc \u0634\u06cc\u0631","type":"STREET","district_id":392},{"title":"\u0644\u0627\u0644\u0647","type":"STREET","district_id":392},{"title":"\u0645\u0647\u0631\u0622\u0628\u0627\u062f","type":"STREET","district_id":392},{"title":"\u0633\u062c\u0627\u062f","type":"STREET","district_id":392},{"title":"\u0644\u0627\u0647\u0648\u0631","type":"STREET","district_id":1475},{"title":"\u0628\u0632\u0631\u06af\u0645\u0647\u0631","type":"STREET","district_id":1475},{"title":"\u0645\u0628\u0627\u0631\u0632\u0627\u0646","type":"STREET","district_id":1475},{"title":"\u0633\u06cc\u0645\u06cc\u0646","type":"STREET","district_id":1475},{"title":"\u0634\u0631\u06cc\u0641 \u0648\u0627\u0642\u0641\u06cc","type":"STREET","district_id":1598},{"title":"\u0647\u0634\u062a \u0628\u0647\u0634\u062a \u063a\u0631\u0628\u06cc","type":"STREET","district_id":1598},{"title":"\u0631\u0628\u0627\u0637 \u0633\u0648\u0645","type":"STREET","district_id":383},{"title":"\u06af\u0644\u0633\u062a\u0627\u0646","type":"STREET","district_id":383},{"title":"\u0646\u06af\u0627\u0631\u0633\u062a\u0627\u0646","type":"STREET","district_id":383},{"title":"\u0627\u0646\u0642\u0644\u0627\u0628 \u0627\u0633\u0644\u0627\u0645\u06cc","type":"STREET","district_id":383},{"title":"\u0628\u0647\u0627\u0631\u0633\u062a\u0627\u0646","type":"STREET","district_id":383},{"title":"\u0645\u0647\u062a\u0627\u0628","type":"STREET","district_id":383},{"title":"\u0646\u06af\u06cc\u0646","type":"STREET","district_id":383},{"title":"\u0646\u0642\u0634 \u062c\u0647\u0627\u0646","type":"STREET","district_id":383},{"title":"\u0645\u0634\u062a\u0627\u0642 \u062f\u0648\u0645","type":"STREET","district_id":1494},{"title":"\u0628\u0627\u063a \u063a\u062f\u06cc\u0631","type":"STREET","district_id":1494},{"title":"\u0645\u0647\u0631","type":"STREET","district_id":1494},{"title":"\u067e\u0646\u062c \u0622\u0630\u0631","type":"STREET","district_id":1583},{"title":"\u0637\u06cc\u0628","type":"STREET","district_id":1461},{"title":"\u062a\u0647\u0631\u0627\u0646","type":"STREET","district_id":1461},{"title":"\u0645\u06cc\u0631\u062f\u0627\u0645\u0627\u062f","type":"STREET","district_id":1461},{"title":"\u0645\u06cc\u0631\u0632\u0627\u0637\u0627\u0647\u0631","type":"STREET","district_id":1493},{"title":"\u0628\u0627\u063a \u062f\u0631\u06cc\u0627\u0686\u0647","type":"STREET","district_id":1493},{"title":"\u062e\u06cc\u0627\u0645","type":"STREET","district_id":1493},{"title":"\u0648\u062d\u06cc\u062f","type":"STREET","district_id":1493},{"title":"\u0646\u0638\u0631 \u063a\u0631\u0628\u06cc","type":"STREET","district_id":1493},{"title":"\u0627\u0631\u062a\u0634","type":"STREET","district_id":1493},{"title":"\u0644\u0646\u0628\u0627\u0646","type":"STREET","district_id":1493},{"title":"\u0635\u0627\u0626\u0628","type":"STREET","district_id":1493},{"title":"\u0645\u06cc\u0631\u0632\u0627\u0637\u0627\u0647\u0631","type":"STREET","district_id":1545},{"title":"\u0622\u062a\u0634\u06af\u0627\u0647","type":"STREET","district_id":1545},{"title":"\u0646\u0634\u0627\u0637","type":"STREET","district_id":1522},{"title":"\u0647\u0634\u062a \u0628\u0647\u0634\u062a \u063a\u0631\u0628\u06cc","type":"STREET","district_id":1522},{"title":"\u0631\u0628\u0627\u0637 \u0633\u0648\u0645","type":"STREET","district_id":1440},{"title":"\u0628\u0647\u0627\u0631\u0633\u062a\u0627\u0646","type":"STREET","district_id":1440},{"title":"\u0645\u0647\u062a\u0627\u0628","type":"STREET","district_id":1440},{"title":"\u0645\u0644\u06a9 \u0634\u0647\u0631","type":"STREET","district_id":1440},{"title":"\u0627\u0646\u062f\u06cc\u0634\u0647","type":"STREET","district_id":1440},{"title":"\u0648\u0631\u0632\u0634\u06af\u0627\u0647","type":"STREET","district_id":1440},{"title":"\u063a\u0631\u0636\u06cc","type":"STREET","district_id":1440},{"title":"\u0646\u06af\u06cc\u0646","type":"STREET","district_id":1440},{"title":"\u0634\u0631\u06cc\u0641 \u0648\u0627\u0642\u0641\u06cc","type":"STREET","district_id":1485},{"title":"\u0628\u0632\u0631\u06af\u0645\u0647\u0631","type":"STREET","district_id":1485},{"title":"\u06f2\u06f2 \u0628\u0647\u0645\u0646","type":"STREET","district_id":1485},{"title":"\u0641\u0631\u0647\u0646\u06af\u06cc\u0627\u0646","type":"STREET","district_id":1485},{"title":"\u0639\u0644\u0627\u0645\u0647 \u0627\u0645\u06cc\u0646\u06cc \u063a\u0631\u0628\u06cc","type":"STREET","district_id":1485},{"title":"\u0631\u0648\u062f\u06a9\u06cc","type":"STREET","district_id":1531},{"title":"\u0628\u0627\u063a \u062f\u0631\u06cc\u0627\u0686\u0647","type":"STREET","district_id":1531},{"title":"\u0633\u067e\u0647\u0631","type":"STREET","district_id":1531},{"title":"\u0627\u0631\u062a\u0634","type":"STREET","district_id":1531},{"title":"\u0633\u0647\u0631\u0648\u0631\u062f\u06cc","type":"STREET","district_id":1531},{"title":"\u062f\u0642\u06cc\u0642\u06cc","type":"STREET","district_id":1531},{"title":"\u0639\u0644\u0627\u0645\u0647 \u062c\u0639\u0641\u0631\u06cc","type":"STREET","district_id":1531},{"title":"\u0645\u062d\u062a\u0634\u0645 \u06a9\u0627\u0634\u0627\u0646\u06cc","type":"STREET","district_id":1531},{"title":"\u0686\u0647\u0627\u0631\u0628\u0627\u063a \u067e\u0627\u06cc\u06cc\u0646","type":"STREET","district_id":403},{"title":"\u0645\u06cc\u0631\u062f\u0627\u0645\u0627\u062f","type":"STREET","district_id":403},{"title":"\u0641\u0631\u0634\u0627\u062f\u06cc","type":"STREET","district_id":403},{"title":"\u0641\u0644\u0633\u0637\u06cc\u0646","type":"STREET","district_id":403},{"title":"\u062f\u0631\u0648\u0627\u0632\u0647 \u062f\u0648\u0644\u062a","type":"STREET","district_id":403},{"title":"\u0622\u0645\u0627\u062f\u06af\u0627\u0647","type":"STREET","district_id":403},{"title":"\u067e\u0631\u0648\u06cc\u0646","type":"STREET","district_id":1573},{"title":"\u0645\u06cc\u062b\u0645","type":"STREET","district_id":1573},{"title":"\u062c\u06cc","type":"STREET","district_id":1573},{"title":"\u0645\u0639\u0631\u0627\u062c","type":"STREET","district_id":1573},{"title":"\u062e\u0648\u0627\u062c\u0647 \u0639\u0645\u06cc\u062f","type":"STREET","district_id":1573},{"title":"\u0639\u0633\u06af\u0631\u06cc\u0647","type":"STREET","district_id":1573},{"title":"\u0632\u0631\u06cc\u0646\u06a9\u0648\u0628","type":"STREET","district_id":1573},{"title":"\u0633\u0631\u0648\u0634","type":"STREET","district_id":1573},{"title":"\u0633\u067e\u0647\u0633\u0627\u0644\u0627\u0631","type":"STREET","district_id":1592},{"title":"\u062d\u062c\u062a\u06cc\u0647","type":"STREET","district_id":1592},{"title":"\u0645\u0647\u062f\u06cc\u0647","type":"STREET","district_id":1481}] \ No newline at end of file diff --git a/composer.json b/composer.json index 84f24fd..f384961 100644 --- a/composer.json +++ b/composer.json @@ -24,13 +24,14 @@ "wm/common": "dev-master", "wm/core": "dev-master", "wm/crm": "dev-master", - "wm/portfolio": "dev-master", "wm/product": "dev-master", "wm/service": "dev-master", "wm/store": "dev-master", "wm/finance": "dev-master", - "wm/admin": "dev-master", + "wm/admin": "dev-master", "wm/web-builder": "dev-master", + "wm/service-store": "dev-master", + "wm/lms": "dev-master", "wm/notification": "dev-master", "wm/roll-call": "dev-master", "zircote/swagger-php": "^3.0" @@ -85,7 +86,6 @@ "@php artisan key:generate --ansi" ] }, - "repositories": [ { "type": "path", @@ -103,10 +103,6 @@ "type": "path", "url": "./modules/wm-blog" }, - { - "type": "path", - "url": "./modules/wm-portfolio" - }, { "type": "path", "url": "./modules/wm-product" @@ -131,6 +127,14 @@ "type": "path", "url": "./modules/wm-web-builder" }, + { + "type": "path", + "url": "./modules/wm-service-store" + }, + { + "type": "path", + "url": "./modules/wm-lms" + }, { "type": "path", "url": "./modules/wm-finance" diff --git a/composer.lock b/composer.lock index f81151e..938ed44 100644 --- a/composer.lock +++ b/composer.lock @@ -4,29 +4,80 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "1316abde15d53e4ae11a43df3a3a051b", + "content-hash": "e5a0a40fb9cb0238a54342fc9574a5ab", "packages": [ + { + "name": "aws/aws-crt-php", + "version": "v1.0.2", + "source": { + "type": "git", + "url": "https://github.com/awslabs/aws-crt-php.git", + "reference": "3942776a8c99209908ee0b287746263725685732" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/3942776a8c99209908ee0b287746263725685732", + "reference": "3942776a8c99209908ee0b287746263725685732", + "shasum": "" + }, + "require": { + "php": ">=5.5" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35|^5.4.3" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "AWS SDK Common Runtime Team", + "email": "aws-sdk-common-runtime@amazon.com" + } + ], + "description": "AWS Common Runtime for PHP", + "homepage": "http://aws.amazon.com/sdkforphp", + "keywords": [ + "amazon", + "aws", + "crt", + "sdk" + ], + "support": { + "issues": "https://github.com/awslabs/aws-crt-php/issues", + "source": "https://github.com/awslabs/aws-crt-php/tree/v1.0.2" + }, + "time": "2021-09-03T22:57:30+00:00" + }, { "name": "aws/aws-sdk-php", - "version": "3.185.20", + "version": "3.207.1", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "41aae0221d449b29e400cfead948a6b0343756db" + "reference": "3120e8adc7b2b060a7eb4c3c5e2a8c25c0f95a94" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/41aae0221d449b29e400cfead948a6b0343756db", - "reference": "41aae0221d449b29e400cfead948a6b0343756db", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/3120e8adc7b2b060a7eb4c3c5e2a8c25c0f95a94", + "reference": "3120e8adc7b2b060a7eb4c3c5e2a8c25c0f95a94", "shasum": "" }, "require": { + "aws/aws-crt-php": "^1.0.2", "ext-json": "*", "ext-pcre": "*", "ext-simplexml": "*", "guzzlehttp/guzzle": "^5.3.3|^6.2.1|^7.0", "guzzlehttp/promises": "^1.4.0", - "guzzlehttp/psr7": "^1.7.0", + "guzzlehttp/psr7": "^1.7.0|^2.0", "mtdowling/jmespath.php": "^2.6", "php": ">=5.5" }, @@ -92,22 +143,22 @@ "support": { "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80", "issues": "https://github.com/aws/aws-sdk-php/issues", - "source": "https://github.com/aws/aws-sdk-php/tree/3.185.20" + "source": "https://github.com/aws/aws-sdk-php/tree/3.207.1" }, - "time": "2021-07-23T18:16:11+00:00" + "time": "2021-12-01T23:44:02+00:00" }, { "name": "brick/math", - "version": "0.9.2", + "version": "0.9.3", "source": { "type": "git", "url": "https://github.com/brick/math.git", - "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0" + "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/brick/math/zipball/dff976c2f3487d42c1db75a3b180e2b9f0e72ce0", - "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0", + "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae", + "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae", "shasum": "" }, "require": { @@ -117,7 +168,7 @@ "require-dev": { "php-coveralls/php-coveralls": "^2.2", "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0", - "vimeo/psalm": "4.3.2" + "vimeo/psalm": "4.9.2" }, "type": "library", "autoload": { @@ -142,15 +193,19 @@ ], "support": { "issues": "https://github.com/brick/math/issues", - "source": "https://github.com/brick/math/tree/0.9.2" + "source": "https://github.com/brick/math/tree/0.9.3" }, "funding": [ + { + "url": "https://github.com/BenMorel", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/brick/math", "type": "tidelift" } ], - "time": "2021-01-20T22:51:39+00:00" + "time": "2021-08-15T20:50:18+00:00" }, { "name": "clue/stream-filter", @@ -336,16 +391,16 @@ }, { "name": "dflydev/dot-access-data", - "version": "v3.0.0", + "version": "v3.0.1", "source": { "type": "git", "url": "https://github.com/dflydev/dflydev-dot-access-data.git", - "reference": "e04ff030d24a33edc2421bef305e32919dd78fc3" + "reference": "0992cc19268b259a39e86f296da5f0677841f42c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/e04ff030d24a33edc2421bef305e32919dd78fc3", - "reference": "e04ff030d24a33edc2421bef305e32919dd78fc3", + "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/0992cc19268b259a39e86f296da5f0677841f42c", + "reference": "0992cc19268b259a39e86f296da5f0677841f42c", "shasum": "" }, "require": { @@ -405,22 +460,22 @@ ], "support": { "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", - "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.0" + "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.1" }, - "time": "2021-01-01T22:08:42+00:00" + "time": "2021-08-13T13:06:58+00:00" }, { "name": "doctrine/annotations", - "version": "1.13.1", + "version": "1.13.2", "source": { "type": "git", "url": "https://github.com/doctrine/annotations.git", - "reference": "e6e7b7d5b45a2f2abc5460cc6396480b2b1d321f" + "reference": "5b668aef16090008790395c02c893b1ba13f7e08" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/annotations/zipball/e6e7b7d5b45a2f2abc5460cc6396480b2b1d321f", - "reference": "e6e7b7d5b45a2f2abc5460cc6396480b2b1d321f", + "url": "https://api.github.com/repos/doctrine/annotations/zipball/5b668aef16090008790395c02c893b1ba13f7e08", + "reference": "5b668aef16090008790395c02c893b1ba13f7e08", "shasum": "" }, "require": { @@ -477,40 +532,36 @@ ], "support": { "issues": "https://github.com/doctrine/annotations/issues", - "source": "https://github.com/doctrine/annotations/tree/1.13.1" + "source": "https://github.com/doctrine/annotations/tree/1.13.2" }, - "time": "2021-05-16T18:07:53+00:00" + "time": "2021-08-05T19:00:23+00:00" }, { "name": "doctrine/inflector", - "version": "2.0.3", + "version": "2.0.4", "source": { "type": "git", "url": "https://github.com/doctrine/inflector.git", - "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210" + "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210", - "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89", + "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89", "shasum": "" }, "require": { "php": "^7.2 || ^8.0" }, "require-dev": { - "doctrine/coding-standard": "^7.0", - "phpstan/phpstan": "^0.11", - "phpstan/phpstan-phpunit": "^0.11", - "phpstan/phpstan-strict-rules": "^0.11", - "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0" + "doctrine/coding-standard": "^8.2", + "phpstan/phpstan": "^0.12", + "phpstan/phpstan-phpunit": "^0.12", + "phpstan/phpstan-strict-rules": "^0.12", + "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0", + "vimeo/psalm": "^4.10" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.0.x-dev" - } - }, "autoload": { "psr-4": { "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" @@ -558,7 +609,7 @@ ], "support": { "issues": "https://github.com/doctrine/inflector/issues", - "source": "https://github.com/doctrine/inflector/tree/2.0.x" + "source": "https://github.com/doctrine/inflector/tree/2.0.4" }, "funding": [ { @@ -574,7 +625,7 @@ "type": "tidelift" } ], - "time": "2020-05-29T15:13:26+00:00" + "time": "2021-10-22T20:16:43+00:00" }, { "name": "doctrine/lexer", @@ -899,16 +950,16 @@ }, { "name": "firebase/php-jwt", - "version": "v5.4.0", + "version": "v5.5.1", "source": { "type": "git", "url": "https://github.com/firebase/php-jwt.git", - "reference": "d2113d9b2e0e349796e72d2a63cf9319100382d2" + "reference": "83b609028194aa042ea33b5af2d41a7427de80e6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/firebase/php-jwt/zipball/d2113d9b2e0e349796e72d2a63cf9319100382d2", - "reference": "d2113d9b2e0e349796e72d2a63cf9319100382d2", + "url": "https://api.github.com/repos/firebase/php-jwt/zipball/83b609028194aa042ea33b5af2d41a7427de80e6", + "reference": "83b609028194aa042ea33b5af2d41a7427de80e6", "shasum": "" }, "require": { @@ -950,37 +1001,32 @@ ], "support": { "issues": "https://github.com/firebase/php-jwt/issues", - "source": "https://github.com/firebase/php-jwt/tree/v5.4.0" + "source": "https://github.com/firebase/php-jwt/tree/v5.5.1" }, - "time": "2021-06-23T19:00:23+00:00" + "time": "2021-11-08T20:18:51+00:00" }, { "name": "graham-campbell/result-type", - "version": "v1.0.1", + "version": "v1.0.4", "source": { "type": "git", "url": "https://github.com/GrahamCampbell/Result-Type.git", - "reference": "7e279d2cd5d7fbb156ce46daada972355cea27bb" + "reference": "0690bde05318336c7221785f2a932467f98b64ca" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/7e279d2cd5d7fbb156ce46daada972355cea27bb", - "reference": "7e279d2cd5d7fbb156ce46daada972355cea27bb", + "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/0690bde05318336c7221785f2a932467f98b64ca", + "reference": "0690bde05318336c7221785f2a932467f98b64ca", "shasum": "" }, "require": { - "php": "^7.0|^8.0", - "phpoption/phpoption": "^1.7.3" + "php": "^7.0 || ^8.0", + "phpoption/phpoption": "^1.8" }, "require-dev": { - "phpunit/phpunit": "^6.5|^7.5|^8.5|^9.0" + "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0-dev" - } - }, "autoload": { "psr-4": { "GrahamCampbell\\ResultType\\": "src/" @@ -993,7 +1039,8 @@ "authors": [ { "name": "Graham Campbell", - "email": "graham@alt-three.com" + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" } ], "description": "An Implementation Of The Result Type", @@ -1006,7 +1053,7 @@ ], "support": { "issues": "https://github.com/GrahamCampbell/Result-Type/issues", - "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.0.1" + "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.0.4" }, "funding": [ { @@ -1018,28 +1065,29 @@ "type": "tidelift" } ], - "time": "2020-04-13T13:17:36+00:00" + "time": "2021-11-21T21:41:47+00:00" }, { "name": "guzzlehttp/guzzle", - "version": "7.3.0", + "version": "7.4.0", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "7008573787b430c1c1f650e3722d9bba59967628" + "reference": "868b3571a039f0ebc11ac8f344f4080babe2cb94" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7008573787b430c1c1f650e3722d9bba59967628", - "reference": "7008573787b430c1c1f650e3722d9bba59967628", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/868b3571a039f0ebc11ac8f344f4080babe2cb94", + "reference": "868b3571a039f0ebc11ac8f344f4080babe2cb94", "shasum": "" }, "require": { "ext-json": "*", - "guzzlehttp/promises": "^1.4", - "guzzlehttp/psr7": "^1.7 || ^2.0", + "guzzlehttp/promises": "^1.5", + "guzzlehttp/psr7": "^1.8.3 || ^2.1", "php": "^7.2.5 || ^8.0", - "psr/http-client": "^1.0" + "psr/http-client": "^1.0", + "symfony/deprecation-contracts": "^2.2" }, "provide": { "psr/http-client-implementation": "1.0" @@ -1049,7 +1097,7 @@ "ext-curl": "*", "php-http/client-integration-tests": "^3.0", "phpunit/phpunit": "^8.5.5 || ^9.3.5", - "psr/log": "^1.1" + "psr/log": "^1.1 || ^2.0 || ^3.0" }, "suggest": { "ext-curl": "Required for CURL handler support", @@ -1059,7 +1107,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "7.3-dev" + "dev-master": "7.4-dev" } }, "autoload": { @@ -1075,19 +1123,43 @@ "MIT" ], "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, { "name": "Michael Dowling", "email": "mtdowling@gmail.com", "homepage": "https://github.com/mtdowling" }, + { + "name": "Jeremy Lindblom", + "email": "jeremeamia@gmail.com", + "homepage": "https://github.com/jeremeamia" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, { "name": "Márk Sági-Kazár", "email": "mark.sagikazar@gmail.com", - "homepage": "https://sagikazarmark.hu" + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" } ], "description": "Guzzle is a PHP HTTP client library", - "homepage": "http://guzzlephp.org/", "keywords": [ "client", "curl", @@ -1101,7 +1173,7 @@ ], "support": { "issues": "https://github.com/guzzle/guzzle/issues", - "source": "https://github.com/guzzle/guzzle/tree/7.3.0" + "source": "https://github.com/guzzle/guzzle/tree/7.4.0" }, "funding": [ { @@ -1113,28 +1185,24 @@ "type": "github" }, { - "url": "https://github.com/alexeyshockov", - "type": "github" - }, - { - "url": "https://github.com/gmponos", - "type": "github" + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle", + "type": "tidelift" } ], - "time": "2021-03-23T11:33:13+00:00" + "time": "2021-10-18T09:52:00+00:00" }, { "name": "guzzlehttp/promises", - "version": "1.4.1", + "version": "1.5.1", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d" + "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d", - "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d", + "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da", + "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da", "shasum": "" }, "require": { @@ -1146,7 +1214,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.4-dev" + "dev-master": "1.5-dev" } }, "autoload": { @@ -1162,10 +1230,25 @@ "MIT" ], "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, { "name": "Michael Dowling", "email": "mtdowling@gmail.com", "homepage": "https://github.com/mtdowling" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" } ], "description": "Guzzle promises library", @@ -1174,35 +1257,52 @@ ], "support": { "issues": "https://github.com/guzzle/promises/issues", - "source": "https://github.com/guzzle/promises/tree/1.4.1" + "source": "https://github.com/guzzle/promises/tree/1.5.1" }, - "time": "2021-03-07T09:25:29+00:00" + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises", + "type": "tidelift" + } + ], + "time": "2021-10-22T20:56:57+00:00" }, { "name": "guzzlehttp/psr7", - "version": "1.8.2", + "version": "2.1.0", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "dc960a912984efb74d0a90222870c72c87f10c91" + "reference": "089edd38f5b8abba6cb01567c2a8aaa47cec4c72" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/dc960a912984efb74d0a90222870c72c87f10c91", - "reference": "dc960a912984efb74d0a90222870c72c87f10c91", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/089edd38f5b8abba6cb01567c2a8aaa47cec4c72", + "reference": "089edd38f5b8abba6cb01567c2a8aaa47cec4c72", "shasum": "" }, "require": { - "php": ">=5.4.0", - "psr/http-message": "~1.0", - "ralouphie/getallheaders": "^2.0.5 || ^3.0.0" + "php": "^7.2.5 || ^8.0", + "psr/http-factory": "^1.0", + "psr/http-message": "^1.0", + "ralouphie/getallheaders": "^3.0" }, "provide": { + "psr/http-factory-implementation": "1.0", "psr/http-message-implementation": "1.0" }, "require-dev": { - "ext-zlib": "*", - "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10" + "bamarni/composer-bin-plugin": "^1.4.1", + "http-interop/http-factory-tests": "^0.9", + "phpunit/phpunit": "^8.5.8 || ^9.3.10" }, "suggest": { "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" @@ -1210,30 +1310,53 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.7-dev" + "dev-master": "2.1-dev" } }, "autoload": { "psr-4": { "GuzzleHttp\\Psr7\\": "src/" - }, - "files": [ - "src/functions_include.php" - ] + } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, { "name": "Michael Dowling", "email": "mtdowling@gmail.com", "homepage": "https://github.com/mtdowling" }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, { "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", "homepage": "https://github.com/Tobion" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://sagikazarmark.hu" } ], "description": "PSR-7 message implementation that also provides common utility methods", @@ -1249,9 +1372,23 @@ ], "support": { "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/1.8.2" + "source": "https://github.com/guzzle/psr7/tree/2.1.0" }, - "time": "2021-04-26T09:17:50+00:00" + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7", + "type": "tidelift" + } + ], + "time": "2021-10-06T17:43:30+00:00" }, { "name": "http-interop/http-factory-guzzle", @@ -1313,16 +1450,16 @@ }, { "name": "intervention/image", - "version": "2.6.1", + "version": "2.7.0", "source": { "type": "git", "url": "https://github.com/Intervention/image.git", - "reference": "0925f10b259679b5d8ca58f3a2add9255ffcda45" + "reference": "9a8cc99d30415ec0b3f7649e1647d03a55698545" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Intervention/image/zipball/0925f10b259679b5d8ca58f3a2add9255ffcda45", - "reference": "0925f10b259679b5d8ca58f3a2add9255ffcda45", + "url": "https://api.github.com/repos/Intervention/image/zipball/9a8cc99d30415ec0b3f7649e1647d03a55698545", + "reference": "9a8cc99d30415ec0b3f7649e1647d03a55698545", "shasum": "" }, "require": { @@ -1381,7 +1518,7 @@ ], "support": { "issues": "https://github.com/Intervention/image/issues", - "source": "https://github.com/Intervention/image/tree/2.6.1" + "source": "https://github.com/Intervention/image/tree/2.7.0" }, "funding": [ { @@ -1393,20 +1530,20 @@ "type": "github" } ], - "time": "2021-07-22T14:31:53+00:00" + "time": "2021-10-03T14:17:12+00:00" }, { "name": "io-developer/php-whois", - "version": "4.1.2", + "version": "4.1.3", "source": { "type": "git", "url": "https://github.com/io-developer/php-whois.git", - "reference": "c2920627b9f5b5dbecfa4b58bbf8a4792550cb8a" + "reference": "21454dfdf2979d062f80e428e53e0e9f9981add6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/io-developer/php-whois/zipball/c2920627b9f5b5dbecfa4b58bbf8a4792550cb8a", - "reference": "c2920627b9f5b5dbecfa4b58bbf8a4792550cb8a", + "url": "https://api.github.com/repos/io-developer/php-whois/zipball/21454dfdf2979d062f80e428e53e0e9f9981add6", + "reference": "21454dfdf2979d062f80e428e53e0e9f9981add6", "shasum": "" }, "require": { @@ -1453,22 +1590,22 @@ ], "support": { "issues": "https://github.com/io-developer/php-whois/issues", - "source": "https://github.com/io-developer/php-whois/tree/4.1.2" + "source": "https://github.com/io-developer/php-whois/tree/4.1.3" }, - "time": "2021-07-18T15:57:50+00:00" + "time": "2021-08-28T10:18:39+00:00" }, { "name": "jean85/pretty-package-versions", - "version": "2.0.4", + "version": "2.0.5", "source": { "type": "git", "url": "https://github.com/Jean85/pretty-package-versions.git", - "reference": "694492c653c518456af2805f04eec445b997ed1f" + "reference": "ae547e455a3d8babd07b96966b17d7fd21d9c6af" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/694492c653c518456af2805f04eec445b997ed1f", - "reference": "694492c653c518456af2805f04eec445b997ed1f", + "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/ae547e455a3d8babd07b96966b17d7fd21d9c6af", + "reference": "ae547e455a3d8babd07b96966b17d7fd21d9c6af", "shasum": "" }, "require": { @@ -1512,9 +1649,9 @@ ], "support": { "issues": "https://github.com/Jean85/pretty-package-versions/issues", - "source": "https://github.com/Jean85/pretty-package-versions/tree/2.0.4" + "source": "https://github.com/Jean85/pretty-package-versions/tree/2.0.5" }, - "time": "2021-05-26T08:46:42+00:00" + "time": "2021-10-08T21:21:46+00:00" }, { "name": "kalnoy/nestedset", @@ -1581,16 +1718,16 @@ }, { "name": "laravel/framework", - "version": "v8.51.0", + "version": "v8.74.0", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "208d9c0043b4c192a9bb9b15782cc4ec37f28bb0" + "reference": "004ea195012d5132eca07a176a6e587c6a74815e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/208d9c0043b4c192a9bb9b15782cc4ec37f28bb0", - "reference": "208d9c0043b4c192a9bb9b15782cc4ec37f28bb0", + "url": "https://api.github.com/repos/laravel/framework/zipball/004ea195012d5132eca07a176a6e587c6a74815e", + "reference": "004ea195012d5132eca07a176a6e587c6a74815e", "shasum": "" }, "require": { @@ -1600,25 +1737,27 @@ "ext-json": "*", "ext-mbstring": "*", "ext-openssl": "*", - "league/commonmark": "^1.3|^2.0", + "laravel/serializable-closure": "^1.0", + "league/commonmark": "^1.3|^2.0.2", "league/flysystem": "^1.1", "monolog/monolog": "^2.0", - "nesbot/carbon": "^2.31", + "nesbot/carbon": "^2.53.1", "opis/closure": "^3.6", "php": "^7.3|^8.0", "psr/container": "^1.0", + "psr/log": "^1.0 || ^2.0", "psr/simple-cache": "^1.0", - "ramsey/uuid": "^4.0", - "swiftmailer/swiftmailer": "^6.0", - "symfony/console": "^5.1.4", - "symfony/error-handler": "^5.1.4", - "symfony/finder": "^5.1.4", - "symfony/http-foundation": "^5.1.4", - "symfony/http-kernel": "^5.1.4", - "symfony/mime": "^5.1.4", - "symfony/process": "^5.1.4", - "symfony/routing": "^5.1.4", - "symfony/var-dumper": "^5.1.4", + "ramsey/uuid": "^4.2.2", + "swiftmailer/swiftmailer": "^6.3", + "symfony/console": "^5.4", + "symfony/error-handler": "^5.4", + "symfony/finder": "^5.4", + "symfony/http-foundation": "^5.4", + "symfony/http-kernel": "^5.4", + "symfony/mime": "^5.4", + "symfony/process": "^5.4", + "symfony/routing": "^5.4", + "symfony/var-dumper": "^5.4", "tijsverkoyen/css-to-inline-styles": "^2.2.2", "vlucas/phpdotenv": "^5.2", "voku/portable-ascii": "^1.4.8" @@ -1627,7 +1766,8 @@ "tightenco/collect": "<5.5.33" }, "provide": { - "psr/container-implementation": "1.0" + "psr/container-implementation": "1.0", + "psr/simple-cache-implementation": "1.0" }, "replace": { "illuminate/auth": "self.version", @@ -1663,22 +1803,23 @@ "illuminate/view": "self.version" }, "require-dev": { - "aws/aws-sdk-php": "^3.155", - "doctrine/dbal": "^2.6|^3.0", - "filp/whoops": "^2.8", + "aws/aws-sdk-php": "^3.198.1", + "doctrine/dbal": "^2.13.3|^3.1.4", + "filp/whoops": "^2.14.3", "guzzlehttp/guzzle": "^6.5.5|^7.0.1", "league/flysystem-cached-adapter": "^1.0", - "mockery/mockery": "^1.4.2", - "orchestra/testbench-core": "^6.23", + "mockery/mockery": "^1.4.4", + "orchestra/testbench-core": "^6.27", "pda/pheanstalk": "^4.0", - "phpunit/phpunit": "^8.5.8|^9.3.3", - "predis/predis": "^1.1.2", - "symfony/cache": "^5.1.4" + "phpunit/phpunit": "^8.5.19|^9.5.8", + "predis/predis": "^1.1.9", + "symfony/cache": "^5.4" }, "suggest": { - "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).", + "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).", "brianium/paratest": "Required to run tests in parallel (^6.0).", - "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6|^3.0).", + "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).", + "ext-bcmath": "Required to use the multiple_of validation rule.", "ext-ftp": "Required to use the Flysystem FTP driver.", "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().", "ext-memcached": "Required to use the memcache cache driver.", @@ -1686,21 +1827,21 @@ "ext-posix": "Required to use all features of the queue worker.", "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).", "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).", - "filp/whoops": "Required for friendly error pages in development (^2.8).", + "filp/whoops": "Required for friendly error pages in development (^2.14.3).", "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).", "laravel/tinker": "Required to use the tinker console command (^2.0).", "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).", "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).", "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).", - "mockery/mockery": "Required to use mocking (^1.4.2).", + "mockery/mockery": "Required to use mocking (^1.4.4).", "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).", "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).", - "phpunit/phpunit": "Required to use assertions and run tests (^8.5.8|^9.3.3).", - "predis/predis": "Required to use the predis connector (^1.1.2).", + "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).", + "predis/predis": "Required to use the predis connector (^1.1.9).", "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).", - "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0).", - "symfony/cache": "Required to PSR-6 cache bridge (^5.1.4).", - "symfony/filesystem": "Required to enable support for relative symbolic links (^5.1.4).", + "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).", + "symfony/cache": "Required to PSR-6 cache bridge (^5.4).", + "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).", "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).", "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)." }, @@ -1745,20 +1886,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2021-07-20T14:38:36+00:00" + "time": "2021-11-30T15:26:05+00:00" }, { "name": "laravel/passport", - "version": "v10.1.3", + "version": "v10.2.0", "source": { "type": "git", "url": "https://github.com/laravel/passport.git", - "reference": "a5e4471dd99b7638ab5ca3ecab6cd87cf37eb410" + "reference": "1c69a010930a3ce8db348967d8ad9585be4d7d4d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/passport/zipball/a5e4471dd99b7638ab5ca3ecab6cd87cf37eb410", - "reference": "a5e4471dd99b7638ab5ca3ecab6cd87cf37eb410", + "url": "https://api.github.com/repos/laravel/passport/zipball/1c69a010930a3ce8db348967d8ad9585be4d7d4d", + "reference": "1c69a010930a3ce8db348967d8ad9585be4d7d4d", "shasum": "" }, "require": { @@ -1822,20 +1963,79 @@ "issues": "https://github.com/laravel/passport/issues", "source": "https://github.com/laravel/passport" }, - "time": "2021-04-06T14:30:45+00:00" + "time": "2021-11-02T16:45:51+00:00" + }, + { + "name": "laravel/serializable-closure", + "version": "v1.0.5", + "source": { + "type": "git", + "url": "https://github.com/laravel/serializable-closure.git", + "reference": "25de3be1bca1b17d52ff0dc02b646c667ac7266c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/25de3be1bca1b17d52ff0dc02b646c667ac7266c", + "reference": "25de3be1bca1b17d52ff0dc02b646c667ac7266c", + "shasum": "" + }, + "require": { + "php": "^7.3|^8.0" + }, + "require-dev": { + "pestphp/pest": "^1.18", + "phpstan/phpstan": "^0.12.98", + "symfony/var-dumper": "^5.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Laravel\\SerializableClosure\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + }, + { + "name": "Nuno Maduro", + "email": "nuno@laravel.com" + } + ], + "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.", + "keywords": [ + "closure", + "laravel", + "serializable" + ], + "support": { + "issues": "https://github.com/laravel/serializable-closure/issues", + "source": "https://github.com/laravel/serializable-closure" + }, + "time": "2021-11-30T15:53:04+00:00" }, { "name": "laravel/tinker", - "version": "v2.6.1", + "version": "v2.6.2", "source": { "type": "git", "url": "https://github.com/laravel/tinker.git", - "reference": "04ad32c1a3328081097a181875733fa51f402083" + "reference": "c808a7227f97ecfd9219fbf913bad842ea854ddc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/tinker/zipball/04ad32c1a3328081097a181875733fa51f402083", - "reference": "04ad32c1a3328081097a181875733fa51f402083", + "url": "https://api.github.com/repos/laravel/tinker/zipball/c808a7227f97ecfd9219fbf913bad842ea854ddc", + "reference": "c808a7227f97ecfd9219fbf913bad842ea854ddc", "shasum": "" }, "require": { @@ -1888,37 +2088,36 @@ ], "support": { "issues": "https://github.com/laravel/tinker/issues", - "source": "https://github.com/laravel/tinker/tree/v2.6.1" + "source": "https://github.com/laravel/tinker/tree/v2.6.2" }, - "time": "2021-03-02T16:53:12+00:00" + "time": "2021-09-28T15:47:34+00:00" }, { "name": "lcobucci/clock", - "version": "2.0.0", + "version": "2.1.0", "source": { "type": "git", "url": "https://github.com/lcobucci/clock.git", - "reference": "353d83fe2e6ae95745b16b3d911813df6a05bfb3" + "reference": "903513d28e85376a33385ebc601afd2ee69e5653" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/lcobucci/clock/zipball/353d83fe2e6ae95745b16b3d911813df6a05bfb3", - "reference": "353d83fe2e6ae95745b16b3d911813df6a05bfb3", + "url": "https://api.github.com/repos/lcobucci/clock/zipball/903513d28e85376a33385ebc601afd2ee69e5653", + "reference": "903513d28e85376a33385ebc601afd2ee69e5653", "shasum": "" }, "require": { - "php": "^7.4 || ^8.0" + "php": "^8.0" }, "require-dev": { - "infection/infection": "^0.17", - "lcobucci/coding-standard": "^6.0", - "phpstan/extension-installer": "^1.0", + "infection/infection": "^0.25", + "lcobucci/coding-standard": "^8.0", + "phpstan/extension-installer": "^1.1", "phpstan/phpstan": "^0.12", "phpstan/phpstan-deprecation-rules": "^0.12", "phpstan/phpstan-phpunit": "^0.12", "phpstan/phpstan-strict-rules": "^0.12", - "phpunit/php-code-coverage": "9.1.4", - "phpunit/phpunit": "9.3.7" + "phpunit/phpunit": "^9.5" }, "type": "library", "autoload": { @@ -1939,7 +2138,7 @@ "description": "Yet another clock abstraction", "support": { "issues": "https://github.com/lcobucci/clock/issues", - "source": "https://github.com/lcobucci/clock/tree/2.0.x" + "source": "https://github.com/lcobucci/clock/tree/2.1.0" }, "funding": [ { @@ -1951,20 +2150,20 @@ "type": "patreon" } ], - "time": "2020-08-27T18:56:02+00:00" + "time": "2021-10-31T21:32:07+00:00" }, { "name": "lcobucci/jwt", - "version": "4.1.4", + "version": "4.1.5", "source": { "type": "git", "url": "https://github.com/lcobucci/jwt.git", - "reference": "71cf170102c8371ccd933fa4df6252086d144de6" + "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/lcobucci/jwt/zipball/71cf170102c8371ccd933fa4df6252086d144de6", - "reference": "71cf170102c8371ccd933fa4df6252086d144de6", + "url": "https://api.github.com/repos/lcobucci/jwt/zipball/fe2d89f2eaa7087af4aa166c6f480ef04e000582", + "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582", "shasum": "" }, "require": { @@ -1980,7 +2179,7 @@ "infection/infection": "^0.21", "lcobucci/coding-standard": "^6.0", "mikey179/vfsstream": "^1.6.7", - "phpbench/phpbench": "^1.0@alpha", + "phpbench/phpbench": "^1.0", "phpstan/extension-installer": "^1.0", "phpstan/phpstan": "^0.12", "phpstan/phpstan-deprecation-rules": "^0.12", @@ -2013,7 +2212,7 @@ ], "support": { "issues": "https://github.com/lcobucci/jwt/issues", - "source": "https://github.com/lcobucci/jwt/tree/4.1.4" + "source": "https://github.com/lcobucci/jwt/tree/4.1.5" }, "funding": [ { @@ -2025,25 +2224,25 @@ "type": "patreon" } ], - "time": "2021-03-23T23:53:08+00:00" + "time": "2021-09-28T19:34:56+00:00" }, { "name": "league/commonmark", - "version": "2.0.0", + "version": "2.0.2", "source": { "type": "git", "url": "https://github.com/thephpleague/commonmark.git", - "reference": "167142baf9a6b946f99ad9325b06028606f8238e" + "reference": "2df87709f44b0dd733df86aef0830dce9b1f0f13" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/167142baf9a6b946f99ad9325b06028606f8238e", - "reference": "167142baf9a6b946f99ad9325b06028606f8238e", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/2df87709f44b0dd733df86aef0830dce9b1f0f13", + "reference": "2df87709f44b0dd733df86aef0830dce9b1f0f13", "shasum": "" }, "require": { "ext-mbstring": "*", - "league/config": "^1.1", + "league/config": "^1.1.1", "php": "^7.4 || ^8.0", "psr/event-dispatcher": "^1.0", "symfony/polyfill-php80": "^1.15" @@ -2136,24 +2335,24 @@ "type": "tidelift" } ], - "time": "2021-07-24T20:12:58+00:00" + "time": "2021-08-14T14:06:04+00:00" }, { "name": "league/config", - "version": "v1.1.0", + "version": "v1.1.1", "source": { "type": "git", "url": "https://github.com/thephpleague/config.git", - "reference": "20d42d88f12a76ff862e17af4f14a5a4bbfd0925" + "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/config/zipball/20d42d88f12a76ff862e17af4f14a5a4bbfd0925", - "reference": "20d42d88f12a76ff862e17af4f14a5a4bbfd0925", + "url": "https://api.github.com/repos/thephpleague/config/zipball/a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e", + "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e", "shasum": "" }, "require": { - "dflydev/dot-access-data": "^3.0", + "dflydev/dot-access-data": "^3.0.1", "nette/schema": "^1.2", "php": "^7.4 || ^8.0" }, @@ -2218,7 +2417,7 @@ "type": "github" } ], - "time": "2021-06-19T15:52:37+00:00" + "time": "2021-08-14T12:15:32+00:00" }, { "name": "league/event", @@ -2276,16 +2475,16 @@ }, { "name": "league/flysystem", - "version": "1.1.4", + "version": "1.1.8", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "f3ad69181b8afed2c9edf7be5a2918144ff4ea32" + "reference": "c995bb0c23c58c9813d081f9523c9b7bb496698e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/f3ad69181b8afed2c9edf7be5a2918144ff4ea32", - "reference": "f3ad69181b8afed2c9edf7be5a2918144ff4ea32", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/c995bb0c23c58c9813d081f9523c9b7bb496698e", + "reference": "c995bb0c23c58c9813d081f9523c9b7bb496698e", "shasum": "" }, "require": { @@ -2358,7 +2557,7 @@ ], "support": { "issues": "https://github.com/thephpleague/flysystem/issues", - "source": "https://github.com/thephpleague/flysystem/tree/1.1.4" + "source": "https://github.com/thephpleague/flysystem/tree/1.1.8" }, "funding": [ { @@ -2366,7 +2565,7 @@ "type": "other" } ], - "time": "2021-06-23T21:56:05+00:00" + "time": "2021-11-28T21:50:23+00:00" }, { "name": "league/glide", @@ -2435,16 +2634,16 @@ }, { "name": "league/mime-type-detection", - "version": "1.7.0", + "version": "1.9.0", "source": { "type": "git", "url": "https://github.com/thephpleague/mime-type-detection.git", - "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3" + "reference": "aa70e813a6ad3d1558fc927863d47309b4c23e69" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3", - "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/aa70e813a6ad3d1558fc927863d47309b4c23e69", + "reference": "aa70e813a6ad3d1558fc927863d47309b4c23e69", "shasum": "" }, "require": { @@ -2452,7 +2651,7 @@ "php": "^7.2 || ^8.0" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^2.18", + "friendsofphp/php-cs-fixer": "^3.2", "phpstan/phpstan": "^0.12.68", "phpunit/phpunit": "^8.5.8 || ^9.3" }, @@ -2475,7 +2674,7 @@ "description": "Mime-type detection for Flysystem", "support": { "issues": "https://github.com/thephpleague/mime-type-detection/issues", - "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0" + "source": "https://github.com/thephpleague/mime-type-detection/tree/1.9.0" }, "funding": [ { @@ -2487,27 +2686,27 @@ "type": "tidelift" } ], - "time": "2021-01-18T20:58:21+00:00" + "time": "2021-11-21T11:48:40+00:00" }, { "name": "league/oauth2-server", - "version": "8.2.4", + "version": "8.3.3", "source": { "type": "git", "url": "https://github.com/thephpleague/oauth2-server.git", - "reference": "622eaa1f28eb4a2dea0cfc7e4f5280fac794e83c" + "reference": "f5698a3893eda9a17bcd48636990281e7ca77b2a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/oauth2-server/zipball/622eaa1f28eb4a2dea0cfc7e4f5280fac794e83c", - "reference": "622eaa1f28eb4a2dea0cfc7e4f5280fac794e83c", + "url": "https://api.github.com/repos/thephpleague/oauth2-server/zipball/f5698a3893eda9a17bcd48636990281e7ca77b2a", + "reference": "f5698a3893eda9a17bcd48636990281e7ca77b2a", "shasum": "" }, "require": { "defuse/php-encryption": "^2.2.1", "ext-json": "*", "ext-openssl": "*", - "lcobucci/jwt": "^3.4 || ^4.0", + "lcobucci/jwt": "^3.4.6 || ^4.0.4", "league/event": "^2.2", "php": "^7.2 || ^8.0", "psr/http-message": "^1.0.1" @@ -2566,7 +2765,7 @@ ], "support": { "issues": "https://github.com/thephpleague/oauth2-server/issues", - "source": "https://github.com/thephpleague/oauth2-server/tree/8.2.4" + "source": "https://github.com/thephpleague/oauth2-server/tree/8.3.3" }, "funding": [ { @@ -2574,20 +2773,20 @@ "type": "github" } ], - "time": "2020-12-10T11:35:44+00:00" + "time": "2021-10-11T20:41:49+00:00" }, { "name": "maatwebsite/excel", - "version": "3.1.32", + "version": "3.1.33", "source": { "type": "git", "url": "https://github.com/Maatwebsite/Laravel-Excel.git", - "reference": "9dc29b63a77fb7f2f514ef754af3a1b57e83cadf" + "reference": "b2de5ba92c5c1ad9415f0eb7c72838fb3eaaa5b8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/9dc29b63a77fb7f2f514ef754af3a1b57e83cadf", - "reference": "9dc29b63a77fb7f2f514ef754af3a1b57e83cadf", + "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/b2de5ba92c5c1ad9415f0eb7c72838fb3eaaa5b8", + "reference": "b2de5ba92c5c1ad9415f0eb7c72838fb3eaaa5b8", "shasum": "" }, "require": { @@ -2640,7 +2839,7 @@ ], "support": { "issues": "https://github.com/Maatwebsite/Laravel-Excel/issues", - "source": "https://github.com/Maatwebsite/Laravel-Excel/tree/3.1.32" + "source": "https://github.com/Maatwebsite/Laravel-Excel/tree/3.1.33" }, "funding": [ { @@ -2652,7 +2851,7 @@ "type": "github" } ], - "time": "2021-07-08T10:11:21+00:00" + "time": "2021-08-12T15:52:25+00:00" }, { "name": "maennchen/zipstream-php", @@ -2727,16 +2926,16 @@ }, { "name": "markbaker/complex", - "version": "2.0.3", + "version": "3.0.1", "source": { "type": "git", "url": "https://github.com/MarkBaker/PHPComplex.git", - "reference": "6f724d7e04606fd8adaa4e3bb381c3e9db09c946" + "reference": "ab8bc271e404909db09ff2d5ffa1e538085c0f22" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/6f724d7e04606fd8adaa4e3bb381c3e9db09c946", - "reference": "6f724d7e04606fd8adaa4e3bb381c3e9db09c946", + "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/ab8bc271e404909db09ff2d5ffa1e538085c0f22", + "reference": "ab8bc271e404909db09ff2d5ffa1e538085c0f22", "shasum": "" }, "require": { @@ -2752,51 +2951,7 @@ "autoload": { "psr-4": { "Complex\\": "classes/src/" - }, - "files": [ - "classes/src/functions/abs.php", - "classes/src/functions/acos.php", - "classes/src/functions/acosh.php", - "classes/src/functions/acot.php", - "classes/src/functions/acoth.php", - "classes/src/functions/acsc.php", - "classes/src/functions/acsch.php", - "classes/src/functions/argument.php", - "classes/src/functions/asec.php", - "classes/src/functions/asech.php", - "classes/src/functions/asin.php", - "classes/src/functions/asinh.php", - "classes/src/functions/atan.php", - "classes/src/functions/atanh.php", - "classes/src/functions/conjugate.php", - "classes/src/functions/cos.php", - "classes/src/functions/cosh.php", - "classes/src/functions/cot.php", - "classes/src/functions/coth.php", - "classes/src/functions/csc.php", - "classes/src/functions/csch.php", - "classes/src/functions/exp.php", - "classes/src/functions/inverse.php", - "classes/src/functions/ln.php", - "classes/src/functions/log2.php", - "classes/src/functions/log10.php", - "classes/src/functions/negative.php", - "classes/src/functions/pow.php", - "classes/src/functions/rho.php", - "classes/src/functions/sec.php", - "classes/src/functions/sech.php", - "classes/src/functions/sin.php", - "classes/src/functions/sinh.php", - "classes/src/functions/sqrt.php", - "classes/src/functions/tan.php", - "classes/src/functions/tanh.php", - "classes/src/functions/theta.php", - "classes/src/operations/add.php", - "classes/src/operations/subtract.php", - "classes/src/operations/multiply.php", - "classes/src/operations/divideby.php", - "classes/src/operations/divideinto.php" - ] + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -2816,22 +2971,22 @@ ], "support": { "issues": "https://github.com/MarkBaker/PHPComplex/issues", - "source": "https://github.com/MarkBaker/PHPComplex/tree/2.0.3" + "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.1" }, - "time": "2021-06-02T09:44:11+00:00" + "time": "2021-06-29T15:32:53+00:00" }, { "name": "markbaker/matrix", - "version": "2.1.3", + "version": "3.0.0", "source": { "type": "git", "url": "https://github.com/MarkBaker/PHPMatrix.git", - "reference": "174395a901b5ba0925f1d790fa91bab531074b61" + "reference": "c66aefcafb4f6c269510e9ac46b82619a904c576" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/174395a901b5ba0925f1d790fa91bab531074b61", - "reference": "174395a901b5ba0925f1d790fa91bab531074b61", + "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/c66aefcafb4f6c269510e9ac46b82619a904c576", + "reference": "c66aefcafb4f6c269510e9ac46b82619a904c576", "shasum": "" }, "require": { @@ -2851,25 +3006,7 @@ "autoload": { "psr-4": { "Matrix\\": "classes/src/" - }, - "files": [ - "classes/src/Functions/adjoint.php", - "classes/src/Functions/antidiagonal.php", - "classes/src/Functions/cofactors.php", - "classes/src/Functions/determinant.php", - "classes/src/Functions/diagonal.php", - "classes/src/Functions/identity.php", - "classes/src/Functions/inverse.php", - "classes/src/Functions/minors.php", - "classes/src/Functions/trace.php", - "classes/src/Functions/transpose.php", - "classes/src/Operations/add.php", - "classes/src/Operations/directsum.php", - "classes/src/Operations/subtract.php", - "classes/src/Operations/multiply.php", - "classes/src/Operations/divideby.php", - "classes/src/Operations/divideinto.php" - ] + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -2890,30 +3027,30 @@ ], "support": { "issues": "https://github.com/MarkBaker/PHPMatrix/issues", - "source": "https://github.com/MarkBaker/PHPMatrix/tree/2.1.3" + "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.0" }, - "time": "2021-05-25T15:42:17+00:00" + "time": "2021-07-01T19:01:15+00:00" }, { "name": "monolog/monolog", - "version": "2.3.2", + "version": "2.3.5", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", - "reference": "71312564759a7db5b789296369c1a264efc43aad" + "reference": "fd4380d6fc37626e2f799f29d91195040137eba9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/71312564759a7db5b789296369c1a264efc43aad", - "reference": "71312564759a7db5b789296369c1a264efc43aad", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd4380d6fc37626e2f799f29d91195040137eba9", + "reference": "fd4380d6fc37626e2f799f29d91195040137eba9", "shasum": "" }, "require": { "php": ">=7.2", - "psr/log": "^1.0.1" + "psr/log": "^1.0.1 || ^2.0 || ^3.0" }, "provide": { - "psr/log-implementation": "1.0.0" + "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0" }, "require-dev": { "aws/aws-sdk-php": "^2.4.9 || ^3.0", @@ -2921,14 +3058,14 @@ "elasticsearch/elasticsearch": "^7", "graylog2/gelf-php": "^1.4.2", "mongodb/mongodb": "^1.8", - "php-amqplib/php-amqplib": "~2.4", + "php-amqplib/php-amqplib": "~2.4 || ^3", "php-console/php-console": "^3.1.3", "phpspec/prophecy": "^1.6.1", "phpstan/phpstan": "^0.12.91", "phpunit/phpunit": "^8.5", "predis/predis": "^1.1", "rollbar/rollbar": "^1.3", - "ruflin/elastica": ">=0.90 <7.0.1", + "ruflin/elastica": ">=0.90@dev", "swiftmailer/swiftmailer": "^5.3|^6.0" }, "suggest": { @@ -2936,8 +3073,11 @@ "doctrine/couchdb": "Allow sending log messages to a CouchDB server", "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client", "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", + "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler", "ext-mbstring": "Allow to work properly with unicode symbols", "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)", + "ext-openssl": "Required to send log messages using SSL", + "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)", "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)", "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", @@ -2976,7 +3116,7 @@ ], "support": { "issues": "https://github.com/Seldaek/monolog/issues", - "source": "https://github.com/Seldaek/monolog/tree/2.3.2" + "source": "https://github.com/Seldaek/monolog/tree/2.3.5" }, "funding": [ { @@ -2988,7 +3128,7 @@ "type": "tidelift" } ], - "time": "2021-07-23T07:42:52+00:00" + "time": "2021-10-01T21:08:31+00:00" }, { "name": "mtdowling/jmespath.php", @@ -3113,27 +3253,29 @@ }, { "name": "nesbot/carbon", - "version": "2.50.0", + "version": "2.54.0", "source": { "type": "git", "url": "https://github.com/briannesbitt/Carbon.git", - "reference": "f47f17d17602b2243414a44ad53d9f8b9ada5fdb" + "reference": "eed83939f1aed3eee517d03a33f5ec587ac529b5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/f47f17d17602b2243414a44ad53d9f8b9ada5fdb", - "reference": "f47f17d17602b2243414a44ad53d9f8b9ada5fdb", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/eed83939f1aed3eee517d03a33f5ec587ac529b5", + "reference": "eed83939f1aed3eee517d03a33f5ec587ac529b5", "shasum": "" }, "require": { "ext-json": "*", "php": "^7.1.8 || ^8.0", "symfony/polyfill-mbstring": "^1.0", + "symfony/polyfill-php80": "^1.16", "symfony/translation": "^3.4 || ^4.0 || ^5.0" }, "require-dev": { + "doctrine/dbal": "^2.0 || ^3.0", "doctrine/orm": "^2.7", - "friendsofphp/php-cs-fixer": "^2.14 || ^3.0", + "friendsofphp/php-cs-fixer": "^3.0", "kylekatarnls/multi-tester": "^2.0", "phpmd/phpmd": "^2.9", "phpstan/extension-installer": "^1.0", @@ -3147,8 +3289,8 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.x-dev", - "dev-3.x": "3.x-dev" + "dev-3.x": "3.x-dev", + "dev-master": "2.x-dev" }, "laravel": { "providers": [ @@ -3202,25 +3344,25 @@ "type": "tidelift" } ], - "time": "2021-06-28T22:38:45+00:00" + "time": "2021-11-01T21:22:20+00:00" }, { "name": "nette/schema", - "version": "v1.2.1", + "version": "v1.2.2", "source": { "type": "git", "url": "https://github.com/nette/schema.git", - "reference": "f5ed39fc96358f922cedfd1e516f0dadf5d2be0d" + "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/schema/zipball/f5ed39fc96358f922cedfd1e516f0dadf5d2be0d", - "reference": "f5ed39fc96358f922cedfd1e516f0dadf5d2be0d", + "url": "https://api.github.com/repos/nette/schema/zipball/9a39cef03a5b34c7de64f551538cbba05c2be5df", + "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df", "shasum": "" }, "require": { - "nette/utils": "^3.1.4 || ^4.0", - "php": ">=7.1 <8.1" + "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0", + "php": ">=7.1 <8.2" }, "require-dev": { "nette/tester": "^2.3 || ^2.4", @@ -3262,33 +3404,33 @@ ], "support": { "issues": "https://github.com/nette/schema/issues", - "source": "https://github.com/nette/schema/tree/v1.2.1" + "source": "https://github.com/nette/schema/tree/v1.2.2" }, - "time": "2021-03-04T17:51:11+00:00" + "time": "2021-10-15T11:40:02+00:00" }, { "name": "nette/utils", - "version": "v3.2.2", + "version": "v3.2.6", "source": { "type": "git", "url": "https://github.com/nette/utils.git", - "reference": "967cfc4f9a1acd5f1058d76715a424c53343c20c" + "reference": "2f261e55bd6a12057442045bf2c249806abc1d02" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/utils/zipball/967cfc4f9a1acd5f1058d76715a424c53343c20c", - "reference": "967cfc4f9a1acd5f1058d76715a424c53343c20c", + "url": "https://api.github.com/repos/nette/utils/zipball/2f261e55bd6a12057442045bf2c249806abc1d02", + "reference": "2f261e55bd6a12057442045bf2c249806abc1d02", "shasum": "" }, "require": { - "php": ">=7.2 <8.1" + "php": ">=7.2 <8.2" }, "conflict": { "nette/di": "<3.0.6" }, "require-dev": { "nette/tester": "~2.0", - "phpstan/phpstan": "^0.12", + "phpstan/phpstan": "^1.0", "tracy/tracy": "^2.3" }, "suggest": { @@ -3347,22 +3489,22 @@ ], "support": { "issues": "https://github.com/nette/utils/issues", - "source": "https://github.com/nette/utils/tree/v3.2.2" + "source": "https://github.com/nette/utils/tree/v3.2.6" }, - "time": "2021-03-03T22:53:25+00:00" + "time": "2021-11-24T15:47:23+00:00" }, { "name": "nikic/php-parser", - "version": "v4.12.0", + "version": "v4.13.2", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "6608f01670c3cc5079e18c1dab1104e002579143" + "reference": "210577fe3cf7badcc5814d99455df46564f3c077" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6608f01670c3cc5079e18c1dab1104e002579143", - "reference": "6608f01670c3cc5079e18c1dab1104e002579143", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/210577fe3cf7badcc5814d99455df46564f3c077", + "reference": "210577fe3cf7badcc5814d99455df46564f3c077", "shasum": "" }, "require": { @@ -3403,9 +3545,9 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v4.12.0" + "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.2" }, - "time": "2021-07-21T10:44:31+00:00" + "time": "2021-11-30T19:35:32+00:00" }, { "name": "nyholm/psr7", @@ -3668,16 +3810,16 @@ }, { "name": "php-http/client-common", - "version": "2.4.0", + "version": "2.5.0", "source": { "type": "git", "url": "https://github.com/php-http/client-common.git", - "reference": "29e0c60d982f04017069483e832b92074d0a90b2" + "reference": "d135751167d57e27c74de674d6a30cef2dc8e054" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-http/client-common/zipball/29e0c60d982f04017069483e832b92074d0a90b2", - "reference": "29e0c60d982f04017069483e832b92074d0a90b2", + "url": "https://api.github.com/repos/php-http/client-common/zipball/d135751167d57e27c74de674d6a30cef2dc8e054", + "reference": "d135751167d57e27c74de674d6a30cef2dc8e054", "shasum": "" }, "require": { @@ -3688,14 +3830,14 @@ "psr/http-client": "^1.0", "psr/http-factory": "^1.0", "psr/http-message": "^1.0", - "symfony/options-resolver": "^2.6 || ^3.4.20 || ~4.0.15 || ~4.1.9 || ^4.2.1 || ^5.0", + "symfony/options-resolver": "~4.0.15 || ~4.1.9 || ^4.2.1 || ^5.0 || ^6.0", "symfony/polyfill-php80": "^1.17" }, "require-dev": { "doctrine/instantiator": "^1.1", "guzzlehttp/psr7": "^1.4", "nyholm/psr7": "^1.2", - "phpspec/phpspec": "^5.1 || ^6.0", + "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1", "phpspec/prophecy": "^1.10.2", "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.3" }, @@ -3737,22 +3879,22 @@ ], "support": { "issues": "https://github.com/php-http/client-common/issues", - "source": "https://github.com/php-http/client-common/tree/2.4.0" + "source": "https://github.com/php-http/client-common/tree/2.5.0" }, - "time": "2021-07-05T08:19:25+00:00" + "time": "2021-11-26T15:01:24+00:00" }, { "name": "php-http/discovery", - "version": "1.14.0", + "version": "1.14.1", "source": { "type": "git", "url": "https://github.com/php-http/discovery.git", - "reference": "778f722e29250c1fac0bbdef2c122fa5d038c9eb" + "reference": "de90ab2b41d7d61609f504e031339776bc8c7223" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-http/discovery/zipball/778f722e29250c1fac0bbdef2c122fa5d038c9eb", - "reference": "778f722e29250c1fac0bbdef2c122fa5d038c9eb", + "url": "https://api.github.com/repos/php-http/discovery/zipball/de90ab2b41d7d61609f504e031339776bc8c7223", + "reference": "de90ab2b41d7d61609f504e031339776bc8c7223", "shasum": "" }, "require": { @@ -3805,9 +3947,9 @@ ], "support": { "issues": "https://github.com/php-http/discovery/issues", - "source": "https://github.com/php-http/discovery/tree/1.14.0" + "source": "https://github.com/php-http/discovery/tree/1.14.1" }, - "time": "2021-06-01T14:30:21+00:00" + "time": "2021-09-18T07:57:46+00:00" }, { "name": "php-http/httplug", @@ -3873,16 +4015,16 @@ }, { "name": "php-http/message", - "version": "1.11.1", + "version": "1.12.0", "source": { "type": "git", "url": "https://github.com/php-http/message.git", - "reference": "887734d9c515ad9a564f6581a682fff87a6253cc" + "reference": "39eb7548be982a81085fe5a6e2a44268cd586291" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-http/message/zipball/887734d9c515ad9a564f6581a682fff87a6253cc", - "reference": "887734d9c515ad9a564f6581a682fff87a6253cc", + "url": "https://api.github.com/repos/php-http/message/zipball/39eb7548be982a81085fe5a6e2a44268cd586291", + "reference": "39eb7548be982a81085fe5a6e2a44268cd586291", "shasum": "" }, "require": { @@ -3941,9 +4083,9 @@ ], "support": { "issues": "https://github.com/php-http/message/issues", - "source": "https://github.com/php-http/message/tree/1.11.1" + "source": "https://github.com/php-http/message/tree/1.12.0" }, - "time": "2021-05-24T18:11:08+00:00" + "time": "2021-08-29T09:13:12+00:00" }, { "name": "php-http/message-factory", @@ -4058,16 +4200,16 @@ }, { "name": "phpoffice/phpspreadsheet", - "version": "1.18.0", + "version": "1.20.0", "source": { "type": "git", "url": "https://github.com/PHPOffice/PhpSpreadsheet.git", - "reference": "418cd304e8e6b417ea79c3b29126a25dc4b1170c" + "reference": "44436f270bb134b4a94670f3d020a85dfa0a3c02" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/418cd304e8e6b417ea79c3b29126a25dc4b1170c", - "reference": "418cd304e8e6b417ea79c3b29126a25dc4b1170c", + "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/44436f270bb134b4a94670f3d020a85dfa0a3c02", + "reference": "44436f270bb134b4a94670f3d020a85dfa0a3c02", "shasum": "" }, "require": { @@ -4086,9 +4228,9 @@ "ext-zlib": "*", "ezyang/htmlpurifier": "^4.13", "maennchen/zipstream-php": "^2.1", - "markbaker/complex": "^2.0", - "markbaker/matrix": "^2.0", - "php": "^7.2 || ^8.0", + "markbaker/complex": "^3.0", + "markbaker/matrix": "^3.0", + "php": "^7.3 || ^8.0", "psr/http-client": "^1.0", "psr/http-factory": "^1.0", "psr/simple-cache": "^1.0" @@ -4096,15 +4238,15 @@ "require-dev": { "dealerdirect/phpcodesniffer-composer-installer": "dev-master", "dompdf/dompdf": "^1.0", - "friendsofphp/php-cs-fixer": "^2.18", + "friendsofphp/php-cs-fixer": "^3.2", "jpgraph/jpgraph": "^4.0", "mpdf/mpdf": "^8.0", "phpcompatibility/php-compatibility": "^9.3", - "phpstan/phpstan": "^0.12.82", - "phpstan/phpstan-phpunit": "^0.12.18", - "phpunit/phpunit": "^8.5", - "squizlabs/php_codesniffer": "^3.5", - "tecnickcom/tcpdf": "^6.3" + "phpstan/phpstan": "^1.1", + "phpstan/phpstan-phpunit": "^1.0", + "phpunit/phpunit": "^8.5 || ^9.0", + "squizlabs/php_codesniffer": "^3.6", + "tecnickcom/tcpdf": "^6.4" }, "suggest": { "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)", @@ -4156,35 +4298,35 @@ ], "support": { "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues", - "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.18.0" + "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.20.0" }, - "time": "2021-05-31T18:21:15+00:00" + "time": "2021-11-23T15:23:42+00:00" }, { "name": "phpoption/phpoption", - "version": "1.7.5", + "version": "1.8.0", "source": { "type": "git", "url": "https://github.com/schmittjoh/php-option.git", - "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525" + "reference": "5455cb38aed4523f99977c4a12ef19da4bfe2a28" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525", - "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/5455cb38aed4523f99977c4a12ef19da4bfe2a28", + "reference": "5455cb38aed4523f99977c4a12ef19da4bfe2a28", "shasum": "" }, "require": { - "php": "^5.5.9 || ^7.0 || ^8.0" + "php": "^7.0 || ^8.0" }, "require-dev": { "bamarni/composer-bin-plugin": "^1.4.1", - "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0" + "phpunit/phpunit": "^6.5.14 || ^7.0.20 || ^8.5.19 || ^9.5.8" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.7-dev" + "dev-master": "1.8-dev" } }, "autoload": { @@ -4203,7 +4345,7 @@ }, { "name": "Graham Campbell", - "email": "graham@alt-three.com" + "email": "hello@gjcampbell.co.uk" } ], "description": "Option Type for PHP", @@ -4215,7 +4357,7 @@ ], "support": { "issues": "https://github.com/schmittjoh/php-option/issues", - "source": "https://github.com/schmittjoh/php-option/tree/1.7.5" + "source": "https://github.com/schmittjoh/php-option/tree/1.8.0" }, "funding": [ { @@ -4227,20 +4369,20 @@ "type": "tidelift" } ], - "time": "2020-07-20T17:29:33+00:00" + "time": "2021-08-28T21:27:29+00:00" }, { "name": "phpseclib/phpseclib", - "version": "3.0.9", + "version": "3.0.12", "source": { "type": "git", "url": "https://github.com/phpseclib/phpseclib.git", - "reference": "a127a5133804ff2f47ae629dd529b129da616ad7" + "reference": "89bfb45bd8b1abc3b37e910d57f5dbd3174f40fb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/a127a5133804ff2f47ae629dd529b129da616ad7", - "reference": "a127a5133804ff2f47ae629dd529b129da616ad7", + "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/89bfb45bd8b1abc3b37e910d57f5dbd3174f40fb", + "reference": "89bfb45bd8b1abc3b37e910d57f5dbd3174f40fb", "shasum": "" }, "require": { @@ -4322,7 +4464,7 @@ ], "support": { "issues": "https://github.com/phpseclib/phpseclib/issues", - "source": "https://github.com/phpseclib/phpseclib/tree/3.0.9" + "source": "https://github.com/phpseclib/phpseclib/tree/3.0.12" }, "funding": [ { @@ -4338,24 +4480,24 @@ "type": "tidelift" } ], - "time": "2021-06-14T06:54:45+00:00" + "time": "2021-11-28T23:46:03+00:00" }, { "name": "psr/cache", - "version": "1.0.1", + "version": "3.0.0", "source": { "type": "git", "url": "https://github.com/php-fig/cache.git", - "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8" + "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8", - "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8", + "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf", + "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf", "shasum": "" }, "require": { - "php": ">=5.3.0" + "php": ">=8.0.0" }, "type": "library", "extra": { @@ -4375,7 +4517,7 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "homepage": "https://www.php-fig.org/" } ], "description": "Common interface for caching libraries", @@ -4385,26 +4527,26 @@ "psr-6" ], "support": { - "source": "https://github.com/php-fig/cache/tree/master" + "source": "https://github.com/php-fig/cache/tree/3.0.0" }, - "time": "2016-08-06T20:24:11+00:00" + "time": "2021-02-03T23:26:27+00:00" }, { "name": "psr/container", - "version": "1.1.1", + "version": "1.1.2", "source": { "type": "git", "url": "https://github.com/php-fig/container.git", - "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf" + "reference": "513e0666f7216c7459170d56df27dfcefe1689ea" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf", - "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf", + "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea", + "reference": "513e0666f7216c7459170d56df27dfcefe1689ea", "shasum": "" }, "require": { - "php": ">=7.2.0" + "php": ">=7.4.0" }, "type": "library", "autoload": { @@ -4433,9 +4575,9 @@ ], "support": { "issues": "https://github.com/php-fig/container/issues", - "source": "https://github.com/php-fig/container/tree/1.1.1" + "source": "https://github.com/php-fig/container/tree/1.1.2" }, - "time": "2021-03-05T17:36:06+00:00" + "time": "2021-11-05T16:50:12+00:00" }, { "name": "psr/event-dispatcher", @@ -4750,16 +4892,16 @@ }, { "name": "psy/psysh", - "version": "v0.10.8", + "version": "v0.10.12", "source": { "type": "git", "url": "https://github.com/bobthecow/psysh.git", - "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3" + "reference": "a0d9981aa07ecfcbea28e4bfa868031cca121e7d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/e4573f47750dd6c92dca5aee543fa77513cbd8d3", - "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a0d9981aa07ecfcbea28e4bfa868031cca121e7d", + "reference": "a0d9981aa07ecfcbea28e4bfa868031cca121e7d", "shasum": "" }, "require": { @@ -4819,9 +4961,9 @@ ], "support": { "issues": "https://github.com/bobthecow/psysh/issues", - "source": "https://github.com/bobthecow/psysh/tree/v0.10.8" + "source": "https://github.com/bobthecow/psysh/tree/v0.10.12" }, - "time": "2021-04-10T16:23:39+00:00" + "time": "2021-11-30T14:05:36+00:00" }, { "name": "ralouphie/getallheaders", @@ -4869,20 +5011,21 @@ }, { "name": "ramsey/collection", - "version": "1.1.3", + "version": "1.2.2", "source": { "type": "git", "url": "https://github.com/ramsey/collection.git", - "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1" + "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ramsey/collection/zipball/28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1", - "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1", + "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a", + "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a", "shasum": "" }, "require": { - "php": "^7.2 || ^8" + "php": "^7.3 || ^8", + "symfony/polyfill-php81": "^1.23" }, "require-dev": { "captainhook/captainhook": "^5.3", @@ -4892,6 +5035,7 @@ "hamcrest/hamcrest-php": "^2", "jangregor/phpstan-prophecy": "^0.8", "mockery/mockery": "^1.3", + "phpspec/prophecy-phpunit": "^2.0", "phpstan/extension-installer": "^1", "phpstan/phpstan": "^0.12.32", "phpstan/phpstan-mockery": "^0.12.5", @@ -4919,7 +5063,7 @@ "homepage": "https://benramsey.com" } ], - "description": "A PHP 7.2+ library for representing and manipulating collections.", + "description": "A PHP library for representing and manipulating collections.", "keywords": [ "array", "collection", @@ -4930,7 +5074,7 @@ ], "support": { "issues": "https://github.com/ramsey/collection/issues", - "source": "https://github.com/ramsey/collection/tree/1.1.3" + "source": "https://github.com/ramsey/collection/tree/1.2.2" }, "funding": [ { @@ -4942,53 +5086,54 @@ "type": "tidelift" } ], - "time": "2021-01-21T17:40:04+00:00" + "time": "2021-10-10T03:01:02+00:00" }, { "name": "ramsey/uuid", - "version": "4.1.1", + "version": "4.2.3", "source": { "type": "git", "url": "https://github.com/ramsey/uuid.git", - "reference": "cd4032040a750077205918c86049aa0f43d22947" + "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947", - "reference": "cd4032040a750077205918c86049aa0f43d22947", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df", + "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df", "shasum": "" }, "require": { "brick/math": "^0.8 || ^0.9", "ext-json": "*", - "php": "^7.2 || ^8", + "php": "^7.2 || ^8.0", "ramsey/collection": "^1.0", - "symfony/polyfill-ctype": "^1.8" + "symfony/polyfill-ctype": "^1.8", + "symfony/polyfill-php80": "^1.14" }, "replace": { "rhumsaa/uuid": "self.version" }, "require-dev": { - "codeception/aspect-mock": "^3", - "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0", + "captainhook/captainhook": "^5.10", + "captainhook/plugin-composer": "^5.3", + "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", "doctrine/annotations": "^1.8", - "goaop/framework": "^2", + "ergebnis/composer-normalize": "^2.15", "mockery/mockery": "^1.3", "moontoast/math": "^1.1", "paragonie/random-lib": "^2", + "php-mock/php-mock": "^2.2", "php-mock/php-mock-mockery": "^1.3", - "php-mock/php-mock-phpunit": "^2.5", "php-parallel-lint/php-parallel-lint": "^1.1", - "phpbench/phpbench": "^0.17.1", + "phpbench/phpbench": "^1.0", "phpstan/extension-installer": "^1.0", "phpstan/phpstan": "^0.12", "phpstan/phpstan-mockery": "^0.12", "phpstan/phpstan-phpunit": "^0.12", - "phpunit/phpunit": "^8.5", - "psy/psysh": "^0.10.0", - "slevomat/coding-standard": "^6.0", + "phpunit/phpunit": "^8.5 || ^9", + "slevomat/coding-standard": "^7.0", "squizlabs/php_codesniffer": "^3.5", - "vimeo/psalm": "3.9.4" + "vimeo/psalm": "^4.9" }, "suggest": { "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.", @@ -5001,7 +5146,10 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.x-dev" + "dev-main": "4.x-dev" + }, + "captainhook": { + "force-install": true } }, "autoload": { @@ -5017,7 +5165,6 @@ "MIT" ], "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).", - "homepage": "https://github.com/ramsey/uuid", "keywords": [ "guid", "identifier", @@ -5025,35 +5172,38 @@ ], "support": { "issues": "https://github.com/ramsey/uuid/issues", - "rss": "https://github.com/ramsey/uuid/releases.atom", - "source": "https://github.com/ramsey/uuid" + "source": "https://github.com/ramsey/uuid/tree/4.2.3" }, "funding": [ { "url": "https://github.com/ramsey", "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid", + "type": "tidelift" } ], - "time": "2020-08-18T17:17:46+00:00" + "time": "2021-09-25T23:10:38+00:00" }, { "name": "sentry/sdk", - "version": "3.1.0", + "version": "3.1.1", "source": { "type": "git", "url": "https://github.com/getsentry/sentry-php-sdk.git", - "reference": "f03133b067fdf03fed09ff03daf3f1d68f5f3673" + "reference": "2de7de3233293f80d1e244bd950adb2121a3731c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/getsentry/sentry-php-sdk/zipball/f03133b067fdf03fed09ff03daf3f1d68f5f3673", - "reference": "f03133b067fdf03fed09ff03daf3f1d68f5f3673", + "url": "https://api.github.com/repos/getsentry/sentry-php-sdk/zipball/2de7de3233293f80d1e244bd950adb2121a3731c", + "reference": "2de7de3233293f80d1e244bd950adb2121a3731c", "shasum": "" }, "require": { "http-interop/http-factory-guzzle": "^1.0", "sentry/sentry": "^3.1", - "symfony/http-client": "^4.3|^5.0" + "symfony/http-client": "^4.3|^5.0|^6.0" }, "type": "metapackage", "notification-url": "https://packagist.org/downloads/", @@ -5078,7 +5228,7 @@ "sentry" ], "support": { - "source": "https://github.com/getsentry/sentry-php-sdk/tree/3.1.0" + "source": "https://github.com/getsentry/sentry-php-sdk/tree/3.1.1" }, "funding": [ { @@ -5090,20 +5240,20 @@ "type": "custom" } ], - "time": "2020-12-01T10:31:45+00:00" + "time": "2021-11-30T11:54:41+00:00" }, { "name": "sentry/sentry", - "version": "3.3.2", + "version": "3.3.4", "source": { "type": "git", "url": "https://github.com/getsentry/sentry-php.git", - "reference": "3d733139a3ba2d1d3a8011580e3acf0ba1d0dc9b" + "reference": "ecbd09ea5d053a202cf773cb24ab28af820831bd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/3d733139a3ba2d1d3a8011580e3acf0ba1d0dc9b", - "reference": "3d733139a3ba2d1d3a8011580e3acf0ba1d0dc9b", + "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/ecbd09ea5d053a202cf773cb24ab28af820831bd", + "reference": "ecbd09ea5d053a202cf773cb24ab28af820831bd", "shasum": "" }, "require": { @@ -5121,7 +5271,7 @@ "psr/http-factory": "^1.0", "psr/http-message-implementation": "^1.0", "psr/log": "^1.0|^2.0|^3.0", - "symfony/options-resolver": "^3.4.43|^4.4.11|^5.0.11", + "symfony/options-resolver": "^3.4.43|^4.4.30|^5.0.11|^6.0", "symfony/polyfill-php80": "^1.17", "symfony/polyfill-uuid": "^1.13.1" }, @@ -5138,8 +5288,8 @@ "phpstan/extension-installer": "^1.0", "phpstan/phpstan": "^0.12", "phpstan/phpstan-phpunit": "^0.12", - "phpunit/phpunit": "^8.5.13|^9.4", - "symfony/phpunit-bridge": "^5.2", + "phpunit/phpunit": "^8.5.14|^9.4", + "symfony/phpunit-bridge": "^5.2|^6.0", "vimeo/psalm": "^4.2" }, "suggest": { @@ -5182,7 +5332,7 @@ ], "support": { "issues": "https://github.com/getsentry/sentry-php/issues", - "source": "https://github.com/getsentry/sentry-php/tree/3.3.2" + "source": "https://github.com/getsentry/sentry-php/tree/3.3.4" }, "funding": [ { @@ -5194,20 +5344,20 @@ "type": "custom" } ], - "time": "2021-07-19T08:09:34+00:00" + "time": "2021-11-08T08:44:00+00:00" }, { "name": "sentry/sentry-laravel", - "version": "2.7.0", + "version": "2.10.2", "source": { "type": "git", "url": "https://github.com/getsentry/sentry-laravel.git", - "reference": "91d6644fee3ba447769dc73eda2487a93218c04e" + "reference": "82cf98c830d73f80dc67cf21381da4ede4c3989e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/getsentry/sentry-laravel/zipball/91d6644fee3ba447769dc73eda2487a93218c04e", - "reference": "91d6644fee3ba447769dc73eda2487a93218c04e", + "url": "https://api.github.com/repos/getsentry/sentry-laravel/zipball/82cf98c830d73f80dc67cf21381da4ede4c3989e", + "reference": "82cf98c830d73f80dc67cf21381da4ede4c3989e", "shasum": "" }, "require": { @@ -5273,7 +5423,7 @@ ], "support": { "issues": "https://github.com/getsentry/sentry-laravel/issues", - "source": "https://github.com/getsentry/sentry-laravel/tree/2.7.0" + "source": "https://github.com/getsentry/sentry-laravel/tree/2.10.2" }, "funding": [ { @@ -5285,7 +5435,7 @@ "type": "custom" } ], - "time": "2021-06-16T09:26:40+00:00" + "time": "2021-11-16T19:20:42+00:00" }, { "name": "silber/bouncer", @@ -5433,26 +5583,26 @@ }, { "name": "spatie/image-optimizer", - "version": "1.4.0", + "version": "1.6.1", "source": { "type": "git", "url": "https://github.com/spatie/image-optimizer.git", - "reference": "c22202fdd57856ed18a79cfab522653291a6e96a" + "reference": "8bad7f04fd7d31d021b4752ee89f8a450dad8017" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/image-optimizer/zipball/c22202fdd57856ed18a79cfab522653291a6e96a", - "reference": "c22202fdd57856ed18a79cfab522653291a6e96a", + "url": "https://api.github.com/repos/spatie/image-optimizer/zipball/8bad7f04fd7d31d021b4752ee89f8a450dad8017", + "reference": "8bad7f04fd7d31d021b4752ee89f8a450dad8017", "shasum": "" }, "require": { "ext-fileinfo": "*", - "php": "^7.2|^8.0", - "psr/log": "^1.0", + "php": "^7.3|^8.0", + "psr/log": "^1.0 | ^2.0 | ^3.0", "symfony/process": "^4.2|^5.0" }, "require-dev": { - "phpunit/phpunit": "^8.0|^9.0", + "phpunit/phpunit": "^8.5.21|^9.4.4", "symfony/var-dumper": "^4.2|^5.0" }, "type": "library", @@ -5481,9 +5631,9 @@ ], "support": { "issues": "https://github.com/spatie/image-optimizer/issues", - "source": "https://github.com/spatie/image-optimizer/tree/1.4.0" + "source": "https://github.com/spatie/image-optimizer/tree/1.6.1" }, - "time": "2021-04-22T06:17:27+00:00" + "time": "2021-11-17T10:36:45+00:00" }, { "name": "spatie/laravel-medialibrary", @@ -5642,16 +5792,16 @@ }, { "name": "swiftmailer/swiftmailer", - "version": "v6.2.7", + "version": "v6.3.0", "source": { "type": "git", "url": "https://github.com/swiftmailer/swiftmailer.git", - "reference": "15f7faf8508e04471f666633addacf54c0ab5933" + "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/15f7faf8508e04471f666633addacf54c0ab5933", - "reference": "15f7faf8508e04471f666633addacf54c0ab5933", + "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c", + "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c", "shasum": "" }, "require": { @@ -5663,7 +5813,7 @@ }, "require-dev": { "mockery/mockery": "^1.0", - "symfony/phpunit-bridge": "^4.4|^5.0" + "symfony/phpunit-bridge": "^4.4|^5.4" }, "suggest": { "ext-intl": "Needed to support internationalized email addresses" @@ -5701,7 +5851,7 @@ ], "support": { "issues": "https://github.com/swiftmailer/swiftmailer/issues", - "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.7" + "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0" }, "funding": [ { @@ -5713,32 +5863,34 @@ "type": "tidelift" } ], - "time": "2021-03-09T12:30:35+00:00" + "abandoned": "symfony/mailer", + "time": "2021-10-18T15:26:12+00:00" }, { "name": "symfony/console", - "version": "v5.3.2", + "version": "v5.4.0", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "649730483885ff2ca99ca0560ef0e5f6b03f2ac1" + "reference": "ec3661faca1d110d6c307e124b44f99ac54179e3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/649730483885ff2ca99ca0560ef0e5f6b03f2ac1", - "reference": "649730483885ff2ca99ca0560ef0e5f6b03f2ac1", + "url": "https://api.github.com/repos/symfony/console/zipball/ec3661faca1d110d6c307e124b44f99ac54179e3", + "reference": "ec3661faca1d110d6c307e124b44f99ac54179e3", "shasum": "" }, "require": { "php": ">=7.2.5", - "symfony/deprecation-contracts": "^2.1", + "symfony/deprecation-contracts": "^2.1|^3", "symfony/polyfill-mbstring": "~1.0", "symfony/polyfill-php73": "^1.8", - "symfony/polyfill-php80": "^1.15", - "symfony/service-contracts": "^1.1|^2", - "symfony/string": "^5.1" + "symfony/polyfill-php80": "^1.16", + "symfony/service-contracts": "^1.1|^2|^3", + "symfony/string": "^5.1|^6.0" }, "conflict": { + "psr/log": ">=3", "symfony/dependency-injection": "<4.4", "symfony/dotenv": "<5.1", "symfony/event-dispatcher": "<4.4", @@ -5746,16 +5898,16 @@ "symfony/process": "<4.4" }, "provide": { - "psr/log-implementation": "1.0" + "psr/log-implementation": "1.0|2.0" }, "require-dev": { - "psr/log": "~1.0", - "symfony/config": "^4.4|^5.0", - "symfony/dependency-injection": "^4.4|^5.0", - "symfony/event-dispatcher": "^4.4|^5.0", - "symfony/lock": "^4.4|^5.0", - "symfony/process": "^4.4|^5.0", - "symfony/var-dumper": "^4.4|^5.0" + "psr/log": "^1|^2", + "symfony/config": "^4.4|^5.0|^6.0", + "symfony/dependency-injection": "^4.4|^5.0|^6.0", + "symfony/event-dispatcher": "^4.4|^5.0|^6.0", + "symfony/lock": "^4.4|^5.0|^6.0", + "symfony/process": "^4.4|^5.0|^6.0", + "symfony/var-dumper": "^4.4|^5.0|^6.0" }, "suggest": { "psr/log": "For using the console logger", @@ -5795,7 +5947,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v5.3.2" + "source": "https://github.com/symfony/console/tree/v5.4.0" }, "funding": [ { @@ -5811,24 +5963,25 @@ "type": "tidelift" } ], - "time": "2021-06-12T09:42:48+00:00" + "time": "2021-11-29T15:30:56+00:00" }, { "name": "symfony/css-selector", - "version": "v5.3.0", + "version": "v5.4.0", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "fcd0b29a7a0b1bb5bfbedc6231583d77fea04814" + "reference": "44b933f98bb4b5220d10bed9ce5662f8c2d13dcc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/fcd0b29a7a0b1bb5bfbedc6231583d77fea04814", - "reference": "fcd0b29a7a0b1bb5bfbedc6231583d77fea04814", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/44b933f98bb4b5220d10bed9ce5662f8c2d13dcc", + "reference": "44b933f98bb4b5220d10bed9ce5662f8c2d13dcc", "shasum": "" }, "require": { - "php": ">=7.2.5" + "php": ">=7.2.5", + "symfony/polyfill-php80": "^1.16" }, "type": "library", "autoload": { @@ -5860,7 +6013,7 @@ "description": "Converts CSS selectors to XPath expressions", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/css-selector/tree/v5.3.0" + "source": "https://github.com/symfony/css-selector/tree/v5.4.0" }, "funding": [ { @@ -5876,20 +6029,20 @@ "type": "tidelift" } ], - "time": "2021-05-26T17:40:38+00:00" + "time": "2021-09-09T08:06:01+00:00" }, { "name": "symfony/deprecation-contracts", - "version": "v2.4.0", + "version": "v2.5.0", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627" + "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627", - "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/6f981ee24cf69ee7ce9736146d1c57c2780598a8", + "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8", "shasum": "" }, "require": { @@ -5898,7 +6051,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "2.4-dev" + "dev-main": "2.5-dev" }, "thanks": { "name": "symfony/contracts", @@ -5927,7 +6080,7 @@ "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/deprecation-contracts/tree/v2.4.0" + "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.0" }, "funding": [ { @@ -5943,33 +6096,35 @@ "type": "tidelift" } ], - "time": "2021-03-23T23:28:01+00:00" + "time": "2021-07-12T14:48:14+00:00" }, { "name": "symfony/error-handler", - "version": "v5.3.3", + "version": "v5.4.0", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", - "reference": "43323e79c80719e8a4674e33484bca98270d223f" + "reference": "8433fa3145ac78df88b87a4a539118e950828126" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/43323e79c80719e8a4674e33484bca98270d223f", - "reference": "43323e79c80719e8a4674e33484bca98270d223f", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/8433fa3145ac78df88b87a4a539118e950828126", + "reference": "8433fa3145ac78df88b87a4a539118e950828126", "shasum": "" }, "require": { "php": ">=7.2.5", - "psr/log": "^1.0", - "symfony/polyfill-php80": "^1.15", - "symfony/var-dumper": "^4.4|^5.0" + "psr/log": "^1|^2|^3", + "symfony/var-dumper": "^4.4|^5.0|^6.0" }, "require-dev": { - "symfony/deprecation-contracts": "^2.1", - "symfony/http-kernel": "^4.4|^5.0", - "symfony/serializer": "^4.4|^5.0" + "symfony/deprecation-contracts": "^2.1|^3", + "symfony/http-kernel": "^4.4|^5.0|^6.0", + "symfony/serializer": "^4.4|^5.0|^6.0" }, + "bin": [ + "Resources/bin/patch-type-declarations" + ], "type": "library", "autoload": { "psr-4": { @@ -5996,7 +6151,7 @@ "description": "Provides tools to manage errors and ease debugging PHP code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/error-handler/tree/v5.3.3" + "source": "https://github.com/symfony/error-handler/tree/v5.4.0" }, "funding": [ { @@ -6012,44 +6167,42 @@ "type": "tidelift" } ], - "time": "2021-06-24T08:13:00+00:00" + "time": "2021-11-29T15:30:56+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v5.3.0", + "version": "v6.0.0", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "67a5f354afa8e2f231081b3fa11a5912f933c3ce" + "reference": "2774908d5ae32fd94e363e7cbbd87462712c4576" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/67a5f354afa8e2f231081b3fa11a5912f933c3ce", - "reference": "67a5f354afa8e2f231081b3fa11a5912f933c3ce", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2774908d5ae32fd94e363e7cbbd87462712c4576", + "reference": "2774908d5ae32fd94e363e7cbbd87462712c4576", "shasum": "" }, "require": { - "php": ">=7.2.5", - "symfony/deprecation-contracts": "^2.1", - "symfony/event-dispatcher-contracts": "^2", - "symfony/polyfill-php80": "^1.15" + "php": ">=8.0.2", + "symfony/event-dispatcher-contracts": "^2|^3" }, "conflict": { - "symfony/dependency-injection": "<4.4" + "symfony/dependency-injection": "<5.4" }, "provide": { "psr/event-dispatcher-implementation": "1.0", - "symfony/event-dispatcher-implementation": "2.0" + "symfony/event-dispatcher-implementation": "2.0|3.0" }, "require-dev": { - "psr/log": "~1.0", - "symfony/config": "^4.4|^5.0", - "symfony/dependency-injection": "^4.4|^5.0", - "symfony/error-handler": "^4.4|^5.0", - "symfony/expression-language": "^4.4|^5.0", - "symfony/http-foundation": "^4.4|^5.0", - "symfony/service-contracts": "^1.1|^2", - "symfony/stopwatch": "^4.4|^5.0" + "psr/log": "^1|^2|^3", + "symfony/config": "^5.4|^6.0", + "symfony/dependency-injection": "^5.4|^6.0", + "symfony/error-handler": "^5.4|^6.0", + "symfony/expression-language": "^5.4|^6.0", + "symfony/http-foundation": "^5.4|^6.0", + "symfony/service-contracts": "^1.1|^2|^3", + "symfony/stopwatch": "^5.4|^6.0" }, "suggest": { "symfony/dependency-injection": "", @@ -6081,7 +6234,7 @@ "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/event-dispatcher/tree/v5.3.0" + "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.0" }, "funding": [ { @@ -6097,24 +6250,24 @@ "type": "tidelift" } ], - "time": "2021-05-26T17:43:10+00:00" + "time": "2021-11-23T19:05:29+00:00" }, { "name": "symfony/event-dispatcher-contracts", - "version": "v2.4.0", + "version": "v3.0.0", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11" + "reference": "aa5422287b75594b90ee9cd807caf8f0df491385" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/69fee1ad2332a7cbab3aca13591953da9cdb7a11", - "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/aa5422287b75594b90ee9cd807caf8f0df491385", + "reference": "aa5422287b75594b90ee9cd807caf8f0df491385", "shasum": "" }, "require": { - "php": ">=7.2.5", + "php": ">=8.0.2", "psr/event-dispatcher": "^1" }, "suggest": { @@ -6123,7 +6276,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "2.4-dev" + "dev-main": "3.0-dev" }, "thanks": { "name": "symfony/contracts", @@ -6160,7 +6313,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.4.0" + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.0" }, "funding": [ { @@ -6176,24 +6329,26 @@ "type": "tidelift" } ], - "time": "2021-03-23T23:28:01+00:00" + "time": "2021-07-15T12:33:35+00:00" }, { "name": "symfony/finder", - "version": "v5.3.0", + "version": "v5.4.0", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6" + "reference": "d2f29dac98e96a98be467627bd49c2efb1bc2590" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6", - "reference": "0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6", + "url": "https://api.github.com/repos/symfony/finder/zipball/d2f29dac98e96a98be467627bd49c2efb1bc2590", + "reference": "d2f29dac98e96a98be467627bd49c2efb1bc2590", "shasum": "" }, "require": { - "php": ">=7.2.5" + "php": ">=7.2.5", + "symfony/deprecation-contracts": "^2.1|^3", + "symfony/polyfill-php80": "^1.16" }, "type": "library", "autoload": { @@ -6221,7 +6376,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v5.3.0" + "source": "https://github.com/symfony/finder/tree/v5.4.0" }, "funding": [ { @@ -6237,36 +6392,33 @@ "type": "tidelift" } ], - "time": "2021-05-26T12:52:38+00:00" + "time": "2021-11-28T15:25:38+00:00" }, { "name": "symfony/http-client", - "version": "v5.3.3", + "version": "v6.0.0", "source": { "type": "git", "url": "https://github.com/symfony/http-client.git", - "reference": "fde4bdb10bf197f932ebccfcb9982881d296fc4c" + "reference": "39f34cd5d28cd263b95a58ebad18421b6fefc4ba" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client/zipball/fde4bdb10bf197f932ebccfcb9982881d296fc4c", - "reference": "fde4bdb10bf197f932ebccfcb9982881d296fc4c", + "url": "https://api.github.com/repos/symfony/http-client/zipball/39f34cd5d28cd263b95a58ebad18421b6fefc4ba", + "reference": "39f34cd5d28cd263b95a58ebad18421b6fefc4ba", "shasum": "" }, "require": { - "php": ">=7.2.5", - "psr/log": "^1.0", - "symfony/deprecation-contracts": "^2.1", - "symfony/http-client-contracts": "^2.4", - "symfony/polyfill-php73": "^1.11", - "symfony/polyfill-php80": "^1.15", - "symfony/service-contracts": "^1.0|^2" + "php": ">=8.0.2", + "psr/log": "^1|^2|^3", + "symfony/http-client-contracts": "^3", + "symfony/service-contracts": "^1.0|^2|^3" }, "provide": { "php-http/async-client-implementation": "*", "php-http/client-implementation": "*", "psr/http-client-implementation": "1.0", - "symfony/http-client-implementation": "2.4" + "symfony/http-client-implementation": "3.0" }, "require-dev": { "amphp/amp": "^2.5", @@ -6277,10 +6429,10 @@ "nyholm/psr7": "^1.0", "php-http/httplug": "^1.0|^2.0", "psr/http-client": "^1.0", - "symfony/dependency-injection": "^4.4|^5.0", - "symfony/http-kernel": "^4.4.13|^5.1.5", - "symfony/process": "^4.4|^5.0", - "symfony/stopwatch": "^4.4|^5.0" + "symfony/dependency-injection": "^5.4|^6.0", + "symfony/http-kernel": "^5.4|^6.0", + "symfony/process": "^5.4|^6.0", + "symfony/stopwatch": "^5.4|^6.0" }, "type": "library", "autoload": { @@ -6308,7 +6460,7 @@ "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-client/tree/v5.3.3" + "source": "https://github.com/symfony/http-client/tree/v6.0.0" }, "funding": [ { @@ -6324,24 +6476,24 @@ "type": "tidelift" } ], - "time": "2021-06-24T08:13:00+00:00" + "time": "2021-11-23T19:05:29+00:00" }, { "name": "symfony/http-client-contracts", - "version": "v2.4.0", + "version": "v3.0.0", "source": { "type": "git", "url": "https://github.com/symfony/http-client-contracts.git", - "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4" + "reference": "265f03fed057044a8e4dc159aa33596d0f48ed3f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/7e82f6084d7cae521a75ef2cb5c9457bbda785f4", - "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4", + "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/265f03fed057044a8e4dc159aa33596d0f48ed3f", + "reference": "265f03fed057044a8e4dc159aa33596d0f48ed3f", "shasum": "" }, "require": { - "php": ">=7.2.5" + "php": ">=8.0.2" }, "suggest": { "symfony/http-client-implementation": "" @@ -6349,7 +6501,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "2.4-dev" + "dev-main": "3.0-dev" }, "thanks": { "name": "symfony/contracts", @@ -6386,7 +6538,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/http-client-contracts/tree/v2.4.0" + "source": "https://github.com/symfony/http-client-contracts/tree/v3.0.0" }, "funding": [ { @@ -6402,33 +6554,33 @@ "type": "tidelift" } ], - "time": "2021-04-11T23:07:08+00:00" + "time": "2021-11-03T13:44:55+00:00" }, { "name": "symfony/http-foundation", - "version": "v5.3.3", + "version": "v5.4.0", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "0e45ab1574caa0460d9190871a8ce47539e40ccf" + "reference": "5ef86ac7927d2de08dc1e26eb91325f9ccbe6309" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/0e45ab1574caa0460d9190871a8ce47539e40ccf", - "reference": "0e45ab1574caa0460d9190871a8ce47539e40ccf", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/5ef86ac7927d2de08dc1e26eb91325f9ccbe6309", + "reference": "5ef86ac7927d2de08dc1e26eb91325f9ccbe6309", "shasum": "" }, "require": { "php": ">=7.2.5", - "symfony/deprecation-contracts": "^2.1", + "symfony/deprecation-contracts": "^2.1|^3", "symfony/polyfill-mbstring": "~1.1", - "symfony/polyfill-php80": "^1.15" + "symfony/polyfill-php80": "^1.16" }, "require-dev": { "predis/predis": "~1.0", - "symfony/cache": "^4.4|^5.0", - "symfony/expression-language": "^4.4|^5.0", - "symfony/mime": "^4.4|^5.0" + "symfony/cache": "^4.4|^5.0|^6.0", + "symfony/expression-language": "^4.4|^5.0|^6.0", + "symfony/mime": "^4.4|^5.0|^6.0" }, "suggest": { "symfony/mime": "To use the file extension guesser" @@ -6459,7 +6611,7 @@ "description": "Defines an object-oriented layer for the HTTP specification", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-foundation/tree/v5.3.3" + "source": "https://github.com/symfony/http-foundation/tree/v5.4.0" }, "funding": [ { @@ -6475,36 +6627,35 @@ "type": "tidelift" } ], - "time": "2021-06-27T09:19:40+00:00" + "time": "2021-11-28T15:25:38+00:00" }, { "name": "symfony/http-kernel", - "version": "v5.3.3", + "version": "v5.4.0", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "90ad9f4b21ddcb8ebe9faadfcca54929ad23f9f8" + "reference": "e012f16688bcb151e965473a70d8ebaa8b1d15ea" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/90ad9f4b21ddcb8ebe9faadfcca54929ad23f9f8", - "reference": "90ad9f4b21ddcb8ebe9faadfcca54929ad23f9f8", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/e012f16688bcb151e965473a70d8ebaa8b1d15ea", + "reference": "e012f16688bcb151e965473a70d8ebaa8b1d15ea", "shasum": "" }, "require": { "php": ">=7.2.5", - "psr/log": "~1.0", - "symfony/deprecation-contracts": "^2.1", - "symfony/error-handler": "^4.4|^5.0", - "symfony/event-dispatcher": "^5.0", - "symfony/http-client-contracts": "^1.1|^2", - "symfony/http-foundation": "^5.3", + "psr/log": "^1|^2", + "symfony/deprecation-contracts": "^2.1|^3", + "symfony/error-handler": "^4.4|^5.0|^6.0", + "symfony/event-dispatcher": "^5.0|^6.0", + "symfony/http-foundation": "^5.3.7|^6.0", "symfony/polyfill-ctype": "^1.8", "symfony/polyfill-php73": "^1.9", - "symfony/polyfill-php80": "^1.15" + "symfony/polyfill-php80": "^1.16" }, "conflict": { - "symfony/browser-kit": "<4.4", + "symfony/browser-kit": "<5.4", "symfony/cache": "<5.0", "symfony/config": "<5.0", "symfony/console": "<4.4", @@ -6520,23 +6671,24 @@ "twig/twig": "<2.13" }, "provide": { - "psr/log-implementation": "1.0" + "psr/log-implementation": "1.0|2.0" }, "require-dev": { "psr/cache": "^1.0|^2.0|^3.0", - "symfony/browser-kit": "^4.4|^5.0", - "symfony/config": "^5.0", - "symfony/console": "^4.4|^5.0", - "symfony/css-selector": "^4.4|^5.0", - "symfony/dependency-injection": "^5.3", - "symfony/dom-crawler": "^4.4|^5.0", - "symfony/expression-language": "^4.4|^5.0", - "symfony/finder": "^4.4|^5.0", - "symfony/process": "^4.4|^5.0", - "symfony/routing": "^4.4|^5.0", - "symfony/stopwatch": "^4.4|^5.0", - "symfony/translation": "^4.4|^5.0", - "symfony/translation-contracts": "^1.1|^2", + "symfony/browser-kit": "^5.4|^6.0", + "symfony/config": "^5.0|^6.0", + "symfony/console": "^4.4|^5.0|^6.0", + "symfony/css-selector": "^4.4|^5.0|^6.0", + "symfony/dependency-injection": "^5.3|^6.0", + "symfony/dom-crawler": "^4.4|^5.0|^6.0", + "symfony/expression-language": "^4.4|^5.0|^6.0", + "symfony/finder": "^4.4|^5.0|^6.0", + "symfony/http-client-contracts": "^1.1|^2|^3", + "symfony/process": "^4.4|^5.0|^6.0", + "symfony/routing": "^4.4|^5.0|^6.0", + "symfony/stopwatch": "^4.4|^5.0|^6.0", + "symfony/translation": "^4.4|^5.0|^6.0", + "symfony/translation-contracts": "^1.1|^2|^3", "twig/twig": "^2.13|^3.0.4" }, "suggest": { @@ -6571,7 +6723,7 @@ "description": "Provides a structured process for converting a Request into a Response", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-kernel/tree/v5.3.3" + "source": "https://github.com/symfony/http-kernel/tree/v5.4.0" }, "funding": [ { @@ -6587,28 +6739,28 @@ "type": "tidelift" } ], - "time": "2021-06-30T08:27:49+00:00" + "time": "2021-11-29T16:56:53+00:00" }, { "name": "symfony/mime", - "version": "v5.3.2", + "version": "v5.4.0", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "47dd7912152b82d0d4c8d9040dbc93d6232d472a" + "reference": "d4365000217b67c01acff407573906ff91bcfb34" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/47dd7912152b82d0d4c8d9040dbc93d6232d472a", - "reference": "47dd7912152b82d0d4c8d9040dbc93d6232d472a", + "url": "https://api.github.com/repos/symfony/mime/zipball/d4365000217b67c01acff407573906ff91bcfb34", + "reference": "d4365000217b67c01acff407573906ff91bcfb34", "shasum": "" }, "require": { "php": ">=7.2.5", - "symfony/deprecation-contracts": "^2.1", + "symfony/deprecation-contracts": "^2.1|^3", "symfony/polyfill-intl-idn": "^1.10", "symfony/polyfill-mbstring": "^1.0", - "symfony/polyfill-php80": "^1.15" + "symfony/polyfill-php80": "^1.16" }, "conflict": { "egulias/email-validator": "~3.0.0", @@ -6619,10 +6771,10 @@ "require-dev": { "egulias/email-validator": "^2.1.10|^3.1", "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", - "symfony/dependency-injection": "^4.4|^5.0", - "symfony/property-access": "^4.4|^5.1", - "symfony/property-info": "^4.4|^5.1", - "symfony/serializer": "^5.2" + "symfony/dependency-injection": "^4.4|^5.0|^6.0", + "symfony/property-access": "^4.4|^5.1|^6.0", + "symfony/property-info": "^4.4|^5.1|^6.0", + "symfony/serializer": "^5.2|^6.0" }, "type": "library", "autoload": { @@ -6654,7 +6806,7 @@ "mime-type" ], "support": { - "source": "https://github.com/symfony/mime/tree/v5.3.2" + "source": "https://github.com/symfony/mime/tree/v5.4.0" }, "funding": [ { @@ -6670,27 +6822,25 @@ "type": "tidelift" } ], - "time": "2021-06-09T10:58:01+00:00" + "time": "2021-11-23T10:19:22+00:00" }, { "name": "symfony/options-resolver", - "version": "v5.3.0", + "version": "v6.0.0", "source": { "type": "git", "url": "https://github.com/symfony/options-resolver.git", - "reference": "162e886ca035869866d233a2bfef70cc28f9bbe5" + "reference": "be0facf48a42a232d6c0daadd76e4eb5657a4798" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/options-resolver/zipball/162e886ca035869866d233a2bfef70cc28f9bbe5", - "reference": "162e886ca035869866d233a2bfef70cc28f9bbe5", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/be0facf48a42a232d6c0daadd76e4eb5657a4798", + "reference": "be0facf48a42a232d6c0daadd76e4eb5657a4798", "shasum": "" }, "require": { - "php": ">=7.2.5", - "symfony/deprecation-contracts": "^2.1", - "symfony/polyfill-php73": "~1.0", - "symfony/polyfill-php80": "^1.15" + "php": ">=8.0.2", + "symfony/deprecation-contracts": "^2.1|^3" }, "type": "library", "autoload": { @@ -6723,7 +6873,7 @@ "options" ], "support": { - "source": "https://github.com/symfony/options-resolver/tree/v5.3.0" + "source": "https://github.com/symfony/options-resolver/tree/v6.0.0" }, "funding": [ { @@ -6739,7 +6889,7 @@ "type": "tidelift" } ], - "time": "2021-05-26T17:43:10+00:00" + "time": "2021-11-23T19:05:29+00:00" }, { "name": "symfony/polyfill-ctype", @@ -6902,16 +7052,16 @@ }, { "name": "symfony/polyfill-intl-grapheme", - "version": "v1.23.0", + "version": "v1.23.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "24b72c6baa32c746a4d0840147c9715e42bb68ab" + "reference": "16880ba9c5ebe3642d1995ab866db29270b36535" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/24b72c6baa32c746a4d0840147c9715e42bb68ab", - "reference": "24b72c6baa32c746a4d0840147c9715e42bb68ab", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/16880ba9c5ebe3642d1995ab866db29270b36535", + "reference": "16880ba9c5ebe3642d1995ab866db29270b36535", "shasum": "" }, "require": { @@ -6963,7 +7113,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.23.0" + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.23.1" }, "funding": [ { @@ -6979,7 +7129,7 @@ "type": "tidelift" } ], - "time": "2021-05-27T09:17:38+00:00" + "time": "2021-05-27T12:26:48+00:00" }, { "name": "symfony/polyfill-intl-idn", @@ -7154,16 +7304,16 @@ }, { "name": "symfony/polyfill-mbstring", - "version": "v1.23.0", + "version": "v1.23.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1" + "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2df51500adbaebdc4c38dea4c89a2e131c45c8a1", - "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6", + "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6", "shasum": "" }, "require": { @@ -7214,7 +7364,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.1" }, "funding": [ { @@ -7230,7 +7380,7 @@ "type": "tidelift" } ], - "time": "2021-05-27T09:27:20+00:00" + "time": "2021-05-27T12:26:48+00:00" }, { "name": "symfony/polyfill-php72", @@ -7389,16 +7539,16 @@ }, { "name": "symfony/polyfill-php80", - "version": "v1.23.0", + "version": "v1.23.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0" + "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/eca0bf41ed421bed1b57c4958bab16aa86b757d0", - "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be", + "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be", "shasum": "" }, "require": { @@ -7452,7 +7602,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.0" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.1" }, "funding": [ { @@ -7468,7 +7618,86 @@ "type": "tidelift" } ], - "time": "2021-02-19T12:13:01+00:00" + "time": "2021-07-28T13:41:28+00:00" + }, + { + "name": "symfony/polyfill-php81", + "version": "v1.23.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php81.git", + "reference": "e66119f3de95efc359483f810c4c3e6436279436" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/e66119f3de95efc359483f810c4c3e6436279436", + "reference": "e66119f3de95efc359483f810c4c3e6436279436", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.23-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Php81\\": "" + }, + "files": [ + "bootstrap.php" + ], + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php81/tree/v1.23.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-05-21T13:25:03+00:00" }, { "name": "symfony/polyfill-uuid", @@ -7551,21 +7780,21 @@ }, { "name": "symfony/process", - "version": "v5.3.2", + "version": "v5.4.0", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "714b47f9196de61a196d86c4bad5f09201b307df" + "reference": "5be20b3830f726e019162b26223110c8f47cf274" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/714b47f9196de61a196d86c4bad5f09201b307df", - "reference": "714b47f9196de61a196d86c4bad5f09201b307df", + "url": "https://api.github.com/repos/symfony/process/zipball/5be20b3830f726e019162b26223110c8f47cf274", + "reference": "5be20b3830f726e019162b26223110c8f47cf274", "shasum": "" }, "require": { "php": ">=7.2.5", - "symfony/polyfill-php80": "^1.15" + "symfony/polyfill-php80": "^1.16" }, "type": "library", "autoload": { @@ -7593,7 +7822,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v5.3.2" + "source": "https://github.com/symfony/process/tree/v5.4.0" }, "funding": [ { @@ -7609,36 +7838,36 @@ "type": "tidelift" } ], - "time": "2021-06-12T10:15:01+00:00" + "time": "2021-11-28T15:25:38+00:00" }, { "name": "symfony/psr-http-message-bridge", - "version": "v2.1.0", + "version": "v2.1.2", "source": { "type": "git", "url": "https://github.com/symfony/psr-http-message-bridge.git", - "reference": "81db2d4ae86e9f0049828d9343a72b9523884e5d" + "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/81db2d4ae86e9f0049828d9343a72b9523884e5d", - "reference": "81db2d4ae86e9f0049828d9343a72b9523884e5d", + "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34", + "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34", "shasum": "" }, "require": { "php": ">=7.1", "psr/http-message": "^1.0", - "symfony/http-foundation": "^4.4 || ^5.0" + "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0" }, "require-dev": { "nyholm/psr7": "^1.1", - "psr/log": "^1.1", - "symfony/browser-kit": "^4.4 || ^5.0", - "symfony/config": "^4.4 || ^5.0", - "symfony/event-dispatcher": "^4.4 || ^5.0", - "symfony/framework-bundle": "^4.4 || ^5.0", - "symfony/http-kernel": "^4.4 || ^5.0", - "symfony/phpunit-bridge": "^4.4.19 || ^5.2" + "psr/log": "^1.1 || ^2 || ^3", + "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0", + "symfony/config": "^4.4 || ^5.0 || ^6.0", + "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0", + "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0", + "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0", + "symfony/phpunit-bridge": "^5.4@dev || ^6.0" }, "suggest": { "nyholm/psr7": "For a super lightweight PSR-7/17 implementation" @@ -7681,7 +7910,7 @@ ], "support": { "issues": "https://github.com/symfony/psr-http-message-bridge/issues", - "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.0" + "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.2" }, "funding": [ { @@ -7697,26 +7926,26 @@ "type": "tidelift" } ], - "time": "2021-02-17T10:35:25+00:00" + "time": "2021-11-05T13:13:39+00:00" }, { "name": "symfony/routing", - "version": "v5.3.0", + "version": "v5.4.0", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "368e81376a8e049c37cb80ae87dbfbf411279199" + "reference": "9eeae93c32ca86746e5d38f3679e9569981038b1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/368e81376a8e049c37cb80ae87dbfbf411279199", - "reference": "368e81376a8e049c37cb80ae87dbfbf411279199", + "url": "https://api.github.com/repos/symfony/routing/zipball/9eeae93c32ca86746e5d38f3679e9569981038b1", + "reference": "9eeae93c32ca86746e5d38f3679e9569981038b1", "shasum": "" }, "require": { "php": ">=7.2.5", - "symfony/deprecation-contracts": "^2.1", - "symfony/polyfill-php80": "^1.15" + "symfony/deprecation-contracts": "^2.1|^3", + "symfony/polyfill-php80": "^1.16" }, "conflict": { "doctrine/annotations": "<1.12", @@ -7726,12 +7955,12 @@ }, "require-dev": { "doctrine/annotations": "^1.12", - "psr/log": "~1.0", - "symfony/config": "^5.3", - "symfony/dependency-injection": "^4.4|^5.0", - "symfony/expression-language": "^4.4|^5.0", - "symfony/http-foundation": "^4.4|^5.0", - "symfony/yaml": "^4.4|^5.0" + "psr/log": "^1|^2|^3", + "symfony/config": "^5.3|^6.0", + "symfony/dependency-injection": "^4.4|^5.0|^6.0", + "symfony/expression-language": "^4.4|^5.0|^6.0", + "symfony/http-foundation": "^4.4|^5.0|^6.0", + "symfony/yaml": "^4.4|^5.0|^6.0" }, "suggest": { "symfony/config": "For using the all-in-one router or any loader", @@ -7771,7 +8000,7 @@ "url" ], "support": { - "source": "https://github.com/symfony/routing/tree/v5.3.0" + "source": "https://github.com/symfony/routing/tree/v5.4.0" }, "funding": [ { @@ -7787,25 +8016,29 @@ "type": "tidelift" } ], - "time": "2021-05-26T17:43:10+00:00" + "time": "2021-11-23T10:19:22+00:00" }, { "name": "symfony/service-contracts", - "version": "v2.4.0", + "version": "v2.5.0", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb" + "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb", - "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc", + "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc", "shasum": "" }, "require": { "php": ">=7.2.5", - "psr/container": "^1.1" + "psr/container": "^1.1", + "symfony/deprecation-contracts": "^2.1" + }, + "conflict": { + "ext-psr": "<1.1|>=2" }, "suggest": { "symfony/service-implementation": "" @@ -7813,7 +8046,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "2.4-dev" + "dev-main": "2.5-dev" }, "thanks": { "name": "symfony/contracts", @@ -7850,7 +8083,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/service-contracts/tree/v2.4.0" + "source": "https://github.com/symfony/service-contracts/tree/v2.5.0" }, "funding": [ { @@ -7866,35 +8099,37 @@ "type": "tidelift" } ], - "time": "2021-04-01T10:43:52+00:00" + "time": "2021-11-04T16:48:04+00:00" }, { "name": "symfony/string", - "version": "v5.3.3", + "version": "v6.0.0", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "bd53358e3eccec6a670b5f33ab680d8dbe1d4ae1" + "reference": "ba727797426af0f587f4800566300bdc0cda0777" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/bd53358e3eccec6a670b5f33ab680d8dbe1d4ae1", - "reference": "bd53358e3eccec6a670b5f33ab680d8dbe1d4ae1", + "url": "https://api.github.com/repos/symfony/string/zipball/ba727797426af0f587f4800566300bdc0cda0777", + "reference": "ba727797426af0f587f4800566300bdc0cda0777", "shasum": "" }, "require": { - "php": ">=7.2.5", + "php": ">=8.0.2", "symfony/polyfill-ctype": "~1.8", "symfony/polyfill-intl-grapheme": "~1.0", "symfony/polyfill-intl-normalizer": "~1.0", - "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php80": "~1.15" + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/translation-contracts": "<2.0" }, "require-dev": { - "symfony/error-handler": "^4.4|^5.0", - "symfony/http-client": "^4.4|^5.0", - "symfony/translation-contracts": "^1.1|^2", - "symfony/var-exporter": "^4.4|^5.0" + "symfony/error-handler": "^5.4|^6.0", + "symfony/http-client": "^5.4|^6.0", + "symfony/translation-contracts": "^2.0|^3.0", + "symfony/var-exporter": "^5.4|^6.0" }, "type": "library", "autoload": { @@ -7933,7 +8168,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v5.3.3" + "source": "https://github.com/symfony/string/tree/v6.0.0" }, "funding": [ { @@ -7949,31 +8184,32 @@ "type": "tidelift" } ], - "time": "2021-06-27T11:44:38+00:00" + "time": "2021-10-29T07:35:21+00:00" }, { "name": "symfony/translation", - "version": "v5.3.3", + "version": "v5.4.0", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "380b8c9e944d0e364b25f28e8e555241eb49c01c" + "reference": "6fe32b10e912a518805bc9eafc2a87145773cf13" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/380b8c9e944d0e364b25f28e8e555241eb49c01c", - "reference": "380b8c9e944d0e364b25f28e8e555241eb49c01c", + "url": "https://api.github.com/repos/symfony/translation/zipball/6fe32b10e912a518805bc9eafc2a87145773cf13", + "reference": "6fe32b10e912a518805bc9eafc2a87145773cf13", "shasum": "" }, "require": { "php": ">=7.2.5", - "symfony/deprecation-contracts": "^2.1", + "symfony/deprecation-contracts": "^2.1|^3", "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php80": "^1.15", + "symfony/polyfill-php80": "^1.16", "symfony/translation-contracts": "^2.3" }, "conflict": { "symfony/config": "<4.4", + "symfony/console": "<5.3", "symfony/dependency-injection": "<5.0", "symfony/http-kernel": "<5.0", "symfony/twig-bundle": "<5.0", @@ -7983,16 +8219,17 @@ "symfony/translation-implementation": "2.3" }, "require-dev": { - "psr/log": "~1.0", - "symfony/config": "^4.4|^5.0", - "symfony/console": "^4.4|^5.0", - "symfony/dependency-injection": "^5.0", - "symfony/finder": "^4.4|^5.0", - "symfony/http-kernel": "^5.0", - "symfony/intl": "^4.4|^5.0", + "psr/log": "^1|^2|^3", + "symfony/config": "^4.4|^5.0|^6.0", + "symfony/console": "^5.4|^6.0", + "symfony/dependency-injection": "^5.0|^6.0", + "symfony/finder": "^4.4|^5.0|^6.0", + "symfony/http-client-contracts": "^1.1|^2.0|^3.0", + "symfony/http-kernel": "^5.0|^6.0", + "symfony/intl": "^4.4|^5.0|^6.0", "symfony/polyfill-intl-icu": "^1.21", - "symfony/service-contracts": "^1.1.2|^2", - "symfony/yaml": "^4.4|^5.0" + "symfony/service-contracts": "^1.1.2|^2|^3", + "symfony/yaml": "^4.4|^5.0|^6.0" }, "suggest": { "psr/log-implementation": "To use logging capability in translator", @@ -8028,7 +8265,7 @@ "description": "Provides tools to internationalize your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/translation/tree/v5.3.3" + "source": "https://github.com/symfony/translation/tree/v5.4.0" }, "funding": [ { @@ -8044,20 +8281,20 @@ "type": "tidelift" } ], - "time": "2021-06-27T12:22:47+00:00" + "time": "2021-11-29T15:30:56+00:00" }, { "name": "symfony/translation-contracts", - "version": "v2.4.0", + "version": "v2.5.0", "source": { "type": "git", "url": "https://github.com/symfony/translation-contracts.git", - "reference": "95c812666f3e91db75385749fe219c5e494c7f95" + "reference": "d28150f0f44ce854e942b671fc2620a98aae1b1e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/95c812666f3e91db75385749fe219c5e494c7f95", - "reference": "95c812666f3e91db75385749fe219c5e494c7f95", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/d28150f0f44ce854e942b671fc2620a98aae1b1e", + "reference": "d28150f0f44ce854e942b671fc2620a98aae1b1e", "shasum": "" }, "require": { @@ -8069,7 +8306,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "2.4-dev" + "dev-main": "2.5-dev" }, "thanks": { "name": "symfony/contracts", @@ -8106,7 +8343,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/translation-contracts/tree/v2.4.0" + "source": "https://github.com/symfony/translation-contracts/tree/v2.5.0" }, "funding": [ { @@ -8122,26 +8359,26 @@ "type": "tidelift" } ], - "time": "2021-03-23T23:28:01+00:00" + "time": "2021-08-17T14:20:01+00:00" }, { "name": "symfony/var-dumper", - "version": "v5.3.3", + "version": "v5.4.0", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "46aa709affb9ad3355bd7a810f9662d71025c384" + "reference": "89ab66eaef230c9cd1992de2e9a1b26652b127b9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/46aa709affb9ad3355bd7a810f9662d71025c384", - "reference": "46aa709affb9ad3355bd7a810f9662d71025c384", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/89ab66eaef230c9cd1992de2e9a1b26652b127b9", + "reference": "89ab66eaef230c9cd1992de2e9a1b26652b127b9", "shasum": "" }, "require": { "php": ">=7.2.5", "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php80": "^1.15" + "symfony/polyfill-php80": "^1.16" }, "conflict": { "phpunit/phpunit": "<5.4.3", @@ -8149,8 +8386,9 @@ }, "require-dev": { "ext-iconv": "*", - "symfony/console": "^4.4|^5.0", - "symfony/process": "^4.4|^5.0", + "symfony/console": "^4.4|^5.0|^6.0", + "symfony/process": "^4.4|^5.0|^6.0", + "symfony/uid": "^5.1|^6.0", "twig/twig": "^2.13|^3.0.4" }, "suggest": { @@ -8194,7 +8432,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v5.3.3" + "source": "https://github.com/symfony/var-dumper/tree/v5.4.0" }, "funding": [ { @@ -8210,32 +8448,31 @@ "type": "tidelift" } ], - "time": "2021-06-24T08:13:00+00:00" + "time": "2021-11-29T15:30:56+00:00" }, { "name": "symfony/yaml", - "version": "v5.3.3", + "version": "v6.0.0", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "485c83a2fb5893e2ff21bf4bfc7fdf48b4967229" + "reference": "f3064a2e0b5eabaeaf92db0a5913a77098b3b91e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/485c83a2fb5893e2ff21bf4bfc7fdf48b4967229", - "reference": "485c83a2fb5893e2ff21bf4bfc7fdf48b4967229", + "url": "https://api.github.com/repos/symfony/yaml/zipball/f3064a2e0b5eabaeaf92db0a5913a77098b3b91e", + "reference": "f3064a2e0b5eabaeaf92db0a5913a77098b3b91e", "shasum": "" }, "require": { - "php": ">=7.2.5", - "symfony/deprecation-contracts": "^2.1", - "symfony/polyfill-ctype": "~1.8" + "php": ">=8.0.2", + "symfony/polyfill-ctype": "^1.8" }, "conflict": { - "symfony/console": "<4.4" + "symfony/console": "<5.4" }, "require-dev": { - "symfony/console": "^4.4|^5.0" + "symfony/console": "^5.4|^6.0" }, "suggest": { "symfony/console": "For validating YAML files using the lint command" @@ -8269,7 +8506,7 @@ "description": "Loads and dumps YAML files", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/yaml/tree/v5.3.3" + "source": "https://github.com/symfony/yaml/tree/v6.0.0" }, "funding": [ { @@ -8285,7 +8522,7 @@ "type": "tidelift" } ], - "time": "2021-06-24T08:13:00+00:00" + "time": "2021-11-28T15:34:37+00:00" }, { "name": "tijsverkoyen/css-to-inline-styles", @@ -8392,31 +8629,31 @@ }, { "name": "vlucas/phpdotenv", - "version": "v5.3.0", + "version": "v5.4.0", "source": { "type": "git", "url": "https://github.com/vlucas/phpdotenv.git", - "reference": "b3eac5c7ac896e52deab4a99068e3f4ab12d9e56" + "reference": "d4394d044ed69a8f244f3445bcedf8a0d7fe2403" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/b3eac5c7ac896e52deab4a99068e3f4ab12d9e56", - "reference": "b3eac5c7ac896e52deab4a99068e3f4ab12d9e56", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/d4394d044ed69a8f244f3445bcedf8a0d7fe2403", + "reference": "d4394d044ed69a8f244f3445bcedf8a0d7fe2403", "shasum": "" }, "require": { "ext-pcre": "*", - "graham-campbell/result-type": "^1.0.1", + "graham-campbell/result-type": "^1.0.2", "php": "^7.1.3 || ^8.0", - "phpoption/phpoption": "^1.7.4", - "symfony/polyfill-ctype": "^1.17", - "symfony/polyfill-mbstring": "^1.17", - "symfony/polyfill-php80": "^1.17" + "phpoption/phpoption": "^1.8", + "symfony/polyfill-ctype": "^1.23", + "symfony/polyfill-mbstring": "^1.23.1", + "symfony/polyfill-php80": "^1.23.1" }, "require-dev": { "bamarni/composer-bin-plugin": "^1.4.1", "ext-filter": "*", - "phpunit/phpunit": "^7.5.20 || ^8.5.14 || ^9.5.1" + "phpunit/phpunit": "^7.5.20 || ^8.5.21 || ^9.5.10" }, "suggest": { "ext-filter": "Required to use the boolean validator." @@ -8424,7 +8661,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "5.3-dev" + "dev-master": "5.4-dev" } }, "autoload": { @@ -8439,13 +8676,11 @@ "authors": [ { "name": "Graham Campbell", - "email": "graham@alt-three.com", - "homepage": "https://gjcampbell.co.uk/" + "email": "hello@gjcampbell.co.uk" }, { "name": "Vance Lucas", - "email": "vance@vancelucas.com", - "homepage": "https://vancelucas.com/" + "email": "vance@vancelucas.com" } ], "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", @@ -8456,7 +8691,7 @@ ], "support": { "issues": "https://github.com/vlucas/phpdotenv/issues", - "source": "https://github.com/vlucas/phpdotenv/tree/v5.3.0" + "source": "https://github.com/vlucas/phpdotenv/tree/v5.4.0" }, "funding": [ { @@ -8468,7 +8703,7 @@ "type": "tidelift" } ], - "time": "2021-01-20T15:23:13+00:00" + "time": "2021-11-10T01:08:39+00:00" }, { "name": "voku/portable-ascii", @@ -8608,7 +8843,7 @@ "dist": { "type": "path", "url": "./modules/wm-admin", - "reference": "756275ddb54ad70935a383f4864f3290529763d9" + "reference": "a90944a727f3ca1bd7f8bba767dfcd993f730992" }, "require": { "php": "^7.1.3", @@ -8652,10 +8887,10 @@ "dist": { "type": "path", "url": "./modules/wm-blog", - "reference": "d2705b054fa0f6880f3cf8ac9a75470bcdc4e3bd" + "reference": "32011b6fe8c7d36bf1d53dbbe3c46a708ca351b1" }, "require": { - "php": "^7.1.3" + "php": "^8.0.8" }, "require-dev": { "orchestra/testbench": "~3.6.0", @@ -8697,7 +8932,7 @@ "dist": { "type": "path", "url": "./modules/wm-common", - "reference": "2b05f3fd8cccac507d1d4b0dc27b37ec51fb9e87" + "reference": "20cfa95129ed9ef3b3946ff7b6e34e1b23db4e15" }, "require": { "php": "^7.1.3", @@ -8743,7 +8978,7 @@ "dist": { "type": "path", "url": "./modules/wm-core", - "reference": "6eb03ed63d20b4779ff2796654a3c938215a8b98" + "reference": "eb77052e1ca0726159509b125d48cfd8abb0114c" }, "require": { "php": "^7.1.3" @@ -8792,7 +9027,7 @@ "dist": { "type": "path", "url": "./modules/wm-crm", - "reference": "952ce2b9ab5a3b179c3edd851e732f53459c20e9" + "reference": "f344dce89bde2b82d2aa65a3eee9314d077bd576" }, "require": { "php": "^7.1.3", @@ -8839,7 +9074,7 @@ "dist": { "type": "path", "url": "./modules/wm-finance", - "reference": "a9bbffcc28f4c11eb5f5196f421f1516c7b31dcb" + "reference": "90eeb7595b21c16b2591d95de34eeede1d3b5915" }, "require": { "php": "^7.1.3", @@ -8881,15 +9116,12 @@ } }, { - "name": "wm/notification", + "name": "wm/lms", "version": "dev-master", "dist": { "type": "path", - "url": "./modules/wm-notification", - "reference": "ec323961e9fd6a4a51d4b2fcb166c7b6ec9ecaaf" - }, - "require": { - "php": "^7.1.3" + "url": "./modules/wm-lms", + "reference": "df73468fcb59d3a4e041275cc66e4b227c59595a" }, "require-dev": { "orchestra/testbench": "~3.6.0", @@ -8899,41 +9131,33 @@ "extra": { "laravel": { "providers": [ - "WM\\Notification\\NotificationServiceProvider", - "WM\\Notification\\DependencyProvider" + "WM\\Lms\\LmsServiceProvider", + "WM\\Lms\\DependencyProvider" ] } }, "autoload": { "psr-4": { - "WM\\Notification\\": "src/", - "WM\\Database\\Notification\\Seeder\\": "database/seeds" - }, - "classmap": [ - "database/factories", - "database/seeds" - ] + "WM\\Lms\\": "src/" + } }, "autoload-dev": { "psr-4": { - "WM\\Notification\\Tests\\": "tests/" + "WM\\Lms\\Tests\\": "tests/" } }, - "license": [ - "MIT" - ], - "description": "notification module for willamall", + "description": "add lms system to willaengine", "transport-options": { "relative": true } }, { - "name": "wm/portfolio", + "name": "wm/notification", "version": "dev-master", "dist": { "type": "path", - "url": "./modules/wm-portfolio", - "reference": "f1a465db949da85b09064165c0422fea41a13cfe" + "url": "./modules/wm-notification", + "reference": "e0a4acf7ffbd709e0146165dc9ab66db2783afb4" }, "require": { "php": "^7.1.3" @@ -8946,29 +9170,30 @@ "extra": { "laravel": { "providers": [ - "WM\\Portfolio\\PortfolioServiceProvider", - "WM\\Portfolio\\DependencyProvider" + "WM\\Notification\\NotificationServiceProvider", + "WM\\Notification\\DependencyProvider" ] } }, "autoload": { "psr-4": { - "WM\\Portfolio\\": "src/" + "WM\\Notification\\": "src/", + "WM\\Database\\Notification\\Seeder\\": "database/seeds" }, "classmap": [ - "database/seeds", - "database/factories" + "database/factories", + "database/seeds" ] }, "autoload-dev": { "psr-4": { - "WM\\Portfolio\\Tests\\": "tests/" + "WM\\Notification\\Tests\\": "tests/" } }, "license": [ "MIT" ], - "description": "Portfolio management", + "description": "notification module for willamall", "transport-options": { "relative": true } @@ -8979,7 +9204,7 @@ "dist": { "type": "path", "url": "./modules/wm-product", - "reference": "1ac20b6afe705bbc145abb770a996b2900383ca5" + "reference": "b4212b83aedde184ed9050643a1c5ed85a380d21" }, "require": { "php": "^7.1.3", @@ -9026,7 +9251,7 @@ "dist": { "type": "path", "url": "./modules/wm-roll-call", - "reference": "93cb08c05284b88eb5ab802ffda12cb5947cf909" + "reference": "df66164a51bc29ad985501ce3a9b0aa89817165f" }, "require": { "php": "^7.1.3" @@ -9071,7 +9296,7 @@ "dist": { "type": "path", "url": "./modules/wm-service", - "reference": "8fa1238e733853e47a1845ac18630da93fbd8091" + "reference": "6e6778f70e34b9246315e62828dbdc33068e1c5c" }, "require": { "php": "^7.1.3", @@ -9113,13 +9338,60 @@ "relative": true } }, + { + "name": "wm/service-store", + "version": "dev-master", + "dist": { + "type": "path", + "url": "./modules/wm-service-store", + "reference": "c6d3c07e92c502dc0a08de286938784fb2e8ab40" + }, + "require": { + "php": "^7.1.3", + "wm/common": "dev-master", + "wm/core": "dev-master" + }, + "require-dev": { + "orchestra/testbench": "~3.6.0", + "phpunit/phpunit": "^7.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "WM\\ServiceStore\\ServiceStoreServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "WM\\ServiceStore\\": "src/" + }, + "classmap": [ + "database/seeds", + "database/factories" + ] + }, + "autoload-dev": { + "psr-4": { + "WM\\ServiceStore\\Tests\\": "tests/" + } + }, + "license": [ + "MIT" + ], + "description": "Service Store Management Service", + "transport-options": { + "relative": true + } + }, { "name": "wm/store", "version": "dev-master", "dist": { "type": "path", "url": "./modules/wm-store", - "reference": "ca97092f4e59827af151d29db21701c9f3e99917" + "reference": "eb8be57ad136bd74d61236b28354f9233d754e68" }, "require": { "php": "^7.4" @@ -9164,7 +9436,7 @@ "dist": { "type": "path", "url": "./modules/wm-web-builder", - "reference": "fbc30dcecc1d432253d0046c86dd511118206991" + "reference": "ea520472090d706bab82cb9d4ed859bf12fb0fc2" }, "require": { "php": "^7.2" @@ -9209,26 +9481,28 @@ }, { "name": "zircote/swagger-php", - "version": "3.2.3", + "version": "3.3.2", "source": { "type": "git", "url": "https://github.com/zircote/swagger-php.git", - "reference": "41ed0eb1dacebe2c365623b3f9ab13d1531a03da" + "reference": "68c76ce2bb43fb4603315fb973d4595711dcbfd3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zircote/swagger-php/zipball/41ed0eb1dacebe2c365623b3f9ab13d1531a03da", - "reference": "41ed0eb1dacebe2c365623b3f9ab13d1531a03da", + "url": "https://api.github.com/repos/zircote/swagger-php/zipball/68c76ce2bb43fb4603315fb973d4595711dcbfd3", + "reference": "68c76ce2bb43fb4603315fb973d4595711dcbfd3", "shasum": "" }, "require": { "doctrine/annotations": "^1.7", "ext-json": "*", "php": ">=7.2", + "psr/log": "^1.1", "symfony/finder": ">=2.2", "symfony/yaml": ">=3.3" }, "require-dev": { + "composer/package-versions-deprecated": "1.11.99.2", "friendsofphp/php-cs-fixer": "^2.17 || ^3.0", "phpunit/phpunit": ">=8" }, @@ -9274,9 +9548,9 @@ ], "support": { "issues": "https://github.com/zircote/swagger-php/issues", - "source": "https://github.com/zircote/swagger-php/tree/3.2.3" + "source": "https://github.com/zircote/swagger-php/tree/3.3.2" }, - "time": "2021-06-25T04:08:57+00:00" + "time": "2021-11-15T20:45:42+00:00" } ], "packages-dev": [ @@ -9351,16 +9625,16 @@ }, { "name": "facade/flare-client-php", - "version": "1.8.1", + "version": "1.9.1", "source": { "type": "git", "url": "https://github.com/facade/flare-client-php.git", - "reference": "47b639dc02bcfdfc4ebb83de703856fa01e35f5f" + "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/facade/flare-client-php/zipball/47b639dc02bcfdfc4ebb83de703856fa01e35f5f", - "reference": "47b639dc02bcfdfc4ebb83de703856fa01e35f5f", + "url": "https://api.github.com/repos/facade/flare-client-php/zipball/b2adf1512755637d0cef4f7d1b54301325ac78ed", + "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed", "shasum": "" }, "require": { @@ -9404,7 +9678,7 @@ ], "support": { "issues": "https://github.com/facade/flare-client-php/issues", - "source": "https://github.com/facade/flare-client-php/tree/1.8.1" + "source": "https://github.com/facade/flare-client-php/tree/1.9.1" }, "funding": [ { @@ -9412,26 +9686,27 @@ "type": "github" } ], - "time": "2021-05-31T19:23:29+00:00" + "time": "2021-09-13T12:16:46+00:00" }, { "name": "facade/ignition", - "version": "2.11.2", + "version": "2.17.2", "source": { "type": "git", "url": "https://github.com/facade/ignition.git", - "reference": "7c4e7a7da184cd00c7ce6eacc590200bb9672de7" + "reference": "af3cd70d58ca3ef5189ff0e59efbe5a5c043e2d2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/facade/ignition/zipball/7c4e7a7da184cd00c7ce6eacc590200bb9672de7", - "reference": "7c4e7a7da184cd00c7ce6eacc590200bb9672de7", + "url": "https://api.github.com/repos/facade/ignition/zipball/af3cd70d58ca3ef5189ff0e59efbe5a5c043e2d2", + "reference": "af3cd70d58ca3ef5189ff0e59efbe5a5c043e2d2", "shasum": "" }, "require": { + "ext-curl": "*", "ext-json": "*", "ext-mbstring": "*", - "facade/flare-client-php": "^1.6", + "facade/flare-client-php": "^1.9.1", "facade/ignition-contracts": "^1.0.2", "illuminate/support": "^7.0|^8.0", "monolog/monolog": "^2.0", @@ -9441,6 +9716,7 @@ }, "require-dev": { "friendsofphp/php-cs-fixer": "^2.14", + "livewire/livewire": "^2.4", "mockery/mockery": "^1.3", "orchestra/testbench": "^5.0|^6.0", "psalm/plugin-laravel": "^1.2" @@ -9488,7 +9764,7 @@ "issues": "https://github.com/facade/ignition/issues", "source": "https://github.com/facade/ignition" }, - "time": "2021-07-20T14:01:22+00:00" + "time": "2021-11-29T14:04:22+00:00" }, { "name": "facade/ignition-contracts", @@ -9545,21 +9821,21 @@ }, { "name": "filp/whoops", - "version": "2.14.0", + "version": "2.14.4", "source": { "type": "git", "url": "https://github.com/filp/whoops.git", - "reference": "fdf92f03e150ed84d5967a833ae93abffac0315b" + "reference": "f056f1fe935d9ed86e698905a957334029899895" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filp/whoops/zipball/fdf92f03e150ed84d5967a833ae93abffac0315b", - "reference": "fdf92f03e150ed84d5967a833ae93abffac0315b", + "url": "https://api.github.com/repos/filp/whoops/zipball/f056f1fe935d9ed86e698905a957334029899895", + "reference": "f056f1fe935d9ed86e698905a957334029899895", "shasum": "" }, "require": { "php": "^5.5.9 || ^7.0 || ^8.0", - "psr/log": "^1.0.1" + "psr/log": "^1.0.1 || ^2.0 || ^3.0" }, "require-dev": { "mockery/mockery": "^0.9 || ^1.0", @@ -9604,7 +9880,7 @@ ], "support": { "issues": "https://github.com/filp/whoops/issues", - "source": "https://github.com/filp/whoops/tree/2.14.0" + "source": "https://github.com/filp/whoops/tree/2.14.4" }, "funding": [ { @@ -9612,7 +9888,7 @@ "type": "github" } ], - "time": "2021-07-13T12:00:00+00:00" + "time": "2021-10-03T12:00:00+00:00" }, { "name": "fzaninotto/faker", @@ -9722,16 +9998,16 @@ }, { "name": "mockery/mockery", - "version": "1.4.3", + "version": "1.4.4", "source": { "type": "git", "url": "https://github.com/mockery/mockery.git", - "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea" + "reference": "e01123a0e847d52d186c5eb4b9bf58b0c6d00346" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mockery/mockery/zipball/d1339f64479af1bee0e82a0413813fe5345a54ea", - "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea", + "url": "https://api.github.com/repos/mockery/mockery/zipball/e01123a0e847d52d186c5eb4b9bf58b0c6d00346", + "reference": "e01123a0e847d52d186c5eb4b9bf58b0c6d00346", "shasum": "" }, "require": { @@ -9788,9 +10064,9 @@ ], "support": { "issues": "https://github.com/mockery/mockery/issues", - "source": "https://github.com/mockery/mockery/tree/1.4.3" + "source": "https://github.com/mockery/mockery/tree/1.4.4" }, - "time": "2021-02-24T09:51:49+00:00" + "time": "2021-09-13T15:28:59+00:00" }, { "name": "myclabs/deep-copy", @@ -9852,33 +10128,32 @@ }, { "name": "nunomaduro/collision", - "version": "v5.5.0", + "version": "v5.10.0", "source": { "type": "git", "url": "https://github.com/nunomaduro/collision.git", - "reference": "b5cb36122f1c142c3c3ee20a0ae778439ef0244b" + "reference": "3004cfa49c022183395eabc6d0e5207dfe498d00" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nunomaduro/collision/zipball/b5cb36122f1c142c3c3ee20a0ae778439ef0244b", - "reference": "b5cb36122f1c142c3c3ee20a0ae778439ef0244b", + "url": "https://api.github.com/repos/nunomaduro/collision/zipball/3004cfa49c022183395eabc6d0e5207dfe498d00", + "reference": "3004cfa49c022183395eabc6d0e5207dfe498d00", "shasum": "" }, "require": { "facade/ignition-contracts": "^1.0", - "filp/whoops": "^2.7.2", + "filp/whoops": "^2.14.3", "php": "^7.3 || ^8.0", "symfony/console": "^5.0" }, "require-dev": { "brianium/paratest": "^6.1", "fideloper/proxy": "^4.4.1", - "friendsofphp/php-cs-fixer": "^2.17.3", "fruitcake/laravel-cors": "^2.0.3", - "laravel/framework": "^9.0", + "laravel/framework": "8.x-dev", "nunomaduro/larastan": "^0.6.2", "nunomaduro/mock-final-classes": "^1.0", - "orchestra/testbench": "^7.0", + "orchestra/testbench": "^6.0", "phpstan/phpstan": "^0.12.64", "phpunit/phpunit": "^9.5.0" }, @@ -9936,7 +10211,7 @@ "type": "patreon" } ], - "time": "2021-06-22T20:47:22+00:00" + "time": "2021-09-20T15:06:32+00:00" }, { "name": "phar-io/manifest", @@ -10104,16 +10379,16 @@ }, { "name": "phpdocumentor/reflection-docblock", - "version": "5.2.2", + "version": "5.3.0", "source": { "type": "git", "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556" + "reference": "622548b623e81ca6d78b721c5e029f4ce664f170" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556", - "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170", + "reference": "622548b623e81ca6d78b721c5e029f4ce664f170", "shasum": "" }, "require": { @@ -10124,7 +10399,8 @@ "webmozart/assert": "^1.9.1" }, "require-dev": { - "mockery/mockery": "~1.3.2" + "mockery/mockery": "~1.3.2", + "psalm/phar": "^4.8" }, "type": "library", "extra": { @@ -10154,22 +10430,22 @@ "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", "support": { "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues", - "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master" + "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0" }, - "time": "2020-09-03T19:13:55+00:00" + "time": "2021-10-19T17:43:47+00:00" }, { "name": "phpdocumentor/type-resolver", - "version": "1.4.0", + "version": "1.5.1", "source": { "type": "git", "url": "https://github.com/phpDocumentor/TypeResolver.git", - "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0" + "reference": "a12f7e301eb7258bb68acd89d4aefa05c2906cae" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0", - "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/a12f7e301eb7258bb68acd89d4aefa05c2906cae", + "reference": "a12f7e301eb7258bb68acd89d4aefa05c2906cae", "shasum": "" }, "require": { @@ -10177,7 +10453,8 @@ "phpdocumentor/reflection-common": "^2.0" }, "require-dev": { - "ext-tokenizer": "*" + "ext-tokenizer": "*", + "psalm/phar": "^4.8" }, "type": "library", "extra": { @@ -10203,39 +10480,39 @@ "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", "support": { "issues": "https://github.com/phpDocumentor/TypeResolver/issues", - "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0" + "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.5.1" }, - "time": "2020-09-17T18:55:26+00:00" + "time": "2021-10-02T14:08:47+00:00" }, { "name": "phpspec/prophecy", - "version": "1.13.0", + "version": "1.14.0", "source": { "type": "git", "url": "https://github.com/phpspec/prophecy.git", - "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea" + "reference": "d86dfc2e2a3cd366cee475e52c6bb3bbc371aa0e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/be1996ed8adc35c3fd795488a653f4b518be70ea", - "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/d86dfc2e2a3cd366cee475e52c6bb3bbc371aa0e", + "reference": "d86dfc2e2a3cd366cee475e52c6bb3bbc371aa0e", "shasum": "" }, "require": { "doctrine/instantiator": "^1.2", - "php": "^7.2 || ~8.0, <8.1", + "php": "^7.2 || ~8.0, <8.2", "phpdocumentor/reflection-docblock": "^5.2", "sebastian/comparator": "^3.0 || ^4.0", "sebastian/recursion-context": "^3.0 || ^4.0" }, "require-dev": { - "phpspec/phpspec": "^6.0", + "phpspec/phpspec": "^6.0 || ^7.0", "phpunit/phpunit": "^8.0 || ^9.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.11.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { @@ -10270,29 +10547,29 @@ ], "support": { "issues": "https://github.com/phpspec/prophecy/issues", - "source": "https://github.com/phpspec/prophecy/tree/1.13.0" + "source": "https://github.com/phpspec/prophecy/tree/1.14.0" }, - "time": "2021-03-17T13:42:18+00:00" + "time": "2021-09-10T09:02:12+00:00" }, { "name": "phpunit/php-code-coverage", - "version": "9.2.6", + "version": "9.2.9", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "f6293e1b30a2354e8428e004689671b83871edde" + "reference": "f301eb1453c9e7a1bc912ee8b0ea9db22c60223b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f6293e1b30a2354e8428e004689671b83871edde", - "reference": "f6293e1b30a2354e8428e004689671b83871edde", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f301eb1453c9e7a1bc912ee8b0ea9db22c60223b", + "reference": "f301eb1453c9e7a1bc912ee8b0ea9db22c60223b", "shasum": "" }, "require": { "ext-dom": "*", "ext-libxml": "*", "ext-xmlwriter": "*", - "nikic/php-parser": "^4.10.2", + "nikic/php-parser": "^4.13.0", "php": ">=7.3", "phpunit/php-file-iterator": "^3.0.3", "phpunit/php-text-template": "^2.0.2", @@ -10341,7 +10618,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", - "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.6" + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.9" }, "funding": [ { @@ -10349,7 +10626,7 @@ "type": "github" } ], - "time": "2021-03-28T07:26:59+00:00" + "time": "2021-11-19T15:21:02+00:00" }, { "name": "phpunit/php-file-iterator", @@ -10594,16 +10871,16 @@ }, { "name": "phpunit/phpunit", - "version": "9.5.7", + "version": "9.5.10", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "d0dc8b6999c937616df4fb046792004b33fd31c5" + "reference": "c814a05837f2edb0d1471d6e3f4ab3501ca3899a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/d0dc8b6999c937616df4fb046792004b33fd31c5", - "reference": "d0dc8b6999c937616df4fb046792004b33fd31c5", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c814a05837f2edb0d1471d6e3f4ab3501ca3899a", + "reference": "c814a05837f2edb0d1471d6e3f4ab3501ca3899a", "shasum": "" }, "require": { @@ -10615,11 +10892,11 @@ "ext-xml": "*", "ext-xmlwriter": "*", "myclabs/deep-copy": "^1.10.1", - "phar-io/manifest": "^2.0.1", + "phar-io/manifest": "^2.0.3", "phar-io/version": "^3.0.2", "php": ">=7.3", "phpspec/prophecy": "^1.12.1", - "phpunit/php-code-coverage": "^9.2.3", + "phpunit/php-code-coverage": "^9.2.7", "phpunit/php-file-iterator": "^3.0.5", "phpunit/php-invoker": "^3.1.1", "phpunit/php-text-template": "^2.0.3", @@ -10681,7 +10958,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", - "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.7" + "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.10" }, "funding": [ { @@ -10693,7 +10970,7 @@ "type": "github" } ], - "time": "2021-07-19T06:14:47+00:00" + "time": "2021-09-25T07:38:51+00:00" }, { "name": "sebastian/cli-parser", @@ -11124,16 +11401,16 @@ }, { "name": "sebastian/exporter", - "version": "4.0.3", + "version": "4.0.4", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65" + "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/d89cc98761b8cb5a1a235a6b703ae50d34080e65", - "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9", + "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9", "shasum": "" }, "require": { @@ -11182,14 +11459,14 @@ } ], "description": "Provides the functionality to export PHP variables for visualization", - "homepage": "http://www.github.com/sebastianbergmann/exporter", + "homepage": "https://www.github.com/sebastianbergmann/exporter", "keywords": [ "export", "exporter" ], "support": { "issues": "https://github.com/sebastianbergmann/exporter/issues", - "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.3" + "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4" }, "funding": [ { @@ -11197,7 +11474,7 @@ "type": "github" } ], - "time": "2020-09-28T05:24:23+00:00" + "time": "2021-11-11T14:18:36+00:00" }, { "name": "sebastian/global-state", @@ -11548,7 +11825,6 @@ "type": "github" } ], - "abandoned": true, "time": "2020-09-28T06:45:17+00:00" }, { @@ -11662,16 +11938,16 @@ }, { "name": "theseer/tokenizer", - "version": "1.2.0", + "version": "1.2.1", "source": { "type": "git", "url": "https://github.com/theseer/tokenizer.git", - "reference": "75a63c33a8577608444246075ea0af0d052e452a" + "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a", - "reference": "75a63c33a8577608444246075ea0af0d052e452a", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e", + "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e", "shasum": "" }, "require": { @@ -11700,7 +11976,7 @@ "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", "support": { "issues": "https://github.com/theseer/tokenizer/issues", - "source": "https://github.com/theseer/tokenizer/tree/master" + "source": "https://github.com/theseer/tokenizer/tree/1.2.1" }, "funding": [ { @@ -11708,7 +11984,7 @@ "type": "github" } ], - "time": "2020-07-12T23:59:07+00:00" + "time": "2021-07-28T10:34:58+00:00" } ], "aliases": [], @@ -11718,13 +11994,14 @@ "wm/common": 20, "wm/core": 20, "wm/crm": 20, - "wm/portfolio": 20, "wm/product": 20, "wm/service": 20, "wm/store": 20, "wm/finance": 20, "wm/admin": 20, "wm/web-builder": 20, + "wm/service-store": 20, + "wm/lms": 20, "wm/notification": 20, "wm/roll-call": 20 }, diff --git a/database/migrations/2021_12_16_130810_update_user.php b/database/migrations/2021_12_16_130810_update_user.php new file mode 100644 index 0000000..84f3062 --- /dev/null +++ b/database/migrations/2021_12_16_130810_update_user.php @@ -0,0 +1,28 @@ +call(ModuleSeeder::class); - $this->call(CategorySeeder::class); - $this->call(BusinessSeeder::class); - $this->call(UserSeeder::class); - $this->call(CitySeeder::class); - $this->call(DistrictSeeder::class); - $this->call(DomainSeeder::class); - $this->call(HelpSeeder::class); - $this->call(PermissionCategorySeeder::class); - $this->call(RoleSeeder::class); +// $this->call(ModuleSeeder::class); +// $this->call(CategorySeeder::class); +// $this->call(BusinessSeeder::class); +// $this->call(UserSeeder::class); +// $this->call(CitySeeder::class); +// $this->call(DistrictSeeder::class); +// $this->call(DomainSeeder::class); +// $this->call(HelpSeeder::class); +// $this->call(PermissionCategorySeeder::class); +// $this->call(RoleSeeder::class); +// $this->call(ScoreCategorySeeder::class); + $this->call(SCitySeeder::class); } } diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/css/bootstrap.min.css b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/css/bootstrap.min.css new file mode 100644 index 0000000..c9603d4 --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/css/bootstrap.min.css @@ -0,0 +1,6 @@ +@charset "UTF-8";/*! + * Bootstrap v5.0.1 (https://getbootstrap.com/) + * Copyright 2011-2021 The Bootstrap Authors + * Copyright 2011-2021 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */:root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0))}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-font-sans-serif);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#6c757d}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-right:var(--bs-gutter-x,.75rem);padding-left:var(--bs-gutter-x,.75rem);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-right:calc(var(--bs-gutter-x)/ -2);margin-left:calc(var(--bs-gutter-x)/ -2)}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x)/ 2);padding-left:calc(var(--bs-gutter-x)/ 2);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.3333333333%}.col-2{flex:0 0 auto;width:16.6666666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.3333333333%}.col-5{flex:0 0 auto;width:41.6666666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.3333333333%}.col-8{flex:0 0 auto;width:66.6666666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.3333333333%}.col-11{flex:0 0 auto;width:91.6666666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.3333333333%}.offset-2{margin-left:16.6666666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.3333333333%}.offset-5{margin-left:41.6666666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.3333333333%}.offset-8{margin-left:66.6666666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.3333333333%}.offset-11{margin-left:91.6666666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.3333333333%}.col-sm-2{flex:0 0 auto;width:16.6666666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.3333333333%}.col-sm-5{flex:0 0 auto;width:41.6666666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.3333333333%}.col-sm-8{flex:0 0 auto;width:66.6666666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.3333333333%}.col-sm-11{flex:0 0 auto;width:91.6666666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.3333333333%}.offset-sm-2{margin-left:16.6666666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.3333333333%}.offset-sm-5{margin-left:41.6666666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.3333333333%}.offset-sm-8{margin-left:66.6666666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.3333333333%}.offset-sm-11{margin-left:91.6666666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.3333333333%}.col-md-2{flex:0 0 auto;width:16.6666666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.3333333333%}.col-md-5{flex:0 0 auto;width:41.6666666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.3333333333%}.col-md-8{flex:0 0 auto;width:66.6666666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.3333333333%}.col-md-11{flex:0 0 auto;width:91.6666666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.3333333333%}.offset-md-2{margin-left:16.6666666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.3333333333%}.offset-md-5{margin-left:41.6666666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.3333333333%}.offset-md-8{margin-left:66.6666666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.3333333333%}.offset-md-11{margin-left:91.6666666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.3333333333%}.col-lg-2{flex:0 0 auto;width:16.6666666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.3333333333%}.col-lg-5{flex:0 0 auto;width:41.6666666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.3333333333%}.col-lg-8{flex:0 0 auto;width:66.6666666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.3333333333%}.col-lg-11{flex:0 0 auto;width:91.6666666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.3333333333%}.offset-lg-2{margin-left:16.6666666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.3333333333%}.offset-lg-5{margin-left:41.6666666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.3333333333%}.offset-lg-8{margin-left:66.6666666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.3333333333%}.offset-lg-11{margin-left:91.6666666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.3333333333%}.col-xl-2{flex:0 0 auto;width:16.6666666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.3333333333%}.col-xl-5{flex:0 0 auto;width:41.6666666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.3333333333%}.col-xl-8{flex:0 0 auto;width:66.6666666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.3333333333%}.col-xl-11{flex:0 0 auto;width:91.6666666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.3333333333%}.offset-xl-2{margin-left:16.6666666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.3333333333%}.offset-xl-5{margin-left:41.6666666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.3333333333%}.offset-xl-8{margin-left:66.6666666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.3333333333%}.offset-xl-11{margin-left:91.6666666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.3333333333%}.col-xxl-2{flex:0 0 auto;width:16.6666666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.3333333333%}.col-xxl-5{flex:0 0 auto;width:41.6666666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.3333333333%}.col-xxl-8{flex:0 0 auto;width:66.6666666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.3333333333%}.col-xxl-11{flex:0 0 auto;width:91.6666666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.3333333333%}.offset-xxl-2{margin-left:16.6666666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.3333333333%}.offset-xxl-5{margin-left:41.6666666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.3333333333%}.offset-xxl-8{margin-left:66.6666666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.3333333333%}.offset-xxl-11{margin-left:91.6666666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-bg:transparent;--bs-table-accent-bg:transparent;--bs-table-striped-color:#212529;--bs-table-striped-bg:rgba(0, 0, 0, 0.05);--bs-table-active-color:#212529;--bs-table-active-bg:rgba(0, 0, 0, 0.1);--bs-table-hover-color:#212529;--bs-table-hover-bg:rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#dee2e6}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:last-child)>:last-child>*{border-bottom-color:currentColor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-striped>tbody>tr:nth-of-type(odd){--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-bg:#cfe2ff;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:#000;border-color:#bacbe6}.table-secondary{--bs-table-bg:#e2e3e5;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:#000;border-color:#cbccce}.table-success{--bs-table-bg:#d1e7dd;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:#000;border-color:#bcd0c7}.table-info{--bs-table-bg:#cff4fc;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:#000;border-color:#badce3}.table-warning{--bs-table-bg:#fff3cd;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:#000;border-color:#e6dbb9}.table-danger{--bs-table-bg:#f8d7da;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:#000;border-color:#dfc2c4}.table-light{--bs-table-bg:#f8f9fa;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:#000;border-color:#dfe0e1}.table-dark{--bs-table-bg:#212529;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:#fff;border-color:#373b3e}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:#6c757d}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + 2px)}textarea.form-control-sm{min-height:calc(1.5em + .5rem + 2px)}textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}.form-control-color{max-width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.5em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.25rem}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#e9ecef}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #212529}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.form-range:disabled::-moz-range-thumb{background-color:#adb5bd}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);padding:1rem .75rem}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#198754}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(25,135,84,.9);border-radius:.25rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#198754;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:#198754}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#198754}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#198754}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#198754}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group .form-control.is-valid,.input-group .form-select.is-valid,.was-validated .input-group .form-control:valid,.was-validated .input-group .form-select:valid{z-index:1}.input-group .form-control.is-valid:focus,.input-group .form-select.is-valid:focus,.was-validated .input-group .form-control:valid:focus,.was-validated .input-group .form-select:valid:focus{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:#dc3545}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#dc3545}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#dc3545}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group .form-control.is-invalid,.input-group .form-select.is-invalid,.was-validated .input-group .form-control:invalid,.was-validated .input-group .form-select:invalid{z-index:2}.input-group .form-control.is-invalid:focus,.input-group .form-select.is-invalid:focus,.was-validated .input-group .form-control:invalid:focus,.was-validated .input-group .form-select:invalid:focus{z-index:3}.btn{display:inline-block;font-weight:400;line-height:1.5;color:#212529;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-primary{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-primary:hover{color:#fff;background-color:#0b5ed7;border-color:#0a58ca}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#0b5ed7;border-color:#0a58ca;box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0a58ca;border-color:#0a53be}.btn-check:active+.btn-primary:focus,.btn-check:checked+.btn-primary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5c636a;border-color:#565e64}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#fff;background-color:#5c636a;border-color:#565e64;box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#565e64;border-color:#51585e}.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-secondary:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-success{color:#fff;background-color:#198754;border-color:#198754}.btn-success:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+.btn-success,.btn-success:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#198754;border-color:#198754}.btn-info{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-info:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+.btn-info,.btn-info:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-info.disabled,.btn-info:disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-warning{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-check:active+.btn-warning,.btn-check:checked+.btn-warning,.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:active+.btn-warning:focus,.btn-check:checked+.btn-warning:focus,.btn-warning.active:focus,.btn-warning:active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-light{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+.btn-light,.btn-light:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-check:active+.btn-light,.btn-check:checked+.btn-light,.btn-light.active,.btn-light:active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:active+.btn-light:focus,.btn-check:checked+.btn-light:focus,.btn-light.active:focus,.btn-light:active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-light.disabled,.btn-light:disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-dark{color:#fff;background-color:#212529;border-color:#212529}.btn-dark:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-check:active+.btn-dark,.btn-check:checked+.btn-dark,.btn-dark.active,.btn-dark:active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:active+.btn-dark:focus,.btn-check:checked+.btn-dark:focus,.btn-dark.active:focus,.btn-dark:active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#212529;border-color:#212529}.btn-outline-primary{color:#0d6efd;border-color:#0d6efd}.btn-outline-primary:hover{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary:active{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:active+.btn-outline-primary:focus,.btn-check:checked+.btn-outline-primary:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus,.btn-outline-primary:active:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#0d6efd;background-color:transparent}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary:active{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:active+.btn-outline-secondary:focus,.btn-check:checked+.btn-outline-secondary:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus,.btn-outline-secondary:active:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-success{color:#198754;border-color:#198754}.btn-outline-success:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-check:active+.btn-outline-success,.btn-check:checked+.btn-outline-success,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show,.btn-outline-success:active{color:#fff;background-color:#198754;border-color:#198754}.btn-check:active+.btn-outline-success:focus,.btn-check:checked+.btn-outline-success:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus,.btn-outline-success:active:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#198754;background-color:transparent}.btn-outline-info{color:#0dcaf0;border-color:#0dcaf0}.btn-outline-info:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-check:active+.btn-outline-info,.btn-check:checked+.btn-outline-info,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show,.btn-outline-info:active{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:active+.btn-outline-info:focus,.btn-check:checked+.btn-outline-info:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus,.btn-outline-info:active:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#0dcaf0;background-color:transparent}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-check:active+.btn-outline-warning,.btn-check:checked+.btn-outline-warning,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show,.btn-outline-warning:active{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:active+.btn-outline-warning:focus,.btn-check:checked+.btn-outline-warning:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus,.btn-outline-warning:active:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-check:active+.btn-outline-danger,.btn-check:checked+.btn-outline-danger,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show,.btn-outline-danger:active{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:active+.btn-outline-danger:focus,.btn-check:checked+.btn-outline-danger:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus,.btn-outline-danger:active:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-check:active+.btn-outline-light,.btn-check:checked+.btn-outline-light,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show,.btn-outline-light:active{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:active+.btn-outline-light:focus,.btn-check:checked+.btn-outline-light:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus,.btn-outline-light:active:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-dark{color:#212529;border-color:#212529}.btn-outline-dark:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-check:active+.btn-outline-dark,.btn-check:checked+.btn-outline-dark,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show,.btn-outline-dark:active{color:#fff;background-color:#212529;border-color:#212529}.btn-check:active+.btn-outline-dark:focus,.btn-check:checked+.btn-outline-dark:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus,.btn-outline-dark:active:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#212529;background-color:transparent}.btn-link{font-weight:400;color:#0d6efd;text-decoration:underline}.btn-link:hover{color:#0a58ca}.btn-link.disabled,.btn-link:disabled{color:#6c757d}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropend,.dropstart,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:.125rem}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#212529;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#1e2125;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#0d6efd}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1rem;color:#212529}.dropdown-menu-dark{color:#dee2e6;background-color:#343a40;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#dee2e6}.dropdown-menu-dark .dropdown-item:focus,.dropdown-menu-dark .dropdown-item:hover{color:#fff;background-color:rgba(255,255,255,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#0d6efd}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#adb5bd}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#dee2e6}.dropdown-menu-dark .dropdown-header{color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#0d6efd;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:#0a58ca}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;background:0 0;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6;isolation:isolate}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:0 0;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#0d6efd}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem;transition:box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.55)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.55)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.55)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.55);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1rem 1rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-.25rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1rem}.card-header{padding:.5rem 1rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer{padding:.5rem 1rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.5rem;margin-bottom:-.5rem;margin-left:-.5rem;border-bottom:0}.card-header-pills{margin-right:-.5rem;margin-left:-.5rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-group>.card{margin-bottom:.75rem}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1rem 1.25rem;font-size:1rem;color:#212529;text-align:left;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#0c63e4;background-color:#e7f1ff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed)::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(-180deg)}.accordion-button::after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:"";background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.accordion-header{margin-bottom:0}.accordion-item{background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:first-of-type{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-body{padding:1rem 1.25rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}.breadcrumb{display:flex;flex-wrap:wrap;padding:0 0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#6c757d;content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:#6c757d}.pagination{display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;color:#0d6efd;text-decoration:none;background-color:#fff;border:1px solid #dee2e6;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:#0a58ca;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;color:#0a58ca;background-color:#e9ecef;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;background-color:#fff;border-color:#dee2e6}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1rem 1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{color:#084298;background-color:#cfe2ff;border-color:#b6d4fe}.alert-primary .alert-link{color:#06357a}.alert-secondary{color:#41464b;background-color:#e2e3e5;border-color:#d3d6d8}.alert-secondary .alert-link{color:#34383c}.alert-success{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}.alert-success .alert-link{color:#0c4128}.alert-info{color:#055160;background-color:#cff4fc;border-color:#b6effb}.alert-info .alert-link{color:#04414d}.alert-warning{color:#664d03;background-color:#fff3cd;border-color:#ffecb5}.alert-warning .alert-link{color:#523e02}.alert-danger{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}.alert-danger .alert-link{color:#6a1a21}.alert-light{color:#636464;background-color:#fefefe;border-color:#fdfdfe}.alert-light .alert-link{color:#4f5050}.alert-dark{color:#141619;background-color:#d3d3d4;border-color:#bcbebf}.alert-dark .alert-link{color:#101214}@-webkit-keyframes progress-bar-stripes{0%{background-position-x:1rem}}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#0d6efd;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#212529;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#084298;background-color:#cfe2ff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#084298;background-color:#bacbe6}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}.list-group-item-secondary{color:#41464b;background-color:#e2e3e5}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#41464b;background-color:#cbccce}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}.list-group-item-success{color:#0f5132;background-color:#d1e7dd}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#0f5132;background-color:#bcd0c7}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}.list-group-item-info{color:#055160;background-color:#cff4fc}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#055160;background-color:#badce3}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}.list-group-item-warning{color:#664d03;background-color:#fff3cd}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#664d03;background-color:#e6dbb9}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}.list-group-item-danger{color:#842029;background-color:#f8d7da}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#842029;background-color:#dfc2c4}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}.list-group-item-light{color:#636464;background-color:#fefefe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#636464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}.list-group-item-dark{color:#141619;background-color:#d3d3d4}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#141619;background-color:#bebebf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25);opacity:1}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .5rem 1rem rgba(0,0,0,.15);border-radius:.25rem}.toast:not(.showing):not(.show){opacity:0}.toast.hide{display:none}.toast-container{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.toast-header .btn-close{margin-right:-.375rem;margin-left:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;left:0;z-index:1060;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .btn-close{padding:.5rem .5rem;margin:-.5rem -.5rem -.5rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[data-popper-placement^=right],.bs-tooltip-end{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[data-popper-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[data-popper-placement^=left],.bs-tooltip-start{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1070;display:block;max-width:276px;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f0f0f0}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid #d8d8d8;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem 1rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@-webkit-keyframes spinner-border{to{transform:rotate(360deg)}}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:.75s linear infinite spinner-border;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:.75s linear infinite spinner-grow;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.offcanvas{position:fixed;bottom:0;z-index:1050;display:flex;flex-direction:column;max-width:100%;visibility:hidden;background-color:#fff;background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:1rem 1rem}.offcanvas-header .btn-close{padding:.5rem .5rem;margin:-.5rem -.5rem -.5rem auto}.offcanvas-title{margin-bottom:0;line-height:1.5}.offcanvas-body{flex-grow:1;padding:1rem 1rem;overflow-y:auto}.offcanvas-start{top:0;left:0;width:400px;border-right:1px solid rgba(0,0,0,.2);transform:translateX(-100%)}.offcanvas-end{top:0;right:0;width:400px;border-left:1px solid rgba(0,0,0,.2);transform:translateX(100%)}.offcanvas-top{top:0;right:0;left:0;height:30vh;max-height:100%;border-bottom:1px solid rgba(0,0,0,.2);transform:translateY(-100%)}.offcanvas-bottom{right:0;left:0;height:30vh;max-height:100%;border-top:1px solid rgba(0,0,0,.2);transform:translateY(100%)}.offcanvas.show{transform:none}.clearfix::after{display:block;clear:both;content:""}.link-primary{color:#0d6efd}.link-primary:focus,.link-primary:hover{color:#0a58ca}.link-secondary{color:#6c757d}.link-secondary:focus,.link-secondary:hover{color:#565e64}.link-success{color:#198754}.link-success:focus,.link-success:hover{color:#146c43}.link-info{color:#0dcaf0}.link-info:focus,.link-info:hover{color:#3dd5f3}.link-warning{color:#ffc107}.link-warning:focus,.link-warning:hover{color:#ffcd39}.link-danger{color:#dc3545}.link-danger:focus,.link-danger:hover{color:#b02a37}.link-light{color:#f8f9fa}.link-light:focus,.link-light:hover{color:#f9fafb}.link-dark{color:#212529}.link-dark:focus,.link-dark:hover{color:#1a1e21}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:calc(3 / 4 * 100%)}.ratio-16x9{--bs-aspect-ratio:calc(9 / 16 * 100%)}.ratio-21x9{--bs-aspect-ratio:calc(9 / 21 * 100%)}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:1px solid #dee2e6!important}.border-0{border:0!important}.border-top{border-top:1px solid #dee2e6!important}.border-top-0{border-top:0!important}.border-end{border-right:1px solid #dee2e6!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:1px solid #dee2e6!important}.border-start-0{border-left:0!important}.border-primary{border-color:#0d6efd!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#198754!important}.border-info{border-color:#0dcaf0!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#212529!important}.border-white{border-color:#fff!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{color:#0d6efd!important}.text-secondary{color:#6c757d!important}.text-success{color:#198754!important}.text-info{color:#0dcaf0!important}.text-warning{color:#ffc107!important}.text-danger{color:#dc3545!important}.text-light{color:#f8f9fa!important}.text-dark{color:#212529!important}.text-white{color:#fff!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-reset{color:inherit!important}.bg-primary{background-color:#0d6efd!important}.bg-secondary{background-color:#6c757d!important}.bg-success{background-color:#198754!important}.bg-info{background-color:#0dcaf0!important}.bg-warning{background-color:#ffc107!important}.bg-danger{background-color:#dc3545!important}.bg-light{background-color:#f8f9fa!important}.bg-dark{background-color:#212529!important}.bg-body{background-color:#fff!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:.25rem!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:.2rem!important}.rounded-2{border-radius:.25rem!important}.rounded-3{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-end{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-start{border-bottom-left-radius:.25rem!important;border-top-left-radius:.25rem!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}} diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/css/jquery.fancybox.min.css b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/css/jquery.fancybox.min.css new file mode 100644 index 0000000..faf98f6 --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/css/jquery.fancybox.min.css @@ -0,0 +1 @@ +body.compensate-for-scrollbar{overflow:hidden}.fancybox-active{height:auto}.fancybox-is-hidden{left:-9999px;margin:0;position:absolute!important;top:-9999px;visibility:hidden}.fancybox-container{-webkit-backface-visibility:hidden;height:100%;left:0;outline:none;position:fixed;-webkit-tap-highlight-color:transparent;top:0;-ms-touch-action:manipulation;touch-action:manipulation;transform:translateZ(0);width:100%;z-index:99992}.fancybox-container *{box-sizing:border-box}.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage{bottom:0;left:0;position:absolute;right:0;top:0}.fancybox-outer{-webkit-overflow-scrolling:touch;overflow-y:auto}.fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47,0,.74,.71)}.fancybox-is-open .fancybox-bg{opacity:.9;transition-timing-function:cubic-bezier(.22,.61,.36,1)}.fancybox-caption,.fancybox-infobar,.fancybox-navigation .fancybox-button,.fancybox-toolbar{direction:ltr;opacity:0;position:absolute;transition:opacity .25s ease,visibility 0s ease .25s;visibility:hidden;z-index:99997}.fancybox-show-caption .fancybox-caption,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-nav .fancybox-navigation .fancybox-button,.fancybox-show-toolbar .fancybox-toolbar{opacity:1;transition:opacity .25s ease 0s,visibility 0s ease 0s;visibility:visible}.fancybox-infobar{color:#ccc;font-size:13px;-webkit-font-smoothing:subpixel-antialiased;height:44px;left:0;line-height:44px;min-width:44px;mix-blend-mode:difference;padding:0 10px;pointer-events:none;top:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-toolbar{right:0;top:0}.fancybox-stage{direction:ltr;overflow:visible;transform:translateZ(0);z-index:99994}.fancybox-is-open .fancybox-stage{overflow:hidden}.fancybox-slide{-webkit-backface-visibility:hidden;display:none;height:100%;left:0;outline:none;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:absolute;text-align:center;top:0;transition-property:transform,opacity;white-space:normal;width:100%;z-index:99994}.fancybox-slide:before{content:"";display:inline-block;font-size:0;height:100%;vertical-align:middle;width:0}.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous{display:block}.fancybox-slide--image{overflow:hidden;padding:44px 0}.fancybox-slide--image:before{display:none}.fancybox-slide--html{padding:6px}.fancybox-content{background:#fff;display:inline-block;margin:0;max-width:100%;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:relative;text-align:left;vertical-align:middle}.fancybox-slide--image .fancybox-content{animation-timing-function:cubic-bezier(.5,0,.14,1);-webkit-backface-visibility:hidden;background:transparent;background-repeat:no-repeat;background-size:100% 100%;left:0;max-width:none;overflow:visible;padding:0;position:absolute;top:0;transform-origin:top left;transition-property:transform,opacity;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:99995}.fancybox-can-zoomOut .fancybox-content{cursor:zoom-out}.fancybox-can-zoomIn .fancybox-content{cursor:zoom-in}.fancybox-can-pan .fancybox-content,.fancybox-can-swipe .fancybox-content{cursor:grab}.fancybox-is-grabbing .fancybox-content{cursor:grabbing}.fancybox-container [data-selectable=true]{cursor:text}.fancybox-image,.fancybox-spaceball{background:transparent;border:0;height:100%;left:0;margin:0;max-height:none;max-width:none;padding:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.fancybox-spaceball{z-index:1}.fancybox-slide--iframe .fancybox-content,.fancybox-slide--map .fancybox-content,.fancybox-slide--pdf .fancybox-content,.fancybox-slide--video .fancybox-content{height:100%;overflow:visible;padding:0;width:100%}.fancybox-slide--video .fancybox-content{background:#000}.fancybox-slide--map .fancybox-content{background:#e5e3df}.fancybox-slide--iframe .fancybox-content{background:#fff}.fancybox-iframe,.fancybox-video{background:transparent;border:0;display:block;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.fancybox-iframe{left:0;position:absolute;top:0}.fancybox-error{background:#fff;cursor:default;max-width:400px;padding:40px;width:100%}.fancybox-error p{color:#444;font-size:16px;line-height:20px;margin:0;padding:0}.fancybox-button{background:rgba(30,30,30,.6);border:0;border-radius:0;box-shadow:none;cursor:pointer;display:inline-block;height:44px;margin:0;padding:10px;position:relative;transition:color .2s;vertical-align:top;visibility:inherit;width:44px}.fancybox-button,.fancybox-button:link,.fancybox-button:visited{color:#ccc}.fancybox-button:hover{color:#fff}.fancybox-button:focus{outline:none}.fancybox-button.fancybox-focus{outline:1px dotted}.fancybox-button[disabled],.fancybox-button[disabled]:hover{color:#888;cursor:default;outline:none}.fancybox-button div{height:100%}.fancybox-button svg{display:block;height:100%;overflow:visible;position:relative;width:100%}.fancybox-button svg path{fill:currentColor;stroke-width:0}.fancybox-button--fsenter svg:nth-child(2),.fancybox-button--fsexit svg:first-child,.fancybox-button--pause svg:first-child,.fancybox-button--play svg:nth-child(2){display:none}.fancybox-progress{background:#ff5268;height:2px;left:0;position:absolute;right:0;top:0;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;z-index:99998}.fancybox-close-small{background:transparent;border:0;border-radius:0;color:#ccc;cursor:pointer;opacity:.8;padding:8px;position:absolute;right:-12px;top:-44px;z-index:401}.fancybox-close-small:hover{color:#fff;opacity:1}.fancybox-slide--html .fancybox-close-small{color:currentColor;padding:10px;right:0;top:0}.fancybox-slide--image.fancybox-is-scaling .fancybox-content{overflow:hidden}.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small{display:none}.fancybox-navigation .fancybox-button{background-clip:content-box;height:100px;opacity:0;position:absolute;top:calc(50% - 50px);width:70px}.fancybox-navigation .fancybox-button div{padding:7px}.fancybox-navigation .fancybox-button--arrow_left{left:0;left:env(safe-area-inset-left);padding:31px 26px 31px 6px}.fancybox-navigation .fancybox-button--arrow_right{padding:31px 6px 31px 26px;right:0;right:env(safe-area-inset-right)}.fancybox-caption{background:linear-gradient(0deg,rgba(0,0,0,.85) 0,rgba(0,0,0,.3) 50%,rgba(0,0,0,.15) 65%,rgba(0,0,0,.075) 75.5%,rgba(0,0,0,.037) 82.85%,rgba(0,0,0,.019) 88%,transparent);bottom:0;color:#eee;font-size:14px;font-weight:400;left:0;line-height:1.5;padding:75px 44px 25px;pointer-events:none;right:0;text-align:center;z-index:99996}@supports (padding:max(0px)){.fancybox-caption{padding:75px max(44px,env(safe-area-inset-right)) max(25px,env(safe-area-inset-bottom)) max(44px,env(safe-area-inset-left))}}.fancybox-caption--separate{margin-top:-50px}.fancybox-caption__body{max-height:50vh;overflow:auto;pointer-events:all}.fancybox-caption a,.fancybox-caption a:link,.fancybox-caption a:visited{color:#ccc;text-decoration:none}.fancybox-caption a:hover{color:#fff;text-decoration:underline}.fancybox-loading{animation:a 1s linear infinite;background:transparent;border:4px solid #888;border-bottom-color:#fff;border-radius:50%;height:50px;left:50%;margin:-25px 0 0 -25px;opacity:.7;padding:0;position:absolute;top:50%;width:50px;z-index:99999}@keyframes a{to{transform:rotate(1turn)}}.fancybox-animated{transition-timing-function:cubic-bezier(0,0,.25,1)}.fancybox-fx-slide.fancybox-slide--previous{opacity:0;transform:translate3d(-100%,0,0)}.fancybox-fx-slide.fancybox-slide--next{opacity:0;transform:translate3d(100%,0,0)}.fancybox-fx-slide.fancybox-slide--current{opacity:1;transform:translateZ(0)}.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19,1,.22,1)}.fancybox-fx-fade.fancybox-slide--current{opacity:1}.fancybox-fx-zoom-in-out.fancybox-slide--previous{opacity:0;transform:scale3d(1.5,1.5,1.5)}.fancybox-fx-zoom-in-out.fancybox-slide--next{opacity:0;transform:scale3d(.5,.5,.5)}.fancybox-fx-zoom-in-out.fancybox-slide--current{opacity:1;transform:scaleX(1)}.fancybox-fx-rotate.fancybox-slide--previous{opacity:0;transform:rotate(-1turn)}.fancybox-fx-rotate.fancybox-slide--next{opacity:0;transform:rotate(1turn)}.fancybox-fx-rotate.fancybox-slide--current{opacity:1;transform:rotate(0deg)}.fancybox-fx-circular.fancybox-slide--previous{opacity:0;transform:scale3d(0,0,0) translate3d(-100%,0,0)}.fancybox-fx-circular.fancybox-slide--next{opacity:0;transform:scale3d(0,0,0) translate3d(100%,0,0)}.fancybox-fx-circular.fancybox-slide--current{opacity:1;transform:scaleX(1) translateZ(0)}.fancybox-fx-tube.fancybox-slide--previous{transform:translate3d(-100%,0,0) scale(.1) skew(-10deg)}.fancybox-fx-tube.fancybox-slide--next{transform:translate3d(100%,0,0) scale(.1) skew(10deg)}.fancybox-fx-tube.fancybox-slide--current{transform:translateZ(0) scale(1)}@media (max-height:576px){.fancybox-slide{padding-left:6px;padding-right:6px}.fancybox-slide--image{padding:6px 0}.fancybox-close-small{right:-6px}.fancybox-slide--image .fancybox-close-small{background:#4e4e4e;color:#f2f4f6;height:36px;opacity:1;padding:6px;right:0;top:0;width:36px}.fancybox-caption{padding-left:12px;padding-right:12px}@supports (padding:max(0px)){.fancybox-caption{padding-left:max(12px,env(safe-area-inset-left));padding-right:max(12px,env(safe-area-inset-right))}}}.fancybox-share{background:#f4f4f4;border-radius:3px;max-width:90%;padding:30px;text-align:center}.fancybox-share h1{color:#222;font-size:35px;font-weight:700;margin:0 0 20px}.fancybox-share p{margin:0;padding:0}.fancybox-share__button{border:0;border-radius:3px;display:inline-block;font-size:14px;font-weight:700;line-height:40px;margin:0 5px 10px;min-width:130px;padding:0 15px;text-decoration:none;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}.fancybox-share__button:link,.fancybox-share__button:visited{color:#fff}.fancybox-share__button:hover{text-decoration:none}.fancybox-share__button--fb{background:#3b5998}.fancybox-share__button--fb:hover{background:#344e86}.fancybox-share__button--pt{background:#bd081d}.fancybox-share__button--pt:hover{background:#aa0719}.fancybox-share__button--tw{background:#1da1f2}.fancybox-share__button--tw:hover{background:#0d95e8}.fancybox-share__button svg{height:25px;margin-right:7px;position:relative;top:-1px;vertical-align:middle;width:25px}.fancybox-share__button svg path{fill:#fff}.fancybox-share__input{background:transparent;border:0;border-bottom:1px solid #d7d7d7;border-radius:0;color:#5d5b5b;font-size:14px;margin:10px 0 0;outline:none;padding:10px 15px;width:100%}.fancybox-thumbs{background:#ddd;bottom:0;display:none;margin:0;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding:2px 2px 4px;position:absolute;right:0;-webkit-tap-highlight-color:rgba(0,0,0,0);top:0;width:212px;z-index:99995}.fancybox-thumbs-x{overflow-x:auto;overflow-y:hidden}.fancybox-show-thumbs .fancybox-thumbs{display:block}.fancybox-show-thumbs .fancybox-inner{right:212px}.fancybox-thumbs__list{font-size:0;height:100%;list-style:none;margin:0;overflow-x:hidden;overflow-y:auto;padding:0;position:absolute;position:relative;white-space:nowrap;width:100%}.fancybox-thumbs-x .fancybox-thumbs__list{overflow:hidden}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar{width:7px}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}.fancybox-thumbs__list a{-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:rgba(0,0,0,.1);background-position:50%;background-repeat:no-repeat;background-size:cover;cursor:pointer;float:left;height:75px;margin:2px;max-height:calc(100% - 8px);max-width:calc(50% - 4px);outline:none;overflow:hidden;padding:0;position:relative;-webkit-tap-highlight-color:transparent;width:100px}.fancybox-thumbs__list a:before{border:6px solid #ff5268;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0;transition:all .2s cubic-bezier(.25,.46,.45,.94);z-index:99991}.fancybox-thumbs__list a:focus:before{opacity:.5}.fancybox-thumbs__list a.fancybox-thumbs-active:before{opacity:1}@media (max-width:576px){.fancybox-thumbs{width:110px}.fancybox-show-thumbs .fancybox-inner{right:110px}.fancybox-thumbs__list a{max-width:calc(100% - 10px)}} diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/css/modification.css b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/css/modification.css new file mode 100644 index 0000000..01de553 --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/css/modification.css @@ -0,0 +1,146 @@ +/*------------------------------------------ + public +------------------------------------------*/ +.rtl { + direction: rtl; +} +.iran-yekan { + font-family: 'iran-yekan'; +} +.dancing-script { + font-family: 'dancing-script'; +} +.montserrat-extrabold { + font-family: 'montserrat-extrabold'; +} +.line-clamp1 { + overflow: hidden; + display: -webkit-box !important; + -webkit-line-clamp: 1; + -webkit-box-orient: vertical; +} +img { + max-width: initial; +} +/*------------------------------------------ + menu +------------------------------------------*/ +.menu-tab-wp { + margin-bottom: 100px; +} +.dish-box { + display: flex; + flex-direction: column; + padding-top: 0; + margin: 0 0 15px; + padding: 5px 10px; + background: #fff; +} +.dist-top-row { + display: flex; + flex-direction: row-reverse; + align-items: center; + justify-content: space-between; +} +.dist-img { + margin-top: 0; + margin-bottom: 0; +} +.dist-img img { + width: 71px; + height: 72px; +} +.dish-title .h3-title { + min-height: 0px; + font-family: 'iran-yekan'; + margin-bottom: 2px; + font-size: 1.2rem; + -webkit-line-clamp: 1; +} +.dish-title { + flex: 0 0 220px; + text-align: right; + padding: 0 10px; +} +.dish-title p { + font-size: 1rem; + line-height: 1rem; +} +.dist-bottom-row ul li b { + font-size: 24px; + color: var(--dark-color); +} +.dist-bottom-row { + flex-direction: row-reverse; + align-items: center; + padding: 0; + margin-left: 1rem; +} +.dish-info ul, .dist-bottom-row ul { + display: flex; +} +.menu-tab ul li, .menu-tab ul .filter-active { + font-family: iran-yekan; + font-size: 14px; +} +.filter-active { + top: 7px; +} +.currency { + font-size: 10px; + margin-right: 1px; +} +.dist-bottom-row ul li { + align-items: flex-start; + flex-direction: column; + line-height: 1rem; +} +.dist-img img { + box-shadow: unset; +} +/*------------------------------------------ + responsive menu +------------------------------------------*/ +@media (max-width: 767px) { + .dish-title { + flex: 0 0 200px; + } + .dish-box { + max-width: 100%; + } + .menu-tab-wp { + margin-bottom: 30px; + } + .dish-title .h3-title { + font-size: 1.2rem; + } + .dist-bottom-row ul li b { + font-size: 1rem; + } +} +/*------------------------------------------ + container +------------------------------------------*/ +@media (min-width: 1500px) { + .container { + max-width: 1368px!important; + width: 1368px!important; + } +} +.row { + --bs-gutter-x: 1.5rem; + --bs-gutter-y: 0; + display: flex; + flex-wrap: wrap; + margin-top: calc(var(--bs-gutter-y) * -1)!important; + margin-right: calc(var(--bs-gutter-x)/ -2)!important; + margin-left: calc(var(--bs-gutter-x)/ -2)!important; +} +.row>* { + flex-shrink: 0; + width: 100%; + max-width: 100%; + padding-right: calc(var(--bs-gutter-x)/ 2)!important; + padding-left: calc(var(--bs-gutter-x)/ 2)!important; + margin-top: var(--bs-gutter-y)!important; +} diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/css/style.css b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/css/style.css new file mode 100644 index 0000000..b7c6c75 --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/css/style.css @@ -0,0 +1,2777 @@ +/*========== + +Theme Name: Foodify - Organic Food HTML5 Template +Theme Version: 1.0 + +==========*/ + + +/*========== +----- CSS INDEX ---- +1.Typography CSS +2.Common CSS +3.Form CSS +4.Button CSS +5.Slider CSS +6.Overflow text CSS +7.White Text CSS +8.Header CSS +9.Banner sec CSS +10.Brands sec CSS +11.About sec CSS +12.Our Menu sec CSS +13.Two Col sec CSS +14.Book Table sec CSS +15.Our Team sec CSS +16.Testimonials sec CSS +17.Faq sec CSS +18.Blog sec CSS +19.Newslatter Sec CSS +20.Contact Sec CSS +21.Footer CSS +22.Page Loader CSS +23.Scrolltop CSS +24.Responsive CSS +==========*/ + + +/*==========Typography CSS==========*/ + +body, +button, +input, +select, +optgroup, +textarea { + color: var(--dark-color); + font-size: 16px; + line-height: 30px; +} + +p { + font-size: 16px; + line-height: 30px; +} + +a { + background-color: transparent; + text-decoration: none !important; + outline: none !important; +} + +ul { + list-style: none; + margin: 0; + padding: 0; +} + +ol { + list-style: decimal; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + color: var(--dark-color); + font-family: var(--title-font); + font-weight: 900; +} + +.h1-title { + font-size: 90px; + line-height: 108px; + text-transform: capitalize; + margin-bottom: 25px; + font-weight: 900; +} + +.h1-title span { + color: var(--primary-color); + background-image: linear-gradient( 0deg, rgb(13 13 37 / 8%), rgb(13 13 37 / 8%)); + background-size: 100% 15px; + background-position: 0 90%; + background-repeat: no-repeat; + display: inline; + transition: var(--transition); +} + +.h2-title { + font-size: 46px; + line-height: 56px; + margin-bottom: 15px; + text-transform: capitalize; + position: relative; +} + +.h3-title { + font-size: 28px; + line-height: 38px; +} + +.h4-title { + font-size: 26px; + line-height: 36px; +} + +.h5-title { + font-size: 18px; + line-height: 28px; +} + +.h2-title span, +.h3-title span, +.h4-title span, +.h5-title span, +.sub-title span { + display: block; +} + +.xxl-title { + text-transform: capitalize; + font-size: 52px; + line-height: 77px; + margin-bottom: 30px; +} + + +/*==========Typography CSS End==========*/ + + +/*==========Common CSS ==========*/ + +:root { + --primary-color: #32b768; + --secondary-color: #f2f2f2; + --silver-color: #bfbfbf; + --silver-light-color: #f8f9fa; + --yellow-color: #fcbc30; + --body-bg: #f3f3f5; + --dark-color: #0d0d25; + --white-color: #ffffff; + --red-color: #d91919; + --gradient-color: linear-gradient( to bottom, rgba(246, 251, 246, 1) 55%, rgba(255, 255, 255, 0) 95%); + --box-shadow: 0 0px 20px rgb(50 183 104 / 50%); + --box-light-shadow: 0 0px 20px rgb(36 39 37 / 30%); + --btn-shadow: 9px 9px 12px #b2b2b3, -9px -9px 12px #ffffff; + --btn-hover-shadow: inset 9px 9px 12px #cccccc, inset -9px -9px 12px #ffffff; + --transition: 0.8s cubic-bezier(0.22, 0.78, 0.45, 1.02); + --input-color: rgb(70 69 71 / 0.7); + --body-font: "Poppins"; + --title-font: "Playfair Display"; + --primary-overlay-color: 36, 77, 77; + --scrollbar-thumb-color: var(--primary-color); + --scrollbar-track-color: var(--dark-color); + --selection-color: rgba(36, 77, 77, 0.1); +} + +body { + font-family: var(--body-font); + text-rendering: optimizespeed !important; + background: var(--body-bg); +} + +::-webkit-scrollbar { + width: 5px; +} + +::-webkit-scrollbar-track { + background-color: var(--silver-color); +} + +::-webkit-scrollbar-thumb { + background: var(--primary-color); + border-radius: 10px; +} + +::-webkit-scrollbar-thumb:hover { + background: var(--yellow-color); +} + +.body-fixed { + position: fixed; + width: 100%; + height: 100vh; + top: auto; + left: auto; +} + +body, +html { + overflow-x: hidden; +} + +* { + -webkit-tap-highlight-color: transparent; +} + +img { + max-width: 100%; +} + +p a { + color: var(--primary-color); + transition: 0.3s; +} + +p a:hover { + color: var(--dark-color); +} + +a:hover { + color: initial; +} + +.for-des { + display: block !important; +} + +.for-mob { + display: none !important; +} + +.sec-wp { + position: relative; + z-index: 4; +} + +.sec-title-text { + text-align: center; +} + +.hidden-box { + overflow: hidden; +} + +.ani-line { + width: 100%; + height: 1px; + display: block; + background: var(--primary-color); + opacity: 0.2; + transition: width 1.2s cubic-bezier(0.215, 0.61, 0.355, 1); +} + +.section { + padding-top: 100px; + padding-bottom: 100px; + position: relative; +} + +.bg-overlay { + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + background: var(--silver-light-color); + opacity: 0.96; +} + +.dark-overlay { + background: var(--dark-color); + opacity: 0.5; +} + +.dark-bg { + background: var(--dark-color); +} + +.gradient-overlay { + position: absolute; + top: 0; + left: 0; + bottom: 0; + right: 0; + background: var(--gradient-color); + opacity: 0.92; +} + +.border-overlay { + margin: 15px; +} + +::selection { + background: var(--selection-color); +} + +::-moz-selection { + background: var(--selection-color); +} + +.sec-sub-title { + text-transform: uppercase; + display: inline-block; + background: var(--body-bg); + box-shadow: 9px 9px 12px #e4e4e4, -9px -9px 12px #ffffff; + padding: 3px 20px; + border-radius: 60px; + color: var(--primary-color); + font-size: 14px; +} + +.back-img { + background-position: center; + background-size: cover; +} + +.repeat-img { + background-size: contain; + background-repeat: repeat; +} + +.social-icon { + margin: 15px 0 10px; +} + +.social-icon ul li { + display: inline-block; + margin: 0 6px; +} + +.social-icon ul li:last-child { + margin-right: 0; +} + +.social-icon ul li:first-child { + margin-left: 0; +} + +.social-icon ul li a { + width: 50px; + height: 50px; + display: inline-flex; + justify-content: center; + align-items: center; + border-radius: 50%; + background: linear-gradient(145deg, #e6e6e6, #ffffff); + box-shadow: 4px 4px 8px #9e9e9e, -4px -4px 8px #ffffff; + color: var(--dark-color); + font-size: 19px; +} + +.social-icon ul li a:hover { + background: var(--dark-color); + color: var(--white-color); +} + +.column-2 { + column-count: 2; +} + +.column-3 { + column-count: 3; +} + +.column-4 { + column-count: 4; +} + + +/*==========Common CSS End==========*/ + + +/*==========Form CSS==========*/ + +select { + -moz-appearance: none; + -webkit-appearance: none; +} + +.form-element { + position: relative; +} + +.form-element i { + position: absolute; + top: 15px; + right: 20px; + pointer-events: none; + color: var(--primary-color); +} + +.form-input::-webkit-input-placeholder { + color: var(--input-color); +} + +.form-input::-moz-placeholder { + color: var(--input-color); +} + +.form-input:-ms-input-placeholder { + color: var(--input-color); +} + +.form-input::-ms-input-placeholder { + color: var(--input-color); +} + +.form-input::placeholder { + color: var(--input-color); +} + +select option { + color: var(--dark-color) !important; +} + +select { + color: var(--input-color) !important; +} + +select::-ms-expand { + display: none; +} + +.form-input, +select { + width: 100%; + height: 50px; + outline: none !important; + padding: 10px 15px; + color: var(--dark-color); + -webkit-appearance: none; + border-radius: 10px; + border: none; + background: #f8f8f8; + box-shadow: inset 6px 6px 8px #dadada, inset -6px -6px 8px #ffffff; +} + +textarea.form-input { + height: 160px; + resize: none; + display: block; +} + +.form-input-wp label { + font-size: 16px; + text-transform: capitalize; + font-weight: 300; + margin-bottom: 10px; +} + +.form-input-wp label span, +.contact-title p span { + color: var(--red-color); +} + +.form-input-wp { + margin-bottom: 30px; +} + +.form-flex-box { + display: flex; + justify-content: space-between; + align-items: flex-end; +} + +.form-flex-box .form-input-wp { + margin: 0; + flex: 1; + padding-right: 60px; +} + + +/*==========Form CSS End==========*/ + + +/*==========Button CSS==========*/ + +.sec-btn { + min-width: 120px; + min-height: 58px; + background: var(--body-bg); + box-shadow: var(--btn-shadow); + display: inline-flex; + justify-content: center; + align-items: center; + border-radius: 30px; + -webkit-appearance: none; + color: var(--dark-color); + text-transform: capitalize; + text-align: center; + border: none; + cursor: pointer; + outline: none !important; + transition: var(--transition); + overflow: hidden; + position: relative; + z-index: 2; + padding: 6px 30px; +} + +.sec-btn:hover { + border-color: var(--dark-color); + box-shadow: var(--btn-hover-shadow); +} + +.sec-btn.primary-btn { + background: linear-gradient(145deg, #2da55e, #36c46f); + color: var(--white-color); + border: none; + box-shadow: 4px 4px 8px #9e9e9e, -4px -4px 8px #ffffff; +} + +.sec-btn.primary-btn:hover { + background: linear-gradient(145deg, #0c0c21, #0e0e28); +} + +.play-btn { + width: 90px; + height: 90px; + background: var(--body-bg); + box-shadow: var(--btn-shadow); + border-radius: 50%; + display: inline-flex; + align-items: center; + justify-content: center; + transition: 0.5s; + vertical-align: middle; + position: relative; + z-index: 2; + padding-left: 4px; + padding-top: 4px; +} + +.play-btn:hover { + box-shadow: var(--btn-hover-shadow); +} + +.play-btn:hover svg path { + fill: var(--primary-color); +} + +.play-btn-wp { + text-align: center; + margin-top: 40px; + display: flex; + justify-content: center; + align-items: center; +} + +.play-btn-wp span { + margin-left: 20px; + font-size: 20px; + font-weight: bold; + color: var(--silver-color); +} + +.read-more { + text-transform: capitalize; + font-size: 20px; + font-family: var(--title-font); + color: var(--primary-color); + display: inline-flex; + align-items: center; + transition: var(--transition); +} + +.read-more svg { + margin-left: 15px; +} + +.read-more span { + position: relative; +} + +.read-more span:after { + content: ""; + position: absolute; + bottom: 0; + left: 0; + width: 100%; + height: 2px; + background: var(--secondary-color); + -webkit-transform: scaleX(0); + transform: scaleX(0); + -webkit-transform-origin: right; + transform-origin: right; + -webkit-transition: -webkit-transform 0.95s cubic-bezier(0.23, 1, 0.23, 1); + transition: -webkit-transform 0.95s cubic-bezier(0.23, 1, 0.23, 1); + transition: transform 0.95s cubic-bezier(0.23, 1, 0.23, 1); + transition: transform 0.95s cubic-bezier(0.23, 1, 0.23, 1), -webkit-transform 0.95s cubic-bezier(0.23, 1, 0.23, 1); +} + +.read-more:hover span:after { + -webkit-transform: scaleX(1); + transform: scaleX(1); + -webkit-transform-origin: left; + transform-origin: left; +} + +.read-more:hover { + color: var(--secondary-color); +} + +.explore-more-btn { + margin-top: 43px; + text-align: center; +} + +.explore-more-link { + color: var(--secondary-color); + text-transform: uppercase; + font-weight: 300; + position: relative; + padding-bottom: 3px; + letter-spacing: 2px; +} + +.explore-more-link:before { + content: ""; + position: absolute; + bottom: 0; + right: 0; + height: 1px; + width: 100%; + background: var(--secondary-color); + -webkit-transform: scaleX(0); + transform: scaleX(0); + -webkit-transform-origin: right; + transform-origin: right; + -webkit-transition: -webkit-transform 0.95s cubic-bezier(0.23, 1, 0.23, 1); + transition: -webkit-transform 0.95s cubic-bezier(0.23, 1, 0.23, 1); + transition: transform 0.95s cubic-bezier(0.23, 1, 0.23, 1); +} + +.explore-more-link:hover:before { + -webkit-transform: scaleX(1); + transform: scaleX(1); + -webkit-transform-origin: left; + transform-origin: left; +} + +.video-play-btn { + width: 100px; + height: 100px; + display: flex; + justify-content: center; + align-items: center; + border: 2px solid var(--white-color); + border-radius: 50%; + padding-top: 5px; + padding-left: 3px; + z-index: 2; + transition: 0.3s; +} + +.video-play-btn:hover { + transform: scale(1.1); +} + + +/*==========Button CSS End==========*/ + + +/*==========Slider Css==========*/ + +.swiper-button-next:after, +.swiper-button-prev:after { + display: none; +} + +.swiper-button-wp { + position: relative; + margin-top: 60px; + display: flex; + justify-content: space-between; + height: 60px; + align-items: center; +} + +.swiper-button-next, +.swiper-button-prev { + position: unset; + width: 60px; + height: 60px; + display: inline-flex; + font-size: 24px; + border-radius: 50%; + overflow: hidden; + margin: 0; + color: var(--dark-color); + background: #ffffff; + box-shadow: -20px 20px 60px #d4d4d4, 20px -20px 60px #ffffff; + padding-top: 1px; + padding-right: 2px; + transition: 0.3s; +} + +.swiper-button-next { + box-shadow: 20px 20px 60px #d4d4d4, -20px -20px 60px #ffffff; + padding-left: 3px; +} + +.swiper-button-prev:hover { + box-shadow: inset 5px 5px 20px #d4d4d4, inset -5px -5px 20px #ffffff; +} + +.swiper-button-next:hover { + box-shadow: inset -5px 5px 20px #d9d9d9, inset 5px -5px 20px #ffffff; +} + +.swiper-button-prev:hover, +.swiper-button-next:hover { + color: var(--yellow-color); +} + +.swiper-pagination { + padding: 10px 20px; + display: inline-block; + border-radius: 60px; + background: linear-gradient(145deg, #ececec, #ffffff); + box-shadow: 28px 28px 55px #d4d4d4, -28px -28px 55px #ffffff; + max-width: fit-content; + left: 50% !important; + transform: translate(-50%, 0); + bottom: 0 !important; +} + +.swiper-pagination-bullet { + width: 10px; + height: 10px; + margin: 0 10px !important; + border-radius: 10px; + transition: var(--transition); +} + +.swiper-pagination-bullet-active { + background: var(--yellow-color); + width: 30px; +} + + +/*==========Slider Css End==========*/ + + +/*==========Overflow CSS==========*/ + +.overflow-text { + height: 300px; + -webkit-overflow-scrolling: touch; +} + +.overflow-text::-webkit-scrollbar { + width: 3px; +} + +.overflow-text::-webkit-scrollbar-thumb { + background: var(--scrollbar-thumb-color); +} + +.overflow-text::-webkit-scrollbar-track { + background: var(--scrollbar-track-color); +} + + +/*==========Overflow CSS End==========*/ + + +/*==========White text CSS==========*/ + +.white-text p, +.white-text h1, +.white-text h2, +.white-text h3, +.white-text h4, +.white-text h5, +.white-text h6, +.white-text ul li, +.white-text .read-more { + color: var(--white-color); +} + +.white-btn { + background-color: var(--white-color); + color: var(--dark-color); + border-color: var(--white-color); +} + +.white-form .form-input .white-form select { + background: transparent; + border-color: var(--white-color); + color: var(--white-color); +} + +.white-form .form-input::-webkit-input-placeholder { + color: var(--white-input-color); +} + +.white-form .form-input::-moz-placeholder { + color: var(--white-input-color); +} + +.white-form .form-input:-ms-input-placeholder { + color: var(--white-input-color); +} + +.white-form .form-input::-ms-input-placeholder { + color: var(--white-input-color); +} + +.white-form .form-input::placeholder { + color: var(--white-input-color); +} + +.white-form select { + color: var(--white-input-color) !important; +} + +.white-form .form-element i { + color: var(--white-color); +} + +.white-form .wpcf7 form .wpcf7-response-output { + color: var(--white-color); +} + +.white-text .read-more svg path { + fill: var(--white-color); +} + +.white-explore-more-link { + color: var(--white-color); +} + +.white-explore-more-link:hover { + color: var(--white-color); + opacity: 0.8; +} + +.white-explore-more-link:before { + background: var(--white-color); + opacity: 0.6; +} + + +/*==========White text CSS End==========*/ + + +/*==========Header CSS==========*/ + +.site-header { + position: fixed; + padding: 30px 0; + display: flex; + align-items: center; + top: 0; + left: 0; + width: 100%; + z-index: 99; + transition: 0.5s; + border-bottom: 1px solid transparent; +} + +.site-header.sticky_head { + background: rgb(255 255 255 / 80%); + padding: 20px 0; + border-color: var(--secondary-color); + -webkit-backdrop-filter: blur(20px); + backdrop-filter: blur(20px); +} + +.main-navigation { + display: flex; + width: 100%; + height: 100%; + justify-content: flex-end; + align-items: center; +} + +.main-navigation .menu li { + display: inline-block; + float: left; + position: relative; + margin: 0 6px; +} + +.main-navigation .menu li:first-child { + margin-left: 0; +} + +.main-navigation .menu li:last-child { + margin-right: 0; +} + +.main-navigation .menu .sub-menu { + position: absolute; + display: inline-block; + width: 200px; + background: var(--primary-color); + z-index: 9; + top: 100%; + left: 0; + overflow: hidden; + padding: 12px; + box-shadow: var(--btn-shadow); + margin-top: 30px; + opacity: 0; + transition: 0.3s; + visibility: hidden; + margin: 0; + border-radius: 10px; +} + +.main-navigation .menu li:hover>ul, +.main-navigation .menu li.focus>ul { + opacity: 1; + margin-top: 6px; + visibility: visible; +} + +.main-navigation .menu ul ul a { + width: 200px; +} + +.main-navigation .menu ul li:hover>ul, +.main-navigation .menu ul li.focus>ul { + left: auto; +} + +.main-navigation .menu .sub-menu li a { + color: var(--white-color); + opacity: 1; + font-size: 15px; + justify-content: flex-start; +} + +.main-navigation .menu .sub-menu li { + margin-inline: 0; + margin-bottom: 8px; + display: block; + float: none; +} + +.main-navigation .menu .sub-menu li:last-child { + margin: 0; +} + +.main-navigation .menu li a { + display: flex; + transition: 0.3s; + position: relative; + justify-content: center; + align-items: center; + color: var(--dark-color); + text-transform: capitalize; + font-weight: 500; + padding: 5px 18px; + border-radius: 30px; +} + +.main-navigation .menu li a:hover, +.main-navigation .menu .dropdown-items:hover>a, +.main-navigation .menu li .active-menu, +.main-navigation .menu .sub-menu li .active-sub-menu { + color: var(--primary-color); + background: var(--body-bg); + box-shadow: inset 8px 8px 12px #e2e2e2, inset -8px -8px 12px #ffffff; +} + +.main-navigation .menu li a .dropdown-icon { + font-size: 12px; + position: relative; + top: 2px; + transition: 0.3s; + margin-left: 5px; +} + +.main-navigation .menu li a:hover .dropdown-icon, +.main-navigation .menu .dropdown-items:hover>a .dropdown-icon { + transform: rotate(180deg); + top: 0; +} + +.header-right { + margin-left: 40px; + display: flex; + flex-wrap: wrap; + align-items: center; +} + +.header-btn { + width: 40px; + height: 40px; + display: inline-flex; + justify-content: center; + align-items: center; + border-radius: 10px; + position: relative; + margin-left: 20px; + transition: 0.3s; + box-shadow: inset 6px 6px 7px #dadada, inset -6px -6px 10px #ffffff; +} + +.header-account-btn:hover svg path, +.header-btn:hover svg path { + fill: var(--primary-color); +} + +.cart-number { + position: absolute; + top: -10px; + right: -10px; + width: 22px; + height: 22px; + display: flex; + justify-content: center; + align-items: center; + border-radius: 50%; + background: #fff; + font-size: 12px; + border: 1px solid var(--silver-color); + color: var(--primary-color); +} + +.header-btn:hover { + background: linear-gradient(145deg, #dcdcdc, #ffffff); + box-shadow: 20px 20px 60px #cfcfd0, -20px -20px 60px #ffffff; +} + +.header-search-form { + position: relative; +} + +.header-search-form button { + background: transparent; + border: none; + padding: 0; + position: absolute; + right: 0; + top: 50%; + transform: translate(0, -50%); + width: 48px; + height: 100%; + opacity: 0.5; +} + +.header-search-form .form-input { + font-size: 14px; + padding-right: 40px; + width: 200px; + height: 40px; +} + + +/*==========Header CSS End==========*/ + + +/*==========Banner CSS==========*/ + +.main-banner { + padding: 200px 0 300px; + min-height: 100vh; + position: relative; +} + +.js-parallax-scene { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} + +.banner-img-wp { + width: 100%; + height: 100%; + padding-left: 30px; +} + +.banner-img { + width: 100%; + height: 100%; + background-size: cover; + background-position: center; + animation: border-radius-ani 4.5s linear infinite alternate; + box-shadow: var(--box-light-shadow); +} + +@-webkit-keyframes border-radius-ani { + 0% { + border-radius: 48% 52% 57% 43% / 34% 44% 56% 66%; + } + 25% { + border-radius: 62% 38% 64% 36% / 34% 55% 45% 66%; + } + 50% { + border-radius: 43% 57% 51% 49% / 33% 42% 58% 67%; + } + 100% { + border-radius: 40% 60% 43% 57% / 52% 32% 68% 48%; + } +} + +@keyframes border-radius-ani { + 0% { + border-radius: 48% 52% 57% 43% / 34% 44% 56% 66%; + } + 25% { + border-radius: 62% 38% 64% 36% / 34% 55% 45% 66%; + } + 50% { + border-radius: 43% 57% 51% 49% / 33% 42% 58% 67%; + } + 100% { + border-radius: 40% 60% 43% 57% / 52% 32% 68% 48%; + } +} + +.banner-img-text .h5-title { + text-transform: capitalize; + letter-spacing: 0.5px; +} + +.banner-img-text { + max-width: 400px; +} + +.banner-shape-1 img { + position: absolute; + left: 85%; + top: -50px; + max-width: 330px; + pointer-events: none; +} + +.banner-shape-2 { + top: auto !important; + bottom: 0; +} + +.banner-shape-2 img { + position: absolute; + bottom: 0; + right: 82% !important; + max-width: 410px; + pointer-events: none; +} + +.inner-banner { + padding: 180px 0 120px; +} + +.breadcrumb { + justify-content: center; +} + +.breadcrumb-item, +.breadcrumb-item a { + text-transform: capitalize; + font-weight: 600; + font-size: 18px; +} + +.breadcrumb-item a { + color: var(--primary-color); + text-decoration: underline !important; +} + +.breadcrumb-item.active { + color: var(--dark-color); + opacity: 0.6; +} + + +/*==========Banner CSS End==========*/ + + +/*==========Brands CSS==========*/ + +.brands-row { + display: flex; + justify-content: space-between; + margin: 0 -15px; +} + +.brands-box { + padding: 0 15px; + display: flex; + align-items: center; + justify-content: center; +} + +.brands-box:hover { + -webkit-filter: invert(1) brightness(0.5); + filter: invert(1) brightness(0.5); + opacity: 0.9; +} + +.brand-title .h5-title { + text-transform: uppercase; + font-weight: 400; + letter-spacing: 2px; + opacity: 0.6; +} + + +/*==========Brands CSS End==========*/ + + +/*==========About CSS==========*/ + +.about-video-img { + position: relative; + overflow: hidden; + width: 100%; + height: 55vh; + min-height: 400px; + background-size: cover; + background-position: center; + border-radius: 40px; + box-shadow: var(--box-light-shadow); + display: flex; + align-items: center; + justify-content: center; +} + + +/*==========About CSS End==========*/ + + +/*==========Our Menu CSS==========*/ + +.our-menu-shape img { + position: absolute; + left: 70%; + top: -200px; + pointer-events: none; +} + +.menu-tab ul { + padding: 10px; + display: inline-block; + border-radius: 60px; + background: linear-gradient(145deg, #ececec, #ffffff); + box-shadow: 28px 28px 55px #d4d4d4, -28px -28px 55px #ffffff; + position: relative; + z-index: 2; +} + +.menu-tab ul li, +.menu-tab ul .filter-active { + display: inline-flex; + text-transform: capitalize; + font-size: 18px; + line-height: normal; + cursor: pointer; + padding: 10px 26px; + border-radius: 30px; + transition: 0.3s; + justify-content: center; + align-items: center; +} + +.filter-active { + position: absolute; + left: 0; + top: 12px; + min-height: 50px; + z-index: -1; +} + +.menu-tab ul li img { + margin-right: 10px; + position: relative; + top: 1px; +} + +.menu-tab ul .filter-active { + color: var(--white-color); + background: linear-gradient(145deg, #e3a92b, #ffc933); +} + +.menu-list-row .bydefault_show .dish-box-wp { + display: inline-block !important; +} + +.dish-box-wp { + display: none; +} + +.dish-box { + border-radius: 30px; + background: linear-gradient(145deg, #ececec, #ffffff); + box-shadow: 28px 28px 45px #d4d4d4, -28px -28px 45px #ffffff; + display: flow-root; + padding: 0px 30px 40px; + padding-top: 0; + margin: 130px 0 30px; + transition: var(--transition); +} + +.dish-box:hover { + transform: scale(1.03); +} + +.dist-img { + margin-top: -130px; + margin-bottom: 30px; +} + +.dist-img img { + box-shadow: 28px 28px 45px #d4d4d4, -28px -28px 45px #ffffff; + border-radius: 50%; + overflow: hidden; +} + +.dish-rating { + font-size: 20px; + margin-bottom: 15px; +} + +.dish-rating span { + color: var(--yellow-color); + margin-left: 2px; + font-size: 22px; +} + +.dish-title { + padding: 0 30px; +} + +.dish-title .h3-title { + text-transform: capitalize; + margin-bottom: 5px; + font-family: var(--title-font); + font-weight: bold; + color: var(--dark-color); + transition: 0.3s; + min-height: 76px; + display: -webkit-box; + -webkit-line-clamp: 2; + -webkit-box-orient: vertical; + overflow: hidden; + font-weight: 900; +} + +.dish-title p { + color: var(--silver-color); +} + +.dish-info ul, +.dist-bottom-row ul { + display: flex; + justify-content: space-between; + text-align: left; +} + +.dish-info ul li { + display: inline-block; + flex: 1; +} + +.dish-info ul li:last-child { + text-align: right; + border-left: 2px solid rgb(204 204 204 / 30%); +} + +.dist-bottom-row ul li:last-child { + text-align: right; +} + +.dish-info ul li p { + font-size: 18px; + text-transform: capitalize; + margin-bottom: 2px; + font-weight: 300; +} + +.dish-info ul li b { + font-weight: 600; +} + +.dish-info, +.dist-bottom-row { + padding: 0 30px; +} + +.dish-info { + border-bottom: 2px solid rgb(204 204 204 / 30%); + margin: 30px 0 30px; + padding-bottom: 30px; +} + +.dist-bottom-row ul li { + display: flex; + align-items: center; +} + +.dist-bottom-row ul li b { + font-size: 30px; +} + +.dish-add-btn { + width: 40px; + height: 40px; + border: none; + border-radius: 10px; + color: var(--white-color); + transition: 0.3s; + background: linear-gradient(145deg, #ffc954, #ffbc00); + box-shadow: inset 4px 4px 8px #d6a029, inset -4px -4px 8px #ffd837; +} + +.dish-add-btn:hover { + background: linear-gradient(145deg, #e3a92b, #ffc933); +} + +.menu-tab-wp { + margin-bottom: 80px; +} + +.menu-box-right .dish-title .h3-title { + padding-right: 50px; +} + +.menu-img { + width: 240px; +} + +.menu-img img { + box-shadow: 28px 28px 45px #d4d4d4, -28px -28px 45px #ffffff; + border-radius: 50%; + overflow: hidden; +} + +.menu-box-right { + padding-left: 30px; +} + +.menu-box:hover { + transform: scale(1.03); +} + + +/*==========Our Menu CSS End==========*/ + + +/*==========Two Col Sec CSS==========*/ + +.sec-img-shape { + position: absolute; + top: -60px; + right: 22px; +} + +.sec-img-shape.sec-img-shape2 { + top: auto; + bottom: -30px; + right: auto; +} + +.sec-img { + position: relative; + text-align: center; +} + +.sec-img:hover img { + transform: scale(1.05); +} + +.sec-img img { + transition: var(--transition); +} + +.sec-text { + padding: 60px 30px 0; +} + +.sec-left-shape { + right: auto; +} + +.sec-img-shape.sec-right-shape { + left: auto; + right: 0; +} + +.food-shape img { + position: absolute; + top: -70px; + right: 70%; + pointer-events: none; +} + + +/*==========Two Col Sec CSS End==========*/ + + +/*==========Book Table CSS End==========*/ + +.book-table { + overflow: hidden; +} + +.book-table-shape img { + position: absolute; + top: -10px; + right: 73%; + width: 540px; +} + +.book-table-shape.book-table-shape2 img { + left: 74%; + transform: scale(-1, 1); +} + +.book-table-info { + margin: 30px 0 20px; +} + +#gallery { + padding-top: 120px; +} + +.call-now { + border-left: 3px dotted rgb(13 13 37 / 50%); + border-right: 3px dotted rgb(13 13 37 / 50%); + padding: 15px 0; +} + +.call-now i, +.contact-info i { + width: 80px; + height: 80px; + display: flex; + justify-content: center; + align-items: center; + border-radius: 50%; + font-size: 26px; + margin: 0 auto; + margin-bottom: 25px; + background: var(--body-bg); + box-shadow: var(--btn-shadow); + color: var(--primary-color); +} + +.call-now p { + text-transform: capitalize; + margin-bottom: 5px; + font-weight: 300; +} + +.call-now a { + font-size: 32px; + font-weight: 500; + color: var(--dark-color); + transition: var(--transition); +} + +.call-now a:hover, +.contact-info a:hover { + color: var(--yellow-color); +} + +.table-title h3 { + text-transform: capitalize; + margin-bottom: 20px; + letter-spacing: 1px; +} + +.table-title p { + font-size: 20px; + line-height: 30px; + margin: 0; +} + +.book-table-img { + height: 70vh; + min-height: 500px; + border-radius: 30px; +} + + +/*==========Book Table CSS End==========*/ + + +/*==========Our Team CSS End==========*/ + +.team-slider { + position: relative; +} + +.our-team .food-shape img { + right: auto; + right: 70%; + top: -50px; +} + +.team-box { + padding: 20px; + border-radius: 30px; + background: linear-gradient(145deg, #ececec, #ffffff); + box-shadow: 28px 28px 45px #e6e6e6, -28px -28px 45px #ffffff; + transition: var(--transition); +} + +.team-box:hover { + transform: scale(1.03); +} + +.team-img { + width: 100%; + height: 480px; + border-radius: 20px; + margin-bottom: 20px; + box-shadow: 9px 9px 18px rgb(194 194 194 / 0.5), -9px -9px 18px rgb(255 255 255 / 0.5); +} + +.team-box .h3-title { + text-transform: capitalize; + color: var(--yellow-color); + font-weight: 600; +} + +.team-box .social-icon ul li a { + width: 40px; + height: 40px; + box-shadow: 4px 4px 8px #d0d0d0, -4px -4px 8px #ffffff; + font-size: 16px; +} + + +/*==========Our Team CSS End==========*/ + + +/*==========Testimonials CSS==========*/ + +.testimonials-box { + display: flow-root; + position: relative; + padding: 30px; + padding-top: 0; + border-radius: 30px; + margin: 50px 0 30px; + background: linear-gradient(145deg, #ececec, #ffffff); + box-shadow: 28px 28px 45px #e6e6e6, -28px -28px 45px #ffffff; + transition: var(--transition); +} + +.testimonials-box:hover { + transform: scale(1.05); + z-index: 2; +} + +.testimonial-box-top { + display: flex; + justify-content: space-between; + align-items: center; + margin-bottom: 25px; +} + +.testimonials-box-img { + min-width: 100px; + min-height: 100px; + border-radius: 50%; + margin-top: -50px; + box-shadow: 10px 10px 60px #d4d4d4; +} + +.testimonials-box-text .h3-title { + margin-bottom: 10px; + text-transform: capitalize; +} + +.testimonials-box-text p { + margin: 0; + display: -webkit-box; + -webkit-line-clamp: 3; + -webkit-box-orient: vertical; + overflow: hidden; +} + +.testimonials-img { + position: relative; +} + +.testimonials-img img { + position: absolute; + top: 60px; + right: 30px; + width: calc(100% + 5vw); + max-width: initial; +} + +.star-rating-wp { + display: block; +} + +.star-rating { + font-size: 22px; + position: relative; + margin-top: 20px; + display: inline-block; +} + +.star-rating:before { + content: "\f005\f005\f005\f005\f005"; + font-family: "Font Awesome 5 Pro"; + font-weight: 900; + color: #c8c8c8; + -webkit-filter: drop-shadow(0 0.6rem 0.3rem rgba(0, 0, 0, 0.05)); + filter: drop-shadow(0 0.6rem 0.3rem rgba(0, 0, 0, 0.05)); + letter-spacing: 4px; +} + +.star-rating__fill { + position: absolute; + display: inline-block; + top: 0; + left: 0; + overflow: hidden; + animation: fill-star 2s ease-in-out; +} + +.star-rating__fill:before { + content: "\f005\f005\f005\f005\f005"; + color: var(--yellow-color); + font-family: "Font Awesome 5 Pro"; + font-weight: 900; + letter-spacing: 4px; +} + +@keyframes fill-star { + 0% { + width: 0; + } +} + + +/*==========Testimonials CSS End==========*/ + + +/*==========Faq Sec CSS==========*/ + +.faq-row { + column-count: 3; + margin: 0 -5px; +} + +.faq-box { + border: 1px solid var(--silver-color); + border-radius: 30px; + background: linear-gradient(145deg, #e4e4e4, #ffffff); + break-inside: avoid; + margin: 0px 5px 30px; + box-shadow: 10px 10px 30px rgb(207 207 208 / 20%), -10px -10px 30px rgb(255 255 255 / 90%); +} + +.faq-box .h4-title { + padding: 16px 30px; + border-bottom: 1px solid var(--silver-color); + text-transform: capitalize; + font-weight: 600; +} + +.faq-box p { + padding: 8px 30px 20px; + margin: 0; +} + +.faq-shape img { + position: absolute; + top: -100px; + left: 82%; + pointer-events: none; +} + + +/*==========Faq Sec CSS End==========*/ + + +/*==========Blog Sec CSS==========*/ + +.blog-text .h4-title { + text-transform: capitalize; + margin-bottom: 15px; + display: -webkit-box; + -webkit-line-clamp: 2; + -webkit-box-orient: vertical; + overflow: hidden; + font-weight: 900; + font-family: var(--title-font); + color: var(--dark-color); + transition: 0.3s; +} + +.blog-text .h4-title:hover { + color: var(--yellow-color); +} + +.blog-date { + padding: 5px 15px; + background: #f8f9fa; + box-shadow: inset 5px 5px 10px #e2e2e2, inset -5px -5px 10px #e8e8e8; + display: inline-block; + border-radius: 8px; + font-size: 14px; + margin-bottom: 20px; +} + +.blog-img { + width: 100%; + height: 280px; + border-radius: 30px; + margin-bottom: 20px; +} + +.blog-box { + padding: 30px 25px; + border-radius: 30px; + background: linear-gradient(145deg, #ececec, #fdfdfd); + box-shadow: 30px 30px 50px #dcdcdc, -30px -30px 50px #ffffff; + transition: var(--transition); + margin-bottom: 30px; +} + +.blog-box:hover { + transform: scale(1.01); +} + +.blog-shape img { + position: absolute; + top: -100px; + right: 84%; + pointer-events: none; +} + + +/*==========Blog Sec CSS End==========*/ + + +/*==========Newslatter Sec CSS==========*/ + +.newslatter-box { + padding: 60px; + border-radius: 30px; + position: relative; + overflow: hidden; +} + +.newslatter-form { + margin-top: 20px; + position: relative; +} + +.newslatter-form button { + position: absolute; + right: 6px; + top: 50%; + transform: translate(0, -50%); +} + +.newslatter-form .form-input { + height: 68px; + border-radius: 60px; + padding: 0 150px 0 40px; + background: linear-gradient(-145deg, #e4e4e4, #f9f9f9); +} + +.newslatter-box-text { + padding: 0 60px; +} + +.newslatter-sec-shape img { + position: absolute; + left: 83%; + top: -100px; + pointer-events: none; +} + +.newslatter-sec-shape2 img { + position: absolute; + bottom: -240px; + right: 82%; + z-index: 2; + pointer-events: none; +} + +.newslatter-sec-shape2 { + position: relative; + z-index: 2; +} + + +/*==========Newslatter Sec CSS End==========*/ + + +/*==========Contact Sec CSS==========*/ + +.contact-info a { + font-size: 18px; + line-height: 28px; + color: var(--dark-color); + transition: var(--transition); + display: flex; + align-items: center; + justify-content: center; + margin-bottom: 12px; +} + +.contact-info { + padding: 0 30px; +} + +.contact-form textarea.form-input { + height: 210px; +} + +.contact-sec-info { + padding: 30px; + border-radius: 30px; + background: linear-gradient(145deg, #ececec, #ffffff); + box-shadow: 28px 28px 45px #e6e6e6, -28px -28px 45px #ffffff; +} + +.contact-form-img-wp { + position: relative; + height: 100%; +} + +.contact-form-img { + width: calc(100% + 15vw); + height: 100%; + position: absolute; + right: 0; + top: 0; + border-radius: 0 30px 30px 0; +} + +.contact-form { + padding: 60px 30px; + padding-right: 0; + position: relative; +} + +.submit-btn .sec-btn { + width: 100%; + min-height: 50px; + border-radius: 10px; +} + + +/*==========Contact Sec CSS End==========*/ + + +/*==========Footer CSS==========*/ + +.top-footer, +.bottom-footer { + border-top: 1px solid rgb(204 204 204 / 40%); + position: relative; +} + +.footer-shape img { + position: absolute; + top: -90px; + left: 90%; + pointer-events: none; +} + +.copyright-text p { + margin: 0; +} + +.footer-logo { + margin-bottom: 30px; +} + +.footer-info .social-icon { + margin-top: 20px; +} + +.footer-flex-box { + display: flex; + margin: 0 -10px; +} + +.footer-flex-box>div { + flex: 1; + padding: 0 10px; +} + +.footer-flex-box .h3-title { + text-transform: capitalize; + margin-bottom: 23px; +} + +.footer-menu ul li a { + color: var(--dark-color); + transition: 0.3s; + text-transform: capitalize; +} + +.footer-menu ul li a:hover, +.footer-menu ul li .footer-active-menu { + color: var(--primary-color); +} + +.footer-menu ul li { + margin-bottom: 8px; +} + +.footer-table-info ul li { + margin-bottom: 10px; + text-transform: capitalize; +} + +.copyright-text { + padding: 20px 0; +} + + +/*==========Footer CSS End==========*/ + + +/*==========Page Loader CSS==========*/ + +.page-loader { + position: fixed; + top: 0; + left: 0; + height: 100vh; + width: 100vw; + overflow: hidden; + background: var(--white-color); + z-index: 9999; + opacity: 1; + display: flex; + justify-content: center; + align-items: center; + transition: 0.5s; +} + + +/*==========Page Loader CSS End==========*/ + + +/*==========Scrolltop CSS End==========*/ + +.scrolltop { + position: absolute; + bottom: 10px; + right: 30px; + width: 50px; + height: 50px; + display: flex; + justify-content: center; + align-items: center; + border-radius: 50%; + background: var(--body-bg); + box-shadow: var(--btn-shadow); + color: var(--primary-color); + font-size: 16px; + transition: var(--transition); + border: none; +} + +.scrolltop:hover { + box-shadow: var(--btn-hover-shadow); + color: var(--darkc-color); +} + + +/*==========Scrolltop CSS End==========*/ + + +/*==========Responsive Start CSS==========*/ + +@media screen and (min-width: 992px) { + .menu-toggle { + display: none; + } + #viewport { + overflow: hidden; + position: fixed; + height: 100%; + width: 100%; + top: 0; + left: 0; + right: 0; + bottom: 0; + } + #js-scroll-content { + position: absolute; + overflow: hidden; + width: 100%; + top: 0; + left: 0; + } +} + +@media (min-width: 1500px) { + .container { + max-width: 1368px!important; + } +} + +@media (min-width: 2100px) { + .container { + max-width: 1400px; + } + p, + body, + button, + input, + select, + optgroup, + textarea { + font-size: 18px; + line-height: 32px; + } +} + +@media (max-width: 1399px) { + .h1-title { + font-size: 80px; + line-height: 90px; + } + .h3-title { + font-size: 26px; + line-height: 36px; + } + .h4-title { + font-size: 24px; + line-height: 34px; + } + .h2-title { + font-size: 38px; + line-height: 48px; + } + .header-right { + margin-left: 20px; + } + .main-navigation .menu li { + margin: 0 3px; + } + .team-img { + height: 400px; + } + .blog-box { + padding: 30px 20px; + } + .menu-img { + width: 160px; + } + .menu-box-right { + padding-left: 15px; + } + .menu-box { + box-shadow: 14px 14px 45px #d4d4d4, -14px -14px 45px #ffffff; + } + .menu-rating { + font-size: 18px; + padding: 10px 15px; + min-width: 70px; + } + .dist-bottom-row ul li b { + font-size: 25px; + } + .newslatter-sec-shape2 img { + bottom: -130px; + } +} + +@media (max-width: 1199px) { + .header-btn { + margin-left: 10px; + } + .header-right { + margin-left: 10px; + } + .main-navigation .menu li { + margin: 0; + } + .main-navigation .menu li a { + padding: 4px 15px; + font-size: 15px; + } + .header-search-form .form-input { + width: 170px; + } + .main-banner { + padding: 200px 0; + } + .banner-img-wp { + height: 360px; + } + .dish-box { + padding: 0px 0px 40px; + } + .dist-img img { + width: 220px; + } + .dist-img { + margin-top: -110px; + } + .dist-bottom-row ul li b { + font-size: 28px; + } + .sec-text { + padding: 0; + } + .xxl-title { + font-size: 46px; + line-height: 66px; + } + .team-img { + height: 340px; + } + .testimonials-box { + padding: 30px 20px; + margin: 26px 0 30px; + } + .testimonials-box-img { + min-width: 80px; + min-height: 80px; + margin-top: -80px; + } + .faq-box .h4-title { + padding: 16px 20px; + } + .faq-box p { + padding: 8px 20px 20px; + } + .blog-img { + height: 240px; + } + .newslatter-box-text { + padding: 0; + } + .footer-flex-box>div { + padding: 0 10px; + } + .star-rating { + font-size: 19px; + } + .testimonial-box-top { + margin-bottom: 10px; + } + .call-now a { + font-size: 28px; + } + .menu-box { + padding: 50px 20px 30px 20px; + } + .menu-img { + width: 140px; + } + .gallery-img { + height: 280px; + } + .gallery-img-wp { + padding: 15px; + } + .widget-area { + margin-left: 0; + padding: 30px 15px; + } + .inner-banner.single-blog-banner { + padding-bottom: 30px; + } + .single-blog-img { + height: 45vw; + min-height: 380px; + } + .single-post-img-wp { + height: 400px; + } + .contact-info a { + font-size: 20px; + line-height: 30px; + } + .contact-form { + padding: 60px 20px; + padding-right: 0; + } +} + +@media (max-width: 991px) { + .section { + padding-top: 85px; + padding-bottom: 85px; + } + .for-des { + display: none !important; + } + .for-mob { + display: block !important; + } + .site-header .container { + max-width: 100%; + padding: 0; + height: 100%; + } + .site-header .container .row { + margin: 0; + height: 100%; + } + .site-header .container .row .col-lg-2 { + width: auto; + padding: 0; + height: 100%; + position: absolute; + top: 0; + left: 30px; + z-index: 2; + display: flex; + align-items: center; + } + .menu-toggle { + position: absolute; + top: 50%; + right: 30px; + border: none; + outline: none !important; + background: transparent; + width: 40px; + height: 40px; + transform: translate(0, -50%); + z-index: 100; + box-shadow: inset 6px 6px 7px #dadada, inset -6px -6px 10px #ffffff; + border-radius: 10px; + padding: 0 8px; + } + .menu-toggle span { + display: block; + width: 100%; + height: 4px; + background: var(--primary-color); + margin-bottom: 5px; + transition: 0.3s; + border-radius: 5px; + position: relative; + } + .menu-toggle span:last-child { + margin: 0; + } + .toggled .menu-toggle span:nth-child(1) { + transform: rotate(45deg); + top: 5px; + } + .toggled .menu-toggle span:nth-child(2) { + transform: rotate(-45deg); + top: -4px; + } + .toggled .menu-toggle span:nth-child(3) { + opacity: 0; + height: 0; + } + .toggled .header-menu { + transform: translatey(0); + } + .header-menu { + height: 100vh; + position: absolute; + top: 0; + left: 0; + width: 100%; + padding-top: max(9vh, 30px); + padding-left: max(6vh, 30px); + z-index: 99; + transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1); + overflow-y: auto; + transform: translatey(-100%); + background-image: url(../images/blog-pattern-bg.png); + background-position: center; + background-color: var(--body-bg); + } + .main-navigation .menu li { + display: block; + float: none; + margin: 0; + margin-bottom: max(20px, 4vh); + } + .main-navigation .menu li a { + display: inline-block; + font-size: max(16px, 2vh); + } + .main-navigation .menu .dropdown-items .for-mob { + position: absolute; + top: 0; + right: 30px; + transition: 0.3s; + width: 30px; + height: 30px; + display: flex !important; + justify-content: center; + align-items: center; + cursor: pointer; + z-index: 2; + } + .main-navigation .menu .sub-menu { + max-width: 220px; + opacity: 1; + visibility: visible; + display: none; + } + .main-navigation .menu .sub-menu li { + margin-bottom: 5px; + } + .main-navigation .menu li:last-child { + margin: 0; + } + .main-navigation .menu .dropdown-items.dropdown-open .sub-menu { + position: unset; + display: block; + width: auto; + margin-top: 6px; + padding: 0; + background: transparent; + box-shadow: none; + margin-left: 15px; + max-width: none; + } + .main-navigation .menu .dropdown-items.dropdown-open .for-mob { + transform: rotate(180deg); + } + .main-navigation .menu .sub-menu li a { + color: var(--primary-color); + } + .header-btn.header-cart { + display: none; + } + .header-btn { + margin: 0; + margin-right: 70px; + } + .js-parallax-scene { + display: none; + } + .main-banner { + padding: 140px 0 60px; + } + .site-header { + padding: 20px 0; + box-shadow: 0px 10px 55px #d4d4d4; + } + .site-header.sticky_head, + .site-header { + background: rgb(255 255 255 / 90%); + } + .h1-title { + font-size: 60px; + line-height: 80px; + } + .xxl-title { + font-size: 40px; + line-height: 55px; + } + .banner-img-wp { + padding: 0; + height: 75vw; + padding-top: 50px; + } + .brands-box { + padding: 0 30px; + } + .brands-row { + margin: 0 -30px; + } + .menu-tab ul { + white-space: nowrap; + overflow: hidden; + overflow-x: auto; + } + .menu-tab ul::-webkit-scrollbar { + height: 0; + } + .menu-tab { + position: relative; + display: flex; + } + .menu-tab:after { + content: ""; + position: absolute; + right: 0; + top: 0; + width: 100px; + height: 100%; + pointer-events: none; + opacity: 0.2; + border-radius: 0 60px 60px 0; + background: linear-gradient( to right, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%); + } + .sec-text { + margin-top: 40px; + } + .call-now { + border: none; + margin: 40px 0; + border-top: 3px dotted rgb(13 13 37 / 50%); + border-bottom: 3px dotted rgb(13 13 37 / 50%); + padding: 30px 0; + } + .book-table-info { + max-width: 300px; + margin: 30px auto 0; + } + .swiper-button-wp .swiper-button { + display: none !important; + } + .testimonials-img img { + position: unset; + width: 100%; + } + .testimonials-img { + margin-bottom: 60px; + } + .faq-row { + column-count: 1; + margin: 0; + } + .newslatter-box { + padding: 40px; + } + .footer-info { + margin-bottom: 50px; + } + .footer-flex-box { + display: block; + margin: 0; + } + .footer-flex-box>div { + padding: 0; + margin-bottom: 30px; + } + .faq-box { + margin: 0; + margin-bottom: 30px; + } + .footer-flex-box>div:last-child { + margin: 0; + } + .scrolltop { + bottom: 130px; + } + .footer-menu ul { + max-width: 300px; + } + .inner-banner { + padding: 140px 0 60px; + } + #gallery { + padding-top: 90px; + } + .swiper-pagination-bullet { + margin: 0 5px !important; + width: 8px; + height: 8px; + } + .swiper-pagination { + padding: 6px 20px; + } + .swiper-button-wp { + margin-top: 40px; + } + .swiper-pagination-bullet-active { + width: 16px; + } + .dish-title .h3-title { + display: block; + min-height: auto; + margin-bottom: 12px; + } + .menu-img { + width: 180px; + margin-inline: auto; + margin-bottom: 20px; + } + #js-scroll-content { + transform: unset !important; + } + body { + height: auto !important; + } +} + +@media (max-width: 767px) { + .banner-img-wp { + height: 75vw; + min-height: 60vw; + width: auto; + } + .dist-img img { + width: 180px; + } + .dist-img { + margin-top: -80px; + } + .menu-tab-wp { + margin-bottom: 60px; + } + .dish-box { + margin: 80px 0 30px; + } + .book-table-img { + min-height: 340px; + height: 60vh; + } + .team-img { + height: 430px; + } + .dish-info ul li p { + font-size: 16px; + line-height: 26px; + margin: 0; + } + .dish-info ul li b { + font-size: 14px; + } + .brands-box { + padding: 0 25px; + } + .brands-row { + margin: 0 -25px; + } + .menu-tab ul li { + padding: 10px 20px; + } +} + +@media (max-width: 575px) { + .container, + .container-fluid { + padding: 0 30px; + } + .h1-title { + font-size: 40px; + line-height: 60px; + margin-bottom: 20px; + } + .h1-title span { + background-size: 100% 8px; + } + .banner-img-wp { + height: 90vw; + } + .about-video-img { + height: 30vw; + min-height: 280px; + border-radius: 30px; + } + .brands-box { + padding: 0 15px; + flex: 0 0 33%; + margin-bottom: 30px; + } + .brands-row { + margin: 0 -15px; + flex-wrap: wrap; + justify-content: center; + } + .dish-box { + max-width: 340px; + margin: 80px auto 30px; + padding: 0px 0px 30px; + } + .newslatter-sec-shape, + .newslatter-sec-shape2, + .footer-shape, + .faq-shape, + .blog-shape { + display: none; + } + .blog-sec.section { + padding-bottom: 0; + } + .brands-box img { + max-width: 80%; + } + .brand-title { + text-align: center; + } + .play-btn { + width: 70px; + height: 70px; + } + .play-btn svg { + width: 18px; + } + .play-btn-wp span { + font-size: 18px; + } + .newslatter-box { + padding: 15px; + } + .newslatter-form .form-input { + padding: 0 130px 0 12px; + } + .menu-box { + display: block; + text-align: center; + } + .menu-box-right .dish-title .h3-title { + padding: 0; + } + .gallery-img { + height: 50vw; + } + .contact-info a { + font-size: 18px; + line-height: 28px; + } +} + +@media (max-width: 480px) { + .team-img { + height: 330px; + } +} + +@media (max-width: 400px) { + .container, + .container-fluid { + padding: 0 15px; + } + .section { + padding-top: 60px; + padding-bottom: 60px; + } + .header-btn { + margin-right: 56px; + } + .menu-toggle { + right: 15px; + } + .site-header .container .row .col-lg-2 { + left: 15px; + } + .newslatter-form button { + position: unset; + transform: translate(0); + box-shadow: none !important; + margin-top: 20px; + } + .newslatter-form .form-input { + padding: 0 30px; + } + .team-box .h3-title { + min-height: 72px; + display: flex; + align-items: center; + text-align: center; + justify-content: center; + } + .team-img { + height: 280px; + } + .blog-box { + padding: 20px; + } + .our-menu-shape, + .food-shape { + display: none; + } + .widget-area { + padding: 30px 15px; + } + .single-blog-img { + min-height: 280px; + } +} + + +/*==========Responsive End CSS==========*/ diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/css/swiper-bundle.min.css b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/css/swiper-bundle.min.css new file mode 100644 index 0000000..f72cd97 --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/css/swiper-bundle.min.css @@ -0,0 +1,13 @@ +/** + * Swiper 6.7.5 + * Most modern mobile touch slider and framework with hardware accelerated transitions + * https://swiperjs.com + * + * Copyright 2014-2021 Vladimir Kharlampidi + * + * Released under the MIT License + * + * Released on: July 1, 2021 + */ + +@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA') format('woff');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-container-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-container-multirow>.swiper-wrapper{flex-wrap:wrap}.swiper-container-multirow-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-container-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-container-pointer-events{touch-action:pan-y}.swiper-container-pointer-events.swiper-container-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-container-3d{perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-container-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-container-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-container-rtl .swiper-button-prev:after{content:'next'}.swiper-button-next.swiper-button-white,.swiper-button-prev.swiper-button-white{--swiper-navigation-color:#ffffff}.swiper-button-next.swiper-button-black,.swiper-button-prev.swiper-button-black{--swiper-navigation-color:#000000}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:50%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{opacity:1;background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:6px 0;display:block}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-white{--swiper-pagination-color:#ffffff}.swiper-pagination-black{--swiper-pagination-color:#000000}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;animation:swiper-preloader-spin 1s infinite linear;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-container-fade.swiper-container-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube{overflow:visible}.swiper-container-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-container-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube.swiper-container-rtl .swiper-slide{transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-container-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-container-flip{overflow:visible}.swiper-container-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden} diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/ScrollToPlugin.min.js b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/ScrollToPlugin.min.js new file mode 100644 index 0000000..c53f8da --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/ScrollToPlugin.min.js @@ -0,0 +1,10 @@ +/*! + * ScrollToPlugin 3.4.2 + * https://greensock.com + * + * @license Copyright 2020, GreenSock. All rights reserved. + * Subject to the terms at https://greensock.com/standard-license or for Club GreenSock members, the agreement issued with that membership. + * @author: Jack Doyle, jack@greensock.com + */ + +!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((t=t||self).window=t.window||{})}(this,function(t){"use strict";function k(){return"undefined"!=typeof window}function l(){return e||k()&&(e=window.gsap)&&e.registerPlugin&&e}function m(t){return"string"==typeof t}function n(t,e){var o="x"===e?"Width":"Height",n="scroll"+o,r="client"+o;return t===x||t===s||t===f?Math.max(s[n],f[n])-(x["inner"+o]||s[r]||f[r]):t[n]-t["offset"+o]}function o(t,e){var o="scroll"+("x"===e?"Left":"Top");return t===x&&(null!=t.pageXOffset?o="page"+e.toUpperCase()+"Offset":t=null!=s[o]?s:f),function(){return t[o]}}function p(t,e){var n=a(t)[0].getBoundingClientRect(),r=!e||e===x||e===f,i=r?{top:s.clientTop-(x.pageYOffset||s.scrollTop||f.scrollTop||0),left:s.clientLeft-(x.pageXOffset||s.scrollLeft||f.scrollLeft||0)}:e.getBoundingClientRect(),l={x:n.left-i.left,y:n.top-i.top};return!r&&e&&(l.x+=o(e,"x")(),l.y+=o(e,"y")()),l}function q(t,e,o,r){return isNaN(t)||"object"==typeof t?m(t)&&"="===t.charAt(1)?parseFloat(t.substr(2))*("-"===t.charAt(0)?-1:1)+r:"max"===t?n(e,o):Math.min(n(e,o),p(t,e)[o]):parseFloat(t)}function r(){e=l(),k()&&e&&document.body&&(x=window,f=document.body,s=document.documentElement,a=e.utils.toArray,e.config({autoKillThreshold:7}),g=e.config(),u=1)}var e,u,x,s,f,a,g,i={version:"3.4.2",name:"scrollTo",rawVars:1,register:function register(t){e=t,r()},init:function init(t,e,n,i,l){u||r();var s=this;s.isWin=t===x,s.target=t,s.tween=n,"object"!=typeof e?m((e={y:e}).y)&&"max"!==e.y&&"="!==e.y.charAt(1)&&(e.x=e.y):e.nodeType&&(e={y:e,x:e}),s.vars=e,s.autoKill=!!e.autoKill,s.getX=o(t,"x"),s.getY=o(t,"y"),s.x=s.xPrev=s.getX(),s.y=s.yPrev=s.getY(),null!=e.x?(s.add(s,"x",s.x,q(e.x,t,"x",s.x)-(e.offsetX||0),i,l,Math.round),s._props.push("scrollTo_x")):s.skipX=1,null!=e.y?(s.add(s,"y",s.y,q(e.y,t,"y",s.y)-(e.offsetY||0),i,l,Math.round),s._props.push("scrollTo_y")):s.skipY=1},render:function render(t,e){for(var o,r,i,l,s,u=e._pt,f=e.target,p=e.tween,a=e.autoKill,c=e.xPrev,y=e.yPrev,d=e.isWin;u;)u.r(t,u.d),u=u._next;o=d||!e.skipX?e.getX():c,i=(r=d||!e.skipY?e.getY():y)-y,l=o-c,s=g.autoKillThreshold,e.x<0&&(e.x=0),e.y<0&&(e.y=0),a&&(!e.skipX&&(sr&&(n*=t/100),e=e.substr(0,r-1)),e=n+(e in S?S[e]*t:~e.indexOf("%")?parseFloat(e)*t/100:parseFloat(e)||0)}return e}function Ka(e,t,r,n,i,o,a,s){var l=i.startColor,c=i.endColor,u=i.fontSize,f=i.indent,p=i.fontWeight,d=Re.createElement("div"),g=N(r)||"fixed"===O(r,"pinType"),h=-1!==e.indexOf("scroller"),v=g?Fe:r,m=-1!==e.indexOf("start"),b=m?l:c,x="border-color:"+b+";font-size:"+u+";color:"+b+";font-weight:"+p+";pointer-events:none;white-space:nowrap;font-family:sans-serif,Arial;z-index:1000;padding:4px 8px;border-width:0;border-style:solid;";return x+="position:"+((h||s)&&g?"fixed;":"absolute;"),!h&&!s&&g||(x+=(n===pt?y:w)+":"+(o+parseFloat(f))+"px;"),a&&(x+="box-sizing:border-box;text-align:left;width:"+a.offsetWidth+"px;"),d._isStart=m,d.setAttribute("class","gsap-marker-"+e+(t?" marker-"+t:"")),d.style.cssText=x,d.innerText=t||0===t?e+"-"+t:e,v.children[0]?v.insertBefore(d,v.children[0]):v.appendChild(d),d._offset=d["offset"+n.op.d2],E(d,0,n,m),d}function Oa(){return 20=e)return n[r];return n.pop()}for(r=n.length,e+=1e-4;r--;)if(n[r]<=e)return n[r];return n[0]}}(k):Le.utils.snap(me.snapTo),p=me.duration||{min:.1,max:2},p=Y(p)?Ve(p.min,p.max):Ve(p,p),te=Le.delayedCall(me.delay||i/2||.1,function(){if(Math.abs(Me.getVelocity())<10&&!je&&g!==ze()){var e=k&&!Te?k.totalProgress():Me.progress,t=(e-G)/(qe()-De)*1e3||0,r=Le.utils.clamp(-Me.progress,1-Me.progress,et(t/2)*t/.185),n=Me.progress+(!1===me.inertia?0:r),i=Ve(0,1,f(n,Me)),o=ze(),a=Math.round(A+i*B),s=me.onStart,l=me.onInterrupt,c=me.onComplete,u=m.tween;if(o<=z&&A<=o&&a!==o){if(u&&!u._initted&&u.data<=et(a-o))return;!1===me.inertia&&(r=i-Me.progress),m(a,{duration:p(et(.185*Math.max(et(n-e),et(i-e))/t/.05||0)),ease:me.ease||"power3",data:et(a-o),onInterrupt:function onInterrupt(){return te.restart(!0)&&l&&l(Me)},onComplete:function onComplete(){g=ze(),S=G=k&&!Te?k.totalProgress():Me.progress,d&&d(Me),c&&c(Me)}},o,r*B,a-o-r*B),s&&s(Me,m.tween)}}else Me.isActive&&te.restart(!0)}).pause()),o&&(mt[o]=Me),fe=Me.trigger=Be(fe||pe)[0],pe=!0===pe?fe:Be(pe)[0],V(se)&&(se={targets:fe,className:se}),pe&&(!1===de||de===lt||(de=!(!de&&"flex"===va(pe.parentNode).display)&&st),Me.pin=pe,!1!==E.force3D&&Le.set(pe,{force3D:!0}),(n=Le.core.getCache(pe)).spacer?D=n.pinState:(s&&((s=Be(s)[0])&&!s.nodeType&&(s=s.current||s.nativeElement),n.spacerIsNative=!!s,s&&(n.spacerState=mb(s))),n.spacer=U=s||Re.createElement("div"),U.classList.add("pin-spacer"),o&&U.classList.add("pin-spacer-"+o),n.pinState=D=mb(pe)),Me.spacer=U=n.spacer,r=va(pe),x=r[de+Se.os2],H=Le.getProperty(pe),b=Le.quickSetter(pe,Se.a,ut),jb(pe,U,r),K=mb(pe)),c&&(e=Y(c)?xa(c,gt):gt,I=Ka("scroller-start",o,Oe,Se,e,0),F=Ka("scroller-end",o,Oe,Se,e,0,I),t=I["offset"+Se.op.d2],L=Ka("start",o,Oe,Se,e,t,0,xe),R=Ka("end",o,Oe,Se,e,t,0,xe),xe&&(oe=Le.quickSetter([L,R],Se.a,ut)),_e||Ze.length&&!0===O(Oe,"fixedMarkers")||(function _makePositionable(e){var t=va(e).position;e.style.position="absolute"===t||"fixed"===t?t:"relative"}(Ee?Fe:Oe),Le.set([I,F],{force3D:!0}),y=Le.quickSetter(I,Se.a,ut),w=Le.quickSetter(F,Se.a,ut))),xe){var h=xe.vars.onUpdate,v=xe.vars.onUpdateParams;xe.eventCallback("onUpdate",function(){Me.update(0,0,1),h&&h.apply(v||[])})}Me.previous=function(){return vt[vt.indexOf(Me)-1]},Me.next=function(){return vt[vt.indexOf(Me)+1]},Me.revert=function(e){var t=!1!==e||!Me.enabled,r=Xe;t!==Me.isReverted&&(t&&(Me.scroll.rec||(Me.scroll.rec=ze()),ne=Math.max(ze(),Me.scroll.rec||0),re=Me.progress,ie=k&&k.progress()),L&&[L,R,I,F].forEach(function(e){return e.style.display=t?"none":"block"}),t&&(Xe=1),Me.update(t),Xe=r,pe&&(t?function _swapPinOut(e,t,r){xt(r);var n=e._gsap;if(n.spacerIsNative)xt(n.spacerState);else if(e.parentNode===t){var i=t.parentNode;i&&(i.insertBefore(e,t),i.removeChild(t))}}(pe,U,D):be&&Me.isActive||jb(pe,U,va(pe),$)),Me.isReverted=t)},Me.refresh=function(e,t){if(!Xe&&Me.enabled||t)if(pe&&e&&$e)Ea(ScrollTrigger,"scrollEnd",Xa);else{Xe=1,ee&&ee.pause(),ge&&k&&k.progress(0).invalidate(),Me.isReverted||Me.revert();for(var r,n,i,o,a,s,l,c,u,f,p=Ae(),d=We(),g=xe?xe.duration():T(Oe,Se),h=0,v=0,m=E.end,b=E.endTrigger||fe,x=E.start||(0!==E.start&&fe?pe?"0 0":"0 100%":0),y=E.pinnedContainer&&Be(E.pinnedContainer)[0],w=fe&&Math.max(0,vt.indexOf(Me))||0,S=w;S--;)(s=vt[S]).end||s.refresh(0,1)||(Xe=1),!(l=s.pin)||l!==fe&&l!==pe||s.isReverted||((f=f||[]).unshift(s),s.revert());for(W(x)&&(x=x(Me)),A=pb(x,fe,p,Se,ze(),L,I,Me,d,Pe,_e,g,xe)||(pe?-.001:0),W(m)&&(m=m(Me)),V(m)&&!m.indexOf("+=")&&(~m.indexOf(" ")?m=(V(x)?x.split(" ")[0]:"")+m:(h=Ja(m.substr(2),p),m=V(x)?x:A+h,b=fe)),z=Math.max(A,pb(m||(b?"100% 0":g),b,p,Se,ze()+h,R,F,Me,d,Pe,_e,g,xe))||-.001,B=z-A||(A-=.01)&&.001,h=0,S=w;S--;)(l=(s=vt[S]).pin)&&s.start-s._pinPush=T(Oe,Se),be)if(e||!n&&!l)rb(pe,U);else{var g=dt(pe,!0),h=u-A;rb(pe,Fe,g.top+(Se===pt?h:0)+ut,g.left+(Se===pt?0:h)+ut)}xt(n||l?j:K),q!==B&&p<1&&n||b(Z+(1!==p||l?0:q))}}else b(Z+q*p);!me||m.tween||Xe||Ye||te.restart(!0),se&&(s||ve&&p&&(p<1||!Ue))&&Be(se.targets).forEach(function(e){return e.classList[n||ve?"add":"remove"](se.className)}),!ae||Te||e||ae(Me),a&&!Xe?(Te&&(c&&("complete"===o?k.pause().totalProgress(1):"reset"===o?k.restart(!0).pause():"restart"===o?k.restart(!0):k[o]()),ae&&ae(Me)),!s&&Ue||(le&&s&&aa(Me,le),ke[i]&&aa(Me,ke[i]),ve&&(1===p?Me.kill(!1,1):ke[i]=0),s||ke[i=1===p?1:3]&&aa(Me,ke[i])),ye&&!n&&Math.abs(Me.getVelocity())>(X(ye)?ye:2500)&&(_(Me.callbackAnimation),ee?ee.progress(1):_(k,!p,1))):Te&&ae&&!Xe&&ae(Me)}if(w){var v=xe?u/xe.duration()*(xe._caScrollDist||0):u;y(v+(I._isFlipped?1:0)),w(v)}oe&&oe(-u/xe.duration()*(xe._caScrollDist||0))}},Me.enable=function(e,t){Me.enabled||(Me.enabled=!0,Ea(Oe,"resize",Qa),Ea(Oe,"scroll",Pa),u&&Ea(ScrollTrigger,"refreshInit",u),!1!==e&&(Me.progress=re=0,C=M=g=ze()),!1!==t&&Me.refresh())},Me.getTween=function(e){return e&&m?m.tween:ee},Me.disable=function(e,t){if(Me.enabled&&(!1!==e&&Me.revert(),Me.enabled=Me.isActive=!1,t||ee&&ee.pause(),ne=0,n&&(n.uncache=1),u&&Fa(ScrollTrigger,"refreshInit",u),te&&(te.pause(),m.tween&&m.tween.kill()&&(m.tween=0)),!Ee)){for(var r=vt.length;r--;)if(vt[r].scroller===Oe&&vt[r]!==Me)return;Fa(Oe,"resize",Qa),Fa(Oe,"scroll",Pa)}},Me.kill=function(e,t){Me.disable(e,t),ee&&ee.kill(),o&&delete mt[o];var r=vt.indexOf(Me);vt.splice(r,1),r===Je&&0[].concat(...Element.prototype.querySelectorAll.call(e,t)),findOne:(t,e=document.documentElement)=>Element.prototype.querySelector.call(e,t),children:(t,e)=>[].concat(...t.children).filter(t=>t.matches(e)),parents(t,e){const s=[];let i=t.parentNode;for(;i&&i.nodeType===Node.ELEMENT_NODE&&3!==i.nodeType;)i.matches(e)&&s.push(i),i=i.parentNode;return s},prev(t,e){let s=t.previousElementSibling;for(;s;){if(s.matches(e))return[s];s=s.previousElementSibling}return[]},next(t,e){let s=t.nextElementSibling;for(;s;){if(s.matches(e))return[s];s=s.nextElementSibling}return[]}},n=t=>{do{t+=Math.floor(1e6*Math.random())}while(document.getElementById(t));return t},o=t=>{let e=t.getAttribute("data-bs-target");if(!e||"#"===e){let s=t.getAttribute("href");if(!s||!s.includes("#")&&!s.startsWith("."))return null;s.includes("#")&&!s.startsWith("#")&&(s="#"+s.split("#")[1]),e=s&&"#"!==s?s.trim():null}return e},r=t=>{const e=o(t);return e&&document.querySelector(e)?e:null},a=t=>{const e=o(t);return e?document.querySelector(e):null},l=t=>{if(!t)return 0;let{transitionDuration:e,transitionDelay:s}=window.getComputedStyle(t);const i=Number.parseFloat(e),n=Number.parseFloat(s);return i||n?(e=e.split(",")[0],s=s.split(",")[0],1e3*(Number.parseFloat(e)+Number.parseFloat(s))):0},c=t=>{t.dispatchEvent(new Event("transitionend"))},h=t=>!(!t||"object"!=typeof t)&&(void 0!==t.jquery&&(t=t[0]),void 0!==t.nodeType),d=t=>h(t)?t.jquery?t[0]:t:"string"==typeof t&&t.length>0?i.findOne(t):null,u=(t,e)=>{let s=!1;const i=e+5;t.addEventListener("transitionend",(function e(){s=!0,t.removeEventListener("transitionend",e)})),setTimeout(()=>{s||c(t)},i)},g=(t,e,s)=>{Object.keys(s).forEach(i=>{const n=s[i],o=e[i],r=o&&h(o)?"element":null==(a=o)?""+a:{}.toString.call(a).match(/\s([a-z]+)/i)[1].toLowerCase();var a;if(!new RegExp(n).test(r))throw new TypeError(`${t.toUpperCase()}: Option "${i}" provided type "${r}" but expected type "${n}".`)})},f=t=>{if(!t)return!1;if(t.style&&t.parentNode&&t.parentNode.style){const e=getComputedStyle(t),s=getComputedStyle(t.parentNode);return"none"!==e.display&&"none"!==s.display&&"hidden"!==e.visibility}return!1},p=t=>!t||t.nodeType!==Node.ELEMENT_NODE||!!t.classList.contains("disabled")||(void 0!==t.disabled?t.disabled:t.hasAttribute("disabled")&&"false"!==t.getAttribute("disabled")),m=t=>{if(!document.documentElement.attachShadow)return null;if("function"==typeof t.getRootNode){const e=t.getRootNode();return e instanceof ShadowRoot?e:null}return t instanceof ShadowRoot?t:t.parentNode?m(t.parentNode):null},_=()=>{},b=t=>t.offsetHeight,v=()=>{const{jQuery:t}=window;return t&&!document.body.hasAttribute("data-bs-no-jquery")?t:null},y=()=>"rtl"===document.documentElement.dir,w=t=>{var e;e=()=>{const e=v();if(e){const s=t.NAME,i=e.fn[s];e.fn[s]=t.jQueryInterface,e.fn[s].Constructor=t,e.fn[s].noConflict=()=>(e.fn[s]=i,t.jQueryInterface)}},"loading"===document.readyState?document.addEventListener("DOMContentLoaded",e):e()},E=t=>{"function"==typeof t&&t()},T=new Map;var A={set(t,e,s){T.has(t)||T.set(t,new Map);const i=T.get(t);i.has(e)||0===i.size?i.set(e,s):console.error(`Bootstrap doesn't allow more than one instance per element. Bound instance: ${Array.from(i.keys())[0]}.`)},get:(t,e)=>T.has(t)&&T.get(t).get(e)||null,remove(t,e){if(!T.has(t))return;const s=T.get(t);s.delete(e),0===s.size&&T.delete(t)}};const k=/[^.]*(?=\..*)\.|.*/,L=/\..*/,C=/::\d+$/,D={};let N=1;const S={mouseenter:"mouseover",mouseleave:"mouseout"},O=/^(mouseenter|mouseleave)/i,I=new Set(["click","dblclick","mouseup","mousedown","contextmenu","mousewheel","DOMMouseScroll","mouseover","mouseout","mousemove","selectstart","selectend","keydown","keypress","keyup","orientationchange","touchstart","touchmove","touchend","touchcancel","pointerdown","pointermove","pointerup","pointerleave","pointercancel","gesturestart","gesturechange","gestureend","focus","blur","change","reset","select","submit","focusin","focusout","load","unload","beforeunload","resize","move","DOMContentLoaded","readystatechange","error","abort","scroll"]);function x(t,e){return e&&`${e}::${N++}`||t.uidEvent||N++}function j(t){const e=x(t);return t.uidEvent=e,D[e]=D[e]||{},D[e]}function P(t,e,s=null){const i=Object.keys(t);for(let n=0,o=i.length;nfunction(e){if(!e.relatedTarget||e.relatedTarget!==e.delegateTarget&&!e.delegateTarget.contains(e.relatedTarget))return t.call(this,e)};i?i=t(i):s=t(s)}const[o,r,a]=M(e,s,i),l=j(t),c=l[a]||(l[a]={}),h=P(c,r,o?s:null);if(h)return void(h.oneOff=h.oneOff&&n);const d=x(r,e.replace(k,"")),u=o?function(t,e,s){return function i(n){const o=t.querySelectorAll(e);for(let{target:r}=n;r&&r!==this;r=r.parentNode)for(let a=o.length;a--;)if(o[a]===r)return n.delegateTarget=r,i.oneOff&&$.off(t,n.type,e,s),s.apply(r,[n]);return null}}(t,s,i):function(t,e){return function s(i){return i.delegateTarget=t,s.oneOff&&$.off(t,i.type,e),e.apply(t,[i])}}(t,s);u.delegationSelector=o?s:null,u.originalHandler=r,u.oneOff=n,u.uidEvent=d,c[d]=u,t.addEventListener(a,u,o)}function R(t,e,s,i,n){const o=P(e[s],i,n);o&&(t.removeEventListener(s,o,Boolean(n)),delete e[s][o.uidEvent])}function B(t){return t=t.replace(L,""),S[t]||t}const $={on(t,e,s,i){H(t,e,s,i,!1)},one(t,e,s,i){H(t,e,s,i,!0)},off(t,e,s,i){if("string"!=typeof e||!t)return;const[n,o,r]=M(e,s,i),a=r!==e,l=j(t),c=e.startsWith(".");if(void 0!==o){if(!l||!l[r])return;return void R(t,l,r,o,n?s:null)}c&&Object.keys(l).forEach(s=>{!function(t,e,s,i){const n=e[s]||{};Object.keys(n).forEach(o=>{if(o.includes(i)){const i=n[o];R(t,e,s,i.originalHandler,i.delegationSelector)}})}(t,l,s,e.slice(1))});const h=l[r]||{};Object.keys(h).forEach(s=>{const i=s.replace(C,"");if(!a||e.includes(i)){const e=h[s];R(t,l,r,e.originalHandler,e.delegationSelector)}})},trigger(t,e,s){if("string"!=typeof e||!t)return null;const i=v(),n=B(e),o=e!==n,r=I.has(n);let a,l=!0,c=!0,h=!1,d=null;return o&&i&&(a=i.Event(e,s),i(t).trigger(a),l=!a.isPropagationStopped(),c=!a.isImmediatePropagationStopped(),h=a.isDefaultPrevented()),r?(d=document.createEvent("HTMLEvents"),d.initEvent(n,l,!0)):d=new CustomEvent(e,{bubbles:l,cancelable:!0}),void 0!==s&&Object.keys(s).forEach(t=>{Object.defineProperty(d,t,{get:()=>s[t]})}),h&&d.preventDefault(),c&&t.dispatchEvent(d),d.defaultPrevented&&void 0!==a&&a.preventDefault(),d}};class z{constructor(t){(t=d(t))&&(this._element=t,A.set(this._element,this.constructor.DATA_KEY,this))}dispose(){A.remove(this._element,this.constructor.DATA_KEY),$.off(this._element,this.constructor.EVENT_KEY),Object.getOwnPropertyNames(this).forEach(t=>{this[t]=null})}_queueCallback(t,e,s=!0){if(!s)return void E(t);const i=l(e);$.one(e,"transitionend",()=>E(t)),u(e,i)}static getInstance(t){return A.get(t,this.DATA_KEY)}static get VERSION(){return"5.0.1"}static get NAME(){throw new Error('You have to implement the static method "NAME", for each component!')}static get DATA_KEY(){return"bs."+this.NAME}static get EVENT_KEY(){return"."+this.DATA_KEY}}class U extends z{static get NAME(){return"alert"}close(t){const e=t?this._getRootElement(t):this._element,s=this._triggerCloseEvent(e);null===s||s.defaultPrevented||this._removeElement(e)}_getRootElement(t){return a(t)||t.closest(".alert")}_triggerCloseEvent(t){return $.trigger(t,"close.bs.alert")}_removeElement(t){t.classList.remove("show");const e=t.classList.contains("fade");this._queueCallback(()=>this._destroyElement(t),t,e)}_destroyElement(t){t.parentNode&&t.parentNode.removeChild(t),$.trigger(t,"closed.bs.alert")}static jQueryInterface(t){return this.each((function(){let e=A.get(this,"bs.alert");e||(e=new U(this)),"close"===t&&e[t](this)}))}static handleDismiss(t){return function(e){e&&e.preventDefault(),t.close(this)}}}$.on(document,"click.bs.alert.data-api",'[data-bs-dismiss="alert"]',U.handleDismiss(new U)),w(U);class q extends z{static get NAME(){return"button"}toggle(){this._element.setAttribute("aria-pressed",this._element.classList.toggle("active"))}static jQueryInterface(t){return this.each((function(){let e=A.get(this,"bs.button");e||(e=new q(this)),"toggle"===t&&e[t]()}))}}function F(t){return"true"===t||"false"!==t&&(t===Number(t).toString()?Number(t):""===t||"null"===t?null:t)}function W(t){return t.replace(/[A-Z]/g,t=>"-"+t.toLowerCase())}$.on(document,"click.bs.button.data-api",'[data-bs-toggle="button"]',t=>{t.preventDefault();const e=t.target.closest('[data-bs-toggle="button"]');let s=A.get(e,"bs.button");s||(s=new q(e)),s.toggle()}),w(q);const K={setDataAttribute(t,e,s){t.setAttribute("data-bs-"+W(e),s)},removeDataAttribute(t,e){t.removeAttribute("data-bs-"+W(e))},getDataAttributes(t){if(!t)return{};const e={};return Object.keys(t.dataset).filter(t=>t.startsWith("bs")).forEach(s=>{let i=s.replace(/^bs/,"");i=i.charAt(0).toLowerCase()+i.slice(1,i.length),e[i]=F(t.dataset[s])}),e},getDataAttribute:(t,e)=>F(t.getAttribute("data-bs-"+W(e))),offset(t){const e=t.getBoundingClientRect();return{top:e.top+document.body.scrollTop,left:e.left+document.body.scrollLeft}},position:t=>({top:t.offsetTop,left:t.offsetLeft})},V={interval:5e3,keyboard:!0,slide:!1,pause:"hover",wrap:!0,touch:!0},Q={interval:"(number|boolean)",keyboard:"boolean",slide:"(boolean|string)",pause:"(string|boolean)",wrap:"boolean",touch:"boolean"},X="next",Y="prev",G="left",Z="right";class J extends z{constructor(t,e){super(t),this._items=null,this._interval=null,this._activeElement=null,this._isPaused=!1,this._isSliding=!1,this.touchTimeout=null,this.touchStartX=0,this.touchDeltaX=0,this._config=this._getConfig(e),this._indicatorsElement=i.findOne(".carousel-indicators",this._element),this._touchSupported="ontouchstart"in document.documentElement||navigator.maxTouchPoints>0,this._pointerEvent=Boolean(window.PointerEvent),this._addEventListeners()}static get Default(){return V}static get NAME(){return"carousel"}next(){this._isSliding||this._slide(X)}nextWhenVisible(){!document.hidden&&f(this._element)&&this.next()}prev(){this._isSliding||this._slide(Y)}pause(t){t||(this._isPaused=!0),i.findOne(".carousel-item-next, .carousel-item-prev",this._element)&&(c(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null}cycle(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config&&this._config.interval&&!this._isPaused&&(this._updateInterval(),this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))}to(t){this._activeElement=i.findOne(".active.carousel-item",this._element);const e=this._getItemIndex(this._activeElement);if(t>this._items.length-1||t<0)return;if(this._isSliding)return void $.one(this._element,"slid.bs.carousel",()=>this.to(t));if(e===t)return this.pause(),void this.cycle();const s=t>e?X:Y;this._slide(s,this._items[t])}_getConfig(t){return t={...V,...t},g("carousel",t,Q),t}_handleSwipe(){const t=Math.abs(this.touchDeltaX);if(t<=40)return;const e=t/this.touchDeltaX;this.touchDeltaX=0,e&&this._slide(e>0?Z:G)}_addEventListeners(){this._config.keyboard&&$.on(this._element,"keydown.bs.carousel",t=>this._keydown(t)),"hover"===this._config.pause&&($.on(this._element,"mouseenter.bs.carousel",t=>this.pause(t)),$.on(this._element,"mouseleave.bs.carousel",t=>this.cycle(t))),this._config.touch&&this._touchSupported&&this._addTouchEventListeners()}_addTouchEventListeners(){const t=t=>{!this._pointerEvent||"pen"!==t.pointerType&&"touch"!==t.pointerType?this._pointerEvent||(this.touchStartX=t.touches[0].clientX):this.touchStartX=t.clientX},e=t=>{this.touchDeltaX=t.touches&&t.touches.length>1?0:t.touches[0].clientX-this.touchStartX},s=t=>{!this._pointerEvent||"pen"!==t.pointerType&&"touch"!==t.pointerType||(this.touchDeltaX=t.clientX-this.touchStartX),this._handleSwipe(),"hover"===this._config.pause&&(this.pause(),this.touchTimeout&&clearTimeout(this.touchTimeout),this.touchTimeout=setTimeout(t=>this.cycle(t),500+this._config.interval))};i.find(".carousel-item img",this._element).forEach(t=>{$.on(t,"dragstart.bs.carousel",t=>t.preventDefault())}),this._pointerEvent?($.on(this._element,"pointerdown.bs.carousel",e=>t(e)),$.on(this._element,"pointerup.bs.carousel",t=>s(t)),this._element.classList.add("pointer-event")):($.on(this._element,"touchstart.bs.carousel",e=>t(e)),$.on(this._element,"touchmove.bs.carousel",t=>e(t)),$.on(this._element,"touchend.bs.carousel",t=>s(t)))}_keydown(t){/input|textarea/i.test(t.target.tagName)||("ArrowLeft"===t.key?(t.preventDefault(),this._slide(Z)):"ArrowRight"===t.key&&(t.preventDefault(),this._slide(G)))}_getItemIndex(t){return this._items=t&&t.parentNode?i.find(".carousel-item",t.parentNode):[],this._items.indexOf(t)}_getItemByOrder(t,e){const s=t===X,i=t===Y,n=this._getItemIndex(e),o=this._items.length-1;if((i&&0===n||s&&n===o)&&!this._config.wrap)return e;const r=(n+(i?-1:1))%this._items.length;return-1===r?this._items[this._items.length-1]:this._items[r]}_triggerSlideEvent(t,e){const s=this._getItemIndex(t),n=this._getItemIndex(i.findOne(".active.carousel-item",this._element));return $.trigger(this._element,"slide.bs.carousel",{relatedTarget:t,direction:e,from:n,to:s})}_setActiveIndicatorElement(t){if(this._indicatorsElement){const e=i.findOne(".active",this._indicatorsElement);e.classList.remove("active"),e.removeAttribute("aria-current");const s=i.find("[data-bs-target]",this._indicatorsElement);for(let e=0;e{$.trigger(this._element,"slid.bs.carousel",{relatedTarget:r,direction:u,from:o,to:a})};if(this._element.classList.contains("slide")){r.classList.add(d),b(r),n.classList.add(h),r.classList.add(h);const t=()=>{r.classList.remove(h,d),r.classList.add("active"),n.classList.remove("active",d,h),this._isSliding=!1,setTimeout(g,0)};this._queueCallback(t,n,!0)}else n.classList.remove("active"),r.classList.add("active"),this._isSliding=!1,g();l&&this.cycle()}_directionToOrder(t){return[Z,G].includes(t)?y()?t===G?Y:X:t===G?X:Y:t}_orderToDirection(t){return[X,Y].includes(t)?y()?t===Y?G:Z:t===Y?Z:G:t}static carouselInterface(t,e){let s=A.get(t,"bs.carousel"),i={...V,...K.getDataAttributes(t)};"object"==typeof e&&(i={...i,...e});const n="string"==typeof e?e:i.slide;if(s||(s=new J(t,i)),"number"==typeof e)s.to(e);else if("string"==typeof n){if(void 0===s[n])throw new TypeError(`No method named "${n}"`);s[n]()}else i.interval&&i.ride&&(s.pause(),s.cycle())}static jQueryInterface(t){return this.each((function(){J.carouselInterface(this,t)}))}static dataApiClickHandler(t){const e=a(this);if(!e||!e.classList.contains("carousel"))return;const s={...K.getDataAttributes(e),...K.getDataAttributes(this)},i=this.getAttribute("data-bs-slide-to");i&&(s.interval=!1),J.carouselInterface(e,s),i&&A.get(e,"bs.carousel").to(i),t.preventDefault()}}$.on(document,"click.bs.carousel.data-api","[data-bs-slide], [data-bs-slide-to]",J.dataApiClickHandler),$.on(window,"load.bs.carousel.data-api",()=>{const t=i.find('[data-bs-ride="carousel"]');for(let e=0,s=t.length;et===this._element);null!==n&&o.length&&(this._selector=n,this._triggerArray.push(e))}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}static get Default(){return tt}static get NAME(){return"collapse"}toggle(){this._element.classList.contains("show")?this.hide():this.show()}show(){if(this._isTransitioning||this._element.classList.contains("show"))return;let t,e;this._parent&&(t=i.find(".show, .collapsing",this._parent).filter(t=>"string"==typeof this._config.parent?t.getAttribute("data-bs-parent")===this._config.parent:t.classList.contains("collapse")),0===t.length&&(t=null));const s=i.findOne(this._selector);if(t){const i=t.find(t=>s!==t);if(e=i?A.get(i,"bs.collapse"):null,e&&e._isTransitioning)return}if($.trigger(this._element,"show.bs.collapse").defaultPrevented)return;t&&t.forEach(t=>{s!==t&&st.collapseInterface(t,"hide"),e||A.set(t,"bs.collapse",null)});const n=this._getDimension();this._element.classList.remove("collapse"),this._element.classList.add("collapsing"),this._element.style[n]=0,this._triggerArray.length&&this._triggerArray.forEach(t=>{t.classList.remove("collapsed"),t.setAttribute("aria-expanded",!0)}),this.setTransitioning(!0);const o="scroll"+(n[0].toUpperCase()+n.slice(1));this._queueCallback(()=>{this._element.classList.remove("collapsing"),this._element.classList.add("collapse","show"),this._element.style[n]="",this.setTransitioning(!1),$.trigger(this._element,"shown.bs.collapse")},this._element,!0),this._element.style[n]=this._element[o]+"px"}hide(){if(this._isTransitioning||!this._element.classList.contains("show"))return;if($.trigger(this._element,"hide.bs.collapse").defaultPrevented)return;const t=this._getDimension();this._element.style[t]=this._element.getBoundingClientRect()[t]+"px",b(this._element),this._element.classList.add("collapsing"),this._element.classList.remove("collapse","show");const e=this._triggerArray.length;if(e>0)for(let t=0;t{this.setTransitioning(!1),this._element.classList.remove("collapsing"),this._element.classList.add("collapse"),$.trigger(this._element,"hidden.bs.collapse")},this._element,!0)}setTransitioning(t){this._isTransitioning=t}_getConfig(t){return(t={...tt,...t}).toggle=Boolean(t.toggle),g("collapse",t,et),t}_getDimension(){return this._element.classList.contains("width")?"width":"height"}_getParent(){let{parent:t}=this._config;t=d(t);const e=`[data-bs-toggle="collapse"][data-bs-parent="${t}"]`;return i.find(e,t).forEach(t=>{const e=a(t);this._addAriaAndCollapsedClass(e,[t])}),t}_addAriaAndCollapsedClass(t,e){if(!t||!e.length)return;const s=t.classList.contains("show");e.forEach(t=>{s?t.classList.remove("collapsed"):t.classList.add("collapsed"),t.setAttribute("aria-expanded",s)})}static collapseInterface(t,e){let s=A.get(t,"bs.collapse");const i={...tt,...K.getDataAttributes(t),..."object"==typeof e&&e?e:{}};if(!s&&i.toggle&&"string"==typeof e&&/show|hide/.test(e)&&(i.toggle=!1),s||(s=new st(t,i)),"string"==typeof e){if(void 0===s[e])throw new TypeError(`No method named "${e}"`);s[e]()}}static jQueryInterface(t){return this.each((function(){st.collapseInterface(this,t)}))}}$.on(document,"click.bs.collapse.data-api",'[data-bs-toggle="collapse"]',(function(t){("A"===t.target.tagName||t.delegateTarget&&"A"===t.delegateTarget.tagName)&&t.preventDefault();const e=K.getDataAttributes(this),s=r(this);i.find(s).forEach(t=>{const s=A.get(t,"bs.collapse");let i;s?(null===s._parent&&"string"==typeof e.parent&&(s._config.parent=e.parent,s._parent=s._getParent()),i="toggle"):i=e,st.collapseInterface(t,i)})})),w(st);const it=new RegExp("ArrowUp|ArrowDown|Escape"),nt=y()?"top-end":"top-start",ot=y()?"top-start":"top-end",rt=y()?"bottom-end":"bottom-start",at=y()?"bottom-start":"bottom-end",lt=y()?"left-start":"right-start",ct=y()?"right-start":"left-start",ht={offset:[0,2],boundary:"clippingParents",reference:"toggle",display:"dynamic",popperConfig:null,autoClose:!0},dt={offset:"(array|string|function)",boundary:"(string|element)",reference:"(string|element|object)",display:"string",popperConfig:"(null|object|function)",autoClose:"(boolean|string)"};class ut extends z{constructor(t,e){super(t),this._popper=null,this._config=this._getConfig(e),this._menu=this._getMenuElement(),this._inNavbar=this._detectNavbar(),this._addEventListeners()}static get Default(){return ht}static get DefaultType(){return dt}static get NAME(){return"dropdown"}toggle(){p(this._element)||(this._element.classList.contains("show")?this.hide():this.show())}show(){if(p(this._element)||this._menu.classList.contains("show"))return;const t=ut.getParentFromElement(this._element),e={relatedTarget:this._element};if(!$.trigger(this._element,"show.bs.dropdown",e).defaultPrevented){if(this._inNavbar)K.setDataAttribute(this._menu,"popper","none");else{if(void 0===s)throw new TypeError("Bootstrap's dropdowns require Popper (https://popper.js.org)");let e=this._element;"parent"===this._config.reference?e=t:h(this._config.reference)?e=d(this._config.reference):"object"==typeof this._config.reference&&(e=this._config.reference);const i=this._getPopperConfig(),n=i.modifiers.find(t=>"applyStyles"===t.name&&!1===t.enabled);this._popper=s.createPopper(e,this._menu,i),n&&K.setDataAttribute(this._menu,"popper","static")}"ontouchstart"in document.documentElement&&!t.closest(".navbar-nav")&&[].concat(...document.body.children).forEach(t=>$.on(t,"mouseover",_)),this._element.focus(),this._element.setAttribute("aria-expanded",!0),this._menu.classList.toggle("show"),this._element.classList.toggle("show"),$.trigger(this._element,"shown.bs.dropdown",e)}}hide(){if(p(this._element)||!this._menu.classList.contains("show"))return;const t={relatedTarget:this._element};this._completeHide(t)}dispose(){this._popper&&this._popper.destroy(),super.dispose()}update(){this._inNavbar=this._detectNavbar(),this._popper&&this._popper.update()}_addEventListeners(){$.on(this._element,"click.bs.dropdown",t=>{t.preventDefault(),this.toggle()})}_completeHide(t){$.trigger(this._element,"hide.bs.dropdown",t).defaultPrevented||("ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach(t=>$.off(t,"mouseover",_)),this._popper&&this._popper.destroy(),this._menu.classList.remove("show"),this._element.classList.remove("show"),this._element.setAttribute("aria-expanded","false"),K.removeDataAttribute(this._menu,"popper"),$.trigger(this._element,"hidden.bs.dropdown",t))}_getConfig(t){if(t={...this.constructor.Default,...K.getDataAttributes(this._element),...t},g("dropdown",t,this.constructor.DefaultType),"object"==typeof t.reference&&!h(t.reference)&&"function"!=typeof t.reference.getBoundingClientRect)throw new TypeError("dropdown".toUpperCase()+': Option "reference" provided type "object" without a required "getBoundingClientRect" method.');return t}_getMenuElement(){return i.next(this._element,".dropdown-menu")[0]}_getPlacement(){const t=this._element.parentNode;if(t.classList.contains("dropend"))return lt;if(t.classList.contains("dropstart"))return ct;const e="end"===getComputedStyle(this._menu).getPropertyValue("--bs-position").trim();return t.classList.contains("dropup")?e?ot:nt:e?at:rt}_detectNavbar(){return null!==this._element.closest(".navbar")}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map(t=>Number.parseInt(t,10)):"function"==typeof t?e=>t(e,this._element):t}_getPopperConfig(){const t={placement:this._getPlacement(),modifiers:[{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"offset",options:{offset:this._getOffset()}}]};return"static"===this._config.display&&(t.modifiers=[{name:"applyStyles",enabled:!1}]),{...t,..."function"==typeof this._config.popperConfig?this._config.popperConfig(t):this._config.popperConfig}}_selectMenuItem(t){const e=i.find(".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)",this._menu).filter(f);if(!e.length)return;let s=e.indexOf(t.target);"ArrowUp"===t.key&&s>0&&s--,"ArrowDown"===t.key&&sthis.matches('[data-bs-toggle="dropdown"]')?this:i.prev(this,'[data-bs-toggle="dropdown"]')[0];if("Escape"===t.key)return s().focus(),void ut.clearMenus();e||"ArrowUp"!==t.key&&"ArrowDown"!==t.key?e&&"Space"!==t.key?ut.getInstance(s())._selectMenuItem(t):ut.clearMenus():s().click()}}$.on(document,"keydown.bs.dropdown.data-api",'[data-bs-toggle="dropdown"]',ut.dataApiKeydownHandler),$.on(document,"keydown.bs.dropdown.data-api",".dropdown-menu",ut.dataApiKeydownHandler),$.on(document,"click.bs.dropdown.data-api",ut.clearMenus),$.on(document,"keyup.bs.dropdown.data-api",ut.clearMenus),$.on(document,"click.bs.dropdown.data-api",'[data-bs-toggle="dropdown"]',(function(t){t.preventDefault(),ut.dropdownInterface(this)})),w(ut);const gt=()=>{const t=document.documentElement.clientWidth;return Math.abs(window.innerWidth-t)},ft=(t=gt())=>{pt(),mt("body","paddingRight",e=>e+t),mt(".fixed-top, .fixed-bottom, .is-fixed, .sticky-top","paddingRight",e=>e+t),mt(".sticky-top","marginRight",e=>e-t)},pt=()=>{const t=document.body.style.overflow;t&&K.setDataAttribute(document.body,"overflow",t),document.body.style.overflow="hidden"},mt=(t,e,s)=>{const n=gt();i.find(t).forEach(t=>{if(t!==document.body&&window.innerWidth>t.clientWidth+n)return;const i=t.style[e],o=window.getComputedStyle(t)[e];K.setDataAttribute(t,e,i),t.style[e]=s(Number.parseFloat(o))+"px"})},_t=()=>{bt("body","overflow"),bt("body","paddingRight"),bt(".fixed-top, .fixed-bottom, .is-fixed, .sticky-top","paddingRight"),bt(".sticky-top","marginRight")},bt=(t,e)=>{i.find(t).forEach(t=>{const s=K.getDataAttribute(t,e);void 0===s?t.style.removeProperty(e):(K.removeDataAttribute(t,e),t.style[e]=s)})},vt={isVisible:!0,isAnimated:!1,rootElement:document.body,clickCallback:null},yt={isVisible:"boolean",isAnimated:"boolean",rootElement:"element",clickCallback:"(function|null)"};class wt{constructor(t){this._config=this._getConfig(t),this._isAppended=!1,this._element=null}show(t){this._config.isVisible?(this._append(),this._config.isAnimated&&b(this._getElement()),this._getElement().classList.add("show"),this._emulateAnimation(()=>{E(t)})):E(t)}hide(t){this._config.isVisible?(this._getElement().classList.remove("show"),this._emulateAnimation(()=>{this.dispose(),E(t)})):E(t)}_getElement(){if(!this._element){const t=document.createElement("div");t.className="modal-backdrop",this._config.isAnimated&&t.classList.add("fade"),this._element=t}return this._element}_getConfig(t){return(t={...vt,..."object"==typeof t?t:{}}).rootElement=t.rootElement||document.body,g("backdrop",t,yt),t}_append(){this._isAppended||(this._config.rootElement.appendChild(this._getElement()),$.on(this._getElement(),"mousedown.bs.backdrop",()=>{E(this._config.clickCallback)}),this._isAppended=!0)}dispose(){this._isAppended&&($.off(this._element,"mousedown.bs.backdrop"),this._getElement().parentNode.removeChild(this._element),this._isAppended=!1)}_emulateAnimation(t){if(!this._config.isAnimated)return void E(t);const e=l(this._getElement());$.one(this._getElement(),"transitionend",()=>E(t)),u(this._getElement(),e)}}const Et={backdrop:!0,keyboard:!0,focus:!0},Tt={backdrop:"(boolean|string)",keyboard:"boolean",focus:"boolean"};class At extends z{constructor(t,e){super(t),this._config=this._getConfig(e),this._dialog=i.findOne(".modal-dialog",this._element),this._backdrop=this._initializeBackDrop(),this._isShown=!1,this._ignoreBackdropClick=!1,this._isTransitioning=!1}static get Default(){return Et}static get NAME(){return"modal"}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){if(this._isShown||this._isTransitioning)return;this._isAnimated()&&(this._isTransitioning=!0);const e=$.trigger(this._element,"show.bs.modal",{relatedTarget:t});this._isShown||e.defaultPrevented||(this._isShown=!0,ft(),document.body.classList.add("modal-open"),this._adjustDialog(),this._setEscapeEvent(),this._setResizeEvent(),$.on(this._element,"click.dismiss.bs.modal",'[data-bs-dismiss="modal"]',t=>this.hide(t)),$.on(this._dialog,"mousedown.dismiss.bs.modal",()=>{$.one(this._element,"mouseup.dismiss.bs.modal",t=>{t.target===this._element&&(this._ignoreBackdropClick=!0)})}),this._showBackdrop(()=>this._showElement(t)))}hide(t){if(t&&t.preventDefault(),!this._isShown||this._isTransitioning)return;if($.trigger(this._element,"hide.bs.modal").defaultPrevented)return;this._isShown=!1;const e=this._isAnimated();e&&(this._isTransitioning=!0),this._setEscapeEvent(),this._setResizeEvent(),$.off(document,"focusin.bs.modal"),this._element.classList.remove("show"),$.off(this._element,"click.dismiss.bs.modal"),$.off(this._dialog,"mousedown.dismiss.bs.modal"),this._queueCallback(()=>this._hideModal(),this._element,e)}dispose(){[window,this._dialog].forEach(t=>$.off(t,".bs.modal")),this._backdrop.dispose(),super.dispose(),$.off(document,"focusin.bs.modal")}handleUpdate(){this._adjustDialog()}_initializeBackDrop(){return new wt({isVisible:Boolean(this._config.backdrop),isAnimated:this._isAnimated()})}_getConfig(t){return t={...Et,...K.getDataAttributes(this._element),...t},g("modal",t,Tt),t}_showElement(t){const e=this._isAnimated(),s=i.findOne(".modal-body",this._dialog);this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.appendChild(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.scrollTop=0,s&&(s.scrollTop=0),e&&b(this._element),this._element.classList.add("show"),this._config.focus&&this._enforceFocus(),this._queueCallback(()=>{this._config.focus&&this._element.focus(),this._isTransitioning=!1,$.trigger(this._element,"shown.bs.modal",{relatedTarget:t})},this._dialog,e)}_enforceFocus(){$.off(document,"focusin.bs.modal"),$.on(document,"focusin.bs.modal",t=>{document===t.target||this._element===t.target||this._element.contains(t.target)||this._element.focus()})}_setEscapeEvent(){this._isShown?$.on(this._element,"keydown.dismiss.bs.modal",t=>{this._config.keyboard&&"Escape"===t.key?(t.preventDefault(),this.hide()):this._config.keyboard||"Escape"!==t.key||this._triggerBackdropTransition()}):$.off(this._element,"keydown.dismiss.bs.modal")}_setResizeEvent(){this._isShown?$.on(window,"resize.bs.modal",()=>this._adjustDialog()):$.off(window,"resize.bs.modal")}_hideModal(){this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._backdrop.hide(()=>{document.body.classList.remove("modal-open"),this._resetAdjustments(),_t(),$.trigger(this._element,"hidden.bs.modal")})}_showBackdrop(t){$.on(this._element,"click.dismiss.bs.modal",t=>{this._ignoreBackdropClick?this._ignoreBackdropClick=!1:t.target===t.currentTarget&&(!0===this._config.backdrop?this.hide():"static"===this._config.backdrop&&this._triggerBackdropTransition())}),this._backdrop.show(t)}_isAnimated(){return this._element.classList.contains("fade")}_triggerBackdropTransition(){if($.trigger(this._element,"hidePrevented.bs.modal").defaultPrevented)return;const t=this._element.scrollHeight>document.documentElement.clientHeight;t||(this._element.style.overflowY="hidden"),this._element.classList.add("modal-static");const e=l(this._dialog);$.off(this._element,"transitionend"),$.one(this._element,"transitionend",()=>{this._element.classList.remove("modal-static"),t||($.one(this._element,"transitionend",()=>{this._element.style.overflowY=""}),u(this._element,e))}),u(this._element,e),this._element.focus()}_adjustDialog(){const t=this._element.scrollHeight>document.documentElement.clientHeight,e=gt(),s=e>0;(!s&&t&&!y()||s&&!t&&y())&&(this._element.style.paddingLeft=e+"px"),(s&&!t&&!y()||!s&&t&&y())&&(this._element.style.paddingRight=e+"px")}_resetAdjustments(){this._element.style.paddingLeft="",this._element.style.paddingRight=""}static jQueryInterface(t,e){return this.each((function(){const s=At.getInstance(this)||new At(this,"object"==typeof t?t:{});if("string"==typeof t){if(void 0===s[t])throw new TypeError(`No method named "${t}"`);s[t](e)}}))}}$.on(document,"click.bs.modal.data-api",'[data-bs-toggle="modal"]',(function(t){const e=a(this);["A","AREA"].includes(this.tagName)&&t.preventDefault(),$.one(e,"show.bs.modal",t=>{t.defaultPrevented||$.one(e,"hidden.bs.modal",()=>{f(this)&&this.focus()})}),(At.getInstance(e)||new At(e)).toggle(this)})),w(At);const kt={backdrop:!0,keyboard:!0,scroll:!1},Lt={backdrop:"boolean",keyboard:"boolean",scroll:"boolean"};class Ct extends z{constructor(t,e){super(t),this._config=this._getConfig(e),this._isShown=!1,this._backdrop=this._initializeBackDrop(),this._addEventListeners()}static get NAME(){return"offcanvas"}static get Default(){return kt}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||$.trigger(this._element,"show.bs.offcanvas",{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._element.style.visibility="visible",this._backdrop.show(),this._config.scroll||(ft(),this._enforceFocusOnElement(this._element)),this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.classList.add("show"),this._queueCallback(()=>{$.trigger(this._element,"shown.bs.offcanvas",{relatedTarget:t})},this._element,!0))}hide(){this._isShown&&($.trigger(this._element,"hide.bs.offcanvas").defaultPrevented||($.off(document,"focusin.bs.offcanvas"),this._element.blur(),this._isShown=!1,this._element.classList.remove("show"),this._backdrop.hide(),this._queueCallback(()=>{this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._element.style.visibility="hidden",this._config.scroll||_t(),$.trigger(this._element,"hidden.bs.offcanvas")},this._element,!0)))}dispose(){this._backdrop.dispose(),super.dispose(),$.off(document,"focusin.bs.offcanvas")}_getConfig(t){return t={...kt,...K.getDataAttributes(this._element),..."object"==typeof t?t:{}},g("offcanvas",t,Lt),t}_initializeBackDrop(){return new wt({isVisible:this._config.backdrop,isAnimated:!0,rootElement:this._element.parentNode,clickCallback:()=>this.hide()})}_enforceFocusOnElement(t){$.off(document,"focusin.bs.offcanvas"),$.on(document,"focusin.bs.offcanvas",e=>{document===e.target||t===e.target||t.contains(e.target)||t.focus()}),t.focus()}_addEventListeners(){$.on(this._element,"click.dismiss.bs.offcanvas",'[data-bs-dismiss="offcanvas"]',()=>this.hide()),$.on(this._element,"keydown.dismiss.bs.offcanvas",t=>{this._config.keyboard&&"Escape"===t.key&&this.hide()})}static jQueryInterface(t){return this.each((function(){const e=A.get(this,"bs.offcanvas")||new Ct(this,"object"==typeof t?t:{});if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}$.on(document,"click.bs.offcanvas.data-api",'[data-bs-toggle="offcanvas"]',(function(t){const e=a(this);if(["A","AREA"].includes(this.tagName)&&t.preventDefault(),p(this))return;$.one(e,"hidden.bs.offcanvas",()=>{f(this)&&this.focus()});const s=i.findOne(".offcanvas.show");s&&s!==e&&Ct.getInstance(s).hide(),(A.get(e,"bs.offcanvas")||new Ct(e)).toggle(this)})),$.on(window,"load.bs.offcanvas.data-api",()=>{i.find(".offcanvas.show").forEach(t=>(A.get(t,"bs.offcanvas")||new Ct(t)).show())}),w(Ct);const Dt=new Set(["background","cite","href","itemtype","longdesc","poster","src","xlink:href"]),Nt=/^(?:(?:https?|mailto|ftp|tel|file):|[^#&/:?]*(?:[#/?]|$))/i,St=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[\d+/a-z]+=*$/i,Ot=(t,e)=>{const s=t.nodeName.toLowerCase();if(e.includes(s))return!Dt.has(s)||Boolean(Nt.test(t.nodeValue)||St.test(t.nodeValue));const i=e.filter(t=>t instanceof RegExp);for(let t=0,e=i.length;t{Ot(t,a)||s.removeAttribute(t.nodeName)})}return i.body.innerHTML}const xt=new RegExp("(^|\\s)bs-tooltip\\S+","g"),jt=new Set(["sanitize","allowList","sanitizeFn"]),Pt={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(array|string|function)",container:"(string|element|boolean)",fallbackPlacements:"array",boundary:"(string|element)",customClass:"(string|function)",sanitize:"boolean",sanitizeFn:"(null|function)",allowList:"object",popperConfig:"(null|object|function)"},Mt={AUTO:"auto",TOP:"top",RIGHT:y()?"left":"right",BOTTOM:"bottom",LEFT:y()?"right":"left"},Ht={animation:!0,template:'',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:[0,0],container:!1,fallbackPlacements:["top","right","bottom","left"],boundary:"clippingParents",customClass:"",sanitize:!0,sanitizeFn:null,allowList:{"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","srcset","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},popperConfig:null},Rt={HIDE:"hide.bs.tooltip",HIDDEN:"hidden.bs.tooltip",SHOW:"show.bs.tooltip",SHOWN:"shown.bs.tooltip",INSERTED:"inserted.bs.tooltip",CLICK:"click.bs.tooltip",FOCUSIN:"focusin.bs.tooltip",FOCUSOUT:"focusout.bs.tooltip",MOUSEENTER:"mouseenter.bs.tooltip",MOUSELEAVE:"mouseleave.bs.tooltip"};class Bt extends z{constructor(t,e){if(void 0===s)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");super(t),this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this._config=this._getConfig(e),this.tip=null,this._setListeners()}static get Default(){return Ht}static get NAME(){return"tooltip"}static get Event(){return Rt}static get DefaultType(){return Pt}enable(){this._isEnabled=!0}disable(){this._isEnabled=!1}toggleEnabled(){this._isEnabled=!this._isEnabled}toggle(t){if(this._isEnabled)if(t){const e=this._initializeOnDelegatedTarget(t);e._activeTrigger.click=!e._activeTrigger.click,e._isWithActiveTrigger()?e._enter(null,e):e._leave(null,e)}else{if(this.getTipElement().classList.contains("show"))return void this._leave(null,this);this._enter(null,this)}}dispose(){clearTimeout(this._timeout),$.off(this._element.closest(".modal"),"hide.bs.modal",this._hideModalHandler),this.tip&&this.tip.parentNode&&this.tip.parentNode.removeChild(this.tip),this._popper&&this._popper.destroy(),super.dispose()}show(){if("none"===this._element.style.display)throw new Error("Please use show on visible elements");if(!this.isWithContent()||!this._isEnabled)return;const t=$.trigger(this._element,this.constructor.Event.SHOW),e=m(this._element),i=null===e?this._element.ownerDocument.documentElement.contains(this._element):e.contains(this._element);if(t.defaultPrevented||!i)return;const o=this.getTipElement(),r=n(this.constructor.NAME);o.setAttribute("id",r),this._element.setAttribute("aria-describedby",r),this.setContent(),this._config.animation&&o.classList.add("fade");const a="function"==typeof this._config.placement?this._config.placement.call(this,o,this._element):this._config.placement,l=this._getAttachment(a);this._addAttachmentClass(l);const{container:c}=this._config;A.set(o,this.constructor.DATA_KEY,this),this._element.ownerDocument.documentElement.contains(this.tip)||(c.appendChild(o),$.trigger(this._element,this.constructor.Event.INSERTED)),this._popper?this._popper.update():this._popper=s.createPopper(this._element,o,this._getPopperConfig(l)),o.classList.add("show");const h="function"==typeof this._config.customClass?this._config.customClass():this._config.customClass;h&&o.classList.add(...h.split(" ")),"ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach(t=>{$.on(t,"mouseover",_)});const d=this.tip.classList.contains("fade");this._queueCallback(()=>{const t=this._hoverState;this._hoverState=null,$.trigger(this._element,this.constructor.Event.SHOWN),"out"===t&&this._leave(null,this)},this.tip,d)}hide(){if(!this._popper)return;const t=this.getTipElement();if($.trigger(this._element,this.constructor.Event.HIDE).defaultPrevented)return;t.classList.remove("show"),"ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach(t=>$.off(t,"mouseover",_)),this._activeTrigger.click=!1,this._activeTrigger.focus=!1,this._activeTrigger.hover=!1;const e=this.tip.classList.contains("fade");this._queueCallback(()=>{this._isWithActiveTrigger()||("show"!==this._hoverState&&t.parentNode&&t.parentNode.removeChild(t),this._cleanTipClass(),this._element.removeAttribute("aria-describedby"),$.trigger(this._element,this.constructor.Event.HIDDEN),this._popper&&(this._popper.destroy(),this._popper=null))},this.tip,e),this._hoverState=""}update(){null!==this._popper&&this._popper.update()}isWithContent(){return Boolean(this.getTitle())}getTipElement(){if(this.tip)return this.tip;const t=document.createElement("div");return t.innerHTML=this._config.template,this.tip=t.children[0],this.tip}setContent(){const t=this.getTipElement();this.setElementContent(i.findOne(".tooltip-inner",t),this.getTitle()),t.classList.remove("fade","show")}setElementContent(t,e){if(null!==t)return h(e)?(e=d(e),void(this._config.html?e.parentNode!==t&&(t.innerHTML="",t.appendChild(e)):t.textContent=e.textContent)):void(this._config.html?(this._config.sanitize&&(e=It(e,this._config.allowList,this._config.sanitizeFn)),t.innerHTML=e):t.textContent=e)}getTitle(){let t=this._element.getAttribute("data-bs-original-title");return t||(t="function"==typeof this._config.title?this._config.title.call(this._element):this._config.title),t}updateAttachment(t){return"right"===t?"end":"left"===t?"start":t}_initializeOnDelegatedTarget(t,e){const s=this.constructor.DATA_KEY;return(e=e||A.get(t.delegateTarget,s))||(e=new this.constructor(t.delegateTarget,this._getDelegateConfig()),A.set(t.delegateTarget,s,e)),e}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map(t=>Number.parseInt(t,10)):"function"==typeof t?e=>t(e,this._element):t}_getPopperConfig(t){const e={placement:t,modifiers:[{name:"flip",options:{fallbackPlacements:this._config.fallbackPlacements}},{name:"offset",options:{offset:this._getOffset()}},{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"arrow",options:{element:`.${this.constructor.NAME}-arrow`}},{name:"onChange",enabled:!0,phase:"afterWrite",fn:t=>this._handlePopperPlacementChange(t)}],onFirstUpdate:t=>{t.options.placement!==t.placement&&this._handlePopperPlacementChange(t)}};return{...e,..."function"==typeof this._config.popperConfig?this._config.popperConfig(e):this._config.popperConfig}}_addAttachmentClass(t){this.getTipElement().classList.add("bs-tooltip-"+this.updateAttachment(t))}_getAttachment(t){return Mt[t.toUpperCase()]}_setListeners(){this._config.trigger.split(" ").forEach(t=>{if("click"===t)$.on(this._element,this.constructor.Event.CLICK,this._config.selector,t=>this.toggle(t));else if("manual"!==t){const e="hover"===t?this.constructor.Event.MOUSEENTER:this.constructor.Event.FOCUSIN,s="hover"===t?this.constructor.Event.MOUSELEAVE:this.constructor.Event.FOCUSOUT;$.on(this._element,e,this._config.selector,t=>this._enter(t)),$.on(this._element,s,this._config.selector,t=>this._leave(t))}}),this._hideModalHandler=()=>{this._element&&this.hide()},$.on(this._element.closest(".modal"),"hide.bs.modal",this._hideModalHandler),this._config.selector?this._config={...this._config,trigger:"manual",selector:""}:this._fixTitle()}_fixTitle(){const t=this._element.getAttribute("title"),e=typeof this._element.getAttribute("data-bs-original-title");(t||"string"!==e)&&(this._element.setAttribute("data-bs-original-title",t||""),!t||this._element.getAttribute("aria-label")||this._element.textContent||this._element.setAttribute("aria-label",t),this._element.setAttribute("title",""))}_enter(t,e){e=this._initializeOnDelegatedTarget(t,e),t&&(e._activeTrigger["focusin"===t.type?"focus":"hover"]=!0),e.getTipElement().classList.contains("show")||"show"===e._hoverState?e._hoverState="show":(clearTimeout(e._timeout),e._hoverState="show",e._config.delay&&e._config.delay.show?e._timeout=setTimeout(()=>{"show"===e._hoverState&&e.show()},e._config.delay.show):e.show())}_leave(t,e){e=this._initializeOnDelegatedTarget(t,e),t&&(e._activeTrigger["focusout"===t.type?"focus":"hover"]=e._element.contains(t.relatedTarget)),e._isWithActiveTrigger()||(clearTimeout(e._timeout),e._hoverState="out",e._config.delay&&e._config.delay.hide?e._timeout=setTimeout(()=>{"out"===e._hoverState&&e.hide()},e._config.delay.hide):e.hide())}_isWithActiveTrigger(){for(const t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1}_getConfig(t){const e=K.getDataAttributes(this._element);return Object.keys(e).forEach(t=>{jt.has(t)&&delete e[t]}),(t={...this.constructor.Default,...e,..."object"==typeof t&&t?t:{}}).container=!1===t.container?document.body:d(t.container),"number"==typeof t.delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),g("tooltip",t,this.constructor.DefaultType),t.sanitize&&(t.template=It(t.template,t.allowList,t.sanitizeFn)),t}_getDelegateConfig(){const t={};if(this._config)for(const e in this._config)this.constructor.Default[e]!==this._config[e]&&(t[e]=this._config[e]);return t}_cleanTipClass(){const t=this.getTipElement(),e=t.getAttribute("class").match(xt);null!==e&&e.length>0&&e.map(t=>t.trim()).forEach(e=>t.classList.remove(e))}_handlePopperPlacementChange(t){const{state:e}=t;e&&(this.tip=e.elements.popper,this._cleanTipClass(),this._addAttachmentClass(this._getAttachment(e.placement)))}static jQueryInterface(t){return this.each((function(){let e=A.get(this,"bs.tooltip");const s="object"==typeof t&&t;if((e||!/dispose|hide/.test(t))&&(e||(e=new Bt(this,s)),"string"==typeof t)){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}w(Bt);const $t=new RegExp("(^|\\s)bs-popover\\S+","g"),zt={...Bt.Default,placement:"right",offset:[0,8],trigger:"click",content:"",template:''},Ut={...Bt.DefaultType,content:"(string|element|function)"},qt={HIDE:"hide.bs.popover",HIDDEN:"hidden.bs.popover",SHOW:"show.bs.popover",SHOWN:"shown.bs.popover",INSERTED:"inserted.bs.popover",CLICK:"click.bs.popover",FOCUSIN:"focusin.bs.popover",FOCUSOUT:"focusout.bs.popover",MOUSEENTER:"mouseenter.bs.popover",MOUSELEAVE:"mouseleave.bs.popover"};class Ft extends Bt{static get Default(){return zt}static get NAME(){return"popover"}static get Event(){return qt}static get DefaultType(){return Ut}isWithContent(){return this.getTitle()||this._getContent()}setContent(){const t=this.getTipElement();this.setElementContent(i.findOne(".popover-header",t),this.getTitle());let e=this._getContent();"function"==typeof e&&(e=e.call(this._element)),this.setElementContent(i.findOne(".popover-body",t),e),t.classList.remove("fade","show")}_addAttachmentClass(t){this.getTipElement().classList.add("bs-popover-"+this.updateAttachment(t))}_getContent(){return this._element.getAttribute("data-bs-content")||this._config.content}_cleanTipClass(){const t=this.getTipElement(),e=t.getAttribute("class").match($t);null!==e&&e.length>0&&e.map(t=>t.trim()).forEach(e=>t.classList.remove(e))}static jQueryInterface(t){return this.each((function(){let e=A.get(this,"bs.popover");const s="object"==typeof t?t:null;if((e||!/dispose|hide/.test(t))&&(e||(e=new Ft(this,s),A.set(this,"bs.popover",e)),"string"==typeof t)){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}w(Ft);const Wt={offset:10,method:"auto",target:""},Kt={offset:"number",method:"string",target:"(string|element)"};class Vt extends z{constructor(t,e){super(t),this._scrollElement="BODY"===this._element.tagName?window:this._element,this._config=this._getConfig(e),this._selector=`${this._config.target} .nav-link, ${this._config.target} .list-group-item, ${this._config.target} .dropdown-item`,this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,$.on(this._scrollElement,"scroll.bs.scrollspy",()=>this._process()),this.refresh(),this._process()}static get Default(){return Wt}static get NAME(){return"scrollspy"}refresh(){const t=this._scrollElement===this._scrollElement.window?"offset":"position",e="auto"===this._config.method?t:this._config.method,s="position"===e?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),i.find(this._selector).map(t=>{const n=r(t),o=n?i.findOne(n):null;if(o){const t=o.getBoundingClientRect();if(t.width||t.height)return[K[e](o).top+s,n]}return null}).filter(t=>t).sort((t,e)=>t[0]-e[0]).forEach(t=>{this._offsets.push(t[0]),this._targets.push(t[1])})}dispose(){$.off(this._scrollElement,".bs.scrollspy"),super.dispose()}_getConfig(t){if("string"!=typeof(t={...Wt,...K.getDataAttributes(this._element),..."object"==typeof t&&t?t:{}}).target&&h(t.target)){let{id:e}=t.target;e||(e=n("scrollspy"),t.target.id=e),t.target="#"+e}return g("scrollspy",t,Kt),t}_getScrollTop(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop}_getScrollHeight(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)}_getOffsetHeight(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height}_process(){const t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),s=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),t>=s){const t=this._targets[this._targets.length-1];this._activeTarget!==t&&this._activate(t)}else{if(this._activeTarget&&t0)return this._activeTarget=null,void this._clear();for(let e=this._offsets.length;e--;)this._activeTarget!==this._targets[e]&&t>=this._offsets[e]&&(void 0===this._offsets[e+1]||t`${e}[data-bs-target="${t}"],${e}[href="${t}"]`),s=i.findOne(e.join(","));s.classList.contains("dropdown-item")?(i.findOne(".dropdown-toggle",s.closest(".dropdown")).classList.add("active"),s.classList.add("active")):(s.classList.add("active"),i.parents(s,".nav, .list-group").forEach(t=>{i.prev(t,".nav-link, .list-group-item").forEach(t=>t.classList.add("active")),i.prev(t,".nav-item").forEach(t=>{i.children(t,".nav-link").forEach(t=>t.classList.add("active"))})})),$.trigger(this._scrollElement,"activate.bs.scrollspy",{relatedTarget:t})}_clear(){i.find(this._selector).filter(t=>t.classList.contains("active")).forEach(t=>t.classList.remove("active"))}static jQueryInterface(t){return this.each((function(){const e=Vt.getInstance(this)||new Vt(this,"object"==typeof t?t:{});if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}$.on(window,"load.bs.scrollspy.data-api",()=>{i.find('[data-bs-spy="scroll"]').forEach(t=>new Vt(t))}),w(Vt);class Qt extends z{static get NAME(){return"tab"}show(){if(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&this._element.classList.contains("active"))return;let t;const e=a(this._element),s=this._element.closest(".nav, .list-group");if(s){const e="UL"===s.nodeName||"OL"===s.nodeName?":scope > li > .active":".active";t=i.find(e,s),t=t[t.length-1]}const n=t?$.trigger(t,"hide.bs.tab",{relatedTarget:this._element}):null;if($.trigger(this._element,"show.bs.tab",{relatedTarget:t}).defaultPrevented||null!==n&&n.defaultPrevented)return;this._activate(this._element,s);const o=()=>{$.trigger(t,"hidden.bs.tab",{relatedTarget:this._element}),$.trigger(this._element,"shown.bs.tab",{relatedTarget:t})};e?this._activate(e,e.parentNode,o):o()}_activate(t,e,s){const n=(!e||"UL"!==e.nodeName&&"OL"!==e.nodeName?i.children(e,".active"):i.find(":scope > li > .active",e))[0],o=s&&n&&n.classList.contains("fade"),r=()=>this._transitionComplete(t,n,s);n&&o?(n.classList.remove("show"),this._queueCallback(r,t,!0)):r()}_transitionComplete(t,e,s){if(e){e.classList.remove("active");const t=i.findOne(":scope > .dropdown-menu .active",e.parentNode);t&&t.classList.remove("active"),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!1)}t.classList.add("active"),"tab"===t.getAttribute("role")&&t.setAttribute("aria-selected",!0),b(t),t.classList.contains("fade")&&t.classList.add("show");let n=t.parentNode;if(n&&"LI"===n.nodeName&&(n=n.parentNode),n&&n.classList.contains("dropdown-menu")){const e=t.closest(".dropdown");e&&i.find(".dropdown-toggle",e).forEach(t=>t.classList.add("active")),t.setAttribute("aria-expanded",!0)}s&&s()}static jQueryInterface(t){return this.each((function(){const e=A.get(this,"bs.tab")||new Qt(this);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}$.on(document,"click.bs.tab.data-api",'[data-bs-toggle="tab"], [data-bs-toggle="pill"], [data-bs-toggle="list"]',(function(t){["A","AREA"].includes(this.tagName)&&t.preventDefault(),p(this)||(A.get(this,"bs.tab")||new Qt(this)).show()})),w(Qt);const Xt={animation:"boolean",autohide:"boolean",delay:"number"},Yt={animation:!0,autohide:!0,delay:5e3};class Gt extends z{constructor(t,e){super(t),this._config=this._getConfig(e),this._timeout=null,this._hasMouseInteraction=!1,this._hasKeyboardInteraction=!1,this._setListeners()}static get DefaultType(){return Xt}static get Default(){return Yt}static get NAME(){return"toast"}show(){$.trigger(this._element,"show.bs.toast").defaultPrevented||(this._clearTimeout(),this._config.animation&&this._element.classList.add("fade"),this._element.classList.remove("hide"),b(this._element),this._element.classList.add("showing"),this._queueCallback(()=>{this._element.classList.remove("showing"),this._element.classList.add("show"),$.trigger(this._element,"shown.bs.toast"),this._maybeScheduleHide()},this._element,this._config.animation))}hide(){this._element.classList.contains("show")&&($.trigger(this._element,"hide.bs.toast").defaultPrevented||(this._element.classList.remove("show"),this._queueCallback(()=>{this._element.classList.add("hide"),$.trigger(this._element,"hidden.bs.toast")},this._element,this._config.animation)))}dispose(){this._clearTimeout(),this._element.classList.contains("show")&&this._element.classList.remove("show"),super.dispose()}_getConfig(t){return t={...Yt,...K.getDataAttributes(this._element),..."object"==typeof t&&t?t:{}},g("toast",t,this.constructor.DefaultType),t}_maybeScheduleHide(){this._config.autohide&&(this._hasMouseInteraction||this._hasKeyboardInteraction||(this._timeout=setTimeout(()=>{this.hide()},this._config.delay)))}_onInteraction(t,e){switch(t.type){case"mouseover":case"mouseout":this._hasMouseInteraction=e;break;case"focusin":case"focusout":this._hasKeyboardInteraction=e}if(e)return void this._clearTimeout();const s=t.relatedTarget;this._element===s||this._element.contains(s)||this._maybeScheduleHide()}_setListeners(){$.on(this._element,"click.dismiss.bs.toast",'[data-bs-dismiss="toast"]',()=>this.hide()),$.on(this._element,"mouseover.bs.toast",t=>this._onInteraction(t,!0)),$.on(this._element,"mouseout.bs.toast",t=>this._onInteraction(t,!1)),$.on(this._element,"focusin.bs.toast",t=>this._onInteraction(t,!0)),$.on(this._element,"focusout.bs.toast",t=>this._onInteraction(t,!1))}_clearTimeout(){clearTimeout(this._timeout),this._timeout=null}static jQueryInterface(t){return this.each((function(){let e=A.get(this,"bs.toast");if(e||(e=new Gt(this,"object"==typeof t&&t)),"string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}return w(Gt),{Alert:U,Button:q,Carousel:J,Collapse:st,Dropdown:ut,Modal:At,Offcanvas:Ct,Popover:Ft,ScrollSpy:Vt,Tab:Qt,Toast:Gt,Tooltip:Bt}})); diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/custom.js b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/custom.js new file mode 100644 index 0000000..b10fb52 --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/custom.js @@ -0,0 +1,231 @@ +/*========== + +Theme Name: Foodify - Organic Food HTML5 Template +Theme Version: 1.0 + +==========*/ + +/*========== +----- JS INDEX ----- +1.Whole Script Strict Mode Syntax +2.Book Table Img Slider JS +3.Team Slider JS +4.Project Tabbing JS +5.Menu Open JS +6.DropDown Menu JS +7.Mobile Navigation Menu JS +6.Sticky Header JS +7.Mouse Parallax JS +7.Loader JS +==========*/ + +$(document).ready(function($) { + // Whole Script Strict Mode Syntax + "use strict"; + + // Book Table Img Slider JS + + var book_table_img_slider = new Swiper(".book-table-img-slider", { + slidesPerView: 1, + spaceBetween: 20, + loop: true, + autoplay: { + delay: 3000, + disableOnInteraction: false, + }, + speed: 2000, + + effect: "coverflow", + coverflowEffect: { + rotate: 3, + stretch: 2, + depth: 100, + modifier: 5, + slideShadows: false, + }, + loopAdditionalSlides: true, + + navigation: { + nextEl: ".swiper-button-next", + prevEl: ".swiper-button-prev", + }, + + pagination: { + el: ".swiper-pagination", + clickable: true, + }, + }); + + // Book Table Img Slider JS End + + + // Team Slider JS + + var team_slider = new Swiper(".team-slider", { + slidesPerView: 3, + spaceBetween: 30, + loop: true, + autoplay: { + delay: 3000, + disableOnInteraction: false, + }, + speed: 2000, + + navigation: { + nextEl: ".swiper-button-next", + prevEl: ".swiper-button-prev", + }, + + pagination: { + el: ".swiper-pagination", + clickable: true, + }, + + breakpoints: { + 0: { + slidesPerView: 1.2, + }, + 768: { + slidesPerView: 2, + }, + 992: { + slidesPerView: 3, + }, + 1200: { + slidesPerView: 3, + }, + }, + }); + + // Team Slider JS End + + // Project Tabbing JS + + jQuery(".filters").on("click", function() { + jQuery("#menu-dish").removeClass("bydefault_show"); + }); + + $(function() { + var filterList = { + init: function() { + // MixItUp plugin + // http://mixitup.io + $("#menu-dish").mixItUp({ + selectors: { + target: ".dish-box-wp", + filter: ".filter", + }, + animation: { + effects: "fade", + easing: "ease-in-out", + }, + load: { + filter: ".all, .breakfast, .lunch, .dinner", + }, + }); + }, + }; + // Run the show! + filterList.init(); + }); + + // Project Tabbing JS End + + // Menu Open JS + + jQuery(".menu-toggle").click(function() { + jQuery(".main-navigation").toggleClass("toggled"); + }); + + // Menu Open JS End + + // DropDown Menu JS + + jQuery(".dropdown-items").click(function() { + var cur = jQuery(this).closest(".dropdown-items"); + jQuery(".dropdown-items").not(cur).removeClass("dropdown-open"); + jQuery(this).closest(".dropdown-items").toggleClass("dropdown-open"); + }); + + // DropDown Menu JS End + + // Mobile Navigation Menu Removeclass + + jQuery(".header-menu ul li a").click(function() { + jQuery(".main-navigation").removeClass("toggled"); + }); + + // Mobile Navigation Menu Removeclass End + + // Sticky Header JS + + gsap.registerPlugin(ScrollTrigger); + + var elementFirst = document.querySelector('.site-header'); + + ScrollTrigger.create({ + trigger: "body", + start: "30px top", + end: "bottom bottom", + + onEnter: () => myfunction(), + onLeaveBack: () => myfunction(), + }); + + function myfunction() { + elementFirst.classList.toggle('sticky_head'); + }; + + // Sticky Header JS End + + //Mouse Parallax + var scene = $(".js-parallax-scene").get(0); + var parallaxInstance = new Parallax(scene); + //Mouse Parallax End + +}); + + +//Loader JS + +jQuery(window).on('load', function() { + $('.page-loader').fadeOut(); + $('body').removeClass('body-fixed'); + + // Active Tabbing JS + let targets = document.querySelectorAll(".filter"); + let activeTab = 0; + let old = 0; + let dur = 0.4; + let animation; + + for (let i = 0; i < targets.length; i++) { + targets[i].index = i; + targets[i].addEventListener("click", doCoolStuff); + } + + // set initial position bubble slider on first tab + gsap.set(".filter-active", { x: targets[0].offsetLeft, width: targets[0].offsetWidth }); + gsap.set(targets[0], { color: "#fff" }); + + function doCoolStuff() { + // check if clicked target is new and if the timeline is currently active + if (this.index != activeTab) { + //if there's an animation in-progress, jump to the end immediately so there aren't weird overlaps. + if (animation && animation.isActive()) { + animation.progress(1); + } + animation = gsap.timeline({ defaults: { duration: 0.4 } }); + old = activeTab; + activeTab = this.index; + // animate bubble slider to clicked target + animation.to(".filter-active", { x: targets[activeTab].offsetLeft, width: targets[activeTab].offsetWidth }); + + // change text color on old and new tab targets + animation.to(targets[old], { color: "#0d0d25", ease: "none" }, 0); + animation.to(targets[activeTab], { color: "#fff", ease: "none" }, 0); + } + } +}); + +//Loader JS End diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/font-awesome.min.js b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/font-awesome.min.js new file mode 100644 index 0000000..9226f4e --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/font-awesome.min.js @@ -0,0 +1,2 @@ +window.FontAwesomeKitConfig = {"asyncLoading":{"enabled":false},"autoA11y":{"enabled":true},"baseUrl":"https://ka-f.fontawesome.com","detectConflictsUntil":null,"iconUploads":{},"license":"free","method":"css","minify":{"enabled":true},"token":"b64a597180","v4FontFaceShim":{"enabled":true},"v4shim":{"enabled":true},"version":"5.15.1"}; +!function(t){"function"==typeof define&&define.amd?define(t):t()}((function(){"use strict";function t(e){return(t="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(e)}function e(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function n(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,o)}return n}function o(t){for(var o=1;o2&&void 0!==arguments[2]?arguments[2]:function(){},r=e.document||r,a=c.bind(c,r,["fa","fab","fas","far","fal","fad","fak"]);t.autoA11y.enabled&&n(a);var u=[{id:"fa-main",addOn:void 0}];t.v4shim.enabled&&u.push({id:"fa-v4-shims",addOn:"-v4-shims"}),t.v4FontFaceShim.enabled&&u.push({id:"fa-v4-font-face",addOn:"-v4-font-face"});var f=u.map((function(n){return new S((function(r,c){E(i(t,{addOn:n.addOn,minify:t.minify.enabled}),e).then((function(i){r(P(i,o({},e,{baseUrl:t.baseUrl,version:t.version,id:n.id})))})).catch(c)}))}));return S.all(f)}function P(t,e){var n=document.createElement("style"),o=document.createTextNode(function(t,e,n){var o=t;return[[/(url\("?)\.\.\/\.\.\/\.\./g,function(t,n){return"".concat(n).concat(e)}],[/(url\("?)\.\.\/webfonts/g,function(t,o){return"".concat(o).concat(e,"/releases/v").concat(n,"/webfonts")}],[/(url\("?)https:\/\/kit-free([^.])*\.fontawesome\.com/g,function(t,n){return"".concat(n).concat(e)}]].forEach((function(t){var e=r(t,2),n=e[0],i=e[1];o=o.replace(n,i)})),o}(t,e.baseUrl,e.version));return n.appendChild(o),n.media="all",e.id&&n.setAttribute("id",e.id),e&&e.detectingConflicts&&e.detectionIgnoreAttr&&n.setAttributeNode(document.createAttribute(e.detectionIgnoreAttr)),n}function F(t,e){e.autoA11y=t.autoA11y.enabled,"pro"===t.license&&(e.autoFetchSvg=!0,e.fetchSvgFrom=t.baseUrl+"/releases/"+("latest"===t.version?"latest":"v".concat(t.version))+"/svgs",e.fetchUploadedSvgFrom=t.uploadsUrl);var n=[];return t.v4shim.enabled&&n.push(new S((function(n,r){E(i(t,{addOn:"-v4-shims",minify:t.minify.enabled}),e).then((function(t){n(T(t,o({},e,{id:"fa-v4-shims"})))})).catch(r)}))),n.push(new S((function(n,r){E(i(t,{minify:t.minify.enabled}),e).then((function(t){var r=T(t,o({},e,{id:"fa-main"}));n(function(t,e){var n=e&&void 0!==e.autoFetchSvg?e.autoFetchSvg:void 0,o=e&&void 0!==e.autoA11y?e.autoA11y:void 0;void 0!==o&&t.setAttribute("data-auto-a11y",o?"true":"false");n&&(t.setAttributeNode(document.createAttribute("data-auto-fetch-svg")),t.setAttribute("data-fetch-svg-from",e.fetchSvgFrom),t.setAttribute("data-fetch-uploaded-svg-from",e.fetchUploadedSvgFrom));return t}(r,e))})).catch(r)}))),S.all(n)}function T(t,e){var n=document.createElement("SCRIPT"),o=document.createTextNode(t);return n.appendChild(o),n.referrerPolicy="strict-origin",e.id&&n.setAttribute("id",e.id),e&&e.detectingConflicts&&e.detectionIgnoreAttr&&n.setAttributeNode(document.createAttribute(e.detectionIgnoreAttr)),n}function C(t){var e,n=[],o=document,r=o.documentElement.doScroll,i=(r?/^loaded|^c/:/^loaded|^i|^c/).test(o.readyState);i||o.addEventListener("DOMContentLoaded",e=function(){for(o.removeEventListener("DOMContentLoaded",e),i=1;e=n.shift();)e()}),i?setTimeout(t,0):n.push(t)}function L(t){"undefined"!=typeof MutationObserver&&new MutationObserver(t).observe(document,{childList:!0,subtree:!0})}try{if(window.FontAwesomeKitConfig){var k=window.FontAwesomeKitConfig,x={detectingConflicts:k.detectConflictsUntil&&new Date<=new Date(k.detectConflictsUntil),detectionIgnoreAttr:"data-fa-detection-ignore",fetch:window.fetch,token:k.token,XMLHttpRequest:window.XMLHttpRequest,document:document},I=document.currentScript,U=I?I.parentElement:document.head;(function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return"js"===t.method?F(t,e):"css"===t.method?_(t,e,(function(t){C(t),L(t)})):void 0})(k,x).then((function(t){t.map((function(t){U.insertBefore(t,I?I.nextSibling:null)})),x.detectingConflicts&&I&&C((function(){I.setAttributeNode(document.createAttribute(x.detectionIgnoreAttr));var t=function(t,e){var n=document.createElement("script");return e&&e.detectionIgnoreAttr&&n.setAttributeNode(document.createAttribute(e.detectionIgnoreAttr)),n.src=i(t,{baseFilename:"conflict-detection",fileSuffix:"js",subdir:"js",minify:t.minify.enabled}),n}(k,x);document.body.appendChild(t)}))})).catch((function(t){console.error("".concat("Font Awesome Kit:"," ").concat(t))}))}}catch(t){console.error("".concat("Font Awesome Kit:"," ").concat(t))}})); diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/gsap.min.js b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/gsap.min.js new file mode 100644 index 0000000..51293fe --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/gsap.min.js @@ -0,0 +1,10 @@ +/*! + * GSAP 3.4.2 + * https://greensock.com + * + * @license Copyright 2020, GreenSock. All rights reserved. + * Subject to the terms at https://greensock.com/standard-license or for Club GreenSock members, the agreement issued with that membership. + * @author: Jack Doyle, jack@greensock.com + */ + +!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((t=t||self).window=t.window||{})}(this,function(e){"use strict";function _inheritsLoose(t,e){t.prototype=Object.create(e.prototype),(t.prototype.constructor=t).__proto__=e}function _assertThisInitialized(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function n(t){return"string"==typeof t}function o(t){return"function"==typeof t}function p(t){return"number"==typeof t}function q(t){return void 0===t}function r(t){return"object"==typeof t}function s(t){return!1!==t}function t(){return"undefined"!=typeof window}function u(t){return o(t)||n(t)}function K(t){return(l=ct(t,at))&&ie}function L(t,e){return console.warn("Invalid property",t,"set to",e,"Missing plugin? gsap.registerPlugin()")}function M(t,e){return!e&&console.warn(t)}function N(t,e){return t&&(at[t]=e)&&l&&(l[t]=e)||at}function O(){return 0}function Y(t){var e,i,n=t[0];if(r(n)||o(n)||(t=[t]),!(e=(n._gsap||{}).harness)){for(i=dt.length;i--&&!dt[i].targetTest(n););e=dt[i]}for(i=t.length;i--;)t[i]&&(t[i]._gsap||(t[i]._gsap=new Et(t[i],e)))||t.splice(i,1);return t}function Z(t){return t._gsap||Y(yt(t))[0]._gsap}function $(t,e){var r=t[e];return o(r)?t[e]():q(r)&&t.getAttribute(e)||r}function _(t,e){return(t=t.split(",")).forEach(e)||t}function aa(t){return Math.round(1e5*t)/1e5||0}function ba(t,e){for(var r=e.length,i=0;t.indexOf(e[i])<0&&++iB)&&e.render(r,!0)),ra(t)._dp&&t._initted&&t._time>=t._dur&&t._ts){if(t._dura;)s=s._prev;s?(e._next=s._next,s._next=e):(e._next=t[r],t[r]=e),e._next?e._next._prev=e:t[i]=e,e._prev=s,e.parent=e._dp=t}(t,e,"_first","_last",t._sort?"_start":0),t._recent=e,i||za(t,e),t}function Ba(t,e){return(at.ScrollTrigger||L("scrollTrigger",e))&&at.ScrollTrigger.create(e,t)}function Ca(t,e,r,i){return qt(t,e),t._initted?!r&&t._pt&&(t._dur&&!1!==t.vars.lazy||!t._dur&&t.vars.lazy)&&d!==Mt.frame?(ot.push(t),t._lazy=[e,i],1):void 0:1}function Fa(t,e,r){var i=t._repeat,n=aa(e)||0;return t._dur=n,t._tDur=i?i<0?1e10:aa(n*(i+1)+t._rDelay*i):n,t._time>n&&(t._time=n,t._tTime=Math.min(t._tTime,t._tDur)),r||ra(t.parent),t.parent&&xa(t),t}function Ga(t){return t instanceof Rt?ra(t):Fa(t,t._dur)}function Ia(t,e){var r,i,a=t.labels,s=t._recent||mt,o=t.duration()>=z?s.endTime(!1):t._dur;return n(e)&&(isNaN(e)||e in a)?"<"===(r=e.charAt(0))||">"===r?("<"===r?s._start:s.endTime(0<=s._repeat))+(parseFloat(e.substr(1))||0):(r=e.indexOf("="))<0?(e in a||(a[e]=o),a[e]):(i=+(e.charAt(r-1)+e.substr(r+1)),1(n=Math.abs(n))&&(a=i,o=n);return a}function fb(t){return qa(t),t.progress()<1&&bt(t,"onInterrupt"),t}function kb(t,e,r){return(6*(t=t<0?t+1:1>16,t>>8&wt,t&wt]:0:xt.black;if(!c){if(","===t.substr(-1)&&(t=t.substr(0,t.length-1)),xt[t])c=xt[t];else if("#"===t.charAt(0))4===t.length&&(t="#"+(i=t.charAt(1))+i+(n=t.charAt(2))+n+(a=t.charAt(3))+a),c=[(t=parseInt(t.substr(1),16))>>16,t>>8&wt,t&wt];else if("hsl"===t.substr(0,3))if(c=d=t.match(W),e){if(~t.indexOf("="))return c=t.match(H),r&&c.length<4&&(c[3]=1),c}else s=+c[0]%360/360,o=c[1]/100,i=2*(u=c[2]/100)-(n=u<=.5?u*(o+1):u+o-u*o),3=r&&te)return i;i=i._next}else for(i=t._last;i&&i._start>=r;){if(!i._dur&&"isPause"===i.data&&i._start=n._start)&&n._ts&&h!==n){if(n.parent!==this)return this.render(t,e,r);if(n.render(0=this.totalDuration()||!v&&_)&&(f!==this._start&&Math.abs(l)===Math.abs(this._ts)||this._lock||(!t&&g||!(v===m&&0=i&&(a instanceof Xt?e&&n.push(a):(r&&n.push(a),t&&n.push.apply(n,a.getChildren(!0,e,r)))),a=a._next;return n},t.getById=function getById(t){for(var e=this.getChildren(1,1,1),r=e.length;r--;)if(e[r].vars.id===t)return e[r]},t.remove=function remove(t){return n(t)?this.removeLabel(t):o(t)?this.killTweensOf(t):(pa(this,t),t===this._recent&&(this._recent=this._last),ra(this))},t.totalTime=function totalTime(t,e){return arguments.length?(this._forcing=1,!this._dp&&this._ts&&(this._start=aa(Mt.time-(0e:!e||a.isActive())&&i.push(a):(r=a.getTweensOf(n,e)).length&&i.push.apply(i,r),a=a._next;return i},t.tweenTo=function tweenTo(t,e){e=e||{};var r=this,i=Ia(r,t),n=e.startAt,a=e.onStart,s=e.onStartParams,o=Xt.to(r,ha(e,{ease:"none",lazy:!1,time:i,duration:e.duration||Math.abs((i-(n&&"time"in n?n.time:r._time))/r.timeScale())||B,onStart:function onStart(){r.pause();var t=e.duration||Math.abs((i-r._time)/r.timeScale());o._dur!==t&&Fa(o,t).render(o._time,!0,!0),a&&a.apply(o,s||[])}}));return o},t.tweenFromTo=function tweenFromTo(t,e,r){return this.tweenTo(e,ha({startAt:{time:Ia(this,t)}},r))},t.recent=function recent(){return this._recent},t.nextLabel=function nextLabel(t){return void 0===t&&(t=this._time),db(this,Ia(this,t))},t.previousLabel=function previousLabel(t){return void 0===t&&(t=this._time),db(this,Ia(this,t),1)},t.currentLabel=function currentLabel(t){return arguments.length?this.seek(t,!0):this.previousLabel(this._time+B)},t.shiftChildren=function shiftChildren(t,e,r){void 0===r&&(r=0);for(var i,n=this._first,a=this.labels;n;)n._start>=r&&(n._start+=t),n=n._next;if(e)for(i in a)a[i]>=r&&(a[i]+=t);return ra(this)},t.invalidate=function invalidate(){var t=this._first;for(this._lock=0;t;)t.invalidate(),t=t._next;return i.prototype.invalidate.call(this)},t.clear=function clear(t){void 0===t&&(t=!0);for(var e,r=this._first;r;)e=r._next,this.remove(r),r=e;return this._time=this._tTime=this._pTime=0,t&&(this.labels={}),ra(this)},t.totalDuration=function totalDuration(t){var e,r,i,n,a=0,s=this,o=s._last,u=z;if(arguments.length)return s.timeScale((s._repeat<0?s.duration():s.totalDuration())/(s.reversed()?-t:t));if(s._dirty){for(n=s.parent;o;)e=o._prev,o._dirty&&o.totalDuration(),u<(i=o._start)&&s._sort&&o._ts&&!s._lock?(s._lock=1,Aa(s,o,i-o._delay,1)._lock=0):u=i,i<0&&o._ts&&(a-=i,(!n&&!s._dp||n&&n.smoothChildTiming)&&(s._start+=i/s._ts,s._time-=i,s._tTime-=i),s.shiftChildren(-i,!1,-Infinity),u=0),a<(r=xa(o))&&o._ts&&(a=r),o=e;Fa(s,s===I&&s._time>a?s._time:a,1),s._dirty=0}return s._tDur},Timeline.updateRoot=function updateRoot(t){if(I._ts&&(ea(I,wa(t,I)),d=Mt.frame),Mt.frame>=ft){ft+=U.autoSleep||120;var e=I._first;if((!e||!e._ts)&&U.autoSleep&&Mt._listeners.length<2){for(;e&&!e._ts;)e=e._next;e||Mt.sleep()}}},Timeline}(It);ha(Rt.prototype,{_lock:0,_hasPause:0,_forcing:0});function Mb(t,e,i,a,s,u){var h,l,f,d;if(ht[t]&&!1!==(h=new ht[t]).init(s,h.rawVars?e[t]:function _processVars(t,e,i,a,s){if(o(t)&&(t=Yt(t,s,e,i,a)),!r(t)||t.style&&t.nodeType||J(t))return n(t)?Yt(t,s,e,i,a):t;var u,h={};for(u in t)h[u]=Yt(t[u],s,e,i,a);return h}(e[t],a,s,u,i),i,a,u)&&(i._pt=l=new ee(i._pt,s,t,0,1,h.render,h,0,h.priority),i!==c))for(f=i._ptLookup[i._targets.indexOf(s)],d=h._props.length;d--;)f[h._props[d]]=l;return h}var Lt,Bt=function _addPropTween(t,e,r,i,a,s,u,h,l){o(i)&&(i=i(a||0,t,s));var f,d=t[e],p="get"!==r?r:o(d)?l?t[e.indexOf("set")||!o(t["get"+e.substr(3)])?e:"get"+e.substr(3)](l):t[e]():d,c=o(d)?l?jt:Vt:Zt;if(n(i)&&(~i.indexOf("random(")&&(i=ab(i)),"="===i.charAt(1)&&(i=parseFloat(p)+parseFloat(i.substr(2))*("-"===i.charAt(0)?-1:1)+(La(p)||0))),p!==i)return isNaN(p*i)?(d||e in t||L(e,i),function _addComplexStringPropTween(t,e,r,i,n,a,s){var o,u,h,l,f,d,p,c,_=new ee(this._pt,t,e,0,1,Wt,null,n),m=0,g=0;for(_.b=r,_.e=i,r+="",(p=~(i+="").indexOf("random("))&&(i=ab(i)),a&&(a(c=[r,i],t,e),r=c[0],i=c[1]),u=r.match(et)||[];o=et.exec(i);)l=o[0],f=i.substring(m,o.index),h?h=(h+1)%5:"rgba("===f.substr(-5)&&(h=1),l!==u[g++]&&(d=parseFloat(u[g-1])||0,_._pt={_next:_._pt,p:f||1===g?f:",",s:d,c:"="===l.charAt(1)?parseFloat(l.substr(2))*("-"===l.charAt(0)?-1:1):parseFloat(l)-d,m:h&&h<4?Math.round:0},m=et.lastIndex);return _.c=m")});else{if(f=S.length,_=b?Sa(b):O,r(b))for(d in b)~Nt.indexOf(d)&&((m=m||{})[d]=b[d]);for(h=0;hB&&!t._dp._lock||t._ts<0||t._dp._ts<0?0:1,u=t._rDelay,h=0;if(u&&t._repeat&&(h=gt(0,t._tDur,e),_t(h,u)!==(a=_t(t._tTime,u))&&(s=1-o,t.vars.repeatRefresh&&t._initted&&t.invalidate())),t._initted||!Ca(t,e,i,r))if(o!==s||i||t._zTime===B||!e&&t._zTime){for(a=t._zTime,t._zTime=e||(r?B:0),r=r||e&&!a,t.ratio=o,t._from&&(o=1-o),t._time=0,t._tTime=h,r||bt(t,"onStart"),n=t._pt;n;)n.r(o,n.d),n=n._next;t._startAt&&e<0&&t._startAt.render(e,!0,!0),t._onUpdate&&!r&&bt(t,"onUpdate"),h&&t._repeat&&!r&&t.parent&&bt(t,"onRepeat"),(e>=t._tDur||e<0)&&t.ratio===o&&(o&&qa(t,1),r||(bt(t,o?"onComplete":"onReverseComplete",!0),t._prom&&t._prom()))}else t._zTime||(t._zTime=e)}(this,t,e,r);return this},t.targets=function targets(){return this._targets},t.invalidate=function invalidate(){return this._pt=this._op=this._startAt=this._onUpdate=this._act=this._lazy=0,this._ptLookup=[],this.timeline&&this.timeline.invalidate(),D.prototype.invalidate.call(this)},t.kill=function kill(t,e){if(void 0===e&&(e="all"),!(t||e&&"all"!==e)&&(this._lazy=0,this.parent))return fb(this);if(this.timeline){var r=this.timeline.totalDuration();return this.timeline.killTweensOf(t,e,Lt&&!0!==Lt.vars.overwrite)._first||fb(this),this.parent&&r!==this.timeline.totalDuration()&&Fa(this,this._dur*this.timeline._tDur/r),this}var i,a,s,o,u,h,l,f=this._targets,d=t?yt(t):f,p=this._ptLookup,c=this._pt;if((!e||"all"===e)&&function _arraysMatch(t,e){for(var r=t.length,i=r===e.length;i&&r--&&t[r]===e[r];);return r<0}(f,d))return"all"===e&&(this._pt=0),fb(this);for(i=this._op=this._op||[],"all"!==e&&(n(e)&&(u={},_(e,function(t){return u[t]=1}),e=u),e=function _addAliasesToVars(t,e){var r,i,n,a,s=t[0]?Z(t[0]).harness:0,o=s&&s.aliases;if(!o)return e;for(i in r=ct({},e),o)if(i in r)for(n=(a=o[i].split(",")).length;n--;)r[a[n]]=r[i];return r}(f,e)),l=f.length;l--;)if(~d.indexOf(f[l]))for(u in a=p[l],"all"===e?(i[l]=e,o=a,s={}):(s=i[l]=i[l]||{},o=e),o)(h=a&&a[u])&&("kill"in h.d&&!0!==h.d.kill(u)||pa(this,h,"_pt"),delete a[u]),"all"!==s&&(s[u]=1);return this._initted&&!this._pt&&c&&fb(this),this},Tween.to=function to(t,e,r){return new Tween(t,e,r)},Tween.from=function from(t,e){return new Tween(t,ca(arguments,1))},Tween.delayedCall=function delayedCall(t,e,r,i){return new Tween(e,0,{immediateRender:!1,lazy:!1,overwrite:!1,delay:t,onComplete:e,onReverseComplete:e,onCompleteParams:r,onReverseCompleteParams:r,callbackScope:i})},Tween.fromTo=function fromTo(t,e,r){return new Tween(t,ca(arguments,2))},Tween.set=function set(t,e){return e.duration=0,e.repeatDelay||(e.repeat=0),new Tween(t,e)},Tween.killTweensOf=function killTweensOf(t,e,r){return I.killTweensOf(t,e,r)},Tween}(It);ha(Xt.prototype,{_targets:[],_lazy:0,_startAt:0,_op:0,_onInit:0}),_("staggerTo,staggerFrom,staggerFromTo",function(r){Xt[r]=function(){var t=new Rt,e=vt.call(arguments,0);return e.splice("staggerFromTo"===r?5:4,0,0),t[r].apply(t,e)}});function Xb(t,e,r){return t.setAttribute(e,r)}function dc(t,e,r,i){i.mSet(t,e,i.m.call(i.tween,r,i.mt),i)}var Zt=function _setterPlain(t,e,r){return t[e]=r},Vt=function _setterFunc(t,e,r){return t[e](r)},jt=function _setterFuncWithParam(t,e,r,i){return t[e](i.fp,r)},Gt=function _getSetter(t,e){return o(t[e])?Vt:q(t[e])&&t.setAttribute?Xb:Zt},Qt=function _renderPlain(t,e){return e.set(e.t,e.p,Math.round(1e4*(e.s+e.c*t))/1e4,e)},Jt=function _renderBoolean(t,e){return e.set(e.t,e.p,!!(e.s+e.c*t),e)},Wt=function _renderComplexString(t,e){var r=e._pt,i="";if(!t&&e.b)i=e.b;else if(1===t&&e.e)i=e.e;else{for(;r;)i=r.p+(r.m?r.m(r.s+r.c*t):Math.round(1e4*(r.s+r.c*t))/1e4)+i,r=r._next;i+=e.c}e.set(e.t,e.p,i,e)},$t=function _renderPropTweens(t,e){for(var r=e._pt;r;)r.r(t,r.d),r=r._next},Ht=function _addPluginModifier(t,e,r,i){for(var n,a=this._pt;a;)n=a._next,a.p===i&&a.modifier(t,e,r),a=n},Kt=function _killPropTweensOf(t){for(var e,r,i=this._pt;i;)r=i._next,i.p===t&&!i.op||i.op===t?pa(this,i,"_pt"):i.dep||(e=1),i=r;return!e},te=function _sortPropTweensByPriority(t){for(var e,r,i,n,a=t._pt;a;){for(e=a._next,r=i;r&&r.pr>a.pr;)r=r._next;(a._prev=r?r._prev:n)?a._prev._next=a:i=a,(a._next=r)?r._prev=a:n=a,a=e}t._pt=i},ee=(PropTween.prototype.modifier=function modifier(t,e,r){this.mSet=this.mSet||this.set,this.set=dc,this.m=t,this.mt=r,this.tween=e},PropTween);function PropTween(t,e,r,i,n,a,s,o,u){this.t=e,this.s=i,this.c=n,this.p=r,this.r=a||Qt,this.d=s||this,this.set=o||Zt,this.pr=u||0,(this._next=t)&&(t._prev=this)}_(pt+"parent,duration,ease,delay,overwrite,runBackwards,startAt,yoyo,immediateRender,repeat,repeatDelay,data,paused,reversed,lazy,callbackScope,stringFilter,id,yoyoEase,stagger,inherit,repeatRefresh,keyframes,autoRevert,scrollTrigger",function(t){return st[t]=1}),at.TweenMax=at.TweenLite=Xt,at.TimelineLite=at.TimelineMax=Rt,I=new Rt({sortChildren:!1,defaults:R,autoRemoveChildren:!0,id:"root",smoothChildTiming:!0}),U.stringFilter=qb;var re={registerPlugin:function registerPlugin(){for(var t=arguments.length,e=new Array(t),r=0;r+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var _t,zt=[],Ut=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=zt.pop()||S.expando+"_"+wt.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Ut.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Ut.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Ut,"$1"+r):!1!==e.jsonp&&(e.url+=(Tt.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,zt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((_t=E.implementation.createHTMLDocument("").body).innerHTML="
",2===_t.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=Fe(y.pixelPosition,function(e,t){if(t)return t=We(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0',preload:!0,css:{},attr:{scrolling:"auto"}},video:{tpl:'',format:"",autoStart:!0},defaultType:"image",animationEffect:"zoom",animationDuration:366,zoomOpacity:"auto",transitionEffect:"fade",transitionDuration:366,slideClass:"",baseClass:"",baseTpl:'',spinnerTpl:'
',errorTpl:'

{{ERROR}}

',btnTpl:{download:'',zoom:'',close:'',arrowLeft:'',arrowRight:'',smallBtn:''},parentEl:"body",hideScrollbar:!0,autoFocus:!0,backFocus:!0,trapFocus:!0,fullScreen:{autoStart:!1},touch:{vertical:!0,momentum:!0},hash:null,media:{},slideShow:{autoStart:!1,speed:3e3},thumbs:{autoStart:!1,hideOnClose:!0,parentEl:".fancybox-container",axis:"y"},wheel:"auto",onInit:n.noop,beforeLoad:n.noop,afterLoad:n.noop,beforeShow:n.noop,afterShow:n.noop,beforeClose:n.noop,afterClose:n.noop,onActivate:n.noop,onDeactivate:n.noop,clickContent:function(t,e){return"image"===t.type&&"zoom"},clickSlide:"close",clickOutside:"close",dblclickContent:!1,dblclickSlide:!1,dblclickOutside:!1,mobile:{preventCaptionOverlap:!1,idleTime:!1,clickContent:function(t,e){return"image"===t.type&&"toggleControls"},clickSlide:function(t,e){return"image"===t.type?"toggleControls":"close"},dblclickContent:function(t,e){return"image"===t.type&&"zoom"},dblclickSlide:function(t,e){return"image"===t.type&&"zoom"}},lang:"en",i18n:{en:{CLOSE:"Close",NEXT:"Next",PREV:"Previous",ERROR:"The requested content cannot be loaded.
Please try again later.",PLAY_START:"Start slideshow",PLAY_STOP:"Pause slideshow",FULL_SCREEN:"Full screen",THUMBS:"Thumbnails",DOWNLOAD:"Download",SHARE:"Share",ZOOM:"Zoom"},de:{CLOSE:"Schließen",NEXT:"Weiter",PREV:"Zurück",ERROR:"Die angeforderten Daten konnten nicht geladen werden.
Bitte versuchen Sie es später nochmal.",PLAY_START:"Diaschau starten",PLAY_STOP:"Diaschau beenden",FULL_SCREEN:"Vollbild",THUMBS:"Vorschaubilder",DOWNLOAD:"Herunterladen",SHARE:"Teilen",ZOOM:"Vergrößern"}}},s=n(t),r=n(e),c=0,l=function(t){return t&&t.hasOwnProperty&&t instanceof n},d=function(){return t.requestAnimationFrame||t.webkitRequestAnimationFrame||t.mozRequestAnimationFrame||t.oRequestAnimationFrame||function(e){return t.setTimeout(e,1e3/60)}}(),u=function(){return t.cancelAnimationFrame||t.webkitCancelAnimationFrame||t.mozCancelAnimationFrame||t.oCancelAnimationFrame||function(e){t.clearTimeout(e)}}(),f=function(){var t,n=e.createElement("fakeelement"),o={transition:"transitionend",OTransition:"oTransitionEnd",MozTransition:"transitionend",WebkitTransition:"webkitTransitionEnd"};for(t in o)if(void 0!==n.style[t])return o[t];return"transitionend"}(),p=function(t){return t&&t.length&&t[0].offsetHeight},h=function(t,e){var o=n.extend(!0,{},t,e);return n.each(e,function(t,e){n.isArray(e)&&(o[t]=e)}),o},g=function(t){var o,i;return!(!t||t.ownerDocument!==e)&&(n(".fancybox-container").css("pointer-events","none"),o={x:t.getBoundingClientRect().left+t.offsetWidth/2,y:t.getBoundingClientRect().top+t.offsetHeight/2},i=e.elementFromPoint(o.x,o.y)===t,n(".fancybox-container").css("pointer-events",""),i)},b=function(t,e,o){var i=this;i.opts=h({index:o},n.fancybox.defaults),n.isPlainObject(e)&&(i.opts=h(i.opts,e)),n.fancybox.isMobile&&(i.opts=h(i.opts,i.opts.mobile)),i.id=i.opts.id||++c,i.currIndex=parseInt(i.opts.index,10)||0,i.prevIndex=null,i.prevPos=null,i.currPos=0,i.firstRun=!0,i.group=[],i.slides={},i.addContent(t),i.group.length&&i.init()};n.extend(b.prototype,{init:function(){var o,i,a=this,s=a.group[a.currIndex],r=s.opts;r.closeExisting&&n.fancybox.close(!0),n("body").addClass("fancybox-active"),!n.fancybox.getInstance()&&!1!==r.hideScrollbar&&!n.fancybox.isMobile&&e.body.scrollHeight>t.innerHeight&&(n("head").append('"),n("body").addClass("compensate-for-scrollbar")),i="",n.each(r.buttons,function(t,e){i+=r.btnTpl[e]||""}),o=n(a.translate(a,r.baseTpl.replace("{{buttons}}",i).replace("{{arrows}}",r.btnTpl.arrowLeft+r.btnTpl.arrowRight))).attr("id","fancybox-container-"+a.id).addClass(r.baseClass).data("FancyBox",a).appendTo(r.parentEl),a.$refs={container:o},["bg","inner","infobar","toolbar","stage","caption","navigation"].forEach(function(t){a.$refs[t]=o.find(".fancybox-"+t)}),a.trigger("onInit"),a.activate(),a.jumpTo(a.currIndex)},translate:function(t,e){var n=t.opts.i18n[t.opts.lang]||t.opts.i18n.en;return e.replace(/\{\{(\w+)\}\}/g,function(t,e){return void 0===n[e]?t:n[e]})},addContent:function(t){var e,o=this,i=n.makeArray(t);n.each(i,function(t,e){var i,a,s,r,c,l={},d={};n.isPlainObject(e)?(l=e,d=e.opts||e):"object"===n.type(e)&&n(e).length?(i=n(e),d=i.data()||{},d=n.extend(!0,{},d,d.options),d.$orig=i,l.src=o.opts.src||d.src||i.attr("href"),l.type||l.src||(l.type="inline",l.src=e)):l={type:"html",src:e+""},l.opts=n.extend(!0,{},o.opts,d),n.isArray(d.buttons)&&(l.opts.buttons=d.buttons),n.fancybox.isMobile&&l.opts.mobile&&(l.opts=h(l.opts,l.opts.mobile)),a=l.type||l.opts.type,r=l.src||"",!a&&r&&((s=r.match(/\.(mp4|mov|ogv|webm)((\?|#).*)?$/i))?(a="video",l.opts.video.format||(l.opts.video.format="video/"+("ogv"===s[1]?"ogg":s[1]))):r.match(/(^data:image\/[a-z0-9+\/=]*,)|(\.(jp(e|g|eg)|gif|png|bmp|webp|svg|ico)((\?|#).*)?$)/i)?a="image":r.match(/\.(pdf)((\?|#).*)?$/i)?(a="iframe",l=n.extend(!0,l,{contentType:"pdf",opts:{iframe:{preload:!1}}})):"#"===r.charAt(0)&&(a="inline")),a?l.type=a:o.trigger("objectNeedsType",l),l.contentType||(l.contentType=n.inArray(l.type,["html","inline","ajax"])>-1?"html":l.type),l.index=o.group.length,"auto"==l.opts.smallBtn&&(l.opts.smallBtn=n.inArray(l.type,["html","inline","ajax"])>-1),"auto"===l.opts.toolbar&&(l.opts.toolbar=!l.opts.smallBtn),l.$thumb=l.opts.$thumb||null,l.opts.$trigger&&l.index===o.opts.index&&(l.$thumb=l.opts.$trigger.find("img:first"),l.$thumb.length&&(l.opts.$orig=l.opts.$trigger)),l.$thumb&&l.$thumb.length||!l.opts.$orig||(l.$thumb=l.opts.$orig.find("img:first")),l.$thumb&&!l.$thumb.length&&(l.$thumb=null),l.thumb=l.opts.thumb||(l.$thumb?l.$thumb[0].src:null),"function"===n.type(l.opts.caption)&&(l.opts.caption=l.opts.caption.apply(e,[o,l])),"function"===n.type(o.opts.caption)&&(l.opts.caption=o.opts.caption.apply(e,[o,l])),l.opts.caption instanceof n||(l.opts.caption=void 0===l.opts.caption?"":l.opts.caption+""),"ajax"===l.type&&(c=r.split(/\s+/,2),c.length>1&&(l.src=c.shift(),l.opts.filter=c.shift())),l.opts.modal&&(l.opts=n.extend(!0,l.opts,{trapFocus:!0,infobar:0,toolbar:0,smallBtn:0,keyboard:0,slideShow:0,fullScreen:0,thumbs:0,touch:0,clickContent:!1,clickSlide:!1,clickOutside:!1,dblclickContent:!1,dblclickSlide:!1,dblclickOutside:!1})),o.group.push(l)}),Object.keys(o.slides).length&&(o.updateControls(),(e=o.Thumbs)&&e.isActive&&(e.create(),e.focus()))},addEvents:function(){var e=this;e.removeEvents(),e.$refs.container.on("click.fb-close","[data-fancybox-close]",function(t){t.stopPropagation(),t.preventDefault(),e.close(t)}).on("touchstart.fb-prev click.fb-prev","[data-fancybox-prev]",function(t){t.stopPropagation(),t.preventDefault(),e.previous()}).on("touchstart.fb-next click.fb-next","[data-fancybox-next]",function(t){t.stopPropagation(),t.preventDefault(),e.next()}).on("click.fb","[data-fancybox-zoom]",function(t){e[e.isScaledDown()?"scaleToActual":"scaleToFit"]()}),s.on("orientationchange.fb resize.fb",function(t){t&&t.originalEvent&&"resize"===t.originalEvent.type?(e.requestId&&u(e.requestId),e.requestId=d(function(){e.update(t)})):(e.current&&"iframe"===e.current.type&&e.$refs.stage.hide(),setTimeout(function(){e.$refs.stage.show(),e.update(t)},n.fancybox.isMobile?600:250))}),r.on("keydown.fb",function(t){var o=n.fancybox?n.fancybox.getInstance():null,i=o.current,a=t.keyCode||t.which;if(9==a)return void(i.opts.trapFocus&&e.focus(t));if(!(!i.opts.keyboard||t.ctrlKey||t.altKey||t.shiftKey||n(t.target).is("input,textarea,video,audio,select")))return 8===a||27===a?(t.preventDefault(),void e.close(t)):37===a||38===a?(t.preventDefault(),void e.previous()):39===a||40===a?(t.preventDefault(),void e.next()):void e.trigger("afterKeydown",t,a)}),e.group[e.currIndex].opts.idleTime&&(e.idleSecondsCounter=0,r.on("mousemove.fb-idle mouseleave.fb-idle mousedown.fb-idle touchstart.fb-idle touchmove.fb-idle scroll.fb-idle keydown.fb-idle",function(t){e.idleSecondsCounter=0,e.isIdle&&e.showControls(),e.isIdle=!1}),e.idleInterval=t.setInterval(function(){++e.idleSecondsCounter>=e.group[e.currIndex].opts.idleTime&&!e.isDragging&&(e.isIdle=!0,e.idleSecondsCounter=0,e.hideControls())},1e3))},removeEvents:function(){var e=this;s.off("orientationchange.fb resize.fb"),r.off("keydown.fb .fb-idle"),this.$refs.container.off(".fb-close .fb-prev .fb-next"),e.idleInterval&&(t.clearInterval(e.idleInterval),e.idleInterval=null)},previous:function(t){return this.jumpTo(this.currPos-1,t)},next:function(t){return this.jumpTo(this.currPos+1,t)},jumpTo:function(t,e){var o,i,a,s,r,c,l,d,u,f=this,h=f.group.length;if(!(f.isDragging||f.isClosing||f.isAnimating&&f.firstRun)){if(t=parseInt(t,10),!(a=f.current?f.current.opts.loop:f.opts.loop)&&(t<0||t>=h))return!1;if(o=f.firstRun=!Object.keys(f.slides).length,r=f.current,f.prevIndex=f.currIndex,f.prevPos=f.currPos,s=f.createSlide(t),h>1&&((a||s.index0)&&f.createSlide(t-1)),f.current=s,f.currIndex=s.index,f.currPos=s.pos,f.trigger("beforeShow",o),f.updateControls(),s.forcedDuration=void 0,n.isNumeric(e)?s.forcedDuration=e:e=s.opts[o?"animationDuration":"transitionDuration"],e=parseInt(e,10),i=f.isMoved(s),s.$slide.addClass("fancybox-slide--current"),o)return s.opts.animationEffect&&e&&f.$refs.container.css("transition-duration",e+"ms"),f.$refs.container.addClass("fancybox-is-open").trigger("focus"),f.loadSlide(s),void f.preload("image");c=n.fancybox.getTranslate(r.$slide),l=n.fancybox.getTranslate(f.$refs.stage),n.each(f.slides,function(t,e){n.fancybox.stop(e.$slide,!0)}),r.pos!==s.pos&&(r.isComplete=!1),r.$slide.removeClass("fancybox-slide--complete fancybox-slide--current"),i?(u=c.left-(r.pos*c.width+r.pos*r.opts.gutter),n.each(f.slides,function(t,o){o.$slide.removeClass("fancybox-animated").removeClass(function(t,e){return(e.match(/(^|\s)fancybox-fx-\S+/g)||[]).join(" ")});var i=o.pos*c.width+o.pos*o.opts.gutter;n.fancybox.setTranslate(o.$slide,{top:0,left:i-l.left+u}),o.pos!==s.pos&&o.$slide.addClass("fancybox-slide--"+(o.pos>s.pos?"next":"previous")),p(o.$slide),n.fancybox.animate(o.$slide,{top:0,left:(o.pos-s.pos)*c.width+(o.pos-s.pos)*o.opts.gutter},e,function(){o.$slide.css({transform:"",opacity:""}).removeClass("fancybox-slide--next fancybox-slide--previous"),o.pos===f.currPos&&f.complete()})})):e&&s.opts.transitionEffect&&(d="fancybox-animated fancybox-fx-"+s.opts.transitionEffect,r.$slide.addClass("fancybox-slide--"+(r.pos>s.pos?"next":"previous")),n.fancybox.animate(r.$slide,d,e,function(){r.$slide.removeClass(d).removeClass("fancybox-slide--next fancybox-slide--previous")},!1)),s.isLoaded?f.revealContent(s):f.loadSlide(s),f.preload("image")}},createSlide:function(t){var e,o,i=this;return o=t%i.group.length,o=o<0?i.group.length+o:o,!i.slides[t]&&i.group[o]&&(e=n('
').appendTo(i.$refs.stage),i.slides[t]=n.extend(!0,{},i.group[o],{pos:t,$slide:e,isLoaded:!1}),i.updateSlide(i.slides[t])),i.slides[t]},scaleToActual:function(t,e,o){var i,a,s,r,c,l=this,d=l.current,u=d.$content,f=n.fancybox.getTranslate(d.$slide).width,p=n.fancybox.getTranslate(d.$slide).height,h=d.width,g=d.height;l.isAnimating||l.isMoved()||!u||"image"!=d.type||!d.isLoaded||d.hasError||(l.isAnimating=!0,n.fancybox.stop(u),t=void 0===t?.5*f:t,e=void 0===e?.5*p:e,i=n.fancybox.getTranslate(u),i.top-=n.fancybox.getTranslate(d.$slide).top,i.left-=n.fancybox.getTranslate(d.$slide).left,r=h/i.width,c=g/i.height,a=.5*f-.5*h,s=.5*p-.5*g,h>f&&(a=i.left*r-(t*r-t),a>0&&(a=0),ap&&(s=i.top*c-(e*c-e),s>0&&(s=0),se-.5&&(l=e),d>o-.5&&(d=o),"image"===t.type?(u.top=Math.floor(.5*(o-d))+parseFloat(c.css("paddingTop")),u.left=Math.floor(.5*(e-l))+parseFloat(c.css("paddingLeft"))):"video"===t.contentType&&(a=t.opts.width&&t.opts.height?l/d:t.opts.ratio||16/9,d>l/a?d=l/a:l>d*a&&(l=d*a)),u.width=l,u.height=d,u)},update:function(t){var e=this;n.each(e.slides,function(n,o){e.updateSlide(o,t)})},updateSlide:function(t,e){var o=this,i=t&&t.$content,a=t.width||t.opts.width,s=t.height||t.opts.height,r=t.$slide;o.adjustCaption(t),i&&(a||s||"video"===t.contentType)&&!t.hasError&&(n.fancybox.stop(i),n.fancybox.setTranslate(i,o.getFitPos(t)),t.pos===o.currPos&&(o.isAnimating=!1,o.updateCursor())),o.adjustLayout(t),r.length&&(r.trigger("refresh"),t.pos===o.currPos&&o.$refs.toolbar.add(o.$refs.navigation.find(".fancybox-button--arrow_right")).toggleClass("compensate-for-scrollbar",r.get(0).scrollHeight>r.get(0).clientHeight)),o.trigger("onUpdate",t,e)},centerSlide:function(t){var e=this,o=e.current,i=o.$slide;!e.isClosing&&o&&(i.siblings().css({transform:"",opacity:""}),i.parent().children().removeClass("fancybox-slide--previous fancybox-slide--next"),n.fancybox.animate(i,{top:0,left:0,opacity:1},void 0===t?0:t,function(){i.css({transform:"",opacity:""}),o.isComplete||e.complete()},!1))},isMoved:function(t){var e,o,i=t||this.current;return!!i&&(o=n.fancybox.getTranslate(this.$refs.stage),e=n.fancybox.getTranslate(i.$slide),!i.$slide.hasClass("fancybox-animated")&&(Math.abs(e.top-o.top)>.5||Math.abs(e.left-o.left)>.5))},updateCursor:function(t,e){var o,i,a=this,s=a.current,r=a.$refs.container;s&&!a.isClosing&&a.Guestures&&(r.removeClass("fancybox-is-zoomable fancybox-can-zoomIn fancybox-can-zoomOut fancybox-can-swipe fancybox-can-pan"),o=a.canPan(t,e),i=!!o||a.isZoomable(),r.toggleClass("fancybox-is-zoomable",i),n("[data-fancybox-zoom]").prop("disabled",!i),o?r.addClass("fancybox-can-pan"):i&&("zoom"===s.opts.clickContent||n.isFunction(s.opts.clickContent)&&"zoom"==s.opts.clickContent(s))?r.addClass("fancybox-can-zoomIn"):s.opts.touch&&(s.opts.touch.vertical||a.group.length>1)&&"video"!==s.contentType&&r.addClass("fancybox-can-swipe"))},isZoomable:function(){var t,e=this,n=e.current;if(n&&!e.isClosing&&"image"===n.type&&!n.hasError){if(!n.isLoaded)return!0;if((t=e.getFitPos(n))&&(n.width>t.width||n.height>t.height))return!0}return!1},isScaledDown:function(t,e){var o=this,i=!1,a=o.current,s=a.$content;return void 0!==t&&void 0!==e?i=t1.5||Math.abs(a.height-s.height)>1.5)),s},loadSlide:function(t){var e,o,i,a=this;if(!t.isLoading&&!t.isLoaded){if(t.isLoading=!0,!1===a.trigger("beforeLoad",t))return t.isLoading=!1,!1;switch(e=t.type,o=t.$slide,o.off("refresh").trigger("onReset").addClass(t.opts.slideClass),e){case"image":a.setImage(t);break;case"iframe":a.setIframe(t);break;case"html":a.setContent(t,t.src||t.content);break;case"video":a.setContent(t,t.opts.video.tpl.replace(/\{\{src\}\}/gi,t.src).replace("{{format}}",t.opts.videoFormat||t.opts.video.format||"").replace("{{poster}}",t.thumb||""));break;case"inline":n(t.src).length?a.setContent(t,n(t.src)):a.setError(t);break;case"ajax":a.showLoading(t),i=n.ajax(n.extend({},t.opts.ajax.settings,{url:t.src,success:function(e,n){"success"===n&&a.setContent(t,e)},error:function(e,n){e&&"abort"!==n&&a.setError(t)}})),o.one("onReset",function(){i.abort()});break;default:a.setError(t)}return!0}},setImage:function(t){var o,i=this;setTimeout(function(){var e=t.$image;i.isClosing||!t.isLoading||e&&e.length&&e[0].complete||t.hasError||i.showLoading(t)},50),i.checkSrcset(t),t.$content=n('
').addClass("fancybox-is-hidden").appendTo(t.$slide.addClass("fancybox-slide--image")),!1!==t.opts.preload&&t.opts.width&&t.opts.height&&t.thumb&&(t.width=t.opts.width,t.height=t.opts.height,o=e.createElement("img"),o.onerror=function(){n(this).remove(),t.$ghost=null},o.onload=function(){i.afterLoad(t)},t.$ghost=n(o).addClass("fancybox-image").appendTo(t.$content).attr("src",t.thumb)),i.setBigImage(t)},checkSrcset:function(e){var n,o,i,a,s=e.opts.srcset||e.opts.image.srcset;if(s){i=t.devicePixelRatio||1,a=t.innerWidth*i,o=s.split(",").map(function(t){var e={};return t.trim().split(/\s+/).forEach(function(t,n){var o=parseInt(t.substring(0,t.length-1),10);if(0===n)return e.url=t;o&&(e.value=o,e.postfix=t[t.length-1])}),e}),o.sort(function(t,e){return t.value-e.value});for(var r=0;r=a||"x"===c.postfix&&c.value>=i){n=c;break}}!n&&o.length&&(n=o[o.length-1]),n&&(e.src=n.url,e.width&&e.height&&"w"==n.postfix&&(e.height=e.width/e.height*n.value,e.width=n.value),e.opts.srcset=s)}},setBigImage:function(t){var o=this,i=e.createElement("img"),a=n(i);t.$image=a.one("error",function(){o.setError(t)}).one("load",function(){var e;t.$ghost||(o.resolveImageSlideSize(t,this.naturalWidth,this.naturalHeight),o.afterLoad(t)),o.isClosing||(t.opts.srcset&&(e=t.opts.sizes,e&&"auto"!==e||(e=(t.width/t.height>1&&s.width()/s.height()>1?"100":Math.round(t.width/t.height*100))+"vw"),a.attr("sizes",e).attr("srcset",t.opts.srcset)),t.$ghost&&setTimeout(function(){t.$ghost&&!o.isClosing&&t.$ghost.hide()},Math.min(300,Math.max(1e3,t.height/1600))),o.hideLoading(t))}).addClass("fancybox-image").attr("src",t.src).appendTo(t.$content),(i.complete||"complete"==i.readyState)&&a.naturalWidth&&a.naturalHeight?a.trigger("load"):i.error&&a.trigger("error")},resolveImageSlideSize:function(t,e,n){var o=parseInt(t.opts.width,10),i=parseInt(t.opts.height,10);t.width=e,t.height=n,o>0&&(t.width=o,t.height=Math.floor(o*n/e)),i>0&&(t.width=Math.floor(i*e/n),t.height=i)},setIframe:function(t){var e,o=this,i=t.opts.iframe,a=t.$slide;t.$content=n('
').css(i.css).appendTo(a),a.addClass("fancybox-slide--"+t.contentType),t.$iframe=e=n(i.tpl.replace(/\{rnd\}/g,(new Date).getTime())).attr(i.attr).appendTo(t.$content),i.preload?(o.showLoading(t),e.on("load.fb error.fb",function(e){this.isReady=1,t.$slide.trigger("refresh"),o.afterLoad(t)}),a.on("refresh.fb",function(){var n,o,s=t.$content,r=i.css.width,c=i.css.height;if(1===e[0].isReady){try{n=e.contents(),o=n.find("body")}catch(t){}o&&o.length&&o.children().length&&(a.css("overflow","visible"),s.css({width:"100%","max-width":"100%",height:"9999px"}),void 0===r&&(r=Math.ceil(Math.max(o[0].clientWidth,o.outerWidth(!0)))),s.css("width",r||"").css("max-width",""),void 0===c&&(c=Math.ceil(Math.max(o[0].clientHeight,o.outerHeight(!0)))),s.css("height",c||""),a.css("overflow","auto")),s.removeClass("fancybox-is-hidden")}})):o.afterLoad(t),e.attr("src",t.src),a.one("onReset",function(){try{n(this).find("iframe").hide().unbind().attr("src","//about:blank")}catch(t){}n(this).off("refresh.fb").empty(),t.isLoaded=!1,t.isRevealed=!1})},setContent:function(t,e){var o=this;o.isClosing||(o.hideLoading(t),t.$content&&n.fancybox.stop(t.$content),t.$slide.empty(),l(e)&&e.parent().length?((e.hasClass("fancybox-content")||e.parent().hasClass("fancybox-content"))&&e.parents(".fancybox-slide").trigger("onReset"),t.$placeholder=n("
").hide().insertAfter(e),e.css("display","inline-block")):t.hasError||("string"===n.type(e)&&(e=n("
").append(n.trim(e)).contents()),t.opts.filter&&(e=n("
").html(e).find(t.opts.filter))),t.$slide.one("onReset",function(){n(this).find("video,audio").trigger("pause"),t.$placeholder&&(t.$placeholder.after(e.removeClass("fancybox-content").hide()).remove(),t.$placeholder=null),t.$smallBtn&&(t.$smallBtn.remove(),t.$smallBtn=null),t.hasError||(n(this).empty(),t.isLoaded=!1,t.isRevealed=!1)}),n(e).appendTo(t.$slide),n(e).is("video,audio")&&(n(e).addClass("fancybox-video"),n(e).wrap("
"),t.contentType="video",t.opts.width=t.opts.width||n(e).attr("width"),t.opts.height=t.opts.height||n(e).attr("height")),t.$content=t.$slide.children().filter("div,form,main,video,audio,article,.fancybox-content").first(),t.$content.siblings().hide(),t.$content.length||(t.$content=t.$slide.wrapInner("
").children().first()),t.$content.addClass("fancybox-content"),t.$slide.addClass("fancybox-slide--"+t.contentType),o.afterLoad(t))},setError:function(t){t.hasError=!0,t.$slide.trigger("onReset").removeClass("fancybox-slide--"+t.contentType).addClass("fancybox-slide--error"),t.contentType="html",this.setContent(t,this.translate(t,t.opts.errorTpl)),t.pos===this.currPos&&(this.isAnimating=!1)},showLoading:function(t){var e=this;(t=t||e.current)&&!t.$spinner&&(t.$spinner=n(e.translate(e,e.opts.spinnerTpl)).appendTo(t.$slide).hide().fadeIn("fast"))},hideLoading:function(t){var e=this;(t=t||e.current)&&t.$spinner&&(t.$spinner.stop().remove(),delete t.$spinner)},afterLoad:function(t){var e=this;e.isClosing||(t.isLoading=!1,t.isLoaded=!0,e.trigger("afterLoad",t),e.hideLoading(t),!t.opts.smallBtn||t.$smallBtn&&t.$smallBtn.length||(t.$smallBtn=n(e.translate(t,t.opts.btnTpl.smallBtn)).appendTo(t.$content)),t.opts.protect&&t.$content&&!t.hasError&&(t.$content.on("contextmenu.fb",function(t){return 2==t.button&&t.preventDefault(),!0}),"image"===t.type&&n('
').appendTo(t.$content)),e.adjustCaption(t),e.adjustLayout(t),t.pos===e.currPos&&e.updateCursor(),e.revealContent(t))},adjustCaption:function(t){var e,n=this,o=t||n.current,i=o.opts.caption,a=o.opts.preventCaptionOverlap,s=n.$refs.caption,r=!1;s.toggleClass("fancybox-caption--separate",a),a&&i&&i.length&&(o.pos!==n.currPos?(e=s.clone().appendTo(s.parent()),e.children().eq(0).empty().html(i),r=e.outerHeight(!0),e.empty().remove()):n.$caption&&(r=n.$caption.outerHeight(!0)),o.$slide.css("padding-bottom",r||""))},adjustLayout:function(t){var e,n,o,i,a=this,s=t||a.current;s.isLoaded&&!0!==s.opts.disableLayoutFix&&(s.$content.css("margin-bottom",""),s.$content.outerHeight()>s.$slide.height()+.5&&(o=s.$slide[0].style["padding-bottom"],i=s.$slide.css("padding-bottom"),parseFloat(i)>0&&(e=s.$slide[0].scrollHeight,s.$slide.css("padding-bottom",0),Math.abs(e-s.$slide[0].scrollHeight)<1&&(n=i),s.$slide.css("padding-bottom",o))),s.$content.css("margin-bottom",n))},revealContent:function(t){var e,o,i,a,s=this,r=t.$slide,c=!1,l=!1,d=s.isMoved(t),u=t.isRevealed;return t.isRevealed=!0,e=t.opts[s.firstRun?"animationEffect":"transitionEffect"],i=t.opts[s.firstRun?"animationDuration":"transitionDuration"],i=parseInt(void 0===t.forcedDuration?i:t.forcedDuration,10),!d&&t.pos===s.currPos&&i||(e=!1),"zoom"===e&&(t.pos===s.currPos&&i&&"image"===t.type&&!t.hasError&&(l=s.getThumbPos(t))?c=s.getFitPos(t):e="fade"),"zoom"===e?(s.isAnimating=!0,c.scaleX=c.width/l.width,c.scaleY=c.height/l.height,a=t.opts.zoomOpacity,"auto"==a&&(a=Math.abs(t.width/t.height-l.width/l.height)>.1),a&&(l.opacity=.1,c.opacity=1),n.fancybox.setTranslate(t.$content.removeClass("fancybox-is-hidden"),l),p(t.$content),void n.fancybox.animate(t.$content,c,i,function(){s.isAnimating=!1,s.complete()})):(s.updateSlide(t),e?(n.fancybox.stop(r),o="fancybox-slide--"+(t.pos>=s.prevPos?"next":"previous")+" fancybox-animated fancybox-fx-"+e,r.addClass(o).removeClass("fancybox-slide--current"),t.$content.removeClass("fancybox-is-hidden"),p(r),"image"!==t.type&&t.$content.hide().show(0),void n.fancybox.animate(r,"fancybox-slide--current",i,function(){r.removeClass(o).css({transform:"",opacity:""}),t.pos===s.currPos&&s.complete()},!0)):(t.$content.removeClass("fancybox-is-hidden"),u||!d||"image"!==t.type||t.hasError||t.$content.hide().fadeIn("fast"),void(t.pos===s.currPos&&s.complete())))},getThumbPos:function(t){var e,o,i,a,s,r=!1,c=t.$thumb;return!(!c||!g(c[0]))&&(e=n.fancybox.getTranslate(c),o=parseFloat(c.css("border-top-width")||0),i=parseFloat(c.css("border-right-width")||0),a=parseFloat(c.css("border-bottom-width")||0),s=parseFloat(c.css("border-left-width")||0),r={top:e.top+o,left:e.left+s,width:e.width-i-s,height:e.height-o-a,scaleX:1,scaleY:1},e.width>0&&e.height>0&&r)},complete:function(){var t,e=this,o=e.current,i={};!e.isMoved()&&o.isLoaded&&(o.isComplete||(o.isComplete=!0,o.$slide.siblings().trigger("onReset"),e.preload("inline"),p(o.$slide),o.$slide.addClass("fancybox-slide--complete"),n.each(e.slides,function(t,o){o.pos>=e.currPos-1&&o.pos<=e.currPos+1?i[o.pos]=o:o&&(n.fancybox.stop(o.$slide),o.$slide.off().remove())}),e.slides=i),e.isAnimating=!1,e.updateCursor(),e.trigger("afterShow"),o.opts.video.autoStart&&o.$slide.find("video,audio").filter(":visible:first").trigger("play").one("ended",function(){Document.exitFullscreen?Document.exitFullscreen():this.webkitExitFullscreen&&this.webkitExitFullscreen(),e.next()}),o.opts.autoFocus&&"html"===o.contentType&&(t=o.$content.find("input[autofocus]:enabled:visible:first"),t.length?t.trigger("focus"):e.focus(null,!0)),o.$slide.scrollTop(0).scrollLeft(0))},preload:function(t){var e,n,o=this;o.group.length<2||(n=o.slides[o.currPos+1],e=o.slides[o.currPos-1],e&&e.type===t&&o.loadSlide(e),n&&n.type===t&&o.loadSlide(n))},focus:function(t,o){var i,a,s=this,r=["a[href]","area[href]",'input:not([disabled]):not([type="hidden"]):not([aria-hidden])',"select:not([disabled]):not([aria-hidden])","textarea:not([disabled]):not([aria-hidden])","button:not([disabled]):not([aria-hidden])","iframe","object","embed","video","audio","[contenteditable]",'[tabindex]:not([tabindex^="-"])'].join(",");s.isClosing||(i=!t&&s.current&&s.current.isComplete?s.current.$slide.find("*:visible"+(o?":not(.fancybox-close-small)":"")):s.$refs.container.find("*:visible"),i=i.filter(r).filter(function(){return"hidden"!==n(this).css("visibility")&&!n(this).hasClass("disabled")}),i.length?(a=i.index(e.activeElement),t&&t.shiftKey?(a<0||0==a)&&(t.preventDefault(),i.eq(i.length-1).trigger("focus")):(a<0||a==i.length-1)&&(t&&t.preventDefault(),i.eq(0).trigger("focus"))):s.$refs.container.trigger("focus"))},activate:function(){var t=this;n(".fancybox-container").each(function(){var e=n(this).data("FancyBox");e&&e.id!==t.id&&!e.isClosing&&(e.trigger("onDeactivate"),e.removeEvents(),e.isVisible=!1)}),t.isVisible=!0,(t.current||t.isIdle)&&(t.update(),t.updateControls()),t.trigger("onActivate"),t.addEvents()},close:function(t,e){var o,i,a,s,r,c,l,u=this,f=u.current,h=function(){u.cleanUp(t)};return!u.isClosing&&(u.isClosing=!0,!1===u.trigger("beforeClose",t)?(u.isClosing=!1,d(function(){u.update()}),!1):(u.removeEvents(),a=f.$content,o=f.opts.animationEffect,i=n.isNumeric(e)?e:o?f.opts.animationDuration:0,f.$slide.removeClass("fancybox-slide--complete fancybox-slide--next fancybox-slide--previous fancybox-animated"),!0!==t?n.fancybox.stop(f.$slide):o=!1,f.$slide.siblings().trigger("onReset").remove(),i&&u.$refs.container.removeClass("fancybox-is-open").addClass("fancybox-is-closing").css("transition-duration",i+"ms"),u.hideLoading(f),u.hideControls(!0),u.updateCursor(),"zoom"!==o||a&&i&&"image"===f.type&&!u.isMoved()&&!f.hasError&&(l=u.getThumbPos(f))||(o="fade"),"zoom"===o?(n.fancybox.stop(a),s=n.fancybox.getTranslate(a),c={top:s.top,left:s.left,scaleX:s.width/l.width,scaleY:s.height/l.height,width:l.width,height:l.height},r=f.opts.zoomOpacity, + "auto"==r&&(r=Math.abs(f.width/f.height-l.width/l.height)>.1),r&&(l.opacity=0),n.fancybox.setTranslate(a,c),p(a),n.fancybox.animate(a,l,i,h),!0):(o&&i?n.fancybox.animate(f.$slide.addClass("fancybox-slide--previous").removeClass("fancybox-slide--current"),"fancybox-animated fancybox-fx-"+o,i,h):!0===t?setTimeout(h,i):h(),!0)))},cleanUp:function(e){var o,i,a,s=this,r=s.current.opts.$orig;s.current.$slide.trigger("onReset"),s.$refs.container.empty().remove(),s.trigger("afterClose",e),s.current.opts.backFocus&&(r&&r.length&&r.is(":visible")||(r=s.$trigger),r&&r.length&&(i=t.scrollX,a=t.scrollY,r.trigger("focus"),n("html, body").scrollTop(a).scrollLeft(i))),s.current=null,o=n.fancybox.getInstance(),o?o.activate():(n("body").removeClass("fancybox-active compensate-for-scrollbar"),n("#fancybox-style-noscroll").remove())},trigger:function(t,e){var o,i=Array.prototype.slice.call(arguments,1),a=this,s=e&&e.opts?e:a.current;if(s?i.unshift(s):s=a,i.unshift(a),n.isFunction(s.opts[t])&&(o=s.opts[t].apply(s,i)),!1===o)return o;"afterClose"!==t&&a.$refs?a.$refs.container.trigger(t+".fb",i):r.trigger(t+".fb",i)},updateControls:function(){var t=this,o=t.current,i=o.index,a=t.$refs.container,s=t.$refs.caption,r=o.opts.caption;o.$slide.trigger("refresh"),r&&r.length?(t.$caption=s,s.children().eq(0).html(r)):t.$caption=null,t.hasHiddenControls||t.isIdle||t.showControls(),a.find("[data-fancybox-count]").html(t.group.length),a.find("[data-fancybox-index]").html(i+1),a.find("[data-fancybox-prev]").prop("disabled",!o.opts.loop&&i<=0),a.find("[data-fancybox-next]").prop("disabled",!o.opts.loop&&i>=t.group.length-1),"image"===o.type?a.find("[data-fancybox-zoom]").show().end().find("[data-fancybox-download]").attr("href",o.opts.image.src||o.src).show():o.opts.toolbar&&a.find("[data-fancybox-download],[data-fancybox-zoom]").hide(),n(e.activeElement).is(":hidden,[disabled]")&&t.$refs.container.trigger("focus")},hideControls:function(t){var e=this,n=["infobar","toolbar","nav"];!t&&e.current.opts.preventCaptionOverlap||n.push("caption"),this.$refs.container.removeClass(n.map(function(t){return"fancybox-show-"+t}).join(" ")),this.hasHiddenControls=!0},showControls:function(){var t=this,e=t.current?t.current.opts:t.opts,n=t.$refs.container;t.hasHiddenControls=!1,t.idleSecondsCounter=0,n.toggleClass("fancybox-show-toolbar",!(!e.toolbar||!e.buttons)).toggleClass("fancybox-show-infobar",!!(e.infobar&&t.group.length>1)).toggleClass("fancybox-show-caption",!!t.$caption).toggleClass("fancybox-show-nav",!!(e.arrows&&t.group.length>1)).toggleClass("fancybox-is-modal",!!e.modal)},toggleControls:function(){this.hasHiddenControls?this.showControls():this.hideControls()}}),n.fancybox={version:"3.5.7",defaults:a,getInstance:function(t){var e=n('.fancybox-container:not(".fancybox-is-closing"):last').data("FancyBox"),o=Array.prototype.slice.call(arguments,1);return e instanceof b&&("string"===n.type(t)?e[t].apply(e,o):"function"===n.type(t)&&t.apply(e,o),e)},open:function(t,e,n){return new b(t,e,n)},close:function(t){var e=this.getInstance();e&&(e.close(),!0===t&&this.close(t))},destroy:function(){this.close(!0),r.add("body").off("click.fb-start","**")},isMobile:/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent),use3d:function(){var n=e.createElement("div");return t.getComputedStyle&&t.getComputedStyle(n)&&t.getComputedStyle(n).getPropertyValue("transform")&&!(e.documentMode&&e.documentMode<11)}(),getTranslate:function(t){var e;return!(!t||!t.length)&&(e=t[0].getBoundingClientRect(),{top:e.top||0,left:e.left||0,width:e.width,height:e.height,opacity:parseFloat(t.css("opacity"))})},setTranslate:function(t,e){var n="",o={};if(t&&e)return void 0===e.left&&void 0===e.top||(n=(void 0===e.left?t.position().left:e.left)+"px, "+(void 0===e.top?t.position().top:e.top)+"px",n=this.use3d?"translate3d("+n+", 0px)":"translate("+n+")"),void 0!==e.scaleX&&void 0!==e.scaleY?n+=" scale("+e.scaleX+", "+e.scaleY+")":void 0!==e.scaleX&&(n+=" scaleX("+e.scaleX+")"),n.length&&(o.transform=n),void 0!==e.opacity&&(o.opacity=e.opacity),void 0!==e.width&&(o.width=e.width),void 0!==e.height&&(o.height=e.height),t.css(o)},animate:function(t,e,o,i,a){var s,r=this;n.isFunction(o)&&(i=o,o=null),r.stop(t),s=r.getTranslate(t),t.on(f,function(c){(!c||!c.originalEvent||t.is(c.originalEvent.target)&&"z-index"!=c.originalEvent.propertyName)&&(r.stop(t),n.isNumeric(o)&&t.css("transition-duration",""),n.isPlainObject(e)?void 0!==e.scaleX&&void 0!==e.scaleY&&r.setTranslate(t,{top:e.top,left:e.left,width:s.width*e.scaleX,height:s.height*e.scaleY,scaleX:1,scaleY:1}):!0!==a&&t.removeClass(e),n.isFunction(i)&&i(c))}),n.isNumeric(o)&&t.css("transition-duration",o+"ms"),n.isPlainObject(e)?(void 0!==e.scaleX&&void 0!==e.scaleY&&(delete e.width,delete e.height,t.parent().hasClass("fancybox-slide--image")&&t.parent().addClass("fancybox-is-scaling")),n.fancybox.setTranslate(t,e)):t.addClass(e),t.data("timer",setTimeout(function(){t.trigger(f)},o+33))},stop:function(t,e){t&&t.length&&(clearTimeout(t.data("timer")),e&&t.trigger(f),t.off(f).css("transition-duration",""),t.parent().removeClass("fancybox-is-scaling"))}},n.fn.fancybox=function(t){var e;return t=t||{},e=t.selector||!1,e?n("body").off("click.fb-start",e).on("click.fb-start",e,{options:t},i):this.off("click.fb-start").on("click.fb-start",{items:this,options:t},i),this},r.on("click.fb-start","[data-fancybox]",i),r.on("click.fb-start","[data-fancybox-trigger]",function(t){n('[data-fancybox="'+n(this).attr("data-fancybox-trigger")+'"]').eq(n(this).attr("data-fancybox-index")||0).trigger("click.fb-start",{$trigger:n(this)})}),function(){var t=null;r.on("mousedown mouseup focus blur",".fancybox-button",function(e){switch(e.type){case"mousedown":t=n(this);break;case"mouseup":t=null;break;case"focusin":n(".fancybox-button").removeClass("fancybox-focus"),n(this).is(t)||n(this).is("[disabled]")||n(this).addClass("fancybox-focus");break;case"focusout":n(".fancybox-button").removeClass("fancybox-focus")}})}()}}(window,document,jQuery),function(t){"use strict";var e={youtube:{matcher:/(youtube\.com|youtu\.be|youtube\-nocookie\.com)\/(watch\?(.*&)?v=|v\/|u\/|embed\/?)?(videoseries\?list=(.*)|[\w-]{11}|\?listType=(.*)&list=(.*))(.*)/i,params:{autoplay:1,autohide:1,fs:1,rel:0,hd:1,wmode:"transparent",enablejsapi:1,html5:1},paramPlace:8,type:"iframe",url:"https://www.youtube-nocookie.com/embed/$4",thumb:"https://img.youtube.com/vi/$4/hqdefault.jpg"},vimeo:{matcher:/^.+vimeo.com\/(.*\/)?([\d]+)(.*)?/,params:{autoplay:1,hd:1,show_title:1,show_byline:1,show_portrait:0,fullscreen:1},paramPlace:3,type:"iframe",url:"//player.vimeo.com/video/$2"},instagram:{matcher:/(instagr\.am|instagram\.com)\/p\/([a-zA-Z0-9_\-]+)\/?/i,type:"image",url:"//$1/p/$2/media/?size=l"},gmap_place:{matcher:/(maps\.)?google\.([a-z]{2,3}(\.[a-z]{2})?)\/(((maps\/(place\/(.*)\/)?\@(.*),(\d+.?\d+?)z))|(\?ll=))(.*)?/i,type:"iframe",url:function(t){return"//maps.google."+t[2]+"/?ll="+(t[9]?t[9]+"&z="+Math.floor(t[10])+(t[12]?t[12].replace(/^\//,"&"):""):t[12]+"").replace(/\?/,"&")+"&output="+(t[12]&&t[12].indexOf("layer=c")>0?"svembed":"embed")}},gmap_search:{matcher:/(maps\.)?google\.([a-z]{2,3}(\.[a-z]{2})?)\/(maps\/search\/)(.*)/i,type:"iframe",url:function(t){return"//maps.google."+t[2]+"/maps?q="+t[5].replace("query=","q=").replace("api=1","")+"&output=embed"}}},n=function(e,n,o){if(e)return o=o||"","object"===t.type(o)&&(o=t.param(o,!0)),t.each(n,function(t,n){e=e.replace("$"+t,n||"")}),o.length&&(e+=(e.indexOf("?")>0?"&":"?")+o),e};t(document).on("objectNeedsType.fb",function(o,i,a){var s,r,c,l,d,u,f,p=a.src||"",h=!1;s=t.extend(!0,{},e,a.opts.media),t.each(s,function(e,o){if(c=p.match(o.matcher)){if(h=o.type,f=e,u={},o.paramPlace&&c[o.paramPlace]){d=c[o.paramPlace],"?"==d[0]&&(d=d.substring(1)),d=d.split("&");for(var i=0;i1&&("youtube"===n.contentSource||"vimeo"===n.contentSource)&&o.load(n.contentSource)}})}(jQuery),function(t,e,n){"use strict";var o=function(){return t.requestAnimationFrame||t.webkitRequestAnimationFrame||t.mozRequestAnimationFrame||t.oRequestAnimationFrame||function(e){return t.setTimeout(e,1e3/60)}}(),i=function(){return t.cancelAnimationFrame||t.webkitCancelAnimationFrame||t.mozCancelAnimationFrame||t.oCancelAnimationFrame||function(e){t.clearTimeout(e)}}(),a=function(e){var n=[];e=e.originalEvent||e||t.e,e=e.touches&&e.touches.length?e.touches:e.changedTouches&&e.changedTouches.length?e.changedTouches:[e];for(var o in e)e[o].pageX?n.push({x:e[o].pageX,y:e[o].pageY}):e[o].clientX&&n.push({x:e[o].clientX,y:e[o].clientY});return n},s=function(t,e,n){return e&&t?"x"===n?t.x-e.x:"y"===n?t.y-e.y:Math.sqrt(Math.pow(t.x-e.x,2)+Math.pow(t.y-e.y,2)):0},r=function(t){if(t.is('a,area,button,[role="button"],input,label,select,summary,textarea,video,audio,iframe')||n.isFunction(t.get(0).onclick)||t.data("selectable"))return!0;for(var e=0,o=t[0].attributes,i=o.length;ee.clientHeight,a=("scroll"===o||"auto"===o)&&e.scrollWidth>e.clientWidth;return i||a},l=function(t){for(var e=!1;;){if(e=c(t.get(0)))break;if(t=t.parent(),!t.length||t.hasClass("fancybox-stage")||t.is("body"))break}return e},d=function(t){var e=this;e.instance=t,e.$bg=t.$refs.bg,e.$stage=t.$refs.stage,e.$container=t.$refs.container,e.destroy(),e.$container.on("touchstart.fb.touch mousedown.fb.touch",n.proxy(e,"ontouchstart"))};d.prototype.destroy=function(){var t=this;t.$container.off(".fb.touch"),n(e).off(".fb.touch"),t.requestId&&(i(t.requestId),t.requestId=null),t.tapped&&(clearTimeout(t.tapped),t.tapped=null)},d.prototype.ontouchstart=function(o){var i=this,c=n(o.target),d=i.instance,u=d.current,f=u.$slide,p=u.$content,h="touchstart"==o.type;if(h&&i.$container.off("mousedown.fb.touch"),(!o.originalEvent||2!=o.originalEvent.button)&&f.length&&c.length&&!r(c)&&!r(c.parent())&&(c.is("img")||!(o.originalEvent.clientX>c[0].clientWidth+c.offset().left))){if(!u||d.isAnimating||u.$slide.hasClass("fancybox-animated"))return o.stopPropagation(),void o.preventDefault();i.realPoints=i.startPoints=a(o),i.startPoints.length&&(u.touch&&o.stopPropagation(),i.startEvent=o,i.canTap=!0,i.$target=c,i.$content=p,i.opts=u.opts.touch,i.isPanning=!1,i.isSwiping=!1,i.isZooming=!1,i.isScrolling=!1,i.canPan=d.canPan(),i.startTime=(new Date).getTime(),i.distanceX=i.distanceY=i.distance=0,i.canvasWidth=Math.round(f[0].clientWidth),i.canvasHeight=Math.round(f[0].clientHeight),i.contentLastPos=null,i.contentStartPos=n.fancybox.getTranslate(i.$content)||{top:0,left:0},i.sliderStartPos=n.fancybox.getTranslate(f),i.stagePos=n.fancybox.getTranslate(d.$refs.stage),i.sliderStartPos.top-=i.stagePos.top,i.sliderStartPos.left-=i.stagePos.left,i.contentStartPos.top-=i.stagePos.top,i.contentStartPos.left-=i.stagePos.left,n(e).off(".fb.touch").on(h?"touchend.fb.touch touchcancel.fb.touch":"mouseup.fb.touch mouseleave.fb.touch",n.proxy(i,"ontouchend")).on(h?"touchmove.fb.touch":"mousemove.fb.touch",n.proxy(i,"ontouchmove")),n.fancybox.isMobile&&e.addEventListener("scroll",i.onscroll,!0),((i.opts||i.canPan)&&(c.is(i.$stage)||i.$stage.find(c).length)||(c.is(".fancybox-image")&&o.preventDefault(),n.fancybox.isMobile&&c.parents(".fancybox-caption").length))&&(i.isScrollable=l(c)||l(c.parent()),n.fancybox.isMobile&&i.isScrollable||o.preventDefault(),(1===i.startPoints.length||u.hasError)&&(i.canPan?(n.fancybox.stop(i.$content),i.isPanning=!0):i.isSwiping=!0,i.$container.addClass("fancybox-is-grabbing")),2===i.startPoints.length&&"image"===u.type&&(u.isLoaded||u.$ghost)&&(i.canTap=!1,i.isSwiping=!1,i.isPanning=!1,i.isZooming=!0,n.fancybox.stop(i.$content),i.centerPointStartX=.5*(i.startPoints[0].x+i.startPoints[1].x)-n(t).scrollLeft(),i.centerPointStartY=.5*(i.startPoints[0].y+i.startPoints[1].y)-n(t).scrollTop(),i.percentageOfImageAtPinchPointX=(i.centerPointStartX-i.contentStartPos.left)/i.contentStartPos.width,i.percentageOfImageAtPinchPointY=(i.centerPointStartY-i.contentStartPos.top)/i.contentStartPos.height,i.startDistanceBetweenFingers=s(i.startPoints[0],i.startPoints[1]))))}},d.prototype.onscroll=function(t){var n=this;n.isScrolling=!0,e.removeEventListener("scroll",n.onscroll,!0)},d.prototype.ontouchmove=function(t){var e=this;return void 0!==t.originalEvent.buttons&&0===t.originalEvent.buttons?void e.ontouchend(t):e.isScrolling?void(e.canTap=!1):(e.newPoints=a(t),void((e.opts||e.canPan)&&e.newPoints.length&&e.newPoints.length&&(e.isSwiping&&!0===e.isSwiping||t.preventDefault(),e.distanceX=s(e.newPoints[0],e.startPoints[0],"x"),e.distanceY=s(e.newPoints[0],e.startPoints[0],"y"),e.distance=s(e.newPoints[0],e.startPoints[0]),e.distance>0&&(e.isSwiping?e.onSwipe(t):e.isPanning?e.onPan():e.isZooming&&e.onZoom()))))},d.prototype.onSwipe=function(e){var a,s=this,r=s.instance,c=s.isSwiping,l=s.sliderStartPos.left||0;if(!0!==c)"x"==c&&(s.distanceX>0&&(s.instance.group.length<2||0===s.instance.current.index&&!s.instance.current.opts.loop)?l+=Math.pow(s.distanceX,.8):s.distanceX<0&&(s.instance.group.length<2||s.instance.current.index===s.instance.group.length-1&&!s.instance.current.opts.loop)?l-=Math.pow(-s.distanceX,.8):l+=s.distanceX),s.sliderLastPos={top:"x"==c?0:s.sliderStartPos.top+s.distanceY,left:l},s.requestId&&(i(s.requestId),s.requestId=null),s.requestId=o(function(){s.sliderLastPos&&(n.each(s.instance.slides,function(t,e){var o=e.pos-s.instance.currPos;n.fancybox.setTranslate(e.$slide,{top:s.sliderLastPos.top,left:s.sliderLastPos.left+o*s.canvasWidth+o*e.opts.gutter})}),s.$container.addClass("fancybox-is-sliding"))});else if(Math.abs(s.distance)>10){if(s.canTap=!1,r.group.length<2&&s.opts.vertical?s.isSwiping="y":r.isDragging||!1===s.opts.vertical||"auto"===s.opts.vertical&&n(t).width()>800?s.isSwiping="x":(a=Math.abs(180*Math.atan2(s.distanceY,s.distanceX)/Math.PI),s.isSwiping=a>45&&a<135?"y":"x"),"y"===s.isSwiping&&n.fancybox.isMobile&&s.isScrollable)return void(s.isScrolling=!0);r.isDragging=s.isSwiping,s.startPoints=s.newPoints,n.each(r.slides,function(t,e){var o,i;n.fancybox.stop(e.$slide),o=n.fancybox.getTranslate(e.$slide),i=n.fancybox.getTranslate(r.$refs.stage),e.$slide.css({transform:"",opacity:"","transition-duration":""}).removeClass("fancybox-animated").removeClass(function(t,e){return(e.match(/(^|\s)fancybox-fx-\S+/g)||[]).join(" ")}),e.pos===r.current.pos&&(s.sliderStartPos.top=o.top-i.top,s.sliderStartPos.left=o.left-i.left),n.fancybox.setTranslate(e.$slide,{top:o.top-i.top,left:o.left-i.left})}),r.SlideShow&&r.SlideShow.isActive&&r.SlideShow.stop()}},d.prototype.onPan=function(){var t=this;if(s(t.newPoints[0],t.realPoints[0])<(n.fancybox.isMobile?10:5))return void(t.startPoints=t.newPoints);t.canTap=!1,t.contentLastPos=t.limitMovement(),t.requestId&&i(t.requestId),t.requestId=o(function(){n.fancybox.setTranslate(t.$content,t.contentLastPos)})},d.prototype.limitMovement=function(){var t,e,n,o,i,a,s=this,r=s.canvasWidth,c=s.canvasHeight,l=s.distanceX,d=s.distanceY,u=s.contentStartPos,f=u.left,p=u.top,h=u.width,g=u.height;return i=h>r?f+l:f,a=p+d,t=Math.max(0,.5*r-.5*h),e=Math.max(0,.5*c-.5*g),n=Math.min(r-h,.5*r-.5*h),o=Math.min(c-g,.5*c-.5*g),l>0&&i>t&&(i=t-1+Math.pow(-t+f+l,.8)||0),l<0&&i0&&a>e&&(a=e-1+Math.pow(-e+p+d,.8)||0),d<0&&aa?(t=t>0?0:t,t=ts?(e=e>0?0:e,e=e1&&(o.dMs>130&&s>10||s>50);o.sliderLastPos=null,"y"==t&&!e&&Math.abs(o.distanceY)>50?(n.fancybox.animate(o.instance.current.$slide,{top:o.sliderStartPos.top+o.distanceY+150*o.velocityY,opacity:0},200),i=o.instance.close(!0,250)):r&&o.distanceX>0?i=o.instance.previous(300):r&&o.distanceX<0&&(i=o.instance.next(300)),!1!==i||"x"!=t&&"y"!=t||o.instance.centerSlide(200),o.$container.removeClass("fancybox-is-sliding")},d.prototype.endPanning=function(){var t,e,o,i=this;i.contentLastPos&&(!1===i.opts.momentum||i.dMs>350?(t=i.contentLastPos.left,e=i.contentLastPos.top):(t=i.contentLastPos.left+500*i.velocityX,e=i.contentLastPos.top+500*i.velocityY),o=i.limitPosition(t,e,i.contentStartPos.width,i.contentStartPos.height),o.width=i.contentStartPos.width,o.height=i.contentStartPos.height,n.fancybox.animate(i.$content,o,366))},d.prototype.endZooming=function(){var t,e,o,i,a=this,s=a.instance.current,r=a.newWidth,c=a.newHeight;a.contentLastPos&&(t=a.contentLastPos.left,e=a.contentLastPos.top,i={top:e,left:t,width:r,height:c,scaleX:1,scaleY:1},n.fancybox.setTranslate(a.$content,i),rs.width||c>s.height?a.instance.scaleToActual(a.centerPointStartX,a.centerPointStartY,150):(o=a.limitPosition(t,e,r,c),n.fancybox.animate(a.$content,o,150)))},d.prototype.onTap=function(e){var o,i=this,s=n(e.target),r=i.instance,c=r.current,l=e&&a(e)||i.startPoints,d=l[0]?l[0].x-n(t).scrollLeft()-i.stagePos.left:0,u=l[0]?l[0].y-n(t).scrollTop()-i.stagePos.top:0,f=function(t){var o=c.opts[t];if(n.isFunction(o)&&(o=o.apply(r,[c,e])),o)switch(o){case"close":r.close(i.startEvent);break;case"toggleControls":r.toggleControls();break;case"next":r.next();break;case"nextOrClose":r.group.length>1?r.next():r.close(i.startEvent);break;case"zoom":"image"==c.type&&(c.isLoaded||c.$ghost)&&(r.canPan()?r.scaleToFit():r.isScaledDown()?r.scaleToActual(d,u):r.group.length<2&&r.close(i.startEvent))}};if((!e.originalEvent||2!=e.originalEvent.button)&&(s.is("img")||!(d>s[0].clientWidth+s.offset().left))){if(s.is(".fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-container"))o="Outside";else if(s.is(".fancybox-slide"))o="Slide";else{if(!r.current.$content||!r.current.$content.find(s).addBack().filter(s).length)return;o="Content"}if(i.tapped){if(clearTimeout(i.tapped),i.tapped=null,Math.abs(d-i.tapX)>50||Math.abs(u-i.tapY)>50)return this;f("dblclick"+o)}else i.tapX=d,i.tapY=u,c.opts["dblclick"+o]&&c.opts["dblclick"+o]!==c.opts["click"+o]?i.tapped=setTimeout(function(){i.tapped=null,r.isAnimating||f("click"+o)},500):f("click"+o);return this}},n(e).on("onActivate.fb",function(t,e){e&&!e.Guestures&&(e.Guestures=new d(e))}).on("beforeClose.fb",function(t,e){e&&e.Guestures&&e.Guestures.destroy()})}(window,document,jQuery),function(t,e){"use strict";e.extend(!0,e.fancybox.defaults,{btnTpl:{slideShow:''},slideShow:{autoStart:!1,speed:3e3,progress:!0}});var n=function(t){this.instance=t,this.init()};e.extend(n.prototype,{timer:null,isActive:!1,$button:null,init:function(){var t=this,n=t.instance,o=n.group[n.currIndex].opts.slideShow;t.$button=n.$refs.toolbar.find("[data-fancybox-play]").on("click",function(){t.toggle()}),n.group.length<2||!o?t.$button.hide():o.progress&&(t.$progress=e('
').appendTo(n.$refs.inner))},set:function(t){var n=this,o=n.instance,i=o.current;i&&(!0===t||i.opts.loop||o.currIndex'},fullScreen:{autoStart:!1}}),e(t).on(n.fullscreenchange,function(){var t=o.isFullscreen(),n=e.fancybox.getInstance();n&&(n.current&&"image"===n.current.type&&n.isAnimating&&(n.isAnimating=!1,n.update(!0,!0,0),n.isComplete||n.complete()),n.trigger("onFullscreenChange",t),n.$refs.container.toggleClass("fancybox-is-fullscreen",t),n.$refs.toolbar.find("[data-fancybox-fullscreen]").toggleClass("fancybox-button--fsenter",!t).toggleClass("fancybox-button--fsexit",t))})}e(t).on({"onInit.fb":function(t,e){var i;if(!n)return void e.$refs.toolbar.find("[data-fancybox-fullscreen]").remove();e&&e.group[e.currIndex].opts.fullScreen?(i=e.$refs.container,i.on("click.fb-fullscreen","[data-fancybox-fullscreen]",function(t){t.stopPropagation(),t.preventDefault(),o.toggle()}),e.opts.fullScreen&&!0===e.opts.fullScreen.autoStart&&o.request(),e.FullScreen=o):e&&e.$refs.toolbar.find("[data-fancybox-fullscreen]").hide()},"afterKeydown.fb":function(t,e,n,o,i){e&&e.FullScreen&&70===i&&(o.preventDefault(),e.FullScreen.toggle())},"beforeClose.fb":function(t,e){e&&e.FullScreen&&e.$refs.container.hasClass("fancybox-is-fullscreen")&&o.exit()}})}(document,jQuery),function(t,e){"use strict";var n="fancybox-thumbs";e.fancybox.defaults=e.extend(!0,{btnTpl:{thumbs:''},thumbs:{autoStart:!1,hideOnClose:!0,parentEl:".fancybox-container",axis:"y"}},e.fancybox.defaults);var o=function(t){this.init(t)};e.extend(o.prototype,{$button:null,$grid:null,$list:null,isVisible:!1,isActive:!1,init:function(t){var e=this,n=t.group,o=0;e.instance=t,e.opts=n[t.currIndex].opts.thumbs,t.Thumbs=e,e.$button=t.$refs.toolbar.find("[data-fancybox-thumbs]");for(var i=0,a=n.length;i1));i++);o>1&&e.opts?(e.$button.removeAttr("style").on("click",function(){e.toggle()}),e.isActive=!0):e.$button.hide()},create:function(){var t,o=this,i=o.instance,a=o.opts.parentEl,s=[];o.$grid||(o.$grid=e('
').appendTo(i.$refs.container.find(a).addBack().filter(a)),o.$grid.on("click","a",function(){i.jumpTo(e(this).attr("data-index"))})),o.$list||(o.$list=e('
').appendTo(o.$grid)),e.each(i.group,function(e,n){t=n.thumb,t||"image"!==n.type||(t=n.src),s.push('")}),o.$list[0].innerHTML=s.join(""),"x"===o.opts.axis&&o.$list.width(parseInt(o.$grid.css("padding-right"),10)+i.group.length*o.$list.children().eq(0).outerWidth(!0))},focus:function(t){var e,n,o=this,i=o.$list,a=o.$grid;o.instance.current&&(e=i.children().removeClass("fancybox-thumbs-active").filter('[data-index="'+o.instance.current.index+'"]').addClass("fancybox-thumbs-active"),n=e.position(),"y"===o.opts.axis&&(n.top<0||n.top>i.height()-e.outerHeight())?i.stop().animate({scrollTop:i.scrollTop()+n.top},t):"x"===o.opts.axis&&(n.lefta.scrollLeft()+(a.width()-e.outerWidth()))&&i.parent().stop().animate({scrollLeft:n.left},t))},update:function(){var t=this;t.instance.$refs.container.toggleClass("fancybox-show-thumbs",this.isVisible),t.isVisible?(t.$grid||t.create(),t.instance.trigger("onThumbsShow"),t.focus(0)):t.$grid&&t.instance.trigger("onThumbsHide"),t.instance.update()},hide:function(){this.isVisible=!1,this.update()},show:function(){this.isVisible=!0,this.update()},toggle:function(){this.isVisible=!this.isVisible,this.update()}}),e(t).on({"onInit.fb":function(t,e){var n;e&&!e.Thumbs&&(n=new o(e),n.isActive&&!0===n.opts.autoStart&&n.show())},"beforeShow.fb":function(t,e,n,o){var i=e&&e.Thumbs;i&&i.isVisible&&i.focus(o?0:250)},"afterKeydown.fb":function(t,e,n,o,i){var a=e&&e.Thumbs;a&&a.isActive&&71===i&&(o.preventDefault(),a.toggle())},"beforeClose.fb":function(t,e){var n=e&&e.Thumbs;n&&n.isVisible&&!1!==n.opts.hideOnClose&&n.$grid.hide()}})}(document,jQuery),function(t,e){"use strict";function n(t){var e={"&":"&","<":"<",">":">",'"':""","'":"'","/":"/","`":"`","=":"="};return String(t).replace(/[&<>"'`=\/]/g,function(t){return e[t]})}e.extend(!0,e.fancybox.defaults,{btnTpl:{share:''},share:{url:function(t,e){return!t.currentHash&&"inline"!==e.type&&"html"!==e.type&&(e.origSrc||e.src)||window.location}, + tpl:''}}),e(t).on("click","[data-fancybox-share]",function(){var t,o,i=e.fancybox.getInstance(),a=i.current||null;a&&("function"===e.type(a.opts.share.url)&&(t=a.opts.share.url.apply(a,[i,a])),o=a.opts.share.tpl.replace(/\{\{media\}\}/g,"image"===a.type?encodeURIComponent(a.src):"").replace(/\{\{url\}\}/g,encodeURIComponent(t)).replace(/\{\{url_raw\}\}/g,n(t)).replace(/\{\{descr\}\}/g,i.$caption?encodeURIComponent(i.$caption.text()):""),e.fancybox.open({src:i.translate(i,o),type:"html",opts:{touch:!1,animationEffect:!1,afterLoad:function(t,e){i.$refs.container.one("beforeClose.fb",function(){t.close(null,0)}),e.$content.find(".fancybox-share__button").click(function(){return window.open(this.href,"Share","width=550, height=450"),!1})},mobile:{autoFocus:!1}}}))})}(document,jQuery),function(t,e,n){"use strict";function o(){var e=t.location.hash.substr(1),n=e.split("-"),o=n.length>1&&/^\+?\d+$/.test(n[n.length-1])?parseInt(n.pop(-1),10)||1:1,i=n.join("-");return{hash:e,index:o<1?1:o,gallery:i}}function i(t){""!==t.gallery&&n("[data-fancybox='"+n.escapeSelector(t.gallery)+"']").eq(t.index-1).focus().trigger("click.fb-start")}function a(t){var e,n;return!!t&&(e=t.current?t.current.opts:t.opts,""!==(n=e.hash||(e.$orig?e.$orig.data("fancybox")||e.$orig.data("fancybox-trigger"):""))&&n)}n.escapeSelector||(n.escapeSelector=function(t){return(t+"").replace(/([\0-\x1f\x7f]|^-?\d)|^-$|[^\x80-\uFFFF\w-]/g,function(t,e){return e?"\0"===t?"�":t.slice(0,-1)+"\\"+t.charCodeAt(t.length-1).toString(16)+" ":"\\"+t})}),n(function(){!1!==n.fancybox.defaults.hash&&(n(e).on({"onInit.fb":function(t,e){var n,i;!1!==e.group[e.currIndex].opts.hash&&(n=o(),(i=a(e))&&n.gallery&&i==n.gallery&&(e.currIndex=n.index-1))},"beforeShow.fb":function(n,o,i,s){var r;i&&!1!==i.opts.hash&&(r=a(o))&&(o.currentHash=r+(o.group.length>1?"-"+(i.index+1):""),t.location.hash!=="#"+o.currentHash&&(s&&!o.origHash&&(o.origHash=t.location.hash),o.hashTimer&&clearTimeout(o.hashTimer),o.hashTimer=setTimeout(function(){"replaceState"in t.history?(t.history[s?"pushState":"replaceState"]({},e.title,t.location.pathname+t.location.search+"#"+o.currentHash),s&&(o.hasCreatedHistory=!0)):t.location.hash=o.currentHash,o.hashTimer=null},300)))},"beforeClose.fb":function(n,o,i){i&&!1!==i.opts.hash&&(clearTimeout(o.hashTimer),o.currentHash&&o.hasCreatedHistory?t.history.back():o.currentHash&&("replaceState"in t.history?t.history.replaceState({},e.title,t.location.pathname+t.location.search+(o.origHash||"")):t.location.hash=o.origHash),o.currentHash=null)}}),n(t).on("hashchange.fb",function(){var t=o(),e=null;n.each(n(".fancybox-container").get().reverse(),function(t,o){var i=n(o).data("FancyBox");if(i&&i.currentHash)return e=i,!1}),e?e.currentHash===t.gallery+"-"+t.index||1===t.index&&e.currentHash==t.gallery||(e.currentHash=null,e.close()):""!==t.gallery&&i(t)}),setTimeout(function(){n.fancybox.getInstance()||i(o())},50))})}(window,document,jQuery),function(t,e){"use strict";var n=(new Date).getTime();e(t).on({"onInit.fb":function(t,e,o){e.$refs.stage.on("mousewheel DOMMouseScroll wheel MozMousePixelScroll",function(t){var o=e.current,i=(new Date).getTime();e.group.length<2||!1===o.opts.wheel||"auto"===o.opts.wheel&&"image"!==o.type||(t.preventDefault(),t.stopPropagation(),o.$slide.hasClass("fancybox-animated")||(t=t.originalEvent||t,i-n<250||(n=i,e[(-t.deltaY||-t.deltaX||t.wheelDelta||-t.detail)<0?"next":"previous"]())))})}})}(document,jQuery); diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/jquery.mixitup.min.js b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/jquery.mixitup.min.js new file mode 100644 index 0000000..afe9822 --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/jquery.mixitup.min.js @@ -0,0 +1,14 @@ +/**! + * MixItUp v2.1.11 + * + * @copyright Copyright 2015 KunkaLabs Limited. + * @author KunkaLabs Limited. + * @link https://mixitup.kunkalabs.com + * + * @license Commercial use requires a commercial license. + * https://mixitup.kunkalabs.com/licenses/ + * + * Non-commercial use permitted under terms of CC-BY-NC license. + * http://creativecommons.org/licenses/by-nc/3.0/ + */ +!function(a,b){"use strict";a.MixItUp=function(){var b=this;b._execAction("_constructor",0),a.extend(b,{selectors:{target:".mix",filter:".filter",sort:".sort"},animation:{enable:!0,effects:"fade scale",duration:600,easing:"ease",perspectiveDistance:"3000",perspectiveOrigin:"50% 50%",queue:!0,queueLimit:1,animateChangeLayout:!1,animateResizeContainer:!0,animateResizeTargets:!1,staggerSequence:!1,reverseOut:!1},callbacks:{onMixLoad:!1,onMixStart:!1,onMixBusy:!1,onMixEnd:!1,onMixFail:!1,_user:!1},controls:{enable:!0,live:!1,toggleFilterButtons:!1,toggleLogic:"or",activeClass:"active"},layout:{display:"inline-block",containerClass:"",containerClassFail:"fail"},load:{filter:"all",sort:!1},_$body:null,_$container:null,_$targets:null,_$parent:null,_$sortButtons:null,_$filterButtons:null,_suckMode:!1,_mixing:!1,_sorting:!1,_clicking:!1,_loading:!0,_changingLayout:!1,_changingClass:!1,_changingDisplay:!1,_origOrder:[],_startOrder:[],_newOrder:[],_activeFilter:null,_toggleArray:[],_toggleString:"",_activeSort:"default:asc",_newSort:null,_startHeight:null,_newHeight:null,_incPadding:!0,_newDisplay:null,_newClass:null,_targetsBound:0,_targetsDone:0,_queue:[],_$show:a(),_$hide:a()}),b._execAction("_constructor",1)},a.MixItUp.prototype={constructor:a.MixItUp,_instances:{},_handled:{_filter:{},_sort:{}},_bound:{_filter:{},_sort:{}},_actions:{},_filters:{},extend:function(b){for(var c in b)a.MixItUp.prototype[c]=b[c]},addAction:function(b,c,d,e){a.MixItUp.prototype._addHook("_actions",b,c,d,e)},addFilter:function(b,c,d,e){a.MixItUp.prototype._addHook("_filters",b,c,d,e)},_addHook:function(b,c,d,e,f){var g=a.MixItUp.prototype[b],h={};f=1===f||"post"===f?"post":"pre",h[c]={},h[c][f]={},h[c][f][d]=e,a.extend(!0,g,h)},_init:function(b,c){var d=this;if(d._execAction("_init",0,arguments),c&&a.extend(!0,d,c),d._$body=a("body"),d._domNode=b,d._$container=a(b),d._$container.addClass(d.layout.containerClass),d._id=b.id,d._platformDetect(),d._brake=d._getPrefixedCSS("transition","none"),d._refresh(!0),d._$parent=d._$targets.parent().length?d._$targets.parent():d._$container,d.load.sort&&(d._newSort=d._parseSort(d.load.sort),d._newSortString=d.load.sort,d._activeSort=d.load.sort,d._sort(),d._printSort()),d._activeFilter="all"===d.load.filter?d.selectors.target:"none"===d.load.filter?"":d.load.filter,d.controls.enable&&d._bindHandlers(),d.controls.toggleFilterButtons){d._buildToggleArray();for(var e=0;e-1){var k=d._helpers._camelCase(i.substring(5,i.length));f.dataset[k]=j}}}f.mixParent===b&&(f.mixParent=d._id)}if(d._$targets.length&&a||!d._origOrder.length&&d._$targets.length){d._origOrder=[];for(var e=0;e-1)&&(a(e.selectors.sort).removeClass(e.controls.activeClass),f(c,d),e.sort(g))}if("filter"===d){var h,i=c.attr("data-filter"),j="or"===e.controls.toggleLogic?",":"";e.controls.toggleFilterButtons?(e._buildToggleArray(),c.hasClass(e.controls.activeClass)?(f(c,d,!0),h=e._toggleArray.indexOf(i),e._toggleArray.splice(h,1)):(f(c,d),e._toggleArray.push(i)),e._toggleArray=a.grep(e._toggleArray,function(a){return a}),e._toggleString=e._toggleArray.join(j),e.filter(e._toggleString)):c.hasClass(e.controls.activeClass)||(a(e.selectors.filter).removeClass(e.controls.activeClass),f(c,d),e.filter(i))}e._execAction("_processClick",1,arguments)}else"function"==typeof e.callbacks.onMixBusy&&e.callbacks.onMixBusy.call(e._domNode,e._state,e),e._execAction("_processClickBusy",1,arguments)},_buildToggleArray:function(){var a=this,b=a._activeFilter.replace(/\s/g,"");if(a._execAction("_buildToggleArray",0,arguments),"or"===a.controls.toggleLogic)a._toggleArray=b.split(",");else{a._toggleArray=b.split("."),!a._toggleArray[0]&&a._toggleArray.shift();for(var c,d=0;c=a._toggleArray[d];d++)a._toggleArray[d]="."+c}a._execAction("_buildToggleArray",1,arguments)},_updateControls:function(c,d){var e=this,f={filter:c.filter,sort:c.sort},g=function(a,b){try{d&&"filter"===h&&"none"!==f.filter&&""!==f.filter?a.filter(b).addClass(e.controls.activeClass):a.removeClass(e.controls.activeClass).filter(b).addClass(e.controls.activeClass)}catch(c){}},h="filter",i=null;e._execAction("_updateControls",0,arguments),c.filter===b&&(f.filter=e._activeFilter),c.sort===b&&(f.sort=e._activeSort),f.filter===e.selectors.target&&(f.filter="all");for(var j=0;2>j;j++)i=e.controls.live?a(e.selectors[h]):e["_$"+h+"Buttons"],i&&g(i,"[data-"+h+'="'+f[h]+'"]'),h="sort";e._execAction("_updateControls",1,arguments)},_filter:function(){var b=this;b._execAction("_filter",0);for(var c=0;cg?"asc"===e?-1:1:g>h?"asc"===e?1:-1:g===h&&d._newSort.length>c+1?d._compare(a,b,c+1):0},_printSort:function(a){var b=this,c=a?b._startOrder:b._newOrder,d=b._$parent[0].querySelectorAll(b.selectors.target),e=d.length?d[d.length-1].nextElementSibling:null,f=document.createDocumentFragment();b._execAction("_printSort",0,arguments);for(var g=0;g-1){if(c){var e=a.animation.effects.indexOf(b+"(");if(e>-1){var f=a.animation.effects.substring(e),g=/\(([^)]+)\)/.exec(f),h=g[1];return{val:h}}}return!0}return!1},d=function(a,b){return b?"-"===a.charAt(0)?a.substr(1,a.length):"-"+a:a},e=function(a,e){for(var f=[["scale",".01"],["translateX","20px"],["translateY","20px"],["translateZ","20px"],["rotateX","90deg"],["rotateY","90deg"],["rotateZ","180deg"]],g=0;gi;i++){var j=0===i?j=b._prefix:"";b._ff&&b._ff<=20&&(h[j+"transition-property"]="all",h[j+"transition-timing-function"]=b.animation.easing+"ms",h[j+"transition-duration"]=b.animation.duration+"ms"),h[j+"transition-delay"]=g+"ms",h[j+"transform"]="translate("+f.x+"px,"+f.y+"px)"}(b.effects.transform||b.effects.opacity)&&b._bindTargetDone(e),b._ff&&b._ff<=20?e.css(h):e.css(b.effects.transition).css(h)}for(var c=0;ci;i++){var j=0===i?j=b._prefix:"";k[j+"transition-delay"]=g+"ms",k[j+"transform"]=b.effects.transformOut,k.opacity=b.effects.opacity}e.css(b.effects.transition).css(k),(b.effects.transform||b.effects.opacity)&&b._bindTargetDone(e)}b._execAction("_animateTargets",1)},_bindTargetDone:function(b){var c=this,d=b[0];c._execAction("_bindTargetDone",0,arguments),d.dataset.bound||(d.dataset.bound=!0,c._targetsBound++,b.on("webkitTransitionEnd.mixItUp transitionend.mixItUp",function(e){(e.originalEvent.propertyName.indexOf("transform")>-1||e.originalEvent.propertyName.indexOf("opacity")>-1)&&a(e.originalEvent.target).is(c.selectors.target)&&(b.off(".mixItUp"),d.dataset.bound="",c._targetDone())})),c._execAction("_bindTargetDone",1,arguments)},_targetDone:function(){var a=this;a._execAction("_targetDone",0),a._targetsDone++,a._targetsDone===a._targetsBound&&a._cleanUp(),a._execAction("_targetDone",1)},_cleanUp:function(){var b=this,c=b.animation.animateResizeTargets?"transform opacity width height margin-bottom margin-right":"transform opacity",d=function(){b._$targets.removeStyle("transition",b._prefix)};b._execAction("_cleanUp",0),b._changingLayout?b._$show.css("display",b._newDisplay):b._$show.css("display",b.layout.display),b._$targets.css(b._brake),b._$targets.removeStyle(c,b._prefix).removeAttr("data-inter-pos-x data-inter-pos-y data-final-pos-x data-final-pos-y data-orig-pos-x data-orig-pos-y data-orig-height data-orig-width data-final-height data-final-width data-inter-width data-inter-height data-orig-margin-right data-orig-margin-bottom data-inter-margin-right data-inter-margin-bottom data-final-margin-right data-final-margin-bottom"),b._$hide.removeStyle("display"),b._$parent.removeStyle("height transition perspective-distance perspective perspective-origin-x perspective-origin-y perspective-origin perspectiveOrigin",b._prefix),b._sorting&&(b._printSort(),b._activeSort=b._newSortString,b._sorting=!1),b._changingLayout&&(b._changingDisplay&&(b.layout.display=b._newDisplay,b._changingDisplay=!1),b._changingClass&&(b._$parent.removeClass(b.layout.containerClass).addClass(b._newClass),b.layout.containerClass=b._newClass,b._changingClass=!1),b._changingLayout=!1),b._refresh(),b._buildState(),b._state.fail&&b._$container.addClass(b.layout.containerClassFail),b._$show=a(),b._$hide=a(),window.requestAnimationFrame&&requestAnimationFrame(d),b._mixing=!1,"function"==typeof b.callbacks._user&&b.callbacks._user.call(b._domNode,b._state,b),"function"==typeof b.callbacks.onMixEnd&&b.callbacks.onMixEnd.call(b._domNode,b._state,b),b._$container.trigger("mixEnd",[b._state,b]),b._state.fail&&("function"==typeof b.callbacks.onMixFail&&b.callbacks.onMixFail.call(b._domNode,b._state,b),b._$container.trigger("mixFail",[b._state,b])),b._loading&&("function"==typeof b.callbacks.onMixLoad&&b.callbacks.onMixLoad.call(b._domNode,b._state,b),b._$container.trigger("mixLoad",[b._state,b])),b._queue.length&&(b._execAction("_queue",0),b.multiMix(b._queue[0][0],b._queue[0][1],b._queue[0][2]),b._queue.splice(0,1)),b._execAction("_cleanUp",1),b._loading=!1},_getPrefixedCSS:function(a,b,c){var d=this,e={},f="",g=-1;for(g=0;2>g;g++)f=0===g?d._prefix:"",c?e[f+a]=f+b:e[f+a]=b;return d._execFilter("_getPrefixedCSS",e,arguments)},_getDelay:function(a){var b=this,c="function"==typeof b.animation.staggerSequence?b.animation.staggerSequence.call(b._domNode,a,b._state):a,d=b.animation.stagger?c*b.animation.staggerDuration:0;return b._execFilter("_getDelay",d,arguments)},_parseMultiMixArgs:function(a){for(var b=this,c={command:null,animate:b.animation.enable,callback:null},d=0;dg;)h=d[g],g++;return a!==b?a[e]!==b?a[e]:a:void 0};return a?c._execFilter("getOption",d(c,a),arguments):c},setOptions:function(b){var c=this;c._execAction("setOptions",0,arguments),"object"==typeof b&&a.extend(!0,c,b),c._execAction("setOptions",1,arguments)},getState:function(){var a=this;return a._execFilter("getState",a._state,a)},forceRefresh:function(){var a=this;a._refresh(!1,!0)},destroy:function(b){var c=this,d=a.MixItUp.prototype._bound._filter,e=a.MixItUp.prototype._bound._sort;c._execAction("destroy",0,arguments),c._$body.add(a(c.selectors.sort)).add(a(c.selectors.filter)).off(".mixItUp");for(var f=0;f1?d[c.selectors.filter]--:1===d[c.selectors.filter]&&delete d[c.selectors.filter],e[c.selectors.sort]&&e[c.selectors.sort]>1?e[c.selectors.sort]--:1===e[c.selectors.sort]&&delete e[c.selectors.sort],delete a.MixItUp.prototype._instances[c._id]}},a.fn.mixItUp=function(){var c,d=arguments,e=[],f=function(b,c){var d=new a.MixItUp,e=function(){return("00000"+(16777216*Math.random()<<0).toString(16)).substr(-6).toUpperCase()};d._execAction("_instantiate",0,arguments),b.id=b.id?b.id:"MixItUp"+e(),d._instances[b.id]||(d._instances[b.id]=d,d._init(b,c)),d._execAction("_instantiate",1,arguments)};return c=this.each(function(){if(d&&"string"==typeof d[0]){var c=a.MixItUp.prototype._instances[this.id];if("isLoaded"===d[0])e.push(c?!0:!1);else{var g=c[d[0]](d[1],d[2],d[3]);g!==b&&e.push(g)}}else f(this,d[0])}),e.length?e.length>1?e:e[0]:c},a.fn.removeStyle=function(c,d){return d=d?d:"",this.each(function(){for(var e=this,f=c.split(" "),g=0;gh;h++){switch(h){case 0:var i=f[g];break;case 1:var i=a.MixItUp.prototype._helpers._camelCase(i);break;case 2:var i=d+f[g];break;case 3:var i=a.MixItUp.prototype._helpers._camelCase(d+f[g])}if(e.style[i]!==b&&"unknown"!=typeof e.style[i]&&e.style[i].length>0&&(e.style[i]=""),!d&&1===h)break}e.attributes&&e.attributes.style&&e.attributes.style!==b&&""===e.attributes.style.value&&e.attributes.removeNamedItem("style")})}}(jQuery); diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/parallax.min.js b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/parallax.min.js new file mode 100644 index 0000000..68e4c74 --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/parallax.min.js @@ -0,0 +1 @@ +!function(t){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{("undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this).Parallax=t()}}(function(){return function t(e,i,n){function o(r,a){if(!i[r]){if(!e[r]){var l="function"==typeof require&&require;if(!a&&l)return l(r,!0);if(s)return s(r,!0);var h=new Error("Cannot find module '"+r+"'");throw h.code="MODULE_NOT_FOUND",h}var u=i[r]={exports:{}};e[r][0].call(u.exports,function(t){var i=e[r][1][t];return o(i||t)},u,u.exports,t,e,i,n)}return i[r].exports}for(var s="function"==typeof require&&require,r=0;r1)for(var i=1;ii?i:t:te?e:t},data:function(t,e){return a.deserialize(t.getAttribute("data-"+e))},deserialize:function(t){return"true"===t||"false"!==t&&("null"===t?null:!isNaN(parseFloat(t))&&isFinite(t)?parseFloat(t):t)},camelCase:function(t){return t.replace(/-+(.)?/g,function(t,e){return e?e.toUpperCase():""})},accelerate:function(t){a.css(t,"transform","translate3d(0,0,0) rotate(0.0001deg)"),a.css(t,"transform-style","preserve-3d"),a.css(t,"backface-visibility","hidden")},transformSupport:function(t){for(var e=document.createElement("div"),i=!1,n=null,o=!1,s=null,r=null,l=0,h=a.vendors.length;l0&&"none"!==n,c.style.overflow=d,u.removeChild(e),m&&(u.removeAttribute("style"),u.parentNode.removeChild(u))}}return o},css:function(t,e,i){var n=a.propertyCache[e];if(!n)for(var o=0,s=a.vendors.length;othis.calibrationThreshold||Math.abs(e)>this.calibrationThreshold)&&this.queueCalibration(0),this.portrait?(this.motionX=this.calibrateX?e:this.inputY,this.motionY=this.calibrateY?t:this.inputX):(this.motionX=this.calibrateX?t:this.inputX,this.motionY=this.calibrateY?e:this.inputY),this.motionX*=this.elementWidth*(this.scalarX/100),this.motionY*=this.elementHeight*(this.scalarY/100),isNaN(parseFloat(this.limitX))||(this.motionX=a.clamp(this.motionX,-this.limitX,this.limitX)),isNaN(parseFloat(this.limitY))||(this.motionY=a.clamp(this.motionY,-this.limitY,this.limitY)),this.velocityX+=(this.motionX-this.velocityX)*this.frictionX,this.velocityY+=(this.motionY-this.velocityY)*this.frictionY;for(var i=0;ithis.windowWidth;this.portrait!==o&&(this.portrait=o,this.calibrationFlag=!0),this.calibrationFlag&&(this.calibrationFlag=!1,this.calibrationX=i,this.calibrationY=n),this.inputX=i,this.inputY=n}},{key:"onDeviceOrientation",value:function(t){var e=t.beta,i=t.gamma;null!==e&&null!==i&&(this.orientationStatus=1,this.rotate(e,i))}},{key:"onDeviceMotion",value:function(t){var e=t.rotationRate.beta,i=t.rotationRate.gamma;null!==e&&null!==i&&(this.motionStatus=1,this.rotate(e,i))}},{key:"onMouseMove",value:function(t){var e=t.clientX,i=t.clientY;if(this.hoverOnly&&(ethis.elementPositionX+this.elementWidth||ithis.elementPositionY+this.elementHeight))return this.inputX=0,void(this.inputY=0);this.relativeInput?(this.clipRelativeInput&&(e=Math.max(e,this.elementPositionX),e=Math.min(e,this.elementPositionX+this.elementWidth),i=Math.max(i,this.elementPositionY),i=Math.min(i,this.elementPositionY+this.elementHeight)),this.elementRangeX&&this.elementRangeY&&(this.inputX=(e-this.elementPositionX-this.elementCenterX)/this.elementRangeX,this.inputY=(i-this.elementPositionY-this.elementCenterY)/this.elementRangeY)):this.windowRadiusX&&this.windowRadiusY&&(this.inputX=(e-this.windowCenterX)/this.windowRadiusX,this.inputY=(i-this.windowCenterY)/this.windowRadiusY)}},{key:"destroy",value:function(){this.disable(),clearTimeout(this.calibrationTimer),clearTimeout(this.detectionTimer),this.element.removeAttribute("style");for(var t=0;t=Math.abs(n.width-o)&&(o=n.width),1>=Math.abs(n.height-r)&&(r=n.height),{x:e.offsetLeft,y:e.offsetTop,width:o,height:r}}function m(e){return"html"===s(e)?e:e.assignedSlot||e.parentNode||(a(e)?e.host:null)||f(e)}function h(e){return 0<=["html","body","#document"].indexOf(s(e))?e.ownerDocument.body:i(e)&&l(e)?e:h(m(e))}function v(e,t){var o;void 0===t&&(t=[]);var r=h(e);return e=r===(null==(o=e.ownerDocument)?void 0:o.body),o=n(r),r=e?[o].concat(o.visualViewport||[],l(r)?r:[]):r,t=t.concat(r),e?t:t.concat(v(m(r)))}function g(e){return i(e)&&"fixed"!==c(e).position?e.offsetParent:null}function y(e){for(var t=n(e),o=g(e);o&&0<=["table","td","th"].indexOf(s(o))&&"static"===c(o).position;)o=g(o);if(o&&("html"===s(o)||"body"===s(o)&&"static"===c(o).position))return t;if(!o)e:{if(o=-1!==navigator.userAgent.toLowerCase().indexOf("firefox"),-1===navigator.userAgent.indexOf("Trident")||!i(e)||"fixed"!==c(e).position)for(e=m(e);i(e)&&0>["html","body"].indexOf(s(e));){var r=c(e);if("none"!==r.transform||"none"!==r.perspective||"paint"===r.contain||-1!==["transform","perspective"].indexOf(r.willChange)||o&&"filter"===r.willChange||o&&r.filter&&"none"!==r.filter){o=e;break e}e=e.parentNode}o=null}return o||t}function b(e){function t(e){o.add(e.name),[].concat(e.requires||[],e.requiresIfExists||[]).forEach((function(e){o.has(e)||(e=n.get(e))&&t(e)})),r.push(e)}var n=new Map,o=new Set,r=[];return e.forEach((function(e){n.set(e.name,e)})),e.forEach((function(e){o.has(e.name)||t(e)})),r}function w(e){var t;return function(){return t||(t=new Promise((function(n){Promise.resolve().then((function(){t=void 0,n(e())}))}))),t}}function x(e){return e.split("-")[0]}function O(e,t){var n=t.getRootNode&&t.getRootNode();if(e.contains(t))return!0;if(n&&a(n))do{if(t&&e.isSameNode(t))return!0;t=t.parentNode||t.host}while(t);return!1}function j(e){return Object.assign({},e,{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}function E(e,r){if("viewport"===r){r=n(e);var a=f(e);r=r.visualViewport;var s=a.clientWidth;a=a.clientHeight;var l=0,u=0;r&&(s=r.width,a=r.height,/^((?!chrome|android).)*safari/i.test(navigator.userAgent)||(l=r.offsetLeft,u=r.offsetTop)),e=j(e={width:s,height:a,x:l+p(e),y:u})}else i(r)?((e=t(r)).top+=r.clientTop,e.left+=r.clientLeft,e.bottom=e.top+r.clientHeight,e.right=e.left+r.clientWidth,e.width=r.clientWidth,e.height=r.clientHeight,e.x=e.left,e.y=e.top):(u=f(e),e=f(u),s=o(u),r=null==(a=u.ownerDocument)?void 0:a.body,a=_(e.scrollWidth,e.clientWidth,r?r.scrollWidth:0,r?r.clientWidth:0),l=_(e.scrollHeight,e.clientHeight,r?r.scrollHeight:0,r?r.clientHeight:0),u=-s.scrollLeft+p(u),s=-s.scrollTop,"rtl"===c(r||e).direction&&(u+=_(e.clientWidth,r?r.clientWidth:0)-a),e=j({width:a,height:l,x:u,y:s}));return e}function D(e,t,n){return t="clippingParents"===t?function(e){var t=v(m(e)),n=0<=["absolute","fixed"].indexOf(c(e).position)&&i(e)?y(e):e;return r(n)?t.filter((function(e){return r(e)&&O(e,n)&&"body"!==s(e)})):[]}(e):[].concat(t),(n=(n=[].concat(t,[n])).reduce((function(t,n){return n=E(e,n),t.top=_(n.top,t.top),t.right=U(n.right,t.right),t.bottom=U(n.bottom,t.bottom),t.left=_(n.left,t.left),t}),E(e,n[0]))).width=n.right-n.left,n.height=n.bottom-n.top,n.x=n.left,n.y=n.top,n}function L(e){return 0<=["top","bottom"].indexOf(e)?"x":"y"}function P(e){var t=e.reference,n=e.element,o=(e=e.placement)?x(e):null;e=e?e.split("-")[1]:null;var r=t.x+t.width/2-n.width/2,i=t.y+t.height/2-n.height/2;switch(o){case"top":r={x:r,y:t.y-n.height};break;case"bottom":r={x:r,y:t.y+t.height};break;case"right":r={x:t.x+t.width,y:i};break;case"left":r={x:t.x-n.width,y:i};break;default:r={x:t.x,y:t.y}}if(null!=(o=o?L(o):null))switch(i="y"===o?"height":"width",e){case"start":r[o]-=t[i]/2-n[i]/2;break;case"end":r[o]+=t[i]/2-n[i]/2}return r}function M(e){return Object.assign({},{top:0,right:0,bottom:0,left:0},e)}function k(e,t){return t.reduce((function(t,n){return t[n]=e,t}),{})}function A(e,n){void 0===n&&(n={});var o=n;n=void 0===(n=o.placement)?e.placement:n;var i=o.boundary,a=void 0===i?"clippingParents":i,s=void 0===(i=o.rootBoundary)?"viewport":i;i=void 0===(i=o.elementContext)?"popper":i;var p=o.altBoundary,c=void 0!==p&&p;o=M("number"!=typeof(o=void 0===(o=o.padding)?0:o)?o:k(o,C));var l=e.elements.reference;p=e.rects.popper,a=D(r(c=e.elements[c?"popper"===i?"reference":"popper":i])?c:c.contextElement||f(e.elements.popper),a,s),c=P({reference:s=t(l),element:p,strategy:"absolute",placement:n}),p=j(Object.assign({},p,c)),s="popper"===i?p:s;var u={top:a.top-s.top+o.top,bottom:s.bottom-a.bottom+o.bottom,left:a.left-s.left+o.left,right:s.right-a.right+o.right};if(e=e.modifiersData.offset,"popper"===i&&e){var d=e[n];Object.keys(u).forEach((function(e){var t=0<=["right","bottom"].indexOf(e)?1:-1,n=0<=["top","bottom"].indexOf(e)?"y":"x";u[e]+=d[n]*t}))}return u}function W(){for(var e=arguments.length,t=Array(e),n=0;n(g.devicePixelRatio||1)?"translate("+e+"px, "+u+"px)":"translate3d("+e+"px, "+u+"px, 0)",m)):Object.assign({},o,((t={})[v]=a?u+"px":"",t[h]=d?e+"px":"",t.transform="",t))}function H(e){return e.replace(/left|right|bottom|top/g,(function(e){return $[e]}))}function R(e){return e.replace(/start|end/g,(function(e){return ee[e]}))}function S(e,t,n){return void 0===n&&(n={x:0,y:0}),{top:e.top-t.height-n.y,right:e.right-t.width+n.x,bottom:e.bottom-t.height+n.y,left:e.left-t.width-n.x}}function q(e){return["top","right","bottom","left"].some((function(t){return 0<=e[t]}))}var C=["top","bottom","right","left"],N=C.reduce((function(e,t){return e.concat([t+"-start",t+"-end"])}),[]),V=[].concat(C,["auto"]).reduce((function(e,t){return e.concat([t,t+"-start",t+"-end"])}),[]),I="beforeRead read afterRead beforeMain main afterMain beforeWrite write afterWrite".split(" "),_=Math.max,U=Math.min,z=Math.round,F={placement:"bottom",modifiers:[],strategy:"absolute"},X={passive:!0},Y={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:function(e){var t=e.state,o=e.instance,r=(e=e.options).scroll,i=void 0===r||r,a=void 0===(e=e.resize)||e,s=n(t.elements.popper),f=[].concat(t.scrollParents.reference,t.scrollParents.popper);return i&&f.forEach((function(e){e.addEventListener("scroll",o.update,X)})),a&&s.addEventListener("resize",o.update,X),function(){i&&f.forEach((function(e){e.removeEventListener("scroll",o.update,X)})),a&&s.removeEventListener("resize",o.update,X)}},data:{}},G={name:"popperOffsets",enabled:!0,phase:"read",fn:function(e){var t=e.state;t.modifiersData[e.name]=P({reference:t.rects.reference,element:t.rects.popper,strategy:"absolute",placement:t.placement})},data:{}},J={top:"auto",right:"auto",bottom:"auto",left:"auto"},K={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:function(e){var t=e.state,n=e.options;e=void 0===(e=n.gpuAcceleration)||e;var o=n.adaptive;o=void 0===o||o,n=void 0===(n=n.roundOffsets)||n,e={placement:x(t.placement),popper:t.elements.popper,popperRect:t.rects.popper,gpuAcceleration:e},null!=t.modifiersData.popperOffsets&&(t.styles.popper=Object.assign({},t.styles.popper,T(Object.assign({},e,{offsets:t.modifiersData.popperOffsets,position:t.options.strategy,adaptive:o,roundOffsets:n})))),null!=t.modifiersData.arrow&&(t.styles.arrow=Object.assign({},t.styles.arrow,T(Object.assign({},e,{offsets:t.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:n})))),t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-placement":t.placement})},data:{}},Q={name:"applyStyles",enabled:!0,phase:"write",fn:function(e){var t=e.state;Object.keys(t.elements).forEach((function(e){var n=t.styles[e]||{},o=t.attributes[e]||{},r=t.elements[e];i(r)&&s(r)&&(Object.assign(r.style,n),Object.keys(o).forEach((function(e){var t=o[e];!1===t?r.removeAttribute(e):r.setAttribute(e,!0===t?"":t)})))}))},effect:function(e){var t=e.state,n={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(t.elements.popper.style,n.popper),t.styles=n,t.elements.arrow&&Object.assign(t.elements.arrow.style,n.arrow),function(){Object.keys(t.elements).forEach((function(e){var o=t.elements[e],r=t.attributes[e]||{};e=Object.keys(t.styles.hasOwnProperty(e)?t.styles[e]:n[e]).reduce((function(e,t){return e[t]="",e}),{}),i(o)&&s(o)&&(Object.assign(o.style,e),Object.keys(r).forEach((function(e){o.removeAttribute(e)})))}))}},requires:["computeStyles"]},Z={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:function(e){var t=e.state,n=e.name,o=void 0===(e=e.options.offset)?[0,0]:e,r=(e=V.reduce((function(e,n){var r=t.rects,i=x(n),a=0<=["left","top"].indexOf(i)?-1:1,s="function"==typeof o?o(Object.assign({},r,{placement:n})):o;return r=(r=s[0])||0,s=((s=s[1])||0)*a,i=0<=["left","right"].indexOf(i)?{x:s,y:r}:{x:r,y:s},e[n]=i,e}),{}))[t.placement],i=r.x;r=r.y,null!=t.modifiersData.popperOffsets&&(t.modifiersData.popperOffsets.x+=i,t.modifiersData.popperOffsets.y+=r),t.modifiersData[n]=e}},$={left:"right",right:"left",bottom:"top",top:"bottom"},ee={start:"end",end:"start"},te={name:"flip",enabled:!0,phase:"main",fn:function(e){var t=e.state,n=e.options;if(e=e.name,!t.modifiersData[e]._skip){var o=n.mainAxis;o=void 0===o||o;var r=n.altAxis;r=void 0===r||r;var i=n.fallbackPlacements,a=n.padding,s=n.boundary,f=n.rootBoundary,p=n.altBoundary,c=n.flipVariations,l=void 0===c||c,u=n.allowedAutoPlacements;c=x(n=t.options.placement),i=i||(c!==n&&l?function(e){if("auto"===x(e))return[];var t=H(e);return[R(e),t,R(t)]}(n):[H(n)]);var d=[n].concat(i).reduce((function(e,n){return e.concat("auto"===x(n)?function(e,t){void 0===t&&(t={});var n=t.boundary,o=t.rootBoundary,r=t.padding,i=t.flipVariations,a=t.allowedAutoPlacements,s=void 0===a?V:a,f=t.placement.split("-")[1];0===(i=(t=f?i?N:N.filter((function(e){return e.split("-")[1]===f})):C).filter((function(e){return 0<=s.indexOf(e)}))).length&&(i=t);var p=i.reduce((function(t,i){return t[i]=A(e,{placement:i,boundary:n,rootBoundary:o,padding:r})[x(i)],t}),{});return Object.keys(p).sort((function(e,t){return p[e]-p[t]}))}(t,{placement:n,boundary:s,rootBoundary:f,padding:a,flipVariations:l,allowedAutoPlacements:u}):n)}),[]);n=t.rects.reference,i=t.rects.popper;var m=new Map;c=!0;for(var h=d[0],v=0;vi[O]&&(b=H(b)),O=H(b),w=[],o&&w.push(0>=j[y]),r&&w.push(0>=j[b],0>=j[O]),w.every((function(e){return e}))){h=g,c=!1;break}m.set(g,w)}if(c)for(o=function(e){var t=d.find((function(t){if(t=m.get(t))return t.slice(0,e).every((function(e){return e}))}));if(t)return h=t,"break"},r=l?3:1;0=f[0]&&n< + f[1]?"sm":n>=f[1]&&n=d[c].max?d[c].max:e),a.options.horizontal&&!a.options.vertical&&(b=b>=d[c].max?d[c].max:b));null!=d[c].maxY&&(e=e>=d[c].maxY?d[c].maxY:e);null!=d[c].maxX&&(b=b>=d[c].maxX?d[c].maxX:b);a.elems[c].style[E]="translate3d("+(a.options.horizontal?b:"0")+"px,"+(a.options.vertical?e:"0")+"px,"+d[c].zindex+"px) "+d[c].transform}a.options.callback(f)}; + a.destroy=function(){for(var f=0;f 0; + + if (resized) { + var height = scroller.target.clientHeight; + body.style.height = height + "px"; + scroller.resizeRequest = 0; + } + + var scrollY = window.pageYOffset || html.scrollTop || body.scrollTop || 0; + + scroller.endY = scrollY; + scroller.y += (scrollY - scroller.y) * scroller.ease; + + if (Math.abs(scrollY - scroller.y) < 0.05 || resized) { + scroller.y = scrollY; + scroller.scrollRequest = 0; + } + + TweenLite.set(scroller.target, { + y: -scroller.y, + }); + + requestId = + scroller.scrollRequest > 0 ? requestAnimationFrame(updateScroller) : null; +} + +function onScroll() { + scroller.scrollRequest++; + if (!requestId) { + requestId = requestAnimationFrame(updateScroller); + } +} + +function onResize() { + scroller.resizeRequest++; + if (!requestId) { + requestId = requestAnimationFrame(updateScroller); + } +} + +jQuery(".filters").on("click", function() { + setTimeout(function() { + onScroll(); + onResize(); + }, 1000); +}); + +document.querySelector(".filters li").addEventListener("click", onResize); +document.querySelector(".filters li").addEventListener("click", onScroll); + +// Scroll to top + +const scrolltotop = document.querySelector(".scrolltop"); + +scrolltotop.addEventListener("click", () => + gsap.to(window, { + scrollTo: 0, + }) +); + +// Scroll to Section + +var sections = $('section'), + nav = $('.foody-nav-menu , .banner-btn'), + nav_height = nav.outerHeight(); + +nav.find('a').on('click', function() { + var $el = $(this), + id = $el.attr('href'); + + $('html, body').animate({ + scrollTop: $(id).offset().top - nav_height + }, 500); + + return false; +}); diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/swiper-bundle.min.js b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/swiper-bundle.min.js new file mode 100644 index 0000000..04090fa --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/assets/js/swiper-bundle.min.js @@ -0,0 +1,13 @@ +/** + * Swiper 6.7.5 + * Most modern mobile touch slider and framework with hardware accelerated transitions + * https://swiperjs.com + * + * Copyright 2014-2021 Vladimir Kharlampidi + * + * Released under the MIT License + * + * Released on: July 1, 2021 + */ + +!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).Swiper=t()}(this,(function(){"use strict";function e(e,t){for(var a=0;a0&&i(e[s],t[s])}))}var s={body:{},addEventListener:function(){},removeEventListener:function(){},activeElement:{blur:function(){},nodeName:""},querySelector:function(){return null},querySelectorAll:function(){return[]},getElementById:function(){return null},createEvent:function(){return{initEvent:function(){}}},createElement:function(){return{children:[],childNodes:[],style:{},setAttribute:function(){},getElementsByTagName:function(){return[]}}},createElementNS:function(){return{}},importNode:function(){return null},location:{hash:"",host:"",hostname:"",href:"",origin:"",pathname:"",protocol:"",search:""}};function r(){var e="undefined"!=typeof document?document:{};return i(e,s),e}var n={document:s,navigator:{userAgent:""},location:{hash:"",host:"",hostname:"",href:"",origin:"",pathname:"",protocol:"",search:""},history:{replaceState:function(){},pushState:function(){},go:function(){},back:function(){}},CustomEvent:function(){return this},addEventListener:function(){},removeEventListener:function(){},getComputedStyle:function(){return{getPropertyValue:function(){return""}}},Image:function(){},Date:function(){},screen:{},setTimeout:function(){},clearTimeout:function(){},matchMedia:function(){return{}},requestAnimationFrame:function(e){return"undefined"==typeof setTimeout?(e(),null):setTimeout(e,0)},cancelAnimationFrame:function(e){"undefined"!=typeof setTimeout&&clearTimeout(e)}};function l(){var e="undefined"!=typeof window?window:{};return i(e,n),e}function o(e){return(o=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function d(e,t){return(d=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function p(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}function u(e,t,a){return(u=p()?Reflect.construct:function(e,t,a){var i=[null];i.push.apply(i,t);var s=new(Function.bind.apply(e,i));return a&&d(s,a.prototype),s}).apply(null,arguments)}function c(e){var t="function"==typeof Map?new Map:void 0;return(c=function(e){if(null===e||(a=e,-1===Function.toString.call(a).indexOf("[native code]")))return e;var a;if("function"!=typeof e)throw new TypeError("Super expression must either be null or a function");if(void 0!==t){if(t.has(e))return t.get(e);t.set(e,i)}function i(){return u(e,arguments,o(this).constructor)}return i.prototype=Object.create(e.prototype,{constructor:{value:i,enumerable:!1,writable:!0,configurable:!0}}),d(i,e)})(e)}var h=function(e){var t,a;function i(t){var a,i,s;return a=e.call.apply(e,[this].concat(t))||this,i=function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(a),s=i.__proto__,Object.defineProperty(i,"__proto__",{get:function(){return s},set:function(e){s.__proto__=e}}),a}return a=e,(t=i).prototype=Object.create(a.prototype),t.prototype.constructor=t,t.__proto__=a,i}(c(Array));function v(e){void 0===e&&(e=[]);var t=[];return e.forEach((function(e){Array.isArray(e)?t.push.apply(t,v(e)):t.push(e)})),t}function f(e,t){return Array.prototype.filter.call(e,t)}function m(e,t){var a=l(),i=r(),s=[];if(!t&&e instanceof h)return e;if(!e)return new h(s);if("string"==typeof e){var n=e.trim();if(n.indexOf("<")>=0&&n.indexOf(">")>=0){var o="div";0===n.indexOf("0})).length>0},toggleClass:function(){for(var e=arguments.length,t=new Array(e),a=0;a=0;h-=1){var v=c[h];r&&v.listener===r||r&&v.listener&&v.listener.dom7proxy&&v.listener.dom7proxy===r?(u.removeEventListener(d,v.proxyListener,n),c.splice(h,1)):r||(u.removeEventListener(d,v.proxyListener,n),c.splice(h,1))}}return this},trigger:function(){for(var e=l(),t=arguments.length,a=new Array(t),i=0;i0})),p.dispatchEvent(u),p.dom7EventData=[],delete p.dom7EventData}}return this},transitionEnd:function(e){var t=this;return e&&t.on("transitionend",(function a(i){i.target===this&&(e.call(this,i),t.off("transitionend",a))})),this},outerWidth:function(e){if(this.length>0){if(e){var t=this.styles();return this[0].offsetWidth+parseFloat(t.getPropertyValue("margin-right"))+parseFloat(t.getPropertyValue("margin-left"))}return this[0].offsetWidth}return null},outerHeight:function(e){if(this.length>0){if(e){var t=this.styles();return this[0].offsetHeight+parseFloat(t.getPropertyValue("margin-top"))+parseFloat(t.getPropertyValue("margin-bottom"))}return this[0].offsetHeight}return null},styles:function(){var e=l();return this[0]?e.getComputedStyle(this[0],null):{}},offset:function(){if(this.length>0){var e=l(),t=r(),a=this[0],i=a.getBoundingClientRect(),s=t.body,n=a.clientTop||s.clientTop||0,o=a.clientLeft||s.clientLeft||0,d=a===e?e.scrollY:a.scrollTop,p=a===e?e.scrollX:a.scrollLeft;return{top:i.top+d-n,left:i.left+p-o}}return null},css:function(e,t){var a,i=l();if(1===arguments.length){if("string"!=typeof e){for(a=0;at-1)return m([]);if(e<0){var a=t+e;return m(a<0?[]:[this[a]])}return m([this[e]])},append:function(){for(var e,t=r(),a=0;a=0;a-=1)this[t].insertBefore(s.childNodes[a],this[t].childNodes[0])}else if(e instanceof h)for(a=0;a0?e?this[0].nextElementSibling&&m(this[0].nextElementSibling).is(e)?m([this[0].nextElementSibling]):m([]):this[0].nextElementSibling?m([this[0].nextElementSibling]):m([]):m([])},nextAll:function(e){var t=[],a=this[0];if(!a)return m([]);for(;a.nextElementSibling;){var i=a.nextElementSibling;e?m(i).is(e)&&t.push(i):t.push(i),a=i}return m(t)},prev:function(e){if(this.length>0){var t=this[0];return e?t.previousElementSibling&&m(t.previousElementSibling).is(e)?m([t.previousElementSibling]):m([]):t.previousElementSibling?m([t.previousElementSibling]):m([])}return m([])},prevAll:function(e){var t=[],a=this[0];if(!a)return m([]);for(;a.previousElementSibling;){var i=a.previousElementSibling;e?m(i).is(e)&&t.push(i):t.push(i),a=i}return m(t)},parent:function(e){for(var t=[],a=0;a6&&(i=i.split(", ").map((function(e){return e.replace(",",".")})).join(", ")),s=new r.WebKitCSSMatrix("none"===i?"":i)):a=(s=n.MozTransform||n.OTransform||n.MsTransform||n.msTransform||n.transform||n.getPropertyValue("transform").replace("translate(","matrix(1, 0, 0, 1,")).toString().split(","),"x"===t&&(i=r.WebKitCSSMatrix?s.m41:16===a.length?parseFloat(a[12]):parseFloat(a[4])),"y"===t&&(i=r.WebKitCSSMatrix?s.m42:16===a.length?parseFloat(a[13]):parseFloat(a[5])),i||0}function C(e){return"object"==typeof e&&null!==e&&e.constructor&&"Object"===Object.prototype.toString.call(e).slice(8,-1)}function S(){for(var e=Object(arguments.length<=0?void 0:arguments[0]),t=["__proto__","constructor","prototype"],a="undefined"!=typeof window?window.HTMLElement:void 0,i=1;i=0,observer:"MutationObserver"in e||"WebkitMutationObserver"in e,passiveListener:function(){var t=!1;try{var a=Object.defineProperty({},"passive",{get:function(){t=!0}});e.addEventListener("testPassiveListener",null,a)}catch(e){}return t}(),gestures:"ongesturestart"in e}}()),g}function $(e){return void 0===e&&(e={}),b||(b=function(e){var t=(void 0===e?{}:e).userAgent,a=k(),i=l(),s=i.navigator.platform,r=t||i.navigator.userAgent,n={ios:!1,android:!1},o=i.screen.width,d=i.screen.height,p=r.match(/(Android);?[\s\/]+([\d.]+)?/),u=r.match(/(iPad).*OS\s([\d_]+)/),c=r.match(/(iPod)(.*OS\s([\d_]+))?/),h=!u&&r.match(/(iPhone\sOS|iOS)\s([\d_]+)/),v="Win32"===s,f="MacIntel"===s;return!u&&f&&a.touch&&["1024x1366","1366x1024","834x1194","1194x834","834x1112","1112x834","768x1024","1024x768","820x1180","1180x820","810x1080","1080x810"].indexOf(o+"x"+d)>=0&&((u=r.match(/(Version)\/([\d.]+)/))||(u=[0,1,"13_0_0"]),f=!1),p&&!v&&(n.os="android",n.android=!0),(u||h||c)&&(n.os="ios",n.ios=!0),n}(e)),b}function L(){return w||(w=function(){var e,t=l();return{isEdge:!!t.navigator.userAgent.match(/Edge/g),isSafari:(e=t.navigator.userAgent.toLowerCase(),e.indexOf("safari")>=0&&e.indexOf("chrome")<0&&e.indexOf("android")<0),isWebView:/(iPhone|iPod|iPad).*AppleWebKit(?!.*Safari)/i.test(t.navigator.userAgent)}}()),w}Object.keys(y).forEach((function(e){Object.defineProperty(m.fn,e,{value:y[e],writable:!0})}));var I={name:"resize",create:function(){var e=this;S(e,{resize:{observer:null,createObserver:function(){e&&!e.destroyed&&e.initialized&&(e.resize.observer=new ResizeObserver((function(t){var a=e.width,i=e.height,s=a,r=i;t.forEach((function(t){var a=t.contentBoxSize,i=t.contentRect,n=t.target;n&&n!==e.el||(s=i?i.width:(a[0]||a).inlineSize,r=i?i.height:(a[0]||a).blockSize)})),s===a&&r===i||e.resize.resizeHandler()})),e.resize.observer.observe(e.el))},removeObserver:function(){e.resize.observer&&e.resize.observer.unobserve&&e.el&&(e.resize.observer.unobserve(e.el),e.resize.observer=null)},resizeHandler:function(){e&&!e.destroyed&&e.initialized&&(e.emit("beforeResize"),e.emit("resize"))},orientationChangeHandler:function(){e&&!e.destroyed&&e.initialized&&e.emit("orientationchange")}}})},on:{init:function(e){var t=l();e.params.resizeObserver&&void 0!==l().ResizeObserver?e.resize.createObserver():(t.addEventListener("resize",e.resize.resizeHandler),t.addEventListener("orientationchange",e.resize.orientationChangeHandler))},destroy:function(e){var t=l();e.resize.removeObserver(),t.removeEventListener("resize",e.resize.resizeHandler),t.removeEventListener("orientationchange",e.resize.orientationChangeHandler)}}},O={attach:function(e,t){void 0===t&&(t={});var a=l(),i=this,s=new(a.MutationObserver||a.WebkitMutationObserver)((function(e){if(1!==e.length){var t=function(){i.emit("observerUpdate",e[0])};a.requestAnimationFrame?a.requestAnimationFrame(t):a.setTimeout(t,0)}else i.emit("observerUpdate",e[0])}));s.observe(e,{attributes:void 0===t.attributes||t.attributes,childList:void 0===t.childList||t.childList,characterData:void 0===t.characterData||t.characterData}),i.observer.observers.push(s)},init:function(){var e=this;if(e.support.observer&&e.params.observer){if(e.params.observeParents)for(var t=e.$el.parents(),a=0;a0))if(!s.isTouched||!s.isMoved)if(!!n.noSwipingClass&&""!==n.noSwipingClass&&d.target&&d.target.shadowRoot&&e.path&&e.path[0]&&(p=m(e.path[0])),n.noSwiping&&p.closest(n.noSwipingSelector?n.noSwipingSelector:"."+n.noSwipingClass)[0])t.allowClick=!0;else if(!n.swipeHandler||p.closest(n.swipeHandler)[0]){o.currentX="touchstart"===d.type?d.targetTouches[0].pageX:d.pageX,o.currentY="touchstart"===d.type?d.targetTouches[0].pageY:d.pageY;var u=o.currentX,c=o.currentY,h=n.edgeSwipeDetection||n.iOSEdgeSwipeDetection,v=n.edgeSwipeThreshold||n.iOSEdgeSwipeThreshold;if(h&&(u<=v||u>=i.innerWidth-v)){if("prevent"!==h)return;e.preventDefault()}if(S(s,{isTouched:!0,isMoved:!1,allowTouchCallbacks:!0,isScrolling:void 0,startMoving:void 0}),o.startX=u,o.startY=c,s.touchStartTime=x(),t.allowClick=!0,t.updateSize(),t.swipeDirection=void 0,n.threshold>0&&(s.allowThresholdMove=!1),"touchstart"!==d.type){var f=!0;p.is(s.focusableElements)&&(f=!1),a.activeElement&&m(a.activeElement).is(s.focusableElements)&&a.activeElement!==p[0]&&a.activeElement.blur();var g=f&&t.allowTouchMove&&n.touchStartPreventDefault;!n.touchStartForcePreventDefault&&!g||p[0].isContentEditable||d.preventDefault()}t.emit("touchStart",d)}}}function N(e){var t=r(),a=this,i=a.touchEventsData,s=a.params,n=a.touches,l=a.rtlTranslate;if(a.enabled){var o=e;if(o.originalEvent&&(o=o.originalEvent),i.isTouched){if(!i.isTouchEvent||"touchmove"===o.type){var d="touchmove"===o.type&&o.targetTouches&&(o.targetTouches[0]||o.changedTouches[0]),p="touchmove"===o.type?d.pageX:o.pageX,u="touchmove"===o.type?d.pageY:o.pageY;if(o.preventedByNestedSwiper)return n.startX=p,void(n.startY=u);if(!a.allowTouchMove)return a.allowClick=!1,void(i.isTouched&&(S(n,{startX:p,startY:u,currentX:p,currentY:u}),i.touchStartTime=x()));if(i.isTouchEvent&&s.touchReleaseOnEdges&&!s.loop)if(a.isVertical()){if(un.startY&&a.translate>=a.minTranslate())return i.isTouched=!1,void(i.isMoved=!1)}else if(pn.startX&&a.translate>=a.minTranslate())return;if(i.isTouchEvent&&t.activeElement&&o.target===t.activeElement&&m(o.target).is(i.focusableElements))return i.isMoved=!0,void(a.allowClick=!1);if(i.allowTouchCallbacks&&a.emit("touchMove",o),!(o.targetTouches&&o.targetTouches.length>1)){n.currentX=p,n.currentY=u;var c=n.currentX-n.startX,h=n.currentY-n.startY;if(!(a.params.threshold&&Math.sqrt(Math.pow(c,2)+Math.pow(h,2))=25&&(v=180*Math.atan2(Math.abs(h),Math.abs(c))/Math.PI,i.isScrolling=a.isHorizontal()?v>s.touchAngle:90-v>s.touchAngle);if(i.isScrolling&&a.emit("touchMoveOpposite",o),void 0===i.startMoving&&(n.currentX===n.startX&&n.currentY===n.startY||(i.startMoving=!0)),i.isScrolling)i.isTouched=!1;else if(i.startMoving){a.allowClick=!1,!s.cssMode&&o.cancelable&&o.preventDefault(),s.touchMoveStopPropagation&&!s.nested&&o.stopPropagation(),i.isMoved||(s.loop&&a.loopFix(),i.startTranslate=a.getTranslate(),a.setTransition(0),a.animating&&a.$wrapperEl.trigger("webkitTransitionEnd transitionend"),i.allowMomentumBounce=!1,!s.grabCursor||!0!==a.allowSlideNext&&!0!==a.allowSlidePrev||a.setGrabCursor(!0),a.emit("sliderFirstMove",o)),a.emit("sliderMove",o),i.isMoved=!0;var f=a.isHorizontal()?c:h;n.diff=f,f*=s.touchRatio,l&&(f=-f),a.swipeDirection=f>0?"prev":"next",i.currentTranslate=f+i.startTranslate;var g=!0,b=s.resistanceRatio;if(s.touchReleaseOnEdges&&(b=0),f>0&&i.currentTranslate>a.minTranslate()?(g=!1,s.resistance&&(i.currentTranslate=a.minTranslate()-1+Math.pow(-a.minTranslate()+i.startTranslate+f,b))):f<0&&i.currentTranslatei.startTranslate&&(i.currentTranslate=i.startTranslate),a.allowSlidePrev||a.allowSlideNext||(i.currentTranslate=i.startTranslate),s.threshold>0){if(!(Math.abs(f)>s.threshold||i.allowThresholdMove))return void(i.currentTranslate=i.startTranslate);if(!i.allowThresholdMove)return i.allowThresholdMove=!0,n.startX=n.currentX,n.startY=n.currentY,i.currentTranslate=i.startTranslate,void(n.diff=a.isHorizontal()?n.currentX-n.startX:n.currentY-n.startY)}s.followFinger&&!s.cssMode&&((s.freeMode||s.watchSlidesProgress||s.watchSlidesVisibility)&&(a.updateActiveIndex(),a.updateSlidesClasses()),s.freeMode&&(0===i.velocities.length&&i.velocities.push({position:n[a.isHorizontal()?"startX":"startY"],time:i.touchStartTime}),i.velocities.push({position:n[a.isHorizontal()?"currentX":"currentY"],time:x()})),a.updateProgress(i.currentTranslate),a.setTranslate(i.currentTranslate))}}}}}else i.startMoving&&i.isScrolling&&a.emit("touchMoveOpposite",o)}}function G(e){var t=this,a=t.touchEventsData,i=t.params,s=t.touches,r=t.rtlTranslate,n=t.$wrapperEl,l=t.slidesGrid,o=t.snapGrid;if(t.enabled){var d=e;if(d.originalEvent&&(d=d.originalEvent),a.allowTouchCallbacks&&t.emit("touchEnd",d),a.allowTouchCallbacks=!1,!a.isTouched)return a.isMoved&&i.grabCursor&&t.setGrabCursor(!1),a.isMoved=!1,void(a.startMoving=!1);i.grabCursor&&a.isMoved&&a.isTouched&&(!0===t.allowSlideNext||!0===t.allowSlidePrev)&&t.setGrabCursor(!1);var p,u=x(),c=u-a.touchStartTime;if(t.allowClick&&(t.updateClickedSlide(d),t.emit("tap click",d),c<300&&u-a.lastClickTime<300&&t.emit("doubleTap doubleClick",d)),a.lastClickTime=x(),E((function(){t.destroyed||(t.allowClick=!0)})),!a.isTouched||!a.isMoved||!t.swipeDirection||0===s.diff||a.currentTranslate===a.startTranslate)return a.isTouched=!1,a.isMoved=!1,void(a.startMoving=!1);if(a.isTouched=!1,a.isMoved=!1,a.startMoving=!1,p=i.followFinger?r?t.translate:-t.translate:-a.currentTranslate,!i.cssMode)if(i.freeMode){if(p<-t.minTranslate())return void t.slideTo(t.activeIndex);if(p>-t.maxTranslate())return void(t.slides.length1){var h=a.velocities.pop(),v=a.velocities.pop(),f=h.position-v.position,m=h.time-v.time;t.velocity=f/m,t.velocity/=2,Math.abs(t.velocity)150||x()-h.time>300)&&(t.velocity=0)}else t.velocity=0;t.velocity*=i.freeModeMomentumVelocityRatio,a.velocities.length=0;var g=1e3*i.freeModeMomentumRatio,b=t.velocity*g,w=t.translate+b;r&&(w=-w);var y,T,C=!1,S=20*Math.abs(t.velocity)*i.freeModeMomentumBounceRatio;if(wt.minTranslate())i.freeModeMomentumBounce?(w-t.minTranslate()>S&&(w=t.minTranslate()+S),y=t.minTranslate(),C=!0,a.allowMomentumBounce=!0):w=t.minTranslate(),i.loop&&i.centeredSlides&&(T=!0);else if(i.freeModeSticky){for(var M,z=0;z-w){M=z;break}w=-(w=Math.abs(o[M]-w)=i.longSwipesMs)&&(t.updateProgress(),t.updateActiveIndex(),t.updateSlidesClasses())}else{for(var $=0,L=t.slidesSizesGrid[0],I=0;I=l[I]&&p=l[I]&&($=I,L=l[l.length-1]-l[l.length-2])}var A=(p-l[$])/L,D=$i.longSwipesMs){if(!i.longSwipes)return void t.slideTo(t.activeIndex);"next"===t.swipeDirection&&(A>=i.longSwipesRatio?t.slideTo($+D):t.slideTo($)),"prev"===t.swipeDirection&&(A>1-i.longSwipesRatio?t.slideTo($+D):t.slideTo($))}else{if(!i.shortSwipes)return void t.slideTo(t.activeIndex);t.navigation&&(d.target===t.navigation.nextEl||d.target===t.navigation.prevEl)?d.target===t.navigation.nextEl?t.slideTo($+D):t.slideTo($):("next"===t.swipeDirection&&t.slideTo($+D),"prev"===t.swipeDirection&&t.slideTo($))}}}}function B(){var e=this,t=e.params,a=e.el;if(!a||0!==a.offsetWidth){t.breakpoints&&e.setBreakpoint();var i=e.allowSlideNext,s=e.allowSlidePrev,r=e.snapGrid;e.allowSlideNext=!0,e.allowSlidePrev=!0,e.updateSize(),e.updateSlides(),e.updateSlidesClasses(),("auto"===t.slidesPerView||t.slidesPerView>1)&&e.isEnd&&!e.isBeginning&&!e.params.centeredSlides?e.slideTo(e.slides.length-1,0,!1,!0):e.slideTo(e.activeIndex,0,!1,!0),e.autoplay&&e.autoplay.running&&e.autoplay.paused&&e.autoplay.run(),e.allowSlidePrev=s,e.allowSlideNext=i,e.params.watchOverflow&&r!==e.snapGrid&&e.checkOverflow()}}function H(e){var t=this;t.enabled&&(t.allowClick||(t.params.preventClicks&&e.preventDefault(),t.params.preventClicksPropagation&&t.animating&&(e.stopPropagation(),e.stopImmediatePropagation())))}function X(){var e=this,t=e.wrapperEl,a=e.rtlTranslate;if(e.enabled){e.previousTranslate=e.translate,e.isHorizontal()?e.translate=a?t.scrollWidth-t.offsetWidth-t.scrollLeft:-t.scrollLeft:e.translate=-t.scrollTop,-0===e.translate&&(e.translate=0),e.updateActiveIndex(),e.updateSlidesClasses();var i=e.maxTranslate()-e.minTranslate();(0===i?0:(e.translate-e.minTranslate())/i)!==e.progress&&e.updateProgress(a?-e.translate:e.translate),e.emit("setTranslate",e.translate,!1)}}var R=!1;function Y(){}var V={init:!0,direction:"horizontal",touchEventsTarget:"container",initialSlide:0,speed:300,cssMode:!1,updateOnWindowResize:!0,resizeObserver:!1,nested:!1,createElements:!1,enabled:!0,focusableElements:"input, select, option, textarea, button, video, label",width:null,height:null,preventInteractionOnTransition:!1,userAgent:null,url:null,edgeSwipeDetection:!1,edgeSwipeThreshold:20,freeMode:!1,freeModeMomentum:!0,freeModeMomentumRatio:1,freeModeMomentumBounce:!0,freeModeMomentumBounceRatio:1,freeModeMomentumVelocityRatio:1,freeModeSticky:!1,freeModeMinimumVelocity:.02,autoHeight:!1,setWrapperSize:!1,virtualTranslate:!1,effect:"slide",breakpoints:void 0,breakpointsBase:"window",spaceBetween:0,slidesPerView:1,slidesPerColumn:1,slidesPerColumnFill:"column",slidesPerGroup:1,slidesPerGroupSkip:0,centeredSlides:!1,centeredSlidesBounds:!1,slidesOffsetBefore:0,slidesOffsetAfter:0,normalizeSlideIndex:!0,centerInsufficientSlides:!1,watchOverflow:!1,roundLengths:!1,touchRatio:1,touchAngle:45,simulateTouch:!0,shortSwipes:!0,longSwipes:!0,longSwipesRatio:.5,longSwipesMs:300,followFinger:!0,allowTouchMove:!0,threshold:0,touchMoveStopPropagation:!1,touchStartPreventDefault:!0,touchStartForcePreventDefault:!1,touchReleaseOnEdges:!1,uniqueNavElements:!0,resistance:!0,resistanceRatio:.85,watchSlidesProgress:!1,watchSlidesVisibility:!1,grabCursor:!1,preventClicks:!0,preventClicksPropagation:!0,slideToClickedSlide:!1,preloadImages:!0,updateOnImagesReady:!0,loop:!1,loopAdditionalSlides:0,loopedSlides:null,loopFillGroupWithBlank:!1,loopPreventsSlide:!0,allowSlidePrev:!0,allowSlideNext:!0,swipeHandler:null,noSwiping:!0,noSwipingClass:"swiper-no-swiping",noSwipingSelector:null,passiveListeners:!0,containerModifierClass:"swiper-container-",slideClass:"swiper-slide",slideBlankClass:"swiper-slide-invisible-blank",slideActiveClass:"swiper-slide-active",slideDuplicateActiveClass:"swiper-slide-duplicate-active",slideVisibleClass:"swiper-slide-visible",slideDuplicateClass:"swiper-slide-duplicate",slideNextClass:"swiper-slide-next",slideDuplicateNextClass:"swiper-slide-duplicate-next",slidePrevClass:"swiper-slide-prev",slideDuplicatePrevClass:"swiper-slide-duplicate-prev",wrapperClass:"swiper-wrapper",runCallbacksOnInit:!0,_emitClasses:!1},W={modular:{useParams:function(e){var t=this;t.modules&&Object.keys(t.modules).forEach((function(a){var i=t.modules[a];i.params&&S(e,i.params)}))},useModules:function(e){void 0===e&&(e={});var t=this;t.modules&&Object.keys(t.modules).forEach((function(a){var i=t.modules[a],s=e[a]||{};i.on&&t.on&&Object.keys(i.on).forEach((function(e){t.on(e,i.on[e])})),i.create&&i.create.bind(t)(s)}))}},eventsEmitter:{on:function(e,t,a){var i=this;if("function"!=typeof t)return i;var s=a?"unshift":"push";return e.split(" ").forEach((function(e){i.eventsListeners[e]||(i.eventsListeners[e]=[]),i.eventsListeners[e][s](t)})),i},once:function(e,t,a){var i=this;if("function"!=typeof t)return i;function s(){i.off(e,s),s.__emitterProxy&&delete s.__emitterProxy;for(var a=arguments.length,r=new Array(a),n=0;n=0&&t.eventsAnyListeners.splice(a,1),t},off:function(e,t){var a=this;return a.eventsListeners?(e.split(" ").forEach((function(e){void 0===t?a.eventsListeners[e]=[]:a.eventsListeners[e]&&a.eventsListeners[e].forEach((function(i,s){(i===t||i.__emitterProxy&&i.__emitterProxy===t)&&a.eventsListeners[e].splice(s,1)}))})),a):a},emit:function(){var e,t,a,i=this;if(!i.eventsListeners)return i;for(var s=arguments.length,r=new Array(s),n=0;n=0&&(w=parseFloat(w.replace("%",""))/100*r),e.virtualSize=-w,n?p.css({marginLeft:"",marginTop:""}):p.css({marginRight:"",marginBottom:""}),i.slidesPerColumn>1&&(T=Math.floor(u/i.slidesPerColumn)===u/e.params.slidesPerColumn?u:Math.ceil(u/i.slidesPerColumn)*i.slidesPerColumn,"auto"!==i.slidesPerView&&"row"===i.slidesPerColumnFill&&(T=Math.max(T,i.slidesPerView*i.slidesPerColumn)));for(var M,z,P,k=i.slidesPerColumn,$=T/k,L=Math.floor(u/i.slidesPerColumn),I=0;I1){var A=void 0,D=void 0,N=void 0;if("row"===i.slidesPerColumnFill&&i.slidesPerGroup>1){var G=Math.floor(I/(i.slidesPerGroup*i.slidesPerColumn)),B=I-i.slidesPerColumn*i.slidesPerGroup*G,H=0===G?i.slidesPerGroup:Math.min(Math.ceil((u-G*k*i.slidesPerGroup)/k),i.slidesPerGroup);A=(D=B-(N=Math.floor(B/H))*H+G*i.slidesPerGroup)+N*T/k,O.css({"-webkit-box-ordinal-group":A,"-moz-box-ordinal-group":A,"-ms-flex-order":A,"-webkit-order":A,order:A})}else"column"===i.slidesPerColumnFill?(N=I-(D=Math.floor(I/k))*k,(D>L||D===L&&N===k-1)&&(N+=1)>=k&&(N=0,D+=1)):D=I-(N=Math.floor(I/$))*$;O.css(t("margin-top"),0!==N?i.spaceBetween&&i.spaceBetween+"px":"")}if("none"!==O.css("display")){if("auto"===i.slidesPerView){var X=getComputedStyle(O[0]),R=O[0].style.transform,Y=O[0].style.webkitTransform;if(R&&(O[0].style.transform="none"),Y&&(O[0].style.webkitTransform="none"),i.roundLengths)C=e.isHorizontal()?O.outerWidth(!0):O.outerHeight(!0);else{var V=a(X,"width"),W=a(X,"padding-left"),F=a(X,"padding-right"),_=a(X,"margin-left"),q=a(X,"margin-right"),j=X.getPropertyValue("box-sizing");if(j&&"border-box"===j)C=V+_+q;else{var U=O[0],K=U.clientWidth;C=V+W+F+_+q+(U.offsetWidth-K)}}R&&(O[0].style.transform=R),Y&&(O[0].style.webkitTransform=Y),i.roundLengths&&(C=Math.floor(C))}else C=(r-(i.slidesPerView-1)*w)/i.slidesPerView,i.roundLengths&&(C=Math.floor(C)),p[I]&&(p[I].style[t("width")]=C+"px");p[I]&&(p[I].swiperSlideSize=C),v.push(C),i.centeredSlides?(y=y+C/2+E/2+w,0===E&&0!==I&&(y=y-r/2-w),0===I&&(y=y-r/2-w),Math.abs(y)<.001&&(y=0),i.roundLengths&&(y=Math.floor(y)),x%i.slidesPerGroup==0&&c.push(y),h.push(y)):(i.roundLengths&&(y=Math.floor(y)),(x-Math.min(e.params.slidesPerGroupSkip,x))%e.params.slidesPerGroup==0&&c.push(y),h.push(y),y=y+C+w),e.virtualSize+=C+w,E=C,x+=1}}if(e.virtualSize=Math.max(e.virtualSize,r)+m,n&&l&&("slide"===i.effect||"coverflow"===i.effect)&&s.css({width:e.virtualSize+i.spaceBetween+"px"}),i.setWrapperSize)s.css(((z={})[t("width")]=e.virtualSize+i.spaceBetween+"px",z));if(i.slidesPerColumn>1)if(e.virtualSize=(C+i.spaceBetween)*T,e.virtualSize=Math.ceil(e.virtualSize/i.slidesPerColumn)-i.spaceBetween,s.css(((P={})[t("width")]=e.virtualSize+i.spaceBetween+"px",P)),i.centeredSlides){M=[];for(var Z=0;Z1&&c.push(e.virtualSize-r)}if(0===c.length&&(c=[0]),0!==i.spaceBetween){var te,ae=e.isHorizontal()&&n?"marginLeft":t("marginRight");p.filter((function(e,t){return!i.cssMode||t!==p.length-1})).css(((te={})[ae]=w+"px",te))}if(i.centeredSlides&&i.centeredSlidesBounds){var ie=0;v.forEach((function(e){ie+=e+(i.spaceBetween?i.spaceBetween:0)}));var se=(ie-=i.spaceBetween)-r;c=c.map((function(e){return e<0?-f:e>se?se+m:e}))}if(i.centerInsufficientSlides){var re=0;if(v.forEach((function(e){re+=e+(i.spaceBetween?i.spaceBetween:0)})),(re-=i.spaceBetween)1)if(a.params.centeredSlides)a.visibleSlides.each((function(e){i.push(e)}));else for(t=0;ta.slides.length&&!s)break;i.push(n(l))}else i.push(n(a.activeIndex));for(t=0;tr?o:r}r&&a.$wrapperEl.css("height",r+"px")},updateSlidesOffset:function(){for(var e=this.slides,t=0;t=0&&d1&&p<=t.size||d<=0&&p>=t.size)&&(t.visibleSlides.push(l),t.visibleSlidesIndexes.push(n),i.eq(n).addClass(a.slideVisibleClass))}l.progress=s?-o:o}t.visibleSlides=m(t.visibleSlides)}},updateProgress:function(e){var t=this;if(void 0===e){var a=t.rtlTranslate?-1:1;e=t&&t.translate&&t.translate*a||0}var i=t.params,s=t.maxTranslate()-t.minTranslate(),r=t.progress,n=t.isBeginning,l=t.isEnd,o=n,d=l;0===s?(r=0,n=!0,l=!0):(n=(r=(e-t.minTranslate())/s)<=0,l=r>=1),S(t,{progress:r,isBeginning:n,isEnd:l}),(i.watchSlidesProgress||i.watchSlidesVisibility||i.centeredSlides&&i.autoHeight)&&t.updateSlidesProgress(e),n&&!o&&t.emit("reachBeginning toEdge"),l&&!d&&t.emit("reachEnd toEdge"),(o&&!n||d&&!l)&&t.emit("fromEdge"),t.emit("progress",r)},updateSlidesClasses:function(){var e,t=this,a=t.slides,i=t.params,s=t.$wrapperEl,r=t.activeIndex,n=t.realIndex,l=t.virtual&&i.virtual.enabled;a.removeClass(i.slideActiveClass+" "+i.slideNextClass+" "+i.slidePrevClass+" "+i.slideDuplicateActiveClass+" "+i.slideDuplicateNextClass+" "+i.slideDuplicatePrevClass),(e=l?t.$wrapperEl.find("."+i.slideClass+'[data-swiper-slide-index="'+r+'"]'):a.eq(r)).addClass(i.slideActiveClass),i.loop&&(e.hasClass(i.slideDuplicateClass)?s.children("."+i.slideClass+":not(."+i.slideDuplicateClass+')[data-swiper-slide-index="'+n+'"]').addClass(i.slideDuplicateActiveClass):s.children("."+i.slideClass+"."+i.slideDuplicateClass+'[data-swiper-slide-index="'+n+'"]').addClass(i.slideDuplicateActiveClass));var o=e.nextAll("."+i.slideClass).eq(0).addClass(i.slideNextClass);i.loop&&0===o.length&&(o=a.eq(0)).addClass(i.slideNextClass);var d=e.prevAll("."+i.slideClass).eq(0).addClass(i.slidePrevClass);i.loop&&0===d.length&&(d=a.eq(-1)).addClass(i.slidePrevClass),i.loop&&(o.hasClass(i.slideDuplicateClass)?s.children("."+i.slideClass+":not(."+i.slideDuplicateClass+')[data-swiper-slide-index="'+o.attr("data-swiper-slide-index")+'"]').addClass(i.slideDuplicateNextClass):s.children("."+i.slideClass+"."+i.slideDuplicateClass+'[data-swiper-slide-index="'+o.attr("data-swiper-slide-index")+'"]').addClass(i.slideDuplicateNextClass),d.hasClass(i.slideDuplicateClass)?s.children("."+i.slideClass+":not(."+i.slideDuplicateClass+')[data-swiper-slide-index="'+d.attr("data-swiper-slide-index")+'"]').addClass(i.slideDuplicatePrevClass):s.children("."+i.slideClass+"."+i.slideDuplicateClass+'[data-swiper-slide-index="'+d.attr("data-swiper-slide-index")+'"]').addClass(i.slideDuplicatePrevClass)),t.emitSlidesClasses()},updateActiveIndex:function(e){var t,a=this,i=a.rtlTranslate?a.translate:-a.translate,s=a.slidesGrid,r=a.snapGrid,n=a.params,l=a.activeIndex,o=a.realIndex,d=a.snapIndex,p=e;if(void 0===p){for(var u=0;u=s[u]&&i=s[u]&&i=s[u]&&(p=u);n.normalizeSlideIndex&&(p<0||void 0===p)&&(p=0)}if(r.indexOf(i)>=0)t=r.indexOf(i);else{var c=Math.min(n.slidesPerGroupSkip,p);t=c+Math.floor((p-c)/n.slidesPerGroup)}if(t>=r.length&&(t=r.length-1),p!==l){var h=parseInt(a.slides.eq(p).attr("data-swiper-slide-index")||p,10);S(a,{snapIndex:t,realIndex:h,previousIndex:l,activeIndex:p}),a.emit("activeIndexChange"),a.emit("snapIndexChange"),o!==h&&a.emit("realIndexChange"),(a.initialized||a.params.runCallbacksOnInit)&&a.emit("slideChange")}else t!==d&&(a.snapIndex=t,a.emit("snapIndexChange"))},updateClickedSlide:function(e){var t,a=this,i=a.params,s=m(e.target).closest("."+i.slideClass)[0],r=!1;if(s)for(var n=0;nd?d:i&&er?"next":is?"next":i=d.length&&(g=d.length-1),(c||o.initialSlide||0)===(u||0)&&a&&n.emit("beforeSlideChangeStart");var b,w=-d[g];if(n.updateProgress(w),o.normalizeSlideIndex)for(var y=0;y=x&&E=x&&E=x&&(l=y)}if(n.initialized&&l!==c){if(!n.allowSlideNext&&wn.translate&&w>n.maxTranslate()&&(c||0)!==l)return!1}if(b=l>c?"next":l=e&&(h=e)})),void 0!==h&&(p=l.indexOf(h))<0&&(p=i.activeIndex-1),i.slideTo(p,e,t,a)},slideReset:function(e,t,a){return void 0===e&&(e=this.params.speed),void 0===t&&(t=!0),this.slideTo(this.activeIndex,e,t,a)},slideToClosest:function(e,t,a,i){void 0===e&&(e=this.params.speed),void 0===t&&(t=!0),void 0===i&&(i=.5);var s=this,r=s.activeIndex,n=Math.min(s.params.slidesPerGroupSkip,r),l=n+Math.floor((r-n)/s.params.slidesPerGroup),o=s.rtlTranslate?s.translate:-s.translate;if(o>=s.snapGrid[l]){var d=s.snapGrid[l];o-d>(s.snapGrid[l+1]-d)*i&&(r+=s.params.slidesPerGroup)}else{var p=s.snapGrid[l-1];o-p<=(s.snapGrid[l]-p)*i&&(r-=s.params.slidesPerGroup)}return r=Math.max(r,0),r=Math.min(r,s.slidesGrid.length-1),s.slideTo(r,e,t,a)},slideToClickedSlide:function(){var e,t=this,a=t.params,i=t.$wrapperEl,s="auto"===a.slidesPerView?t.slidesPerViewDynamic():a.slidesPerView,r=t.clickedIndex;if(a.loop){if(t.animating)return;e=parseInt(m(t.clickedSlide).attr("data-swiper-slide-index"),10),a.centeredSlides?rt.slides.length-t.loopedSlides+s/2?(t.loopFix(),r=i.children("."+a.slideClass+'[data-swiper-slide-index="'+e+'"]:not(.'+a.slideDuplicateClass+")").eq(0).index(),E((function(){t.slideTo(r)}))):t.slideTo(r):r>t.slides.length-s?(t.loopFix(),r=i.children("."+a.slideClass+'[data-swiper-slide-index="'+e+'"]:not(.'+a.slideDuplicateClass+")").eq(0).index(),E((function(){t.slideTo(r)}))):t.slideTo(r)}else t.slideTo(r)}},loop:{loopCreate:function(){var e=this,t=r(),a=e.params,i=e.$wrapperEl;i.children("."+a.slideClass+"."+a.slideDuplicateClass).remove();var s=i.children("."+a.slideClass);if(a.loopFillGroupWithBlank){var n=a.slidesPerGroup-s.length%a.slidesPerGroup;if(n!==a.slidesPerGroup){for(var l=0;ls.length&&(e.loopedSlides=s.length);var d=[],p=[];s.each((function(t,a){var i=m(t);a=s.length-e.loopedSlides&&d.push(t),i.attr("data-swiper-slide-index",a)}));for(var u=0;u=0;c-=1)i.prepend(m(d[c].cloneNode(!0)).addClass(a.slideDuplicateClass))},loopFix:function(){var e=this;e.emit("beforeLoopFix");var t,a=e.activeIndex,i=e.slides,s=e.loopedSlides,r=e.allowSlidePrev,n=e.allowSlideNext,l=e.snapGrid,o=e.rtlTranslate;e.allowSlidePrev=!0,e.allowSlideNext=!0;var d=-l[a]-e.getTranslate();if(a=i.length-s){t=-i.length+a+s,t+=s,e.slideTo(t,0,!1,!0)&&0!==d&&e.setTranslate((o?-e.translate:e.translate)-d)}e.allowSlidePrev=r,e.allowSlideNext=n,e.emit("loopFix")},loopDestroy:function(){var e=this,t=e.$wrapperEl,a=e.params,i=e.slides;t.children("."+a.slideClass+"."+a.slideDuplicateClass+",."+a.slideClass+"."+a.slideBlankClass).remove(),i.removeAttr("data-swiper-slide-index")}},grabCursor:{setGrabCursor:function(e){var t=this;if(!(t.support.touch||!t.params.simulateTouch||t.params.watchOverflow&&t.isLocked||t.params.cssMode)){var a=t.el;a.style.cursor="move",a.style.cursor=e?"-webkit-grabbing":"-webkit-grab",a.style.cursor=e?"-moz-grabbin":"-moz-grab",a.style.cursor=e?"grabbing":"grab"}},unsetGrabCursor:function(){var e=this;e.support.touch||e.params.watchOverflow&&e.isLocked||e.params.cssMode||(e.el.style.cursor="")}},manipulation:{appendSlide:function(e){var t=this,a=t.$wrapperEl,i=t.params;if(i.loop&&t.loopDestroy(),"object"==typeof e&&"length"in e)for(var s=0;s=n)a.appendSlide(t);else{for(var l=r>e?r+1:r,o=[],d=n-1;d>=e;d-=1){var p=a.slides.eq(d);p.remove(),o.unshift(p)}if("object"==typeof t&&"length"in t){for(var u=0;ue?r+t.length:r}else i.append(t);for(var c=0;c1,c=p.slidesPerColumn>1,h=r.enabled;u&&!c?(n.removeClass(r.containerModifierClass+"multirow "+r.containerModifierClass+"multirow-column"),e.emitContainerClasses()):!u&&c&&(n.addClass(r.containerModifierClass+"multirow"),"column"===p.slidesPerColumnFill&&n.addClass(r.containerModifierClass+"multirow-column"),e.emitContainerClasses());var v=p.direction&&p.direction!==r.direction,f=r.loop&&(p.slidesPerView!==r.slidesPerView||v);v&&a&&e.changeDirection(),S(e.params,p);var m=e.params.enabled;S(e,{allowTouchMove:e.params.allowTouchMove,allowSlideNext:e.params.allowSlideNext,allowSlidePrev:e.params.allowSlidePrev}),h&&!m?e.disable():!h&&m&&e.enable(),e.currentBreakpoint=o,e.emit("_beforeBreakpoint",p),f&&a&&(e.loopDestroy(),e.loopCreate(),e.updateSlides(),e.slideTo(t-s+e.loopedSlides,0,!1)),e.emit("breakpoint",p)}}},getBreakpoint:function(e,t,a){if(void 0===t&&(t="window"),e&&("container"!==t||a)){var i=!1,s=l(),r="window"===t?s.innerHeight:a.clientHeight,n=Object.keys(e).map((function(e){if("string"==typeof e&&0===e.indexOf("@")){var t=parseFloat(e.substr(1));return{value:r*t,point:e}}return{value:e,point:e}}));n.sort((function(e,t){return parseInt(e.value,10)-parseInt(t.value,10)}));for(var o=0;o0&&t.slidesOffsetBefore+t.spaceBetween*(e.slides.length-1)+e.slides[0].offsetWidth*e.slides.length;t.slidesOffsetBefore&&t.slidesOffsetAfter&&i?e.isLocked=i<=e.size:e.isLocked=1===e.snapGrid.length,e.allowSlideNext=!e.isLocked,e.allowSlidePrev=!e.isLocked,a!==e.isLocked&&e.emit(e.isLocked?"lock":"unlock"),a&&a!==e.isLocked&&(e.isEnd=!1,e.navigation&&e.navigation.update())}},classes:{addClasses:function(){var e,t,a,i=this,s=i.classNames,r=i.params,n=i.rtl,l=i.$el,o=i.device,d=i.support,p=(e=["initialized",r.direction,{"pointer-events":d.pointerEvents&&!d.touch},{"free-mode":r.freeMode},{autoheight:r.autoHeight},{rtl:n},{multirow:r.slidesPerColumn>1},{"multirow-column":r.slidesPerColumn>1&&"column"===r.slidesPerColumnFill},{android:o.android},{ios:o.ios},{"css-mode":r.cssMode}],t=r.containerModifierClass,a=[],e.forEach((function(e){"object"==typeof e?Object.keys(e).forEach((function(i){e[i]&&a.push(t+i)})):"string"==typeof e&&a.push(t+e)})),a);s.push.apply(s,p),l.addClass([].concat(s).join(" ")),i.emitContainerClasses()},removeClasses:function(){var e=this,t=e.$el,a=e.classNames;t.removeClass(a.join(" ")),e.emitContainerClasses()}},images:{loadImage:function(e,t,a,i,s,r){var n,o=l();function d(){r&&r()}m(e).parent("picture")[0]||e.complete&&s?d():t?((n=new o.Image).onload=d,n.onerror=d,i&&(n.sizes=i),a&&(n.srcset=a),t&&(n.src=t)):d()},preloadImages:function(){var e=this;function t(){null!=e&&e&&!e.destroyed&&(void 0!==e.imagesLoaded&&(e.imagesLoaded+=1),e.imagesLoaded===e.imagesToLoad.length&&(e.params.updateOnImagesReady&&e.update(),e.emit("imagesReady")))}e.imagesToLoad=e.$el.find("img");for(var a=0;a1){var n=[];return m(a.el).each((function(e){var i=S({},a,{el:e});n.push(new t(i))})),n}var l=this;l.__swiper__=!0,l.support=k(),l.device=$({userAgent:a.userAgent}),l.browser=L(),l.eventsListeners={},l.eventsAnyListeners=[],void 0===l.modules&&(l.modules={}),Object.keys(l.modules).forEach((function(e){var t=l.modules[e];if(t.params){var i=Object.keys(t.params)[0],s=t.params[i];if("object"!=typeof s||null===s)return;if(["navigation","pagination","scrollbar"].indexOf(i)>=0&&!0===a[i]&&(a[i]={auto:!0}),!(i in a)||!("enabled"in s))return;!0===a[i]&&(a[i]={enabled:!0}),"object"!=typeof a[i]||"enabled"in a[i]||(a[i].enabled=!0),a[i]||(a[i]={enabled:!1})}}));var o,d,p=S({},V);return l.useParams(p),l.params=S({},p,F,a),l.originalParams=S({},l.params),l.passedParams=S({},a),l.params&&l.params.on&&Object.keys(l.params.on).forEach((function(e){l.on(e,l.params.on[e])})),l.params&&l.params.onAny&&l.onAny(l.params.onAny),l.$=m,S(l,{enabled:l.params.enabled,el:e,classNames:[],slides:m(),slidesGrid:[],snapGrid:[],slidesSizesGrid:[],isHorizontal:function(){return"horizontal"===l.params.direction},isVertical:function(){return"vertical"===l.params.direction},activeIndex:0,realIndex:0,isBeginning:!0,isEnd:!1,translate:0,previousTranslate:0,progress:0,velocity:0,animating:!1,allowSlideNext:l.params.allowSlideNext,allowSlidePrev:l.params.allowSlidePrev,touchEvents:(o=["touchstart","touchmove","touchend","touchcancel"],d=["mousedown","mousemove","mouseup"],l.support.pointerEvents&&(d=["pointerdown","pointermove","pointerup"]),l.touchEventsTouch={start:o[0],move:o[1],end:o[2],cancel:o[3]},l.touchEventsDesktop={start:d[0],move:d[1],end:d[2]},l.support.touch||!l.params.simulateTouch?l.touchEventsTouch:l.touchEventsDesktop),touchEventsData:{isTouched:void 0,isMoved:void 0,allowTouchCallbacks:void 0,touchStartTime:void 0,isScrolling:void 0,currentTranslate:void 0,startTranslate:void 0,allowThresholdMove:void 0,focusableElements:l.params.focusableElements,lastClickTime:x(),clickTimeout:void 0,velocities:[],allowMomentumBounce:void 0,isTouchEvent:void 0,startMoving:void 0},allowClick:!0,allowTouchMove:l.params.allowTouchMove,touches:{startX:0,startY:0,currentX:0,currentY:0,diff:0},imagesToLoad:[],imagesLoaded:0}),l.useModules(),l.emit("_swiper"),l.params.init&&l.init(),l}var a,i,s,n=t.prototype;return n.enable=function(){var e=this;e.enabled||(e.enabled=!0,e.params.grabCursor&&e.setGrabCursor(),e.emit("enable"))},n.disable=function(){var e=this;e.enabled&&(e.enabled=!1,e.params.grabCursor&&e.unsetGrabCursor(),e.emit("disable"))},n.setProgress=function(e,t){var a=this;e=Math.min(Math.max(e,0),1);var i=a.minTranslate(),s=(a.maxTranslate()-i)*e+i;a.translateTo(s,void 0===t?0:t),a.updateActiveIndex(),a.updateSlidesClasses()},n.emitContainerClasses=function(){var e=this;if(e.params._emitClasses&&e.el){var t=e.el.className.split(" ").filter((function(t){return 0===t.indexOf("swiper-container")||0===t.indexOf(e.params.containerModifierClass)}));e.emit("_containerClasses",t.join(" "))}},n.getSlideClasses=function(e){var t=this;return e.className.split(" ").filter((function(e){return 0===e.indexOf("swiper-slide")||0===e.indexOf(t.params.slideClass)})).join(" ")},n.emitSlidesClasses=function(){var e=this;if(e.params._emitClasses&&e.el){var t=[];e.slides.each((function(a){var i=e.getSlideClasses(a);t.push({slideEl:a,classNames:i}),e.emit("_slideClass",a,i)})),e.emit("_slideClasses",t)}},n.slidesPerViewDynamic=function(){var e=this,t=e.params,a=e.slides,i=e.slidesGrid,s=e.size,r=e.activeIndex,n=1;if(t.centeredSlides){for(var l,o=a[r].swiperSlideSize,d=r+1;ds&&(l=!0));for(var p=r-1;p>=0;p-=1)a[p]&&!l&&(n+=1,(o+=a[p].swiperSlideSize)>s&&(l=!0))}else for(var u=r+1;u1)&&e.isEnd&&!e.params.centeredSlides?e.slideTo(e.slides.length-1,0,!1,!0):e.slideTo(e.activeIndex,0,!1,!0))||i(),a.watchOverflow&&t!==e.snapGrid&&e.checkOverflow(),e.emit("update")}function i(){var t=e.rtlTranslate?-1*e.translate:e.translate,a=Math.min(Math.max(t,e.maxTranslate()),e.minTranslate());e.setTranslate(a),e.updateActiveIndex(),e.updateSlidesClasses()}},n.changeDirection=function(e,t){void 0===t&&(t=!0);var a=this,i=a.params.direction;return e||(e="horizontal"===i?"vertical":"horizontal"),e===i||"horizontal"!==e&&"vertical"!==e||(a.$el.removeClass(""+a.params.containerModifierClass+i).addClass(""+a.params.containerModifierClass+e),a.emitContainerClasses(),a.params.direction=e,a.slides.each((function(t){"vertical"===e?t.style.width="":t.style.height=""})),a.emit("changeDirection"),t&&a.update()),a},n.mount=function(e){var t=this;if(t.mounted)return!0;var a=m(e||t.params.el);if(!(e=a[0]))return!1;e.swiper=t;var i=function(){return"."+(t.params.wrapperClass||"").trim().split(" ").join(".")},s=function(){if(e&&e.shadowRoot&&e.shadowRoot.querySelector){var t=m(e.shadowRoot.querySelector(i()));return t.children=function(e){return a.children(e)},t}return a.children(i())}();if(0===s.length&&t.params.createElements){var n=r().createElement("div");s=m(n),n.className=t.params.wrapperClass,a.append(n),a.children("."+t.params.slideClass).each((function(e){s.append(e)}))}return S(t,{$el:a,el:e,$wrapperEl:s,wrapperEl:s[0],mounted:!0,rtl:"rtl"===e.dir.toLowerCase()||"rtl"===a.css("direction"),rtlTranslate:"horizontal"===t.params.direction&&("rtl"===e.dir.toLowerCase()||"rtl"===a.css("direction")),wrongRTL:"-webkit-box"===s.css("display")}),!0},n.init=function(e){var t=this;return t.initialized||!1===t.mount(e)||(t.emit("beforeInit"),t.params.breakpoints&&t.setBreakpoint(),t.addClasses(),t.params.loop&&t.loopCreate(),t.updateSize(),t.updateSlides(),t.params.watchOverflow&&t.checkOverflow(),t.params.grabCursor&&t.enabled&&t.setGrabCursor(),t.params.preloadImages&&t.preloadImages(),t.params.loop?t.slideTo(t.params.initialSlide+t.loopedSlides,0,t.params.runCallbacksOnInit,!1,!0):t.slideTo(t.params.initialSlide,0,t.params.runCallbacksOnInit,!1,!0),t.attachEvents(),t.initialized=!0,t.emit("init"),t.emit("afterInit")),t},n.destroy=function(e,t){void 0===e&&(e=!0),void 0===t&&(t=!0);var a,i=this,s=i.params,r=i.$el,n=i.$wrapperEl,l=i.slides;return void 0===i.params||i.destroyed||(i.emit("beforeDestroy"),i.initialized=!1,i.detachEvents(),s.loop&&i.loopDestroy(),t&&(i.removeClasses(),r.removeAttr("style"),n.removeAttr("style"),l&&l.length&&l.removeClass([s.slideVisibleClass,s.slideActiveClass,s.slideNextClass,s.slidePrevClass].join(" ")).removeAttr("style").removeAttr("data-swiper-slide-index")),i.emit("destroy"),Object.keys(i.eventsListeners).forEach((function(e){i.off(e)})),!1!==e&&(i.$el[0].swiper=null,a=i,Object.keys(a).forEach((function(e){try{a[e]=null}catch(e){}try{delete a[e]}catch(e){}}))),i.destroyed=!0),null},t.extendDefaults=function(e){S(F,e)},t.installModule=function(e){t.prototype.modules||(t.prototype.modules={});var a=e.name||Object.keys(t.prototype.modules).length+"_"+x();t.prototype.modules[a]=e},t.use=function(e){return Array.isArray(e)?(e.forEach((function(e){return t.installModule(e)})),t):(t.installModule(e),t)},a=t,s=[{key:"extendedDefaults",get:function(){return F}},{key:"defaults",get:function(){return V}}],(i=null)&&e(a.prototype,i),s&&e(a,s),t}();Object.keys(W).forEach((function(e){Object.keys(W[e]).forEach((function(t){_.prototype[t]=W[e][t]}))})),_.use([I,A]);var q={update:function(e){var t=this,a=t.params,i=a.slidesPerView,s=a.slidesPerGroup,r=a.centeredSlides,n=t.params.virtual,l=n.addSlidesBefore,o=n.addSlidesAfter,d=t.virtual,p=d.from,u=d.to,c=d.slides,h=d.slidesGrid,v=d.renderSlide,f=d.offset;t.updateActiveIndex();var m,g,b,w=t.activeIndex||0;m=t.rtlTranslate?"right":t.isHorizontal()?"left":"top",r?(g=Math.floor(i/2)+s+o,b=Math.floor(i/2)+s+l):(g=i+(s-1)+o,b=s+l);var y=Math.max((w||0)-b,0),E=Math.min((w||0)+g,c.length-1),x=(t.slidesGrid[y]||0)-(t.slidesGrid[0]||0);function T(){t.updateSlides(),t.updateProgress(),t.updateSlidesClasses(),t.lazy&&t.params.lazy.enabled&&t.lazy.load()}if(S(t.virtual,{from:y,to:E,offset:x,slidesGrid:t.slidesGrid}),p===y&&u===E&&!e)return t.slidesGrid!==h&&x!==f&&t.slides.css(m,x+"px"),void t.updateProgress();if(t.params.virtual.renderExternal)return t.params.virtual.renderExternal.call(t,{offset:x,from:y,to:E,slides:function(){for(var e=[],t=y;t<=E;t+=1)e.push(c[t]);return e}()}),void(t.params.virtual.renderExternalUpdate&&T());var C=[],M=[];if(e)t.$wrapperEl.find("."+t.params.slideClass).remove();else for(var z=p;z<=u;z+=1)(zE)&&t.$wrapperEl.find("."+t.params.slideClass+'[data-swiper-slide-index="'+z+'"]').remove();for(var P=0;P=y&&P<=E&&(void 0===u||e?M.push(P):(P>u&&M.push(P),P'+e+"
");return s.attr("data-swiper-slide-index")||s.attr("data-swiper-slide-index",t),i.cache&&(a.virtual.cache[t]=s),s},appendSlide:function(e){var t=this;if("object"==typeof e&&"length"in e)for(var a=0;a=0;i-=1)t.virtual.slides.splice(e[i],1),t.params.virtual.cache&&delete t.virtual.cache[e[i]],e[i]0&&0===t.$el.parents("."+t.params.slideActiveClass).length)return;var g=t.$el,b=g[0].clientWidth,w=g[0].clientHeight,y=a.innerWidth,E=a.innerHeight,x=t.$el.offset();s&&(x.left-=t.$el[0].scrollLeft);for(var T=[[x.left,x.top],[x.left+b,x.top],[x.left,x.top+w],[x.left+b,x.top+w]],C=0;C=0&&S[0]<=y&&S[1]>=0&&S[1]<=E){if(0===S[0]&&0===S[1])continue;m=!0}}if(!m)return}t.isHorizontal()?((p||u||c||h)&&(n.preventDefault?n.preventDefault():n.returnValue=!1),((u||h)&&!s||(p||c)&&s)&&t.slideNext(),((p||c)&&!s||(u||h)&&s)&&t.slidePrev()):((p||u||v||f)&&(n.preventDefault?n.preventDefault():n.returnValue=!1),(u||f)&&t.slideNext(),(p||v)&&t.slidePrev()),t.emit("keyPress",o)}}},enable:function(){var e=this,t=r();e.keyboard.enabled||(m(t).on("keydown",e.keyboard.handle),e.keyboard.enabled=!0)},disable:function(){var e=this,t=r();e.keyboard.enabled&&(m(t).off("keydown",e.keyboard.handle),e.keyboard.enabled=!1)}},K={name:"keyboard",params:{keyboard:{enabled:!1,onlyInViewport:!0,pageUpDown:!0}},create:function(){M(this,{keyboard:t({enabled:!1},U)})},on:{init:function(e){e.params.keyboard.enabled&&e.keyboard.enable()},destroy:function(e){e.keyboard.enabled&&e.keyboard.disable()}}};var Z={lastScrollTime:x(),lastEventBeforeSnap:void 0,recentWheelEvents:[],event:function(){return l().navigator.userAgent.indexOf("firefox")>-1?"DOMMouseScroll":function(){var e=r(),t="onwheel",a=t in e;if(!a){var i=e.createElement("div");i.setAttribute(t,"return;"),a="function"==typeof i.onwheel}return!a&&e.implementation&&e.implementation.hasFeature&&!0!==e.implementation.hasFeature("","")&&(a=e.implementation.hasFeature("Events.wheel","3.0")),a}()?"wheel":"mousewheel"},normalize:function(e){var t=0,a=0,i=0,s=0;return"detail"in e&&(a=e.detail),"wheelDelta"in e&&(a=-e.wheelDelta/120),"wheelDeltaY"in e&&(a=-e.wheelDeltaY/120),"wheelDeltaX"in e&&(t=-e.wheelDeltaX/120),"axis"in e&&e.axis===e.HORIZONTAL_AXIS&&(t=a,a=0),i=10*t,s=10*a,"deltaY"in e&&(s=e.deltaY),"deltaX"in e&&(i=e.deltaX),e.shiftKey&&!i&&(i=s,s=0),(i||s)&&e.deltaMode&&(1===e.deltaMode?(i*=40,s*=40):(i*=800,s*=800)),i&&!t&&(t=i<1?-1:1),s&&!a&&(a=s<1?-1:1),{spinX:t,spinY:a,pixelX:i,pixelY:s}},handleMouseEnter:function(){this.enabled&&(this.mouseEntered=!0)},handleMouseLeave:function(){this.enabled&&(this.mouseEntered=!1)},handle:function(e){var t=e,a=this;if(a.enabled){var i=a.params.mousewheel;a.params.cssMode&&t.preventDefault();var s=a.$el;if("container"!==a.params.mousewheel.eventsTarget&&(s=m(a.params.mousewheel.eventsTarget)),!a.mouseEntered&&!s[0].contains(t.target)&&!i.releaseOnEdges)return!0;t.originalEvent&&(t=t.originalEvent);var r=0,n=a.rtlTranslate?-1:1,l=Z.normalize(t);if(i.forceToAxis)if(a.isHorizontal()){if(!(Math.abs(l.pixelX)>Math.abs(l.pixelY)))return!0;r=-l.pixelX*n}else{if(!(Math.abs(l.pixelY)>Math.abs(l.pixelX)))return!0;r=-l.pixelY}else r=Math.abs(l.pixelX)>Math.abs(l.pixelY)?-l.pixelX*n:-l.pixelY;if(0===r)return!0;i.invert&&(r=-r);var o=a.getTranslate()+r*i.sensitivity;if(o>=a.minTranslate()&&(o=a.minTranslate()),o<=a.maxTranslate()&&(o=a.maxTranslate()),(!!a.params.loop||!(o===a.minTranslate()||o===a.maxTranslate()))&&a.params.nested&&t.stopPropagation(),a.params.freeMode){var d={time:x(),delta:Math.abs(r),direction:Math.sign(r)},p=a.mousewheel.lastEventBeforeSnap,u=p&&d.time=a.minTranslate()&&(c=a.minTranslate()),c<=a.maxTranslate()&&(c=a.maxTranslate()),a.setTransition(0),a.setTranslate(c),a.updateProgress(),a.updateActiveIndex(),a.updateSlidesClasses(),(!h&&a.isBeginning||!v&&a.isEnd)&&a.updateSlidesClasses(),a.params.freeModeSticky){clearTimeout(a.mousewheel.timeout),a.mousewheel.timeout=void 0;var f=a.mousewheel.recentWheelEvents;f.length>=15&&f.shift();var g=f.length?f[f.length-1]:void 0,b=f[0];if(f.push(d),g&&(d.delta>g.delta||d.direction!==g.direction))f.splice(0);else if(f.length>=15&&d.time-b.time<500&&b.delta-d.delta>=1&&d.delta<=6){var w=r>0?.8:.2;a.mousewheel.lastEventBeforeSnap=d,f.splice(0),a.mousewheel.timeout=E((function(){a.slideToClosest(a.params.speed,!0,void 0,w)}),0)}a.mousewheel.timeout||(a.mousewheel.timeout=E((function(){a.mousewheel.lastEventBeforeSnap=d,f.splice(0),a.slideToClosest(a.params.speed,!0,void 0,.5)}),500))}if(u||a.emit("scroll",t),a.params.autoplay&&a.params.autoplayDisableOnInteraction&&a.autoplay.stop(),c===a.minTranslate()||c===a.maxTranslate())return!0}}else{var y={time:x(),delta:Math.abs(r),direction:Math.sign(r),raw:e},T=a.mousewheel.recentWheelEvents;T.length>=2&&T.shift();var C=T.length?T[T.length-1]:void 0;if(T.push(y),C?(y.direction!==C.direction||y.delta>C.delta||y.time>C.time+150)&&a.mousewheel.animateSlider(y):a.mousewheel.animateSlider(y),a.mousewheel.releaseScroll(y))return!0}return t.preventDefault?t.preventDefault():t.returnValue=!1,!1}},animateSlider:function(e){var t=this,a=l();return!(this.params.mousewheel.thresholdDelta&&e.delta=6&&x()-t.mousewheel.lastScrollTime<60||(e.direction<0?t.isEnd&&!t.params.loop||t.animating||(t.slideNext(),t.emit("scroll",e.raw)):t.isBeginning&&!t.params.loop||t.animating||(t.slidePrev(),t.emit("scroll",e.raw)),t.mousewheel.lastScrollTime=(new a.Date).getTime(),!1)))},releaseScroll:function(e){var t=this,a=t.params.mousewheel;if(e.direction<0){if(t.isEnd&&!t.params.loop&&a.releaseOnEdges)return!0}else if(t.isBeginning&&!t.params.loop&&a.releaseOnEdges)return!0;return!1},enable:function(){var e=this,t=Z.event();if(e.params.cssMode)return e.wrapperEl.removeEventListener(t,e.mousewheel.handle),!0;if(!t)return!1;if(e.mousewheel.enabled)return!1;var a=e.$el;return"container"!==e.params.mousewheel.eventsTarget&&(a=m(e.params.mousewheel.eventsTarget)),a.on("mouseenter",e.mousewheel.handleMouseEnter),a.on("mouseleave",e.mousewheel.handleMouseLeave),a.on(t,e.mousewheel.handle),e.mousewheel.enabled=!0,!0},disable:function(){var e=this,t=Z.event();if(e.params.cssMode)return e.wrapperEl.addEventListener(t,e.mousewheel.handle),!0;if(!t)return!1;if(!e.mousewheel.enabled)return!1;var a=e.$el;return"container"!==e.params.mousewheel.eventsTarget&&(a=m(e.params.mousewheel.eventsTarget)),a.off(t,e.mousewheel.handle),e.mousewheel.enabled=!1,!0}},J={toggleEl:function(e,t){e[t?"addClass":"removeClass"](this.params.navigation.disabledClass),e[0]&&"BUTTON"===e[0].tagName&&(e[0].disabled=t)},update:function(){var e=this,t=e.params.navigation,a=e.navigation.toggleEl;if(!e.params.loop){var i=e.navigation,s=i.$nextEl,r=i.$prevEl;r&&r.length>0&&(e.isBeginning?a(r,!0):a(r,!1),e.params.watchOverflow&&e.enabled&&r[e.isLocked?"addClass":"removeClass"](t.lockClass)),s&&s.length>0&&(e.isEnd?a(s,!0):a(s,!1),e.params.watchOverflow&&e.enabled&&s[e.isLocked?"addClass":"removeClass"](t.lockClass))}},onPrevClick:function(e){var t=this;e.preventDefault(),t.isBeginning&&!t.params.loop||t.slidePrev()},onNextClick:function(e){var t=this;e.preventDefault(),t.isEnd&&!t.params.loop||t.slideNext()},init:function(){var e,t,a=this,i=a.params.navigation;(a.params.navigation=P(a.$el,a.params.navigation,a.params.createElements,{nextEl:"swiper-button-next",prevEl:"swiper-button-prev"}),i.nextEl||i.prevEl)&&(i.nextEl&&(e=m(i.nextEl),a.params.uniqueNavElements&&"string"==typeof i.nextEl&&e.length>1&&1===a.$el.find(i.nextEl).length&&(e=a.$el.find(i.nextEl))),i.prevEl&&(t=m(i.prevEl),a.params.uniqueNavElements&&"string"==typeof i.prevEl&&t.length>1&&1===a.$el.find(i.prevEl).length&&(t=a.$el.find(i.prevEl))),e&&e.length>0&&e.on("click",a.navigation.onNextClick),t&&t.length>0&&t.on("click",a.navigation.onPrevClick),S(a.navigation,{$nextEl:e,nextEl:e&&e[0],$prevEl:t,prevEl:t&&t[0]}),a.enabled||(e&&e.addClass(i.lockClass),t&&t.addClass(i.lockClass)))},destroy:function(){var e=this,t=e.navigation,a=t.$nextEl,i=t.$prevEl;a&&a.length&&(a.off("click",e.navigation.onNextClick),a.removeClass(e.params.navigation.disabledClass)),i&&i.length&&(i.off("click",e.navigation.onPrevClick),i.removeClass(e.params.navigation.disabledClass))}},Q={update:function(){var e=this,t=e.rtl,a=e.params.pagination;if(a.el&&e.pagination.el&&e.pagination.$el&&0!==e.pagination.$el.length){var i,s=e.virtual&&e.params.virtual.enabled?e.virtual.slides.length:e.slides.length,r=e.pagination.$el,n=e.params.loop?Math.ceil((s-2*e.loopedSlides)/e.params.slidesPerGroup):e.snapGrid.length;if(e.params.loop?((i=Math.ceil((e.activeIndex-e.loopedSlides)/e.params.slidesPerGroup))>s-1-2*e.loopedSlides&&(i-=s-2*e.loopedSlides),i>n-1&&(i-=n),i<0&&"bullets"!==e.params.paginationType&&(i=n+i)):i=void 0!==e.snapIndex?e.snapIndex:e.activeIndex||0,"bullets"===a.type&&e.pagination.bullets&&e.pagination.bullets.length>0){var l,o,d,p=e.pagination.bullets;if(a.dynamicBullets&&(e.pagination.bulletSize=p.eq(0)[e.isHorizontal()?"outerWidth":"outerHeight"](!0),r.css(e.isHorizontal()?"width":"height",e.pagination.bulletSize*(a.dynamicMainBullets+4)+"px"),a.dynamicMainBullets>1&&void 0!==e.previousIndex&&(e.pagination.dynamicBulletIndex+=i-e.previousIndex,e.pagination.dynamicBulletIndex>a.dynamicMainBullets-1?e.pagination.dynamicBulletIndex=a.dynamicMainBullets-1:e.pagination.dynamicBulletIndex<0&&(e.pagination.dynamicBulletIndex=0)),l=i-e.pagination.dynamicBulletIndex,d=((o=l+(Math.min(p.length,a.dynamicMainBullets)-1))+l)/2),p.removeClass(a.bulletActiveClass+" "+a.bulletActiveClass+"-next "+a.bulletActiveClass+"-next-next "+a.bulletActiveClass+"-prev "+a.bulletActiveClass+"-prev-prev "+a.bulletActiveClass+"-main"),r.length>1)p.each((function(e){var t=m(e),s=t.index();s===i&&t.addClass(a.bulletActiveClass),a.dynamicBullets&&(s>=l&&s<=o&&t.addClass(a.bulletActiveClass+"-main"),s===l&&t.prev().addClass(a.bulletActiveClass+"-prev").prev().addClass(a.bulletActiveClass+"-prev-prev"),s===o&&t.next().addClass(a.bulletActiveClass+"-next").next().addClass(a.bulletActiveClass+"-next-next"))}));else{var u=p.eq(i),c=u.index();if(u.addClass(a.bulletActiveClass),a.dynamicBullets){for(var h=p.eq(l),v=p.eq(o),f=l;f<=o;f+=1)p.eq(f).addClass(a.bulletActiveClass+"-main");if(e.params.loop)if(c>=p.length-a.dynamicMainBullets){for(var g=a.dynamicMainBullets;g>=0;g-=1)p.eq(p.length-g).addClass(a.bulletActiveClass+"-main");p.eq(p.length-a.dynamicMainBullets-1).addClass(a.bulletActiveClass+"-prev")}else h.prev().addClass(a.bulletActiveClass+"-prev").prev().addClass(a.bulletActiveClass+"-prev-prev"),v.next().addClass(a.bulletActiveClass+"-next").next().addClass(a.bulletActiveClass+"-next-next");else h.prev().addClass(a.bulletActiveClass+"-prev").prev().addClass(a.bulletActiveClass+"-prev-prev"),v.next().addClass(a.bulletActiveClass+"-next").next().addClass(a.bulletActiveClass+"-next-next")}}if(a.dynamicBullets){var b=Math.min(p.length,a.dynamicMainBullets+4),w=(e.pagination.bulletSize*b-e.pagination.bulletSize)/2-d*e.pagination.bulletSize,y=t?"right":"left";p.css(e.isHorizontal()?y:"top",w+"px")}}if("fraction"===a.type&&(r.find(z(a.currentClass)).text(a.formatFractionCurrent(i+1)),r.find(z(a.totalClass)).text(a.formatFractionTotal(n))),"progressbar"===a.type){var E;E=a.progressbarOpposite?e.isHorizontal()?"vertical":"horizontal":e.isHorizontal()?"horizontal":"vertical";var x=(i+1)/n,T=1,C=1;"horizontal"===E?T=x:C=x,r.find(z(a.progressbarFillClass)).transform("translate3d(0,0,0) scaleX("+T+") scaleY("+C+")").transition(e.params.speed)}"custom"===a.type&&a.renderCustom?(r.html(a.renderCustom(e,i+1,n)),e.emit("paginationRender",r[0])):e.emit("paginationUpdate",r[0]),e.params.watchOverflow&&e.enabled&&r[e.isLocked?"addClass":"removeClass"](a.lockClass)}},render:function(){var e=this,t=e.params.pagination;if(t.el&&e.pagination.el&&e.pagination.$el&&0!==e.pagination.$el.length){var a=e.virtual&&e.params.virtual.enabled?e.virtual.slides.length:e.slides.length,i=e.pagination.$el,s="";if("bullets"===t.type){var r=e.params.loop?Math.ceil((a-2*e.loopedSlides)/e.params.slidesPerGroup):e.snapGrid.length;e.params.freeMode&&!e.params.loop&&r>a&&(r=a);for(var n=0;n";i.html(s),e.pagination.bullets=i.find(z(t.bulletClass))}"fraction"===t.type&&(s=t.renderFraction?t.renderFraction.call(e,t.currentClass,t.totalClass):' / ',i.html(s)),"progressbar"===t.type&&(s=t.renderProgressbar?t.renderProgressbar.call(e,t.progressbarFillClass):'',i.html(s)),"custom"!==t.type&&e.emit("paginationRender",e.pagination.$el[0])}},init:function(){var e=this;e.params.pagination=P(e.$el,e.params.pagination,e.params.createElements,{el:"swiper-pagination"});var t=e.params.pagination;if(t.el){var a=m(t.el);0!==a.length&&(e.params.uniqueNavElements&&"string"==typeof t.el&&a.length>1&&(a=e.$el.find(t.el)),"bullets"===t.type&&t.clickable&&a.addClass(t.clickableClass),a.addClass(t.modifierClass+t.type),"bullets"===t.type&&t.dynamicBullets&&(a.addClass(""+t.modifierClass+t.type+"-dynamic"),e.pagination.dynamicBulletIndex=0,t.dynamicMainBullets<1&&(t.dynamicMainBullets=1)),"progressbar"===t.type&&t.progressbarOpposite&&a.addClass(t.progressbarOppositeClass),t.clickable&&a.on("click",z(t.bulletClass),(function(t){t.preventDefault();var a=m(this).index()*e.params.slidesPerGroup;e.params.loop&&(a+=e.loopedSlides),e.slideTo(a)})),S(e.pagination,{$el:a,el:a[0]}),e.enabled||a.addClass(t.lockClass))}},destroy:function(){var e=this,t=e.params.pagination;if(t.el&&e.pagination.el&&e.pagination.$el&&0!==e.pagination.$el.length){var a=e.pagination.$el;a.removeClass(t.hiddenClass),a.removeClass(t.modifierClass+t.type),e.pagination.bullets&&e.pagination.bullets.removeClass(t.bulletActiveClass),t.clickable&&a.off("click",z(t.bulletClass))}}},ee={setTranslate:function(){var e=this;if(e.params.scrollbar.el&&e.scrollbar.el){var t=e.scrollbar,a=e.rtlTranslate,i=e.progress,s=t.dragSize,r=t.trackSize,n=t.$dragEl,l=t.$el,o=e.params.scrollbar,d=s,p=(r-s)*i;a?(p=-p)>0?(d=s-p,p=0):-p+s>r&&(d=r+p):p<0?(d=s+p,p=0):p+s>r&&(d=r-p),e.isHorizontal()?(n.transform("translate3d("+p+"px, 0, 0)"),n[0].style.width=d+"px"):(n.transform("translate3d(0px, "+p+"px, 0)"),n[0].style.height=d+"px"),o.hide&&(clearTimeout(e.scrollbar.timeout),l[0].style.opacity=1,e.scrollbar.timeout=setTimeout((function(){l[0].style.opacity=0,l.transition(400)}),1e3))}},setTransition:function(e){var t=this;t.params.scrollbar.el&&t.scrollbar.el&&t.scrollbar.$dragEl.transition(e)},updateSize:function(){var e=this;if(e.params.scrollbar.el&&e.scrollbar.el){var t=e.scrollbar,a=t.$dragEl,i=t.$el;a[0].style.width="",a[0].style.height="";var s,r=e.isHorizontal()?i[0].offsetWidth:i[0].offsetHeight,n=e.size/e.virtualSize,l=n*(r/e.size);s="auto"===e.params.scrollbar.dragSize?r*n:parseInt(e.params.scrollbar.dragSize,10),e.isHorizontal()?a[0].style.width=s+"px":a[0].style.height=s+"px",i[0].style.display=n>=1?"none":"",e.params.scrollbar.hide&&(i[0].style.opacity=0),S(t,{trackSize:r,divider:n,moveDivider:l,dragSize:s}),e.params.watchOverflow&&e.enabled&&t.$el[e.isLocked?"addClass":"removeClass"](e.params.scrollbar.lockClass)}},getPointerPosition:function(e){return this.isHorizontal()?"touchstart"===e.type||"touchmove"===e.type?e.targetTouches[0].clientX:e.clientX:"touchstart"===e.type||"touchmove"===e.type?e.targetTouches[0].clientY:e.clientY},setDragPosition:function(e){var t,a=this,i=a.scrollbar,s=a.rtlTranslate,r=i.$el,n=i.dragSize,l=i.trackSize,o=i.dragStartPos;t=(i.getPointerPosition(e)-r.offset()[a.isHorizontal()?"left":"top"]-(null!==o?o:n/2))/(l-n),t=Math.max(Math.min(t,1),0),s&&(t=1-t);var d=a.minTranslate()+(a.maxTranslate()-a.minTranslate())*t;a.updateProgress(d),a.setTranslate(d),a.updateActiveIndex(),a.updateSlidesClasses()},onDragStart:function(e){var t=this,a=t.params.scrollbar,i=t.scrollbar,s=t.$wrapperEl,r=i.$el,n=i.$dragEl;t.scrollbar.isTouched=!0,t.scrollbar.dragStartPos=e.target===n[0]||e.target===n?i.getPointerPosition(e)-e.target.getBoundingClientRect()[t.isHorizontal()?"left":"top"]:null,e.preventDefault(),e.stopPropagation(),s.transition(100),n.transition(100),i.setDragPosition(e),clearTimeout(t.scrollbar.dragTimeout),r.transition(0),a.hide&&r.css("opacity",1),t.params.cssMode&&t.$wrapperEl.css("scroll-snap-type","none"),t.emit("scrollbarDragStart",e)},onDragMove:function(e){var t=this,a=t.scrollbar,i=t.$wrapperEl,s=a.$el,r=a.$dragEl;t.scrollbar.isTouched&&(e.preventDefault?e.preventDefault():e.returnValue=!1,a.setDragPosition(e),i.transition(0),s.transition(0),r.transition(0),t.emit("scrollbarDragMove",e))},onDragEnd:function(e){var t=this,a=t.params.scrollbar,i=t.scrollbar,s=t.$wrapperEl,r=i.$el;t.scrollbar.isTouched&&(t.scrollbar.isTouched=!1,t.params.cssMode&&(t.$wrapperEl.css("scroll-snap-type",""),s.transition("")),a.hide&&(clearTimeout(t.scrollbar.dragTimeout),t.scrollbar.dragTimeout=E((function(){r.css("opacity",0),r.transition(400)}),1e3)),t.emit("scrollbarDragEnd",e),a.snapOnRelease&&t.slideToClosest())},enableDraggable:function(){var e=this;if(e.params.scrollbar.el){var t=r(),a=e.scrollbar,i=e.touchEventsTouch,s=e.touchEventsDesktop,n=e.params,l=e.support,o=a.$el[0],d=!(!l.passiveListener||!n.passiveListeners)&&{passive:!1,capture:!1},p=!(!l.passiveListener||!n.passiveListeners)&&{passive:!0,capture:!1};o&&(l.touch?(o.addEventListener(i.start,e.scrollbar.onDragStart,d),o.addEventListener(i.move,e.scrollbar.onDragMove,d),o.addEventListener(i.end,e.scrollbar.onDragEnd,p)):(o.addEventListener(s.start,e.scrollbar.onDragStart,d),t.addEventListener(s.move,e.scrollbar.onDragMove,d),t.addEventListener(s.end,e.scrollbar.onDragEnd,p)))}},disableDraggable:function(){var e=this;if(e.params.scrollbar.el){var t=r(),a=e.scrollbar,i=e.touchEventsTouch,s=e.touchEventsDesktop,n=e.params,l=e.support,o=a.$el[0],d=!(!l.passiveListener||!n.passiveListeners)&&{passive:!1,capture:!1},p=!(!l.passiveListener||!n.passiveListeners)&&{passive:!0,capture:!1};o&&(l.touch?(o.removeEventListener(i.start,e.scrollbar.onDragStart,d),o.removeEventListener(i.move,e.scrollbar.onDragMove,d),o.removeEventListener(i.end,e.scrollbar.onDragEnd,p)):(o.removeEventListener(s.start,e.scrollbar.onDragStart,d),t.removeEventListener(s.move,e.scrollbar.onDragMove,d),t.removeEventListener(s.end,e.scrollbar.onDragEnd,p)))}},init:function(){var e=this,t=e.scrollbar,a=e.$el;e.params.scrollbar=P(a,e.params.scrollbar,e.params.createElements,{el:"swiper-scrollbar"});var i=e.params.scrollbar;if(i.el){var s=m(i.el);e.params.uniqueNavElements&&"string"==typeof i.el&&s.length>1&&1===a.find(i.el).length&&(s=a.find(i.el));var r=s.find("."+e.params.scrollbar.dragClass);0===r.length&&(r=m('
'),s.append(r)),S(t,{$el:s,el:s[0],$dragEl:r,dragEl:r[0]}),i.draggable&&t.enableDraggable(),s&&s[e.enabled?"removeClass":"addClass"](e.params.scrollbar.lockClass)}},destroy:function(){this.scrollbar.disableDraggable()}},te={setTransform:function(e,t){var a=this.rtl,i=m(e),s=a?-1:1,r=i.attr("data-swiper-parallax")||"0",n=i.attr("data-swiper-parallax-x"),l=i.attr("data-swiper-parallax-y"),o=i.attr("data-swiper-parallax-scale"),d=i.attr("data-swiper-parallax-opacity");if(n||l?(n=n||"0",l=l||"0"):this.isHorizontal()?(n=r,l="0"):(l=r,n="0"),n=n.indexOf("%")>=0?parseInt(n,10)*t*s+"%":n*t*s+"px",l=l.indexOf("%")>=0?parseInt(l,10)*t+"%":l*t+"px",null!=d){var p=d-(d-1)*(1-Math.abs(t));i[0].style.opacity=p}if(null==o)i.transform("translate3d("+n+", "+l+", 0px)");else{var u=o-(o-1)*(1-Math.abs(t));i.transform("translate3d("+n+", "+l+", 0px) scale("+u+")")}},setTranslate:function(){var e=this,t=e.$el,a=e.slides,i=e.progress,s=e.snapGrid;t.children("[data-swiper-parallax], [data-swiper-parallax-x], [data-swiper-parallax-y], [data-swiper-parallax-opacity], [data-swiper-parallax-scale]").each((function(t){e.parallax.setTransform(t,i)})),a.each((function(t,a){var r=t.progress;e.params.slidesPerGroup>1&&"auto"!==e.params.slidesPerView&&(r+=Math.ceil(a/2)-i*(s.length-1)),r=Math.min(Math.max(r,-1),1),m(t).find("[data-swiper-parallax], [data-swiper-parallax-x], [data-swiper-parallax-y], [data-swiper-parallax-opacity], [data-swiper-parallax-scale]").each((function(t){e.parallax.setTransform(t,r)}))}))},setTransition:function(e){void 0===e&&(e=this.params.speed);this.$el.find("[data-swiper-parallax], [data-swiper-parallax-x], [data-swiper-parallax-y], [data-swiper-parallax-opacity], [data-swiper-parallax-scale]").each((function(t){var a=m(t),i=parseInt(a.attr("data-swiper-parallax-duration"),10)||e;0===e&&(i=0),a.transition(i)}))}},ae={getDistanceBetweenTouches:function(e){if(e.targetTouches.length<2)return 1;var t=e.targetTouches[0].pageX,a=e.targetTouches[0].pageY,i=e.targetTouches[1].pageX,s=e.targetTouches[1].pageY;return Math.sqrt(Math.pow(i-t,2)+Math.pow(s-a,2))},onGestureStart:function(e){var t=this,a=t.support,i=t.params.zoom,s=t.zoom,r=s.gesture;if(s.fakeGestureTouched=!1,s.fakeGestureMoved=!1,!a.gestures){if("touchstart"!==e.type||"touchstart"===e.type&&e.targetTouches.length<2)return;s.fakeGestureTouched=!0,r.scaleStart=ae.getDistanceBetweenTouches(e)}r.$slideEl&&r.$slideEl.length||(r.$slideEl=m(e.target).closest("."+t.params.slideClass),0===r.$slideEl.length&&(r.$slideEl=t.slides.eq(t.activeIndex)),r.$imageEl=r.$slideEl.find("img, svg, canvas, picture, .swiper-zoom-target"),r.$imageWrapEl=r.$imageEl.parent("."+i.containerClass),r.maxRatio=r.$imageWrapEl.attr("data-swiper-zoom")||i.maxRatio,0!==r.$imageWrapEl.length)?(r.$imageEl&&r.$imageEl.transition(0),t.zoom.isScaling=!0):r.$imageEl=void 0},onGestureChange:function(e){var t=this,a=t.support,i=t.params.zoom,s=t.zoom,r=s.gesture;if(!a.gestures){if("touchmove"!==e.type||"touchmove"===e.type&&e.targetTouches.length<2)return;s.fakeGestureMoved=!0,r.scaleMove=ae.getDistanceBetweenTouches(e)}r.$imageEl&&0!==r.$imageEl.length?(a.gestures?s.scale=e.scale*s.currentScale:s.scale=r.scaleMove/r.scaleStart*s.currentScale,s.scale>r.maxRatio&&(s.scale=r.maxRatio-1+Math.pow(s.scale-r.maxRatio+1,.5)),s.scales.touchesStart.x))return void(s.isTouched=!1);if(!t.isHorizontal()&&(Math.floor(s.minY)===Math.floor(s.startY)&&s.touchesCurrent.ys.touchesStart.y))return void(s.isTouched=!1)}e.cancelable&&e.preventDefault(),e.stopPropagation(),s.isMoved=!0,s.currentX=s.touchesCurrent.x-s.touchesStart.x+s.startX,s.currentY=s.touchesCurrent.y-s.touchesStart.y+s.startY,s.currentXs.maxX&&(s.currentX=s.maxX-1+Math.pow(s.currentX-s.maxX+1,.8)),s.currentYs.maxY&&(s.currentY=s.maxY-1+Math.pow(s.currentY-s.maxY+1,.8)),r.prevPositionX||(r.prevPositionX=s.touchesCurrent.x),r.prevPositionY||(r.prevPositionY=s.touchesCurrent.y),r.prevTime||(r.prevTime=Date.now()),r.x=(s.touchesCurrent.x-r.prevPositionX)/(Date.now()-r.prevTime)/2,r.y=(s.touchesCurrent.y-r.prevPositionY)/(Date.now()-r.prevTime)/2,Math.abs(s.touchesCurrent.x-r.prevPositionX)<2&&(r.x=0),Math.abs(s.touchesCurrent.y-r.prevPositionY)<2&&(r.y=0),r.prevPositionX=s.touchesCurrent.x,r.prevPositionY=s.touchesCurrent.y,r.prevTime=Date.now(),i.$imageWrapEl.transform("translate3d("+s.currentX+"px, "+s.currentY+"px,0)")}}},onTouchEnd:function(){var e=this.zoom,t=e.gesture,a=e.image,i=e.velocity;if(t.$imageEl&&0!==t.$imageEl.length){if(!a.isTouched||!a.isMoved)return a.isTouched=!1,void(a.isMoved=!1);a.isTouched=!1,a.isMoved=!1;var s=300,r=300,n=i.x*s,l=a.currentX+n,o=i.y*r,d=a.currentY+o;0!==i.x&&(s=Math.abs((l-a.currentX)/i.x)),0!==i.y&&(r=Math.abs((d-a.currentY)/i.y));var p=Math.max(s,r);a.currentX=l,a.currentY=d;var u=a.width*e.scale,c=a.height*e.scale;a.minX=Math.min(t.slideWidth/2-u/2,0),a.maxX=-a.minX,a.minY=Math.min(t.slideHeight/2-c/2,0),a.maxY=-a.minY,a.currentX=Math.max(Math.min(a.currentX,a.maxX),a.minX),a.currentY=Math.max(Math.min(a.currentY,a.maxY),a.minY),t.$imageWrapEl.transition(p).transform("translate3d("+a.currentX+"px, "+a.currentY+"px,0)")}},onTransitionEnd:function(){var e=this,t=e.zoom,a=t.gesture;a.$slideEl&&e.previousIndex!==e.activeIndex&&(a.$imageEl&&a.$imageEl.transform("translate3d(0,0,0) scale(1)"),a.$imageWrapEl&&a.$imageWrapEl.transform("translate3d(0,0,0)"),t.scale=1,t.currentScale=1,a.$slideEl=void 0,a.$imageEl=void 0,a.$imageWrapEl=void 0)},toggle:function(e){var t=this.zoom;t.scale&&1!==t.scale?t.out():t.in(e)},in:function(e){var t,a,i,s,r,n,o,d,p,u,c,h,v,f,g,b,w=this,y=l(),E=w.zoom,x=w.params.zoom,T=E.gesture,C=E.image;(T.$slideEl||(e&&e.target&&(T.$slideEl=m(e.target).closest("."+w.params.slideClass)),T.$slideEl||(w.params.virtual&&w.params.virtual.enabled&&w.virtual?T.$slideEl=w.$wrapperEl.children("."+w.params.slideActiveClass):T.$slideEl=w.slides.eq(w.activeIndex)),T.$imageEl=T.$slideEl.find("img, svg, canvas, picture, .swiper-zoom-target"),T.$imageWrapEl=T.$imageEl.parent("."+x.containerClass)),T.$imageEl&&0!==T.$imageEl.length&&T.$imageWrapEl&&0!==T.$imageWrapEl.length)&&(T.$slideEl.addClass(""+x.zoomedSlideClass),void 0===C.touchesStart.x&&e?(t="touchend"===e.type?e.changedTouches[0].pageX:e.pageX,a="touchend"===e.type?e.changedTouches[0].pageY:e.pageY):(t=C.touchesStart.x,a=C.touchesStart.y),E.scale=T.$imageWrapEl.attr("data-swiper-zoom")||x.maxRatio,E.currentScale=T.$imageWrapEl.attr("data-swiper-zoom")||x.maxRatio,e?(g=T.$slideEl[0].offsetWidth,b=T.$slideEl[0].offsetHeight,i=T.$slideEl.offset().left+y.scrollX+g/2-t,s=T.$slideEl.offset().top+y.scrollY+b/2-a,o=T.$imageEl[0].offsetWidth,d=T.$imageEl[0].offsetHeight,p=o*E.scale,u=d*E.scale,v=-(c=Math.min(g/2-p/2,0)),f=-(h=Math.min(b/2-u/2,0)),(r=i*E.scale)v&&(r=v),(n=s*E.scale)f&&(n=f)):(r=0,n=0),T.$imageWrapEl.transition(300).transform("translate3d("+r+"px, "+n+"px,0)"),T.$imageEl.transition(300).transform("translate3d(0,0,0) scale("+E.scale+")"))},out:function(){var e=this,t=e.zoom,a=e.params.zoom,i=t.gesture;i.$slideEl||(e.params.virtual&&e.params.virtual.enabled&&e.virtual?i.$slideEl=e.$wrapperEl.children("."+e.params.slideActiveClass):i.$slideEl=e.slides.eq(e.activeIndex),i.$imageEl=i.$slideEl.find("img, svg, canvas, picture, .swiper-zoom-target"),i.$imageWrapEl=i.$imageEl.parent("."+a.containerClass)),i.$imageEl&&0!==i.$imageEl.length&&i.$imageWrapEl&&0!==i.$imageWrapEl.length&&(t.scale=1,t.currentScale=1,i.$imageWrapEl.transition(300).transform("translate3d(0,0,0)"),i.$imageEl.transition(300).transform("translate3d(0,0,0) scale(1)"),i.$slideEl.removeClass(""+a.zoomedSlideClass),i.$slideEl=void 0)},toggleGestures:function(e){var t=this,a=t.zoom,i=a.slideSelector,s=a.passiveListener;t.$wrapperEl[e]("gesturestart",i,a.onGestureStart,s),t.$wrapperEl[e]("gesturechange",i,a.onGestureChange,s),t.$wrapperEl[e]("gestureend",i,a.onGestureEnd,s)},enableGestures:function(){this.zoom.gesturesEnabled||(this.zoom.gesturesEnabled=!0,this.zoom.toggleGestures("on"))},disableGestures:function(){this.zoom.gesturesEnabled&&(this.zoom.gesturesEnabled=!1,this.zoom.toggleGestures("off"))},enable:function(){var e=this,t=e.support,a=e.zoom;if(!a.enabled){a.enabled=!0;var i=!("touchstart"!==e.touchEvents.start||!t.passiveListener||!e.params.passiveListeners)&&{passive:!0,capture:!1},s=!t.passiveListener||{passive:!1,capture:!0},r="."+e.params.slideClass;e.zoom.passiveListener=i,e.zoom.slideSelector=r,t.gestures?(e.$wrapperEl.on(e.touchEvents.start,e.zoom.enableGestures,i),e.$wrapperEl.on(e.touchEvents.end,e.zoom.disableGestures,i)):"touchstart"===e.touchEvents.start&&(e.$wrapperEl.on(e.touchEvents.start,r,a.onGestureStart,i),e.$wrapperEl.on(e.touchEvents.move,r,a.onGestureChange,s),e.$wrapperEl.on(e.touchEvents.end,r,a.onGestureEnd,i),e.touchEvents.cancel&&e.$wrapperEl.on(e.touchEvents.cancel,r,a.onGestureEnd,i)),e.$wrapperEl.on(e.touchEvents.move,"."+e.params.zoom.containerClass,a.onTouchMove,s)}},disable:function(){var e=this,t=e.zoom;if(t.enabled){var a=e.support;e.zoom.enabled=!1;var i=!("touchstart"!==e.touchEvents.start||!a.passiveListener||!e.params.passiveListeners)&&{passive:!0,capture:!1},s=!a.passiveListener||{passive:!1,capture:!0},r="."+e.params.slideClass;a.gestures?(e.$wrapperEl.off(e.touchEvents.start,e.zoom.enableGestures,i),e.$wrapperEl.off(e.touchEvents.end,e.zoom.disableGestures,i)):"touchstart"===e.touchEvents.start&&(e.$wrapperEl.off(e.touchEvents.start,r,t.onGestureStart,i),e.$wrapperEl.off(e.touchEvents.move,r,t.onGestureChange,s),e.$wrapperEl.off(e.touchEvents.end,r,t.onGestureEnd,i),e.touchEvents.cancel&&e.$wrapperEl.off(e.touchEvents.cancel,r,t.onGestureEnd,i)),e.$wrapperEl.off(e.touchEvents.move,"."+e.params.zoom.containerClass,t.onTouchMove,s)}}},ie={loadInSlide:function(e,t){void 0===t&&(t=!0);var a=this,i=a.params.lazy;if(void 0!==e&&0!==a.slides.length){var s=a.virtual&&a.params.virtual.enabled?a.$wrapperEl.children("."+a.params.slideClass+'[data-swiper-slide-index="'+e+'"]'):a.slides.eq(e),r=s.find("."+i.elementClass+":not(."+i.loadedClass+"):not(."+i.loadingClass+")");!s.hasClass(i.elementClass)||s.hasClass(i.loadedClass)||s.hasClass(i.loadingClass)||r.push(s[0]),0!==r.length&&r.each((function(e){var r=m(e);r.addClass(i.loadingClass);var n=r.attr("data-background"),l=r.attr("data-src"),o=r.attr("data-srcset"),d=r.attr("data-sizes"),p=r.parent("picture");a.loadImage(r[0],l||n,o,d,!1,(function(){if(null!=a&&a&&(!a||a.params)&&!a.destroyed){if(n?(r.css("background-image",'url("'+n+'")'),r.removeAttr("data-background")):(o&&(r.attr("srcset",o),r.removeAttr("data-srcset")),d&&(r.attr("sizes",d),r.removeAttr("data-sizes")),p.length&&p.children("source").each((function(e){var t=m(e);t.attr("data-srcset")&&(t.attr("srcset",t.attr("data-srcset")),t.removeAttr("data-srcset"))})),l&&(r.attr("src",l),r.removeAttr("data-src"))),r.addClass(i.loadedClass).removeClass(i.loadingClass),s.find("."+i.preloaderClass).remove(),a.params.loop&&t){var e=s.attr("data-swiper-slide-index");if(s.hasClass(a.params.slideDuplicateClass)){var u=a.$wrapperEl.children('[data-swiper-slide-index="'+e+'"]:not(.'+a.params.slideDuplicateClass+")");a.lazy.loadInSlide(u.index(),!1)}else{var c=a.$wrapperEl.children("."+a.params.slideDuplicateClass+'[data-swiper-slide-index="'+e+'"]');a.lazy.loadInSlide(c.index(),!1)}}a.emit("lazyImageReady",s[0],r[0]),a.params.autoHeight&&a.updateAutoHeight()}})),a.emit("lazyImageLoad",s[0],r[0])}))}},load:function(){var e=this,t=e.$wrapperEl,a=e.params,i=e.slides,s=e.activeIndex,r=e.virtual&&a.virtual.enabled,n=a.lazy,l=a.slidesPerView;function o(e){if(r){if(t.children("."+a.slideClass+'[data-swiper-slide-index="'+e+'"]').length)return!0}else if(i[e])return!0;return!1}function d(e){return r?m(e).attr("data-swiper-slide-index"):m(e).index()}if("auto"===l&&(l=0),e.lazy.initialImageLoaded||(e.lazy.initialImageLoaded=!0),e.params.watchSlidesVisibility)t.children("."+a.slideVisibleClass).each((function(t){var a=r?m(t).attr("data-swiper-slide-index"):m(t).index();e.lazy.loadInSlide(a)}));else if(l>1)for(var p=s;p1||n.loadPrevNextAmount&&n.loadPrevNextAmount>1){for(var u=n.loadPrevNextAmount,c=l,h=Math.min(s+c+Math.max(u,c),i.length),v=Math.max(s-Math.max(c,u),0),f=s+l;f0&&e.lazy.loadInSlide(d(b));var w=t.children("."+a.slidePrevClass);w.length>0&&e.lazy.loadInSlide(d(w))}},checkInViewOnLoad:function(){var e=l(),t=this;if(t&&!t.destroyed){var a=t.params.lazy.scrollingElement?m(t.params.lazy.scrollingElement):m(e),i=a[0]===e,s=i?e.innerWidth:a[0].offsetWidth,r=i?e.innerHeight:a[0].offsetHeight,n=t.$el.offset(),o=!1;t.rtlTranslate&&(n.left-=t.$el[0].scrollLeft);for(var d=[[n.left,n.top],[n.left+t.width,n.top],[n.left,n.top+t.height],[n.left+t.width,n.top+t.height]],p=0;p=0&&u[0]<=s&&u[1]>=0&&u[1]<=r){if(0===u[0]&&0===u[1])continue;o=!0}}var c=!("touchstart"!==t.touchEvents.start||!t.support.passiveListener||!t.params.passiveListeners)&&{passive:!0,capture:!1};o?(t.lazy.load(),a.off("scroll",t.lazy.checkInViewOnLoad,c)):t.lazy.scrollHandlerAttached||(t.lazy.scrollHandlerAttached=!0,a.on("scroll",t.lazy.checkInViewOnLoad,c))}}},se={LinearSpline:function(e,t){var a,i,s,r,n,l=function(e,t){for(i=-1,a=e.length;a-i>1;)e[s=a+i>>1]<=t?i=s:a=s;return a};return this.x=e,this.y=t,this.lastIndex=e.length-1,this.interpolate=function(e){return e?(n=l(this.x,e),r=n-1,(e-this.x[r])*(this.y[n]-this.y[r])/(this.x[n]-this.x[r])+this.y[r]):0},this},getInterpolateFunction:function(e){var t=this;t.controller.spline||(t.controller.spline=t.params.loop?new se.LinearSpline(t.slidesGrid,e.slidesGrid):new se.LinearSpline(t.snapGrid,e.snapGrid))},setTranslate:function(e,t){var a,i,s=this,r=s.controller.control,n=s.constructor;function l(e){var t=s.rtlTranslate?-s.translate:s.translate;"slide"===s.params.controller.by&&(s.controller.getInterpolateFunction(e),i=-s.controller.spline.interpolate(-t)),i&&"container"!==s.params.controller.by||(a=(e.maxTranslate()-e.minTranslate())/(s.maxTranslate()-s.minTranslate()),i=(t-s.minTranslate())*a+e.minTranslate()),s.params.controller.inverse&&(i=e.maxTranslate()-i),e.updateProgress(i),e.setTranslate(i,s),e.updateActiveIndex(),e.updateSlidesClasses()}if(Array.isArray(r))for(var o=0;o0&&(e.isBeginning?(e.a11y.disableEl(i),e.a11y.makeElNotFocusable(i)):(e.a11y.enableEl(i),e.a11y.makeElFocusable(i))),a&&a.length>0&&(e.isEnd?(e.a11y.disableEl(a),e.a11y.makeElNotFocusable(a)):(e.a11y.enableEl(a),e.a11y.makeElFocusable(a)))}},updatePagination:function(){var e=this,t=e.params.a11y;e.pagination&&e.params.pagination.clickable&&e.pagination.bullets&&e.pagination.bullets.length&&e.pagination.bullets.each((function(a){var i=m(a);e.a11y.makeElFocusable(i),e.params.pagination.renderBullet||(e.a11y.addElRole(i,"button"),e.a11y.addElLabel(i,t.paginationBulletMessage.replace(/\{\{index\}\}/,i.index()+1)))}))},init:function(){var e=this,t=e.params.a11y;e.$el.append(e.a11y.liveRegion);var a=e.$el;t.containerRoleDescriptionMessage&&e.a11y.addElRoleDescription(a,t.containerRoleDescriptionMessage),t.containerMessage&&e.a11y.addElLabel(a,t.containerMessage);var i,s,r=e.$wrapperEl,n=r.attr("id")||"swiper-wrapper-"+e.a11y.getRandomNumber(16),l=e.params.autoplay&&e.params.autoplay.enabled?"off":"polite";e.a11y.addElId(r,n),e.a11y.addElLive(r,l),t.itemRoleDescriptionMessage&&e.a11y.addElRoleDescription(m(e.slides),t.itemRoleDescriptionMessage),e.a11y.addElRole(m(e.slides),t.slideRole),e.slides.each((function(a){var i=m(a),s=t.slideLabelMessage.replace(/\{\{index\}\}/,i.index()+1).replace(/\{\{slidesLength\}\}/,e.slides.length);e.a11y.addElLabel(i,s)})),e.navigation&&e.navigation.$nextEl&&(i=e.navigation.$nextEl),e.navigation&&e.navigation.$prevEl&&(s=e.navigation.$prevEl),i&&i.length&&(e.a11y.makeElFocusable(i),"BUTTON"!==i[0].tagName&&(e.a11y.addElRole(i,"button"),i.on("keydown",e.a11y.onEnterOrSpaceKey)),e.a11y.addElLabel(i,t.nextSlideMessage),e.a11y.addElControls(i,n)),s&&s.length&&(e.a11y.makeElFocusable(s),"BUTTON"!==s[0].tagName&&(e.a11y.addElRole(s,"button"),s.on("keydown",e.a11y.onEnterOrSpaceKey)),e.a11y.addElLabel(s,t.prevSlideMessage),e.a11y.addElControls(s,n)),e.pagination&&e.params.pagination.clickable&&e.pagination.bullets&&e.pagination.bullets.length&&e.pagination.$el.on("keydown",z(e.params.pagination.bulletClass),e.a11y.onEnterOrSpaceKey)},destroy:function(){var e,t,a=this;a.a11y.liveRegion&&a.a11y.liveRegion.length>0&&a.a11y.liveRegion.remove(),a.navigation&&a.navigation.$nextEl&&(e=a.navigation.$nextEl),a.navigation&&a.navigation.$prevEl&&(t=a.navigation.$prevEl),e&&e.off("keydown",a.a11y.onEnterOrSpaceKey),t&&t.off("keydown",a.a11y.onEnterOrSpaceKey),a.pagination&&a.params.pagination.clickable&&a.pagination.bullets&&a.pagination.bullets.length&&a.pagination.$el.off("keydown",z(a.params.pagination.bulletClass),a.a11y.onEnterOrSpaceKey)}},ne={init:function(){var e=this,t=l();if(e.params.history){if(!t.history||!t.history.pushState)return e.params.history.enabled=!1,void(e.params.hashNavigation.enabled=!0);var a=e.history;a.initialized=!0,a.paths=ne.getPathValues(e.params.url),(a.paths.key||a.paths.value)&&(a.scrollToSlide(0,a.paths.value,e.params.runCallbacksOnInit),e.params.history.replaceState||t.addEventListener("popstate",e.history.setHistoryPopState))}},destroy:function(){var e=l();this.params.history.replaceState||e.removeEventListener("popstate",this.history.setHistoryPopState)},setHistoryPopState:function(){var e=this;e.history.paths=ne.getPathValues(e.params.url),e.history.scrollToSlide(e.params.speed,e.history.paths.value,!1)},getPathValues:function(e){var t=l(),a=(e?new URL(e):t.location).pathname.slice(1).split("/").filter((function(e){return""!==e})),i=a.length;return{key:a[i-2],value:a[i-1]}},setHistory:function(e,t){var a=this,i=l();if(a.history.initialized&&a.params.history.enabled){var s;s=a.params.url?new URL(a.params.url):i.location;var r=a.slides.eq(t),n=ne.slugify(r.attr("data-history"));if(a.params.history.root.length>0){var o=a.params.history.root;"/"===o[o.length-1]&&(o=o.slice(0,o.length-1)),n=o+"/"+e+"/"+n}else s.pathname.includes(e)||(n=e+"/"+n);var d=i.history.state;d&&d.value===n||(a.params.history.replaceState?i.history.replaceState({value:n},null,n):i.history.pushState({value:n},null,n))}},slugify:function(e){return e.toString().replace(/\s+/g,"-").replace(/[^\w-]+/g,"").replace(/--+/g,"-").replace(/^-+/,"").replace(/-+$/,"")},scrollToSlide:function(e,t,a){var i=this;if(t)for(var s=0,r=i.slides.length;s
'),i.append(e)),e.css({height:r+"px"})):0===(e=a.find(".swiper-cube-shadow")).length&&(e=m('
'),a.append(e)));for(var v=0;v-1&&(h=90*g+90*y,l&&(h=90*-g-90*y)),f.transform(C),p.slideShadows){var S=u?f.find(".swiper-slide-shadow-left"):f.find(".swiper-slide-shadow-top"),M=u?f.find(".swiper-slide-shadow-right"):f.find(".swiper-slide-shadow-bottom");0===S.length&&(S=m('
'),f.append(S)),0===M.length&&(M=m('
'),f.append(M)),S.length&&(S[0].style.opacity=Math.max(-y,0)),M.length&&(M[0].style.opacity=Math.max(y,0))}}if(i.css({"-webkit-transform-origin":"50% 50% -"+o/2+"px","-moz-transform-origin":"50% 50% -"+o/2+"px","-ms-transform-origin":"50% 50% -"+o/2+"px","transform-origin":"50% 50% -"+o/2+"px"}),p.shadow)if(u)e.transform("translate3d(0px, "+(r/2+p.shadowOffset)+"px, "+-r/2+"px) rotateX(90deg) rotateZ(0deg) scale("+p.shadowScale+")");else{var z=Math.abs(h)-90*Math.floor(Math.abs(h)/90),P=1.5-(Math.sin(2*z*Math.PI/360)/2+Math.cos(2*z*Math.PI/360)/2),k=p.shadowScale,$=p.shadowScale/P,L=p.shadowOffset;e.transform("scale3d("+k+", 1, "+$+") translate3d(0px, "+(n/2+L)+"px, "+-n/2/$+"px) rotateX(-90deg)")}var I=d.isSafari||d.isWebView?-o/2:0;i.transform("translate3d(0px,0,"+I+"px) rotateX("+(t.isHorizontal()?0:h)+"deg) rotateY("+(t.isHorizontal()?-h:0)+"deg)")},setTransition:function(e){var t=this,a=t.$el;t.slides.transition(e).find(".swiper-slide-shadow-top, .swiper-slide-shadow-right, .swiper-slide-shadow-bottom, .swiper-slide-shadow-left").transition(e),t.params.cubeEffect.shadow&&!t.isHorizontal()&&a.find(".swiper-cube-shadow").transition(e)}},ue={setTranslate:function(){for(var e=this,t=e.slides,a=e.rtlTranslate,i=0;i
'),s.append(p)),0===u.length&&(u=m('
'),s.append(u)),p.length&&(p[0].style.opacity=Math.max(-r,0)),u.length&&(u[0].style.opacity=Math.max(r,0))}s.transform("translate3d("+o+"px, "+d+"px, 0px) rotateX("+l+"deg) rotateY("+n+"deg)")}},setTransition:function(e){var t=this,a=t.slides,i=t.activeIndex,s=t.$wrapperEl;if(a.transition(e).find(".swiper-slide-shadow-top, .swiper-slide-shadow-right, .swiper-slide-shadow-bottom, .swiper-slide-shadow-left").transition(e),t.params.virtualTranslate&&0!==e){var r=!1;a.eq(i).transitionEnd((function(){if(!r&&t&&!t.destroyed){r=!0,t.animating=!1;for(var e=["webkitTransitionEnd","transitionend"],a=0;a
'),h.append(S)),0===M.length&&(M=m('
'),h.append(M)),S.length&&(S[0].style.opacity=f>0?f:0),M.length&&(M[0].style.opacity=-f>0?-f:0)}}},setTransition:function(e){this.slides.transition(e).find(".swiper-slide-shadow-top, .swiper-slide-shadow-right, .swiper-slide-shadow-bottom, .swiper-slide-shadow-left").transition(e)}},he={init:function(){var e=this,t=e.params.thumbs;if(e.thumbs.initialized)return!1;e.thumbs.initialized=!0;var a=e.constructor;return t.swiper instanceof a?(e.thumbs.swiper=t.swiper,S(e.thumbs.swiper.originalParams,{watchSlidesProgress:!0,slideToClickedSlide:!1}),S(e.thumbs.swiper.params,{watchSlidesProgress:!0,slideToClickedSlide:!1})):C(t.swiper)&&(e.thumbs.swiper=new a(S({},t.swiper,{watchSlidesVisibility:!0,watchSlidesProgress:!0,slideToClickedSlide:!1})),e.thumbs.swiperCreated=!0),e.thumbs.swiper.$el.addClass(e.params.thumbs.thumbsContainerClass),e.thumbs.swiper.on("tap",e.thumbs.onThumbClick),!0},onThumbClick:function(){var e=this,t=e.thumbs.swiper;if(t){var a=t.clickedIndex,i=t.clickedSlide;if(!(i&&m(i).hasClass(e.params.thumbs.slideThumbActiveClass)||null==a)){var s;if(s=t.params.loop?parseInt(m(t.clickedSlide).attr("data-swiper-slide-index"),10):a,e.params.loop){var r=e.activeIndex;e.slides.eq(r).hasClass(e.params.slideDuplicateClass)&&(e.loopFix(),e._clientLeft=e.$wrapperEl[0].clientLeft,r=e.activeIndex);var n=e.slides.eq(r).prevAll('[data-swiper-slide-index="'+s+'"]').eq(0).index(),l=e.slides.eq(r).nextAll('[data-swiper-slide-index="'+s+'"]').eq(0).index();s=void 0===n?l:void 0===l?n:l-r1?p:o:p-ot.previousIndex?"next":"prev"}else l=(n=t.realIndex)>t.previousIndex?"next":"prev";r&&(n+="next"===l?s:-1*s),a.visibleSlidesIndexes&&a.visibleSlidesIndexes.indexOf(n)<0&&(a.params.centeredSlides?n=n>o?n-Math.floor(i/2)+1:n+Math.floor(i/2)-1:n>o&&a.params.slidesPerGroup,a.slideTo(n,e?0:void 0))}var u=1,c=t.params.thumbs.slideThumbActiveClass;if(t.params.slidesPerView>1&&!t.params.centeredSlides&&(u=t.params.slidesPerView),t.params.thumbs.multipleActiveThumbs||(u=1),u=Math.floor(u),a.slides.removeClass(c),a.params.loop||a.params.virtual&&a.params.virtual.enabled)for(var h=0;h0&&!m(a).hasClass(e.params.pagination.bulletClass)){if(e.navigation&&(e.navigation.nextEl&&a===e.navigation.nextEl||e.navigation.prevEl&&a===e.navigation.prevEl))return;!0===e.pagination.$el.hasClass(e.params.pagination.hiddenClass)?e.emit("paginationShow"):e.emit("paginationHide"),e.pagination.$el.toggleClass(e.params.pagination.hiddenClass)}}}},{name:"scrollbar",params:{scrollbar:{el:null,dragSize:"auto",hide:!1,draggable:!1,snapOnRelease:!0,lockClass:"swiper-scrollbar-lock",dragClass:"swiper-scrollbar-drag"}},create:function(){M(this,{scrollbar:t({isTouched:!1,timeout:null,dragTimeout:null},ee)})},on:{init:function(e){e.scrollbar.init(),e.scrollbar.updateSize(),e.scrollbar.setTranslate()},update:function(e){e.scrollbar.updateSize()},resize:function(e){e.scrollbar.updateSize()},observerUpdate:function(e){e.scrollbar.updateSize()},setTranslate:function(e){e.scrollbar.setTranslate()},setTransition:function(e,t){e.scrollbar.setTransition(t)},"enable disable":function(e){var t=e.scrollbar.$el;t&&t[e.enabled?"removeClass":"addClass"](e.params.scrollbar.lockClass)},destroy:function(e){e.scrollbar.destroy()}}},{name:"parallax",params:{parallax:{enabled:!1}},create:function(){M(this,{parallax:t({},te)})},on:{beforeInit:function(e){e.params.parallax.enabled&&(e.params.watchSlidesProgress=!0,e.originalParams.watchSlidesProgress=!0)},init:function(e){e.params.parallax.enabled&&e.parallax.setTranslate()},setTranslate:function(e){e.params.parallax.enabled&&e.parallax.setTranslate()},setTransition:function(e,t){e.params.parallax.enabled&&e.parallax.setTransition(t)}}},{name:"zoom",params:{zoom:{enabled:!1,maxRatio:3,minRatio:1,toggle:!0,containerClass:"swiper-zoom-container",zoomedSlideClass:"swiper-slide-zoomed"}},create:function(){var e=this;M(e,{zoom:t({enabled:!1,scale:1,currentScale:1,isScaling:!1,gesture:{$slideEl:void 0,slideWidth:void 0,slideHeight:void 0,$imageEl:void 0,$imageWrapEl:void 0,maxRatio:3},image:{isTouched:void 0,isMoved:void 0,currentX:void 0,currentY:void 0,minX:void 0,minY:void 0,maxX:void 0,maxY:void 0,width:void 0,height:void 0,startX:void 0,startY:void 0,touchesStart:{},touchesCurrent:{}},velocity:{x:void 0,y:void 0,prevPositionX:void 0,prevPositionY:void 0,prevTime:void 0}},ae)});var a=1;Object.defineProperty(e.zoom,"scale",{get:function(){return a},set:function(t){if(a!==t){var i=e.zoom.gesture.$imageEl?e.zoom.gesture.$imageEl[0]:void 0,s=e.zoom.gesture.$slideEl?e.zoom.gesture.$slideEl[0]:void 0;e.emit("zoomChange",t,i,s)}a=t}})},on:{init:function(e){e.params.zoom.enabled&&e.zoom.enable()},destroy:function(e){e.zoom.disable()},touchStart:function(e,t){e.zoom.enabled&&e.zoom.onTouchStart(t)},touchEnd:function(e,t){e.zoom.enabled&&e.zoom.onTouchEnd(t)},doubleTap:function(e,t){!e.animating&&e.params.zoom.enabled&&e.zoom.enabled&&e.params.zoom.toggle&&e.zoom.toggle(t)},transitionEnd:function(e){e.zoom.enabled&&e.params.zoom.enabled&&e.zoom.onTransitionEnd()},slideChange:function(e){e.zoom.enabled&&e.params.zoom.enabled&&e.params.cssMode&&e.zoom.onTransitionEnd()}}},{name:"lazy",params:{lazy:{checkInView:!1,enabled:!1,loadPrevNext:!1,loadPrevNextAmount:1,loadOnTransitionStart:!1,scrollingElement:"",elementClass:"swiper-lazy",loadingClass:"swiper-lazy-loading",loadedClass:"swiper-lazy-loaded",preloaderClass:"swiper-lazy-preloader"}},create:function(){M(this,{lazy:t({initialImageLoaded:!1},ie)})},on:{beforeInit:function(e){e.params.lazy.enabled&&e.params.preloadImages&&(e.params.preloadImages=!1)},init:function(e){e.params.lazy.enabled&&!e.params.loop&&0===e.params.initialSlide&&(e.params.lazy.checkInView?e.lazy.checkInViewOnLoad():e.lazy.load())},scroll:function(e){e.params.freeMode&&!e.params.freeModeSticky&&e.lazy.load()},"scrollbarDragMove resize _freeModeNoMomentumRelease":function(e){e.params.lazy.enabled&&e.lazy.load()},transitionStart:function(e){e.params.lazy.enabled&&(e.params.lazy.loadOnTransitionStart||!e.params.lazy.loadOnTransitionStart&&!e.lazy.initialImageLoaded)&&e.lazy.load()},transitionEnd:function(e){e.params.lazy.enabled&&!e.params.lazy.loadOnTransitionStart&&e.lazy.load()},slideChange:function(e){var t=e.params,a=t.lazy,i=t.cssMode,s=t.watchSlidesVisibility,r=t.watchSlidesProgress,n=t.touchReleaseOnEdges,l=t.resistanceRatio;a.enabled&&(i||(s||r)&&(n||0===l))&&e.lazy.load()}}},{name:"controller",params:{controller:{control:void 0,inverse:!1,by:"slide"}},create:function(){M(this,{controller:t({control:this.params.controller.control},se)})},on:{update:function(e){e.controller.control&&e.controller.spline&&(e.controller.spline=void 0,delete e.controller.spline)},resize:function(e){e.controller.control&&e.controller.spline&&(e.controller.spline=void 0,delete e.controller.spline)},observerUpdate:function(e){e.controller.control&&e.controller.spline&&(e.controller.spline=void 0,delete e.controller.spline)},setTranslate:function(e,t,a){e.controller.control&&e.controller.setTranslate(t,a)},setTransition:function(e,t,a){e.controller.control&&e.controller.setTransition(t,a)}}},{name:"a11y",params:{a11y:{enabled:!0,notificationClass:"swiper-notification",prevSlideMessage:"Previous slide",nextSlideMessage:"Next slide",firstSlideMessage:"This is the first slide",lastSlideMessage:"This is the last slide",paginationBulletMessage:"Go to slide {{index}}",slideLabelMessage:"{{index}} / {{slidesLength}}",containerMessage:null,containerRoleDescriptionMessage:null,itemRoleDescriptionMessage:null,slideRole:"group"}},create:function(){M(this,{a11y:t({},re,{liveRegion:m('')})})},on:{afterInit:function(e){e.params.a11y.enabled&&(e.a11y.init(),e.a11y.updateNavigation())},toEdge:function(e){e.params.a11y.enabled&&e.a11y.updateNavigation()},fromEdge:function(e){e.params.a11y.enabled&&e.a11y.updateNavigation()},paginationUpdate:function(e){e.params.a11y.enabled&&e.a11y.updatePagination()},destroy:function(e){e.params.a11y.enabled&&e.a11y.destroy()}}},{name:"history",params:{history:{enabled:!1,root:"",replaceState:!1,key:"slides"}},create:function(){M(this,{history:t({},ne)})},on:{init:function(e){e.params.history.enabled&&e.history.init()},destroy:function(e){e.params.history.enabled&&e.history.destroy()},"transitionEnd _freeModeNoMomentumRelease":function(e){e.history.initialized&&e.history.setHistory(e.params.history.key,e.activeIndex)},slideChange:function(e){e.history.initialized&&e.params.cssMode&&e.history.setHistory(e.params.history.key,e.activeIndex)}}},{name:"hash-navigation",params:{hashNavigation:{enabled:!1,replaceState:!1,watchState:!1}},create:function(){M(this,{hashNavigation:t({initialized:!1},le)})},on:{init:function(e){e.params.hashNavigation.enabled&&e.hashNavigation.init()},destroy:function(e){e.params.hashNavigation.enabled&&e.hashNavigation.destroy()},"transitionEnd _freeModeNoMomentumRelease":function(e){e.hashNavigation.initialized&&e.hashNavigation.setHash()},slideChange:function(e){e.hashNavigation.initialized&&e.params.cssMode&&e.hashNavigation.setHash()}}},{name:"autoplay",params:{autoplay:{enabled:!1,delay:3e3,waitForTransition:!0,disableOnInteraction:!0,stopOnLastSlide:!1,reverseDirection:!1,pauseOnMouseEnter:!1}},create:function(){M(this,{autoplay:t({},oe,{running:!1,paused:!1})})},on:{init:function(e){e.params.autoplay.enabled&&(e.autoplay.start(),r().addEventListener("visibilitychange",e.autoplay.onVisibilityChange),e.autoplay.attachMouseEvents())},beforeTransitionStart:function(e,t,a){e.autoplay.running&&(a||!e.params.autoplay.disableOnInteraction?e.autoplay.pause(t):e.autoplay.stop())},sliderFirstMove:function(e){e.autoplay.running&&(e.params.autoplay.disableOnInteraction?e.autoplay.stop():e.autoplay.pause())},touchEnd:function(e){e.params.cssMode&&e.autoplay.paused&&!e.params.autoplay.disableOnInteraction&&e.autoplay.run()},destroy:function(e){e.autoplay.detachMouseEvents(),e.autoplay.running&&e.autoplay.stop(),r().removeEventListener("visibilitychange",e.autoplay.onVisibilityChange)}}},{name:"effect-fade",params:{fadeEffect:{crossFade:!1}},create:function(){M(this,{fadeEffect:t({},de)})},on:{beforeInit:function(e){if("fade"===e.params.effect){e.classNames.push(e.params.containerModifierClass+"fade");var t={slidesPerView:1,slidesPerColumn:1,slidesPerGroup:1,watchSlidesProgress:!0,spaceBetween:0,virtualTranslate:!0};S(e.params,t),S(e.originalParams,t)}},setTranslate:function(e){"fade"===e.params.effect&&e.fadeEffect.setTranslate()},setTransition:function(e,t){"fade"===e.params.effect&&e.fadeEffect.setTransition(t)}}},{name:"effect-cube",params:{cubeEffect:{slideShadows:!0,shadow:!0,shadowOffset:20,shadowScale:.94}},create:function(){M(this,{cubeEffect:t({},pe)})},on:{beforeInit:function(e){if("cube"===e.params.effect){e.classNames.push(e.params.containerModifierClass+"cube"),e.classNames.push(e.params.containerModifierClass+"3d");var t={slidesPerView:1,slidesPerColumn:1,slidesPerGroup:1,watchSlidesProgress:!0,resistanceRatio:0,spaceBetween:0,centeredSlides:!1,virtualTranslate:!0};S(e.params,t),S(e.originalParams,t)}},setTranslate:function(e){"cube"===e.params.effect&&e.cubeEffect.setTranslate()},setTransition:function(e,t){"cube"===e.params.effect&&e.cubeEffect.setTransition(t)}}},{name:"effect-flip",params:{flipEffect:{slideShadows:!0,limitRotation:!0}},create:function(){M(this,{flipEffect:t({},ue)})},on:{beforeInit:function(e){if("flip"===e.params.effect){e.classNames.push(e.params.containerModifierClass+"flip"),e.classNames.push(e.params.containerModifierClass+"3d");var t={slidesPerView:1,slidesPerColumn:1,slidesPerGroup:1,watchSlidesProgress:!0,spaceBetween:0,virtualTranslate:!0};S(e.params,t),S(e.originalParams,t)}},setTranslate:function(e){"flip"===e.params.effect&&e.flipEffect.setTranslate()},setTransition:function(e,t){"flip"===e.params.effect&&e.flipEffect.setTransition(t)}}},{name:"effect-coverflow",params:{coverflowEffect:{rotate:50,stretch:0,depth:100,scale:1,modifier:1,slideShadows:!0}},create:function(){M(this,{coverflowEffect:t({},ce)})},on:{beforeInit:function(e){"coverflow"===e.params.effect&&(e.classNames.push(e.params.containerModifierClass+"coverflow"),e.classNames.push(e.params.containerModifierClass+"3d"),e.params.watchSlidesProgress=!0,e.originalParams.watchSlidesProgress=!0)},setTranslate:function(e){"coverflow"===e.params.effect&&e.coverflowEffect.setTranslate()},setTransition:function(e,t){"coverflow"===e.params.effect&&e.coverflowEffect.setTransition(t)}}},{name:"thumbs",params:{thumbs:{swiper:null,multipleActiveThumbs:!0,autoScrollOffset:0,slideThumbActiveClass:"swiper-slide-thumb-active",thumbsContainerClass:"swiper-container-thumbs"}},create:function(){M(this,{thumbs:t({swiper:null,initialized:!1},he)})},on:{beforeInit:function(e){var t=e.params.thumbs;t&&t.swiper&&(e.thumbs.init(),e.thumbs.update(!0))},slideChange:function(e){e.thumbs.swiper&&e.thumbs.update()},update:function(e){e.thumbs.swiper&&e.thumbs.update()},resize:function(e){e.thumbs.swiper&&e.thumbs.update()},observerUpdate:function(e){e.thumbs.swiper&&e.thumbs.update()},setTransition:function(e,t){var a=e.thumbs.swiper;a&&a.setTransition(t)},beforeDestroy:function(e){var t=e.thumbs.swiper;t&&e.thumbs.swiperCreated&&t&&t.destroy()}}}];return _.use(ve),_})); diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/footer-footer-Sn6NB.blade.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/footer-footer-Sn6NB.blade.php new file mode 100644 index 0000000..7c89b54 --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/footer-footer-Sn6NB.blade.php @@ -0,0 +1 @@ +
diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/header-header-F7Y23.blade.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/header-header-F7Y23.blade.php new file mode 100644 index 0000000..7c89b54 --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/header-header-F7Y23.blade.php @@ -0,0 +1 @@ +
diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/news_show-news-d44wV.blade.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/news_show-news-d44wV.blade.php new file mode 100644 index 0000000..a597c79 --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/news_show-news-d44wV.blade.php @@ -0,0 +1,421 @@ +
+
+ +
+

News

+

اخبـــــار

+
+ + + +
+
diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/product_show-product-G27S6.blade.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/product_show-product-G27S6.blade.php new file mode 100644 index 0000000..0fe34e8 --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/product_show-product-G27S6.blade.php @@ -0,0 +1,439 @@ + diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/public-feature_box-pOYVj.blade.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/public-feature_box-pOYVj.blade.php new file mode 100644 index 0000000..5234a3c --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/public-feature_box-pOYVj.blade.php @@ -0,0 +1,58 @@ +
+
+
+
+
+
+ +
+
+ +
کالای صد در صد ایـــــــرانی
+

Iranians Goods

+
+
+
+
+
+
+ +
+
+ +
ارسال
+رایگــــــــــان
+

Free Delivery

+
+
+
+
+
+
+ +
+
+ +
پاسخگویی 
+24 ســــــــــاعته
+

24-HourResponse

+
+
+
+
+
+
+ +
+
+ +
استفاده از مواد 
+با کیفیت و مقاو م
+

Quality Materials

+
+
+
+ +
+
+
diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/public-info-TjvIO.blade.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/public-info-TjvIO.blade.php new file mode 100644 index 0000000..5c09737 --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/public-info-TjvIO.blade.php @@ -0,0 +1,24 @@ +
+
+ +
+
+
+
+

new collections

+ اولین و تنها تولید کننده عروسک مخصوص دندانپزشکان در ایران + عروسک بهار + دوست دارم بیشتر بدونم +
+
+
+
+ +
+
+ +
+
+ +
+
diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/public-info_1-FymDi.blade.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/public-info_1-FymDi.blade.php new file mode 100644 index 0000000..acd07f5 --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/public-info_1-FymDi.blade.php @@ -0,0 +1,32 @@ +
+
+
+ +
+ +
+

Take your birthday Gift 

+
+ +
+ +
+ هدیه تولدت رو از ما بگیر +
+ + +
+ +
+
+
+
+
+
+ +
+
+
diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/public-info_3-FOUT8.blade.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/public-info_3-FOUT8.blade.php new file mode 100644 index 0000000..bfff6f3 --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/public-info_3-FOUT8.blade.php @@ -0,0 +1,16 @@ +
+
+ + +
+ +

شرکت عروسک بهار کودکان آریانا

+ + +

@AROOSAK_BAHAR1

+
+
+ + +
+
diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/public-slider-K6dwg.blade.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/public-slider-K6dwg.blade.php new file mode 100644 index 0000000..27d07d4 --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/public-slider-K6dwg.blade.php @@ -0,0 +1,59 @@ +
+
+
+
+
+ +
+
+ Aroosak Bahar +

عروسک بهار
+کودکان آریانا

+ +
+
+ 1 + + 3 +
+
+
+
+ +
+
+ text +

text

+ +
+
+ 2 + + 3 +
+
+
+
+ +
+
+ text +

text

+ +
+
+ 3 + + 3 +
+
+
+
+
+
diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/user_frames.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/user_frames.php new file mode 100644 index 0000000..11fa8ae --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/cache/user_frames.php @@ -0,0 +1,87 @@ + [ + "slider" => [ + "K6dwg" + ], + "info" => [ + "TjvIO" + ], + "info_1" => [ + "FymDi" + ], + "faq" => [ + "1koAL", + "hVY5g" + ], + "info_2" => [ + "ujV69", + "STxat" + ], + "sub_header" => [ + "aL1AS", + "VkXAs" + ], + "feature_box" => [ + "pOYVj" + ], + "info_3" => [ + "FOUT8" + ], + "gallery" => [ + "uK4Fy" + ] + ], + "header" => [ + "header" => [ + "F7Y23" + ] + ], + "special_sale" => [ + "special_sale" => [ + "i4YbU" + ] + ], + "product_show" => [ + "product" => [ + "G27S6" + ], + "product_1" => [ + "2rIm4" + ] + ], + "news_show" => [ + "news" => [ + "d44wV" + ] + ], + "footer" => [ + "footer" => [ + "Sn6NB" + ] + ], + "map" => [ + "map" => [ + "FtAs7" + ] + ], + "contact_us" => [ + "contact_us" => [ + "V814s" + ] + ], + "product_detail" => [ + "product" => [ + "jkLmx" + ], + "related_products" => [ + "0tzlG" + ] + ], + "news_detail" => [ + "news" => [ + "iS7oO" + ] + ] +]; \ No newline at end of file diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/footer-footer-Sn6NB.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/footer-footer-Sn6NB.php new file mode 100644 index 0000000..980ff81 --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/footer-footer-Sn6NB.php @@ -0,0 +1,6 @@ + [ + ] +]; diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/header-header-F7Y23.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/header-header-F7Y23.php new file mode 100644 index 0000000..980ff81 --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/header-header-F7Y23.php @@ -0,0 +1,6 @@ + [ + ] +]; diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/product_detail-product-jkLmx.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/product_detail-product-jkLmx.php new file mode 100644 index 0000000..f9cc102 --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/product_detail-product-jkLmx.php @@ -0,0 +1,121 @@ + [ + "bg" => [ + "type" => "container", + "class" => "dir-rtl" + ], + "text" => [ + "type" => "text", + "text" => "جزئیـــــات محصـــــول", + "style" => "font-weight:0;font-family:ukij", + "style_values" => [ + + ] + ], + "subText" => [ + "type" => "text", + "text" => "product details" + ], + "link" => [ + "type" => "link", + "link" => "/", + "reference" => "internal", + "text" => "صفحه اصلی" + ], + "class" => [ + "type" => "container" + ], + "class1" => [ + "type" => "container", + "class" => "dir-rtl" + ], + "bg1" => [ + "type" => "container" + ], + "link1" => [ + "type" => "link", + "link" => "/" + ], + "icon" => [ + "type" => "icon", + "icon" => "WMi-user" + ], + "class2" => [ + "type" => "container" + ], + "class3" => [ + "type" => "container" + ], + "link2" => [ + "type" => "link", + "link" => "/" + ], + "text1" => [ + "type" => "text", + "text" => "تلفن" + ], + "text2" => [ + "type" => "text", + "text" => "9120511556 (98+)\n9100555530 (98+)\n37716289 (025)", + "style" => "font-weight:0", + "style_values" => [ + + ] + ], + "class4" => [ + "type" => "container" + ], + "hidden" => [ + "type" => "container" + ], + "hidden1" => [ + "type" => "container" + ], + "hidden2" => [ + "type" => "container" + ], + "hidden3" => [ + "type" => "container" + ], + "bg2" => [ + "type" => "container", + "class" => "dir-rtl" + ] + ], + "collections" => [ + "socials" => [ + "e1" => [ + "link3" => [ + "type" => "link", + "link" => "/" + ], + "icon1" => [ + "type" => "icon", + "icon" => "WMi-instagram" + ] + ], + "e2" => [ + "link3" => [ + "type" => "link", + "link" => "/" + ], + "icon1" => [ + "type" => "icon", + "icon" => "WMi-pinterest" + ] + ], + "e3" => [ + "link3" => [ + "type" => "link", + "link" => "/" + ], + "icon1" => [ + "type" => "icon", + "icon" => "WMi-twitter" + ] + ] + ] + ] +]; \ No newline at end of file diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/product_show-product-G27S6.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/product_show-product-G27S6.php new file mode 100644 index 0000000..1d429e2 --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/product_show-product-G27S6.php @@ -0,0 +1,6 @@ + [ + ] +]; diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/product_show-product_1-2rIm4.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/product_show-product_1-2rIm4.php new file mode 100644 index 0000000..7dfa66f --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/frames/product_show-product_1-2rIm4.php @@ -0,0 +1,55 @@ + [ + "bg" => [ + "type" => "container", + "style" => "background-image:url({{bg}})", + "style_values" => [ + "bg" => 'img/sub_header/subheader-shopping.jpg' + ] + ], + "bg1" => [ + "type" => "container" + ], + "text" => [ + "type" => "text", + "text" => "محصولات" + ], + "subText" => [ + "type" => "text", + "text" => "products" + ], + "link" => [ + "type" => "link", + "link" => "/home", + "reference" => "internal", + "title" => "صفحه ی اصلی", + "text" => "صفحه ی اصلی", + ], + "class" => [ + "type" => "container" + ], + "class1" => [ + "type" => "container" + ], + "class2" => [ + "type" => "container" + ], + "class3" => [ + "type" => "container" + ], + "link1" => [ + "type" => "link", + "link" => "/" + ], + "link2" => [ + "type" => "link", + "link" => "/products" + ], + "text2" => [ + "type" => "text", + "text" => "نمایش تمام محصولات" + ] + ] +]; diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/pages.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/pages.php new file mode 100644 index 0000000..da6bfda --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/pages.php @@ -0,0 +1,17 @@ + [ + 'home' => [ + 'main_page' => true, + 'name' => 'خانه', + 'name_en' => 'home', + 'page_type' => 'home', + 'description' => 'description of page', + 'frames' => [ + 'header-header-WwR4g', + 'footer-footer-vMdeX', + ], + ], + ] +]; diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/pages/home-dEApOWB9Ov/main.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/pages/home-dEApOWB9Ov/main.php new file mode 100644 index 0000000..fcd5577 --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/pages/home-dEApOWB9Ov/main.php @@ -0,0 +1,15 @@ + [ + "header" => [ + "header-header-F7Y23" + ], + "content" => [ + "product_show-product-G27S6", + ], + "footer" => [ + "footer-footer-Sn6NB" + ], + ], +]; diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/pages/product-details-FFfrp8v0EE/main.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/pages/product-details-FFfrp8v0EE/main.php new file mode 100644 index 0000000..e69de29 diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/pages/products-uqGN5YASiK/main.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/pages/products-uqGN5YASiK/main.php new file mode 100644 index 0000000..e69de29 diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/pages/test-AZzOpqwVL3/main.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/pages/test-AZzOpqwVL3/main.php new file mode 100644 index 0000000..e69de29 diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/pages/user_pages.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/pages/user_pages.php new file mode 100644 index 0000000..e68f995 --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/custom/fa/pages/user_pages.php @@ -0,0 +1,35 @@ + [ + "products" => [ + "id" => "products-uqGN5YASiK", + "name" => "محصولات | عروسک بهار کودکان آریانا", + "nameEn" => "products", + "pageType" => "productShow", + "description" => NULL, + "keywords" => NULL, + "metaTag" => NULL, + "hasSearch" => FALSE + ], + "home" => [ + "id" => "home-dEApOWB9Ov", + "name" => "خانه | کافه پرالین", + "name_en" => "home", + "page_type" => "home", + "description" => NULL, + "keywords" => NULL, + "metaTag" => NULL, + "hasSearch" => FALSE + ], + "product-details" => [ + "id" => "product-details-FFfrp8v0EE", + "name" => "جزئیات محصول | عروسک بهار کودکان آریانا", + "name_en" => "product-details", + "page_type" => "ProductDetail", + "description" => NULL, + "metaTag" => NULL, + "hasSearch" => FALSE + ] + ] +]; diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/footer/footer/cache.blade.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/footer/footer/cache.blade.php new file mode 100644 index 0000000..e69de29 diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/footer/footer/config.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/footer/footer/config.php new file mode 100644 index 0000000..8267886 --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/footer/footer/config.php @@ -0,0 +1,6 @@ + [ + ], +]; diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/footer/footer/content.blade.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/footer/footer/content.blade.php new file mode 100644 index 0000000..7c89b54 --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/footer/footer/content.blade.php @@ -0,0 +1 @@ +
diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/footer/frames.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/footer/frames.php new file mode 100644 index 0000000..50eea59 --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/footer/frames.php @@ -0,0 +1,9 @@ + [ + 'name' => 'پایین برگ اصلی', + 'name_en' => 'footer', + 'image' => 'img/frames/footer.jpg' + ], +]; diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/header/frames.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/header/frames.php new file mode 100644 index 0000000..33f1f3b --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/header/frames.php @@ -0,0 +1,8 @@ + [ + 'name' => 'سربرگ اصلی', + 'name_en' => 'header', + 'image' => 'img/frames/header.jpg' + ], +]; diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/header/header/cache.blade.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/header/header/cache.blade.php new file mode 100644 index 0000000..e69de29 diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/header/header/config.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/header/header/config.php new file mode 100644 index 0000000..e7ccc8a --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/header/header/config.php @@ -0,0 +1,6 @@ + [ + ], +]; diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/header/header/content.blade.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/header/header/content.blade.php new file mode 100644 index 0000000..7c89b54 --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/header/header/content.blade.php @@ -0,0 +1 @@ +
diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/product_detail/frames.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/product_detail/frames.php new file mode 100644 index 0000000..86489ba --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/product_detail/frames.php @@ -0,0 +1,9 @@ + [ + 'name' => 'محصولات', + 'name_en' => 'product', + 'image' => 'img/frames/product-detail.png' + ], +]; diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/product_detail/product/cache.blade.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/product_detail/product/cache.blade.php new file mode 100644 index 0000000..7c89b54 --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/product_detail/product/cache.blade.php @@ -0,0 +1 @@ +
diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/product_detail/product/config.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/product_detail/product/config.php new file mode 100644 index 0000000..2ccbe40 --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/product_detail/product/config.php @@ -0,0 +1,5 @@ + [], +]; diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/product_detail/product/content.blade.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/product_detail/product/content.blade.php new file mode 100644 index 0000000..7c89b54 --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/product_detail/product/content.blade.php @@ -0,0 +1 @@ +
diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/product_show/frames.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/product_show/frames.php new file mode 100644 index 0000000..75517fe --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/product_show/frames.php @@ -0,0 +1,9 @@ + [ + 'name' => 'نمایش محصول', + 'name_en' => 'product-show', + 'image' => 'img/frames/product-show.jpg' + ], +]; diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/product_show/product/config.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/product_show/product/config.php new file mode 100644 index 0000000..c525fd5 --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/product_show/product/config.php @@ -0,0 +1,5 @@ + [] +]; diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/product_show/product/content.blade.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/product_show/product/content.blade.php new file mode 100644 index 0000000..3127681 --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/product_show/product/content.blade.php @@ -0,0 +1,100 @@ + + + diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/public/frames.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/public/frames.php new file mode 100644 index 0000000..ca5d8ed --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/frames/public/frames.php @@ -0,0 +1,5 @@ + + + + + @stack('head') + + + + + + + + + + + + + + + + + + + + + + + @stack('style') + + + + + +
+ Loader +
+ + +
+
+ + @stack('body') + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +@stack('script') + + diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/metadata.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/metadata.php new file mode 100644 index 0000000..27da69e --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/metadata.php @@ -0,0 +1,69 @@ + [ + 'EN' => [ + [ + 'scripts'=> '1', + 'name'=> 'مانتسرات', + 'name_en'=> 'montserrat', + 'image'=> 'https://cdn.willaspace.com/web-builder/fonts/montserrat/montserrat.png', + 'link'=> 'https://cdn.willaspace.com/web-builder/fonts/montserrat/montserrat.css', + ], + [ + "scripts" => "4", + "name" => "دنسینگ اسکریپت", + "name_en" => "dancing-script", + "image" => "https://cdn.willaspace.com/web-builder/fonts/dancing-script/dancing-script.png", + "link" => "https://cdn.willaspace.com/web-builder/fonts/dancing-script/dancing-script.css", + ] + ], + 'FA' =>[ + [ + 'scripts'=> '2', + 'name'=> 'ایران یکان', + 'name_en'=> 'iran-yekan', + 'image'=> 'https://cdn.willaspace.com/web-builder/fonts/iran-yekan/iran-yekan.png', + 'link'=> 'https://cdn.willaspace.com/web-builder/fonts/iran-yekan/iran-yekan.css', + ], + + ] + ], + 'loaders' => [ + [ + 'name' => 'لودر کلاسیک', + 'name_en' => 'fade_logo_loader', + 'image' => 'https://cdn.willaspace.com/willamall.com/uploads/users_data/user_25058/special_pages/img-5fd4948778538_thumbnail_70_70.png', + 'inputs' => [ + 'name' => [ + 'type' => 'text', + 'name' => 'متن', + ], + 'nameEn' => [ + 'type' => 'text', + 'name' => 'متن انگلیسی', + ], + 'image' => [ + 'type' => 'image', + 'name' => 'عکس لوگو', + ], + 'colorName' => [ + 'type' => 'color', + 'name' => 'رنگ متن', + ], + 'colorNameEn' => [ + 'type' => 'color', + 'name' => 'رنگ متن انگلیسی', + ], + 'loaderDuration' => [ + 'type' => 'number', + 'name' => 'زمان نمایش لودر', + ], + 'bgColor' => [ + 'type' => 'color', + 'name' => 'رنگ پس زمینه', + ], + ], + ] + ] +]; diff --git a/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/settings.php b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/settings.php new file mode 100644 index 0000000..0042df5 --- /dev/null +++ b/resources/views/sites/user_themes/demopofo-v4_d1uWOJTb0M/settings.php @@ -0,0 +1,46 @@ + "", + "defaultLanguage" => "fa", + "languages" => [ + "fa" + ], + "defaultFont" => "iran-yekan", + "defaultPage" => "home", + "primaryColor" => "#43CCFF", + "secondaryColor" => "#2180FE", + "tertiaryColor" => "#333333", + "anotherName" => "another value", + "googleSiteVerification" => "", + "enamadScript" => "", + "samandehiScript" => "", + "tagManagerId" => "", + "fonts" => [ + [ + "scripts" => "2", + "name" => "ایران یکان", + "name_en" => "iran-yekan", + "image" => "https://cdn.willaspace.com/web-builder/fonts/iran-yekan/iran-yekan.png", + "link" => "https://cdn.willaspace.com/web-builder/fonts/iran-yekan/iran-yekan.css", + "lang" => "FA" + ], + [ + "scripts" => "1", + "name" => "مانتسرات", + "name_en" => "montserrat", + "image" => "https://cdn.willaspace.com/web-builder/fonts/montserrat/montserrat.png", + "link" => "https://cdn.willaspace.com/web-builder/fonts/montserrat/montserrat.css", + "lang" => "EN" + ], + [ + "scripts" => "4", + "name" => "دنسینگ اسکریپت", + "name_en" => "dancing-script", + "image" => "https://cdn.willaspace.com/web-builder/fonts/dancing-script/dancing-script.png", + "link" => "https://cdn.willaspace.com/web-builder/fonts/dancing-script/dancing-script.css", + "lang" => "EN" + ] + ], + "styles" => "" +]; diff --git a/scity.json b/scity.json new file mode 100644 index 0000000..370d322 --- /dev/null +++ b/scity.json @@ -0,0 +1 @@ +[{"id":1,"name":"\u062a\u0647\u0631\u0627\u0646","name_en":"tehran","latitude":35.717358,"longitude":51.375076,"view":1,"parent_id":904},{"id":2,"name":"\u06a9\u0631\u062c","name_en":"karaj","latitude":35.816933,"longitude":50.95845,"view":1,"parent_id":895},{"id":3,"name":"\u0645\u0634\u0647\u062f","name_en":"mashhad","latitude":36.304897,"longitude":59.577873,"view":1,"parent_id":880},{"id":4,"name":"\u0627\u0635\u0641\u0647\u0627\u0646","name_en":"isfahan","latitude":32.657566,"longitude":51.672817,"view":1,"parent_id":890},{"id":5,"name":"\u062a\u0628\u0631\u06cc\u0632","name_en":"tabriz","latitude":38.072517,"longitude":46.29488,"view":1,"parent_id":891},{"id":6,"name":"\u0634\u06cc\u0631\u0627\u0632","name_en":"shiraz","latitude":29.639816,"longitude":52.5119,"view":1,"parent_id":898},{"id":7,"name":"\u0627\u0647\u0648\u0627\u0632","name_en":"ahvaz","latitude":31.362139,"longitude":48.65707,"view":1,"parent_id":902},{"id":8,"name":"\u0642\u0645","name_en":"qom","latitude":34.620422,"longitude":50.853737,"view":1,"parent_id":892},{"id":9,"name":"\u06a9\u0631\u0645\u0627\u0646\u0634\u0627\u0647","name_en":"kermanshah","latitude":34.336857,"longitude":47.09223,"view":1,"parent_id":905},{"id":10,"name":"\u0627\u0631\u0648\u0645\u06cc\u0647","name_en":"urmia","latitude":37.55548,"longitude":45.056343,"view":1,"parent_id":881},{"id":11,"name":"\u0632\u0627\u0647\u062f\u0627\u0646","name_en":"zahedan","latitude":29.470049,"longitude":60.86604,"view":1,"parent_id":883},{"id":12,"name":"\u0631\u0634\u062a","name_en":"rasht","latitude":37.261196,"longitude":49.593647,"view":1,"parent_id":889},{"id":13,"name":"\u06a9\u0631\u0645\u0627\u0646","name_en":"kerman","latitude":30.27619,"longitude":57.05553,"view":1,"parent_id":877},{"id":14,"name":"\u0647\u0645\u062f\u0627\u0646","name_en":"hamedan","latitude":34.810787,"longitude":48.52082,"view":1,"parent_id":899},{"id":15,"name":"\u0627\u0631\u0627\u06a9","name_en":"arak","latitude":34.08251,"longitude":49.70063,"view":1,"parent_id":901},{"id":16,"name":"\u06cc\u0632\u062f","name_en":"yazd","latitude":31.88442,"longitude":54.342766,"view":1,"parent_id":886},{"id":17,"name":"\u0627\u0631\u062f\u0628\u06cc\u0644","name_en":"ardabil","latitude":38.2647,"longitude":48.318043,"view":1,"parent_id":906},{"id":18,"name":"\u0628\u0646\u062f\u0631\u0639\u0628\u0627\u0633","name_en":"bandar-abbas","latitude":27.188486,"longitude":56.22356,"view":1,"parent_id":894},{"id":19,"name":"\u0642\u0632\u0648\u06cc\u0646","name_en":"qazvin","latitude":36.275105,"longitude":50.009815,"view":1,"parent_id":878},{"id":20,"name":"\u0632\u0646\u062c\u0627\u0646","name_en":"zanjan","latitude":36.67692,"longitude":48.502293,"view":1,"parent_id":879},{"id":21,"name":"\u06af\u0631\u06af\u0627\u0646","name_en":"gorgan","latitude":36.855213,"longitude":54.452137,"view":1,"parent_id":897},{"id":22,"name":"\u0633\u0627\u0631\u06cc","name_en":"sari","latitude":36.561245,"longitude":53.062508,"view":1,"parent_id":893},{"id":23,"name":"\u062f\u0632\u0641\u0648\u0644","name_en":"dezful","latitude":32.396294,"longitude":48.395267,"view":1,"parent_id":902},{"id":24,"name":"\u0622\u0628\u0627\u062f\u0627\u0646","name_en":"abadan","latitude":30.317375,"longitude":48.334488,"view":1,"parent_id":902},{"id":25,"name":"\u0628\u0648\u0634\u0647\u0631","name_en":"bushehr","latitude":28.894758,"longitude":50.90273,"view":1,"parent_id":900},{"id":26,"name":"\u0628\u0631\u0648\u062c\u0631\u062f","name_en":"borujerd","latitude":33.89676,"longitude":48.757004,"view":1,"parent_id":884},{"id":27,"name":"\u062e\u0631\u0645\u200c\u0622\u0628\u0627\u062f","name_en":"khorramabad","latitude":33.476715,"longitude":48.348457,"view":1,"parent_id":884},{"id":28,"name":"\u0633\u0646\u0646\u062f\u062c","name_en":"sanandaj","latitude":35.294468,"longitude":47.00832,"view":1,"parent_id":885},{"id":29,"name":"\u0627\u0633\u0644\u0627\u0645\u200c\u0634\u0647\u0631","name_en":"eslamshahr","latitude":35.538013,"longitude":51.236763,"view":1,"parent_id":904},{"id":30,"name":"\u06a9\u0627\u0634\u0627\u0646","name_en":"kashan","latitude":33.985386,"longitude":51.406944,"view":1,"parent_id":890},{"id":31,"name":"\u0646\u062c\u0641\u200c\u0622\u0628\u0627\u062f","name_en":"najafabad","latitude":32.63863,"longitude":51.36768,"view":1,"parent_id":890},{"id":32,"name":"\u0627\u06cc\u0644\u0627\u0645","name_en":"ilam","latitude":33.63669,"longitude":46.414482,"view":1,"parent_id":888},{"id":33,"name":"\u06a9\u06cc\u0634","name_en":"kish","latitude":26.534016,"longitude":53.974907,"view":1,"parent_id":894},{"id":34,"name":"\u0628\u06cc\u0631\u062c\u0646\u062f","name_en":"birjand","latitude":32.87195,"longitude":59.240166,"view":1,"parent_id":876},{"id":35,"name":"\u0633\u0645\u0646\u0627\u0646","name_en":"semnan","latitude":35.57904,"longitude":53.387352,"view":1,"parent_id":882},{"id":36,"name":"\u0634\u0647\u0631\u06a9\u0631\u062f","name_en":"shahrekord","latitude":32.33338,"longitude":50.871063,"view":1,"parent_id":903},{"id":37,"name":"\u0628\u0646\u062f\u0631 \u0645\u0627\u0647\u0634\u0647\u0631","name_en":"mahshahr","latitude":30.559885,"longitude":49.179203,"view":1,"parent_id":902},{"id":38,"name":"\u06cc\u0627\u0633\u0648\u062c","name_en":"yasuj","latitude":30.680979,"longitude":51.564827,"view":1,"parent_id":887},{"id":39,"name":"\u0628\u062c\u0646\u0648\u0631\u062f","name_en":"bojnurd","latitude":37.479904,"longitude":57.324593,"view":1,"parent_id":896},{"id":314,"name":"\u0628\u0647\u0628\u0647\u0627\u0646","name_en":"behbahan","latitude":30.593267,"longitude":50.238525,"view":1,"parent_id":902},{"id":316,"name":"\u0633\u0628\u0632\u0648\u0627\u0631","name_en":"sabzevar","latitude":36.21749,"longitude":57.65594,"view":1,"parent_id":880},{"id":317,"name":"\u0645\u0633\u062c\u062f \u0633\u0644\u06cc\u0645\u0627\u0646","name_en":"masjed-e-soleyman","latitude":31.957708,"longitude":49.287884,"view":1,"parent_id":902},{"id":318,"name":"\u0646\u06cc\u0634\u0627\u0628\u0648\u0631","name_en":"neyshabur","latitude":36.22882,"longitude":58.79653,"view":1,"parent_id":880},{"id":602,"name":"\u0634\u0648\u0634\u062a\u0631","name_en":"shushtar","latitude":32.046917,"longitude":48.83769,"view":1,"parent_id":902},{"id":660,"name":"\u0642\u0634\u0645","name_en":"qeshm","latitude":26.784285,"longitude":55.81223,"view":1,"parent_id":894},{"id":662,"name":"\u0628\u0627\u0646\u0647","name_en":"baneh","latitude":35.994667,"longitude":45.887016,"view":1,"parent_id":885},{"id":663,"name":"\u0622\u0645\u0644","name_en":"amol","latitude":36.46499,"longitude":52.356953,"view":1,"parent_id":893},{"id":664,"name":"\u0628\u0627\u0628\u0644","name_en":"babol","latitude":36.540527,"longitude":52.67958,"view":1,"parent_id":893},{"id":665,"name":"\u0642\u0627\u0626\u0645\u200c\u0634\u0647\u0631","name_en":"qaem-shahr","latitude":36.464767,"longitude":52.861168,"view":1,"parent_id":893},{"id":671,"name":"\u0633\u0627\u0648\u0647","name_en":"saveh","latitude":35.025944,"longitude":50.364273,"view":1,"parent_id":901},{"id":706,"name":"\u0632\u0627\u0628\u0644","name_en":"zabol","latitude":31.040257,"longitude":61.500496,"view":1,"parent_id":883},{"id":707,"name":"\u0634\u0627\u0647\u0631\u0648\u062f","name_en":"shahrud","latitude":36.412704,"longitude":55.005184,"view":1,"parent_id":882},{"id":708,"name":"\u0628\u0646\u062f\u0631 \u0627\u0646\u0632\u0644\u06cc","name_en":"bandar-anzali","latitude":37.469254,"longitude":49.477436,"view":1,"parent_id":889},{"id":709,"name":"\u0646\u0648\u0634\u0647\u0631","name_en":"nowshahr","latitude":36.64976,"longitude":51.490864,"view":1,"parent_id":893},{"id":710,"name":"\u0628\u0627\u0628\u0644\u0633\u0631","name_en":"babolsar","latitude":36.70077,"longitude":52.659985,"view":1,"parent_id":893},{"id":743,"name":"\u06af\u0646\u0628\u062f \u06a9\u0627\u0648\u0648\u0633","name_en":"gonbad-kavus","latitude":37.24207,"longitude":55.181618,"view":1,"parent_id":897},{"id":744,"name":"\u0646\u0648\u0631","name_en":"nur","latitude":36.57329,"longitude":52.02422,"view":1,"parent_id":893},{"id":745,"name":"\u0631\u0627\u0645\u0633\u0631","name_en":"ramsar","latitude":36.924072,"longitude":50.642384,"view":1,"parent_id":893},{"id":746,"name":"\u0644\u0627\u0647\u06cc\u062c\u0627\u0646","name_en":"lahijan","latitude":37.205982,"longitude":50.00578,"view":1,"parent_id":889},{"id":747,"name":"\u0686\u0627\u0628\u0647\u0627\u0631","name_en":"chabahar","latitude":25.303268,"longitude":60.646236,"view":1,"parent_id":883},{"id":748,"name":"\u0622\u0642 \u0642\u0644\u0627","name_en":"aq-qala","latitude":37.01281,"longitude":54.45628,"view":1,"parent_id":897},{"id":749,"name":"\u06af\u0645\u06cc\u0634\u0627\u0646","name_en":"gomishan","latitude":37.07294,"longitude":54.073483,"view":1,"parent_id":897},{"id":750,"name":"\u06a9\u0631\u062f\u06a9\u0648\u06cc","name_en":"Kordkuy","latitude":36.79084,"longitude":54.110027,"view":1,"parent_id":897},{"id":751,"name":"\u0628\u0646\u062f\u0631 \u062a\u0631\u06a9\u0645\u0646","name_en":"bandar-torkaman","latitude":36.90634,"longitude":54.07229,"view":1,"parent_id":897},{"id":752,"name":"\u062f\u0648\u0631\u0648\u062f","name_en":"dorud","latitude":33.494804,"longitude":49.062233,"view":1,"parent_id":884},{"id":753,"name":"\u0646\u0648\u0631\u0622\u0628\u0627\u062f","name_en":"nurabad","latitude":34.0679,"longitude":47.97227,"view":1,"parent_id":884},{"id":754,"name":"\u0634\u0648\u0634","name_en":"shush","latitude":32.194553,"longitude":48.258675,"view":1,"parent_id":902},{"id":756,"name":"\u0633\u0648\u0633\u0646\u06af\u0631\u062f","name_en":"susangerd","latitude":31.556074,"longitude":48.18439,"view":1,"parent_id":902},{"id":759,"name":"\u0627\u0647\u0631","name_en":"ahar","latitude":38.479786,"longitude":47.071163,"view":1,"parent_id":891},{"id":760,"name":"\u0628\u0646\u0627\u0628","name_en":"bonab","latitude":37.342693,"longitude":46.059204,"view":1,"parent_id":891},{"id":761,"name":"\u0633\u0647\u0646\u062f","name_en":"sahand","latitude":37.943188,"longitude":46.13413,"view":1,"parent_id":891},{"id":762,"name":"\u0645\u0631\u0627\u063a\u0647","name_en":"maragheh","latitude":37.380684,"longitude":46.236366,"view":1,"parent_id":891},{"id":763,"name":"\u0645\u0631\u0646\u062f","name_en":"marand","latitude":38.43119,"longitude":45.766144,"view":1,"parent_id":891},{"id":764,"name":"\u0645\u06cc\u0627\u0646\u0647","name_en":"mianeh","latitude":37.42485,"longitude":47.72236,"view":1,"parent_id":891},{"id":765,"name":"\u0628\u0648\u06a9\u0627\u0646","name_en":"bukan","latitude":36.521793,"longitude":46.20791,"view":1,"parent_id":881},{"id":766,"name":"\u067e\u06cc\u0631\u0627\u0646\u0634\u0647\u0631","name_en":"piranshahr","latitude":36.69534,"longitude":45.144825,"view":1,"parent_id":881},{"id":767,"name":"\u062e\u0648\u06cc","name_en":"khoy","latitude":38.549664,"longitude":44.952152,"view":1,"parent_id":881},{"id":768,"name":"\u0633\u0644\u0645\u0627\u0633","name_en":"salmas","latitude":38.199913,"longitude":44.768105,"view":1,"parent_id":881},{"id":769,"name":"\u0645\u0647\u0627\u0628\u0627\u062f","name_en":"mahabad","latitude":36.76707,"longitude":45.728313,"view":1,"parent_id":881},{"id":770,"name":"\u0646\u0642\u062f\u0647","name_en":"naqadeh","latitude":36.95819,"longitude":45.389862,"view":1,"parent_id":881},{"id":771,"name":"\u067e\u0627\u0631\u0633\u200c\u0622\u0628\u0627\u062f","name_en":"parsabad","latitude":39.627834,"longitude":47.90148,"view":1,"parent_id":906},{"id":772,"name":"\u062e\u0644\u062e\u0627\u0644","name_en":"khalkhal","latitude":37.619774,"longitude":48.53143,"view":1,"parent_id":906},{"id":773,"name":"\u0645\u0634\u06a9\u06cc\u0646\u200c\u0634\u0647\u0631","name_en":"meshgin-shahr","latitude":38.3873,"longitude":47.674034,"view":1,"parent_id":906},{"id":774,"name":"\u0646\u0638\u0631\u0622\u0628\u0627\u062f","name_en":"nazarabad","latitude":35.95977,"longitude":50.605278,"view":1,"parent_id":895},{"id":775,"name":"\u0622\u0628\u062f\u0627\u0646\u0627\u0646","name_en":"abdanan","latitude":32.99174,"longitude":47.421654,"view":1,"parent_id":888},{"id":776,"name":"\u0627\u06cc\u0648\u0627\u0646","name_en":"eyvan","latitude":33.828037,"longitude":46.308067,"view":1,"parent_id":888},{"id":777,"name":"\u062f\u0647\u0644\u0631\u0627\u0646","name_en":"dehloran","latitude":32.691166,"longitude":47.269024,"view":1,"parent_id":888},{"id":778,"name":"\u0628\u0631\u0627\u0632\u062c\u0627\u0646","name_en":"borazjan","latitude":29.268408,"longitude":51.21755,"view":1,"parent_id":900},{"id":779,"name":"\u0628\u0646\u062f\u0631 \u06a9\u0646\u06af\u0627\u0646","name_en":"bandar-kangan","latitude":27.834257,"longitude":52.073414,"view":1,"parent_id":900},{"id":780,"name":"\u0628\u0646\u062f\u0631 \u06af\u0646\u0627\u0648\u0647","name_en":"bandar-ganaveh","latitude":29.58303,"longitude":50.514767,"view":1,"parent_id":900},{"id":781,"name":"\u067e\u06cc\u0634\u0648\u0627","name_en":"pishva","latitude":35.30681,"longitude":51.728138,"view":1,"parent_id":904},{"id":782,"name":"\u0686\u0647\u0627\u0631\u062f\u0627\u0646\u06af\u0647","name_en":"chahar-dangeh","latitude":35.598732,"longitude":51.314415,"view":1,"parent_id":904},{"id":783,"name":"\u062f\u0645\u0627\u0648\u0646\u062f","name_en":"damavand","latitude":35.703564,"longitude":52.048042,"view":1,"parent_id":904},{"id":784,"name":"\u0646\u0633\u06cc\u0645\u200c\u0634\u0647\u0631","name_en":"nasimshahr","latitude":35.562557,"longitude":51.16034,"view":1,"parent_id":904},{"id":785,"name":"\u0628\u0631\u0648\u062c\u0646","name_en":"boroujen","latitude":31.973633,"longitude":51.3008,"view":1,"parent_id":903},{"id":786,"name":"\u0641\u0631\u062e\u200c\u0634\u0647\u0631","name_en":"farrokhshahr","latitude":32.270927,"longitude":50.97159,"view":1,"parent_id":903},{"id":787,"name":"\u0644\u0631\u062f\u06af\u0627\u0646","name_en":"lordegan","latitude":31.517256,"longitude":50.82154,"view":1,"parent_id":903},{"id":788,"name":"\u0637\u0628\u0633","name_en":"tabas","latitude":33.609398,"longitude":56.939278,"view":1,"parent_id":876},{"id":789,"name":"\u0641\u0631\u062f\u0648\u0633","name_en":"ferdows","latitude":34.019,"longitude":58.172134,"view":1,"parent_id":876},{"id":790,"name":"\u0642\u0627\u064a\u0646","name_en":"ghayen","latitude":33.736492,"longitude":59.18651,"view":1,"parent_id":876},{"id":791,"name":"\u062a\u0631\u0628\u062a \u062c\u0627\u0645","name_en":"torbat-jam","latitude":35.23555,"longitude":60.628197,"view":1,"parent_id":880},{"id":792,"name":"\u0645\u06cc\u0627\u0646\u062f\u0648\u0622\u0628","name_en":"miandoab","latitude":36.967766,"longitude":46.1089,"view":1,"parent_id":881},{"id":793,"name":"\u0622\u0634\u062e\u0627\u0646\u0647","name_en":"ashkhaneh","latitude":37.558823,"longitude":56.92376,"view":1,"parent_id":896},{"id":794,"name":"\u0627\u0633\u0641\u0631\u0627\u06cc\u0646","name_en":"esfarayen","latitude":37.063538,"longitude":57.50791,"view":1,"parent_id":896},{"id":795,"name":"\u0634\u06cc\u0631\u0648\u0627\u0646","name_en":"shirvan","latitude":37.406025,"longitude":57.932575,"view":1,"parent_id":896},{"id":796,"name":"\u0627\u0646\u062f\u06cc\u0645\u0634\u06a9","name_en":"andimeshk","latitude":32.461273,"longitude":48.34196,"view":1,"parent_id":902},{"id":797,"name":"\u0627\u06cc\u0630\u0647","name_en":"izeh","latitude":31.826155,"longitude":49.866783,"view":1,"parent_id":902},{"id":798,"name":"\u0628\u0646\u062f\u0631 \u0627\u0645\u0627\u0645 \u062e\u0645\u06cc\u0646\u06cc","name_en":"bandar-Imam-khomeini","latitude":30.46572,"longitude":49.079952,"view":1,"parent_id":902},{"id":799,"name":"\u062e\u0631\u0645\u0634\u0647\u0631","name_en":"khorramshahr","latitude":30.42547,"longitude":48.187717,"view":1,"parent_id":902},{"id":800,"name":"\u0631\u0627\u0645\u0647\u0631\u0645\u0632","name_en":"ramhormoz","latitude":31.27535,"longitude":49.610558,"view":1,"parent_id":902},{"id":802,"name":"\u0627\u0628\u0647\u0631","name_en":"abhar","latitude":36.14811,"longitude":49.23506,"view":1,"parent_id":879},{"id":803,"name":"\u062e\u0631\u0645\u062f\u0631\u0647","name_en":"khorramdarreh","latitude":36.20894,"longitude":49.196438,"view":1,"parent_id":879},{"id":804,"name":"\u0642\u06cc\u062f\u0627\u0631","name_en":"qeydar","latitude":36.12102,"longitude":48.59033,"view":1,"parent_id":879},{"id":805,"name":"\u062f\u0627\u0645\u063a\u0627\u0646","name_en":"damghan","latitude":36.16486,"longitude":54.342262,"view":1,"parent_id":882},{"id":806,"name":"\u06af\u0631\u0645\u0633\u0627\u0631","name_en":"garmsar","latitude":35.20643,"longitude":52.336246,"view":1,"parent_id":882},{"id":807,"name":"\u0627\u06cc\u0631\u0627\u0646\u0634\u0647\u0631","name_en":"Iranshahr","latitude":27.215057,"longitude":60.68575,"view":1,"parent_id":883},{"id":808,"name":"\u062c\u0647\u0631\u0645","name_en":"jahrom","latitude":28.518656,"longitude":53.582703,"view":1,"parent_id":898},{"id":809,"name":"\u062f\u0627\u0631\u0627\u0628","name_en":"darab","latitude":28.751759,"longitude":54.547695,"view":1,"parent_id":898},{"id":810,"name":"\u0635\u062f\u0631\u0627-\u0641\u0627\u0631\u0633","name_en":"sadra","latitude":29.79413,"longitude":52.499115,"view":1,"parent_id":898},{"id":811,"name":"\u062a\u0627\u06a9\u0633\u062a\u0627\u0646","name_en":"takestan","latitude":36.072216,"longitude":49.69402,"view":1,"parent_id":878},{"id":812,"name":"\u0633\u0642\u0632","name_en":"saqqez","latitude":36.23966,"longitude":46.27641,"view":1,"parent_id":885},{"id":813,"name":"\u0642\u0631\u0648\u0647","name_en":"qorveh","latitude":35.165947,"longitude":47.80515,"view":1,"parent_id":885},{"id":814,"name":"\u0645\u0631\u06cc\u0648\u0627\u0646","name_en":"marivan","latitude":35.519108,"longitude":46.180264,"view":1,"parent_id":885},{"id":815,"name":"\u0628\u0645","name_en":"bam","latitude":29.102898,"longitude":58.3472,"view":1,"parent_id":877},{"id":816,"name":"\u062c\u06cc\u0631\u0641\u062a","name_en":"jiroft","latitude":28.686445,"longitude":57.72085,"view":1,"parent_id":877},{"id":817,"name":"\u0631\u0641\u0633\u0646\u062c\u0627\u0646","name_en":"rafsanjan","latitude":30.361021,"longitude":55.991436,"view":1,"parent_id":877},{"id":818,"name":"\u0633\u06cc\u0631\u062c\u0627\u0646","name_en":"sirjan","latitude":29.481913,"longitude":55.669006,"view":1,"parent_id":877},{"id":819,"name":"\u0627\u0633\u0644\u0627\u0645\u200c\u200c\u0622\u0628\u0627\u062f \u063a\u0631\u0628","name_en":"eslamabad-gharb","latitude":34.110306,"longitude":46.526028,"view":1,"parent_id":905},{"id":820,"name":"\u062c\u0648\u0627\u0646\u0631\u0648\u062f","name_en":"javanrud","latitude":34.805958,"longitude":46.49457,"view":1,"parent_id":905},{"id":821,"name":"\u06a9\u0646\u06af\u0627\u0648\u0631","name_en":"kangavar","latitude":34.503487,"longitude":47.958588,"view":1,"parent_id":905},{"id":822,"name":"\u062f\u0647\u062f\u0634\u062a","name_en":"dehdasht","latitude":30.7888,"longitude":50.57921,"view":1,"parent_id":887},{"id":823,"name":"\u0639\u0644\u06cc\u200c\u0622\u0628\u0627\u062f \u06a9\u062a\u0648\u0644","name_en":"aliabad-katul","latitude":36.903435,"longitude":54.856083,"view":1,"parent_id":897},{"id":824,"name":"\u0622\u0633\u062a\u0627\u0631\u0627","name_en":"astara","latitude":38.427353,"longitude":48.861893,"view":1,"parent_id":889},{"id":825,"name":"\u0622\u0633\u062a\u0627\u0646\u0647 \u0627\u0634\u0631\u0641\u06cc\u0647","name_en":"astaneh-ashrafiyeh","latitude":37.265373,"longitude":49.938736,"view":1,"parent_id":889},{"id":826,"name":"\u0631\u0648\u062f\u0633\u0631","name_en":"rudsar","latitude":37.137886,"longitude":50.299564,"view":1,"parent_id":889},{"id":827,"name":"\u0635\u0648\u0645\u0639\u0647\u200c\u0633\u0631\u0627","name_en":"someh-sara","latitude":37.304672,"longitude":49.318516,"view":1,"parent_id":889},{"id":828,"name":"\u0644\u0646\u06af\u0631\u0648\u062f","name_en":"langarud","latitude":37.19115,"longitude":50.155136,"view":1,"parent_id":889},{"id":829,"name":"\u062a\u0627\u0644\u0634","name_en":"talesh","latitude":37.802914,"longitude":48.906734,"view":1,"parent_id":889},{"id":830,"name":"\u0627\u0644\u06cc\u06af\u0648\u062f\u0631\u0632","name_en":"aligudarz","latitude":33.39677,"longitude":49.698986,"view":1,"parent_id":884},{"id":831,"name":"\u06a9\u0648\u0647\u062f\u0634\u062a","name_en":"kuhdasht","latitude":33.530502,"longitude":47.609985,"view":1,"parent_id":884},{"id":832,"name":"\u0628\u0647\u0634\u0647\u0631","name_en":"behshahr","latitude":36.692665,"longitude":53.538948,"view":1,"parent_id":893},{"id":833,"name":"\u062a\u0646\u06a9\u0627\u0628\u0646","name_en":"tonekabon","latitude":36.812695,"longitude":50.875507,"view":1,"parent_id":893},{"id":834,"name":"\u062c\u0648\u06cc\u0628\u0627\u0631","name_en":"juybar","latitude":36.642315,"longitude":52.90417,"view":1,"parent_id":893},{"id":835,"name":"\u0686\u0627\u0644\u0648\u0633","name_en":"chalus","latitude":36.658092,"longitude":51.420853,"view":1,"parent_id":893},{"id":836,"name":"\u0641\u0631\u06cc\u062f\u0648\u0646\u200c\u06a9\u0646\u0627\u0631","name_en":"fereydunkenar","latitude":36.683365,"longitude":52.527218,"view":1,"parent_id":893},{"id":837,"name":"\u0645\u062d\u0645\u0648\u062f\u0622\u0628\u0627\u062f","name_en":"mahmudabad","latitude":36.628536,"longitude":52.262524,"view":1,"parent_id":893},{"id":838,"name":"\u0646\u06a9\u0627","name_en":"neka","latitude":36.64784,"longitude":53.29312,"view":1,"parent_id":893},{"id":839,"name":"\u062e\u0645\u06cc\u0646","name_en":"khomein","latitude":33.63772,"longitude":50.069836,"view":1,"parent_id":901},{"id":840,"name":"\u0645\u062d\u0644\u0627\u062a","name_en":"mahalat","latitude":33.905087,"longitude":50.458633,"view":1,"parent_id":901},{"id":841,"name":"\u0645\u06cc\u0646\u0627\u0628","name_en":"minab","latitude":27.131184,"longitude":57.076424,"view":1,"parent_id":894},{"id":842,"name":"\u0627\u0633\u062f\u0622\u0628\u0627\u062f","name_en":"asadabad","latitude":34.78158,"longitude":48.120094,"view":1,"parent_id":899},{"id":843,"name":"\u0645\u0644\u0627\u06cc\u0631","name_en":"malayer","latitude":34.302536,"longitude":48.81713,"view":1,"parent_id":899},{"id":844,"name":"\u0646\u0647\u0627\u0648\u0646\u062f","name_en":"nahavand","latitude":34.194206,"longitude":48.373367,"view":1,"parent_id":899},{"id":845,"name":"\u0645\u06cc\u0628\u062f","name_en":"meybod","latitude":32.21285,"longitude":54.032684,"view":1,"parent_id":886},{"id":846,"name":"\u0627\u0631\u062f\u06a9\u0627\u0646","name_en":"ardakan","latitude":32.30908,"longitude":54.014355,"view":1,"parent_id":886},{"id":847,"name":"\u06af\u0646\u0627\u0628\u0627\u062f","name_en":"gonabad","latitude":34.350037,"longitude":58.694553,"view":1,"parent_id":880},{"id":848,"name":"\u06af\u0644\u067e\u0627\u06cc\u06af\u0627\u0646","name_en":"golpayegan","latitude":33.456615,"longitude":50.276993,"view":1,"parent_id":890},{"id":849,"name":"\u0641\u0644\u0627\u0648\u0631\u062c\u0627\u0646","name_en":"falavarjan","latitude":32.554752,"longitude":51.50685,"view":1,"parent_id":890},{"id":850,"name":"\u0637\u0627\u0644\u0642\u0627\u0646","name_en":"taleqan","latitude":36.19529,"longitude":50.68096,"view":1,"parent_id":895},{"id":851,"name":"\u0622\u0628\u0627\u062f\u0647","name_en":"abadeh","latitude":31.162325,"longitude":52.646828,"view":1,"parent_id":898},{"id":852,"name":"\u0633\u0631\u0627\u0628","name_en":"sarab","latitude":37.940243,"longitude":47.532413,"view":1,"parent_id":891},{"id":853,"name":"\u0622\u0630\u0631\u0634\u0647\u0631","name_en":"azarshahr","latitude":37.753826,"longitude":45.982502,"view":1,"parent_id":891},{"id":854,"name":"\u0633\u0631\u067e\u0644 \u0630\u0647\u0627\u0628","name_en":"sarpol-zahab","latitude":34.45784,"longitude":45.859917,"view":1,"parent_id":905},{"id":855,"name":"\u0633\u0646\u0642\u0631","name_en":"sonqor","latitude":34.776276,"longitude":47.599926,"view":1,"parent_id":905},{"id":856,"name":"\u0645\u0627\u06a9\u0648","name_en":"maku","latitude":39.29131,"longitude":44.489895,"view":1,"parent_id":881},{"id":857,"name":"\u0633\u0631\u062f\u0634\u062a","name_en":"sardasht","latitude":36.15822,"longitude":45.47813,"view":1,"parent_id":881},{"id":858,"name":"\u0634\u0627\u0647\u06cc\u0646 \u062f\u0698","name_en":"shahin-dej","latitude":36.678875,"longitude":46.567307,"view":1,"parent_id":881},{"id":859,"name":"\u0627\u0634\u0646\u0648\u06cc\u0647","name_en":"oshnavieh","latitude":37.037086,"longitude":45.09847,"view":1,"parent_id":881},{"id":860,"name":"\u0641\u0648\u0645\u0646","name_en":"fuman","latitude":37.227806,"longitude":49.31341,"view":1,"parent_id":889},{"id":861,"name":"\u0633\u06cc\u0627\u0647\u06a9\u0644","name_en":"siahkal","latitude":37.15278,"longitude":49.876785,"view":1,"parent_id":889},{"id":862,"name":"\u0645\u0627\u0633\u0627\u0644","name_en":"masal","latitude":37.380363,"longitude":49.146854,"view":1,"parent_id":889},{"id":863,"name":"\u06a9\u0644\u0627\u0686\u0627\u06cc","name_en":"kelachay","latitude":37.07608,"longitude":50.397694,"view":1,"parent_id":889},{"id":864,"name":"\u0686\u0627\u0628\u06a9\u0633\u0631","name_en":"chaboksar","latitude":36.97469,"longitude":50.56205,"view":1,"parent_id":889},{"id":865,"name":"\u0633\u0631\u0627\u0648\u0627\u0646-\u0633\u06cc\u0633\u062a\u0627\u0646 \u0648 \u0628\u0644\u0648\u0686\u0633\u062a\u0627\u0646","name_en":"saravan","latitude":27.346884,"longitude":62.35219,"view":1,"parent_id":883},{"id":866,"name":"\u062a\u0648\u06cc\u0633\u0631\u06a9\u0627\u0646","name_en":"tuyserkan","latitude":34.54873,"longitude":48.451065,"view":1,"parent_id":899},{"id":867,"name":"\u0632\u0631\u0646\u062f","name_en":"zarand","latitude":30.810305,"longitude":56.578514,"view":1,"parent_id":877},{"id":868,"name":"\u0628\u06cc\u062c\u0627\u0631","name_en":"bijar","latitude":35.87472,"longitude":47.599842,"view":1,"parent_id":885},{"id":869,"name":"\u0622\u0628\u06cc\u06a9","name_en":"abyek","latitude":36.046852,"longitude":50.535755,"view":1,"parent_id":878},{"id":870,"name":"\u0627\u0632\u0646\u0627","name_en":"azna","latitude":33.451534,"longitude":49.453358,"view":1,"parent_id":884},{"id":871,"name":"\u062d\u0645\u06cc\u062f\u06cc\u0627","name_en":"hamidia","latitude":31.828205,"longitude":54.395912,"view":1,"parent_id":886},{"id":872,"name":"\u0627\u0644\u0648\u0646\u062f","name_en":"alvand","latitude":36.186848,"longitude":50.058636,"view":1,"parent_id":878},{"id":873,"name":"\u0645\u062d\u0645\u062f\u06cc\u0647-\u0642\u0632\u0648\u06cc\u0646","name_en":"mohammadieh","latitude":36.221375,"longitude":50.18347,"view":1,"parent_id":878},{"id":874,"name":"\u062f\u0648\u06af\u0646\u0628\u062f\u0627\u0646","name_en":"dogonbadan","latitude":30.357033,"longitude":50.796616,"view":1,"parent_id":887},{"id":876,"name":"\u062e\u0631\u0627\u0633\u0627\u0646 \u062c\u0646\u0648\u0628\u06cc","name_en":"khorasan jonoobi","latitude":null,"longitude":null,"view":1,"parent_id":null},{"id":877,"name":"\u06a9\u0631\u0645\u0627\u0646","name_en":"kerman","latitude":null,"longitude":null,"view":1,"parent_id":null},{"id":878,"name":"\u0642\u0632\u0648\u06cc\u0646","name_en":"ghazvin","latitude":null,"longitude":null,"view":1,"parent_id":null},{"id":879,"name":"\u0632\u0646\u062c\u0627\u0646","name_en":"zanjan","latitude":null,"longitude":null,"view":1,"parent_id":null},{"id":880,"name":"\u062e\u0631\u0627\u0633\u0627\u0646 \u0631\u0636\u0648\u06cc","name_en":"khorasan razavi","latitude":null,"longitude":null,"view":1,"parent_id":null},{"id":881,"name":"\u0622\u0630\u0631\u0628\u0627\u06cc\u062c\u0627\u0646 \u063a\u0631\u0628\u06cc","name_en":"azarbayjan gharbi","latitude":null,"longitude":null,"view":1,"parent_id":null},{"id":882,"name":"\u0633\u0645\u0646\u0627\u0646","name_en":"semnan","latitude":null,"longitude":null,"view":1,"parent_id":null},{"id":883,"name":"\u0633\u06cc\u0633\u062a\u0627\u0646 \u0648 \u0628\u0644\u0648\u0686\u0633\u062a\u0627\u0646","name_en":"sistan va bloochestan","latitude":null,"longitude":null,"view":1,"parent_id":null},{"id":884,"name":"\u0644\u0631\u0633\u062a\u0627\u0646","name_en":"lorestan","latitude":null,"longitude":null,"view":1,"parent_id":null},{"id":885,"name":"\u06a9\u0631\u062f\u0633\u062a\u0627\u0646","name_en":"kordestan","latitude":null,"longitude":null,"view":1,"parent_id":null},{"id":886,"name":"\u06cc\u0632\u062f","name_en":"yazd","latitude":null,"longitude":null,"view":1,"parent_id":null},{"id":887,"name":"\u06a9\u0647\u06af\u06cc\u0644\u0648\u06cc\u0647 \u0648 \u0628\u0648\u06cc\u0631\u0627\u062d\u0645\u062f","name_en":"kohgilooye va boyer ahmad","latitude":null,"longitude":null,"view":1,"parent_id":null},{"id":888,"name":"\u0627\u06cc\u0644\u0627\u0645","name_en":"ilam","latitude":null,"longitude":null,"view":1,"parent_id":null},{"id":889,"name":"\u06af\u06cc\u0644\u0627\u0646","name_en":"gilan","latitude":null,"longitude":null,"view":1,"parent_id":null},{"id":890,"name":"\u0627\u0635\u0641\u0647\u0627\u0646","name_en":"esfahan","latitude":null,"longitude":null,"view":1,"parent_id":null},{"id":891,"name":"\u0622\u0630\u0631\u0628\u0627\u06cc\u062c\u0627\u0646 \u0634\u0631\u0642\u06cc","name_en":"azarbayjan sharghi","latitude":null,"longitude":null,"view":1,"parent_id":null},{"id":892,"name":"\u0642\u0645","name_en":"qom","latitude":null,"longitude":null,"view":1,"parent_id":null},{"id":893,"name":"\u0645\u0627\u0632\u0646\u062f\u0631\u0627\u0646","name_en":"mazandaran","latitude":null,"longitude":null,"view":1,"parent_id":null},{"id":894,"name":"\u0647\u0631\u0645\u0632\u06af\u0627\u0646","name_en":"hormozgan","latitude":null,"longitude":null,"view":1,"parent_id":null},{"id":895,"name":"\u0627\u0644\u0628\u0631\u0632","name_en":"alborz","latitude":null,"longitude":null,"view":1,"parent_id":null},{"id":896,"name":"\u062e\u0631\u0627\u0633\u0627\u0646 \u0634\u0645\u0627\u0644\u06cc","name_en":"khorasan shomali","latitude":null,"longitude":null,"view":1,"parent_id":null},{"id":897,"name":"\u06af\u0644\u0633\u062a\u0627\u0646","name_en":"golestan","latitude":null,"longitude":null,"view":1,"parent_id":null},{"id":898,"name":"\u0641\u0627\u0631\u0633","name_en":"fars","latitude":null,"longitude":null,"view":1,"parent_id":null},{"id":899,"name":"\u0647\u0645\u062f\u0627\u0646","name_en":"hamedan","latitude":null,"longitude":null,"view":1,"parent_id":null},{"id":900,"name":"\u0628\u0648\u0634\u0647\u0631","name_en":"booshehr","latitude":null,"longitude":null,"view":1,"parent_id":null},{"id":901,"name":"\u0645\u0631\u06a9\u0632\u06cc","name_en":"markazi","latitude":null,"longitude":null,"view":1,"parent_id":null},{"id":902,"name":"\u062e\u0648\u0632\u0633\u062a\u0627\u0646","name_en":"khoozestan","latitude":null,"longitude":null,"view":1,"parent_id":null},{"id":903,"name":"\u0686\u0647\u0627\u0631\u0645\u062d\u0627\u0644 \u0648 \u0628\u062e\u062a\u06cc\u0627\u0631\u06cc","name_en":"chaharmahal va bakhtiyari","latitude":null,"longitude":null,"view":1,"parent_id":null},{"id":904,"name":"\u062a\u0647\u0631\u0627\u0646","name_en":"tehran","latitude":null,"longitude":null,"view":1,"parent_id":null},{"id":905,"name":"\u06a9\u0631\u0645\u0627\u0646\u0634\u0627\u0647","name_en":"kermanshah","latitude":null,"longitude":null,"view":1,"parent_id":null},{"id":906,"name":"\u0627\u0631\u062f\u0628\u06cc\u0644","name_en":"ardebil","latitude":null,"longitude":null,"view":1,"parent_id":null},{"id":1683,"name":"\u0632\u06cc\u0628\u0627\u06a9\u0646\u0627\u0631","name_en":"zibakenar","latitude":37.416744,"longitude":49.87,"view":1,"parent_id":889},{"id":1684,"name":"\u0631\u0636\u0648\u0627\u0646\u0634\u0647\u0631","name_en":"rezvanshahr","latitude":37.56,"longitude":49.15,"view":1,"parent_id":889},{"id":1686,"name":"\u0686\u0627\u0641 \u0648 \u0686\u0645\u062e\u0627\u0644\u0647","name_en":"chaf-chamkhale","latitude":37.229443,"longitude":50.253887,"view":1,"parent_id":889},{"id":1687,"name":"\u06a9\u06cc\u0627\u0634\u0647\u0631","name_en":"kiashahr","latitude":37.416744,"longitude":49.894234,"view":1,"parent_id":889},{"id":1688,"name":"\u0627\u0645\u0644\u0634","name_en":"amlash","latitude":37.09569,"longitude":50.18479,"view":1,"parent_id":889},{"id":1689,"name":"\u062e\u0634\u06a9\u0628\u06cc\u062c\u0627\u0631","name_en":"khoshkbijar","latitude":37.37302,"longitude":49.75766,"view":1,"parent_id":889},{"id":1690,"name":"\u0644\u0634\u062a \u0646\u0634\u0627","name_en":"lashtenesha","latitude":37.35891,"longitude":49.86295,"view":1,"parent_id":889},{"id":1691,"name":"\u0622\u0632\u0627\u062f\u0634\u0647\u0631","name_en":"azadshahr-golestan","latitude":37.08735,"longitude":55.177788,"view":1,"parent_id":897},{"id":1692,"name":"\u06a9\u0644\u0627\u0644\u0647","name_en":"kalale","latitude":37.37935,"longitude":55.49292,"view":1,"parent_id":897},{"id":1693,"name":"\u0645\u06cc\u0646\u0648\u062f\u0634\u062a","name_en":"minoodasht","latitude":37.22931,"longitude":55.379745,"view":1,"parent_id":897},{"id":1694,"name":"\u0686\u0645\u0633\u062a\u0627\u0646","name_en":"chamestan","latitude":36.48342,"longitude":52.12138,"view":1,"parent_id":893},{"id":1695,"name":"\u06a9\u0644\u0627\u0631\u0622\u0628\u0627\u062f","name_en":"kelarabad","latitude":36.68756,"longitude":51.24713,"view":1,"parent_id":893},{"id":1696,"name":"\u06a9\u0644\u0627\u0631\u062f\u0634\u062a","name_en":"kelarestan","latitude":36.49605,"longitude":51.153343,"view":1,"parent_id":893},{"id":1697,"name":"\u0639\u0628\u0627\u0633\u200c\u0622\u0628\u0627\u062f","name_en":"abbasabad-mazandaran","latitude":36.72293,"longitude":51.10717,"view":1,"parent_id":893},{"id":1698,"name":"\u0631\u0648\u06cc\u0627\u0646","name_en":"royan","latitude":36.567326,"longitude":51.96853,"view":1,"parent_id":893},{"id":1699,"name":"\u0633\u0644\u0645\u0627\u0646\u200c\u0634\u0647\u0631","name_en":"salman-shahr","latitude":36.6947,"longitude":51.1955,"view":1,"parent_id":893},{"id":1700,"name":"\u0633\u0631\u062e\u0631\u0648\u062f","name_en":"sorkhrood","latitude":36.479664,"longitude":52.120438,"view":1,"parent_id":893},{"id":1701,"name":"\u0627\u06cc\u0632\u062f\u0634\u0647\u0631","name_en":"izadshahr","latitude":36.594006,"longitude":52.127956,"view":1,"parent_id":893},{"id":1702,"name":"\u067e\u0644 \u0633\u0641\u06cc\u062f","name_en":"polsefid","latitude":36.111862,"longitude":53.058716,"view":1,"parent_id":893},{"id":1703,"name":"\u0627\u0645\u06cc\u0631\u06a9\u0644\u0627","name_en":"amirkala","latitude":36.598938,"longitude":52.665886,"view":1,"parent_id":893},{"id":1706,"name":"\u06af\u0644\u0633\u062a\u0627\u0646","name_en":"golestan-baharestan","latitude":35.51121,"longitude":51.169884,"view":1,"parent_id":904},{"id":1707,"name":"\u0628\u0627\u0642\u0631\u0634\u0647\u0631","name_en":"baghershahr","latitude":35.53221,"longitude":51.40576,"view":1,"parent_id":904},{"id":1708,"name":"\u06a9\u0647\u0631\u06cc\u0632\u06a9","name_en":"kahrizak","latitude":35.517925,"longitude":51.360626,"view":1,"parent_id":904},{"id":1709,"name":"\u0622\u0628\u0633\u0631\u062f","name_en":"absard","latitude":35.63648,"longitude":52.165962,"view":1,"parent_id":904},{"id":1710,"name":"\u0635\u0641\u0627\u062f\u0634\u062a","name_en":"safadasht-industrial-city","latitude":35.678078,"longitude":50.818195,"view":1,"parent_id":904},{"id":1711,"name":"\u0648\u062d\u06cc\u062f\u06cc\u0647","name_en":"vahidieh","latitude":35.607914,"longitude":51.031406,"view":1,"parent_id":904},{"id":1712,"name":"\u0635\u0628\u0627\u0634\u0647\u0631","name_en":"sabashahr","latitude":35.58619,"longitude":51.11577,"view":1,"parent_id":904},{"id":1713,"name":"\u0634\u0627\u0647\u062f\u0634\u0647\u0631","name_en":"shahedshahr","latitude":35.57231,"longitude":51.087868,"view":1,"parent_id":904},{"id":1714,"name":"\u0627\u0631\u062c\u0645\u0646\u062f","name_en":"arjmand","latitude":35.81531,"longitude":52.512783,"view":1,"parent_id":904},{"id":1715,"name":"\u0622\u0628\u0639\u0644\u06cc","name_en":"abali","latitude":35.76871,"longitude":51.9612,"view":1,"parent_id":904},{"id":1716,"name":"\u0641\u0631\u062f\u0648\u0633\u06cc\u0647","name_en":"ferdosiye","latitude":35.597927,"longitude":51.05822,"view":1,"parent_id":904},{"id":1717,"name":"\u0634\u0645\u0634\u06a9","name_en":"shemshak","latitude":36.016388,"longitude":51.48209,"view":1,"parent_id":904},{"id":1718,"name":"\u062c\u0648\u0627\u062f\u0622\u0628\u0627\u062f","name_en":"javadabad","latitude":35.21277,"longitude":51.671837,"view":1,"parent_id":904},{"id":1719,"name":"\u06a9\u06cc\u0644\u0627\u0646","name_en":"kilan","latitude":35.55402,"longitude":52.153812,"view":1,"parent_id":904},{"id":1720,"name":"\u06af\u0631\u0645\u062f\u0631\u0647","name_en":"garmdareh","latitude":35.75384,"longitude":51.06327,"view":1,"parent_id":895},{"id":1721,"name":"\u0627\u0634\u062a\u0647\u0627\u0631\u062f","name_en":"eshtehard","latitude":35.72189,"longitude":50.36788,"view":1,"parent_id":895},{"id":1722,"name":"\u0622\u0633\u0627\u0631\u0627","name_en":"asara","latitude":36.03806,"longitude":51.19354,"view":1,"parent_id":895},{"id":1723,"name":"\u0627\u0628\u0631\u06cc\u0634\u0645","name_en":"abrisham-isfahan","latitude":32.570827,"longitude":51.57263,"view":1,"parent_id":890},{"id":1724,"name":"\u062f\u0627\u0631\u0627\u0646","name_en":"daran","latitude":32.985775,"longitude":50.409534,"view":1,"parent_id":890},{"id":1725,"name":"\u0633\u0645\u06cc\u0631\u0645","name_en":"semirom","latitude":31.396917,"longitude":51.575382,"view":1,"parent_id":890},{"id":1726,"name":"\u0646\u06cc\u200c\u0631\u06cc\u0632","name_en":"neyriz","latitude":29.192411,"longitude":54.319893,"view":1,"parent_id":898},{"id":1727,"name":"\u062e\u0648\u0627\u0646\u0633\u0627\u0631","name_en":"khansar","latitude":33.26682,"longitude":50.3171,"view":1,"parent_id":890},{"id":1728,"name":"\u0627\u0642\u0644\u06cc\u062f","name_en":"eqlid","latitude":30.897594,"longitude":52.69092,"view":1,"parent_id":898},{"id":1729,"name":"\u062a\u0627\u06cc\u0628\u0627\u062f","name_en":"taybad","latitude":34.743862,"longitude":60.778206,"view":1,"parent_id":880},{"id":1730,"name":"\u0644\u0627\u0631","name_en":"lar","latitude":27.664463,"longitude":54.32605,"view":1,"parent_id":898},{"id":1731,"name":"\u0644\u0627\u0645\u0631\u062f","name_en":"lamerd","latitude":27.340551,"longitude":53.18399,"view":1,"parent_id":898},{"id":1732,"name":"\u0686\u0646\u0627\u0631\u0627\u0646","name_en":"chenaran","latitude":36.642967,"longitude":59.119015,"view":1,"parent_id":880},{"id":1733,"name":"\u0642\u0627\u0633\u0645\u200c\u0622\u0628\u0627\u062f (\u062e\u0648\u0627\u0641)","name_en":"qasemabad-khaf","latitude":34.36534,"longitude":59.870625,"view":1,"parent_id":880},{"id":1734,"name":"\u0641\u06cc\u0631\u0648\u0632\u0622\u0628\u0627\u062f","name_en":"firuzabad","latitude":28.846992,"longitude":52.573185,"view":1,"parent_id":898},{"id":1735,"name":"\u0628\u0631\u062f\u0633\u06a9\u0646","name_en":"bardaskan","latitude":35.25958,"longitude":57.974037,"view":1,"parent_id":880},{"id":1736,"name":"\u062e\u0648\u0627\u0641","name_en":"khaf","latitude":34.573875,"longitude":60.14224,"view":1,"parent_id":880},{"id":1737,"name":"\u0622\u0631\u0627\u0646 \u0648 \u0628\u06cc\u062f\u06af\u0644","name_en":"aran-va-bidgol","latitude":34.061275,"longitude":51.47581,"view":1,"parent_id":890},{"id":1738,"name":"\u06a9\u0648\u0647\u0633\u0627\u0631","name_en":"koohsar","latitude":35.96017,"longitude":50.792908,"view":1,"parent_id":895},{"id":1739,"name":"\u062a\u0646\u06a9\u0645\u0627\u0646","name_en":"tankaman","latitude":35.891724,"longitude":50.616695,"view":1,"parent_id":895},{"id":1740,"name":"\u0686\u0647\u0627\u0631\u0628\u0627\u063a","name_en":"charbagh-alborz","latitude":35.839554,"longitude":50.850216,"view":1,"parent_id":895},{"id":1741,"name":"\u0634\u0627\u0647\u06cc\u0646 \u0634\u0647\u0631 \u0648 \u0645\u06cc\u0645\u0647","name_en":"Shahin Shahr","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":1742,"name":"\u0634\u0647\u0631 \u0631\u06cc","name_en":"ShahreRey","latitude":null,"longitude":null,"view":0,"parent_id":1},{"id":1743,"name":"\u0627\u0646\u0627\u0628\u062f","name_en":"Anabed","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":1744,"name":"\u0628\u0627\u062e\u0631\u0632","name_en":"Bakharz","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":1745,"name":"\u0628\u062c\u0633\u062a\u0627\u0646","name_en":"Bejestan","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":1746,"name":"\u062a\u0631\u0628\u062a \u062d\u06cc\u062f\u0631\u06cc\u0647","name_en":"Torbate_Heydariyyeh","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":1747,"name":"\u062c\u063a\u062a\u0627\u06cc","name_en":"Joghatay","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":1748,"name":"\u062e\u0631\u0648","name_en":"Khoro","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":1749,"name":"\u062e\u0644\u06cc\u0644\u200c\u0622\u0628\u0627\u062f","name_en":"Khalil_Abad","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":1750,"name":"\u062f\u0631\u06af\u0632","name_en":"Daregaz","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":1751,"name":"\u062f\u0648\u0644\u062a\u200c\u0622\u0628\u0627\u062f","name_en":"Dolat_Abad","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":1752,"name":"\u0633\u0631\u062e\u0633","name_en":"Sarakhs","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":1753,"name":"\u0633\u0646\u06af\u0627\u0646","name_en":"Sangan","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":1754,"name":"\u0634\u0627\u0646\u062f\u06cc\u0632","name_en":"Shandiz","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":1755,"name":"\u0635\u0627\u0644\u062d\u200c\u0622\u0628\u0627\u062f","name_en":"Saleh_Abad","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":1756,"name":"\u0637\u0631\u0642\u0628\u0647","name_en":"Torghabeh","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":1757,"name":"\u0641\u0631\u0647\u0627\u062f\u06af\u0631\u062f","name_en":"FarhadGard","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":1758,"name":"\u0641\u0631\u06cc\u0645\u0627\u0646","name_en":"Fariman","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":1759,"name":"\u0641\u06cc\u0636\u200c\u0622\u0628\u0627\u062f","name_en":"Feyz_Abad","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":1760,"name":"\u0642\u0648\u0686\u0627\u0646","name_en":"Goochan","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":1761,"name":"\u06a9\u0627\u0631\u06cc\u0632","name_en":"Kariz","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":1762,"name":"\u06a9\u0627\u0634\u0645\u0631","name_en":"Kashmar","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":1763,"name":"\u06a9\u0644\u0627\u062a","name_en":"Kalat","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":1764,"name":"\u06af\u0644\u0645\u06a9\u0627\u0646","name_en":"Golmakan","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":1765,"name":"\u0645\u0634\u0647\u062f\u0631\u06cc\u0632\u0647","name_en":"Mashhad_Rizeh","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":1766,"name":"\u0646\u0634\u062a\u06cc\u0641\u0627\u0646","name_en":"Nashtifan","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":1767,"name":"\u0646\u0635\u0631\u0622\u0628\u0627\u062f","name_en":"Nasr_Abad","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":1768,"name":"\u0646\u0642\u0627\u0628","name_en":"Neghab","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":1769,"name":"\u0646\u06cc\u0644\u200c\u0634\u0647\u0631","name_en":"Nil_Shahr","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":1770,"name":"\u0622\u0631\u06cc\u0646\u200c\u0634\u0647\u0631","name_en":"Arian_Shahr","latitude":null,"longitude":null,"view":0,"parent_id":876},{"id":1771,"name":"\u0622\u06cc\u0633\u06a9","name_en":"Aysak","latitude":null,"longitude":null,"view":0,"parent_id":876},{"id":1772,"name":"\u0627\u0631\u0633\u06a9","name_en":"Arask","latitude":null,"longitude":null,"view":0,"parent_id":876},{"id":1773,"name":"\u0627\u0633\u062f\u06cc\u0647","name_en":"Asadiyeh","latitude":null,"longitude":null,"view":0,"parent_id":876},{"id":1774,"name":"\u0627\u0633\u0641\u062f\u0646","name_en":"Esfadan","latitude":null,"longitude":null,"view":0,"parent_id":876},{"id":1775,"name":"\u0627\u0633\u0644\u0627\u0645\u06cc\u0647","name_en":"Eslamiyeh","latitude":null,"longitude":null,"view":0,"parent_id":876},{"id":1776,"name":"\u0628\u0634\u0631\u0648\u06cc\u0647","name_en":"Bashrouyeh","latitude":null,"longitude":null,"view":0,"parent_id":876},{"id":1777,"name":"\u062d\u0627\u062c\u06cc\u200c\u0622\u0628\u0627\u062f","name_en":"Haji_Abad","latitude":null,"longitude":null,"view":0,"parent_id":876},{"id":1778,"name":"\u062e\u0636\u0631\u06cc \u062f\u0634\u062a \u0628\u06cc\u0627\u0636","name_en":"Khezri","latitude":null,"longitude":null,"view":0,"parent_id":876},{"id":1779,"name":"\u062e\u0648\u0633\u0641","name_en":"Khozef","latitude":null,"longitude":null,"view":0,"parent_id":876},{"id":1780,"name":"\u062f\u06cc\u0647\u0648\u06a9","name_en":"Deyhook","latitude":null,"longitude":null,"view":0,"parent_id":876},{"id":1781,"name":"\u0632\u0647\u0627\u0646","name_en":"Zehan","latitude":null,"longitude":null,"view":0,"parent_id":876},{"id":1782,"name":"\u0633\u0631\u0627\u06cc\u0627\u0646","name_en":"Sarayan","latitude":null,"longitude":null,"view":0,"parent_id":876},{"id":1783,"name":"\u0633\u0631\u0628\u06cc\u0634\u0647","name_en":"SarBisheh","latitude":null,"longitude":null,"view":0,"parent_id":876},{"id":1784,"name":"\u0633\u0647\u200c\u0642\u0644\u0639\u0647","name_en":"Se_Ghale","latitude":null,"longitude":null,"view":0,"parent_id":876},{"id":1785,"name":"\u0634\u0648\u0633\u0641","name_en":"Shosef","latitude":null,"longitude":null,"view":0,"parent_id":876},{"id":1786,"name":"\u0637\u0628\u0633 \u0645\u0633\u06cc\u0646\u0627","name_en":"Tabas_Mesina","latitude":null,"longitude":null,"view":0,"parent_id":876},{"id":1787,"name":"\u0639\u0634\u0642\u200c\u0622\u0628\u0627\u062f","name_en":"Eshgh_Abad","latitude":null,"longitude":null,"view":0,"parent_id":876},{"id":1788,"name":"\u0642\u0627\u0626\u0646","name_en":"Ghaen","latitude":null,"longitude":null,"view":0,"parent_id":876},{"id":1789,"name":"\u0642\u0647\u0633\u062a\u0627\u0646","name_en":"Ghahestan","latitude":null,"longitude":null,"view":0,"parent_id":876},{"id":1790,"name":"\u06af\u0632\u06cc\u06a9","name_en":"Gazik","latitude":null,"longitude":null,"view":0,"parent_id":876},{"id":1791,"name":"\u0645\u062d\u0645\u062f\u0634\u0647\u0631","name_en":"Mohammad_shahr","latitude":null,"longitude":null,"view":0,"parent_id":876},{"id":1792,"name":"\u0645\u0648\u062f","name_en":"Mood","latitude":null,"longitude":null,"view":0,"parent_id":876},{"id":1793,"name":"\u0646\u0647\u0628\u0646\u062f\u0627\u0646","name_en":"Nehbandan","latitude":null,"longitude":null,"view":0,"parent_id":876},{"id":1794,"name":"\u0646\u06cc\u0645\u0628\u0644\u0648\u06a9","name_en":"Nimblook","latitude":null,"longitude":null,"view":0,"parent_id":876},{"id":1795,"name":"\u067e\u06cc\u0634\u200c\u0642\u0644\u0639\u0647","name_en":"Pish_Ghale","latitude":null,"longitude":null,"view":0,"parent_id":896},{"id":1796,"name":"\u062d\u0635\u0627\u0631 \u06af\u0631\u0645\u200c\u062e\u0627\u0646","name_en":"Hesar","latitude":null,"longitude":null,"view":0,"parent_id":896},{"id":1797,"name":"\u062f\u0631\u0642","name_en":"Drogh","latitude":null,"longitude":null,"view":0,"parent_id":896},{"id":1798,"name":"\u0631\u0627\u0632","name_en":"Raz","latitude":null,"longitude":null,"view":0,"parent_id":896},{"id":1799,"name":"\u0633\u0646\u062e\u0648\u0627\u0633\u062a","name_en":"SanKhast","latitude":null,"longitude":null,"view":0,"parent_id":896},{"id":1800,"name":"\u0634\u0648\u0642\u0627\u0646","name_en":"Shoghan","latitude":null,"longitude":null,"view":0,"parent_id":896},{"id":1801,"name":"\u0635\u0641\u06cc\u200c\u0622\u0628\u0627\u062f","name_en":"Safi_Abad","latitude":null,"longitude":null,"view":0,"parent_id":896},{"id":1802,"name":"\u0641\u0627\u0631\u0648\u062c","name_en":"Farooj","latitude":null,"longitude":null,"view":0,"parent_id":896},{"id":1803,"name":"\u0642\u0627\u0636\u06cc","name_en":"Ghazi","latitude":null,"longitude":null,"view":0,"parent_id":896},{"id":1804,"name":"\u06af\u0631\u0645\u0647 \u062c\u0627\u062c\u0631\u0645","name_en":"Garmeh_Jajarm","latitude":null,"longitude":null,"view":0,"parent_id":896},{"id":1805,"name":"\u0644\u0648\u062c\u0644\u06cc","name_en":"Lolji","latitude":null,"longitude":null,"view":0,"parent_id":896},{"id":1806,"name":"\u0622\u0628\u0634\u200c\u0627\u062d\u0645\u062f","name_en":"Absh_Ahmad","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1807,"name":"\u0622\u0686\u0627\u0686\u06cc","name_en":"Achachi","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1808,"name":"\u0622\u0642\u06a9\u0646\u062f","name_en":"Aghkand","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1809,"name":"\u0627\u0633\u06a9\u0648","name_en":"Eskoo","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1810,"name":"\u0627\u06cc\u0644\u062e\u0686\u06cc","name_en":"Ilkhchi","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1811,"name":"\u0628\u0627\u0633\u0645\u0646\u062c","name_en":"Basmanch","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1812,"name":"\u0628\u062e\u0634\u0627\u06cc\u0634","name_en":"Bakhshayesh","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1813,"name":"\u0628\u0633\u062a\u0627\u0646\u200c\u0622\u0628\u0627\u062f","name_en":"Bostan_Abad","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1814,"name":"\u0628\u0646\u0627\u0628 \u0645\u0631\u0646\u062f","name_en":"Bonab_Marand","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1815,"name":"\u062a\u0631\u06a9","name_en":"Tork","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1816,"name":"\u062a\u0631\u06a9\u0645\u0627\u0646\u0686\u0627\u06cc","name_en":"TorkamanChay","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1817,"name":"\u062a\u0633\u0648\u062c","name_en":"Tadooj","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1818,"name":"\u062a\u06cc\u06a9\u0645\u0647\u200c\u062f\u0627\u0634","name_en":"Tikmeh_Dash","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1819,"name":"\u062a\u06cc\u0645\u0648\u0631\u0644\u0648","name_en":"TeymoorLoo","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1820,"name":"\u062c\u0644\u0641\u0627","name_en":"Jolfa","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1821,"name":"\u062c\u0648\u0627\u0646\u200c\u0642\u0644\u0639\u0647","name_en":"Javan_Ghale","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1822,"name":"\u062e\u0627\u0631\u0648\u0627\u0646\u0627","name_en":"Kharvana","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1823,"name":"\u062e\u0627\u0645\u0646\u0647","name_en":"Khamene","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1824,"name":"\u062e\u062f\u0627\u062c\u0648","name_en":"KhodaJoo","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1825,"name":"\u062e\u0633\u0631\u0648\u0634\u0627\u0647","name_en":"KhosroShah","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1826,"name":"\u062e\u0645\u0627\u0631\u0644\u0648","name_en":"KhomarLoo","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1827,"name":"\u062e\u0648\u0627\u062c\u0647","name_en":"Khajeh","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1828,"name":"\u062f\u0648\u0632\u062f\u0648\u0632\u0627\u0646","name_en":"DoozDoozan","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1829,"name":"\u0632\u0631\u0646\u0642","name_en":"Zarnagh","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1830,"name":"\u0632\u0646\u0648\u0632","name_en":"Zanvar","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1831,"name":"\u0633\u0631\u062f\u0631\u0648\u062f","name_en":"SarDorood","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1832,"name":"\u0633\u06cc\u0633","name_en":"Siss","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1833,"name":"\u0633\u06cc\u0647\u200c\u0631\u0648\u062f","name_en":"SiyahRood","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1834,"name":"\u0634\u0628\u0633\u062a\u0631","name_en":"Shabestar","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1835,"name":"\u0634\u0631\u0628\u06cc\u0627\u0646","name_en":"SharBiyan","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1836,"name":"\u0634\u0631\u0641\u062e\u0627\u0646\u0647","name_en":"SharafKhaneh","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1837,"name":"\u0634\u0646\u062f\u0622\u0628\u0627\u062f","name_en":"ShandAbad","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1838,"name":"\u0635\u0648\u0641\u06cc\u0627\u0646","name_en":"Soofiyan","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1839,"name":"\u0639\u062c\u0628\u200c\u0634\u06cc\u0631","name_en":"AjabShir","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1840,"name":"\u0642\u0631\u0647\u200c\u0622\u063a\u0627\u062c","name_en":"GharehAghaj","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1841,"name":"\u06a9\u0634\u06a9\u0633\u0631\u0627\u06cc","name_en":"KashkSaray","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1842,"name":"\u06a9\u0644\u0648\u0627\u0646\u0642","name_en":"Kolvangh","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1843,"name":"\u06a9\u0644\u06cc\u0628\u0631","name_en":"Kelibr","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1844,"name":"\u06a9\u0648\u0632\u0647\u200c\u06a9\u0646\u0627\u0646","name_en":"KoozehKanan","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1845,"name":"\u06af\u0648\u06af\u0627\u0646","name_en":"Googan","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1846,"name":"\u0644\u06cc\u0644\u0627\u0646","name_en":"Lilan","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1847,"name":"\u0645\u0628\u0627\u0631\u06a9\u200c\u0634\u0647\u0631","name_en":"Mobarak_Shahr","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1848,"name":"\u0645\u0644\u06a9\u0627\u0646","name_en":"Molkan","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1849,"name":"\u0645\u0645\u0642\u0627\u0646","name_en":"Mamaghan","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1850,"name":"\u0645\u0647\u0631\u0628\u0627\u0646","name_en":"Mehraban","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1851,"name":"\u0646\u0638\u0631\u06a9\u0647\u0631\u06cc\u0632\u06cc","name_en":"NazarKahrizi","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1852,"name":"\u0647\u0627\u062f\u06cc\u0634\u0647\u0631","name_en":"HadiShahr","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1853,"name":"\u0647\u0631\u06cc\u0633","name_en":"Haris","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1854,"name":"\u0647\u0634\u062a\u0631\u0648\u062f","name_en":"HashtRood","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1855,"name":"\u0647\u0648\u0631\u0627\u0646\u062f","name_en":"Horand","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1856,"name":"\u0648\u0627\u06cc\u0642\u0627\u0646","name_en":"Vayghan","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1857,"name":"\u0648\u0631\u0632\u0642\u0627\u0646","name_en":"Varzaghan","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1858,"name":"\u06cc\u0627\u0645\u0686\u06cc","name_en":"Pamchi","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":1859,"name":"\u0622\u0648\u0627\u062c\u06cc\u0642","name_en":"Avajigh","latitude":null,"longitude":null,"view":0,"parent_id":881},{"id":1860,"name":"\u0627\u06cc\u0648\u0627\u0648\u063a\u0644\u06cc","name_en":"Ivavoghli","latitude":null,"longitude":null,"view":0,"parent_id":881},{"id":1861,"name":"\u0628\u0627\u0631\u0648\u0642","name_en":"Baroogh","latitude":null,"longitude":null,"view":0,"parent_id":881},{"id":1862,"name":"\u0628\u0627\u0632\u0631\u06af\u0627\u0646","name_en":"Bazargan","latitude":null,"longitude":null,"view":0,"parent_id":881},{"id":1863,"name":"\u067e\u0644\u062f\u0634\u062a","name_en":"PolDasht","latitude":null,"longitude":null,"view":0,"parent_id":881},{"id":1864,"name":"\u062a\u0627\u0632\u0647\u200c\u0634\u0647\u0631","name_en":"TazehShahr","latitude":null,"longitude":null,"view":0,"parent_id":881},{"id":1865,"name":"\u062a\u06a9\u0627\u0628","name_en":"Tokab","latitude":null,"longitude":null,"view":0,"parent_id":881},{"id":1866,"name":"\u0686\u0647\u0627\u0631\u0628\u0631\u062c","name_en":"ChaharBoorj","latitude":null,"longitude":null,"view":0,"parent_id":881},{"id":1867,"name":"\u062e\u0644\u06cc\u0641\u0627\u0646","name_en":"Khalifan","latitude":null,"longitude":null,"view":0,"parent_id":881},{"id":1868,"name":"\u062f\u06cc\u0632\u062c \u062f\u06cc\u0632","name_en":"DizejDiz","latitude":null,"longitude":null,"view":0,"parent_id":881},{"id":1869,"name":"\u0631\u0628\u0637","name_en":"Rabt","latitude":null,"longitude":null,"view":0,"parent_id":881},{"id":1870,"name":"\u0632\u0631\u0622\u0628\u0627\u062f","name_en":"ZarAbad","latitude":null,"longitude":null,"view":0,"parent_id":881},{"id":1871,"name":"\u0633\u0631\u0648","name_en":"Sarv","latitude":null,"longitude":null,"view":0,"parent_id":881},{"id":1872,"name":"\u0633\u06cc\u0644\u0648\u0627\u0646\u0647","name_en":"Silvaneh","latitude":null,"longitude":null,"view":0,"parent_id":881},{"id":1873,"name":"\u0633\u06cc\u0645\u06cc\u0646\u0647","name_en":"Simineh","latitude":null,"longitude":null,"view":0,"parent_id":881},{"id":1874,"name":"\u0633\u06cc\u0647\u200c\u0686\u0634\u0645\u0647","name_en":"SiyahCheshm","latitude":null,"longitude":null,"view":0,"parent_id":881},{"id":1875,"name":"\u0634\u0627\u0647\u06cc\u0646\u200c\u062f\u0698","name_en":"ShahinDezh","latitude":null,"longitude":null,"view":0,"parent_id":881},{"id":1876,"name":"\u0634\u0648\u0637","name_en":"Shoot","latitude":null,"longitude":null,"view":0,"parent_id":881},{"id":1877,"name":"\u0641\u06cc\u0631\u0648\u0631\u0642","name_en":"Firoragh","latitude":null,"longitude":null,"view":0,"parent_id":881},{"id":1878,"name":"\u0642\u0631\u0647\u200c \u0636\u06cc\u0627\u0621\u0627\u0644\u062f\u06cc\u0646","name_en":"Ghareh","latitude":null,"longitude":null,"view":0,"parent_id":881},{"id":1879,"name":"\u0642\u0637\u0648\u0631","name_en":"Ghotoor","latitude":null,"longitude":null,"view":0,"parent_id":881},{"id":1880,"name":"\u0642\u0648\u0634\u0686\u06cc","name_en":"Ghoshchi","latitude":null,"longitude":null,"view":0,"parent_id":881},{"id":1881,"name":"\u06a9\u0634\u0627\u0648\u0631\u0632","name_en":"Keshavarz","latitude":null,"longitude":null,"view":0,"parent_id":881},{"id":1882,"name":"\u06af\u0631\u062f\u06a9\u0634\u0627\u0646\u0647","name_en":"GerdKeshaneh","latitude":null,"longitude":null,"view":0,"parent_id":881},{"id":1883,"name":"\u0645\u062d\u0645\u062f\u06cc\u0627\u0631","name_en":"MohammadYar","latitude":null,"longitude":null,"view":0,"parent_id":881},{"id":1884,"name":"\u0645\u0631\u06af\u0646\u0644\u0631","name_en":"Mergenler","latitude":null,"longitude":null,"view":0,"parent_id":881},{"id":1885,"name":"\u0645\u06cc\u0631\u0622\u0628\u0627\u062f","name_en":"MirAbad","latitude":null,"longitude":null,"view":0,"parent_id":881},{"id":1886,"name":"\u0646\u0627\u0632\u06a9 \u0639\u0644\u06cc\u0627","name_en":"NazokOlya","latitude":null,"longitude":null,"view":0,"parent_id":881},{"id":1887,"name":"\u0646\u0627\u0644\u0648\u0633","name_en":"Naloos","latitude":null,"longitude":null,"view":0,"parent_id":881},{"id":1888,"name":"\u0646\u0648\u0634\u06cc\u0646\u200c\u0634\u0647\u0631","name_en":"NooshinShahr","latitude":null,"longitude":null,"view":0,"parent_id":881},{"id":1889,"name":"\u0622\u0628\u06cc\u200c\u0628\u06cc\u06af\u0644\u0648","name_en":"AbiBigloo","latitude":null,"longitude":null,"view":0,"parent_id":17},{"id":1890,"name":"\u0627\u0635\u0644\u0627\u0646\u062f\u0648\u0632","name_en":"AslanNadouz","latitude":null,"longitude":null,"view":0,"parent_id":17},{"id":1891,"name":"\u0628\u06cc\u0644\u0647\u200c\u0633\u0648\u0627\u0631","name_en":"BilehSavar","latitude":null,"longitude":null,"view":0,"parent_id":17},{"id":1892,"name":"\u062a\u0627\u0632\u0647\u200c\u06a9\u0646\u062f","name_en":"TazehKand","latitude":null,"longitude":null,"view":0,"parent_id":17},{"id":1893,"name":"\u062a\u0627\u0632\u0647\u200c\u06a9\u0646\u062f \u0627\u0646\u06af\u0648\u062a","name_en":"Angoot","latitude":null,"longitude":null,"view":0,"parent_id":17},{"id":1894,"name":"\u062c\u0639\u0641\u0631\u0622\u0628\u0627\u062f","name_en":"JafarAbad","latitude":null,"longitude":null,"view":0,"parent_id":17},{"id":1895,"name":"\u0631\u0636\u06cc","name_en":"Razi","latitude":null,"longitude":null,"view":0,"parent_id":17},{"id":1896,"name":"\u0633\u0631\u0639\u06cc\u0646","name_en":"Sarein","latitude":null,"longitude":null,"view":0,"parent_id":17},{"id":1897,"name":"\u0639\u0646\u0628\u0631\u0627\u0646","name_en":"Anbaran","latitude":null,"longitude":null,"view":0,"parent_id":17},{"id":1898,"name":"\u0641\u062e\u0631\u0622\u0628\u0627\u062f","name_en":"FakhrAbad","latitude":null,"longitude":null,"view":0,"parent_id":17},{"id":1899,"name":"\u06a9\u0644\u0648\u0631","name_en":"Kolvar","latitude":null,"longitude":null,"view":0,"parent_id":17},{"id":1900,"name":"\u06a9\u0648\u0631\u0627\u06cc\u06cc\u0645","name_en":"Koorayim","latitude":null,"longitude":null,"view":0,"parent_id":17},{"id":1901,"name":"\u06af\u0631\u0645\u06cc","name_en":"Garmi","latitude":null,"longitude":null,"view":0,"parent_id":17},{"id":1902,"name":"\u06af\u06cc\u0648\u06cc","name_en":"Givi","latitude":null,"longitude":null,"view":0,"parent_id":17},{"id":1903,"name":"\u0644\u0627\u0647\u0631\u0648\u062f","name_en":"Lahrood","latitude":null,"longitude":null,"view":0,"parent_id":17},{"id":1904,"name":"\u0645\u0631\u0627\u062f\u0644\u0648","name_en":"MoradLoo","latitude":null,"longitude":null,"view":0,"parent_id":17},{"id":1905,"name":"\u0645\u0634\u06af\u06cc\u0646\u200c\u0634\u0647\u0631","name_en":"MeshginShahr","latitude":null,"longitude":null,"view":0,"parent_id":17},{"id":1906,"name":"\u0646\u0645\u06cc\u0646","name_en":"Namin","latitude":null,"longitude":null,"view":0,"parent_id":17},{"id":1907,"name":"\u0646\u06cc\u0631","name_en":"Nir","latitude":null,"longitude":null,"view":0,"parent_id":17},{"id":1908,"name":"\u0647\u0634\u062c\u06cc\u0646","name_en":"Hashjin","latitude":null,"longitude":null,"view":0,"parent_id":17},{"id":1909,"name":"\u0647\u06cc\u0631","name_en":"Heer","latitude":null,"longitude":null,"view":0,"parent_id":17},{"id":1910,"name":"\u0628\u0647\u0627\u0631\u0633\u062a\u0627\u0646","name_en":"Baharestan","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":1911,"name":"\u062e\u0645\u06cc\u0646\u06cc \u0634\u0647\u0631","name_en":"KhomeiniShahr","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":1912,"name":"\u062e\u0648\u0631\u0627\u0633\u06af\u0627\u0646","name_en":"Khoorasgan","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":1913,"name":"\u062e\u0648\u0631\u0632\u0648\u0642","name_en":"Khorzoogh","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":1914,"name":"\u062f\u0631\u0686\u0647 \u067e\u06cc\u0627\u0632","name_en":"DorchehPiyaz","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":1915,"name":"\u062f\u0648\u0644\u062a \u0622\u0628\u0627\u062f","name_en":"DolatAbad","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":1916,"name":"\u0632\u0631\u06cc\u0646 \u0634\u0647\u0631","name_en":"ZarrinShshr","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":1917,"name":"\u0634\u0647\u0631\u0636\u0627","name_en":"ShahrReza","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":1918,"name":"\u0641\u0648\u0644\u0627\u062f\u0634\u0647\u0631","name_en":"FooladShahr","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":1919,"name":"\u0642\u0647\u062f\u0631\u06cc\u062c\u0627\u0646","name_en":"GhahrariJan","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":1920,"name":"\u06a9\u0644\u06cc\u0634\u0627\u062f \u0648 \u0633\u0648\u062f\u0631\u062c\u0627\u0646","name_en":"Kelishad","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":1921,"name":"\u06af\u0632","name_en":"Gaz","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":1922,"name":"\u06af\u0644\u200c\u062f\u0634\u062a","name_en":"GolDasht","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":1923,"name":"\u0645\u0628\u0627\u0631\u06a9\u0647","name_en":"Mobarakeh","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":1924,"name":"\u0646\u0627\u06cc\u06cc\u0646","name_en":"Naeein","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":1925,"name":"\u0646\u062c\u0641 \u0622\u0628\u0627\u062f","name_en":"NajafAbad","latitude":32.632423,"longitude":51.367991,"view":0,"parent_id":4},{"id":1926,"name":"\u0634\u0647\u0631 \u062c\u062f\u06cc\u062f \u0647\u0634\u062a\u06af\u0631\u062f","name_en":"HashtGerd","latitude":null,"longitude":null,"view":0,"parent_id":895},{"id":1927,"name":"\u06a9\u0645\u0627\u0644\u200c\u0634\u0647\u0631","name_en":"KamalShahr","latitude":null,"longitude":null,"view":0,"parent_id":895},{"id":1928,"name":"\u0645\u0627\u0647\u062f\u0634\u062a","name_en":"MahDasht","latitude":null,"longitude":null,"view":0,"parent_id":895},{"id":1929,"name":"\u0645\u062d\u0645\u062f\u0634\u0647\u0631","name_en":"MohammadShahr","latitude":null,"longitude":null,"view":0,"parent_id":895},{"id":1930,"name":"\u0645\u0634\u06a9\u06cc\u0646\u200c\u062f\u0634\u062a","name_en":"MeshkinDasht","latitude":null,"longitude":null,"view":0,"parent_id":895},{"id":1931,"name":"\u0647\u0634\u062a\u06af\u0631\u062f","name_en":"HashtGerd","latitude":null,"longitude":null,"view":0,"parent_id":895},{"id":1932,"name":"\u0622\u0633\u0645\u0627\u0646\u200c\u0622\u0628\u0627\u062f","name_en":"AsmanAbad","latitude":null,"longitude":null,"view":0,"parent_id":32},{"id":1933,"name":"\u0627\u0631\u06a9\u0648\u0627\u0632","name_en":"Arkvaz","latitude":null,"longitude":null,"view":0,"parent_id":32},{"id":1934,"name":"\u0628\u062f\u0631\u0647","name_en":"Badreh","latitude":null,"longitude":null,"view":0,"parent_id":32},{"id":1935,"name":"\u067e\u0647\u0644\u0647","name_en":"Pahleh","latitude":null,"longitude":null,"view":0,"parent_id":32},{"id":1936,"name":"\u062a\u0648\u062d\u06cc\u062f","name_en":"Tohid","latitude":null,"longitude":null,"view":0,"parent_id":32},{"id":1937,"name":"\u0686\u0648\u0627\u0631","name_en":"Chovar","latitude":null,"longitude":null,"view":0,"parent_id":32},{"id":1938,"name":"\u062f\u0631\u0647\u200c\u0634\u0647\u0631","name_en":"DarrehShahr","latitude":null,"longitude":null,"view":0,"parent_id":32},{"id":1939,"name":"\u0622\u0628\u0627\u062f","name_en":"Abad","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":1940,"name":"\u0622\u0628\u200c\u067e\u062e\u0634","name_en":"AbPakhsh","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":1941,"name":"\u0622\u0628\u062f\u0627\u0646","name_en":"Abdan","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":1942,"name":"\u0627\u0645\u0627\u0645 \u062d\u0633\u0646","name_en":"Emam_Hasan","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":1943,"name":"\u0627\u0646\u0627\u0631\u0633\u062a\u0627\u0646","name_en":"Anarestan","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":1944,"name":"\u0627\u0647\u0631\u0645","name_en":"Ahroum","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":1945,"name":"\u0628\u0627\u062f\u0648\u0644\u0647","name_en":"Badouleh","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":1946,"name":"\u0628\u0631\u062f\u062e\u0648\u0646","name_en":"BordKhoon","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":1947,"name":"\u0628\u0631\u062f\u0633\u062a\u0627\u0646","name_en":"Bardestan","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":1948,"name":"\u0628\u0631\u062f\u0633\u062a\u0627\u0646","name_en":"Bardestan","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":1949,"name":"\u0628\u0646\u062f\u0631 \u0628\u0648\u0634\u0647\u0631","name_en":"Bandare_Booshehr","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":1950,"name":"\u0628\u0646\u062f\u0631 \u062f\u06cc\u0631","name_en":"Bandare_Deir","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":1951,"name":"\u0628\u0646\u062f\u0631 \u062f\u06cc\u0644\u0645","name_en":"Bandar_Deylam","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":1952,"name":"\u0628\u0646\u062f\u0631 \u0631\u06cc\u06af","name_en":"Bandar_Rig","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":1953,"name":"\u0628\u0646\u062f\u0631 \u0633\u06cc\u0631\u0627\u0641","name_en":"Bandar_Siraf","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":1954,"name":"\u0628\u0646\u06a9","name_en":"Bonak","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":1955,"name":"\u0628\u0648\u0634\u06a9\u0627\u0646","name_en":"Booshkan","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":1956,"name":"\u062a\u0646\u06af \u0627\u0631\u0645","name_en":"Tonge_Eram","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":1957,"name":"\u062c\u0645","name_en":"Jam","latitude":27.812208,"longitude":52.350694,"view":0,"parent_id":25},{"id":1958,"name":"\u0686\u063a\u0627\u062f\u06a9","name_en":"Choghadak","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":1959,"name":"\u062e\u0627\u0631\u06a9","name_en":"Khark","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":1960,"name":"\u062e\u0648\u0631\u0645\u0648\u062c","name_en":"Khormooj","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":1961,"name":"\u062f\u0627\u0644\u06a9\u06cc","name_en":"Dalki","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":1962,"name":"\u062f\u0644\u0648\u0627\u0631","name_en":"Delvar","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":1963,"name":"\u062f\u0648\u0631\u0627\u0647\u06a9","name_en":"Dorahak","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":1964,"name":"\u0631\u06cc\u0632","name_en":"Riiz","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":1965,"name":"\u0633\u0639\u062f\u0622\u0628\u0627\u062f","name_en":"SadAbad","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":1966,"name":"\u0634\u0628\u0627\u0646\u06a9\u0627\u0631\u0647","name_en":"ShabanKareh","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":1967,"name":"\u0634\u064f\u0646\u0628\u0647","name_en":"Shonbeh","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":1968,"name":"\u0639\u0627\u0644\u06cc\u200c\u0634\u0647\u0631","name_en":"AaliShahr","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":1969,"name":"\u0639\u0633\u0644\u0648\u06cc\u0647","name_en":"Asalouyeh","latitude":27.4747749,"longitude":52.6122035,"view":0,"parent_id":25},{"id":1970,"name":"\u06a9\u0627\u06a9\u06cc","name_en":"Kakki","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":1971,"name":"\u06a9\u0644\u0645\u0647","name_en":"Kalameh","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":1972,"name":"\u0646\u062e\u0644 \u062a\u0642\u06cc","name_en":"Nakhle_Naghi","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":1973,"name":"\u0648\u062d\u062f\u062a\u06cc\u0647","name_en":"Vahdatiyeh","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":1974,"name":"\u0627\u0646\u062f\u06cc\u0634\u0647","name_en":"Andisheh","latitude":null,"longitude":null,"view":0,"parent_id":1},{"id":1975,"name":"\u0628\u0648\u0645\u0647\u0646","name_en":"Boomehen","latitude":null,"longitude":null,"view":0,"parent_id":1},{"id":1976,"name":"\u067e\u0627\u06a9\u062f\u0634\u062a","name_en":"Pakdasht","latitude":null,"longitude":null,"view":0,"parent_id":1},{"id":1977,"name":"\u067e\u0631\u062f\u06cc\u0633","name_en":"Pardis","latitude":null,"longitude":null,"view":0,"parent_id":1},{"id":1978,"name":"\u062d\u0633\u0646\u200c\u0622\u0628\u0627\u062f","name_en":"HasanAbad","latitude":null,"longitude":null,"view":0,"parent_id":1},{"id":1979,"name":"\u0631\u0628\u0627\u0637\u200c\u06a9\u0631\u06cc\u0645","name_en":"RobatKarim","latitude":null,"longitude":null,"view":0,"parent_id":1},{"id":1980,"name":"\u0631\u0648\u062f\u0647\u0646","name_en":"Roodehen","latitude":null,"longitude":null,"view":0,"parent_id":1},{"id":1981,"name":"\u0634\u0631\u06cc\u0641\u200c\u0622\u0628\u0627\u062f","name_en":"SharifAbad","latitude":null,"longitude":null,"view":0,"parent_id":1},{"id":1982,"name":"\u0634\u0647\u0631\u06cc\u0627\u0631","name_en":"Shahriyar","latitude":null,"longitude":null,"view":0,"parent_id":1},{"id":1983,"name":"\u0635\u0627\u0644\u062d\u200c\u0622\u0628\u0627\u062f","name_en":"SalehAbad","latitude":null,"longitude":null,"view":0,"parent_id":1},{"id":1984,"name":"\u0641\u0634\u0645","name_en":"Fasham","latitude":null,"longitude":null,"view":0,"parent_id":1},{"id":1985,"name":"\u0641\u06cc\u0631\u0648\u0632\u06a9\u0648\u0647","name_en":"FiroozKooh","latitude":null,"longitude":null,"view":0,"parent_id":1},{"id":1986,"name":"\u0642\u062f\u0633","name_en":"Ghods","latitude":null,"longitude":null,"view":0,"parent_id":1},{"id":1987,"name":"\u0642\u0631\u0686\u06a9","name_en":"Gharchak","latitude":null,"longitude":null,"view":0,"parent_id":1},{"id":1988,"name":"\u0644\u0648\u0627\u0633\u0627\u0646","name_en":"Lavasan","latitude":null,"longitude":null,"view":0,"parent_id":1},{"id":1989,"name":"\u0645\u0644\u0627\u0631\u062f","name_en":"Malard","latitude":null,"longitude":null,"view":0,"parent_id":1},{"id":1990,"name":"\u0646\u0635\u06cc\u0631\u0622\u0628\u0627\u062f","name_en":"NasirShahr","latitude":null,"longitude":null,"view":0,"parent_id":1},{"id":1991,"name":"\u0648\u0631\u0627\u0645\u06cc\u0646","name_en":"Varamin","latitude":null,"longitude":null,"view":0,"parent_id":1},{"id":1992,"name":"\u0622\u0644\u0648\u0646\u06cc","name_en":"Alooni","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":1993,"name":"\u0627\u0631\u062f\u0644","name_en":"Ardal","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":1994,"name":"\u0628\u0627\u0628\u0627\u062d\u06cc\u062f\u0631","name_en":"BabaHeydar","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":1995,"name":"\u0628\u0644\u062f\u0627\u062c\u06cc","name_en":"Baldachi","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":1996,"name":"\u0628\u0646","name_en":"Ban","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":1997,"name":"\u062c\u0648\u0646\u0642\u0627\u0646","name_en":"Joonaghan","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":1998,"name":"\u0686\u0644\u06af\u0631\u062f","name_en":"Chelgerd","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":1999,"name":"\u0633\u0627\u0645\u0627\u0646","name_en":"Saman","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":2000,"name":"\u0633\u0641\u06cc\u062f \u062f\u0634\u062a","name_en":"SefidDasht","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":2001,"name":"\u0633\u0648\u062f\u062c\u0627\u0646","name_en":"SoodJan","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":2002,"name":"\u0633\u0648\u0631\u0634\u062c\u0627\u0646","name_en":"SoorShajan","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":2003,"name":"\u0634\u0644\u0645\u0632\u0627\u0631","name_en":"ShalmZar","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":2004,"name":"\u0637\u0627\u0642\u0627\u0646\u06a9","name_en":"Taleghanak","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":2005,"name":"\u0641\u0627\u0631\u0633\u0627\u0646","name_en":"Farsan","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":2006,"name":"\u0641\u0631\u0627\u062f\u0646\u0628\u0647","name_en":"Faradonbeh","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":2007,"name":"\u06a9\u06cc\u0627\u0646","name_en":"Kiyan","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":2008,"name":"\u06af\u0646\u062f\u0645\u0627\u0646","name_en":"Gandoman","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":2009,"name":"\u06af\u0647\u0631\u0648","name_en":"Gahroo","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":2010,"name":"\u0645\u0627\u0644\u200c\u062e\u0644\u06cc\u0641\u0647","name_en":"MaleKhalifeh","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":2011,"name":"\u0646\u0627\u063a\u0627\u0646","name_en":"Naghan","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":2012,"name":"\u0646\u0627\u0641\u0686","name_en":"Nafech","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":2013,"name":"\u0646\u0642\u0646\u0647","name_en":"Naghneh","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":2014,"name":"\u0647\u0641\u0634\u062c\u0627\u0646","name_en":"Hafshjan","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":2015,"name":"\u0628\u0627\u063a \u0645\u0644\u06a9","name_en":"BaghMalek","latitude":null,"longitude":null,"view":0,"parent_id":902},{"id":2016,"name":"\u0634\u0627\u062f\u06af\u0627\u0646","name_en":"Shadgan","latitude":null,"longitude":null,"view":0,"parent_id":902},{"id":2017,"name":"\u0622\u0628 \u0628\u0631","name_en":"AbBar","latitude":null,"longitude":null,"view":0,"parent_id":20},{"id":2018,"name":"\u0627\u0631\u0645\u063a\u0627\u0646 \u062e\u0627\u0646\u0647","name_en":"Armaghan_Khaneh","latitude":null,"longitude":null,"view":0,"parent_id":20},{"id":2019,"name":"\u0686\u0648\u0631\u0632\u0642","name_en":"Chourzagh","latitude":null,"longitude":null,"view":0,"parent_id":20},{"id":2020,"name":"\u062d\u0644\u0628","name_en":"Halab","latitude":null,"longitude":null,"view":0,"parent_id":20},{"id":2021,"name":"\u062f\u0646\u062f\u06cc","name_en":"Dandi","latitude":null,"longitude":null,"view":0,"parent_id":20},{"id":2022,"name":"\u0632\u0631\u06cc\u0646 \u0631\u0648\u062f","name_en":"Zarrin_Roud","latitude":null,"longitude":null,"view":0,"parent_id":20},{"id":2023,"name":"\u0632\u0631\u06cc\u0646\u200c\u0622\u0628\u0627\u062f","name_en":"Zarrin_Abad","latitude":null,"longitude":null,"view":0,"parent_id":20},{"id":2024,"name":"\u0633\u062c\u0627\u0633","name_en":"Sejas","latitude":null,"longitude":null,"view":0,"parent_id":20},{"id":2025,"name":"\u0633\u0644\u0637\u0627\u0646\u06cc\u0647","name_en":"Soltaniyeh","latitude":null,"longitude":null,"view":0,"parent_id":20},{"id":2026,"name":"\u0633\u0647\u0631\u0648\u0631\u062f","name_en":"SahrRoud","latitude":null,"longitude":null,"view":0,"parent_id":20},{"id":2027,"name":"\u0635\u0627\u0626\u06cc\u0646\u200c \u0642\u0644\u0639\u0647","name_en":"Saein_Ghalee","latitude":null,"longitude":null,"view":0,"parent_id":20},{"id":2028,"name":"\u06a9\u0631\u0633\u0641","name_en":"Korsof","latitude":null,"longitude":null,"view":0,"parent_id":20},{"id":2029,"name":"\u06af\u0631\u0645\u0627\u0628","name_en":"Garmab","latitude":null,"longitude":null,"view":0,"parent_id":20},{"id":2030,"name":"\u0645\u0627\u0647\u200c\u0646\u0634\u0627\u0646","name_en":"Mah_Neshan","latitude":null,"longitude":null,"view":0,"parent_id":20},{"id":2031,"name":"\u0646\u0648\u0631\u0628\u0647\u0627\u0631","name_en":"NourBahar","latitude":null,"longitude":null,"view":0,"parent_id":20},{"id":2032,"name":"\u0646\u06cc\u06a9 \u067e\u06cc","name_en":"Nik_Pey","latitude":null,"longitude":null,"view":0,"parent_id":20},{"id":2033,"name":"\u0647\u06cc\u062f\u062c","name_en":"Hidaj","latitude":null,"longitude":null,"view":0,"parent_id":20},{"id":2034,"name":"\u0622\u0631\u0627\u062f\u0627\u0646","name_en":"Ardan","latitude":null,"longitude":null,"view":0,"parent_id":35},{"id":2035,"name":"\u0627\u0645\u06cc\u0631\u06cc\u0647","name_en":"Amiriyyeh","latitude":null,"longitude":null,"view":0,"parent_id":35},{"id":2036,"name":"\u0627\u06cc\u0648\u0627\u0646\u06a9\u06cc","name_en":"Eivanaki","latitude":null,"longitude":null,"view":0,"parent_id":35},{"id":2037,"name":"\u0628\u0633\u0637\u0627\u0645","name_en":"Bastam","latitude":null,"longitude":null,"view":0,"parent_id":35},{"id":2038,"name":"\u0628\u06cc\u0627\u0631\u062c\u0645\u0646\u062f","name_en":"Biyarjmand","latitude":null,"longitude":null,"view":0,"parent_id":35},{"id":2039,"name":"\u062f\u0631\u062c\u0632\u06cc\u0646","name_en":"Darjzein","latitude":null,"longitude":null,"view":0,"parent_id":35},{"id":2040,"name":"\u062f\u06cc\u0628\u0627\u062c","name_en":"Dibaj","latitude":null,"longitude":null,"view":0,"parent_id":35},{"id":2041,"name":"\u0633\u0631\u062e\u0647","name_en":"Sorkheh","latitude":null,"longitude":null,"view":0,"parent_id":35},{"id":2042,"name":"\u0634\u0647\u0645\u06cc\u0631\u0632\u0627\u062f","name_en":"ShahmirZad","latitude":null,"longitude":null,"view":0,"parent_id":35},{"id":2043,"name":"\u06a9\u0644\u0627\u062a\u0647 \u062e\u06cc\u062c","name_en":"Kalateh_Khij","latitude":null,"longitude":null,"view":0,"parent_id":35},{"id":2044,"name":"\u0645\u062c\u0646","name_en":"Mojn","latitude":null,"longitude":null,"view":0,"parent_id":35},{"id":2045,"name":"\u0645\u0647\u062f\u06cc\u200c \u0634\u0647\u0631","name_en":"Mahdi_Shahr","latitude":null,"longitude":null,"view":0,"parent_id":35},{"id":2046,"name":"\u0645\u06cc\u0627\u0645\u06cc","name_en":"Mayamey","latitude":null,"longitude":null,"view":0,"parent_id":35},{"id":2047,"name":"\u0622\u0633\u067e\u06cc\u0686 \u0645\u062d\u0645\u062f\u06cc","name_en":"Aspich_Mohammadi","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2048,"name":"\u0622\u0634\u0627\u0631 \u0632\u0627\u0647\u062f\u0627\u0646","name_en":"Ashar_Zahedan","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2049,"name":"\u0627\u0628\u062a\u0631 \u0627\u06cc\u0631\u0627\u0646\u0634\u0647\u0631","name_en":"Abtar_Iranshahr","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2050,"name":"\u0627\u062f\u06cc\u0645\u06cc \u0632\u0627\u0628\u0644","name_en":"Edimi_Zaboul","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2051,"name":"\u0627\u0633\u067e\u06a9\u0647","name_en":"Espekeh","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2052,"name":"\u0627\u0633\u0641\u0646\u062f","name_en":"Esfand","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2053,"name":"\u0627\u0633\u0641\u0646\u062f\u06a9","name_en":"Esfandak","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2054,"name":"\u0627\u0633\u06a9\u0644 \u0622\u0628\u0627\u062f","name_en":"Oskoul_Abad","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2055,"name":"\u0627\u0633\u0645\u0627\u0639\u06cc\u0644 \u0642\u0646\u0628\u0631\u062a\u06cc","name_en":"Esmaeil_Ghanbarti","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2056,"name":"\u0627\u0633\u0645\u0627\u0639\u06cc\u0644\u200c \u0622\u0628\u0627\u062f","name_en":"Esmaeil_Abad","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2057,"name":"\u0628\u0627\u062a\u06a9","name_en":"Batak","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2058,"name":"\u0628\u0631\u06cc\u0633 \u0686\u0627\u0628\u0647\u0627\u0631","name_en":"Baris_Chabahar","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2059,"name":"\u0628\u0632\u0645\u0627\u0646 \u06af\u06cc\u0645\u0627\u0646","name_en":"Bazman_Giman","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2060,"name":"\u0628\u0645\u067e\u0648\u0631 \u0627\u06cc\u0631\u0627\u0646\u0634\u0647\u0631","name_en":"Bampour_Eiranshahr","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2061,"name":"\u0628\u0646\u062a","name_en":"Bont","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2062,"name":"\u0628\u0646\u062c\u0627\u0631 \u0632\u0627\u0628\u0644","name_en":"Benjar_Zaboul","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2063,"name":"\u067e\u0627\u0631\u0648\u062f \u0686\u0627\u0628\u0647\u0627\u0631","name_en":"Paroud_Chabahar","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2064,"name":"\u067e\u0627\u06cc\u06af\u0627\u0647 \u0647\u0648\u0627\u0626\u06cc (\u06a9\u0646\u0627\u0631\u06a9)","name_en":"Kenarak","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2065,"name":"\u067e\u0632\u0645 \u0686\u0627\u0628\u0647\u0627\u0631","name_en":"Pazm_Chabahar","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2066,"name":"\u067e\u0633\u0627\u0628\u0646\u062f\u0631","name_en":"Pasa_Bandar","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2067,"name":"\u067e\u0633\u06a9\u0648\u0647 \u0633\u06cc\u0628 \u0648 \u0633\u0648\u0631\u0627\u0646","name_en":"Paskouh","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2068,"name":"\u067e\u0644\u0627\u0646 \u0686\u0627\u0628\u0647\u0627\u0631","name_en":"Pelan_Chabahar","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2069,"name":"\u067e\u06cc\u067e \u0627\u06cc\u0631\u0627\u0646\u0634\u0647\u0631","name_en":"Pip_Eiranshahr","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2070,"name":"\u067e\u06cc\u0634\u06cc\u0646 \u0686\u0627\u0628\u0647\u0627\u0631","name_en":"Pishin_Chabahar","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2071,"name":"\u062a\u0645\u0646\u062f\u0627\u0646","name_en":"Tamandan","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2072,"name":"\u062c\u0627\u0644\u0642 \u0627\u06cc\u0631\u0627\u0646\u0634\u0647\u0631","name_en":"Jalegh_Eiranshahr","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2073,"name":"\u062c\u0632\u06cc\u0646\u06a9 \u0632\u0627\u0628\u0644","name_en":"Jezink_Zaboul","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2074,"name":"\u062c\u06a9\u06cc\u06af\u0648\u0631 \u0686\u0627\u0628\u0647\u0627\u0631","name_en":"Jakigour_Chabahar","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2075,"name":"\u062c\u0644\u06af\u0647 \u0686\u0627\u0647 \u0647\u0627\u0634\u0645","name_en":"Jolge_Chah_Hashem","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2076,"name":"\u062c\u0647\u0627\u0646\u200c \u062a\u06cc\u063a \u0632\u0627\u0628\u0644","name_en":"Jahan_Tigh_Zaboul","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2077,"name":"\u0686\u0627\u0628\u0647\u0627\u0631 \/ \u0645\u0646\u0637\u0642\u0647 \u0622\u0632\u0627\u062f","name_en":"Chabahar","latitude":25.296878,"longitude":60.645928,"view":0,"parent_id":883},{"id":2078,"name":"\u0686\u0627\u0647 \u0634\u0648\u0631","name_en":"Chah_Shour","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2079,"name":"\u0686\u0627\u0647 \u06af\u06cc\u062c\u06cc","name_en":"Chah_Giji","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2080,"name":"\u062d\u0633\u0646 \u062e\u0648\u0646","name_en":"Hasan_Khoun","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2081,"name":"\u062d\u0645\u06cc\u0631\u06cc","name_en":"Homeyra","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2082,"name":"\u062d\u06cc\u0637","name_en":"Heyt","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2083,"name":"\u062e\u0627\u0634 \u0632\u0627\u0647\u062f\u0627\u0646","name_en":"Khash_Zahedan","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2084,"name":"\u062e\u0645\u0631","name_en":"Khomr","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2085,"name":"\u062e\u0645\u06a9 \u0632\u0627\u0628\u0644","name_en":"Khomak_Zaboul","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2086,"name":"\u062e\u0648\u0634\u06cc\u0646","name_en":"Khoshin","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2087,"name":"\u062f\u0627\u0645\u0646 \u0632\u0627\u0647\u062f\u0627\u0646","name_en":"Daman_Zahedan","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2088,"name":"\u062f\u0644\u06af\u0627\u0646 \u0627\u06cc\u0631\u0627\u0646\u0634\u0647\u0631","name_en":"Delgan_Eiranshahr","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2089,"name":"\u062f\u0647 \u067e\u06cc\u0631\u0627\u0646","name_en":"Deh_Piran","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2090,"name":"\u062f\u0647 \u06cc\u0627\u062f\u06af\u0627\u0631","name_en":"Deh_Yadegar","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2091,"name":"\u062f\u0647\u067e\u0627\u0628\u06cc\u062f \u0632\u0627\u0647\u062f\u0627\u0646","name_en":"Dehpabid_Zahedan","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2092,"name":"\u062f\u0647\u06a9 \u0627\u06cc\u0631\u0627\u0646\u0634\u0647\u0631","name_en":"Dahak_Eiranshahr","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2093,"name":"\u062f\u0648\u0633\u062a \u0645\u062d\u0645\u062f\u062e\u0627\u0646","name_en":"Doust_MohammadKhan","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2094,"name":"\u0631\u0627\u0633\u06a9 \u0686\u0627\u0628\u0647\u0627\u0631","name_en":"Rasak_Chabahar","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2095,"name":"\u0631\u0645\u06cc\u0646 \u0686\u0627\u0628\u0647\u0627\u0631","name_en":"Ramin_Chabahar","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2096,"name":"\u0631\u06cc\u06af \u0645\u0644\u06a9 \u0632\u0627\u0647\u062f\u0627\u0646","name_en":"Rig_Malek_Zahedan","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2097,"name":"\u0632\u0647\u06a9 \u0632\u0627\u0628\u0644","name_en":"Zahaj_Zaboul","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2098,"name":"\u0698\u0627\u0644\u0647\u200c\u0627\u06cc \u0632\u0627\u0628\u0644","name_en":"Zhaleei_Zaboul","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2099,"name":"\u0633\u0627\u0631\u0628\u0648\u06a9 \u0686\u0627\u0628\u0647\u0627\u0631","name_en":"Sarbouk_Chabahar","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2100,"name":"\u0633\u0628\u0632\u06af\u0632 \u067e\u0634\u062a\u06a9\u0648\u0647","name_en":"Sabzgaz_Poshtkouh","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2101,"name":"\u0633\u0631\u0627\u0648\u0627\u0646","name_en":"Saravan","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2102,"name":"\u0633\u0631\u0628\u0627\u0632 \u0627\u06cc\u0631\u0627\u0646\u0634\u0647\u0631","name_en":"Sarbaz_Eiranshahr","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2103,"name":"\u0633\u0631\u06af\u0647","name_en":"Sargeh","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2104,"name":"\u0633\u06a9\u0648\u0647\u0647 \u0632\u0627\u0628\u0644","name_en":"Sokouheh_Zaboul","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2105,"name":"\u0633\u0646\u06af\u0627\u0646","name_en":"Sangan","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2106,"name":"\u0633\u0648\u0631\u0627\u0646 \u0627\u06cc\u0631\u0627\u0646\u0634\u0647\u0631","name_en":"Souran_Eiranshahr","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2107,"name":"\u0633\u06cc\u0628 \u0633\u0648\u0644\u0627\u0646","name_en":"Seeb_Soulan","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2108,"name":"\u0633\u06cc\u0631\u06a9\u0627\u0646 \u0628\u0645 \u067e\u0634\u062a","name_en":"Seirkan_Bam_Pasht","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2109,"name":"\u0633\u06cc\u0641\u200c \u0622\u0628\u0627\u062f","name_en":"Seif_Abad","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2110,"name":"\u0634\u0627\u0631\u062f\u0631","name_en":"Shader","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2111,"name":"\u0634\u0647\u0631\u062f\u0631\u0627\u0632","name_en":"Shahr_Deraz","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2112,"name":"\u0634\u0647\u0631\u06a9 \/ \u0642\u0631\u0642\u0631\u06cc","name_en":"Shahrak_Ghergheri","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2113,"name":"\u0635\u062f\u06cc\u0642\u200c \u0632\u0647\u06cc \u0686\u0627\u0628\u0647\u0627\u0631","name_en":"Seddigh_Zehi_Chabahar","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2114,"name":"\u0639\u0644\u06cc\u200c \u0622\u0628\u0627\u062f \u0633\u0631\u0628\u0627\u0632","name_en":"Ali_Abad_Sarbaz","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2115,"name":"\u0639\u0648\u0631\u06a9\u06cc \u0686\u0627\u0628\u0647\u0627\u0631","name_en":"Ouraki_Chabahar","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2116,"name":"\u0641\u0646\u0648\u062c \u0627\u06cc\u0631\u0627\u0646\u0634\u0647\u0631","name_en":"Fanouj_Eiranshahr","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2117,"name":"\u0642\u0635\u0631\u0642\u0646\u062f \u0686\u0627\u0628\u0647\u0627\u0631","name_en":"Ghasre_Ghande_Chabahar","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2118,"name":"\u0642\u0644\u0639\u0647 \u0646\u0648 \u0632\u0627\u0628\u0644","name_en":"Ghale_Nou_Zaboul","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2119,"name":"\u06a9\u0646\u0627\u0631\u06a9 \u0686\u0627\u0628\u0647\u0627\u0631","name_en":"Kenarake_Chabahar","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2120,"name":"\u06a9\u0646\u062a \u0627\u06cc\u0631\u0627\u0646\u0634\u0647\u0631","name_en":"Kont_Eiranshahr","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2121,"name":"\u06a9\u0647\u06a9 \u0632\u0627\u0628\u0644","name_en":"Kahak_Zaboul","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2122,"name":"\u06a9\u0647\u06cc\u0631 \u0686\u0627\u0628\u0647\u0627\u0631","name_en":"Kahir_Chabahar","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2123,"name":"\u06a9\u0648\u067e\u0686 \u0627\u06cc\u0631\u0627\u0646\u0634\u0647\u0631","name_en":"Kavich_Chabahar","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2124,"name":"\u06a9\u0648\u067e\u0686 \u0646\u06cc\u06a9\u0634\u0647\u0631","name_en":"Kavixh_Nikshahr","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2125,"name":"\u06a9\u0648\u0647 \u0645\u06cc\u062a\u06a9","name_en":"Kouh_Mitek","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2126,"name":"\u06af\u0634\u062a \u0627\u06cc\u0631\u0627\u0646\u0634\u0647\u0631","name_en":"Gashte_Eiranshahr","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2127,"name":"\u06af\u0644\u062e\u0627\u0646\u06cc","name_en":"Golkhani","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2128,"name":"\u06af\u0648\u0631\u06cc \u0632\u0627\u0628\u0644","name_en":"Gouri_Zaboul","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2129,"name":"\u06af\u0648\u0647\u0631\u06a9\u0648\u0647 \/ \u062a\u0645\u0646\u062f\u0627\u0646","name_en":"GoharehKouh","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2130,"name":"\u0644\u0647\u0627\u0628\u0627\u062f","name_en":"Lahabad","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2131,"name":"\u0644\u0648\u062a\u06a9","name_en":"Loutak","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2132,"name":"\u0645\u062c\u062a\u0645\u0639 \/ \u0639\u0644\u06cc \u0627\u06a9\u0628\u0631","name_en":"Mojtama_AliAkbar","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2133,"name":"\u0645\u062c\u062a\u0645\u0639 \u0645\u062d\u0645\u062f \u0634\u0627\u0647 \u06a9\u0631\u0645","name_en":"Mojtama_MohammadShahKaram","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2134,"name":"\u0645\u062d\u0645\u062f \u0622\u0628\u0627\u062f","name_en":"Mohammad_Abad","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2135,"name":"\u0645\u062d\u0645\u062f \u0622\u0628\u0627\u062f \u0632\u0627\u0628\u0644","name_en":"MohammadAbad_Zaboul","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2136,"name":"\u0645\u0633\u06a9\u0648\u062a\u0627\u0646","name_en":"Meskootan","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2137,"name":"\u0645\u0644\u06a9 \u062d\u06cc\u062f\u0631\u06cc","name_en":"Malek_Heydari","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2138,"name":"\u0645\u0647\u0631\u0633\u062a\u0627\u0646","name_en":"Mehrestan","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2139,"name":"\u0645\u06cc\u0627\u0646\u200c \u06a9\u0646\u06af\u06cc","name_en":"Miyan_Kangi","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2140,"name":"\u0645\u06cc\u0631\u0622\u0628\u0627\u062f","name_en":"MirAbad","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2141,"name":"\u0645\u06cc\u0631\u062c\u0627\u0648\u0647 \u0632\u0627\u0647\u062f\u0627\u0646","name_en":"MirJaveh_Zahedan","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2142,"name":"\u0645\u06cc\u0644\u06a9","name_en":"Milak","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2143,"name":"\u0646\u0627\u0635\u0631\u06cc \u0632\u0627\u0647\u062f\u0627\u0646","name_en":"Naseri_Zahedan","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2144,"name":"\u0646\u0627\u0647\u0648\u06a9 \u06a9\u0648\u067e\u06a9","name_en":"Nahook_Koopak","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2145,"name":"\u0646\u062c\u0641\u200c\u0622\u0628\u0627\u062f \u0632\u0627\u0647\u062f\u0627\u0646","name_en":"NajafAbad_Zahedan","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2146,"name":"\u0646\u0635\u0631\u062a\u200c\u0622\u0628\u0627\u062f","name_en":"NosratAbad","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2147,"name":"\u0646\u0635\u06cc\u0631\u0622\u0628\u0627\u062f","name_en":"NasirAbad","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2148,"name":"\u0646\u06af\u0648\u0631 \u0686\u0627\u0628\u0647\u0627\u0631","name_en":"Engoor_Chabahar","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2149,"name":"\u0646\u0648\u0628\u0646\u062f\u06cc\u0627\u0646","name_en":"Noubandiyan","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2150,"name":"\u0646\u0648\u06a9 \u062c\u0648\u0628 \u0627\u06cc\u0631\u0627\u0646\u0634\u0647\u0631","name_en":"NoukJoob_Eiranshahr","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2151,"name":"\u0646\u0648\u06a9\u200c\u0622\u0628\u0627\u062f \u0632\u0627\u0647\u062f\u0627\u0646","name_en":"NoukAbad_Zahedan","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2152,"name":"\u0646\u06cc\u06a9\u0634\u0647\u0631 \u0686\u0627\u0628\u0647\u0627\u0631","name_en":"Nikshahr_Chabahar","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2153,"name":"\u0647\u062f\u0627\u0631 \u0628\u0627\u0641\u062a\u0627\u0646","name_en":"Hedar_Baftan","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2154,"name":"\u0647\u06cc\u062a \u0686\u0627\u0628\u0647\u0627\u0631","name_en":"Heyt_Chabahar","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2155,"name":"\u0647\u06cc\u062f\u0648\u062c \u0627\u06cc\u0631\u0627\u0646\u0634\u0647\u0631","name_en":"Hedooj_Eiranshahr","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2156,"name":"\u0627\u0631\u0633\u0646\u062c\u0627\u0646","name_en":"ArsanJan","latitude":null,"longitude":null,"view":0,"parent_id":898},{"id":2157,"name":"\u0627\u0633\u062a\u0647\u0628\u0627\u0646","name_en":"Estahban","latitude":null,"longitude":null,"view":0,"parent_id":898},{"id":2158,"name":"\u0628\u0648\u0627\u0646\u0627\u062a","name_en":"Bovanat","latitude":null,"longitude":null,"view":0,"parent_id":898},{"id":2159,"name":"\u062d\u0627\u062c\u06cc \u0622\u0628\u0627\u062f","name_en":"HajiAbad","latitude":null,"longitude":null,"view":0,"parent_id":898},{"id":2160,"name":"\u062e\u0631\u0627\u0645\u0647","name_en":"Kharameh","latitude":null,"longitude":null,"view":0,"parent_id":898},{"id":2161,"name":"\u062e\u0646\u062c","name_en":"Khanj","latitude":null,"longitude":null,"view":0,"parent_id":898},{"id":2162,"name":"\u0633\u0631\u0648\u0633\u062a\u0627\u0646","name_en":"Sarvestan","latitude":null,"longitude":null,"view":0,"parent_id":898},{"id":2163,"name":"\u0633\u0639\u0627\u062f\u062a\u0634\u0647\u0631","name_en":"SaadatShahr","latitude":null,"longitude":null,"view":0,"parent_id":898},{"id":2164,"name":"\u0635\u0641\u0627\u0634\u0647\u0631","name_en":"SafaShahr","latitude":null,"longitude":null,"view":0,"parent_id":898},{"id":2165,"name":"\u0641\u0631\u0627\u0634\u0628\u0646\u062f","name_en":"Farashband","latitude":null,"longitude":null,"view":0,"parent_id":898},{"id":2166,"name":"\u0641\u0633\u0627","name_en":"Fasa","latitude":null,"longitude":null,"view":0,"parent_id":898},{"id":2167,"name":"\u0642\u06cc\u0631","name_en":"Gheer","latitude":null,"longitude":null,"view":0,"parent_id":898},{"id":2168,"name":"\u06a9\u0627\u0632\u0631\u0648\u0646","name_en":"Kazeroon","latitude":29.6191466,"longitude":51.6543827,"view":0,"parent_id":898},{"id":2169,"name":"\u06a9\u0648\u0627\u0631","name_en":"Kovar","latitude":null,"longitude":null,"view":0,"parent_id":898},{"id":2170,"name":"\u06af\u0631\u0627\u0634","name_en":"Gerash","latitude":null,"longitude":null,"view":0,"parent_id":898},{"id":2171,"name":"\u0645\u0631\u0648\u062f\u0634\u062a","name_en":"MarvDasht","latitude":null,"longitude":null,"view":0,"parent_id":898},{"id":2172,"name":"\u0645\u0635\u06cc\u0631\u06cc","name_en":"Masiri","latitude":null,"longitude":null,"view":0,"parent_id":898},{"id":2173,"name":"\u0645\u064f\u0647\u0631","name_en":"Mohr","latitude":null,"longitude":null,"view":0,"parent_id":898},{"id":2174,"name":"\u0622\u0628\u06af\u0631\u0645","name_en":"Abgarm","latitude":null,"longitude":null,"view":0,"parent_id":19},{"id":2175,"name":"\u0622\u0648\u062c","name_en":"Avouj","latitude":null,"longitude":null,"view":0,"parent_id":19},{"id":2176,"name":"\u0627\u0631\u062f\u0627\u0642","name_en":"Ardagh","latitude":null,"longitude":null,"view":0,"parent_id":19},{"id":2177,"name":"\u0627\u0633\u0641\u0631\u0648\u0631\u06cc\u0646","name_en":"Esfarorin","latitude":null,"longitude":null,"view":0,"parent_id":19},{"id":2178,"name":"\u0627\u0642\u0628\u0627\u0644\u06cc\u0647","name_en":"Eghbaliyyeh","latitude":null,"longitude":null,"view":0,"parent_id":19},{"id":2179,"name":"\u0628\u0648\u06cc\u06cc\u0646\u200c \u0632\u0647\u0631\u0627","name_en":"Booyin_Zahra","latitude":null,"longitude":null,"view":0,"parent_id":19},{"id":2180,"name":"\u0628\u06cc\u062f\u0633\u062a\u0627\u0646","name_en":"Bidestan","latitude":null,"longitude":null,"view":0,"parent_id":19},{"id":2181,"name":"\u062e\u0627\u06a9\u0639\u0644\u06cc","name_en":"KhakAli","latitude":null,"longitude":null,"view":0,"parent_id":19},{"id":2182,"name":"\u062e\u0631\u0645\u062f\u0634\u062a","name_en":"KhorramDasht","latitude":null,"longitude":null,"view":0,"parent_id":19},{"id":2183,"name":"\u062f\u0627\u0646\u0633\u0641\u0647\u0627\u0646","name_en":"Danesfahan","latitude":null,"longitude":null,"view":0,"parent_id":19},{"id":2184,"name":"\u0631\u0627\u0632\u0645\u06cc\u0627\u0646","name_en":"Razmiyan","latitude":null,"longitude":null,"view":0,"parent_id":19},{"id":2185,"name":"\u0633\u06af\u0632\u0622\u0628\u0627\u062f","name_en":"SagzAbad","latitude":null,"longitude":null,"view":0,"parent_id":19},{"id":2186,"name":"\u0633\u06cc\u0631\u062f\u0627\u0646","name_en":"SirDan","latitude":null,"longitude":null,"view":0,"parent_id":19},{"id":2187,"name":"\u0634\u0627\u0644","name_en":"Shall","latitude":null,"longitude":null,"view":0,"parent_id":19},{"id":2188,"name":"\u0636\u06cc\u0627\u0621 \u0622\u0628\u0627\u062f","name_en":"ZiyaAbad","latitude":null,"longitude":null,"view":0,"parent_id":19},{"id":2189,"name":"\u06a9\u0648\u0647\u06cc\u0646","name_en":"Koohin","latitude":null,"longitude":null,"view":0,"parent_id":19},{"id":2190,"name":"\u0645\u062d\u0645\u062f\u06cc\u0647","name_en":"Mohammadiyyeh","latitude":null,"longitude":null,"view":0,"parent_id":19},{"id":2191,"name":"\u0645\u062d\u0645\u0648\u062f \u0622\u0628\u0627\u062f \u0646\u0645\u0648\u0646\u0647","name_en":"MahmoudAbad_Nemooneh","latitude":null,"longitude":null,"view":0,"parent_id":19},{"id":2192,"name":"\u0645\u0639\u0644\u0645\u200c \u06a9\u0644\u0627\u06cc\u0647","name_en":"Moallem_Kelayeh","latitude":null,"longitude":null,"view":0,"parent_id":19},{"id":2193,"name":"\u0646\u0631\u062c\u0647","name_en":"Narjeh","latitude":null,"longitude":null,"view":0,"parent_id":19},{"id":2194,"name":"\u062c\u0639\u0641\u0631\u06cc\u0647","name_en":"Jafariyyeh","latitude":null,"longitude":null,"view":0,"parent_id":8},{"id":2195,"name":"\u062f\u0633\u062a\u062c\u0631\u062f","name_en":"Dastjerd","latitude":null,"longitude":null,"view":0,"parent_id":8},{"id":2196,"name":"\u0633\u0644\u0641\u0686\u06af\u0627\u0646","name_en":"Salafchegan","latitude":null,"longitude":null,"view":0,"parent_id":8},{"id":2197,"name":"\u0642\u0646\u0648\u0627\u062a","name_en":"Ghanavat","latitude":null,"longitude":null,"view":0,"parent_id":8},{"id":2198,"name":"\u06a9\u0647\u06a9","name_en":"Kahak","latitude":null,"longitude":null,"view":0,"parent_id":8},{"id":2199,"name":"\u0622\u0631\u0645\u0631\u062f\u0647","name_en":"Amordeh","latitude":null,"longitude":null,"view":0,"parent_id":885},{"id":2200,"name":"\u0628\u0627\u0628\u0627 \u0631\u0634\u0627\u0646\u06cc","name_en":"BabaReshani","latitude":null,"longitude":null,"view":0,"parent_id":885},{"id":2201,"name":"\u0628\u0644\u0628\u0627\u0646\u200c\u0622\u0628\u0627\u062f","name_en":"BolbolanAbad","latitude":null,"longitude":null,"view":0,"parent_id":885},{"id":2202,"name":"\u0628\u0648\u06cc\u06cc\u0646 \u0633\u0641\u0644\u06cc","name_en":"Booeen_Sofla","latitude":null,"longitude":null,"view":0,"parent_id":885},{"id":2203,"name":"\u062f\u0632\u062c","name_en":"Dozj","latitude":null,"longitude":null,"view":0,"parent_id":885},{"id":2204,"name":"\u062f\u0644\u0628\u0631\u0627\u0646","name_en":"Delbaran","latitude":null,"longitude":null,"view":0,"parent_id":885},{"id":2205,"name":"\u062f\u0647\u06af\u0644\u0627\u0646","name_en":"Dehgolan","latitude":null,"longitude":null,"view":0,"parent_id":885},{"id":2206,"name":"\u062f\u06cc\u0648\u0627\u0646\u062f\u0631\u0647","name_en":"DivanDarreh","latitude":null,"longitude":null,"view":0,"parent_id":885},{"id":2207,"name":"\u0632\u0631\u06cc\u0646\u0647","name_en":"Zarrineh","latitude":null,"longitude":null,"view":0,"parent_id":885},{"id":2208,"name":"\u0633\u0631\u0648\u0622\u0628\u0627\u062f","name_en":"SarvAbad","latitude":null,"longitude":null,"view":0,"parent_id":885},{"id":2209,"name":"\u0633\u0631\u06cc\u0634\u200c \u0622\u0628\u0627\u062f","name_en":"SerishAbad","latitude":null,"longitude":null,"view":0,"parent_id":885},{"id":2210,"name":"\u0634\u0648\u06cc\u0634\u0647","name_en":"Shoysheh","latitude":null,"longitude":null,"view":0,"parent_id":885},{"id":2211,"name":"\u0635\u0627\u062d\u0628","name_en":"Saheb","latitude":null,"longitude":null,"view":0,"parent_id":885},{"id":2212,"name":"\u06a9\u0627\u0645\u06cc\u0627\u0631\u0627\u0646","name_en":"Kamyaran","latitude":null,"longitude":null,"view":0,"parent_id":885},{"id":2213,"name":"\u06a9\u0627\u0646\u06cc\u200c \u062f\u06cc\u0646\u0627\u0631","name_en":"KaniDinar","latitude":null,"longitude":null,"view":0,"parent_id":885},{"id":2214,"name":"\u06a9\u0627\u0646\u06cc\u200c \u0633\u0648\u0631","name_en":"KaniSoor","latitude":null,"longitude":null,"view":0,"parent_id":885},{"id":2215,"name":"\u0645\u0648\u0686\u0634","name_en":"Mouchesh","latitude":null,"longitude":null,"view":0,"parent_id":885},{"id":2216,"name":"\u06cc\u0627\u0633\u0648\u06a9\u0646\u062f","name_en":"Yasookand","latitude":null,"longitude":null,"view":0,"parent_id":885},{"id":2217,"name":"\u0627\u0646\u0627\u0631","name_en":"Anar","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":2218,"name":"\u0628\u0627\u0641\u062a","name_en":"Baft","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":2219,"name":"\u0628\u0631\u062f\u0633\u06cc\u0631","name_en":"Bardsir","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":2220,"name":"\u0628\u0631\u0648\u0627\u062a","name_en":"Barvat","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":2221,"name":"\u0631\u0627\u0628\u0631","name_en":"Rabar","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":2222,"name":"\u0631\u0627\u0648\u0631","name_en":"Ravar","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":2223,"name":"\u0631\u0627\u06cc\u0646","name_en":"Rayn","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":2224,"name":"\u0631\u0648\u062f\u0628\u0627\u0631","name_en":"Roodbar","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":2225,"name":"\u0634\u0647\u0631 \u0628\u0627\u0628\u06a9","name_en":"ShahreBabak","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":2226,"name":"\u0639\u0646\u0628\u0631\u0622\u0628\u0627\u062f","name_en":"AnbarAbad","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":2227,"name":"\u0641\u0647\u0631\u062c","name_en":"Fahraj","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":2228,"name":"\u0642\u0644\u0639\u0647 \u06af\u0646\u062c","name_en":"GhaleGanj","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":2229,"name":"\u06a9\u0647\u0646\u0648\u062c","name_en":"Kahnooj","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":2230,"name":"\u06a9\u0648\u0647\u0628\u0646\u0627\u0646","name_en":"Koohbanan","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":2231,"name":"\u06af\u0644\u0628\u0627\u0641","name_en":"Golbaf","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":2232,"name":"\u0645\u0627\u0647\u0627\u0646","name_en":"Mahan","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":2233,"name":"\u0645\u062d\u0645\u062f \u0622\u0628\u0627\u062f","name_en":"MohammadAbad","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":2234,"name":"\u0645\u0646\u0648\u062c\u0627\u0646","name_en":"Manoojan","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":2235,"name":"\u0646\u062c\u0641 \u0634\u0647\u0631","name_en":"NajafShahr","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":2236,"name":"\u0622\u0631\u0627\u0646 \u06a9\u0646\u06af\u0627\u0648\u0631","name_en":"Aran_Kangavar","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2237,"name":"\u0627\u0631\u0645\u0646\u06cc \u062c\u0627\u0646","name_en":"Armani_Jan","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2238,"name":"\u0627\u0633\u0644\u0627\u0645 \u0622\u0628\u0627\u062f \u063a\u0631\u0628","name_en":"EslamAbad_Gharb","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2239,"name":"\u0628\u0627\u0646\u0645\u0632\u0627\u0631\u0627\u0646","name_en":"Banmazaran","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2240,"name":"\u0628\u0627\u0646\u0647 \u0648\u0631\u0647","name_en":"BanehVareh","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2241,"name":"\u0628\u0627\u0648\u0644\u0647","name_en":"Bavleh","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2242,"name":"\u0628\u0627\u06cc\u0646\u06af\u0627\u0646","name_en":"Bayangan","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2243,"name":"\u0628\u0644\u0648\u0631\u062f\u06cc","name_en":"Beloordi","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2244,"name":"\u0628\u06cc\u062f\u0633\u0631\u062e","name_en":"BidSourkh","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2245,"name":"\u0628\u06cc\u0633\u062a\u0648\u0646","name_en":"Bistoon","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2246,"name":"\u067e\u0627\u0648\u0647","name_en":"Paveh","latitude":35.04301,"longitude":46.355271,"view":0,"parent_id":9},{"id":2247,"name":"\u067e\u0631\u06cc\u0648\u0647","name_en":"Periveh","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2248,"name":"\u062a\u0627\u0632\u0647 \u0622\u0628\u0627\u062f","name_en":"TazehAbad","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2249,"name":"\u062c\u06cc\u062d\u0648\u0646 \u0622\u0628\u0627\u062f","name_en":"JeyhoonAbad","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2250,"name":"\u0686\u0647\u0631","name_en":"Chahar","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2251,"name":"\u0686\u0648\u0631\u0632\u06cc","name_en":"Choorzi","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2252,"name":"\u062d\u0631\u06cc\u0631","name_en":"Harir","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2253,"name":"\u062d\u0633\u0646 \u0622\u0628\u0627\u062f \u0627\u0633\u0644\u0627\u0645 \u0622\u0628\u0627\u062f","name_en":"HasanAbad_EslamAbad","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2254,"name":"\u062d\u0633\u0646 \u0622\u0628\u0627\u062f \u0631\u0648\u0627\u0646\u0633\u0631","name_en":"HasanAbad_Ravansar","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2255,"name":"\u062d\u0645\u06cc\u0644","name_en":"Hamil","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2256,"name":"\u062e\u0633\u0631\u0648\u06cc","name_en":"Khosravi","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2257,"name":"\u062f\u0631\u06a9\u0647 \u0648 \u0639\u06cc\u0646 \u0627\u0644\u0642\u0627\u0633","name_en":"Darakeh","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2258,"name":"\u062f\u0634\u0647","name_en":"Desheh","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2259,"name":"\u062f\u0647\u0631","name_en":"Dahar","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2260,"name":"\u0631\u062d\u0645\u062a \u0622\u0628\u0627\u062f","name_en":"RahmatAbad","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2261,"name":"\u0631\u0648\u0627\u0646\u0633\u0631","name_en":"Ravansar","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2262,"name":"\u0633\u0627\u062a\u06cc\u0627\u0631\u06cc","name_en":"Satiyari","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2263,"name":"\u0633\u0631\u0645\u0627\u0646 \u062d\u0633\u06cc\u0646 \u062e\u0627\u0646\u06cc","name_en":"Sarman","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2264,"name":"\u0633\u0631\u06cc\u0644 \u0630\u0647\u0627\u0628","name_en":"Sar_Pole_Zahab","latitude":34.451394,"longitude":45.861207,"view":0,"parent_id":9},{"id":2265,"name":"\u0633\u0637\u0631","name_en":"Satr","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2266,"name":"\u0633\u0647\u0646\u0644\u0647","name_en":"Salnaleh","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2267,"name":"\u0633\u0648\u0645\u0627\u0631","name_en":"Soomar","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2268,"name":"\u0634\u0645\u0634\u06cc\u0631","name_en":"Shamshir","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2269,"name":"\u0634\u0647\u0631 \u0635\u0646\u0639\u062a\u06cc \u0628\u0627\u062e\u062a\u0631\u0627\u0646","name_en":"Shahre_Sanati_Bakhtaran","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2270,"name":"\u0634\u0647\u0631\u06a9 \u0634\u0647\u06cc\u062f \u0639\u0633\u06af\u0631\u06cc \u06af\u0627\u0648\u0628\u0646\u062f\u0647","name_en":"S_S_Asgari_Ghavbandeh","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2271,"name":"\u0634\u0647\u0631\u06a9 \u0635\u0646\u0639\u062a\u06cc \u0641\u0631\u0627\u0645\u0627\u0646","name_en":"S_S_Faraman","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2272,"name":"\u0635\u062d\u0646\u0647","name_en":"Sahneh","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2273,"name":"\u0639\u0644\u06cc \u0622\u0628\u0627\u062f","name_en":"AliAbad","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2274,"name":"\u0641\u0627\u0631\u0633\u06cc\u0646\u062c","name_en":"Farsinj","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2275,"name":"\u0641\u0634","name_en":"Fash","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2276,"name":"\u0642\u0627\u0631\u0644\u0642","name_en":"Gharlegh","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2277,"name":"\u0642\u0632\u0627\u0646\u0686\u06cc","name_en":"Ghazanchi","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2278,"name":"\u0642\u0634\u0644\u0627\u0642 \u0645\u0646\u0635\u0648\u0631\u0622\u0642\u0627\u06cc\u06cc","name_en":"Geshlagh_Mansoor_Aghaye","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2279,"name":"\u0642\u0635\u0631 \u0634\u06cc\u0631\u06cc\u0646","name_en":"Ghasre_Shirin","latitude":34.515903,"longitude":45.577686,"view":0,"parent_id":9},{"id":2280,"name":"\u0642\u0644\u0639\u0647 \u0634\u06cc\u0627\u0646","name_en":"Ghale_Shiyan","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2281,"name":"\u06a9\u0627\u0631\u062e\u0627\u0646\u0647","name_en":"Karkhaneh","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2282,"name":"\u06a9\u0631\u0646\u062f \u063a\u0631\u0628","name_en":"Karand_Gharb","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2283,"name":"\u06a9\u0644 \u06a9\u0634","name_en":"KolKash","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2284,"name":"\u06a9\u0646\u062f\u0648\u0644\u0647","name_en":"Kandooleh","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2285,"name":"\u06a9\u0648\u0632\u0631\u0627\u0646","name_en":"Koozaran","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2286,"name":"\u06af\u0647\u0648\u0627\u0631\u0647","name_en":"Gahvareh","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2287,"name":"\u06af\u0648\u0633\u0641\u06cc\u062f","name_en":"Goosfeed","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2288,"name":"\u06af\u06cc\u0644\u0627\u0646\u063a\u0631\u0628","name_en":"GilaneGharb","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2289,"name":"\u0645\u0627\u0647\u06cc\u062f\u0634\u062a","name_en":"MahiDasht","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2290,"name":"\u0645\u06cc\u0627\u0646 \u0631\u0627\u0647\u0627\u0646","name_en":"Miyan_Rahan","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2291,"name":"\u0645\u06cc\u0631\u0622\u0628\u0627\u062f","name_en":"MirAbad","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2292,"name":"\u0646\u0648\u062f\u0634\u0647","name_en":"Noodsheh","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2293,"name":"\u0646\u0648\u0633\u0648\u062f","name_en":"Noosoud","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2294,"name":"\u0647\u0631\u0633\u06cc\u0646","name_en":"Hersin","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2295,"name":"\u0628\u0627\u0634\u062a","name_en":"Basht","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":2296,"name":"\u067e\u0627\u062a\u0627\u0648\u0647","name_en":"Pataveh","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":2297,"name":"\u0686\u0631\u0627\u0645","name_en":"Choram","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":2298,"name":"\u0686\u06cc\u062a\u0627\u0628","name_en":"Chitab","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":2299,"name":"\u062f\u06cc\u0634\u0645\u0648\u06a9","name_en":"Dishmook","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":2300,"name":"\u0633\u0631\u0641\u0627\u0631\u06cc\u0627\u0628","name_en":"SarFaryab","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":2301,"name":"\u0633\u0648\u0642","name_en":"Sough","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":2302,"name":"\u0633\u06cc\u200c \u0633\u062e\u062a","name_en":"Si_Sakht","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":2303,"name":"\u0642\u0644\u0639\u0647 \u0631\u06cc\u0633\u06cc","name_en":"GhaleRaeisi","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":2304,"name":"\u06af\u0631\u0627\u0628 \u0633\u0641\u0644\u06cc","name_en":"Gerab_Sofla","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":2305,"name":"\u0644\u0646\u062f\u0647","name_en":"Landeh","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":2306,"name":"\u0644\u06cc\u06a9\u06a9","name_en":"Likak","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":2307,"name":"\u0645\u0627\u0631\u06af\u0648\u0646","name_en":"Margoon","latitude":null,"longitude":null,"view":0,"parent_id":null},{"id":2308,"name":"\u0622\u0642 \u0622\u0628\u0627\u062f","name_en":"AghAbad","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2309,"name":"\u0627\u0631\u0627\u0632\u06af\u0644 \u0648 \u0644\u0627\u0644\u0647 \u0628\u0627\u063a","name_en":"Arazgho_O_LalehBagh","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2310,"name":"\u0627\u0644\u0642\u062c\u0631","name_en":"Alghajar","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2311,"name":"\u0627\u0645\u06cc\u0631 \u0622\u0628\u0627\u062f","name_en":"AmirAbad","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2312,"name":"\u0627\u0646\u0628\u0627\u0631 \u0622\u0644\u0648\u0645","name_en":"AnbarAloom","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2313,"name":"\u0627\u06cc\u0646\u0686\u0647 \u0628\u0631\u0648\u0646","name_en":"EincheBroon","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2314,"name":"\u0628\u0627\u0644\u0627\u062c\u0627\u062f\u0647","name_en":"Balajaddeh","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2315,"name":"\u0628\u0646\u062f\u0631\u06af\u0632","name_en":"BandarGaz","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2316,"name":"\u0628\u06cc \u0628\u06cc \u0634\u06cc\u0631\u0648\u0627\u0646","name_en":"BiBi_Shiravan","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2317,"name":"\u067e\u06cc\u0631\u0627\u0648\u0634 \u0633\u0641\u0644\u06cc","name_en":"Piravosh_Sofla","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2318,"name":"\u062a\u0627\u062a\u0627\u0631 \u0639\u0644\u06cc\u0627","name_en":"Tatar_Olya","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2319,"name":"\u062a\u0642\u06cc \u0622\u0628\u0627\u062f","name_en":"TaghiAbad","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2320,"name":"\u062a\u0645\u0631 \u0642\u0631\u0647 \u0642\u0648\u0632\u06cc","name_en":"Tamr_Ghare_Ghoozi","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2321,"name":"\u062a\u0646\u06af\u0631\u0627\u0647 \u0648 \u062a\u0631\u062c\u0646\u0644\u06cc","name_en":"Tangarah_O_Tarjanli","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2322,"name":"\u062c\u0644\u06cc\u0646 \u0639\u0644\u06cc\u0627","name_en":"Jalin_Olya","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2323,"name":"\u0686\u06cc\u0646 \u0633\u0648\u0628\u0644\u06cc","name_en":"Chin_Sobla","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2324,"name":"\u062d\u0627\u062c\u06cc \u0642\u0648\u0634\u0627\u0646","name_en":"Haji_Ghoshan","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2325,"name":"\u062d\u0627\u062c\u06cc \u06a9\u0644\u0627\u062a\u0647","name_en":"Haji_Kalateh","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2326,"name":"\u062e\u0627\u0646 \u0628\u0628\u06cc\u0646","name_en":"Khan_Been","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2327,"name":"\u062e\u0648\u0627\u062c\u0647 \u0646\u0641\u0633","name_en":"Khajeh_Nafas","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2328,"name":"\u062f\u0627\u0631\u06a9\u0644\u0627\u062a\u0647","name_en":"DarKalateh","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2329,"name":"\u062f\u0644\u0646\u062f","name_en":"Daland","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2330,"name":"\u062f\u0646\u06af\u0644\u0627\u0646","name_en":"Dangalan","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2331,"name":"\u062f\u0648\u0632\u0627\u0644\u0648\u0645","name_en":"\u062f\u0648\u0632\u0627\u0644\u0648\u0645","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2332,"name":"\u062f\u0648\u0632\u06cc\u0646","name_en":"\u062f\u0648\u0632\u06cc\u0646","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2333,"name":"\u0631\u0627\u0645\u06cc\u0627\u0646","name_en":"\u0631\u0627\u0645\u06cc\u0627\u0646","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2334,"name":"\u0631\u0636\u0627\u0622\u0628\u0627\u062f","name_en":"\u0631\u0636\u0627\u0622\u0628\u0627\u062f","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2335,"name":"\u0633\u0627\u0631\u062c\u0647 \u06af\u0631","name_en":"\u0633\u0627\u0631\u062c\u0647 \u06af\u0631","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2336,"name":"\u0633\u0627\u0631\u0644\u06cc \u0633\u0641\u0644\u06cc","name_en":"\u0633\u0627\u0631\u0644\u06cc \u0633\u0641\u0644\u06cc","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2337,"name":"\u0633\u0631\u062e\u0646 \u06a9\u0644\u0627\u062a\u0647","name_en":"\u0633\u0631\u062e\u0646 \u06a9\u0644\u0627\u062a\u0647","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2338,"name":"\u0633\u0631\u06a9\u0644\u0627\u062a\u0647 \u062e\u0631\u0627\u0628\u0647 \u0634\u0647\u0631","name_en":"\u0633\u0631\u06a9\u0644\u0627\u062a\u0647 \u062e\u0631\u0627\u0628\u0647 \u0634\u0647\u0631","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2339,"name":"\u0633\u0644\u0627\u0642 \u063a\u0627\u06cc\u0628","name_en":"\u0633\u0644\u0627\u0642 \u063a\u0627\u06cc\u0628","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2340,"name":"\u0633\u0644\u0637\u0627\u0646\u0639\u0644\u06cc","name_en":"\u0633\u0644\u0637\u0627\u0646\u0639\u0644\u06cc","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2341,"name":"\u0634\u0627\u0647\u06a9\u0648\u0647 \u0633\u0641\u0644\u06cc","name_en":"\u0634\u0627\u0647\u06a9\u0648\u0647 \u0633\u0641\u0644\u06cc","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2342,"name":"\u0639\u0637\u0627\u0622\u0628\u0627\u062f","name_en":"\u0639\u0637\u0627\u0622\u0628\u0627\u062f","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2343,"name":"\u0639\u0644\u06cc \u0622\u0628\u0627\u062f","name_en":"\u0639\u0644\u06cc \u0622\u0628\u0627\u062f","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2344,"name":"\u0641\u0627\u0636\u0644 \u0622\u0628\u0627\u062f","name_en":"\u0641\u0627\u0636\u0644 \u0622\u0628\u0627\u062f","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2345,"name":"\u0641\u062c\u0631","name_en":"\u0641\u062c\u0631","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2346,"name":"\u0642\u0627\u0631\u062a\u06cc \u0648 \u0628\u0646\u0627\u0648\u0631","name_en":"\u0642\u0627\u0631\u062a\u06cc \u0648 \u0628\u0646\u0627\u0648\u0631","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2347,"name":"\u0642\u0631\u0642","name_en":"\u0642\u0631\u0642","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2348,"name":"\u0642\u0631\u0647 \u0628\u0644\u0627\u063a","name_en":"\u0642\u0631\u0647 \u0628\u0644\u0627\u063a","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2349,"name":"\u06a9\u0627\u06a9\u0627","name_en":"\u06a9\u0627\u06a9\u0627","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2350,"name":"\u06a9\u0631\u0645 \u0622\u0628\u0627\u062f","name_en":"\u06a9\u0631\u0645 \u0622\u0628\u0627\u062f","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2351,"name":"\u06a9\u0648\u0686\u06a9 \u062e\u0631\u0637\u0648\u0645","name_en":"\u06a9\u0648\u0686\u06a9 \u062e\u0631\u0637\u0648\u0645","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2352,"name":"\u06af\u0627\u0644\u06cc\u06a9\u0634","name_en":"\u06af\u0627\u0644\u06cc\u06a9\u0634","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2353,"name":"\u06af\u0646\u0628\u062f\u06a9\u0627\u0648\u0648\u0633","name_en":"\u06af\u0646\u0628\u062f\u06a9\u0627\u0648\u0648\u0633","latitude":37.2464426,"longitude":55.1603568,"view":0,"parent_id":897},{"id":2354,"name":"\u0644\u06cc\u0648\u0627\u0646","name_en":"\u0644\u06cc\u0648\u0627\u0646","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2355,"name":"\u0645\u062d\u0645\u062f\u0622\u0628\u0627\u062f","name_en":"\u0645\u062d\u0645\u062f\u0622\u0628\u0627\u062f","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2356,"name":"\u0645\u0631\u0627\u0648\u0647 \u062a\u067e\u0647","name_en":"\u0645\u0631\u0627\u0648\u0647 \u062a\u067e\u0647","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2357,"name":"\u0645\u0632\u0631\u0639\u0647 \u06a9\u062a\u0648\u0644","name_en":"\u0645\u0632\u0631\u0639\u0647 \u06a9\u062a\u0648\u0644","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2358,"name":"\u0646\u0638\u0627\u0645 \u0622\u0628\u0627\u062f","name_en":"\u0646\u0638\u0627\u0645 \u0622\u0628\u0627\u062f","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2359,"name":"\u0646\u0648\u062f\u0647 \u062e\u0627\u0646\u062f\u0648\u0632","name_en":"\u0646\u0648\u062f\u0647 \u062e\u0627\u0646\u062f\u0648\u0632","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2360,"name":"\u0646\u0648\u062f\u06cc\u062c\u0647","name_en":"\u0646\u0648\u062f\u06cc\u062c\u0647","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2361,"name":"\u0646\u0648\u06a9\u0646\u062f\u0647","name_en":"\u0646\u0648\u06a9\u0646\u062f\u0647","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2362,"name":"\u06cc\u0644\u0645\u0647 \u0633\u0627\u0644\u06cc\u0627\u0646","name_en":"\u06cc\u0644\u0645\u0647 \u0633\u0627\u0644\u06cc\u0627\u0646","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2363,"name":"\u06cc\u0646\u0642\u0627\u0642 \u0648 \u06a9\u0627\u0645\u0631\u0627\u0646 \u0622\u0628\u0627\u062f","name_en":"\u06cc\u0646\u0642\u0627\u0642 \u0648 \u06a9\u0627\u0645\u0631\u0627\u0646 \u0622\u0628\u0627\u062f","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2364,"name":"\u0628\u0646\u062f\u0631\u0627\u0646\u0632\u0644\u06cc","name_en":"\u0628\u0646\u062f\u0631\u0627\u0646\u0632\u0644\u06cc","latitude":37.463909,"longitude":49.479863,"view":0,"parent_id":889},{"id":2365,"name":"\u0631\u0648\u062f\u0628\u0627\u0631","name_en":"\u0631\u0648\u062f\u0628\u0627\u0631","latitude":null,"longitude":null,"view":0,"parent_id":889},{"id":2366,"name":"\u0634\u0641\u062a","name_en":"\u0634\u0641\u062a","latitude":null,"longitude":null,"view":0,"parent_id":889},{"id":2367,"name":"\u0635\u0648\u0645\u0639\u0647 \u0633\u0631\u0627","name_en":"\u0635\u0648\u0645\u0639\u0647 \u0633\u0631\u0627","latitude":null,"longitude":null,"view":0,"parent_id":889},{"id":2368,"name":"\u0647\u0634\u062a\u067e\u0631","name_en":"\u0647\u0634\u062a\u067e\u0631","latitude":null,"longitude":null,"view":0,"parent_id":889},{"id":2369,"name":"\u0627\u0634\u062a\u0631\u06cc\u0646\u0627\u0646","name_en":"\u0627\u0634\u062a\u0631\u06cc\u0646\u0627\u0646","latitude":null,"longitude":null,"view":0,"parent_id":884},{"id":2370,"name":"\u0627\u0644\u0634\u062a\u0631","name_en":"\u0627\u0644\u0634\u062a\u0631","latitude":null,"longitude":null,"view":0,"parent_id":884},{"id":2371,"name":"\u067e\u0644\u200c\u062f\u062e\u062a\u0631","name_en":"\u067e\u0644\u200c\u062f\u062e\u062a\u0631","latitude":null,"longitude":null,"view":0,"parent_id":884},{"id":2372,"name":"\u0686\u0627\u0644\u0627\u0646\u0686\u0648\u0644\u0627\u0646","name_en":"\u0686\u0627\u0644\u0627\u0646\u0686\u0648\u0644\u0627\u0646","latitude":null,"longitude":null,"view":0,"parent_id":884},{"id":2373,"name":"\u0686\u063a\u0644\u0648\u0646\u062f\u06cc","name_en":"\u0686\u063a\u0644\u0648\u0646\u062f\u06cc","latitude":null,"longitude":null,"view":0,"parent_id":884},{"id":2374,"name":"\u0686\u0642\u0627\u0628\u0644","name_en":"\u0686\u0642\u0627\u0628\u0644","latitude":null,"longitude":null,"view":0,"parent_id":884},{"id":2375,"name":"\u062f\u0631\u0628 \u06af\u0646\u0628\u062f","name_en":"\u062f\u0631\u0628 \u06af\u0646\u0628\u062f","latitude":null,"longitude":null,"view":0,"parent_id":884},{"id":2376,"name":"\u0632\u0627\u063a\u0647","name_en":"\u0632\u0627\u063a\u0647","latitude":null,"longitude":null,"view":0,"parent_id":884},{"id":2377,"name":"\u0633\u067e\u06cc\u062f\u062f\u0634\u062a","name_en":"\u0633\u067e\u06cc\u062f\u062f\u0634\u062a","latitude":null,"longitude":null,"view":0,"parent_id":884},{"id":2378,"name":"\u0633\u0631\u0627\u0628\u200c\u062f\u0648\u0631\u0647","name_en":"\u0633\u0631\u0627\u0628\u200c\u062f\u0648\u0631\u0647","latitude":null,"longitude":null,"view":0,"parent_id":884},{"id":2379,"name":"\u0634\u0648\u0644 \u0622\u0628\u0627\u062f","name_en":"\u0634\u0648\u0644 \u0622\u0628\u0627\u062f","latitude":null,"longitude":null,"view":0,"parent_id":884},{"id":2380,"name":"\u06a9\u0648\u0646\u0627\u0646\u06cc","name_en":"\u06a9\u0648\u0646\u0627\u0646\u06cc","latitude":null,"longitude":null,"view":0,"parent_id":884},{"id":2381,"name":"\u06af\u0631\u0627\u0628","name_en":"\u06af\u0631\u0627\u0628","latitude":null,"longitude":null,"view":0,"parent_id":884},{"id":2382,"name":"\u0645\u0624\u0645\u0646\u200c\u0622\u0628\u0627\u062f","name_en":"\u0645\u0624\u0645\u0646\u200c\u0622\u0628\u0627\u062f","latitude":null,"longitude":null,"view":0,"parent_id":884},{"id":2383,"name":"\u0645\u0639\u0645\u0648\u0644\u0627\u0646","name_en":"\u0645\u0639\u0645\u0648\u0644\u0627\u0646","latitude":null,"longitude":null,"view":0,"parent_id":884},{"id":2384,"name":"\u0647\u0641\u062a \u0686\u0634\u0645\u0647","name_en":"\u0647\u0641\u062a \u0686\u0634\u0645\u0647","latitude":null,"longitude":null,"view":0,"parent_id":884},{"id":2385,"name":"\u0648\u06cc\u0633\u06cc\u0627\u0646","name_en":"\u0648\u06cc\u0633\u06cc\u0627\u0646","latitude":null,"longitude":null,"view":0,"parent_id":884},{"id":2386,"name":"\u0633\u0648\u0627\u062f\u06a9\u0648\u0647","name_en":"\u0633\u0648\u0627\u062f\u06a9\u0648\u0647","latitude":null,"longitude":null,"view":0,"parent_id":893},{"id":2387,"name":"\u06af\u0644\u0648\u06af\u0627\u0647","name_en":"\u06af\u0644\u0648\u06af\u0627\u0647","latitude":null,"longitude":null,"view":0,"parent_id":893},{"id":2388,"name":"\u0645\u06cc\u0627\u0646\u062f\u0648\u0631\u0648\u062f","name_en":"\u0645\u06cc\u0627\u0646\u062f\u0648\u0631\u0648\u062f","latitude":null,"longitude":null,"view":0,"parent_id":893},{"id":2389,"name":"\u0622\u0633\u062a\u0627\u0646\u0647","name_en":"\u0622\u0633\u062a\u0627\u0646\u0647","latitude":null,"longitude":null,"view":0,"parent_id":901},{"id":2390,"name":"\u0622\u0634\u062a\u06cc\u0627\u0646","name_en":"\u0622\u0634\u062a\u06cc\u0627\u0646","latitude":null,"longitude":null,"view":0,"parent_id":901},{"id":2391,"name":"\u067e\u0631\u0646\u062f\u06a9","name_en":"\u067e\u0631\u0646\u062f\u06a9","latitude":null,"longitude":null,"view":0,"parent_id":901},{"id":2392,"name":"\u062a\u0641\u0631\u0634","name_en":"\u062a\u0641\u0631\u0634","latitude":null,"longitude":null,"view":0,"parent_id":901},{"id":2393,"name":"\u062a\u0648\u0631\u0647","name_en":"\u062a\u0648\u0631\u0647","latitude":null,"longitude":null,"view":0,"parent_id":901},{"id":2394,"name":"\u062c\u0627\u0648\u0631\u0633\u06cc\u0627\u0646","name_en":"\u062c\u0627\u0648\u0631\u0633\u06cc\u0627\u0646","latitude":null,"longitude":null,"view":0,"parent_id":901},{"id":2395,"name":"\u062e\u0634\u06a9\u0631\u0648\u062f","name_en":"\u062e\u0634\u06a9\u0631\u0648\u062f","latitude":null,"longitude":null,"view":0,"parent_id":901},{"id":2396,"name":"\u062e\u0646\u062c\u06cc\u0646","name_en":"\u062e\u0646\u062c\u06cc\u0646","latitude":null,"longitude":null,"view":0,"parent_id":901},{"id":2397,"name":"\u062e\u0646\u062f\u0627\u0628","name_en":"\u062e\u0646\u062f\u0627\u0628","latitude":null,"longitude":null,"view":0,"parent_id":901},{"id":2398,"name":"\u062f\u0627\u0648\u062f\u0622\u0628\u0627\u062f","name_en":"\u062f\u0627\u0648\u062f\u0622\u0628\u0627\u062f","latitude":null,"longitude":null,"view":0,"parent_id":901},{"id":2399,"name":"\u062f\u0644\u06cc\u062c\u0627\u0646","name_en":"\u062f\u0644\u06cc\u062c\u0627\u0646","latitude":null,"longitude":null,"view":0,"parent_id":901},{"id":2400,"name":"\u0631\u0627\u0632\u0642\u0627\u0646","name_en":"\u0631\u0627\u0632\u0642\u0627\u0646","latitude":null,"longitude":null,"view":0,"parent_id":901},{"id":2401,"name":"\u0632\u0627\u0648\u06cc\u0647","name_en":"\u0632\u0627\u0648\u06cc\u0647","latitude":null,"longitude":null,"view":0,"parent_id":901},{"id":2402,"name":"\u0633\u0627\u0631\u0648\u0642","name_en":"\u0633\u0627\u0631\u0648\u0642","latitude":null,"longitude":null,"view":0,"parent_id":901},{"id":2403,"name":"\u0633\u0646\u062c\u0627\u0646","name_en":"\u0633\u0646\u062c\u0627\u0646","latitude":null,"longitude":null,"view":0,"parent_id":901},{"id":2404,"name":"\u0634\u0627\u0632\u0646\u062f","name_en":"\u0634\u0627\u0632\u0646\u062f","latitude":null,"longitude":null,"view":0,"parent_id":901},{"id":2405,"name":"\u0634\u0647\u0628\u0627\u0632","name_en":"\u0634\u0647\u0628\u0627\u0632","latitude":null,"longitude":null,"view":0,"parent_id":901},{"id":2406,"name":"\u063a\u0631\u0642 \u0622\u0628\u0627\u062f","name_en":"\u063a\u0631\u0642 \u0622\u0628\u0627\u062f","latitude":null,"longitude":null,"view":0,"parent_id":901},{"id":2407,"name":"\u0641\u0631\u0645\u0647\u06cc\u0646","name_en":"\u0641\u0631\u0645\u0647\u06cc\u0646","latitude":null,"longitude":null,"view":0,"parent_id":901},{"id":2408,"name":"\u0642\u0648\u0631\u0686\u06cc \u0628\u0627\u0634\u06cc","name_en":"\u0642\u0648\u0631\u0686\u06cc \u0628\u0627\u0634\u06cc","latitude":null,"longitude":null,"view":0,"parent_id":901},{"id":2409,"name":"\u06a9\u0627\u0631\u0686\u0627\u0646","name_en":"\u06a9\u0627\u0631\u0686\u0627\u0646","latitude":null,"longitude":null,"view":0,"parent_id":901},{"id":2410,"name":"\u06a9\u0631\u0647\u0631\u0648\u062f","name_en":"\u06a9\u0631\u0647\u0631\u0648\u062f","latitude":null,"longitude":null,"view":0,"parent_id":901},{"id":2411,"name":"\u06a9\u0645\u06cc\u062c\u0627\u0646","name_en":"\u06a9\u0645\u06cc\u062c\u0627\u0646","latitude":null,"longitude":null,"view":0,"parent_id":901},{"id":2412,"name":"\u0645\u0623\u0645\u0648\u0646\u06cc\u0647","name_en":"\u0645\u0623\u0645\u0648\u0646\u06cc\u0647","latitude":null,"longitude":null,"view":0,"parent_id":901},{"id":2413,"name":"\u0645\u0647\u0627\u062c\u0631\u0627\u0646","name_en":"\u0645\u0647\u0627\u062c\u0631\u0627\u0646","latitude":null,"longitude":null,"view":0,"parent_id":901},{"id":2414,"name":"\u0645\u06cc\u0644\u0627\u062c\u0631\u062f","name_en":"\u0645\u06cc\u0644\u0627\u062c\u0631\u062f","latitude":null,"longitude":null,"view":0,"parent_id":901},{"id":2415,"name":"\u0646\u0631\u0627\u0642","name_en":"\u0646\u0631\u0627\u0642","latitude":null,"longitude":null,"view":0,"parent_id":901},{"id":2416,"name":"\u0646\u0648\u0628\u0631\u0627\u0646","name_en":"\u0646\u0648\u0628\u0631\u0627\u0646","latitude":null,"longitude":null,"view":0,"parent_id":901},{"id":2417,"name":"\u0646\u06cc\u0645 \u0648\u0631","name_en":"\u0646\u06cc\u0645 \u0648\u0631","latitude":null,"longitude":null,"view":0,"parent_id":901},{"id":2418,"name":"\u0647\u0646\u062f\u0648\u062f\u0631","name_en":"\u0647\u0646\u062f\u0648\u062f\u0631","latitude":null,"longitude":null,"view":0,"parent_id":901},{"id":2419,"name":"\u0627\u0628\u0648\u0645\u0648\u0633\u06cc","name_en":"\u0627\u0628\u0648\u0645\u0648\u0633\u06cc","latitude":null,"longitude":null,"view":0,"parent_id":894},{"id":2420,"name":"\u0628\u0633\u062a\u06a9","name_en":"\u0628\u0633\u062a\u06a9","latitude":null,"longitude":null,"view":0,"parent_id":894},{"id":2421,"name":"\u0628\u0646\u062f\u0631 \u0686\u0627\u0631\u06a9","name_en":"\u0628\u0646\u062f\u0631 \u0686\u0627\u0631\u06a9","latitude":null,"longitude":null,"view":0,"parent_id":894},{"id":2422,"name":"\u0628\u0646\u062f\u0631 \u062e\u0645\u06cc\u0631","name_en":"\u0628\u0646\u062f\u0631 \u062e\u0645\u06cc\u0631","latitude":null,"longitude":null,"view":0,"parent_id":894},{"id":2423,"name":"\u0628\u0646\u062f\u0631 \u0639\u0628\u0627\u0633","name_en":"\u0628\u0646\u062f\u0631 \u0639\u0628\u0627\u0633","latitude":27.183222,"longitude":56.266645,"view":0,"parent_id":894},{"id":2424,"name":"\u0628\u0646\u062f\u0631 \u0644\u0646\u06af\u0647","name_en":"\u0628\u0646\u062f\u0631 \u0644\u0646\u06af\u0647","latitude":null,"longitude":null,"view":0,"parent_id":894},{"id":2425,"name":"\u062c\u0627\u0633\u06a9","name_en":"\u062c\u0627\u0633\u06a9","latitude":null,"longitude":null,"view":0,"parent_id":894},{"id":2426,"name":"\u062c\u0646\u0627\u062d","name_en":"\u062c\u0646\u0627\u062d","latitude":null,"longitude":null,"view":0,"parent_id":894},{"id":2427,"name":"\u062d\u0627\u062c\u06cc\u200c\u0622\u0628\u0627\u062f","name_en":"\u062d\u0627\u062c\u06cc\u200c\u0622\u0628\u0627\u062f","latitude":null,"longitude":null,"view":0,"parent_id":894},{"id":2428,"name":"\u062f\u0631\u06af\u0647\u0627\u0646","name_en":"\u062f\u0631\u06af\u0647\u0627\u0646","latitude":null,"longitude":null,"view":0,"parent_id":894},{"id":2429,"name":"\u062f\u0647\u0628\u0627\u0631\u0632","name_en":"\u062f\u0647\u0628\u0627\u0631\u0632","latitude":null,"longitude":null,"view":0,"parent_id":894},{"id":2430,"name":"\u0631\u0648\u06cc\u062f\u0631","name_en":"\u0631\u0648\u06cc\u062f\u0631","latitude":null,"longitude":null,"view":0,"parent_id":894},{"id":2431,"name":"\u0632\u06cc\u0627\u0631\u062a\u200c\u0639\u0644\u06cc","name_en":"\u0632\u06cc\u0627\u0631\u062a\u200c\u0639\u0644\u06cc","latitude":null,"longitude":null,"view":0,"parent_id":894},{"id":2432,"name":"\u0633\u0648\u0632\u0627","name_en":"\u0633\u0648\u0632\u0627","latitude":null,"longitude":null,"view":0,"parent_id":894},{"id":2433,"name":"\u0633\u06cc\u0631\u06cc\u06a9","name_en":"\u0633\u06cc\u0631\u06cc\u06a9","latitude":null,"longitude":null,"view":0,"parent_id":894},{"id":2434,"name":"\u0641\u0627\u0631\u063a\u0627\u0646","name_en":"\u0641\u0627\u0631\u063a\u0627\u0646","latitude":null,"longitude":null,"view":0,"parent_id":894},{"id":2435,"name":"\u0641\u06cc\u0646","name_en":"\u0641\u06cc\u0646","latitude":null,"longitude":null,"view":0,"parent_id":894},{"id":2436,"name":"\u06a9\u0646\u06af","name_en":"\u06a9\u0646\u06af","latitude":null,"longitude":null,"view":0,"parent_id":894},{"id":2437,"name":"\u06af\u0627\u0648\u0628\u0646\u062f\u06cc","name_en":"\u06af\u0627\u0648\u0628\u0646\u062f\u06cc","latitude":null,"longitude":null,"view":0,"parent_id":894},{"id":2438,"name":"\u0647\u0631\u0645\u0632","name_en":"\u0647\u0631\u0645\u0632","latitude":null,"longitude":null,"view":0,"parent_id":894},{"id":2439,"name":"\u0627\u0632\u0646\u062f\u0631\u06cc\u0627\u0646","name_en":"\u0627\u0632\u0646\u062f\u0631\u06cc\u0627\u0646","latitude":null,"longitude":null,"view":0,"parent_id":14},{"id":2440,"name":"\u0628\u0631\u0632\u0648\u0644","name_en":"\u0628\u0631\u0632\u0648\u0644","latitude":null,"longitude":null,"view":0,"parent_id":14},{"id":2441,"name":"\u0628\u0647\u0627\u0631","name_en":"\u0628\u0647\u0627\u0631","latitude":null,"longitude":null,"view":0,"parent_id":14},{"id":2442,"name":"\u062c\u0648\u0631\u0642\u0627\u0646","name_en":"\u062c\u0648\u0631\u0642\u0627\u0646","latitude":null,"longitude":null,"view":0,"parent_id":14},{"id":2443,"name":"\u062c\u0648\u06a9\u0627\u0631","name_en":"\u062c\u0648\u06a9\u0627\u0631","latitude":null,"longitude":null,"view":0,"parent_id":14},{"id":2444,"name":"\u062f\u0645\u0642","name_en":"\u062f\u0645\u0642","latitude":null,"longitude":null,"view":0,"parent_id":14},{"id":2445,"name":"\u0631\u0632\u0646","name_en":"\u0631\u0632\u0646","latitude":null,"longitude":null,"view":0,"parent_id":14},{"id":2446,"name":"\u0632\u0646\u06af\u0646\u0647","name_en":"\u0632\u0646\u06af\u0646\u0647","latitude":null,"longitude":null,"view":0,"parent_id":14},{"id":2447,"name":"\u0633\u0627\u0645\u0646","name_en":"\u0633\u0627\u0645\u0646","latitude":null,"longitude":null,"view":0,"parent_id":14},{"id":2448,"name":"\u0633\u0631\u06a9\u0627\u0646","name_en":"\u0633\u0631\u06a9\u0627\u0646","latitude":null,"longitude":null,"view":0,"parent_id":14},{"id":2449,"name":"\u0634\u06cc\u0631\u06cc\u0646\u200c\u0633\u0648","name_en":"\u0634\u06cc\u0631\u06cc\u0646\u200c\u0633\u0648","latitude":null,"longitude":null,"view":0,"parent_id":14},{"id":2450,"name":"\u0635\u0627\u0644\u062d\u200c\u0622\u0628\u0627\u062f","name_en":"\u0635\u0627\u0644\u062d\u200c\u0622\u0628\u0627\u062f","latitude":null,"longitude":null,"view":0,"parent_id":14},{"id":2451,"name":"\u0641\u0627\u0645\u0646\u06cc\u0646","name_en":"\u0641\u0627\u0645\u0646\u06cc\u0646","latitude":null,"longitude":null,"view":0,"parent_id":14},{"id":2452,"name":"\u0641\u0631\u0633\u0641\u062c","name_en":"\u0641\u0631\u0633\u0641\u062c","latitude":null,"longitude":null,"view":0,"parent_id":14},{"id":2453,"name":"\u0641\u06cc\u0631\u0648\u0632\u0627\u0646","name_en":"\u0641\u06cc\u0631\u0648\u0632\u0627\u0646","latitude":null,"longitude":null,"view":0,"parent_id":14},{"id":2454,"name":"\u0642\u0631\u0648\u0647 \u062f\u0631\u062c\u0632\u06cc\u0646","name_en":"\u0642\u0631\u0648\u0647 \u062f\u0631\u062c\u0632\u06cc\u0646","latitude":null,"longitude":null,"view":0,"parent_id":14},{"id":2455,"name":"\u0642\u0647\u0627\u0648\u0646\u062f","name_en":"\u0642\u0647\u0627\u0648\u0646\u062f","latitude":null,"longitude":null,"view":0,"parent_id":14},{"id":2456,"name":"\u06a9\u0628\u0648\u062f\u0631\u0622\u0647\u0646\u06af","name_en":"\u06a9\u0628\u0648\u062f\u0631\u0622\u0647\u0646\u06af","latitude":null,"longitude":null,"view":0,"parent_id":14},{"id":2457,"name":"\u06af\u0644\u200c\u062a\u067e\u0647","name_en":"\u06af\u0644\u200c\u062a\u067e\u0647","latitude":null,"longitude":null,"view":0,"parent_id":14},{"id":2458,"name":"\u06af\u06cc\u0627\u0646","name_en":"\u06af\u06cc\u0627\u0646","latitude":null,"longitude":null,"view":0,"parent_id":14},{"id":2459,"name":"\u0644\u0627\u0644\u062c\u06cc\u0646","name_en":"\u0644\u0627\u0644\u062c\u06cc\u0646","latitude":null,"longitude":null,"view":0,"parent_id":14},{"id":2460,"name":"\u0645\u0631\u06cc\u0627\u0646\u062c","name_en":"\u0645\u0631\u06cc\u0627\u0646\u062c","latitude":null,"longitude":null,"view":0,"parent_id":14},{"id":2461,"name":"\u0627\u0628\u0631\u06a9\u0648\u0647","name_en":"\u0627\u0628\u0631\u06a9\u0648\u0647","latitude":null,"longitude":null,"view":0,"parent_id":16},{"id":2462,"name":"\u0627\u062d\u0645\u062f\u0622\u0628\u0627\u062f","name_en":"\u0627\u062d\u0645\u062f\u0622\u0628\u0627\u062f","latitude":null,"longitude":null,"view":0,"parent_id":16},{"id":2463,"name":"\u0627\u0634\u06a9\u0630\u0631","name_en":"\u0627\u0634\u06a9\u0630\u0631","latitude":null,"longitude":null,"view":0,"parent_id":16},{"id":2464,"name":"\u0628\u0627\u0641\u0642","name_en":"\u0628\u0627\u0641\u0642","latitude":null,"longitude":null,"view":0,"parent_id":16},{"id":2465,"name":"\u0628\u0641\u0631\u0648\u0626\u06cc\u0647","name_en":"\u0628\u0641\u0631\u0648\u0626\u06cc\u0647","latitude":null,"longitude":null,"view":0,"parent_id":16},{"id":2466,"name":"\u0628\u0647\u0627\u0628\u0627\u062f","name_en":"\u0628\u0647\u0627\u0628\u0627\u062f","latitude":null,"longitude":null,"view":0,"parent_id":16},{"id":2467,"name":"\u062a\u0641\u062a","name_en":"\u062a\u0641\u062a","latitude":null,"longitude":null,"view":0,"parent_id":16},{"id":2468,"name":"\u062e\u0636\u0631\u0622\u0628\u0627\u062f","name_en":"\u062e\u0636\u0631\u0622\u0628\u0627\u062f","latitude":null,"longitude":null,"view":0,"parent_id":16},{"id":2469,"name":"\u0632\u0627\u0631\u0686","name_en":"\u0632\u0627\u0631\u0686","latitude":null,"longitude":null,"view":0,"parent_id":16},{"id":2470,"name":"\u0634\u0627\u0647\u062f\u06cc\u0647","name_en":"\u0634\u0627\u0647\u062f\u06cc\u0647","latitude":null,"longitude":null,"view":0,"parent_id":16},{"id":2471,"name":"\u0639\u0642\u062f\u0627","name_en":"\u0639\u0642\u062f\u0627","latitude":null,"longitude":null,"view":0,"parent_id":16},{"id":2472,"name":"\u0645\u0631\u0648\u0633\u062a","name_en":"\u0645\u0631\u0648\u0633\u062a","latitude":null,"longitude":null,"view":0,"parent_id":16},{"id":2473,"name":"\u0645\u0647\u0631\u062f\u0634\u062a","name_en":"\u0645\u0647\u0631\u062f\u0634\u062a","latitude":null,"longitude":null,"view":0,"parent_id":16},{"id":2474,"name":"\u0645\u0647\u0631\u06cc\u0632","name_en":"\u0645\u0647\u0631\u06cc\u0632","latitude":null,"longitude":null,"view":0,"parent_id":16},{"id":2475,"name":"\u0646\u062f\u0648\u0634\u0646","name_en":"\u0646\u062f\u0648\u0634\u0646","latitude":null,"longitude":null,"view":0,"parent_id":16},{"id":2476,"name":"\u0646\u06cc\u0631","name_en":"\u0646\u06cc\u0631","latitude":null,"longitude":null,"view":0,"parent_id":16},{"id":2477,"name":"\u0647\u0631\u0627\u062a","name_en":"\u0647\u0631\u0627\u062a","latitude":null,"longitude":null,"view":0,"parent_id":16},{"id":2478,"name":"\u0628\u0633\u062a\u0627\u0646 \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":2479,"name":"\u0686\u0627\u0631\u0627\u0648\u06cc\u0645\u0627\u0642","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":2480,"name":"\u062e\u062f\u0627\u0622\u0641\u0631\u06cc\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":2481,"name":"\u0639\u062c\u0628 \u0634\u06cc\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":891},{"id":2482,"name":"\u0686\u0627\u0644\u062f\u0631\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":881},{"id":2483,"name":"\u0686\u0627\u06cc\u067e\u0627\u0631\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":881},{"id":2484,"name":"\u0628\u06cc\u0644\u0647 \u0633\u0648\u0627\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":17},{"id":2485,"name":"\u067e\u0627\u0631\u0633 \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":17},{"id":2486,"name":"\u06a9\u0648\u062b\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":17},{"id":2487,"name":"\u0645\u0634\u06af\u06cc\u0646 \u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":17},{"id":2488,"name":"\u0622\u0631\u0627\u0646 \u0648\u0628\u06cc\u062f\u06af\u0644","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":2489,"name":"\u0627\u0631\u062f\u0633\u062a\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":2490,"name":"\u0628\u0631\u062e\u0648\u0627\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":2491,"name":"\u0628\u0648 \u06cc\u06cc\u0646 \u0648 \u0645\u06cc\u0627\u0646\u062f\u0634\u062a","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":2492,"name":"\u062a\u06cc\u0631\u0627\u0646 \u0648\u06a9\u0631\u0648\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":2493,"name":"\u0686\u0627\u062f\u06af\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":2494,"name":"\u062e\u0648\u0631 \u0648 \u0628\u06cc\u0627\u0628\u0627\u0646\u06a9","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":2495,"name":"\u062f\u0647\u0627\u0642\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":2496,"name":"\u0634\u0627\u0647\u06cc\u0646 \u0634\u0647\u0631\u0648\u0645\u06cc\u0645\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":2497,"name":"\u0641\u0631\u06cc\u062f\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":2498,"name":"\u0641\u0631\u06cc\u062f\u0648\u0646\u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":2499,"name":"\u0644\u0646\u062c\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":2500,"name":"\u0646\u0637\u0646\u0632","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":2501,"name":"\u0633\u0627\u0648\u062c\u0628\u0644\u0627\u063a","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":895},{"id":2502,"name":"\u0641\u0631\u062f\u06cc\u0633","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":895},{"id":2503,"name":"\u0686\u0631\u062f\u0627\u0648\u0644","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":32},{"id":2504,"name":"\u062f\u0631\u0647 \u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":32},{"id":2505,"name":"\u0633\u06cc\u0631\u0648\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":32},{"id":2506,"name":"\u0645\u0644\u06a9\u0634\u0627\u0647\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":32},{"id":2507,"name":"\u0645\u0647\u0631\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":32},{"id":2508,"name":"\u062a\u0646\u06af\u0633\u062a\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":2509,"name":"\u062f\u0634\u062a\u0633\u062a\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":2510,"name":"\u062f\u0634\u062a\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":2511,"name":"\u062f\u06cc\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":2512,"name":"\u062f\u06cc\u0644\u0645","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":2513,"name":"\u06a9\u0646\u06af\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":2514,"name":"\u06af\u0646\u0627\u0648\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":2515,"name":"\u0631\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1},{"id":2516,"name":"\u0634\u0645\u06cc\u0631\u0627\u0646\u0627\u062a","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1},{"id":2517,"name":"\u06a9\u0648\u0647\u0631\u0646\u06af","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":903},{"id":2518,"name":"\u06a9\u06cc\u0627\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":903},{"id":2519,"name":"\u062f\u0631\u0645\u06cc\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":876},{"id":2520,"name":"\u0632\u06cc\u0631\u06a9\u0648\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":876},{"id":2521,"name":"\u0642\u0627\u06cc\u0646\u0627\u062a","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":876},{"id":2522,"name":"\u0628\u06cc\u0646\u0627\u0644\u0648\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":2523,"name":"\u062c\u0648\u06cc\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":2524,"name":"\u062e\u0644\u06cc\u0644 \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":2525,"name":"\u062e\u0648\u0634\u0627\u0628","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":2526,"name":"\u062f\u0627\u0648\u0631\u0632\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":2527,"name":"\u0631\u0634\u062a\u062e\u0648\u0627\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":2528,"name":"\u0632\u0627\u0648\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":2529,"name":"\u0641\u06cc\u0631\u0648\u0632\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":2530,"name":"\u0645\u0647 \u0648\u0644\u0627\u062a","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":880},{"id":2531,"name":"\u062c\u0627\u062c\u0631\u0645","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":896},{"id":2532,"name":"\u0631\u0627\u0632 \u0648 \u062c\u0631\u06af\u0644\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":896},{"id":2533,"name":"\u06af\u0631\u0645\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":896},{"id":2534,"name":"\u0645\u0627\u0646\u0647 \u0648\u0633\u0645\u0644\u0642\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":896},{"id":2535,"name":"\u0622\u063a\u0627\u062c\u0627\u0631\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":902},{"id":2536,"name":"\u0627\u0645\u06cc\u062f\u06cc\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":902},{"id":2537,"name":"\u0627\u0646\u062f\u06cc\u06a9\u0627","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":902},{"id":2538,"name":"\u0628\u0627\u0648\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":902},{"id":2539,"name":"\u0628\u0646\u062f\u0631\u0645\u0627\u0647\u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":902},{"id":2540,"name":"\u062d\u0645\u06cc\u062f\u06cc\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":902},{"id":2541,"name":"\u062f\u0634\u062a \u0622\u0632\u0627\u062f\u06af\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":902},{"id":2542,"name":"\u0631\u0627\u0645\u0634\u06cc\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":902},{"id":2543,"name":"\u06a9\u0627\u0631\u0648\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":902},{"id":2544,"name":"\u06af\u062a\u0648\u0646\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":902},{"id":2545,"name":"\u0644\u0627\u0644\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":902},{"id":2546,"name":"\u0645\u0633\u062c\u062f\u0633\u0644\u06cc\u0645\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":902},{"id":2547,"name":"\u0647\u0641\u062a\u06af\u0644","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":902},{"id":2548,"name":"\u0647\u0646\u062f\u06cc\u062c\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":902},{"id":2549,"name":"\u0647\u0648\u06cc\u0632\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":902},{"id":2550,"name":"\u0627\u06cc\u062c\u0631\u0648\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":20},{"id":2551,"name":"\u062e\u062f\u0627\u0628\u0646\u062f\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":20},{"id":2552,"name":"\u0637\u0627\u0631\u0645","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":20},{"id":2553,"name":"\u062e\u0627\u0634","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2554,"name":"\u062f\u0644\u06af\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2555,"name":"\u0632\u0647\u06a9","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2556,"name":"\u0633\u0631\u0628\u0627\u0632","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2557,"name":"\u0633\u06cc\u0628 \u0648 \u0633\u0648\u0631\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2558,"name":"\u0641\u0646\u0648\u062c","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2559,"name":"\u0642\u0635\u0631\u0642\u0646\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2560,"name":"\u06a9\u0646\u0627\u0631\u06a9","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2561,"name":"\u0645\u06cc\u0631\u062c\u0627\u0648\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2562,"name":"\u0646\u06cc\u06a9 \u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2563,"name":"\u0646\u06cc\u0645\u0631\u0648\u0632","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2564,"name":"\u0647\u0627\u0645\u0648\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2565,"name":"\u0647\u06cc\u0631\u0645\u0646\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":883},{"id":2566,"name":"\u067e\u0627\u0633\u0627\u0631\u06af\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":898},{"id":2567,"name":"\u062e\u0631\u0645 \u0628\u06cc\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":898},{"id":2568,"name":"\u0631\u0633\u062a\u0645","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":898},{"id":2569,"name":"\u0632\u0631\u06cc\u0646 \u062f\u0634\u062a","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":898},{"id":2570,"name":"\u0633\u067e\u06cc\u062f\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":898},{"id":2571,"name":"\u0642\u06cc\u0631\u0648\u06a9\u0627\u0631\u0632\u06cc\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":898},{"id":2572,"name":"\u0644\u0627\u0631\u0633\u062a\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":898},{"id":2573,"name":"\u0645\u0645\u0633\u0646\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":898},{"id":2574,"name":"\u0646\u06cc \u0631\u06cc\u0632","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":898},{"id":2575,"name":"\u0627\u0631\u0632\u0648\u06cc\u06cc\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":2576,"name":"\u0631\u0648\u062f\u0628\u0627\u0631\u062c\u0646\u0648\u0628","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":2577,"name":"\u0631\u06cc\u06af\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":2578,"name":"\u0634\u0647\u0631\u0628\u0627\u0628\u06a9","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":2579,"name":"\u0641\u0627\u0631\u06cc\u0627\u0628","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":2580,"name":"\u0646\u0631\u0645\u0627\u0634\u06cc\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":2581,"name":"\u0627\u0633\u0644\u0627\u0645 \u0622\u0628\u0627\u062f\u063a\u0631\u0628","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2582,"name":"\u062b\u0644\u0627\u062b \u0628\u0627\u0628\u0627\u062c\u0627\u0646\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2583,"name":"\u062f\u0627\u0644\u0627\u0647\u0648","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2584,"name":"\u0642\u0635\u0631\u0634\u06cc\u0631\u06cc\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":2585,"name":"\u0628\u0648\u06cc\u0631\u0627\u062d\u0645\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":887},{"id":2586,"name":"\u0628\u0647\u0645\u06cc\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":887},{"id":2587,"name":"\u062f\u0646\u0627","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":887},{"id":2588,"name":"\u06a9\u0647\u06af\u06cc\u0644\u0648\u06cc\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":887},{"id":2589,"name":"\u06af\u0686\u0633\u0627\u0631\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":887},{"id":2590,"name":"\u062a\u0631\u06a9\u0645\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":897},{"id":2591,"name":"\u0637\u0648\u0627\u0644\u0634","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":889},{"id":2592,"name":"\u062e\u0631\u0645 \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":884},{"id":2593,"name":"\u062f\u0644\u0641\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":884},{"id":2594,"name":"\u062f\u0648\u0631\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":884},{"id":2595,"name":"\u0631\u0648\u0645\u0634\u06a9\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":884},{"id":2596,"name":"\u0633\u0644\u0633\u0644\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":884},{"id":2597,"name":"\u0633\u0648\u0627\u062f\u06a9\u0648\u0647 \u0634\u0645\u0627\u0644\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":893},{"id":2598,"name":"\u0633\u06cc\u0645\u0631\u063a","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":893},{"id":2599,"name":"\u0639\u0628\u0627\u0633 \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":893},{"id":2600,"name":"\u0642\u0627\u06cc\u0645 \u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":893},{"id":2601,"name":"\u0632\u0631\u0646\u062f\u06cc\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":901},{"id":2602,"name":"\u0641\u0631\u0627\u0647\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":901},{"id":2603,"name":"\u0628\u0634\u0627\u06af\u0631\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":894},{"id":2604,"name":"\u0628\u0646\u062f\u0631\u0644\u0646\u06af\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":894},{"id":2605,"name":"\u067e\u0627\u0631\u0633\u06cc\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":894},{"id":2606,"name":"\u062d\u0627\u062c\u06cc \u0627\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":894},{"id":2607,"name":"\u062e\u0645\u06cc\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":894},{"id":2608,"name":"\u0631\u0648\u062f\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":894},{"id":2609,"name":"\u062e\u0627\u062a\u0645","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":16},{"id":2610,"name":"\u062a\u06cc\u06a9\u0645\u0647 \u062f\u0627\u0634","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2478},{"id":2611,"name":"\u0633\u06cc\u0647 \u0631\u0648\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1820},{"id":2612,"name":"\u0642\u0631\u0647 \u0622\u063a\u0627\u062c","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2479},{"id":2613,"name":"\u06a9\u0648\u0632\u0647 \u06a9\u0646\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1834},{"id":2614,"name":"\u062c\u0648\u0627\u0646 \u0642\u0644\u0639\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2481},{"id":2615,"name":"\u0622\u0628\u0634 \u0627\u062d\u0645\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1843},{"id":2616,"name":"\u062e\u062f\u0627\u062c\u0648(\u062e\u0631\u0627\u062c\u0648)","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":762},{"id":2617,"name":"\u0645\u0628\u0627\u0631\u06a9 \u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1848},{"id":2618,"name":"\u0627\u0686\u0627\u0686\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":764},{"id":2619,"name":"\u0646\u0648\u0634\u06cc\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":10},{"id":2620,"name":"\u0633\u06cc\u0647 \u0686\u0634\u0645\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2482},{"id":2621,"name":"\u062a\u0627\u0632\u0647 \u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":768},{"id":2622,"name":"\u0627\u0633\u0644\u0627\u0645 \u0627\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2485},{"id":2623,"name":"\u062a\u0627\u0632\u0647 \u06a9\u0646\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2485},{"id":2624,"name":"\u0647\u0634\u062a\u062c\u06cc\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":772},{"id":2625,"name":"\u062a\u0627\u0632\u0647 \u06a9\u0646\u062f\u0627\u0646\u06af\u0648\u062a","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1901},{"id":2626,"name":"\u0641\u062e\u0631\u0627\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2487},{"id":2627,"name":"\u0642\u0635\u0627\u0628\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2487},{"id":2628,"name":"\u0622\u0628\u06cc \u0628\u06cc\u06af\u0644\u0648","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1906},{"id":2629,"name":"\u0627\u0628\u0648\u0632\u06cc\u062f\u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2488},{"id":2630,"name":"\u0633\u0641\u06cc\u062f\u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2488},{"id":2631,"name":"\u0646\u0648\u0634 \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2488},{"id":2632,"name":"\u0632\u0648\u0627\u0631\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2489},{"id":2633,"name":"\u0627\u0698\u06cc\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":2634,"name":"\u062a\u0648\u062f\u0634\u06a9","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":2635,"name":"\u062d\u0633\u0646 \u0627\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":2636,"name":"\u0632\u06cc\u0627\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":2637,"name":"\u0633\u062c\u0632\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":2638,"name":"\u0642\u0647\u062c\u0627\u0648\u0631\u0633\u062a\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":2639,"name":"\u06a9\u0648\u0647\u067e\u0627\u06cc\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":2640,"name":"\u0646\u06cc\u06a9 \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":2641,"name":"\u0648\u0631\u0632\u0646\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":2642,"name":"\u0647\u0631\u0646\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":4},{"id":2643,"name":"\u062d\u0628\u06cc\u0628 \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2490},{"id":2644,"name":"\u062f\u0633\u062a\u06af\u0631\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2490},{"id":2645,"name":"\u0633\u06cc\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2490},{"id":2646,"name":"\u0634\u0627\u067e\u0648\u0631\u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2490},{"id":2647,"name":"\u06a9\u0645\u0634\u0686\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2490},{"id":2648,"name":"\u0627\u0641\u0648\u0633","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2491},{"id":2649,"name":"\u0628\u0648\u06cc\u06cc\u0646 \u0648\u0645\u06cc\u0627\u0646\u062f\u0634\u062a","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2491},{"id":2650,"name":"\u062a\u06cc\u0631\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2492},{"id":2651,"name":"\u0639\u0633\u06af\u0631\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2492},{"id":2652,"name":"\u0631\u0632\u0648\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2493},{"id":2653,"name":"\u0627\u0635\u063a\u0631\u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1911},{"id":2654,"name":"\u062f\u0631\u0686\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1911},{"id":2655,"name":"\u06a9\u0648\u0634\u06a9","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1911},{"id":2656,"name":"\u062c\u0646\u062f\u0642","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2494},{"id":2657,"name":"\u062e\u0648\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2494},{"id":2658,"name":"\u0641\u0631\u062e\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2494},{"id":2659,"name":"\u06af\u0644\u0634\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2495},{"id":2660,"name":"\u062d\u0646\u0627","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1725},{"id":2661,"name":"\u06a9\u0645\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1725},{"id":2662,"name":"\u0648\u0646\u06a9","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1725},{"id":2663,"name":"\u0634\u0627\u0647\u06cc\u0646 \u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2496},{"id":2664,"name":"\u06af\u0631\u06af\u0627\u0628","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2496},{"id":2665,"name":"\u06af\u0632\u0628\u0631\u062e\u0648\u0627\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2496},{"id":2666,"name":"\u0644\u0627\u06cc \u0628\u06cc\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2496},{"id":2667,"name":"\u0645\u06cc\u0645\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2496},{"id":2668,"name":"\u0648\u0632\u0648\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2496},{"id":2669,"name":"\u0645\u0646\u0638\u0631\u06cc\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1917},{"id":2670,"name":"\u062f\u0627\u0645\u0646\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2497},{"id":2671,"name":"\u0628\u0631\u0641 \u0627\u0646\u0628\u0627\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2498},{"id":2672,"name":"\u0627\u06cc\u0645\u0627\u0646\u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":849},{"id":2673,"name":"\u0628\u0647\u0627\u0631\u0627\u0646 \u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":849},{"id":2674,"name":"\u067e\u06cc\u0631\u0628\u06a9\u0631\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":849},{"id":2675,"name":"\u0632\u0627\u0632\u0631\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":849},{"id":2676,"name":"\u06a9\u0644\u06cc\u0634\u0627\u062f\u0648\u0633\u0648\u062f\u0631\u062c\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":849},{"id":2677,"name":"\u0628\u0631\u0632\u06a9","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":30},{"id":2678,"name":"\u062c\u0648\u0634\u0642\u0627\u0646 \u0642\u0627\u0644\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":30},{"id":2679,"name":"\u0642\u0645\u0635\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":30},{"id":2680,"name":"\u06a9\u0627\u0645\u0648 \u0648 \u0686\u0648\u06af\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":30},{"id":2681,"name":"\u0645\u0634\u06a9\u0627\u062a","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":30},{"id":2682,"name":"\u0646\u06cc\u0627\u0633\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":30},{"id":2683,"name":"\u06af\u0644\u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":848},{"id":2684,"name":"\u06af\u0648\u06af\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":848},{"id":2685,"name":"\u0628\u0627\u063a \u0628\u0647\u0627\u062f\u0631\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2499},{"id":2686,"name":"\u0628\u0627\u063a\u0634\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2499},{"id":2687,"name":"\u0686\u0631\u0645\u0647\u06cc\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2499},{"id":2688,"name":"\u0686\u0645\u06af\u0631\u062f\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2499},{"id":2689,"name":"\u0632\u0627\u06cc\u0646\u062f\u0647 \u0631\u0648\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2499},{"id":2690,"name":"\u0633\u062f\u0647 \u0644\u0646\u062c\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2499},{"id":2691,"name":"\u0648\u0631\u0646\u0627\u0645\u062e\u0648\u0627\u0633\u062a","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2499},{"id":2692,"name":"\u062f\u06cc\u0632\u06cc\u0686\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1923},{"id":2693,"name":"\u0632\u06cc\u0628\u0627\u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1923},{"id":2694,"name":"\u0637\u0627\u0644\u062e\u0648\u0646\u0686\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1923},{"id":2695,"name":"\u06a9\u0631\u06a9\u0648\u0646\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1923},{"id":2696,"name":"\u0645\u062c\u0644\u0633\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1923},{"id":2697,"name":"\u0627\u0646\u0627\u0631\u06a9","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1924},{"id":2698,"name":"\u0628\u0627\u0641\u0631\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1924},{"id":2699,"name":"\u062c\u0648\u0632\u062f\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1925},{"id":2700,"name":"\u062f\u0647\u0642","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1925},{"id":2701,"name":"\u0639\u0644\u0648\u06cc\u062c\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1925},{"id":2702,"name":"\u06a9\u0647\u0631\u06cc\u0632\u0633\u0646\u06af","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1925},{"id":2703,"name":"\u0628\u0627\u062f\u0631\u0648\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2500},{"id":2704,"name":"\u062e\u0627\u0644\u062f\u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2500},{"id":2705,"name":"\u0637\u0631\u0642 \u0631\u0648\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2500},{"id":2706,"name":"\u0634\u0647\u0631\u062c\u062f\u06cc\u062f\u0647\u0634\u062a\u06af\u0631\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2501},{"id":2707,"name":"\u06af\u0644\u0633\u0627\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2501},{"id":2708,"name":"\u0645\u0634\u06a9\u06cc\u0646 \u062f\u0634\u062a","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2502},{"id":2709,"name":"\u06a9\u0645\u0627\u0644 \u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2},{"id":2710,"name":"\u0633\u0631\u0627\u0628 \u0628\u0627\u063a","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":775},{"id":2711,"name":"\u0645\u0648\u0631\u0645\u0648\u0631\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":775},{"id":2712,"name":"\u0632\u0631\u0646\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":776},{"id":2713,"name":"\u0622\u0633\u0645\u0627\u0646 \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2503},{"id":2714,"name":"\u0628\u0644\u0627\u0648\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2503},{"id":2715,"name":"\u0633\u0631\u0627\u0628\u0644\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2503},{"id":2716,"name":"\u0634\u0628\u0627\u0628","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2503},{"id":2717,"name":"\u0645\u0627\u0698\u06cc\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2504},{"id":2718,"name":"\u0645\u0648\u0633\u06cc\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":777},{"id":2719,"name":"\u0645\u06cc\u0645\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":777},{"id":2720,"name":"\u0644\u0648\u0645\u0627\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2505},{"id":2721,"name":"\u062f\u0644\u06af\u0634\u0627","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2506},{"id":2722,"name":"\u0635\u0627\u0644\u062d \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2507},{"id":2723,"name":"\u0639\u0627\u0644\u06cc \u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":25},{"id":2724,"name":"\u0622\u0628 \u067e\u062e\u0634","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2509},{"id":2725,"name":"\u0633\u0639\u062f \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2509},{"id":2726,"name":"\u0628\u0646\u062f\u0631\u062f\u06cc\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2511},{"id":2727,"name":"\u0628\u0646\u062f\u0631\u062f\u06cc\u0644\u0645","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2512},{"id":2728,"name":"\u0628\u0646\u062f\u0631\u06a9\u0646\u06af\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2513},{"id":2729,"name":"\u0633\u06cc\u0631\u0627\u0641","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2513},{"id":2730,"name":"\u0628\u0646\u062f\u0631\u0631\u06cc\u06af","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2514},{"id":2731,"name":"\u0628\u0646\u062f\u0631\u06af\u0646\u0627\u0648\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2514},{"id":2732,"name":"\u0627\u062d\u0645\u062f \u0622\u0628\u0627\u062f \u0645\u0633\u062a\u0648\u0641\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":29},{"id":2733,"name":"\u0635\u0627\u0644\u062d\u06cc\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1910},{"id":2734,"name":"\u0646\u0633\u06cc\u0645 \u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1910},{"id":2735,"name":"\u0634\u0631\u06cc\u0641 \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1976},{"id":2736,"name":"\u0641\u0631\u0648\u0646 \u0627\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1976},{"id":2737,"name":"\u067e\u0631\u0646\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1979},{"id":2738,"name":"\u0646\u0635\u06cc\u0631\u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1979},{"id":2739,"name":"\u062d\u0633\u0646 \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2515},{"id":2740,"name":"\u062a\u062c\u0631\u06cc\u0634","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2516},{"id":2741,"name":"\u0628\u0627\u063a\u0633\u062a\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1982},{"id":2742,"name":"\u062f\u0634\u062a\u06a9","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1993},{"id":2743,"name":"\u0633\u0631\u062e\u0648\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1993},{"id":2744,"name":"\u06a9\u0627\u062c","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1993},{"id":2745,"name":"\u0633\u0641\u06cc\u062f\u062f\u0634\u062a","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":785},{"id":2746,"name":"\u0641\u0631\u0627\u062f\u0628\u0646\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":785},{"id":2747,"name":"\u0648\u0631\u062f\u0646\u062c\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1996},{"id":2748,"name":"\u0641\u0631\u062e \u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":36},{"id":2749,"name":"\u0647\u0627\u0631\u0648\u0646\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":36},{"id":2750,"name":"\u067e\u0631\u062f\u0646\u062c\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2005},{"id":2751,"name":"\u0686\u0644\u06cc\u0686\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2005},{"id":2752,"name":"\u06af\u0648\u062c\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2005},{"id":2753,"name":"\u0628\u0627\u0632\u0641\u062a","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2517},{"id":2754,"name":"\u0635\u0645\u0635\u0627\u0645\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2517},{"id":2755,"name":"\u062f\u0633\u062a\u0646\u0627","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2518},{"id":2756,"name":"\u0645\u0627\u0644 \u062e\u0644\u06cc\u0641\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":787},{"id":2757,"name":"\u0645\u0646\u062c","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":787},{"id":2758,"name":"\u0633\u0647 \u0642\u0644\u0639\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1782},{"id":2759,"name":"\u0639\u0634\u0642 \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":788},{"id":2760,"name":"\u0622\u0631\u06cc\u0646 \u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2521},{"id":2761,"name":"\u0642\u0627\u06cc\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2521},{"id":2762,"name":"\u06cc\u0648\u0646\u0633\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1745},{"id":2763,"name":"\u0634\u0647\u0631\u0627\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1735},{"id":2764,"name":"\u0627\u062d\u0645\u062f\u0627\u0628\u0627\u062f\u0635\u0648\u0644\u062a","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":791},{"id":2765,"name":"\u0635\u0627\u0644\u062d \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":791},{"id":2766,"name":"\u0646\u06cc\u0644 \u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":791},{"id":2767,"name":"\u0628\u0627\u06cc\u06a9","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1746},{"id":2768,"name":"\u0631\u0628\u0627\u0637 \u0633\u0646\u06af","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1746},{"id":2769,"name":"\u06a9\u062f\u06a9\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1746},{"id":2770,"name":"\u06af\u0644\u0628\u0647\u0627\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1732},{"id":2771,"name":"\u06a9\u0646\u062f\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2524},{"id":2772,"name":"\u0633\u0644\u0627\u0645\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1736},{"id":2773,"name":"\u0642\u0627\u0633\u0645 \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1736},{"id":2774,"name":"\u0633\u0644\u0637\u0627\u0646 \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2525},{"id":2775,"name":"\u0686\u0627\u067e\u0634\u0644\u0648","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1750},{"id":2776,"name":"\u0644\u0637\u0641 \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1750},{"id":2777,"name":"\u0646\u0648\u062e\u0646\u062f\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1750},{"id":2778,"name":"\u062c\u0646\u06af\u0644","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2527},{"id":2779,"name":"\u0631\u0648\u062f\u0627\u0628","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":316},{"id":2780,"name":"\u0634\u0634\u062a\u0645\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":316},{"id":2781,"name":"\u0645\u0632\u062f\u0622\u0648\u0646\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1752},{"id":2782,"name":"\u0633\u0641\u06cc\u062f\u0633\u0646\u06af","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1758},{"id":2783,"name":"\u0642\u0644\u0646\u062f\u0631\u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1758},{"id":2784,"name":"\u0647\u0645\u062a \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2529},{"id":2785,"name":"\u0628\u0627\u062c\u06af\u06cc\u0631\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1760},{"id":2786,"name":"\u0631\u06cc\u0648\u0634","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1762},{"id":2787,"name":"\u0634\u0647\u0631\u0632\u0648","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1763},{"id":2788,"name":"\u0628\u06cc\u062f\u062e\u062a","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":847},{"id":2789,"name":"\u06a9\u0627\u062e\u06a9","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":847},{"id":2790,"name":"\u0631\u0636\u0648\u06cc\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":3},{"id":2791,"name":"\u0645\u0634\u0647\u062f \u062b\u0627\u0645\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":3},{"id":2792,"name":"\u0645\u0644\u06a9 \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":3},{"id":2793,"name":"\u0634\u0627\u062f\u0645\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2530},{"id":2794,"name":"\u0641\u06cc\u0636 \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2530},{"id":2795,"name":"\u0628\u0627\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":318},{"id":2796,"name":"\u0686\u06a9\u0646\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":318},{"id":2797,"name":"\u062f\u0631\u0648\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":318},{"id":2798,"name":"\u0639\u0634\u0642 \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":318},{"id":2799,"name":"\u0642\u062f\u0645\u06af\u0627\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":318},{"id":2800,"name":"\u0635\u0641\u06cc \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":794},{"id":2801,"name":"\u0686\u0646\u0627\u0631\u0627\u0646 \u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":39},{"id":2802,"name":"\u062d\u0635\u0627\u0631\u06af\u0631\u0645\u062e\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":39},{"id":2803,"name":"\u0632\u06cc\u0627\u0631\u062a","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":795},{"id":2804,"name":"\u0642\u0648\u0634\u062e\u0627\u0646\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":795},{"id":2805,"name":"\u062a\u06cc\u062a\u06a9\u0627\u0646\u0644\u0648","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1802},{"id":2806,"name":"\u0627\u06cc\u0648\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2533},{"id":2807,"name":"\u0622\u0648\u0627","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2534},{"id":2808,"name":"\u067e\u06cc\u0634 \u0642\u0644\u0639\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2534},{"id":2809,"name":"\u0627\u0631\u0648\u0646\u062f\u06a9\u0646\u0627\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":24},{"id":2810,"name":"\u0686\u0648\u06cc\u0628\u062f\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":24},{"id":2811,"name":"\u062c\u0627\u06cc\u0632\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2536},{"id":2812,"name":"\u0622\u0628\u0698\u062f\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2537},{"id":2813,"name":"\u0642\u0644\u0639\u0647 \u062e\u0648\u0627\u062c\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2537},{"id":2814,"name":"\u0622\u0632\u0627\u062f\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":796},{"id":2815,"name":"\u0628\u06cc\u062f\u0631\u0648\u0628\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":796},{"id":2816,"name":"\u0686\u0645 \u06af\u0644\u06a9","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":796},{"id":2817,"name":"\u062d\u0633\u06cc\u0646\u06cc\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":796},{"id":2818,"name":"\u0627\u0644\u0647\u0627\u06cc\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":7},{"id":2819,"name":"\u062f\u0647\u062f\u0632","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":797},{"id":2820,"name":"\u0635\u06cc\u062f\u0648\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2015},{"id":2821,"name":"\u0642\u0644\u0639\u0647 \u062a\u0644","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2015},{"id":2822,"name":"\u0645\u06cc\u062f\u0627\u0648\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2015},{"id":2823,"name":"\u0634\u06cc\u0628\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2538},{"id":2824,"name":"\u0645\u0644\u0627\u062b\u0627\u0646\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2538},{"id":2825,"name":"\u0648\u06cc\u0633","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2538},{"id":2826,"name":"\u0628\u0646\u062f\u0631\u0627\u0645\u0627\u0645 \u062e\u0645\u06cc\u0646\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2539},{"id":2827,"name":"\u0686\u0645\u0631\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2539},{"id":2828,"name":"\u062a\u0634\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":314},{"id":2829,"name":"\u0645\u0646\u0635\u0648\u0631\u06cc\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":314},{"id":2830,"name":"\u0645\u0642\u0627\u0648\u0645\u062a","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":799},{"id":2831,"name":"\u0645\u06cc\u0646\u0648\u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":799},{"id":2832,"name":"\u0686\u063a\u0627\u0645\u06cc\u0634","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":23},{"id":2833,"name":"\u062d\u0645\u0632\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":23},{"id":2834,"name":"\u0633\u0627\u0644\u0646\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":23},{"id":2835,"name":"\u0633\u06cc\u0627\u0647 \u0645\u0646\u0635\u0648\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":23},{"id":2836,"name":"\u0634\u0645\u0633 \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":23},{"id":2837,"name":"\u0634\u0647\u0631 \u0627\u0645\u0627\u0645","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":23},{"id":2838,"name":"\u0635\u0641\u06cc \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":23},{"id":2839,"name":"\u0645\u06cc\u0627\u0646\u0631\u0648\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":23},{"id":2840,"name":"\u0627\u0628\u0648\u062d\u0645\u06cc\u0638\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2541},{"id":2841,"name":"\u0628\u0633\u062a\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2541},{"id":2842,"name":"\u06a9\u0648\u062a \u0633\u06cc\u062f\u0646\u0639\u06cc\u0645","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2541},{"id":2843,"name":"\u0645\u0634\u0631\u0627\u06af\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2542},{"id":2844,"name":"\u062e\u0646\u0627\u0641\u0631\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2016},{"id":2845,"name":"\u062f\u0627\u0631\u062e\u0648\u06cc\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2016},{"id":2846,"name":"\u0627\u0644\u0648\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":754},{"id":2847,"name":"\u062d\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":754},{"id":2848,"name":"\u0634\u0627\u0648\u0648\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":754},{"id":2849,"name":"\u0641\u062a\u062d \u0627\u0644\u0645\u0628\u06cc\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":754},{"id":2850,"name":"\u0633\u0631\u062f\u0627\u0631\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":602},{"id":2851,"name":"\u0634\u0631\u0627\u0641\u062a","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":602},{"id":2852,"name":"\u06af\u0648\u0631\u06cc\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":602},{"id":2853,"name":"\u06a9\u0648\u062a \u0639\u0628\u062f\u0627\u0644\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2543},{"id":2854,"name":"\u062a\u0631\u06a9\u0627\u0644\u06a9\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2544},{"id":2855,"name":"\u062c\u0646\u062a \u0645\u06a9\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2544},{"id":2856,"name":"\u0633\u0645\u0627\u0644\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2544},{"id":2857,"name":"\u0635\u0627\u0644\u062d \u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2544},{"id":2858,"name":"\u06af\u0644\u06af\u06cc\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2546},{"id":2859,"name":"\u0632\u0647\u0631\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2548},{"id":2860,"name":"\u0631\u0641\u06cc\u0639","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2549},{"id":2861,"name":"\u0635\u0627\u06cc\u06cc\u0646 \u0642\u0644\u0639\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":802},{"id":2862,"name":"\u0632\u0631\u06cc\u0646 \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2550},{"id":2863,"name":"\u0627\u0631\u0645\u063a\u0627\u0646\u062e\u0627\u0646\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":20},{"id":2864,"name":"\u0645\u0627\u0647 \u0646\u0634\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2030},{"id":2865,"name":"\u06a9\u0647\u0646 \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2034},{"id":2866,"name":"\u06a9\u0644\u0627\u062a\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":805},{"id":2867,"name":"\u0631\u0648\u062f\u06cc\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":707},{"id":2868,"name":"\u0628\u0632\u0645\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":807},{"id":2869,"name":"\u0628\u0645\u067e\u0648\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":807},{"id":2870,"name":"\u0645\u062d\u0645\u062f\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":807},{"id":2871,"name":"\u0646\u06af\u0648\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":747},{"id":2872,"name":"\u0646\u0648\u06a9 \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2553},{"id":2873,"name":"\u06af\u0644\u0645\u0648\u0631\u062a\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2554},{"id":2874,"name":"\u0628\u0646\u062c\u0627\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":706},{"id":2875,"name":"\u0646\u0635\u0631\u062a \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":11},{"id":2876,"name":"\u062c\u0627\u0644\u0642","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2101},{"id":2877,"name":"\u0633\u06cc\u0631\u06a9\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2101},{"id":2878,"name":"\u06af\u0634\u062a","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2101},{"id":2879,"name":"\u0645\u062d\u0645\u062f\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2101},{"id":2880,"name":"\u067e\u06cc\u0634\u06cc\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2556},{"id":2881,"name":"\u0631\u0627\u0633\u06a9","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2556},{"id":2882,"name":"\u0633\u0648\u0631\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2557},{"id":2883,"name":"\u0647\u06cc\u062f\u0648\u0686","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2557},{"id":2884,"name":"\u0627\u062f\u06cc\u0645\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2563},{"id":2885,"name":"\u0634\u0647\u0631\u06a9 \u0639\u0644\u06cc \u0627\u06a9\u0628\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2564},{"id":2886,"name":"\u062f\u0648\u0633\u062a \u0645\u062d\u0645\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2565},{"id":2887,"name":"\u0627\u06cc\u0632\u062f\u062e\u0648\u0627\u0633\u062a","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":851},{"id":2888,"name":"\u0628\u0647\u0645\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":851},{"id":2889,"name":"\u0633\u0648\u0631\u0645\u0642","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":851},{"id":2890,"name":"\u0635\u063a\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":851},{"id":2891,"name":"\u0627\u06cc\u062c","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2157},{"id":2892,"name":"\u0631\u0648\u0646\u06cc\u0632","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2157},{"id":2893,"name":"\u062d\u0633\u0646 \u0627\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1728},{"id":2894,"name":"\u062f\u0698\u06a9\u0631\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1728},{"id":2895,"name":"\u0633\u062f\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1728},{"id":2896,"name":"\u062d\u0633\u0627\u0645\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2158},{"id":2897,"name":"\u06a9\u0631\u0647 \u0627\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2158},{"id":2898,"name":"\u0645\u0632\u0627\u06cc\u062c\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2158},{"id":2899,"name":"\u0633\u0639\u0627\u062f\u062a \u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2566},{"id":2900,"name":"\u0645\u0627\u062f\u0631\u0633\u0644\u06cc\u0645\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2566},{"id":2901,"name":"\u0628\u0627\u0628 \u0627\u0646\u0627\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":808},{"id":2902,"name":"\u062e\u0627\u0648\u0631\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":808},{"id":2903,"name":"\u062f\u0648\u0632\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":808},{"id":2904,"name":"\u0642\u0637\u0628 \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":808},{"id":2905,"name":"\u0633\u0644\u0637\u0627\u0646 \u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2160},{"id":2906,"name":"\u0642\u0627\u062f\u0631\u0627\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2567},{"id":2907,"name":"\u062c\u0646\u062a \u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":809},{"id":2908,"name":"\u062f\u0648\u0628\u0631\u062c\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":809},{"id":2909,"name":"\u0641\u062f\u0627\u0645\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":809},{"id":2910,"name":"\u06a9\u0648\u067e\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2568},{"id":2911,"name":"\u062f\u0628\u06cc\u0631\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2569},{"id":2912,"name":"\u0634\u0647\u0631\u067e\u06cc\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2569},{"id":2913,"name":"\u0628\u06cc\u0636\u0627","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2570},{"id":2914,"name":"\u0647\u0645\u0627\u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2570},{"id":2915,"name":"\u06a9\u0648\u0647\u0646\u062c\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2162},{"id":2916,"name":"\u062e\u0627\u0646\u0647 \u0632\u0646\u06cc\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":6},{"id":2917,"name":"\u062f\u0627\u0631\u06cc\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":6},{"id":2918,"name":"\u0632\u0631\u0642\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":6},{"id":2919,"name":"\u0634\u0647\u0631\u0635\u062f\u0631\u0627","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":6},{"id":2920,"name":"\u0644\u067e\u0648\u06cc\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":6},{"id":2921,"name":"\u062f\u0647\u0631\u0645","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2165},{"id":2922,"name":"\u0646\u0648\u062c\u06cc\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2165},{"id":2923,"name":"\u0632\u0627\u0647\u062f\u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2166},{"id":2924,"name":"\u0634\u0634\u062f\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2166},{"id":2925,"name":"\u0645\u06cc\u0627\u0646\u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2166},{"id":2926,"name":"\u0646\u0648\u0628\u0646\u062f\u06af\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2166},{"id":2927,"name":"\u0645\u06cc\u0645\u0646\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1734},{"id":2928,"name":"\u0627\u0641\u0632\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2571},{"id":2929,"name":"\u0627\u0645\u0627\u0645 \u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2571},{"id":2930,"name":"\u06a9\u0627\u0631\u0632\u06cc\u0646 (\u0641\u062a\u062d \u0622\u0628\u0627\u062f)","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2571},{"id":2931,"name":"\u0645\u0628\u0627\u0631\u06a9 \u0622\u0628\u0627\u062f\u062f\u06cc\u0632","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2571},{"id":2932,"name":"\u0628\u0627\u0644\u0627\u062f\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2168},{"id":2933,"name":"\u062e\u0634\u062a","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2168},{"id":2934,"name":"\u0642\u0627\u06cc\u0645\u06cc\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2168},{"id":2935,"name":"\u06a9\u0646\u0627\u0631\u062a\u062e\u062a\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2168},{"id":2936,"name":"\u0646\u0648\u062f\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2168},{"id":2937,"name":"\u0627\u0648\u0632","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2572},{"id":2938,"name":"\u0628\u0646\u0627\u0631\u0648\u06cc\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2572},{"id":2939,"name":"\u0628\u06cc\u0631\u0645","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2572},{"id":2940,"name":"\u062c\u0648\u06cc\u0645","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2572},{"id":2941,"name":"\u062e\u0648\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2572},{"id":2942,"name":"\u0639\u0645\u0627\u062f\u062f\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2572},{"id":2943,"name":"\u0644\u0637\u06cc\u0641\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2572},{"id":2944,"name":"\u0627\u0634\u06a9\u0646\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1731},{"id":2945,"name":"\u0627\u0647\u0644","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1731},{"id":2946,"name":"\u0639\u0644\u0627\u0645\u0631\u0648\u062f\u0634\u062a","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1731},{"id":2947,"name":"\u062e\u0627\u0646\u06cc\u0645\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2171},{"id":2948,"name":"\u0631\u0627\u0645\u062c\u0631\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2171},{"id":2949,"name":"\u0633\u06cc\u062f\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2171},{"id":2950,"name":"\u06a9\u0627\u0645\u0641\u06cc\u0631\u0648\u0632","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2171},{"id":2951,"name":"\u0628\u0627\u0628\u0627\u0645\u0646\u06cc\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2573},{"id":2952,"name":"\u062e\u0648\u0645\u0647 \u0632\u0627\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2573},{"id":2953,"name":"\u0627\u0633\u06cc\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2173},{"id":2954,"name":"\u062e\u0648\u0632\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2173},{"id":2955,"name":"\u06af\u0644\u0647 \u062f\u0627\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2173},{"id":2956,"name":"\u0648\u0631\u0627\u0648\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2173},{"id":2957,"name":"\u0622\u0628\u0627\u062f\u0647 \u0637\u0634\u06a9","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2574},{"id":2958,"name":"\u0642\u0637\u0631\u0648\u06cc\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2574},{"id":2959,"name":"\u0645\u0634\u06a9\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2574},{"id":2960,"name":"\u0634\u0631\u06cc\u0641\u06cc\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":895},{"id":2961,"name":"\u0636\u06cc\u0627\u0688\u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":811},{"id":2962,"name":"\u0645\u062d\u0645\u0648\u062f\u0622\u0628\u0627\u062f\u0646\u0645\u0648\u0646\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":19},{"id":2963,"name":"\u0628\u0627\u0628\u0627\u0631\u0634\u0627\u0646\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":868},{"id":2964,"name":"\u067e\u06cc\u0631\u062a\u0627\u062c","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":868},{"id":2965,"name":"\u062a\u0648\u067e \u0622\u063a\u0627\u062c","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":868},{"id":2966,"name":"\u0628\u0644\u0628\u0627\u0646 \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2205},{"id":2967,"name":"\u0627\u0648\u0631\u0627\u0645\u0627\u0646 \u062a\u062e\u062a","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2208},{"id":2968,"name":"\u0628\u0631\u062f\u0647 \u0631\u0634\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":814},{"id":2969,"name":"\u0686\u0646\u0627\u0631\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":814},{"id":2970,"name":"\u0627\u0645\u06cc\u0646 \u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2217},{"id":2971,"name":"\u0628\u0632\u0646\u062c\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2218},{"id":2972,"name":"\u062f\u0634\u062a\u06a9\u0627\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2219},{"id":2973,"name":"\u06af\u0644\u0632\u0627\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2219},{"id":2974,"name":"\u0644\u0627\u0644\u0647 \u0632\u0627\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2219},{"id":2975,"name":"\u0646\u06af\u0627\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2219},{"id":2976,"name":"\u0628\u0644\u0648\u06a9","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":816},{"id":2977,"name":"\u062c\u0628\u0627\u0644\u0628\u0627\u0631\u0632","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":816},{"id":2978,"name":"\u062f\u0631\u0628 \u0628\u0647\u0634\u062a","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":816},{"id":2979,"name":"\u0647\u0646\u0632\u0627","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2221},{"id":2980,"name":"\u0647\u062c\u062f\u06a9","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2222},{"id":2981,"name":"\u0628\u0647\u0631\u0645\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":817},{"id":2982,"name":"\u0635\u0641\u0627\u06cc\u06cc\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":817},{"id":2983,"name":"\u06a9\u0634\u06a9\u0648\u06cc\u06cc\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":817},{"id":2984,"name":"\u0645\u0633 \u0633\u0631\u0686\u0634\u0645\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":817},{"id":2985,"name":"\u0632\u0647\u06a9\u0644\u0648\u062a","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2576},{"id":2986,"name":"\u06af\u0646\u0628\u06a9\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2577},{"id":2987,"name":"\u062e\u0627\u0646\u0648\u06a9","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":867},{"id":2988,"name":"\u0631\u06cc\u062d\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":867},{"id":2989,"name":"\u06cc\u0632\u062f\u0627\u0646 \u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":867},{"id":2990,"name":"\u0628\u0644\u0648\u0631\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":818},{"id":2991,"name":"\u067e\u0627\u0631\u06cc\u0632","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":818},{"id":2992,"name":"\u062e\u0648\u0627\u062c\u0648 \u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":818},{"id":2993,"name":"\u0632\u06cc\u062f\u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":818},{"id":2994,"name":"\u0647\u0645\u0627\u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":818},{"id":2995,"name":"\u062c\u0648\u0632\u0645","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2578},{"id":2996,"name":"\u062e\u0627\u062a\u0648\u0646 \u0627\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2578},{"id":2997,"name":"\u062e\u0648\u0631\u0633\u0646\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2578},{"id":2998,"name":"\u062f\u0647\u062c","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2578},{"id":2999,"name":"\u062f\u0648\u0633\u0627\u0631\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2226},{"id":3000,"name":"\u0645\u0631\u062f\u0647\u06a9","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2226},{"id":3001,"name":"\u0627\u062e\u062a\u06cc\u0627\u0631\u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":3002,"name":"\u0627\u0646\u062f\u0648\u0647\u062c\u0631\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":3003,"name":"\u0628\u0627\u063a\u06cc\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":3004,"name":"\u062c\u0648\u067e\u0627\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":3005,"name":"\u0686\u062a\u0631\u0648\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":3006,"name":"\u0632\u0646\u06af\u06cc \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":3007,"name":"\u0634\u0647\u062f\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":3008,"name":"\u06a9\u0627\u0638\u0645 \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":3009,"name":"\u0645\u062d\u06cc \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":13},{"id":3010,"name":"\u06a9\u06cc\u0627\u0646\u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2230},{"id":3011,"name":"\u0646\u0648\u062f\u0698","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2234},{"id":3012,"name":"\u0646\u0638\u0627\u0645 \u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2580},{"id":3013,"name":"\u0628\u0627\u0646\u0648\u0631\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2246},{"id":3014,"name":"\u0627\u0632\u06af\u0644\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2582},{"id":3015,"name":"\u0631\u06cc\u062c\u0627\u0628","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2583},{"id":3016,"name":"\u06a9\u0631\u0646\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2583},{"id":3017,"name":"\u0634\u0627\u0647\u0648","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2261},{"id":3018,"name":"\u0631\u0628\u0627\u0637","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":3019,"name":"\u0647\u0644\u0634\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":9},{"id":3020,"name":"\u06af\u0648\u062f\u06cc\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":821},{"id":3021,"name":"\u0633\u0631\u0645\u0633\u062a","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2288},{"id":3022,"name":"\u0645\u0627\u062f\u0648\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2585},{"id":3023,"name":"\u0642\u0644\u0639\u0647 \u0631\u06cc\u06cc\u0633\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2588},{"id":3024,"name":"\u0646\u06af\u06cc\u0646 \u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1691},{"id":3025,"name":"\u0627\u0646\u0628\u0627\u0631\u0622\u0644\u0648\u0645","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":748},{"id":3026,"name":"\u0628\u0646\u062f\u0631\u062a\u0631\u06a9\u0645\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2590},{"id":3027,"name":"\u062a\u0627\u062a\u0627\u0631\u0639\u0644\u06cc\u0627","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2333},{"id":3028,"name":"\u0633\u0646\u06af\u062f\u0648\u06cc\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2273},{"id":3029,"name":"\u0639\u0644\u06cc \u0627\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2273},{"id":3030,"name":"\u0645\u0632\u0631\u0639\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2273},{"id":3031,"name":"\u0641\u0631\u0627\u063a\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1692},{"id":3032,"name":"\u062c\u0644\u06cc\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":21},{"id":3033,"name":"\u0633\u0631\u062e\u0646\u06a9\u0644\u0627\u062a\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":21},{"id":3034,"name":"\u0633\u06cc\u0645\u06cc\u0646 \u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":749},{"id":3035,"name":"\u06af\u0645\u06cc\u0634 \u062a\u067e\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":749},{"id":3036,"name":"\u0645\u0631\u0627\u0648\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2356},{"id":3037,"name":"\u0644\u0648\u0646\u062f\u0648\u06cc\u0644","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":824},{"id":3038,"name":"\u0631\u0627\u0646\u06a9\u0648\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1688},{"id":3039,"name":"\u062e\u0645\u0627\u0645","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":12},{"id":3040,"name":"\u0633\u0646\u06af\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":12},{"id":3041,"name":"\u06a9\u0648\u0686\u0635\u0641\u0647\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":12},{"id":3042,"name":"\u0644\u0634\u062a \u0646\u0634\u0627\u0621","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":12},{"id":3043,"name":"\u0644\u0648\u0644\u0645\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":12},{"id":3044,"name":"\u067e\u0631\u0647 \u0633\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":1684},{"id":3045,"name":"\u0628\u0631\u0647 \u0633\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2224},{"id":3046,"name":"\u062a\u0648\u062a\u06a9\u0627\u0628\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2224},{"id":3047,"name":"\u062c\u06cc\u0631\u0646\u062f\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2224},{"id":3048,"name":"\u0631\u0633\u062a\u0645 \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2224},{"id":3049,"name":"\u0644\u0648\u0634\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2224},{"id":3050,"name":"\u0645\u0646\u062c\u06cc\u0644","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2224},{"id":3051,"name":"\u0631\u062d\u06cc\u0645 \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":826},{"id":3052,"name":"\u0648\u0627\u062c\u0627\u0631\u06af\u0627\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":826},{"id":3053,"name":"\u062f\u06cc\u0644\u0645\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":861},{"id":3054,"name":"\u0627\u062d\u0645\u062f\u0633\u0631\u06af\u0648\u0631\u0627\u0628","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2366},{"id":3055,"name":"\u06af\u0648\u0631\u0627\u0628 \u0632\u0631\u0645\u06cc\u062e","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2367},{"id":3056,"name":"\u0645\u0631\u062c\u0642\u0644","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2367},{"id":3057,"name":"\u0627\u0633\u0627\u0644\u0645","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2591},{"id":3058,"name":"\u0686\u0648\u0628\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2591},{"id":3059,"name":"\u062d\u0648\u06cc\u0642","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2591},{"id":3060,"name":"\u0644\u06cc\u0633\u0627\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2591},{"id":3061,"name":"\u0647\u0634\u062a\u067e\u0631 (\u062a\u0627\u0644\u0634)","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2591},{"id":3062,"name":"\u0645\u0627\u0633\u0648\u0644\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":860},{"id":3063,"name":"\u0645\u0627\u06a9\u0644\u0648\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":860},{"id":3064,"name":"\u0631\u0648\u062f\u0628\u0646\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":746},{"id":3065,"name":"\u0627\u0637\u0627\u0642\u0648\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":828},{"id":3066,"name":"\u0634\u0644\u0645\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":828},{"id":3067,"name":"\u06a9\u0648\u0645\u0644\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":828},{"id":3068,"name":"\u0628\u0627\u0632\u0627\u0631 \u062c\u0645\u0639\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":862},{"id":3069,"name":"\u0645\u0648\u0645\u0646 \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":870},{"id":3070,"name":"\u0628\u06cc\u0631\u0627\u0646 \u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2592},{"id":3071,"name":"\u0633\u0631\u0627\u0628 \u062f\u0648\u0631\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2594},{"id":3072,"name":"\u06a9\u0648\u0647\u0646\u0627\u0646\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":831},{"id":3073,"name":"\u0627\u0645\u0627\u0645\u0632\u0627\u062f\u0647 \u0639\u0628\u062f\u0627\u0644\u0644\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":663},{"id":3074,"name":"\u062f\u0627\u0628\u0648\u062f\u0634\u062a","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":663},{"id":3075,"name":"\u0631\u06cc\u0646\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":663},{"id":3076,"name":"\u06af\u0632\u0646\u06a9","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":663},{"id":3077,"name":"\u062e\u0648\u0634 \u0631\u0648\u062f\u067e\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":664},{"id":3078,"name":"\u0632\u0631\u06af\u0631\u0645\u062d\u0644\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":664},{"id":3079,"name":"\u06af\u062a\u0627\u0628","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":664},{"id":3080,"name":"\u0645\u0631\u0632\u06cc\u06a9\u0644\u0627","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":664},{"id":3081,"name":"\u0628\u0647\u0646\u0645\u06cc\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":710},{"id":3082,"name":"\u0647\u0627\u062f\u06cc \u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":710},{"id":3083,"name":"\u062e\u0644\u06cc\u0644 \u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":832},{"id":3084,"name":"\u0631\u0633\u062a\u0645\u06a9\u0644\u0627","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":832},{"id":3085,"name":"\u0634\u06cc\u0631\u0648\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":833},{"id":3086,"name":"\u0646\u0634\u062a\u0627\u0631\u0648\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":833},{"id":3087,"name":"\u06a9\u0648\u0647\u06cc \u062e\u06cc\u0644","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":834},{"id":3088,"name":"\u0645\u0631\u0632\u0646 \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":835},{"id":3089,"name":"\u0647\u0686\u06cc\u0631\u0648\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":835},{"id":3090,"name":"\u06a9\u062a\u0627\u0644\u0645 \u0648\u0633\u0627\u062f\u0627\u062a \u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":745},{"id":3091,"name":"\u067e\u0627\u06cc\u06cc\u0646 \u0647\u0648\u0644\u0627\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":22},{"id":3092,"name":"\u0641\u0631\u06cc\u0645","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":22},{"id":3093,"name":"\u06a9\u06cc\u0627\u0633\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":22},{"id":3094,"name":"\u0622\u0644\u0627\u0634\u062a","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2386},{"id":3095,"name":"\u0632\u06cc\u0631\u0622\u0628","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2386},{"id":3096,"name":"\u0634\u06cc\u0631\u06af\u0627\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2597},{"id":3097,"name":"\u06a9\u06cc\u0627\u06a9\u0644\u0627","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2598},{"id":3098,"name":"\u0633\u0644\u0645\u0627\u0646 \u0634\u0647\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2599},{"id":3099,"name":"\u0639\u0628\u0627\u0633 \u0627\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2599},{"id":3100,"name":"\u0627\u0631\u0637\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2600},{"id":3101,"name":"\u0633\u0648\u0631\u06a9","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2388},{"id":3102,"name":"\u0628\u0644\u062f\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":744},{"id":3103,"name":"\u067e\u0648\u0644","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":709},{"id":3104,"name":"\u06a9\u062c\u0648\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":709},{"id":3105,"name":"\u0645\u0627\u0645\u0648\u0646\u06cc\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2601},{"id":3106,"name":"\u0622\u0648\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":671},{"id":3107,"name":"\u0646\u06cc\u0645\u0648\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":840},{"id":3108,"name":"\u06af\u0648\u0647\u0631\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2603},{"id":3109,"name":"\u062a\u0627\u0632\u06cc\u0627\u0646 \u067e\u0627\u06cc\u06cc\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":18},{"id":3110,"name":"\u062a\u062e\u062a","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":18},{"id":3111,"name":"\u0642\u0644\u0639\u0647 \u0642\u0627\u0636\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":18},{"id":3112,"name":"\u0686\u0627\u0631\u06a9","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2604},{"id":3113,"name":"\u0644\u0645\u0632\u0627\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2604},{"id":3114,"name":"\u06a9\u0648\u0634\u06a9\u0646\u0627\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2605},{"id":3115,"name":"\u0628\u0646\u062f\u0631\u062c\u0627\u0633\u06a9","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2425},{"id":3116,"name":"\u0633\u0631\u06af\u0632","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2606},{"id":3117,"name":"\u0628\u06cc\u06a9\u0627\u0621","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2608},{"id":3118,"name":"\u06a9\u0648\u0647\u0633\u062a\u06a9","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2433},{"id":3119,"name":"\u06af\u0631\u0648\u06a9","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2433},{"id":3120,"name":"\u062a\u06cc\u0631\u0648\u0631","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":841},{"id":3121,"name":"\u0633\u0646\u062f\u0631\u06a9","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":841},{"id":3122,"name":"\u0647\u0634\u062a\u0628\u0646\u062f\u06cc","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":841},{"id":3123,"name":"\u0622\u062c\u06cc\u0646","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":842},{"id":3124,"name":"\u0635\u0627\u0644\u062d \u0622\u0628\u0627\u062f","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2441},{"id":3125,"name":"\u0634\u06cc\u0631\u06cc\u0646 \u0633\u0648","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2456},{"id":3126,"name":"\u06af\u0644 \u062a\u067e\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":2456},{"id":3127,"name":"\u0628\u0641\u0631\u0648\u06cc\u06cc\u0647","name_en":"","latitude":null,"longitude":null,"view":0,"parent_id":845}] \ No newline at end of file diff --git a/sdistinc.json b/sdistinc.json new file mode 100644 index 0000000..9162839 --- /dev/null +++ b/sdistinc.json @@ -0,0 +1 @@ +[{"id":40,"name":"\u0622\u062c\u0648\u062f\u0627\u0646\u06cc\u0647","name_en":"ajoodanieh","radius":1200,"latitude":35.806793,"longitude":51.48422,"parent_id":null,"city_id":1},{"id":42,"name":"\u0646\u06cc\u0627\u0648\u0631\u0627\u0646","name_en":"niavaran","radius":600,"latitude":35.817665,"longitude":51.469242,"parent_id":null,"city_id":1},{"id":43,"name":"\u06a9\u0627\u0634\u0627\u0646\u06a9","name_en":"kashanak","radius":700,"latitude":35.81564,"longitude":51.479343,"parent_id":null,"city_id":1},{"id":44,"name":"\u062c\u0645\u0627\u0631\u0627\u0646","name_en":"jamaran","radius":700,"latitude":35.81823,"longitude":51.45895,"parent_id":null,"city_id":1},{"id":45,"name":"\u0627\u0645\u0627\u0645\u0632\u0627\u062f\u0647 \u0642\u0627\u0633\u0645","name_en":"emamzade-ghasem","radius":500,"latitude":35.812515,"longitude":51.440018,"parent_id":null,"city_id":1},{"id":46,"name":"\u06af\u0644\u0627\u0628 \u062f\u0631\u0647","name_en":"golab-dareh","radius":300,"latitude":35.819225,"longitude":51.439796,"parent_id":null,"city_id":1},{"id":47,"name":"\u062f\u0627\u0631\u0622\u0628\u0627\u062f","name_en":"darabad","radius":600,"latitude":35.81159,"longitude":51.49072,"parent_id":null,"city_id":1},{"id":48,"name":"\u0627\u0642\u062f\u0633\u06cc\u0647","name_en":"aghdasieh","radius":600,"latitude":35.804657,"longitude":51.476944,"parent_id":null,"city_id":1},{"id":49,"name":"\u0634\u0647\u0631\u06a9 \u0646\u0641\u062a (\u0645\u0646\u0637\u0642\u0647 \u06f1)","name_en":"shahrak-naft","radius":300,"latitude":35.809345,"longitude":51.505573,"parent_id":null,"city_id":1},{"id":50,"name":"\u0634\u0647\u0631\u06a9 \u06af\u0644\u0647\u0627","name_en":"shahrak-golha","radius":300,"latitude":35.803802,"longitude":51.497787,"parent_id":null,"city_id":1},{"id":51,"name":"\u0634\u0647\u0631\u06a9 \u0645\u062d\u0644\u0627\u062a\u06cc","name_en":"shahrak-e-mahalati","radius":600,"latitude":35.80488,"longitude":51.519085,"parent_id":null,"city_id":1},{"id":52,"name":"\u0633\u0648\u0647\u0627\u0646\u06a9","name_en":"sohanak","radius":1000,"latitude":35.800293,"longitude":51.53019,"parent_id":null,"city_id":1},{"id":53,"name":"\u0627\u0632\u06af\u0644","name_en":"ozgol","radius":700,"latitude":35.789467,"longitude":51.511147,"parent_id":null,"city_id":1},{"id":54,"name":"\u062f\u0631\u0628\u0646\u062f","name_en":"darband","radius":600,"latitude":35.81608,"longitude":51.427116,"parent_id":null,"city_id":1},{"id":55,"name":"\u0648\u0644\u0646\u062c\u06a9","name_en":"velenjak","radius":700,"latitude":35.805008,"longitude":51.40098,"parent_id":null,"city_id":1},{"id":56,"name":"\u0632\u0639\u0641\u0631\u0627\u0646\u06cc\u0647","name_en":"zafaraniyeh","radius":500,"latitude":35.809017,"longitude":51.414654,"parent_id":null,"city_id":1},{"id":57,"name":"\u0627\u0648\u06cc\u0646","name_en":"evin","radius":400,"latitude":35.798706,"longitude":51.39322,"parent_id":null,"city_id":1},{"id":58,"name":"\u062f\u0631\u06a9\u0647","name_en":"darakeh","radius":800,"latitude":35.806396,"longitude":51.38392,"parent_id":null,"city_id":1},{"id":59,"name":"\u0641\u0631\u062d\u0632\u0627\u062f","name_en":"farahzad","radius":600,"latitude":35.789047,"longitude":51.34448,"parent_id":null,"city_id":1},{"id":60,"name":"\u0645\u062d\u0645\u0648\u062f\u06cc\u0647","name_en":"mahmoodiyeh","radius":400,"latitude":35.795753,"longitude":51.412777,"parent_id":null,"city_id":1},{"id":61,"name":"\u062a\u062c\u0631\u06cc\u0634","name_en":"tajrish","radius":600,"latitude":35.802185,"longitude":51.431004,"parent_id":null,"city_id":1},{"id":62,"name":"\u06a9\u0627\u0645\u0631\u0627\u0646\u06cc\u0647","name_en":"kamraniyeh","radius":300,"latitude":35.806644,"longitude":51.46268,"parent_id":null,"city_id":1},{"id":63,"name":"\u0686\u06cc\u0630\u0631","name_en":"chizar","radius":500,"latitude":35.798313,"longitude":51.455593,"parent_id":null,"city_id":1},{"id":64,"name":"\u0641\u0631\u0645\u0627\u0646\u06cc\u0647","name_en":"farmaniyeh","radius":600,"latitude":35.79588,"longitude":51.471874,"parent_id":null,"city_id":1},{"id":65,"name":"\u0642\u06cc\u0637\u0631\u06cc\u0647","name_en":"qeytariyeh","radius":700,"latitude":35.790344,"longitude":51.44359,"parent_id":null,"city_id":1},{"id":66,"name":"\u062f\u0632\u0627\u0634\u06cc\u0628","name_en":"dezashib","radius":500,"latitude":35.808712,"longitude":51.4531,"parent_id":null,"city_id":1},{"id":67,"name":"\u067e\u0627\u0633\u062f\u0627\u0631\u0627\u0646","name_en":"pasdaran","radius":750,"latitude":35.772717,"longitude":51.468,"parent_id":null,"city_id":1},{"id":68,"name":"\u0627\u062e\u062a\u06cc\u0627\u0631\u06cc\u0647","name_en":"ekhtiyariyeh","radius":500,"latitude":35.786255,"longitude":51.460365,"parent_id":null,"city_id":1},{"id":70,"name":"\u0642\u0644\u0647\u06a9","name_en":"gholhak","radius":600,"latitude":35.773624,"longitude":51.444397,"parent_id":null,"city_id":1},{"id":71,"name":"\u062f\u0631\u0648\u0633","name_en":"darrous","radius":500,"latitude":35.773624,"longitude":51.456184,"parent_id":null,"city_id":1},{"id":72,"name":"\u0638\u0641\u0631","name_en":"zafar","radius":500,"latitude":35.76571,"longitude":51.4332,"parent_id":null,"city_id":1},{"id":74,"name":"\u0645\u06cc\u0631\u062f\u0627\u0645\u0627\u062f","name_en":"mirdamad","radius":600,"latitude":35.755424,"longitude":51.431835,"parent_id":null,"city_id":1},{"id":75,"name":"\u0633\u0639\u0627\u062f\u062a\u200c\u0622\u0628\u0627\u062f","name_en":"saadat-abad","radius":1100,"latitude":35.783485,"longitude":51.378185,"parent_id":null,"city_id":1},{"id":78,"name":"\u0634\u0647\u0631\u06a9 \u063a\u0631\u0628","name_en":"shahrak-e-gharb","radius":1200,"latitude":35.75944,"longitude":51.37492,"parent_id":null,"city_id":1},{"id":81,"name":"\u062f\u0647\u200c\u0648\u0646\u06a9","name_en":"vanak-village","radius":500,"latitude":35.768135,"longitude":51.39199,"parent_id":null,"city_id":1},{"id":82,"name":"\u067e\u0648\u0646\u06a9","name_en":"poonak","radius":1100,"latitude":35.762077,"longitude":51.331444,"parent_id":null,"city_id":1},{"id":84,"name":"\u0632\u0631\u06af\u0646\u062f\u0647","name_en":"zargandeh","radius":400,"latitude":35.776695,"longitude":51.432632,"parent_id":null,"city_id":1},{"id":85,"name":"\u0627\u0644\u0647\u06cc\u0647","name_en":"elahiyeh","radius":600,"latitude":35.790916,"longitude":51.426933,"parent_id":null,"city_id":1},{"id":86,"name":"\u062c\u0631\u062f\u0646","name_en":"jordan","radius":400,"latitude":35.765583,"longitude":51.412327,"parent_id":null,"city_id":1},{"id":87,"name":"\u0622\u0631\u0627\u0631\u0627\u062a","name_en":"ararat","radius":350,"latitude":35.78125,"longitude":51.40314,"parent_id":null,"city_id":1},{"id":88,"name":"\u06af\u06cc\u0634\u0627 (\u06a9\u0648\u06cc \u0646\u0635\u0631)","name_en":"gisha","radius":700,"latitude":35.738556,"longitude":51.37743,"parent_id":null,"city_id":1},{"id":90,"name":"\u06cc\u0648\u0633\u0641\u200c\u0622\u0628\u0627\u062f","name_en":"yousef-abad","radius":1000,"latitude":35.73621,"longitude":51.40563,"parent_id":null,"city_id":1},{"id":91,"name":"\u0627\u0645\u06cc\u0631\u0622\u0628\u0627\u062f","name_en":"amir-abad","radius":700,"latitude":35.735477,"longitude":51.390358,"parent_id":null,"city_id":1},{"id":92,"name":"\u0628\u0647\u0627\u0631\u0633\u062a\u0627\u0646","name_en":"baharestan","radius":700,"latitude":35.69453,"longitude":51.429886,"parent_id":null,"city_id":1},{"id":93,"name":"\u0628\u0627\u0632\u0627\u0631","name_en":"bazaar","radius":1000,"latitude":35.672733,"longitude":51.422565,"parent_id":null,"city_id":1},{"id":94,"name":"\u062c\u0645\u0647\u0648\u0631\u06cc","name_en":"jomhouri","radius":1200,"latitude":35.697258,"longitude":51.381992,"parent_id":null,"city_id":1},{"id":95,"name":"\u0633\u06cc\u062f\u062e\u0646\u062f\u0627\u0646","name_en":"seyed-khandan","radius":500,"latitude":35.748585,"longitude":51.456993,"parent_id":null,"city_id":1},{"id":96,"name":"\u06af\u0627\u0646\u062f\u06cc","name_en":"gandi","radius":700,"latitude":35.749237,"longitude":51.416668,"parent_id":null,"city_id":1},{"id":99,"name":"\u062d\u0633\u0646\u200c\u0622\u0628\u0627\u062f","name_en":"hassan-abad","radius":400,"latitude":35.68538,"longitude":51.408707,"parent_id":null,"city_id":1},{"id":103,"name":"\u0634\u06cc\u0627\u0646","name_en":"shian","radius":400,"latitude":35.76552,"longitude":51.50049,"parent_id":null,"city_id":1},{"id":104,"name":"\u0644\u0648\u06cc\u0632\u0627\u0646","name_en":"lavizan","radius":1000,"latitude":35.77224,"longitude":51.51327,"parent_id":null,"city_id":1},{"id":105,"name":"\u0642\u0646\u0627\u062a\u200c\u06a9\u0648\u062b\u0631","name_en":"ghanat-kosar","radius":1000,"latitude":35.75571,"longitude":51.5296,"parent_id":null,"city_id":1},{"id":106,"name":"\u0634\u0645\u06cc\u0631\u0627\u0646\u200c\u0646\u0648","name_en":"shemiran-no","radius":400,"latitude":35.750946,"longitude":51.49504,"parent_id":null,"city_id":1},{"id":108,"name":"\u062a\u0647\u0631\u0627\u0646\u067e\u0627\u0631\u0633 \u063a\u0631\u0628\u06cc","name_en":"west-tehranpars","radius":600,"latitude":35.735928,"longitude":51.527725,"parent_id":null,"city_id":1},{"id":109,"name":"\u062a\u0647\u0631\u0627\u0646\u067e\u0627\u0631\u0633 \u0634\u0631\u0642\u06cc","name_en":"east-tehranpars","radius":600,"latitude":35.74096,"longitude":51.547,"parent_id":null,"city_id":1},{"id":110,"name":"\u0645\u062c\u06cc\u062f\u0622\u0628\u0627\u062f","name_en":"majid-abad","radius":800,"latitude":35.761524,"longitude":51.544888,"parent_id":null,"city_id":1},{"id":112,"name":"\u0627\u0633\u062a\u062e\u0631","name_en":"estakhr","radius":700,"latitude":35.755745,"longitude":51.56302,"parent_id":null,"city_id":1},{"id":113,"name":"\u0634\u0647\u0631\u06a9 \u0627\u0645\u06cc\u062f","name_en":"shahrak-e-omid","radius":500,"latitude":35.7664,"longitude":51.53567,"parent_id":null,"city_id":1},{"id":115,"name":"\u0627\u0648\u0642\u0627\u0641","name_en":"oghaf","radius":600,"latitude":35.749607,"longitude":51.51452,"parent_id":null,"city_id":1},{"id":116,"name":"\u062f\u0627\u0646\u0634\u06af\u0627\u0647 \u0639\u0644\u0645 \u0648 \u0635\u0646\u0639\u062a","name_en":"elm-o-sanat","radius":600,"latitude":35.741646,"longitude":51.50963,"parent_id":null,"city_id":1},{"id":117,"name":"\u0645\u062f\u0627\u0626\u0646","name_en":"sarsabz","radius":400,"latitude":35.72764,"longitude":51.49703,"parent_id":null,"city_id":1},{"id":118,"name":"\u062f\u0631\u062f\u0634\u062a","name_en":"dardasht","radius":600,"latitude":35.72881,"longitude":51.506668,"parent_id":null,"city_id":1},{"id":119,"name":"\u0647\u0641\u062a \u062d\u0648\u0636","name_en":"haft-hoz","radius":600,"latitude":35.728413,"longitude":51.489872,"parent_id":null,"city_id":1},{"id":120,"name":"\u0641\u062f\u06a9","name_en":"fadak","radius":500,"latitude":35.72777,"longitude":51.481144,"parent_id":null,"city_id":1},{"id":121,"name":"\u062d\u06a9\u06cc\u0645\u06cc\u0647","name_en":"hakimiyeh","radius":3000,"latitude":35.73933,"longitude":51.587807,"parent_id":null,"city_id":1},{"id":122,"name":"\u0632\u06cc\u0646\u0628\u06cc\u0647","name_en":"zeynabeiyeh","radius":500,"latitude":35.707653,"longitude":51.507774,"parent_id":null,"city_id":1},{"id":123,"name":"\u062a\u0647\u0631\u0627\u0646\u200c\u0646\u0648","name_en":"tehran-no","radius":1200,"latitude":35.710094,"longitude":51.496353,"parent_id":null,"city_id":1},{"id":125,"name":"\u0634\u0645\u0633\u200c\u0622\u0628\u0627\u062f","name_en":"shams-abad","radius":700,"latitude":35.748993,"longitude":51.478504,"parent_id":null,"city_id":1},{"id":126,"name":"\u0645\u062c\u06cc\u062f\u06cc\u0647","name_en":"majidiyeh","radius":800,"latitude":35.735565,"longitude":51.466454,"parent_id":null,"city_id":1},{"id":127,"name":"\u062f\u0628\u0633\u062a\u0627\u0646","name_en":"dabestan","radius":700,"latitude":35.73596,"longitude":51.45444,"parent_id":null,"city_id":1},{"id":128,"name":"\u06a9\u0627\u0638\u0645\u200c\u0622\u0628\u0627\u062f","name_en":"kazem-abad","radius":700,"latitude":35.750256,"longitude":51.469078,"parent_id":null,"city_id":1},{"id":130,"name":"\u062d\u0634\u0645\u062a\u06cc\u0647","name_en":"heshamatiyeh","radius":700,"latitude":35.72613,"longitude":51.449997,"parent_id":null,"city_id":1},{"id":131,"name":"\u0627\u0631\u0627\u0645\u0646\u0647","name_en":"aramaneh","radius":600,"latitude":35.720154,"longitude":51.457672,"parent_id":null,"city_id":1},{"id":132,"name":"\u0646\u0638\u0627\u0645\u200c\u0622\u0628\u0627\u062f","name_en":"nezam-abad","radius":1000,"latitude":35.707832,"longitude":51.455956,"parent_id":null,"city_id":1},{"id":133,"name":"\u0648\u062d\u06cc\u062f\u06cc\u0647","name_en":"vahidiyeh","radius":800,"latitude":35.71442,"longitude":51.47088,"parent_id":null,"city_id":1},{"id":134,"name":"\u0646\u06cc\u0631\u0648 \u0647\u0648\u0627\u06cc\u06cc","name_en":"niroo-havayi","radius":2000,"latitude":35.700806,"longitude":51.474377,"parent_id":null,"city_id":1},{"id":138,"name":"\u0634\u0647\u0631\u06a9 \u0698\u0627\u0646\u062f\u0627\u0631\u0645\u0631\u06cc","name_en":"shahrak-e-jandarmeri","radius":800,"latitude":35.739113,"longitude":51.358753,"parent_id":null,"city_id":1},{"id":139,"name":"\u0645\u0631\u0632\u062f\u0627\u0631\u0627\u0646","name_en":"marzdaran","radius":900,"latitude":35.739033,"longitude":51.34062,"parent_id":null,"city_id":1},{"id":140,"name":"\u0634\u0647\u0631\u06a9 \u06a9\u0648\u0647\u0633\u0627\u0631","name_en":"shahrak-e-koohsar","radius":700,"latitude":35.781746,"longitude":51.33294,"parent_id":null,"city_id":1},{"id":141,"name":"\u0645\u0631\u0627\u062f\u0622\u0628\u0627\u062f","name_en":"morad-abad","radius":800,"latitude":35.78469,"longitude":51.32637,"parent_id":null,"city_id":1},{"id":143,"name":"\u0627\u0644\u0645\u0647\u062f\u06cc","name_en":"almahdi","radius":900,"latitude":35.774055,"longitude":51.328354,"parent_id":null,"city_id":1},{"id":145,"name":"\u062c\u0646\u062a\u200c\u0622\u0628\u0627\u062f \u0634\u0645\u0627\u0644\u06cc","name_en":"north-janat-abad","radius":900,"latitude":35.77209,"longitude":51.30841,"parent_id":null,"city_id":1},{"id":146,"name":"\u062c\u0646\u062a\u200c\u0622\u0628\u0627\u062f \u0645\u0631\u06a9\u0632\u06cc","name_en":"central-janat-abad","radius":900,"latitude":35.75906,"longitude":51.303818,"parent_id":null,"city_id":1},{"id":147,"name":"\u0634\u0627\u0647\u06cc\u0646","name_en":"shahin","radius":1000,"latitude":35.761795,"longitude":51.31473,"parent_id":null,"city_id":1},{"id":148,"name":"\u062c\u0646\u062a\u200c\u0622\u0628\u0627\u062f \u062c\u0646\u0648\u0628\u06cc","name_en":"south-janat-abad","radius":700,"latitude":35.745792,"longitude":51.305984,"parent_id":null,"city_id":1},{"id":151,"name":"\u0634\u0647\u0631\u0627\u0646 \u0634\u0645\u0627\u0644\u06cc","name_en":"north-shahran","radius":1200,"latitude":35.77473,"longitude":51.285713,"parent_id":null,"city_id":1},{"id":152,"name":"\u0634\u0647\u0631\u0627\u0646 \u062c\u0646\u0648\u0628\u06cc","name_en":"south-shahran","radius":700,"latitude":35.758667,"longitude":51.290768,"parent_id":null,"city_id":1},{"id":153,"name":"\u06a9\u0646","name_en":"kan","radius":700,"latitude":35.758373,"longitude":51.278584,"parent_id":null,"city_id":1},{"id":154,"name":"\u0628\u0647\u0627\u0631\u0627\u0646","name_en":"baharan","radius":900,"latitude":35.768887,"longitude":51.271564,"parent_id":null,"city_id":1},{"id":155,"name":"\u0634\u0647\u0631 \u0632\u06cc\u0628\u0627","name_en":"shahr-e-ziba","radius":700,"latitude":35.748688,"longitude":51.291924,"parent_id":null,"city_id":1},{"id":156,"name":"\u0627\u0646\u062f\u06cc\u0634\u0647","name_en":"andisheh","radius":900,"latitude":35.747078,"longitude":51.277683,"parent_id":null,"city_id":1},{"id":157,"name":"\u0633\u0627\u0632\u0645\u0627\u0646 \u0622\u0628","name_en":"sazman-ab","radius":700,"latitude":35.73956,"longitude":51.289955,"parent_id":null,"city_id":1},{"id":158,"name":"\u0633\u0627\u0632\u0645\u0627\u0646 \u0628\u0631\u0646\u0627\u0645\u0647","name_en":"sazamn-barnameh","radius":1200,"latitude":35.731377,"longitude":51.300472,"parent_id":null,"city_id":1},{"id":159,"name":"\u0634\u0647\u0631\u06a9 \u067e\u0631\u0648\u0627\u0632","name_en":"shahrak-e-parvaz","radius":700,"latitude":35.724777,"longitude":51.30628,"parent_id":null,"city_id":1},{"id":160,"name":"\u0627\u0631\u0645","name_en":"eram","radius":1500,"latitude":35.729046,"longitude":51.28668,"parent_id":null,"city_id":1},{"id":161,"name":"\u062f\u0647\u06a9\u062f\u0647 \u0627\u0644\u0645\u067e\u06cc\u06a9","name_en":"dehkade-olympic","radius":1300,"latitude":35.7641,"longitude":51.255024,"parent_id":null,"city_id":1},{"id":162,"name":"\u0632\u06cc\u0628\u0627\u062f\u0634\u062a","name_en":"shahrak-e-cheshmeh","radius":800,"latitude":35.75225,"longitude":51.261177,"parent_id":null,"city_id":1},{"id":163,"name":"\u0634\u0647\u0631\u06a9 \u0635\u062f\u0631\u0627","name_en":"azadi-sport-complex","radius":1600,"latitude":35.727753,"longitude":51.267174,"parent_id":null,"city_id":1},{"id":164,"name":"\u0634\u0647\u0631\u06a9 \u0622\u0632\u0627\u062f\u06cc","name_en":"shahrak-e-azadi","radius":800,"latitude":35.709427,"longitude":51.273167,"parent_id":null,"city_id":1},{"id":165,"name":"\u0634\u0647\u0631\u06a9 \u0631\u0627\u0647\u200c\u0622\u0647\u0646","name_en":"west-shahrak-e-golestan","radius":1200,"latitude":35.75313,"longitude":51.23481,"parent_id":null,"city_id":1},{"id":166,"name":"\u0634\u0647\u0631\u06a9 \u0627\u0646\u0635\u0627\u0631","name_en":"shahrak-e-ansar","radius":600,"latitude":35.710754,"longitude":51.259327,"parent_id":null,"city_id":1},{"id":167,"name":"\u0627\u06a9\u0628\u0627\u062a\u0627\u0646","name_en":"ekbatan","radius":1200,"latitude":35.70816,"longitude":51.304195,"parent_id":null,"city_id":1},{"id":168,"name":"\u06a9\u0648\u06cc \u0628\u06cc\u0645\u0647","name_en":"kooy-e-bimeh","radius":600,"latitude":35.705322,"longitude":51.318638,"parent_id":null,"city_id":1},{"id":169,"name":"\u0634\u0647\u0631\u06a9 \u0622\u067e\u0627\u062f\u0627\u0646\u0627","name_en":"shahrak-e-apadana","radius":800,"latitude":35.70683,"longitude":51.328655,"parent_id":null,"city_id":1},{"id":170,"name":"\u06a9\u0648\u06cc \u0641\u0631\u062f\u0648\u0633","name_en":"kooy-e-ferdos","radius":1000,"latitude":35.720898,"longitude":51.321365,"parent_id":null,"city_id":1},{"id":171,"name":"\u0637\u0631\u0634\u062a","name_en":"tarasht","radius":1100,"latitude":35.706665,"longitude":51.34296,"parent_id":null,"city_id":1},{"id":172,"name":"\u0635\u0627\u062f\u0642\u06cc\u0647","name_en":"sadeghiyeh","radius":1200,"latitude":35.719387,"longitude":51.342903,"parent_id":null,"city_id":1},{"id":173,"name":"\u0627\u0628\u0627\u0630\u0631","name_en":"aboozar","radius":700,"latitude":35.73085,"longitude":51.33056,"parent_id":null,"city_id":1},{"id":174,"name":"\u06a9\u0648\u06cc \u0645\u0647\u0631\u0627\u0646","name_en":"hasan-abad-shomali","radius":700,"latitude":35.73258,"longitude":51.320435,"parent_id":null,"city_id":1},{"id":175,"name":"\u0634\u0647\u0631\u06a9 \u0627\u0633\u062a\u0642\u0644\u0627\u0644","name_en":"shaharak-e-esteqlal","radius":600,"latitude":35.70288,"longitude":51.22858,"parent_id":null,"city_id":1},{"id":178,"name":"\u062a\u0647\u0631\u0627\u0646\u200c\u0633\u0631","name_en":"tehransar","radius":1400,"latitude":35.692574,"longitude":51.254623,"parent_id":null,"city_id":1},{"id":179,"name":"\u0634\u0647\u0631\u06a9 \u062f\u0631\u06cc\u0627","name_en":"shahrak-e-darya","radius":1000,"latitude":35.685604,"longitude":51.238903,"parent_id":null,"city_id":1},{"id":180,"name":"\u0634\u0647\u0631\u06a9 \u0622\u0633\u0645\u0627\u0646","name_en":"shahrak-e-aseman","radius":700,"latitude":35.68056,"longitude":51.265194,"parent_id":null,"city_id":1},{"id":182,"name":"\u0641\u0631\u0648\u062f\u06af\u0627\u0647 \u0645\u0647\u0631\u0622\u0628\u0627\u062f","name_en":"mehrabad-airport","radius":3500,"latitude":35.68934,"longitude":51.302444,"parent_id":null,"city_id":1},{"id":184,"name":"\u06a9\u0648\u06cc \u0647\u0641\u062f\u0647\u0645 \u0634\u0647\u0631\u06cc\u0648\u0631","name_en":"kooye-e-hefdahom-e-shahrivar","radius":1200,"latitude":35.669136,"longitude":51.294304,"parent_id":null,"city_id":1},{"id":185,"name":"\u0634\u0647\u0631\u06a9 \u0641\u0631\u062f\u0648\u0633","name_en":"shahrak-e-ferdows","radius":1500,"latitude":35.66301,"longitude":51.32534,"parent_id":null,"city_id":1},{"id":186,"name":"\u0645\u0647\u0631\u0622\u0628\u0627\u062f \u062c\u0646\u0648\u0628\u06cc","name_en":"south-mehrabad","radius":1500,"latitude":35.676933,"longitude":51.33802,"parent_id":null,"city_id":1},{"id":187,"name":"\u0634\u0647\u0631\u06a9 \u0637\u0627\u0644\u0642\u0627\u0646\u06cc","name_en":"shahrak-e-taleghani","radius":600,"latitude":35.657444,"longitude":51.26543,"parent_id":null,"city_id":1},{"id":188,"name":"\u062e\u0644\u06cc\u062c \u0641\u0627\u0631\u0633","name_en":"khalij-e-fars","radius":1500,"latitude":35.670258,"longitude":51.256664,"parent_id":null,"city_id":1},{"id":189,"name":"\u0634\u0627\u062f\u0622\u0628\u0627\u062f","name_en":"shadabad","radius":700,"latitude":35.65688,"longitude":51.30141,"parent_id":null,"city_id":1},{"id":190,"name":"\u0634\u0647\u0631\u06a9 \u0627\u0645\u0627\u0645 \u062e\u0645\u06cc\u0646\u06cc","name_en":"shahrak-e-emamkhomeyni","radius":500,"latitude":35.662846,"longitude":51.314087,"parent_id":null,"city_id":1},{"id":191,"name":"\u0627\u0628\u0631\u0627\u0647\u06cc\u0645\u200c\u0622\u0628\u0627\u062f","name_en":"ebrahim-abad","radius":800,"latitude":35.648724,"longitude":51.301876,"parent_id":null,"city_id":1},{"id":192,"name":"\u06cc\u0627\u0641\u062a\u200c\u0622\u0628\u0627\u062f","name_en":"yaftabad","radius":1400,"latitude":35.642033,"longitude":51.301575,"parent_id":null,"city_id":1},{"id":193,"name":"\u0634\u0647\u0631\u06a9 \u0645\u0633\u0644\u0645\u06cc\u0646","name_en":"shaharak-e-moslemin","radius":800,"latitude":35.648476,"longitude":51.32238,"parent_id":null,"city_id":1},{"id":194,"name":"\u0634\u0647\u0631\u06a9 \u0648\u0644\u06cc\u0639\u0635\u0631","name_en":"shahrak-e-vali-e-asr","radius":1200,"latitude":35.64499,"longitude":51.343887,"parent_id":null,"city_id":1},{"id":195,"name":"\u0627\u0633\u062a\u0627\u062f \u0645\u0639\u06cc\u0646","name_en":"ostad-moein","radius":800,"latitude":35.695904,"longitude":51.341724,"parent_id":null,"city_id":1},{"id":196,"name":"\u062c\u06cc","name_en":"jey","radius":1200,"latitude":35.67895,"longitude":51.34921,"parent_id":null,"city_id":1},{"id":197,"name":"\u0628\u0631\u06cc\u0627\u0646\u06a9","name_en":"beryanak","radius":1800,"latitude":35.674942,"longitude":51.377117,"parent_id":null,"city_id":1},{"id":198,"name":"\u0622\u0630\u0631\u06cc","name_en":"azari","radius":500,"latitude":35.666626,"longitude":51.350796,"parent_id":null,"city_id":1},{"id":199,"name":"\u0641\u0644\u0627\u062d","name_en":"fallah","radius":1800,"latitude":35.659267,"longitude":51.367393,"parent_id":null,"city_id":1},{"id":200,"name":"\u062f\u0631\u06cc\u0627\u0646\u200c\u0646\u0648","name_en":"daryan-no","radius":1400,"latitude":35.713863,"longitude":51.35906,"parent_id":null,"city_id":1},{"id":201,"name":"\u062a\u0647\u0631\u0627\u0646\u200c\u0648\u06cc\u0644\u0627","name_en":"tehranvila","radius":700,"latitude":35.7226,"longitude":51.366577,"parent_id":null,"city_id":1},{"id":202,"name":"\u0634\u0647\u0631\u0622\u0631\u0627","name_en":"sharara","radius":900,"latitude":35.71979,"longitude":51.37151,"parent_id":null,"city_id":1},{"id":203,"name":"\u062a\u0648\u062d\u06cc\u062f","name_en":"tohid","radius":500,"latitude":35.70471,"longitude":51.372128,"parent_id":null,"city_id":1},{"id":204,"name":"\u062c\u0645\u0627\u0644\u200c\u0632\u0627\u062f\u0647","name_en":"jamalzadeh","radius":700,"latitude":35.697315,"longitude":51.388508,"parent_id":null,"city_id":1},{"id":205,"name":"\u0633\u062a\u0627\u0631\u062e\u0627\u0646","name_en":"sattarkhan","radius":500,"latitude":35.723278,"longitude":51.356926,"parent_id":null,"city_id":1},{"id":206,"name":"\u067e\u0627\u062a\u0631\u06cc\u0633 \u0644\u0648\u0645\u0648\u0645\u0628\u0627","name_en":"baqerkhan","radius":500,"latitude":35.716763,"longitude":51.37618,"parent_id":null,"city_id":1},{"id":208,"name":"\u0628\u0644\u0648\u0627\u0631 \u06a9\u0634\u0627\u0648\u0631\u0632","name_en":"bolvar-e-keshavarz","radius":500,"latitude":35.71367,"longitude":51.399075,"parent_id":null,"city_id":1},{"id":209,"name":"\u062f\u0627\u0646\u0634\u06af\u0627\u0647 \u062a\u0647\u0631\u0627\u0646","name_en":"tehran-university","radius":700,"latitude":35.705254,"longitude":51.39762,"parent_id":null,"city_id":1},{"id":210,"name":"\u0641\u0627\u0637\u0645\u06cc","name_en":"north-karegar","radius":600,"latitude":35.71895,"longitude":51.38887,"parent_id":null,"city_id":1},{"id":211,"name":"\u0642\u0632\u0644 \u0642\u0644\u0639\u0647","name_en":"qezel-qaleh","radius":400,"latitude":35.728806,"longitude":51.393524,"parent_id":null,"city_id":1},{"id":212,"name":"\u0634\u0647\u0631 \u0631\u06cc - \u0634\u0647\u0631\u06a9 \u0634\u0647\u06cc\u062f \u0645\u0641\u062a\u062d","name_en":"shahrak-e-shahid-mofateh","radius":800,"latitude":35.57136,"longitude":51.45646,"parent_id":null,"city_id":1},{"id":214,"name":"\u0645\u0628\u0627\u0631\u06a9\u200c\u0622\u0628\u0627\u062f \u0628\u0647\u0634\u062a\u06cc","name_en":"mobarak-abad-e-beheshti","radius":500,"latitude":35.564518,"longitude":51.394382,"parent_id":null,"city_id":1},{"id":216,"name":"\u062d\u0633\u0646\u200c\u0622\u0628\u0627\u062f \u0628\u0627\u0642\u0631\u0641\u0631","name_en":"hasan-abad-baqer-far","radius":800,"latitude":35.57808,"longitude":51.381737,"parent_id":null,"city_id":1},{"id":217,"name":"\u0628\u0627\u063a \u0631\u0636\u0648\u0627\u0646","name_en":"baq-e-rezavan","radius":1000,"latitude":35.587208,"longitude":51.393764,"parent_id":null,"city_id":1},{"id":219,"name":"\u06a9\u0631\u06cc\u0645\u200c\u0622\u0628\u0627\u062f","name_en":"karim-abad","radius":1800,"latitude":35.597088,"longitude":51.363033,"parent_id":null,"city_id":1},{"id":220,"name":"\u0639\u0628\u062f\u0644\u200c\u0622\u0628\u0627\u062f","name_en":"abdol-abad","radius":1000,"latitude":35.630436,"longitude":51.36584,"parent_id":null,"city_id":1},{"id":221,"name":"\u0634\u0647\u0631 \u0631\u06cc - \u0647\u0627\u0634\u0645\u200c\u0622\u0628\u0627\u062f","name_en":"shahr-e-rey","radius":2000,"latitude":35.584743,"longitude":51.440483,"parent_id":null,"city_id":1},{"id":224,"name":"\u0634\u0647\u0631 \u0631\u06cc - \u0639\u0644\u0627\u0626\u06cc\u0646","name_en":"shahrak-e-rezvan","radius":300,"latitude":35.582615,"longitude":51.454906,"parent_id":null,"city_id":1},{"id":227,"name":"\u0638\u0647\u06cc\u0631\u0622\u0628\u0627\u062f","name_en":"zahir-abad","radius":1000,"latitude":35.596375,"longitude":51.449974,"parent_id":null,"city_id":1},{"id":228,"name":"\u062f\u06cc\u0644\u0645\u0627\u0646","name_en":"south-deylaman","radius":800,"latitude":35.603333,"longitude":51.432556,"parent_id":null,"city_id":1},{"id":231,"name":"\u062c\u0648\u0627\u0646\u0645\u0631\u062f \u0642\u0635\u0627\u0628","name_en":"javanmard-e-ghasab","radius":1200,"latitude":35.613316,"longitude":51.425648,"parent_id":null,"city_id":1},{"id":232,"name":"\u0645\u0646\u0635\u0648\u0631\u06cc\u0647 (\u067e\u0644 \u0633\u06cc\u0645\u0627\u0646)","name_en":"mansouriyeh","radius":1000,"latitude":35.60918,"longitude":51.43764,"parent_id":null,"city_id":1},{"id":233,"name":"\u062f\u0648\u0644\u062a\u200c\u0622\u0628\u0627\u062f","name_en":"dolat-abad","radius":1200,"latitude":35.62114,"longitude":51.452793,"parent_id":null,"city_id":1},{"id":234,"name":"\u0645\u0644\u06a9\u200c\u0622\u0628\u0627\u062f","name_en":"malek-abad","radius":500,"latitude":35.62153,"longitude":51.434456,"parent_id":null,"city_id":1},{"id":235,"name":"\u0639\u0644\u06cc\u200c\u0622\u0628\u0627\u062f","name_en":"south-ali-abad","radius":800,"latitude":35.62682,"longitude":51.425335,"parent_id":null,"city_id":1},{"id":236,"name":"\u0634\u0647\u0631\u06a9 \u062a\u062e\u062a\u06cc","name_en":"shahrak-e-takhti","radius":1000,"latitude":35.625156,"longitude":51.415604,"parent_id":null,"city_id":1},{"id":240,"name":"\u0634\u0648\u0634","name_en":"shoosh","radius":800,"latitude":35.652172,"longitude":51.440628,"parent_id":null,"city_id":1},{"id":241,"name":"\u0634\u0647\u0631\u06a9 \u06a9\u06cc\u0627\u0646\u0634\u0647\u0631","name_en":"shahrak-e-kianshahr","radius":1500,"latitude":35.637268,"longitude":51.448906,"parent_id":null,"city_id":1},{"id":243,"name":"\u0645\u0634\u06cc\u0631\u06cc\u0647","name_en":"moshiriyeh","radius":1000,"latitude":35.625053,"longitude":51.47763,"parent_id":null,"city_id":1},{"id":245,"name":"\u06a9\u0627\u0631\u0648\u0627\u0646","name_en":"karevan","radius":400,"latitude":35.612125,"longitude":51.495766,"parent_id":null,"city_id":1},{"id":246,"name":"\u0645\u0633\u0639\u0648\u062f\u06cc\u0647","name_en":"masoudieh","radius":1000,"latitude":35.632595,"longitude":51.498425,"parent_id":null,"city_id":1},{"id":248,"name":"\u0642\u0635\u0631 \u0641\u06cc\u0631\u0648\u0632\u0647 \u06f2","name_en":"qasr-e-firooze-do","radius":800,"latitude":35.6516,"longitude":51.503876,"parent_id":null,"city_id":1},{"id":249,"name":"\u0627\u0641\u0633\u0631\u06cc\u0647","name_en":"afsariyeh","radius":2000,"latitude":35.650806,"longitude":51.49224,"parent_id":null,"city_id":1},{"id":250,"name":"\u06cc\u0627\u062e\u0686\u06cc\u200c\u0622\u0628\u0627\u062f","name_en":"yakhchi-abad","radius":1100,"latitude":35.6263,"longitude":51.405384,"parent_id":null,"city_id":1},{"id":251,"name":"\u0686\u0647\u0627\u0631\u0635\u062f \u062f\u0633\u062a\u06af\u0627\u0647","name_en":"charsad-dastgah","radius":400,"latitude":35.686466,"longitude":51.46149,"parent_id":null,"city_id":1},{"id":252,"name":"\u0646\u0627\u0632\u06cc\u200c\u0622\u0628\u0627\u062f","name_en":"nazi-abad","radius":1000,"latitude":35.64138,"longitude":51.405453,"parent_id":null,"city_id":1},{"id":253,"name":"\u062e\u0632\u0627\u0646\u0647","name_en":"khazaneh","radius":500,"latitude":35.638935,"longitude":51.426044,"parent_id":null,"city_id":1},{"id":254,"name":"\u0628\u0647\u0645\u0646 \u06cc\u0627\u0631","name_en":"bahman-yar","radius":700,"latitude":35.625122,"longitude":51.398205,"parent_id":null,"city_id":1},{"id":255,"name":"\u062e\u0627\u0646\u06cc\u200c\u0622\u0628\u0627\u062f","name_en":"khani-abad","radius":1000,"latitude":35.662865,"longitude":51.41033,"parent_id":null,"city_id":1},{"id":256,"name":"\u0627\u0633\u0641\u0646\u062f\u06cc\u0627\u0631\u06cc","name_en":"esfandyari","radius":700,"latitude":35.6302,"longitude":51.38485,"parent_id":null,"city_id":1},{"id":257,"name":"\u0634\u0647\u0631\u06a9 \u0634\u0631\u06cc\u0639\u062a\u06cc","name_en":"shaharak-e-shariyati","radius":1000,"latitude":35.624733,"longitude":51.376423,"parent_id":null,"city_id":1},{"id":259,"name":"\u0634\u0647\u0631\u06a9 \u0627\u0628\u0648\u0630\u0631","name_en":"shahrak-e-aboozar","radius":700,"latitude":35.61692,"longitude":51.355724,"parent_id":null,"city_id":1},{"id":260,"name":"\u0634\u0647\u0631\u06a9 \u0634\u0631\u06cc\u0641\u06cc","name_en":"shaharak-e-sharifi","radius":1200,"latitude":35.620056,"longitude":51.33407,"parent_id":null,"city_id":1},{"id":262,"name":"\u0646\u0639\u0645\u062a\u200c\u0622\u0628\u0627\u062f","name_en":"nemat-abad","radius":700,"latitude":35.62986,"longitude":51.35257,"parent_id":null,"city_id":1},{"id":263,"name":"\u0634\u0647\u06cc\u062f \u0631\u062c\u0627\u06cc\u06cc","name_en":"eslam-abad","radius":1200,"latitude":35.634003,"longitude":51.327827,"parent_id":null,"city_id":1},{"id":264,"name":"\u0628\u0627\u063a \u0622\u0630\u0631\u06cc","name_en":"baq-e-azari","radius":1000,"latitude":35.65279,"longitude":51.423405,"parent_id":null,"city_id":1},{"id":265,"name":"\u062c\u0648\u0627\u062f\u06cc\u0647","name_en":"javadiyeh","radius":1200,"latitude":35.64976,"longitude":51.39022,"parent_id":null,"city_id":1},{"id":266,"name":"\u0645\u0648\u0644\u0648\u06cc","name_en":"molavi","radius":1000,"latitude":35.66423,"longitude":51.42459,"parent_id":null,"city_id":1},{"id":268,"name":"\u0632\u0647\u062a\u0627\u0628\u06cc","name_en":"zehtabi","radius":1000,"latitude":35.641743,"longitude":51.36014,"parent_id":null,"city_id":1},{"id":269,"name":"\u0648\u0635\u0641\u0646\u0627\u0631\u062f","name_en":"vasfenard","radius":500,"latitude":35.646812,"longitude":51.35506,"parent_id":null,"city_id":1},{"id":270,"name":"\u0647\u0627\u0634\u0645\u200c\u0622\u0628\u0627\u062f","name_en":"hashem-abad","radius":800,"latitude":35.64364,"longitude":51.471718,"parent_id":null,"city_id":1},{"id":271,"name":"\u0634\u0647\u0631\u06a9 \u0627\u0645\u06cc\u0631\u0627\u0644\u0645\u0648\u0645\u0646\u06cc\u0646","name_en":"shahrak-e-amiralmomenin","radius":1200,"latitude":35.662,"longitude":51.51331,"parent_id":null,"city_id":1},{"id":272,"name":"\u062f\u0648\u0644\u0627\u0628","name_en":"doolab","radius":1500,"latitude":35.665924,"longitude":51.4608,"parent_id":null,"city_id":1},{"id":273,"name":"\u0622\u0647\u0646\u06af","name_en":"ahang","radius":500,"latitude":35.663185,"longitude":51.476677,"parent_id":null,"city_id":1},{"id":275,"name":"\u06af\u0645\u0631\u06a9","name_en":"gomrok","radius":800,"latitude":35.665306,"longitude":51.392696,"parent_id":null,"city_id":1},{"id":276,"name":"\u0627\u0645\u06cc\u0631 \u0628\u0647\u0627\u062f\u0631","name_en":"amir-bahador","radius":500,"latitude":35.671116,"longitude":51.40357,"parent_id":null,"city_id":1},{"id":277,"name":"\u0627\u0645\u06cc\u0631\u06cc\u0647","name_en":"amiriyeh","radius":700,"latitude":35.678253,"longitude":51.400852,"parent_id":null,"city_id":1},{"id":278,"name":"\u0645\u0646\u06cc\u0631\u06cc\u0647","name_en":"moniriyeh","radius":600,"latitude":35.684074,"longitude":51.40128,"parent_id":null,"city_id":1},{"id":279,"name":"\u0633\u0646\u06af\u0644\u062c","name_en":"sanglaj","radius":800,"latitude":35.67653,"longitude":51.41268,"parent_id":null,"city_id":1},{"id":280,"name":"\u067e\u0627\u0645\u0646\u0627\u0631","name_en":"pamenar","radius":800,"latitude":35.68142,"longitude":51.424812,"parent_id":null,"city_id":1},{"id":281,"name":"\u0634\u06cc\u062e \u0647\u0627\u062f\u06cc","name_en":"sheykh-hadi","radius":700,"latitude":35.69147,"longitude":51.401955,"parent_id":null,"city_id":1},{"id":282,"name":"\u0645\u06cc\u062f\u0627\u0646 \u062d\u0631","name_en":"hor-square","radius":800,"latitude":35.687157,"longitude":51.388138,"parent_id":null,"city_id":1},{"id":283,"name":"\u0627\u0633\u06a9\u0646\u062f\u0631\u06cc","name_en":"eskandari","radius":600,"latitude":35.688847,"longitude":51.381798,"parent_id":null,"city_id":1},{"id":284,"name":"\u0633\u0644\u0633\u0628\u06cc\u0644","name_en":"sarsabil","radius":800,"latitude":35.690144,"longitude":51.37454,"parent_id":null,"city_id":1},{"id":285,"name":"\u062f\u0631\u0648\u0627\u0632\u0647 \u0634\u0645\u06cc\u0631\u0627\u0646","name_en":"darvazeh-shemiran","radius":500,"latitude":35.696373,"longitude":51.442036,"parent_id":null,"city_id":1},{"id":286,"name":"\u062e\u0648\u0627\u062c\u0647 \u0646\u0635\u06cc\u0631 \u0637\u0648\u0633\u06cc","name_en":"eshrat-abad","radius":500,"latitude":35.703915,"longitude":51.43778,"parent_id":null,"city_id":1},{"id":287,"name":"\u0627\u0645\u0627\u0645 \u062d\u0633\u06cc\u0646(\u0639)","name_en":"emam-hossein","radius":400,"latitude":35.701984,"longitude":51.447834,"parent_id":null,"city_id":1},{"id":288,"name":"\u0635\u0641\u0627","name_en":"sheykh-al-raeis","radius":600,"latitude":35.6945,"longitude":51.45207,"parent_id":null,"city_id":1},{"id":289,"name":"\u0635\u062f \u062f\u0633\u062a\u06af\u0627\u0647","name_en":"sad-dastgah","radius":700,"latitude":35.68922,"longitude":51.47253,"parent_id":null,"city_id":1},{"id":290,"name":"\u062f\u0644\u06af\u0634\u0627","name_en":"soleymanieh","radius":800,"latitude":35.68102,"longitude":51.455246,"parent_id":null,"city_id":1},{"id":291,"name":"\u0627\u0626\u0645\u0647 \u0627\u0637\u0647\u0627\u0631","name_en":"farah-abad","radius":1000,"latitude":35.680187,"longitude":51.486183,"parent_id":null,"city_id":1},{"id":292,"name":"\u067e\u06cc\u0631\u0648\u0632\u06cc","name_en":"pirouzi","radius":1000,"latitude":35.69542,"longitude":51.486427,"parent_id":null,"city_id":1},{"id":293,"name":"\u0642\u0635\u0631 \u0641\u06cc\u0631\u0648\u0632\u0647 \u06f1","name_en":"qasr-e-firoozeh-yek","radius":1200,"latitude":35.67763,"longitude":51.505795,"parent_id":null,"city_id":1},{"id":297,"name":"\u0628\u0647\u062c\u062a\u200c\u0622\u0628\u0627\u062f","name_en":"behjat-abad","radius":900,"latitude":35.71929,"longitude":51.412136,"parent_id":null,"city_id":1},{"id":298,"name":"\u0627\u06cc\u0631\u0627\u0646\u0634\u0647\u0631","name_en":"iranshahr","radius":700,"latitude":35.708656,"longitude":51.42204,"parent_id":null,"city_id":1},{"id":299,"name":"\u0633\u0646\u0627\u06cc\u06cc","name_en":"motahari","radius":700,"latitude":35.72147,"longitude":51.420944,"parent_id":null,"city_id":1},{"id":300,"name":"\u0639\u0628\u0627\u0633\u200c\u0622\u0628\u0627\u062f","name_en":"abbas-abad","radius":800,"latitude":35.72766,"longitude":51.434525,"parent_id":null,"city_id":1},{"id":301,"name":"\u0622\u0631\u0698\u0627\u0646\u062a\u06cc\u0646","name_en":"arjantin","radius":800,"latitude":35.73532,"longitude":51.415684,"parent_id":null,"city_id":1},{"id":302,"name":"\u0633\u0647\u0631\u0648\u0631\u062f\u06cc","name_en":"north-sohrevardi","radius":700,"latitude":35.7209,"longitude":51.43482,"parent_id":null,"city_id":1},{"id":306,"name":"\u0686\u06cc\u062a\u06af\u0631","name_en":"chitgar","radius":3000,"latitude":35.718536,"longitude":51.162716,"parent_id":null,"city_id":1},{"id":307,"name":"\u0634\u0647\u0631\u06a9 \u063a\u0632\u0627\u0644\u06cc","name_en":"shahrak-e-ghazali","radius":700,"latitude":35.731323,"longitude":51.162712,"parent_id":null,"city_id":1},{"id":308,"name":"\u0634\u0647\u0631\u06a9 \u0633\u06cc\u0646\u0645\u0627\u06cc\u06cc","name_en":"shahrak-e-vilashahr","radius":600,"latitude":35.726795,"longitude":51.17758,"parent_id":null,"city_id":1},{"id":311,"name":"\u0633\u0631\u0648 \u0622\u0632\u0627\u062f","name_en":"azad-shahr","radius":600,"latitude":35.746273,"longitude":51.175713,"parent_id":null,"city_id":1},{"id":312,"name":"\u0646\u0648\u0627\u0628","name_en":"shahid-navab-safavi","radius":1000,"latitude":35.67862,"longitude":51.380466,"parent_id":null,"city_id":1},{"id":313,"name":"\u0634\u0647\u0631 \u0642\u062f\u0633","name_en":"shahr-e-qods","radius":3973,"latitude":35.709522,"longitude":51.1145,"parent_id":null,"city_id":1},{"id":315,"name":"\u0648\u0646\u06a9","name_en":"vanak","radius":500,"latitude":35.756386,"longitude":51.39823,"parent_id":null,"city_id":1},{"id":322,"name":"\u06a9\u06cc\u0627\u0646\u067e\u0627\u0631\u0633 ","name_en":"kianpars","radius":2000,"latitude":31.350136,"longitude":48.682415,"parent_id":null,"city_id":7},{"id":323,"name":"\u06af\u0644\u0633\u062a\u0627\u0646","name_en":"golestan-ahvaz","radius":2000,"latitude":31.291525,"longitude":48.643566,"parent_id":null,"city_id":7},{"id":324,"name":"\u0632\u06cc\u062a\u0648\u0646 \u06a9\u0627\u0631\u0645\u0646\u062f\u06cc","name_en":"zeytunkarmandi","radius":1200,"latitude":31.357174,"longitude":48.720695,"parent_id":null,"city_id":7},{"id":325,"name":"\u067e\u0627\u062f\u0627\u062f\u0634\u0647\u0631","name_en":"padadshahr","radius":1000,"latitude":31.30942,"longitude":48.6922,"parent_id":null,"city_id":7},{"id":326,"name":"\u06a9\u0648\u0631\u0648\u0634 (\u06a9\u0648\u06cc \u0645\u0644\u062a)","name_en":"koorosh","radius":900,"latitude":31.362982,"longitude":48.736618,"parent_id":null,"city_id":7},{"id":327,"name":"\u0632\u06cc\u062a\u0648\u0646 \u06a9\u0627\u0631\u06af\u0631\u06cc","name_en":"zeytunkargari","radius":1200,"latitude":31.335594,"longitude":48.71296,"parent_id":null,"city_id":7},{"id":328,"name":"\u0646\u0627\u062f\u0631\u06cc","name_en":"naderi","radius":1000,"latitude":31.317953,"longitude":48.683025,"parent_id":null,"city_id":7},{"id":329,"name":"\u067e\u0631\u062f\u06cc\u0633","name_en":"pardis-ahvaz","radius":2000,"latitude":31.286179,"longitude":48.593987,"parent_id":null,"city_id":7},{"id":330,"name":"\u0628\u0627\u0647\u0646\u0631","name_en":"bahonar","radius":1000,"latitude":31.29135,"longitude":48.72651,"parent_id":null,"city_id":7},{"id":331,"name":"\u06a9\u0645\u067e\u0644\u0648\u06cc \u0634\u0645\u0627\u0644\u06cc (\u0644\u0634\u06a9\u0631)","name_en":"camploshomali","radius":800,"latitude":31.326733,"longitude":48.65424,"parent_id":null,"city_id":7},{"id":332,"name":"\u06a9\u0645\u067e\u0644\u0648 \u062c\u0646\u0648\u0628\u06cc (\u06a9\u0648\u06cc \u0627\u0646\u0642\u0644\u0627\u0628)","name_en":"camplojonoobi","radius":500,"latitude":31.320538,"longitude":48.650806,"parent_id":null,"city_id":7},{"id":333,"name":"\u06a9\u06cc\u0627\u0646 \u0622\u0628\u0627\u062f","name_en":"kianabad","radius":500,"latitude":31.356293,"longitude":48.677277,"parent_id":null,"city_id":7},{"id":334,"name":"\u0628\u0647\u0627\u0631\u0633\u062a\u0627\u0646","name_en":"baharestan-ahvaz","radius":1000,"latitude":31.283392,"longitude":48.623215,"parent_id":null,"city_id":7},{"id":335,"name":"\u0633\u067e\u06cc\u062f\u0627\u0631","name_en":"sepidar","radius":1000,"latitude":31.30622,"longitude":48.735737,"parent_id":null,"city_id":7},{"id":336,"name":"\u06a9\u0648\u06cc \u0646\u0641\u062a","name_en":"kooyenaft","radius":600,"latitude":31.322119,"longitude":48.744316,"parent_id":null,"city_id":7},{"id":337,"name":"\u0634\u0647\u0631\u06a9 \u062f\u0627\u0646\u0634\u06af\u0627\u0647","name_en":"shahrakdaneshgah","radius":700,"latitude":31.293074,"longitude":48.609856,"parent_id":null,"city_id":7},{"id":338,"name":"\u0627\u0645\u0627\u0646\u06cc\u0647","name_en":"amaniyeh-ahvaz","radius":400,"latitude":31.320059,"longitude":48.666496,"parent_id":null,"city_id":7},{"id":339,"name":"\u0634\u0647\u0631\u06a9 \u0646\u0641\u062a","name_en":"shahraknaft","radius":1500,"latitude":31.33484,"longitude":48.736134,"parent_id":null,"city_id":7},{"id":340,"name":"\u06a9\u06cc\u0627\u0646\u0634\u0647\u0631","name_en":"kianshahr","radius":1500,"latitude":31.369173,"longitude":48.63875,"parent_id":null,"city_id":7},{"id":341,"name":"\u0645\u0644\u06cc \u0631\u0627\u0647","name_en":"mellirah","radius":800,"latitude":31.361185,"longitude":48.713917,"parent_id":null,"city_id":7},{"id":342,"name":"\u0641\u0631\u0647\u0646\u06af \u0634\u0647\u0631","name_en":"farhangshahr-ahvaz","radius":700,"latitude":31.29973,"longitude":48.617504,"parent_id":null,"city_id":7},{"id":343,"name":"\u06a9\u0648\u06cc \u0645\u0647\u062f\u06cc\u0633","name_en":"mahdis","radius":500,"latitude":31.279999,"longitude":48.696545,"parent_id":null,"city_id":7},{"id":344,"name":"\u06a9\u0648\u06cc \u0646\u0628\u0648\u062a","name_en":"nabovvat","radius":500,"latitude":31.299253,"longitude":48.73533,"parent_id":null,"city_id":7},{"id":345,"name":"\u06a9\u0648\u06cc \u0631\u0645\u0636\u0627\u0646","name_en":"kooyramezan","radius":800,"latitude":31.31469,"longitude":48.72622,"parent_id":null,"city_id":7},{"id":347,"name":"\u0637\u0627\u0644\u0642\u0627\u0646\u06cc","name_en":"taleghani","radius":250,"latitude":31.322147,"longitude":48.682953,"parent_id":null,"city_id":7},{"id":348,"name":"\u06cc\u0648\u0633\u0641\u06cc","name_en":"yoosefi","radius":450,"latitude":31.311838,"longitude":48.69761,"parent_id":null,"city_id":7},{"id":349,"name":"\u0631\u0633\u0627\u0644\u062a","name_en":"resalat","radius":900,"latitude":31.296759,"longitude":48.74726,"parent_id":null,"city_id":7},{"id":350,"name":"\u0645\u0639\u06cc\u0646 \u0632\u0627\u062f\u0647","name_en":"moeinzadeh","radius":900,"latitude":31.274956,"longitude":48.621502,"parent_id":null,"city_id":7},{"id":351,"name":"\u0635\u062f \u062f\u0633\u062a\u06af\u0627\u0647","name_en":"saddastgah","radius":600,"latitude":31.293348,"longitude":48.714043,"parent_id":null,"city_id":7},{"id":352,"name":"\u0632\u06cc\u0628\u0627\u0634\u0647\u0631","name_en":"zibashahr-ahvaz","radius":900,"latitude":31.30498,"longitude":48.700348,"parent_id":null,"city_id":7},{"id":353,"name":"\u06a9\u0648\u06cc \u0633\u0644\u0637\u0627\u0646 \u0645\u0646\u0634","name_en":"soltanmanesh","radius":700,"latitude":31.338486,"longitude":48.718254,"parent_id":null,"city_id":7},{"id":354,"name":"\u0641\u0648\u0644\u0627\u062f\u0634\u0647\u0631","name_en":"fooladshahr-ahvaz","radius":800,"latitude":31.298512,"longitude":48.722942,"parent_id":null,"city_id":7},{"id":355,"name":"\u0622\u0631\u06cc\u0627\u0634\u0647\u0631","name_en":"ariyashahr","radius":300,"latitude":31.310532,"longitude":48.700676,"parent_id":null,"city_id":7},{"id":356,"name":"\u067e\u06cc\u0631\u0648\u0632\u06cc","name_en":"piroozi","radius":200,"latitude":31.31905,"longitude":48.6941,"parent_id":null,"city_id":7},{"id":357,"name":"\u0646\u06cc\u0648\u0633\u0627\u06cc\u062a","name_en":"newsite","radius":600,"latitude":31.346975,"longitude":48.709923,"parent_id":null,"city_id":7},{"id":358,"name":"\u0632\u0631\u06af\u0627\u0646","name_en":"zergan","radius":500,"latitude":31.368607,"longitude":48.758366,"parent_id":null,"city_id":7},{"id":360,"name":"\u0627\u0645\u0627\u0646\u06cc\u0647","name_en":"amaniyeh","radius":300,"latitude":35.778667,"longitude":51.419865,"parent_id":null,"city_id":1},{"id":361,"name":"\u062f\u063a\u0627\u063a\u0644\u0647","name_en":"daghagheleh","radius":800,"latitude":31.39049,"longitude":48.68999,"parent_id":null,"city_id":7},{"id":362,"name":"\u0633\u06cc\u0635\u062f \u062f\u0633\u062a\u06af\u0627\u0647","name_en":"sisad-dastgah","radius":400,"latitude":31.289352,"longitude":48.76147,"parent_id":null,"city_id":7},{"id":363,"name":"\u0644\u0634\u06a9\u0631\u0622\u0628\u0627\u062f","name_en":"lashkarabad","radius":350,"latitude":31.315092,"longitude":48.657642,"parent_id":null,"city_id":7},{"id":364,"name":"\u062d\u0635\u06cc\u0631\u0622\u0628\u0627\u062f","name_en":"hasirabad","radius":300,"latitude":31.323828,"longitude":48.713734,"parent_id":null,"city_id":7},{"id":365,"name":"\u0634\u0631\u06cc\u0639\u062a\u06cc \u062c\u0646\u0648\u0628\u06cc","name_en":"shariatijonoobi","radius":800,"latitude":31.294027,"longitude":48.67407,"parent_id":null,"city_id":7},{"id":366,"name":"\u06a9\u0648\u06cc \u0639\u0644\u0648\u06cc","name_en":"kooyealavi","radius":900,"latitude":31.313517,"longitude":48.629414,"parent_id":null,"city_id":7},{"id":367,"name":"\u06a9\u0648\u062a \u0639\u0628\u062f\u0627\u0644\u0644\u0647","name_en":"kut-abdollah","radius":2000,"latitude":31.23581,"longitude":48.655357,"parent_id":null,"city_id":7},{"id":368,"name":"\u06a9\u0627\u0646\u062a\u06a9\u0633","name_en":"cantex","radius":700,"latitude":31.260263,"longitude":48.669983,"parent_id":null,"city_id":7},{"id":369,"name":"\u0634\u0647\u0631\u06a9 \u0622\u063a\u0627\u062c\u0631\u06cc","name_en":"shahrak-e-aghajari","radius":400,"latitude":31.31381,"longitude":48.757374,"parent_id":null,"city_id":7},{"id":370,"name":"\u0634\u0647\u0631\u06a9 \u062d\u0641\u0627\u0631\u06cc","name_en":"shahrak-e-haffari","radius":400,"latitude":31.317917,"longitude":48.749813,"parent_id":null,"city_id":7},{"id":371,"name":"\u0641\u0627\u0632 \u062f\u0648 \u067e\u0627\u062f\u0627\u062f","name_en":"padad-phase-2","radius":600,"latitude":31.287628,"longitude":48.70589,"parent_id":null,"city_id":7},{"id":372,"name":"\u0641\u0627\u0632 \u06cc\u06a9 \u067e\u0627\u062f\u0627\u062f\u0634\u0647\u0631","name_en":"padadshahr-phase-1","radius":500,"latitude":31.294426,"longitude":48.693565,"parent_id":null,"city_id":7},{"id":373,"name":"\u06a9\u0648\u06cc \u0645\u062f\u0631\u0633","name_en":"kooy-e-modarres","radius":300,"latitude":31.294104,"longitude":48.68499,"parent_id":null,"city_id":7},{"id":374,"name":"\u0648\u0631\u062f\u0622\u0648\u0631\u062f","name_en":"vardavard","radius":1500,"latitude":35.737667,"longitude":51.131897,"parent_id":null,"city_id":1},{"id":376,"name":"\u0628\u06cc\u062f\u0622\u0628\u0627\u062f","name_en":"bidabad","radius":0,"latitude":32.669666,"longitude":51.66032,"parent_id":null,"city_id":4},{"id":377,"name":"\u0639\u0628\u0627\u0633\u200c\u0622\u0628\u0627\u062f","name_en":"abbasabad","radius":0,"latitude":32.646873,"longitude":51.65982,"parent_id":null,"city_id":4},{"id":378,"name":"\u0644\u0646\u0628\u0627\u0646","name_en":"lonban","radius":0,"latitude":32.649998,"longitude":51.648014,"parent_id":null,"city_id":4},{"id":379,"name":"\u0634\u0627\u0647\u06cc\u0646\u200c\u0634\u0647\u0631","name_en":"shahinshahr","radius":0,"latitude":32.862186,"longitude":51.557713,"parent_id":null,"city_id":4},{"id":380,"name":"\u0628\u0632\u0631\u06af\u0645\u0647\u0631","name_en":"bozorgmehr","radius":0,"latitude":32.64911,"longitude":51.701504,"parent_id":null,"city_id":4},{"id":381,"name":"\u062e\u0627\u0646\u0647 \u0627\u0635\u0641\u0647\u0627\u0646","name_en":"khaneesfahan","radius":0,"latitude":32.709637,"longitude":51.636887,"parent_id":null,"city_id":4},{"id":382,"name":"\u0628\u0647\u0627\u0631\u0633\u062a\u0627\u0646","name_en":"baharestan-esfahan","radius":0,"latitude":32.488,"longitude":51.77356,"parent_id":null,"city_id":4},{"id":383,"name":"\u0645\u0644\u06a9\u200c\u0634\u0647\u0631","name_en":"malekshahr","radius":0,"latitude":32.720787,"longitude":51.64802,"parent_id":null,"city_id":4},{"id":384,"name":"\u0641\u0648\u0644\u0627\u062f\u0634\u0647\u0631","name_en":"fooladshahr","radius":0,"latitude":32.488293,"longitude":51.39985,"parent_id":null,"city_id":4},{"id":385,"name":"\u0633\u067e\u0627\u0647\u0627\u0646\u200c\u0634\u0647\u0631","name_en":"sepahanshahr","radius":0,"latitude":32.550022,"longitude":51.67413,"parent_id":null,"city_id":4},{"id":386,"name":"\u0633\u06cc\u0686\u0627\u0646","name_en":"sichan","radius":0,"latitude":32.62941,"longitude":51.661934,"parent_id":null,"city_id":4},{"id":387,"name":"\u062e\u0645\u06cc\u0646\u06cc\u200c\u0634\u0647\u0631","name_en":"khomeinishahr","radius":0,"latitude":32.688007,"longitude":51.521484,"parent_id":null,"city_id":4},{"id":391,"name":"\u062e\u0648\u0627\u062c\u0648","name_en":"chaharbaghkhajoo","radius":0,"latitude":32.644165,"longitude":51.68852,"parent_id":null,"city_id":4},{"id":392,"name":"\u0645\u0634\u062a\u0627\u0642","name_en":"moshtaghsevvom","radius":0,"latitude":32.624786,"longitude":51.72401,"parent_id":null,"city_id":4},{"id":394,"name":"\u062c\u0644\u0641\u0627","name_en":"jolfa","radius":0,"latitude":32.632324,"longitude":51.65602,"parent_id":null,"city_id":4},{"id":398,"name":"\u0645\u0631\u062f\u0627\u0648\u06cc\u062c","name_en":"mardavich","radius":0,"latitude":32.61128,"longitude":51.67024,"parent_id":null,"city_id":4},{"id":399,"name":"\u0646\u0627\u0631\u0645\u06a9","name_en":"narmak","radius":3000,"latitude":35.73685,"longitude":51.501247,"parent_id":null,"city_id":1},{"id":402,"name":"\u062a\u06cc\u0631\u0627\u0646","name_en":"tiran","radius":0,"latitude":32.685005,"longitude":51.66479,"parent_id":null,"city_id":4},{"id":403,"name":"\u0647\u0634\u062a \u0628\u0647\u0634\u062a","name_en":"hashtbehesht","radius":0,"latitude":32.65429,"longitude":51.672318,"parent_id":null,"city_id":4},{"id":409,"name":"\u0632\u06cc\u0646\u0628\u06cc\u0647","name_en":"zeynabieh","radius":0,"latitude":32.7109,"longitude":51.73285,"parent_id":null,"city_id":4},{"id":411,"name":"\u0634\u0647\u0631\u0636\u0627","name_en":"shahreza","radius":0,"latitude":32.010727,"longitude":51.865475,"parent_id":null,"city_id":4},{"id":413,"name":"\u0645\u0628\u0627\u0631\u06a9\u0647","name_en":"mobarake","radius":0,"latitude":32.339195,"longitude":51.50194,"parent_id":null,"city_id":4},{"id":418,"name":"\u0631\u0648\u062f\u0647\u0646","name_en":"roodehen","radius":2998,"latitude":35.7316,"longitude":51.9095,"parent_id":null,"city_id":1},{"id":419,"name":"\u0628\u0648\u0645\u0647\u0646","name_en":"boomehen","radius":2275,"latitude":35.73043,"longitude":51.86984,"parent_id":null,"city_id":1},{"id":420,"name":"\u067e\u0631\u062f\u06cc\u0633","name_en":"pardis","radius":5781,"latitude":35.75326,"longitude":51.795795,"parent_id":null,"city_id":1},{"id":421,"name":"\u0644\u0648\u0627\u0633\u0627\u0646","name_en":"lavasan","radius":4337,"latitude":35.82099,"longitude":51.62932,"parent_id":null,"city_id":1},{"id":422,"name":"\u0641\u0634\u0645","name_en":"fasham","radius":2646,"latitude":35.93772,"longitude":51.527534,"parent_id":null,"city_id":1},{"id":424,"name":"\u0642\u0631\u0686\u06a9","name_en":"qarchak","radius":2748,"latitude":35.433018,"longitude":51.576786,"parent_id":null,"city_id":1},{"id":425,"name":"\u0648\u0631\u0627\u0645\u06cc\u0646","name_en":"varamin","radius":4302,"latitude":35.3425,"longitude":51.64255,"parent_id":null,"city_id":1},{"id":426,"name":"\u0631\u0628\u0627\u0637 \u06a9\u0631\u06cc\u0645","name_en":"robatkarim","radius":4801,"latitude":35.47567,"longitude":51.08671,"parent_id":null,"city_id":1},{"id":427,"name":"\u067e\u0631\u0646\u062f","name_en":"parand","radius":7954,"latitude":35.48725,"longitude":50.940598,"parent_id":null,"city_id":1},{"id":428,"name":"\u0642\u0627\u0633\u0645\u200c\u0622\u0628\u0627\u062f (\u0634\u0647\u0631\u06a9 \u063a\u0631\u0628)","name_en":"ghasemabad","radius":0,"latitude":36.358883,"longitude":59.51094,"parent_id":null,"city_id":3},{"id":430,"name":"\u0648\u06a9\u06cc\u0644\u200c\u0622\u0628\u0627\u062f","name_en":"vakilabad","radius":0,"latitude":36.334473,"longitude":59.46606,"parent_id":null,"city_id":3},{"id":431,"name":"\u0622\u0632\u0627\u062f\u0634\u0647\u0631","name_en":"azadshahr","radius":0,"latitude":36.331425,"longitude":59.537254,"parent_id":null,"city_id":3},{"id":432,"name":"\u0647\u0627\u0634\u0645\u06cc\u0647","name_en":"hashemieh","radius":0,"latitude":36.31664,"longitude":59.50956,"parent_id":null,"city_id":3},{"id":433,"name":"\u0631\u0636\u0627\u0634\u0647\u0631","name_en":"rezashahr","radius":0,"latitude":36.286007,"longitude":59.530514,"parent_id":null,"city_id":3},{"id":435,"name":"\u0628\u0644\u0648\u0627\u0631 \u0633\u062c\u0627\u062f","name_en":"sadjadshahr","radius":0,"latitude":36.318363,"longitude":59.55299,"parent_id":null,"city_id":3},{"id":436,"name":"\u0645\u062d\u0644\u0647 \u0637\u0644\u0627\u0628","name_en":"tollab","radius":0,"latitude":36.301712,"longitude":59.643353,"parent_id":null,"city_id":3},{"id":437,"name":"\u0627\u0628\u0648\u0637\u0627\u0644\u0628","name_en":"aboutaleb","radius":0,"latitude":36.32835,"longitude":59.592907,"parent_id":null,"city_id":3},{"id":439,"name":"\u0641\u0644\u0633\u0637\u06cc\u0646","name_en":"felestin","radius":0,"latitude":36.30809,"longitude":59.562786,"parent_id":null,"city_id":3},{"id":440,"name":"\u0627\u062d\u0645\u062f\u0622\u0628\u0627\u062f","name_en":"ahmadabad","radius":0,"latitude":36.291218,"longitude":59.56879,"parent_id":null,"city_id":3},{"id":442,"name":"\u0631\u0627\u0647\u0646\u0645\u0627\u06cc\u06cc","name_en":"rahnamaei","radius":0,"latitude":36.302128,"longitude":59.57013,"parent_id":null,"city_id":3},{"id":443,"name":"\u06a9\u0644\u0627\u0647\u062f\u0648\u0632","name_en":"kolahdouz","radius":0,"latitude":36.310436,"longitude":59.58505,"parent_id":null,"city_id":3},{"id":444,"name":"\u06af\u0648\u0647\u0631\u0634\u0627\u062f","name_en":"goharshad","radius":0,"latitude":36.314888,"longitude":59.57929,"parent_id":null,"city_id":3},{"id":447,"name":"\u0641\u0631\u0627\u0645\u0631\u0632 \u0639\u0628\u0627\u0633\u06cc","name_en":"faramarzabbasi","radius":0,"latitude":36.331123,"longitude":59.553013,"parent_id":null,"city_id":3},{"id":449,"name":"\u0645\u0637\u0647\u0631\u06cc \u062c\u0646\u0648\u0628\u06cc","name_en":"southmotahhari","radius":0,"latitude":36.3034,"longitude":59.594833,"parent_id":null,"city_id":3},{"id":450,"name":"\u0637\u0628\u0631\u0633\u06cc","name_en":"tabarsi","radius":0,"latitude":36.291496,"longitude":59.62599,"parent_id":null,"city_id":3},{"id":451,"name":"\u0645\u0635\u0644\u06cc","name_en":"mosalla","radius":0,"latitude":36.27891,"longitude":59.62851,"parent_id":null,"city_id":3},{"id":452,"name":"\u06f1\u06f7 \u0634\u0647\u0631\u06cc\u0648\u0631","name_en":"17shahrivar","radius":0,"latitude":36.268852,"longitude":59.617043,"parent_id":null,"city_id":3},{"id":453,"name":"\u0637\u0631\u0642","name_en":"toroq","radius":0,"latitude":36.211506,"longitude":59.666893,"parent_id":null,"city_id":3},{"id":454,"name":"\u0637\u0631\u0642\u0628\u0647","name_en":"torghabeh","radius":0,"latitude":36.313324,"longitude":59.372433,"parent_id":null,"city_id":3},{"id":457,"name":"\u06a9\u0648\u0647 \u0633\u0646\u06af\u06cc","name_en":"koohsangi","radius":0,"latitude":36.272625,"longitude":59.566193,"parent_id":null,"city_id":3},{"id":458,"name":"\u0628\u0647\u0634\u062a\u06cc","name_en":"beheshti-mashhad","radius":0,"latitude":36.297104,"longitude":59.58138,"parent_id":null,"city_id":3},{"id":460,"name":"\u0635\u06cc\u0627\u062f \u0634\u06cc\u0631\u0627\u0632\u06cc","name_en":"sayyadshirazi","radius":0,"latitude":36.322025,"longitude":59.478577,"parent_id":null,"city_id":3},{"id":461,"name":"\u0646\u0648\u0641\u0644 \u0644\u0648\u0634\u0627\u062a\u0648","name_en":"nofellowshatow","radius":0,"latitude":36.29375,"longitude":59.54879,"parent_id":null,"city_id":3},{"id":462,"name":"\u0633\u0646\u0627\u0628\u0627\u062f","name_en":"sanabad","radius":0,"latitude":36.297863,"longitude":59.591217,"parent_id":null,"city_id":3},{"id":463,"name":"\u062f\u0627\u0646\u0634\u062c\u0648","name_en":"daneshjoo","radius":0,"latitude":36.336254,"longitude":59.506527,"parent_id":null,"city_id":3},{"id":464,"name":"\u0633\u06cc\u062f \u0631\u0636\u06cc","name_en":"seyyedrazi","radius":0,"latitude":36.33806,"longitude":59.522865,"parent_id":null,"city_id":3},{"id":465,"name":"\u0639\u0628\u062f\u0627\u0644\u0645\u0637\u0644\u0628","name_en":"abdolmotalleb","radius":0,"latitude":36.331585,"longitude":59.585064,"parent_id":null,"city_id":3},{"id":466,"name":"\u06af\u0644\u0628\u0647\u0627\u0631","name_en":"golbahar","radius":0,"latitude":36.57119,"longitude":59.177692,"parent_id":null,"city_id":3},{"id":467,"name":"\u0647\u0641\u062a \u062a\u06cc\u0631","name_en":"haftetir","radius":0,"latitude":36.316307,"longitude":59.485455,"parent_id":null,"city_id":3},{"id":473,"name":"\u0627\u0645\u0627\u0645 \u062e\u0645\u06cc\u0646\u06cc","name_en":"emamkhomeini","radius":0,"latitude":36.276695,"longitude":59.58495,"parent_id":null,"city_id":3},{"id":474,"name":"\u062d\u0631\u0645 \u0645\u0637\u0647\u0631","name_en":"holyshrine","radius":0,"latitude":36.28788,"longitude":59.61546,"parent_id":null,"city_id":3},{"id":476,"name":"\u0645\u06cc\u062f\u0627\u0646 \u0639\u062f\u0644 \u062e\u0645\u06cc\u0646\u06cc","name_en":"adlekhomeinisquare","radius":0,"latitude":36.267174,"longitude":59.591953,"parent_id":null,"city_id":3},{"id":477,"name":"\u0645\u062d\u0644\u0647 \u0647\u0646\u0631\u0633\u062a\u0627\u0646","name_en":"honarestan","radius":0,"latitude":36.319645,"longitude":59.50317,"parent_id":null,"city_id":3},{"id":478,"name":"\u0627\u0645\u0627\u0645 \u0631\u0636\u0627","name_en":"emamreza","radius":0,"latitude":36.274784,"longitude":59.59693,"parent_id":null,"city_id":3},{"id":479,"name":"\u0645\u0648\u0633\u0648\u06cc \u0642\u0648\u0686\u0627\u0646\u06cc","name_en":"mousavighoochani","radius":0,"latitude":36.32334,"longitude":59.580685,"parent_id":null,"city_id":3},{"id":481,"name":"\u062a\u0631\u0628\u062a \u062d\u06cc\u062f\u0631\u06cc\u0647","name_en":"torbatheydarieh","radius":0,"latitude":35.29082,"longitude":59.21754,"parent_id":null,"city_id":3},{"id":485,"name":"\u06a9\u0627\u0634\u0645\u0631","name_en":"kashmar","radius":0,"latitude":35.2497,"longitude":58.466686,"parent_id":null,"city_id":3},{"id":486,"name":"\u0641\u0644\u06a9\u0647 \u0636\u062f (\u06f1\u06f5 \u062e\u0631\u062f\u0627\u062f)","name_en":"falakehzed","radius":0,"latitude":36.26839,"longitude":59.598835,"parent_id":null,"city_id":3},{"id":487,"name":"\u0634\u0627\u0646\u062f\u06cc\u0632","name_en":"shandiz","radius":0,"latitude":36.398293,"longitude":59.313183,"parent_id":null,"city_id":3},{"id":488,"name":"\u0627\u0644\u0647\u06cc\u0647","name_en":"elahiyehblvd","radius":0,"latitude":36.374702,"longitude":59.47151,"parent_id":null,"city_id":3},{"id":489,"name":"\u06a9\u0648\u06cc \u0645\u0647\u062f\u06cc","name_en":"kuy-e-mahdi","radius":0,"latitude":36.248646,"longitude":59.600002,"parent_id":null,"city_id":3},{"id":490,"name":"\u0641\u0644\u06a9\u0647 \u0628\u0631\u0642 (\u0645\u06cc\u062f\u0627\u0646 \u0628\u0633\u06cc\u062c)","name_en":"barqsquare","radius":0,"latitude":36.273785,"longitude":59.602757,"parent_id":null,"city_id":3},{"id":491,"name":"\u0633\u0639\u062f\u06cc","name_en":"sadi","radius":0,"latitude":36.294205,"longitude":59.604336,"parent_id":null,"city_id":3},{"id":493,"name":"\u0642\u0648\u0686\u0627\u0646","name_en":"ghoochan","radius":0,"latitude":37.10001,"longitude":58.513016,"parent_id":null,"city_id":3},{"id":495,"name":"\u06af\u0627\u0632","name_en":"eastgaz","radius":0,"latitude":36.319942,"longitude":59.63017,"parent_id":null,"city_id":3},{"id":497,"name":"\u062c\u0627\u0646\u0628\u0627\u0632","name_en":"janbaz","radius":0,"latitude":36.334564,"longitude":59.56687,"parent_id":null,"city_id":3},{"id":498,"name":"\u0631\u0633\u0627\u0644\u062a","name_en":"resalat-mashhad","radius":0,"latitude":36.31037,"longitude":59.642498,"parent_id":null,"city_id":3},{"id":500,"name":"\u0634\u0647\u0631 \u0635\u062f\u0631\u0627","name_en":"sadraphase1","radius":0,"latitude":29.804174,"longitude":52.4947,"parent_id":null,"city_id":6},{"id":502,"name":"\u0634\u0647\u0631\u06a9 \u06af\u0644\u0633\u062a\u0627\u0646","name_en":"golestan","radius":0,"latitude":29.752756,"longitude":52.413418,"parent_id":null,"city_id":6},{"id":503,"name":"\u0645\u0639\u0627\u0644\u06cc\u200c\u0622\u0628\u0627\u062f","name_en":"moaliabad","radius":0,"latitude":29.678267,"longitude":52.466824,"parent_id":null,"city_id":6},{"id":504,"name":"\u0645\u0631\u0648\u062f\u0634\u062a","name_en":"marvdasht","radius":0,"latitude":29.875631,"longitude":52.80751,"parent_id":null,"city_id":6},{"id":505,"name":"\u0645\u0644\u0627\u0635\u062f\u0631\u0627","name_en":"mollasadra","radius":0,"latitude":29.628979,"longitude":52.517776,"parent_id":null,"city_id":6},{"id":506,"name":"\u0648\u062d\u062f\u062a (\u0628\u0644\u0648\u0627\u0631 \u0645\u062f\u0631\u0633)","name_en":"modarresblvd","radius":0,"latitude":29.582047,"longitude":52.582375,"parent_id":null,"city_id":6},{"id":507,"name":"\u0641\u0631\u0647\u0646\u06af \u0634\u0647\u0631","name_en":"farhangshahr","radius":0,"latitude":29.653887,"longitude":52.456326,"parent_id":null,"city_id":6},{"id":509,"name":"\u0627\u0637\u0644\u0633\u06cc","name_en":"atlasi","radius":0,"latitude":29.627287,"longitude":52.546246,"parent_id":null,"city_id":6},{"id":511,"name":"\u067e\u0627\u0646\u0635\u062f \u062f\u0633\u062a\u06af\u0627\u0647 (\u0628\u0644\u0648\u0627\u0631 \u0631\u062d\u0645\u062a)","name_en":"rahmatblvd","radius":0,"latitude":29.589289,"longitude":52.52726,"parent_id":null,"city_id":6},{"id":512,"name":"\u062a\u0627\u0686\u0627\u0631\u0627","name_en":"tachara","radius":0,"latitude":29.692463,"longitude":52.467335,"parent_id":null,"city_id":6},{"id":513,"name":"\u0634\u0647\u0631\u06a9 \u0648\u0627\u0644\u0641\u062c\u0631","name_en":"valfajr","radius":0,"latitude":29.60518,"longitude":52.45655,"parent_id":null,"city_id":6},{"id":514,"name":"\u06a9\u0627\u0632\u0631\u0648\u0646","name_en":"kazerun","radius":0,"latitude":29.616451,"longitude":51.66046,"parent_id":null,"city_id":6},{"id":515,"name":"\u0642\u0635\u0631\u0627\u0644\u062f\u0634\u062a","name_en":"qasrdasht","radius":0,"latitude":29.647839,"longitude":52.494152,"parent_id":null,"city_id":6},{"id":516,"name":"\u0645\u06cc\u0627\u0646\u0631\u0648\u062f","name_en":"mianrood","radius":0,"latitude":29.567284,"longitude":52.48901,"parent_id":null,"city_id":6},{"id":517,"name":"\u0634\u0647\u0631\u06a9 \u0633\u0631\u0627\u062c","name_en":"seraj","radius":0,"latitude":29.597256,"longitude":52.490166,"parent_id":null,"city_id":6},{"id":521,"name":"\u0634\u0647\u0631\u06a9 \u0627\u0645\u06cc\u0631 \u06a9\u0628\u06cc\u0631","name_en":"amirkabirblvd","radius":0,"latitude":29.619854,"longitude":52.457382,"parent_id":null,"city_id":6},{"id":522,"name":"\u0627\u0631\u0645","name_en":"eram-shiraz","radius":0,"latitude":29.632504,"longitude":52.528965,"parent_id":null,"city_id":6},{"id":523,"name":"\u0633\u062a\u0627\u0631\u062e\u0627\u0646","name_en":"sattarkhan-shiraz","radius":0,"latitude":29.62478,"longitude":52.49623,"parent_id":null,"city_id":6},{"id":524,"name":"\u0645\u062d\u0644\u0647 \u0627\u0646\u062c\u06cc\u0631 (\u06a9\u0644\u0628\u0647)","name_en":"kolbeh","radius":0,"latitude":29.61043,"longitude":52.57355,"parent_id":null,"city_id":6},{"id":526,"name":"\u0641\u0633\u0627","name_en":"fasa","radius":0,"latitude":28.94949,"longitude":53.630043,"parent_id":null,"city_id":6},{"id":527,"name":"\u0641\u0636\u06cc\u0644\u062a","name_en":"fazilatblvd","radius":0,"latitude":29.596678,"longitude":52.575417,"parent_id":null,"city_id":6},{"id":529,"name":"\u0632\u0646\u062f","name_en":"zand","radius":0,"latitude":29.621872,"longitude":52.53754,"parent_id":null,"city_id":6},{"id":530,"name":"\u0634\u0647\u0631\u06a9 \u0646\u0635\u0631","name_en":"nasr","radius":0,"latitude":29.583311,"longitude":52.631474,"parent_id":null,"city_id":6},{"id":531,"name":"\u0642\u062f\u0648\u0633\u06cc \u0634\u0631\u0642\u06cc","name_en":"eastghoddusi","radius":0,"latitude":29.625301,"longitude":52.483456,"parent_id":null,"city_id":6},{"id":532,"name":"\u0642\u062f\u0648\u0633\u06cc \u063a\u0631\u0628\u06cc","name_en":"westghoddusi","radius":0,"latitude":29.63343,"longitude":52.47541,"parent_id":null,"city_id":6},{"id":533,"name":"\u0632\u0631\u06af\u0631\u06cc","name_en":"zargari","radius":0,"latitude":29.635319,"longitude":52.500244,"parent_id":null,"city_id":6},{"id":534,"name":"\u0633\u06cc\u0646\u0645\u0627 \u0633\u0639\u062f\u06cc","name_en":"sadicinema","radius":0,"latitude":29.621988,"longitude":52.52455,"parent_id":null,"city_id":6},{"id":535,"name":"\u0639\u0641\u06cc\u0641\u200c\u0622\u0628\u0627\u062f","name_en":"afifabad","radius":0,"latitude":29.628698,"longitude":52.5052,"parent_id":null,"city_id":6},{"id":536,"name":"\u0634\u0647\u0631\u06a9 \u0634\u0647\u06cc\u062f \u0628\u0647\u0634\u062a\u06cc","name_en":"shahrakebeheshti","radius":0,"latitude":29.719988,"longitude":52.438423,"parent_id":null,"city_id":6},{"id":537,"name":"\u0631\u06a9\u0646\u200c\u0622\u0628\u0627\u062f","name_en":"shahrakeroknabad","radius":0,"latitude":29.68178,"longitude":52.547443,"parent_id":null,"city_id":6},{"id":538,"name":"\u0633\u062c\u0627\u062f (\u0628\u0646\u06cc \u0647\u0627\u0634\u0645)","name_en":"banihashemi","radius":0,"latitude":29.57911,"longitude":52.535854,"parent_id":null,"city_id":6},{"id":540,"name":"\u06af\u0644\u062f\u0634\u062a \u062d\u0627\u0641\u0638","name_en":"goldashthafez","radius":0,"latitude":29.733107,"longitude":52.431255,"parent_id":null,"city_id":6},{"id":542,"name":"\u0634\u0647\u0631\u06a9 \u067e\u0631\u0648\u0627\u0632","name_en":"parvaztown","radius":0,"latitude":29.587181,"longitude":52.587345,"parent_id":null,"city_id":6},{"id":543,"name":"\u0639\u0627\u062f\u0644\u200c\u0622\u0628\u0627\u062f (\u0628\u0644\u0648\u0627\u0631 \u0639\u062f\u0627\u0644\u062a)","name_en":"edalatblvd","radius":0,"latitude":29.577778,"longitude":52.504303,"parent_id":null,"city_id":6},{"id":544,"name":"\u062e\u0644\u062f\u0628\u0631\u06cc\u0646","name_en":"kholbarin","radius":0,"latitude":29.622791,"longitude":52.51206,"parent_id":null,"city_id":6},{"id":548,"name":"\u0645\u0646\u0637\u0642\u0647 \u0647\u0648\u0627\u06cc\u06cc \u062f\u0648\u0631\u0627\u0646","name_en":"dowran","radius":0,"latitude":29.558596,"longitude":52.586388,"parent_id":null,"city_id":6},{"id":550,"name":"\u0634\u0647\u0631\u06a9 \u0627\u0645\u0627\u0645 \u0631\u0636\u0627 (\u0641\u0631\u06af\u0627\u0632)","name_en":"fergaz","radius":0,"latitude":29.590271,"longitude":52.499367,"parent_id":null,"city_id":6},{"id":551,"name":"\u062c\u0645\u0647\u0648\u0631\u06cc","name_en":"jomhouriblvd","radius":0,"latitude":29.63913,"longitude":52.54338,"parent_id":null,"city_id":6},{"id":552,"name":"\u067e\u0627\u0631\u06a9 \u0622\u0632\u0627\u062f\u06cc","name_en":"azadisq","radius":0,"latitude":29.628775,"longitude":52.539257,"parent_id":null,"city_id":6},{"id":554,"name":"\u0634\u0647\u0631\u06a9 \u0634\u0647\u06cc\u062f \u0645\u0637\u0647\u0631\u06cc","name_en":"motahharitown","radius":0,"latitude":29.576256,"longitude":52.52098,"parent_id":null,"city_id":6},{"id":555,"name":"\u0628\u0639\u062b\u062a","name_en":"besat","radius":0,"latitude":29.618067,"longitude":52.50298,"parent_id":null,"city_id":6},{"id":563,"name":"\u06a9\u0648\u06cc \u0632\u0647\u0631\u0627","name_en":"kuyezahra","radius":0,"latitude":29.58742,"longitude":52.56855,"parent_id":null,"city_id":6},{"id":565,"name":"\u0641\u0631\u062f\u06cc\u0633","name_en":"fardis","radius":0,"latitude":35.727642,"longitude":50.979206,"parent_id":null,"city_id":2},{"id":566,"name":"\u06af\u0648\u0647\u0631\u062f\u0634\u062a","name_en":"gohardasht","radius":0,"latitude":35.855244,"longitude":50.971992,"parent_id":null,"city_id":2},{"id":567,"name":"\u0645\u0647\u0631\u0634\u0647\u0631 - \u0641\u0627\u0632 \u06f4","name_en":"mehrshahr","radius":0,"latitude":35.813244,"longitude":50.937103,"parent_id":null,"city_id":2},{"id":568,"name":"\u06af\u0644\u0634\u0647\u0631","name_en":"golshahr","radius":0,"latitude":35.82485,"longitude":50.927223,"parent_id":null,"city_id":2},{"id":569,"name":"\u0639\u0638\u06cc\u0645\u06cc\u0647","name_en":"azimieh","radius":0,"latitude":35.836227,"longitude":51.016308,"parent_id":null,"city_id":2},{"id":570,"name":"\u0634\u0627\u0647\u06cc\u0646\u200c\u0648\u06cc\u0644\u0627","name_en":"shahinvilla","radius":0,"latitude":35.855057,"longitude":50.948406,"parent_id":null,"city_id":2},{"id":571,"name":"\u0645\u0647\u0631\u0648\u06cc\u0644\u0627","name_en":"mehrvilla","radius":0,"latitude":35.810448,"longitude":50.96095,"parent_id":null,"city_id":2},{"id":572,"name":"\u062c\u0647\u0627\u0646\u200c\u0634\u0647\u0631","name_en":"jahanshahr","radius":0,"latitude":35.83133,"longitude":50.985382,"parent_id":null,"city_id":2},{"id":573,"name":"\u0628\u0627\u063a\u0633\u062a\u0627\u0646","name_en":"baghestan","radius":0,"latitude":35.876934,"longitude":50.960846,"parent_id":null,"city_id":2},{"id":574,"name":"\u0647\u0634\u062a\u06af\u0631\u062f","name_en":"hashtgerd","radius":0,"latitude":35.964813,"longitude":50.68988,"parent_id":null,"city_id":2},{"id":575,"name":"\u0634\u0647\u0631 \u062c\u062f\u06cc\u062f \u0647\u0634\u062a\u06af\u0631\u062f","name_en":"hashtgerdnewcity","radius":0,"latitude":35.987675,"longitude":50.72711,"parent_id":null,"city_id":2},{"id":576,"name":"\u0634\u0647\u0631 \u062c\u062f\u06cc\u062f \u0627\u0646\u062f\u06cc\u0634\u0647","name_en":"andishehnewcity","radius":0,"latitude":35.69749,"longitude":51.02019,"parent_id":null,"city_id":2},{"id":577,"name":"\u0645\u0627\u0631\u0644\u06cc\u06a9","name_en":"marlik","radius":0,"latitude":35.68833,"longitude":50.979565,"parent_id":null,"city_id":2},{"id":578,"name":"\u0645\u062d\u0645\u062f\u0634\u0647\u0631","name_en":"mohammadshahr","radius":0,"latitude":35.763504,"longitude":50.919235,"parent_id":null,"city_id":2},{"id":579,"name":"\u062d\u0635\u0627\u0631\u06a9","name_en":"hesarak","radius":0,"latitude":35.849277,"longitude":50.92282,"parent_id":null,"city_id":2},{"id":580,"name":"\u0645\u0635\u0628\u0627\u062d","name_en":"mesbah","radius":0,"latitude":35.80109,"longitude":50.996807,"parent_id":null,"city_id":2},{"id":581,"name":"\u06a9\u0645\u0627\u0644\u200c\u0634\u0647\u0631","name_en":"kamalshahr","radius":0,"latitude":35.882202,"longitude":50.87708,"parent_id":null,"city_id":2},{"id":582,"name":"\u06a9\u06cc\u0627\u0646\u0645\u0647\u0631","name_en":"kianmehr","radius":0,"latitude":35.777237,"longitude":50.85977,"parent_id":null,"city_id":2},{"id":583,"name":"\u0645\u0627\u0647\u062f\u0634\u062a","name_en":"mahdasht","radius":0,"latitude":35.724434,"longitude":50.80263,"parent_id":null,"city_id":2},{"id":584,"name":"\u0634\u0647\u0631\u06cc\u0627\u0631","name_en":"shahriar-karaj","radius":10000,"latitude":35.62124,"longitude":51.05304,"parent_id":null,"city_id":2},{"id":585,"name":"\u0647\u0641\u062a \u062a\u06cc\u0631","name_en":"haftetir-karaj","radius":0,"latitude":35.81189,"longitude":50.98891,"parent_id":null,"city_id":2},{"id":586,"name":"\u0637\u0627\u0644\u0642\u0627\u0646\u06cc","name_en":"taleqani-karaj","radius":0,"latitude":35.82034,"longitude":50.990555,"parent_id":null,"city_id":2},{"id":587,"name":"\u0645\u0646\u0638\u0631\u06cc\u0647","name_en":"manzarieh","radius":0,"latitude":35.74256,"longitude":51.01013,"parent_id":null,"city_id":2},{"id":588,"name":"\u062e\u0631\u0645\u062f\u0634\u062a","name_en":"khorramdasht","radius":0,"latitude":35.84902,"longitude":50.89169,"parent_id":null,"city_id":2},{"id":589,"name":"\u0622\u0632\u0627\u062f\u06af\u0627\u0646","name_en":"azadegan","radius":0,"latitude":35.828716,"longitude":50.999584,"parent_id":null,"city_id":2},{"id":590,"name":"\u0634\u0647\u0631\u06a9 \u0628\u0646\u0641\u0634\u0647","name_en":"banafsheh","radius":0,"latitude":35.781105,"longitude":50.999054,"parent_id":null,"city_id":2},{"id":591,"name":"\u062f\u0647\u0642\u0627\u0646 \u0648\u06cc\u0644\u0627","name_en":"dehghanvilla","radius":0,"latitude":35.827637,"longitude":50.956955,"parent_id":null,"city_id":2},{"id":592,"name":"\u0645\u0644\u0627\u0631\u062f","name_en":"malard","radius":0,"latitude":35.668873,"longitude":50.991447,"parent_id":null,"city_id":2},{"id":593,"name":"\u0645\u0634\u06a9\u06cc\u0646\u200c\u062f\u0634\u062a","name_en":"meshkindasht","radius":0,"latitude":35.75546,"longitude":50.959534,"parent_id":null,"city_id":2},{"id":594,"name":"\u0634\u0647\u0631\u06a9 \u0648\u062d\u062f\u062a","name_en":"vahdattown","radius":0,"latitude":35.755,"longitude":51.015953,"parent_id":null,"city_id":2},{"id":596,"name":"\u0634\u0647\u0631\u06a9 \u0627\u0648\u062c","name_en":"owjtown","radius":0,"latitude":35.848404,"longitude":50.994953,"parent_id":null,"city_id":2},{"id":597,"name":"\u0633\u0627\u0633\u0627\u0646\u06cc","name_en":"sassani","radius":0,"latitude":35.795418,"longitude":50.99311,"parent_id":null,"city_id":2},{"id":598,"name":"\u062f\u0631\u062e\u062a\u06cc","name_en":"derakhti","radius":0,"latitude":35.813576,"longitude":50.96867,"parent_id":null,"city_id":2},{"id":600,"name":"\u067e\u0631\u062f\u06cc\u0633\u0627\u0646","name_en":"pardisan-ghom","radius":2200,"latitude":34.555195,"longitude":50.809322,"parent_id":null,"city_id":8},{"id":601,"name":"\u0635\u0641\u0627\u0626\u06cc\u0647","name_en":"safaeieh","radius":800,"latitude":34.636368,"longitude":50.872086,"parent_id":null,"city_id":8},{"id":603,"name":"\u0628\u0627\u062c\u06a9 (\u06f1\u06f9 \u062f\u06cc)","name_en":"bajak","radius":2100,"latitude":34.65459,"longitude":50.8982,"parent_id":null,"city_id":8},{"id":604,"name":"\u0628\u0646\u06cc\u0627\u062f","name_en":"bonyad","radius":1000,"latitude":34.59893,"longitude":50.86409,"parent_id":null,"city_id":8},{"id":605,"name":"\u0627\u0645\u0627\u0645","name_en":"emam","radius":2000,"latitude":34.667164,"longitude":50.875237,"parent_id":null,"city_id":8},{"id":606,"name":"\u0632\u0646\u0628\u06cc\u0644\u200c\u0622\u0628\u0627\u062f (\u0634\u0647\u06cc\u062f \u0635\u062f\u0648\u0642\u06cc)","name_en":"zanbilabad","radius":1600,"latitude":34.61575,"longitude":50.858643,"parent_id":null,"city_id":8},{"id":607,"name":"\u062a\u0648\u062d\u06cc\u062f","name_en":"tohid-ghom","radius":2200,"latitude":34.648285,"longitude":50.85133,"parent_id":null,"city_id":8},{"id":608,"name":"\u0628\u0644\u0648\u0627\u0631 \u0627\u0645\u06cc\u0646","name_en":"amin","radius":1500,"latitude":34.622154,"longitude":50.84989,"parent_id":null,"city_id":8},{"id":609,"name":"\u0622\u0632\u0627\u062f\u06af\u0627\u0646","name_en":"azadegan-qom","radius":600,"latitude":34.672512,"longitude":50.890697,"parent_id":null,"city_id":8},{"id":610,"name":"\u0633\u0627\u0644\u0627\u0631\u06cc\u0647","name_en":"Salarieh","radius":800,"latitude":34.615612,"longitude":50.847645,"parent_id":null,"city_id":8},{"id":611,"name":"\u0622\u0630\u0631","name_en":"azar","radius":2600,"latitude":34.634186,"longitude":50.89986,"parent_id":null,"city_id":8},{"id":612,"name":"\u062d\u0631\u0645","name_en":"haram","radius":850,"latitude":34.64255,"longitude":50.879585,"parent_id":null,"city_id":8},{"id":613,"name":"\u062f\u0648\u0631\u0634\u0647\u0631","name_en":"dourshahr","radius":800,"latitude":34.629726,"longitude":50.871655,"parent_id":null,"city_id":8},{"id":614,"name":"\u0634\u0647\u0631\u06a9 \u0642\u062f\u0633","name_en":"qods","radius":2000,"latitude":34.59801,"longitude":50.84245,"parent_id":null,"city_id":8},{"id":615,"name":"\u062c\u0645\u0647\u0648\u0631\u06cc","name_en":"jomhoori","radius":1500,"latitude":34.62283,"longitude":50.87131,"parent_id":null,"city_id":8},{"id":616,"name":"\u0639\u0637\u0627\u0631\u0627\u0646","name_en":"attaran","radius":800,"latitude":34.62174,"longitude":50.86671,"parent_id":null,"city_id":8},{"id":617,"name":"\u0647\u0646\u0631\u0633\u062a\u0627\u0646","name_en":"honarestan-ghom","radius":500,"latitude":34.62952,"longitude":50.89231,"parent_id":null,"city_id":8},{"id":618,"name":"\u0633\u0645\u06cc\u0647","name_en":"somayyeh","radius":700,"latitude":34.62936,"longitude":50.881012,"parent_id":null,"city_id":8},{"id":619,"name":"\u0647\u0641\u062a \u062a\u06cc\u0631","name_en":"haftetir-ghom","radius":1400,"latitude":34.65927,"longitude":50.88657,"parent_id":null,"city_id":8},{"id":620,"name":"\u06a9\u0644\u0647\u0631\u06cc","name_en":"kalhori","radius":1200,"latitude":34.616505,"longitude":50.906647,"parent_id":null,"city_id":8},{"id":621,"name":"\u0635\u0641\u0627\u0634\u0647\u0631","name_en":"safashahr","radius":1200,"latitude":34.60664,"longitude":50.845238,"parent_id":null,"city_id":8},{"id":622,"name":"\u0627\u0646\u0633\u062c\u0627\u0645","name_en":"ensejam","radius":1600,"latitude":34.60471,"longitude":50.886208,"parent_id":null,"city_id":8},{"id":623,"name":"\u06a9\u06cc\u0648\u0627\u0646\u0641\u0631","name_en":"keyvanfar","radius":1000,"latitude":34.65743,"longitude":50.88501,"parent_id":null,"city_id":8},{"id":624,"name":"\u067e\u0644\u06cc\u0633","name_en":"police","radius":600,"latitude":34.625984,"longitude":50.90734,"parent_id":null,"city_id":8},{"id":625,"name":"\u0639\u0645\u0627\u0631 \u06cc\u0627\u0633\u0631","name_en":"ammareyaser","radius":1800,"latitude":34.650482,"longitude":50.902084,"parent_id":null,"city_id":8},{"id":626,"name":"\u067e\u06cc\u0627\u0645 \u0646\u0648\u0631","name_en":"payamenoor","radius":400,"latitude":34.651707,"longitude":50.91314,"parent_id":null,"city_id":8},{"id":627,"name":"\u062f\u0627\u0646\u06cc\u0627\u0644","name_en":"danial","radius":800,"latitude":34.61072,"longitude":50.872684,"parent_id":null,"city_id":8},{"id":628,"name":"\u06cc\u0632\u062f\u0627\u0646\u200c\u0634\u0647\u0631","name_en":"yazdanshahr","radius":500,"latitude":34.6176,"longitude":50.880054,"parent_id":null,"city_id":8},{"id":629,"name":"\u0627\u0646\u0642\u0644\u0627\u0628 (\u0686\u0647\u0627\u0631\u0645\u0631\u062f\u0627\u0646)","name_en":"enqelab-ghom","radius":1000,"latitude":34.636833,"longitude":50.88867,"parent_id":null,"city_id":8},{"id":630,"name":"\u0627\u0646\u0635\u0627\u0631\u200c\u0627\u0644\u062d\u0633\u06cc\u0646","name_en":"ansar","radius":600,"latitude":34.676083,"longitude":50.882168,"parent_id":null,"city_id":8},{"id":631,"name":"\u0627\u0645\u0627\u0645\u0632\u0627\u062f\u0647 \u0627\u0628\u0631\u0627\u0647\u06cc\u0645","name_en":"emamzadehebrahim","radius":2700,"latitude":34.6578,"longitude":50.858368,"parent_id":null,"city_id":8},{"id":632,"name":"\u0645\u062f\u0631\u0633","name_en":"modarres","radius":1000,"latitude":34.681454,"longitude":50.866817,"parent_id":null,"city_id":8},{"id":633,"name":"\u0628\u0644\u0648\u0627\u0631 \u06f1\u06f5 \u062e\u0631\u062f\u0627\u062f","name_en":"15khordad","radius":2200,"latitude":34.6427,"longitude":50.905926,"parent_id":null,"city_id":8},{"id":634,"name":"\u0628\u0644\u0648\u0627\u0631 \u06a9\u0627\u0634\u0627\u0646\u06cc","name_en":"kashani","radius":1500,"latitude":34.654766,"longitude":50.86441,"parent_id":null,"city_id":8},{"id":635,"name":"\u0634\u0647\u06cc\u062f \u0628\u0647\u0634\u062a\u06cc","name_en":"beheshti","radius":1200,"latitude":34.6703,"longitude":50.885227,"parent_id":null,"city_id":8},{"id":636,"name":"\u06af\u0644\u0632\u0627\u0631","name_en":"golzar","radius":400,"latitude":34.63099,"longitude":50.89716,"parent_id":null,"city_id":8},{"id":637,"name":"\u0634\u0631\u06cc\u0641\u200c\u0622\u0628\u0627\u062f","name_en":"sharifabad","radius":1993,"latitude":35.4279,"longitude":51.786552,"parent_id":null,"city_id":1},{"id":638,"name":"\u067e\u0627\u06a9\u062f\u0634\u062a","name_en":"pakdasht","radius":3256,"latitude":35.474903,"longitude":51.67914,"parent_id":null,"city_id":1},{"id":639,"name":"\u0642\u06cc\u0627\u0645\u200c\u062f\u0634\u062a","name_en":"qiamdash","radius":1500,"latitude":35.524456,"longitude":51.65067,"parent_id":null,"city_id":1},{"id":640,"name":"\u0632\u06cc\u0628\u0627\u0634\u0647\u0631","name_en":"zibashahr","radius":0,"latitude":29.660955,"longitude":52.561737,"parent_id":null,"city_id":6},{"id":642,"name":"\u0628\u0644\u0648\u0627\u0631 \u062a\u0648\u0633","name_en":"bolvartoos","radius":0,"latitude":36.37957,"longitude":59.533016,"parent_id":null,"city_id":3},{"id":643,"name":"\u0634\u0647\u0631\u06a9 \u0634\u0647\u06cc\u062f \u0631\u062c\u0627\u06cc\u06cc","name_en":"rajaee","radius":0,"latitude":36.270096,"longitude":59.687237,"parent_id":null,"city_id":3},{"id":644,"name":"\u06a9\u0648\u06cc \u0641\u0631\u0647\u0646\u06af\u06cc\u0627\u0646","name_en":"farhangian","radius":800,"latitude":31.3594,"longitude":48.757477,"parent_id":null,"city_id":7},{"id":645,"name":"\u062d\u0633\u06cc\u0646\u200c\u0622\u0628\u0627\u062f","name_en":"hoseinabad","radius":0,"latitude":32.625713,"longitude":51.64471,"parent_id":null,"city_id":4},{"id":646,"name":"\u0632\u0631\u06cc\u0646\u200c\u0634\u0647\u0631","name_en":"zarinshahr","radius":0,"latitude":32.391613,"longitude":51.38099,"parent_id":null,"city_id":4},{"id":653,"name":"\u0634\u0647\u0631\u06cc\u0627\u0631","name_en":"shahriar","radius":7655,"latitude":35.659954,"longitude":51.05682,"parent_id":null,"city_id":1},{"id":654,"name":"\u0622\u0630\u0631\u0628\u0627\u06cc\u062c\u0627\u0646","name_en":"azarbaijan","radius":2000,"latitude":35.69893,"longitude":51.371666,"parent_id":null,"city_id":1},{"id":655,"name":"\u0645\u06cc\u062f\u0627\u0646 \u0627\u0646\u0642\u0644\u0627\u0628","name_en":"enqelab","radius":400,"latitude":35.69842,"longitude":51.402332,"parent_id":null,"city_id":1},{"id":656,"name":"\u0634\u0627\u062f\u0645\u0647\u0631","name_en":"shadman","radius":800,"latitude":35.70762,"longitude":51.36435,"parent_id":null,"city_id":1},{"id":657,"name":"\u062c\u06cc\u062d\u0648\u0646","name_en":"jeyhoun","radius":1100,"latitude":35.69009,"longitude":51.366905,"parent_id":null,"city_id":1},{"id":658,"name":"\u0645\u06cc\u062f\u0627\u0646 \u0648\u0644\u06cc\u0639\u0635\u0631","name_en":"valiasr","radius":500,"latitude":35.706383,"longitude":51.408028,"parent_id":null,"city_id":1},{"id":673,"name":"\u0641\u06cc\u0631\u0648\u0632\u06a9\u0648\u0647","name_en":"firuzkuh","radius":1952,"latitude":35.75885,"longitude":52.77096,"parent_id":null,"city_id":1},{"id":875,"name":"\u06af\u0632","name_en":"gaz","radius":0,"latitude":32.807724,"longitude":51.618603,"parent_id":null,"city_id":4},{"id":907,"name":"\u0622\u0628\u0634\u0627\u0631 \u062a\u0647\u0631\u0627\u0646","name_en":"abshar-tehran","radius":0,"latitude":35.760254,"longitude":51.224438,"parent_id":null,"city_id":1},{"id":908,"name":"\u0647\u0648\u0627\u0646\u06cc\u0631\u0648\u0632","name_en":"havanirooz","radius":0,"latitude":35.740215,"longitude":51.24215,"parent_id":null,"city_id":1},{"id":909,"name":"\u06a9\u0648\u0647\u06a9","name_en":"kuhak","radius":0,"latitude":35.726765,"longitude":51.2347,"parent_id":null,"city_id":1},{"id":910,"name":"\u0634\u0647\u0631\u06a9 \u067e\u0627\u0633\u062f\u0627\u0631\u0627\u0646","name_en":"shahrak-pasdaran","radius":0,"latitude":35.695168,"longitude":51.262928,"parent_id":null,"city_id":1},{"id":911,"name":"\u0634\u0647\u0631\u06a9 \u0641\u0631\u0647\u0646\u06af\u06cc\u0627\u0646","name_en":"shahrak-farhangian","radius":0,"latitude":35.7092,"longitude":51.285786,"parent_id":null,"city_id":1},{"id":912,"name":"\u0641\u062a\u062d","name_en":"fath","radius":0,"latitude":35.677116,"longitude":51.300945,"parent_id":null,"city_id":1},{"id":913,"name":"\u0633\u0639\u06cc\u062f\u0622\u0628\u0627\u062f","name_en":"saeed-abad","radius":0,"latitude":35.654907,"longitude":51.287888,"parent_id":null,"city_id":1},{"id":914,"name":"\u0633\u0631\u0622\u0633\u06cc\u0627\u0628 \u0645\u0647\u0631\u0622\u0628\u0627\u062f","name_en":"sar-asiyab-mehr-abad","radius":0,"latitude":35.671803,"longitude":51.329636,"parent_id":null,"city_id":1},{"id":915,"name":"\u0634\u0645\u0634\u06cc\u0631\u06cc","name_en":"shamshiri","radius":0,"latitude":35.6705,"longitude":51.34245,"parent_id":null,"city_id":1},{"id":916,"name":"\u062a\u0648\u0644\u06cc\u062f \u062f\u0627\u0631\u0648","name_en":"tolid-daroo","radius":0,"latitude":35.663723,"longitude":51.33797,"parent_id":null,"city_id":1},{"id":917,"name":"\u0628\u0647\u062f\u0627\u0634\u062a","name_en":"behdasht","radius":0,"latitude":35.657097,"longitude":51.337975,"parent_id":null,"city_id":1},{"id":918,"name":"\u062f\u0648\u0644\u062a\u062e\u0648\u0627\u0647","name_en":"dolatkhah","radius":0,"latitude":35.618443,"longitude":51.342953,"parent_id":null,"city_id":1},{"id":919,"name":"\u062d\u0635\u0627\u0631\u06a9","name_en":"tehran-hesarak","radius":0,"latitude":35.78346,"longitude":51.312172,"parent_id":null,"city_id":1},{"id":920,"name":"\u0628\u0627\u063a \u0641\u06cc\u0636","name_en":"bagh-feyz","radius":0,"latitude":35.744724,"longitude":51.322525,"parent_id":null,"city_id":1},{"id":921,"name":"\u0634\u0647\u0631\u06a9 \u0646\u0641\u062a (\u0645\u0646\u0637\u0642\u0647 \u06f5)","name_en":"shahrak-naft-district5","radius":0,"latitude":35.791824,"longitude":51.337845,"parent_id":null,"city_id":1},{"id":922,"name":"\u067e\u0631\u0648\u0627\u0632","name_en":"parvaz","radius":0,"latitude":35.789352,"longitude":51.3541,"parent_id":null,"city_id":1},{"id":923,"name":"\u06a9\u0648\u06cc \u0641\u0631\u0627\u0632","name_en":"kuy-faraz","radius":0,"latitude":35.796703,"longitude":51.371002,"parent_id":null,"city_id":1},{"id":924,"name":"\u0647\u0632\u0627\u0631\u0633\u0646\u06af","name_en":"hezarsang","radius":0,"latitude":35.80534,"longitude":51.378937,"parent_id":null,"city_id":1},{"id":925,"name":"\u0622\u0633\u0645\u0627\u0646","name_en":"aseman","radius":0,"latitude":35.778248,"longitude":51.35162,"parent_id":null,"city_id":1},{"id":926,"name":"\u0633\u067e\u0647\u0631","name_en":"sepehr","radius":0,"latitude":35.768726,"longitude":51.353603,"parent_id":null,"city_id":1},{"id":927,"name":"\u0627\u06cc\u0648\u0627\u0646\u06a9","name_en":"eivanak","radius":0,"latitude":35.756733,"longitude":51.35456,"parent_id":null,"city_id":1},{"id":928,"name":"\u062f\u0627\u0646\u0634\u06af\u0627\u0647 \u0634\u0631\u06cc\u0641","name_en":"university-of-sharif","radius":0,"latitude":35.705585,"longitude":51.35292,"parent_id":null,"city_id":1},{"id":929,"name":"\u062f\u0631\u06cc\u0627","name_en":"darya","radius":0,"latitude":35.771034,"longitude":51.37821,"parent_id":null,"city_id":1},{"id":930,"name":"\u0628\u0627\u063a \u0641\u0631\u062f\u0648\u0633","name_en":"bagh-ferdows","radius":0,"latitude":35.803352,"longitude":51.424007,"parent_id":null,"city_id":1},{"id":931,"name":"\u062d\u06a9\u0645\u062a","name_en":"hekmat","radius":0,"latitude":35.800762,"longitude":51.442806,"parent_id":null,"city_id":1},{"id":932,"name":"\u0634\u0647\u0631\u06a9 \u0648\u0627\u0644\u0641\u062c\u0631 (\u0645\u0646\u0637\u0642\u0647 \u06f6)","name_en":"shahrak-valfajr","radius":0,"latitude":35.746147,"longitude":51.39053,"parent_id":null,"city_id":1},{"id":933,"name":"\u062c\u0647\u0627\u062f","name_en":"jahad","radius":0,"latitude":35.72464,"longitude":51.403404,"parent_id":null,"city_id":1},{"id":934,"name":"\u062a\u0648\u0627\u0646\u06cc\u0631","name_en":"tavanir","radius":0,"latitude":35.745815,"longitude":51.408955,"parent_id":null,"city_id":1},{"id":935,"name":"\u0646\u0635\u0631\u062a","name_en":"nosrat","radius":0,"latitude":35.706745,"longitude":51.38434,"parent_id":null,"city_id":1},{"id":936,"name":"\u0646\u062c\u0627\u062a \u0627\u0644\u0644\u0647\u06cc","name_en":"nejatollahi","radius":0,"latitude":35.708202,"longitude":51.415264,"parent_id":null,"city_id":1},{"id":937,"name":"\u062e\u0627\u0642\u0627\u0646\u06cc","name_en":"tehran-khaghani","radius":0,"latitude":35.711193,"longitude":51.428223,"parent_id":null,"city_id":1},{"id":938,"name":"\u0628\u0647\u0627\u0631","name_en":"bahar","radius":0,"latitude":35.71066,"longitude":51.43321,"parent_id":null,"city_id":1},{"id":939,"name":"\u0646\u06cc\u0644\u0648\u0641\u0631","name_en":"niloufar","radius":0,"latitude":35.73617,"longitude":51.43405,"parent_id":null,"city_id":1},{"id":940,"name":"\u062f\u0631\u0628 \u062f\u0648\u0645","name_en":"darb-dowom","radius":0,"latitude":35.781128,"longitude":51.441833,"parent_id":null,"city_id":1},{"id":941,"name":"\u0642\u0628\u0627","name_en":"qoba","radius":0,"latitude":35.76101,"longitude":51.44923,"parent_id":null,"city_id":1},{"id":942,"name":"\u062d\u0635\u0627\u0631 \u0628\u0648\u0639\u0644\u06cc","name_en":"hesar-booali","radius":0,"latitude":35.805046,"longitude":51.468655,"parent_id":null,"city_id":1},{"id":943,"name":"\u0627\u0631\u0627\u062c","name_en":"araj","radius":0,"latitude":35.794216,"longitude":51.48749,"parent_id":null,"city_id":1},{"id":944,"name":"\u06a9\u0648\u06cc \u0646\u0648\u0628\u0646\u06cc\u0627\u062f","name_en":"kuy-nobonyad","radius":0,"latitude":35.78313,"longitude":51.486397,"parent_id":null,"city_id":1},{"id":945,"name":"\u06a9\u0631\u0645\u0627\u0646","name_en":"tehran-kerman","radius":0,"latitude":35.732655,"longitude":51.47384,"parent_id":null,"city_id":1},{"id":946,"name":"\u0633\u0631\u062e\u0647 \u062d\u0635\u0627\u0631","name_en":"sorkhe-hesar","radius":0,"latitude":35.7236,"longitude":51.557583,"parent_id":null,"city_id":1},{"id":947,"name":"\u062c\u0648\u0627\u062f\u06cc\u0647 \u062a\u0647\u0631\u0627\u0646\u067e\u0627\u0631\u0633","name_en":"javadiyeh-tehran-pars","radius":0,"latitude":35.732334,"longitude":51.549267,"parent_id":null,"city_id":1},{"id":948,"name":"\u062e\u0627\u06a9 \u0633\u0641\u06cc\u062f","name_en":"khak-sefid","radius":0,"latitude":35.742546,"longitude":51.56312,"parent_id":null,"city_id":1},{"id":949,"name":"\u0644\u0634\u06a9\u0631","name_en":"tehran-lashkar","radius":0,"latitude":35.72747,"longitude":51.4657,"parent_id":null,"city_id":1},{"id":950,"name":"\u0633\u0628\u0644\u0627\u0646","name_en":"sabalan","radius":0,"latitude":35.724483,"longitude":51.463333,"parent_id":null,"city_id":1},{"id":951,"name":"\u0622\u0634\u062a\u06cc\u0627\u0646\u06cc","name_en":"ashtiyani","radius":0,"latitude":35.716106,"longitude":51.50636,"parent_id":null,"city_id":1},{"id":952,"name":"\u062d\u0627\u0641\u0638\u06cc\u0647","name_en":"hafezie","radius":0,"latitude":35.70122,"longitude":51.495712,"parent_id":null,"city_id":1},{"id":953,"name":"\u0627\u0645\u0627\u0645\u062a","name_en":"tehran-emamat","radius":0,"latitude":35.710205,"longitude":51.489746,"parent_id":null,"city_id":1},{"id":954,"name":"\u0646\u0627\u0631\u0645\u06a9 \u062c\u0646\u0648\u0628\u06cc","name_en":"south-narmak","radius":0,"latitude":35.717785,"longitude":51.490887,"parent_id":null,"city_id":1},{"id":955,"name":"\u0632\u0631\u06a9\u0634","name_en":"zarkesh","radius":0,"latitude":35.7161,"longitude":51.480354,"parent_id":null,"city_id":1},{"id":956,"name":"\u062a\u0633\u0644\u06cc\u062d\u0627\u062a","name_en":"taslihat","radius":0,"latitude":35.71927,"longitude":51.47311,"parent_id":null,"city_id":1},{"id":957,"name":"\u0634\u0627\u0631\u0642 \u0634\u0631\u0642\u06cc","name_en":"east-shareq","radius":0,"latitude":35.711483,"longitude":51.4654,"parent_id":null,"city_id":1},{"id":958,"name":"\u062e\u0648\u0627\u062c\u0647 \u0646\u0638\u0627\u0645 \u0627\u0644\u0645\u0644\u06a9","name_en":"khaje-nezam-molk","radius":0,"latitude":35.71325,"longitude":51.447914,"parent_id":null,"city_id":1},{"id":959,"name":"\u067e\u0644\u06cc\u0633","name_en":"tehran-police","radius":0,"latitude":35.713795,"longitude":51.441837,"parent_id":null,"city_id":1},{"id":960,"name":"\u06af\u0631\u06af\u0627\u0646","name_en":"tehran-gorgan","radius":0,"latitude":35.709583,"longitude":51.450798,"parent_id":null,"city_id":1},{"id":961,"name":"\u0642\u0627\u0633\u0645\u200c\u0622\u0628\u0627\u062f","name_en":"qasemabad","radius":0,"latitude":35.707375,"longitude":51.473232,"parent_id":null,"city_id":1},{"id":962,"name":"\u062f\u0647\u0642\u0627\u0646","name_en":"dehqan","radius":0,"latitude":35.695724,"longitude":51.47666,"parent_id":null,"city_id":1},{"id":963,"name":"\u0634\u0647\u06cc\u062f \u0627\u0633\u062f\u06cc","name_en":"shahid-asadi","radius":0,"latitude":35.701523,"longitude":51.455486,"parent_id":null,"city_id":1},{"id":964,"name":"\u0632\u0627\u0647\u062f \u06af\u06cc\u0644\u0627\u0646\u06cc","name_en":"zahed-gilani","radius":0,"latitude":35.694157,"longitude":51.46017,"parent_id":null,"city_id":1},{"id":965,"name":"\u067e\u0631\u0633\u062a\u0627\u0631","name_en":"parastar","radius":0,"latitude":35.688297,"longitude":51.485924,"parent_id":null,"city_id":1},{"id":966,"name":"\u062a\u0627\u06a9\u0633\u06cc\u0631\u0627\u0646\u06cc","name_en":"taxirani","radius":0,"latitude":35.671955,"longitude":51.487354,"parent_id":null,"city_id":1},{"id":967,"name":"\u0646\u0628\u06cc \u0627\u06a9\u0631\u0645(\u0635)","name_en":"nabi-akram","radius":0,"latitude":35.682953,"longitude":51.476208,"parent_id":null,"city_id":1},{"id":968,"name":"\u0634\u06cc\u0648\u0627","name_en":"shiva","radius":0,"latitude":35.68004,"longitude":51.46926,"parent_id":null,"city_id":1},{"id":969,"name":"\u0634\u06a9\u0648\u0641\u0647","name_en":"shokoofeh","radius":0,"latitude":35.68404,"longitude":51.448647,"parent_id":null,"city_id":1},{"id":970,"name":"\u0633\u0631\u0622\u0633\u06cc\u0627\u0628 \u062f\u0648\u0644\u0627\u0628","name_en":"sarasiab-doolab","radius":0,"latitude":35.67948,"longitude":51.460705,"parent_id":null,"city_id":1},{"id":971,"name":"\u062c\u0627\u0628\u0631\u06cc","name_en":"jaberi","radius":0,"latitude":35.683502,"longitude":51.45217,"parent_id":null,"city_id":1},{"id":972,"name":"\u0634\u0627\u0647\u062f","name_en":"shahed","radius":0,"latitude":35.673138,"longitude":51.47699,"parent_id":null,"city_id":1},{"id":973,"name":"\u0635\u0627\u062d\u0628 \u0627\u0644\u0632\u0645\u0627\u0646","name_en":"saheb-al-zaman","radius":0,"latitude":35.67388,"longitude":51.467834,"parent_id":null,"city_id":1},{"id":974,"name":"\u0639\u0627\u0631\u0641","name_en":"aref","radius":0,"latitude":35.673824,"longitude":51.45875,"parent_id":null,"city_id":1},{"id":975,"name":"\u0645\u06cc\u0646\u0627","name_en":"mina","radius":0,"latitude":35.672882,"longitude":51.45163,"parent_id":null,"city_id":1},{"id":976,"name":"\u0645\u0633\u06af\u0631\u0622\u0628\u0627\u062f","name_en":"mesgar-abad","radius":0,"latitude":35.62776,"longitude":51.516502,"parent_id":null,"city_id":1},{"id":977,"name":"\u0634\u0647\u0627\u062f\u062a","name_en":"shahadat","radius":0,"latitude":35.613422,"longitude":51.44801,"parent_id":null,"city_id":1},{"id":978,"name":"\u0635\u0641\u0627\u0626\u06cc\u0647 (\u0686\u0634\u0645\u0647 \u0639\u0644\u06cc)","name_en":"safaiye","radius":0,"latitude":35.604965,"longitude":51.45008,"parent_id":null,"city_id":1},{"id":979,"name":"\u0627\u0628\u0646 \u0628\u0627\u0628\u0648\u06cc\u0647","name_en":"ebn-babevayh","radius":0,"latitude":35.602787,"longitude":51.441284,"parent_id":null,"city_id":1},{"id":980,"name":"\u0634\u0647\u0631 \u0631\u06cc - \u062a\u0642\u06cc\u200c\u0622\u0628\u0627\u062f","name_en":"taqiabad-rey","radius":0,"latitude":35.579292,"longitude":51.46375,"parent_id":null,"city_id":1},{"id":981,"name":"\u0634\u0647\u0631 \u0631\u06cc - \u0639\u0628\u0627\u0633\u200c\u0622\u0628\u0627\u062f","name_en":"abbas-abad-rey","radius":0,"latitude":35.57064,"longitude":51.468613,"parent_id":null,"city_id":1},{"id":982,"name":"\u0634\u0647\u06cc\u062f \u0622\u0648\u06cc\u0646\u06cc","name_en":"shahid-avini","radius":0,"latitude":35.58475,"longitude":51.42752,"parent_id":null,"city_id":1},{"id":983,"name":"\u0633\u06cc\u0632\u062f\u0647 \u0622\u0628\u0627\u0646","name_en":"sizdah-aban","radius":0,"latitude":35.602768,"longitude":51.412643,"parent_id":null,"city_id":1},{"id":984,"name":"\u0633\u0631\u062a\u062e\u062a","name_en":"sartakht","radius":0,"latitude":35.58938,"longitude":51.432182,"parent_id":null,"city_id":1},{"id":985,"name":"\u062d\u0645\u0632\u0647\u200c\u0622\u0628\u0627\u062f","name_en":"hamzeh-abad","radius":0,"latitude":35.597504,"longitude":51.42369,"parent_id":null,"city_id":1},{"id":986,"name":"\u0634\u0647\u0631 \u0631\u06cc - \u0627\u0633\u062a\u062e\u0631","name_en":"estakhr-rey","radius":0,"latitude":35.59005,"longitude":51.445496,"parent_id":null,"city_id":1},{"id":987,"name":"\u0634\u0647\u0631 \u0631\u06cc - \u0627\u0642\u062f\u0633\u06cc\u0647","name_en":"aqdasiyeh-rey","radius":0,"latitude":35.59362,"longitude":51.443718,"parent_id":null,"city_id":1},{"id":988,"name":"\u0641\u06cc\u0631\u0648\u0632\u0622\u0628\u0627\u062f\u06cc","name_en":"firoozabadi","radius":0,"latitude":35.59539,"longitude":51.433235,"parent_id":null,"city_id":1},{"id":989,"name":"\u062e\u0627\u0646\u06cc\u200c\u0622\u0628\u0627\u062f \u0646\u0648","name_en":"khani-abad-no","radius":0,"latitude":35.625195,"longitude":51.39237,"parent_id":null,"city_id":1},{"id":990,"name":"\u0627\u062a\u062d\u0627\u062f","name_en":"etehad","radius":0,"latitude":35.73039,"longitude":51.56837,"parent_id":null,"city_id":1},{"id":991,"name":"\u0627\u06cc\u0631\u0627\u0646","name_en":"tehran-iran","radius":0,"latitude":35.687664,"longitude":51.4398,"parent_id":null,"city_id":1},{"id":992,"name":"\u0622\u0628\u0634\u0627\u0631","name_en":"abshar","radius":0,"latitude":35.678776,"longitude":51.44203,"parent_id":null,"city_id":1},{"id":993,"name":"\u0627\u0645\u06cc\u0646 \u062d\u0636\u0648\u0631","name_en":"aminhozour","radius":0,"latitude":35.679424,"longitude":51.434395,"parent_id":null,"city_id":1},{"id":994,"name":"\u0641\u0631\u062f\u0648\u0633\u06cc","name_en":"ferdowsi","radius":0,"latitude":35.693672,"longitude":51.418297,"parent_id":null,"city_id":1},{"id":995,"name":"\u0642\u06cc\u0627\u0645","name_en":"qiam","radius":0,"latitude":35.670135,"longitude":51.441494,"parent_id":null,"city_id":1},{"id":996,"name":"\u0633\u06cc\u0631\u0648\u0633","name_en":"sirous","radius":0,"latitude":35.67233,"longitude":51.433224,"parent_id":null,"city_id":1},{"id":997,"name":"\u06a9\u0648\u062b\u0631","name_en":"kosar","radius":0,"latitude":35.663284,"longitude":51.438545,"parent_id":null,"city_id":1},{"id":998,"name":"\u0642\u0644\u0645\u0633\u062a\u0627\u0646","name_en":"qalamestan","radius":0,"latitude":35.67161,"longitude":51.397663,"parent_id":null,"city_id":1},{"id":999,"name":"\u0633\u0644\u0627\u0645\u062a","name_en":"salamat","radius":0,"latitude":35.67625,"longitude":51.383656,"parent_id":null,"city_id":1},{"id":1000,"name":"\u0645\u062e\u0635\u0648\u0635","name_en":"makhsous","radius":0,"latitude":35.678146,"longitude":51.389603,"parent_id":null,"city_id":1},{"id":1001,"name":"\u0632\u0646\u062c\u0627\u0646","name_en":"tehran-zanjan","radius":0,"latitude":35.694675,"longitude":51.35949,"parent_id":null,"city_id":1},{"id":1002,"name":"\u0647\u0627\u0634\u0645\u06cc","name_en":"hashemi","radius":0,"latitude":35.684628,"longitude":51.359585,"parent_id":null,"city_id":1},{"id":1003,"name":"\u0634\u0647\u06cc\u062f \u062f\u0633\u062a\u063a\u06cc\u0628","name_en":"shahid-dastgheyb","radius":0,"latitude":35.686527,"longitude":51.348297,"parent_id":null,"city_id":1},{"id":1004,"name":"\u0634\u0628\u06cc\u0631\u06cc","name_en":"shabiri","radius":0,"latitude":35.675198,"longitude":51.356686,"parent_id":null,"city_id":1},{"id":1005,"name":"\u0633\u0644\u06cc\u0645\u0627\u0646\u06cc","name_en":"soleymani","radius":0,"latitude":35.672226,"longitude":51.36379,"parent_id":null,"city_id":1},{"id":1006,"name":"\u0647\u0641\u062a \u0686\u0646\u0627\u0631","name_en":"haftchenar","radius":0,"latitude":35.676014,"longitude":51.37015,"parent_id":null,"city_id":1},{"id":1007,"name":"\u0628\u0644\u0648\u0631\u0633\u0627\u0632\u06cc","name_en":"bolursazi","radius":0,"latitude":35.66289,"longitude":51.37878,"parent_id":null,"city_id":1},{"id":1008,"name":"\u0634\u0627\u0646\u062f\u06cc\u0632","name_en":"tehran-shandiz","radius":0,"latitude":35.657936,"longitude":51.350235,"parent_id":null,"city_id":1},{"id":1009,"name":"\u0632\u0645\u0632\u0645","name_en":"zamzam","radius":0,"latitude":35.647903,"longitude":51.36774,"parent_id":null,"city_id":1},{"id":1010,"name":"\u0645\u0642\u062f\u0645","name_en":"moqadam","radius":0,"latitude":35.656246,"longitude":51.3745,"parent_id":null,"city_id":1},{"id":1011,"name":"\u0637\u0648\u0633","name_en":"tous","radius":0,"latitude":35.66058,"longitude":51.35859,"parent_id":null,"city_id":1},{"id":1012,"name":"\u06af\u0644\u0686\u06cc\u0646","name_en":"golchin","radius":0,"latitude":35.653954,"longitude":51.36718,"parent_id":null,"city_id":1},{"id":1013,"name":"\u062c\u0644\u06cc\u0644\u06cc","name_en":"jalili","radius":0,"latitude":35.650494,"longitude":51.362106,"parent_id":null,"city_id":1},{"id":1014,"name":"\u0627\u0645\u0627\u0645 \u0633\u062c\u0627\u062f(\u0639)","name_en":"imam-sajjad","radius":0,"latitude":35.654835,"longitude":51.357758,"parent_id":null,"city_id":1},{"id":1015,"name":"\u0628\u06cc\u0633\u06cc\u0645","name_en":"bisim","radius":0,"latitude":35.653625,"longitude":51.450035,"parent_id":null,"city_id":1},{"id":1016,"name":"\u0637\u06cc\u0628","name_en":"tayeb","radius":0,"latitude":35.66023,"longitude":51.450222,"parent_id":null,"city_id":1},{"id":1017,"name":"\u062e\u0627\u0648\u0631\u0627\u0646","name_en":"khavaran","radius":0,"latitude":35.665424,"longitude":51.453148,"parent_id":null,"city_id":1},{"id":1018,"name":"\u0645\u06cc\u0646\u0627\u0628\u06cc","name_en":"minabi","radius":0,"latitude":35.652096,"longitude":51.456764,"parent_id":null,"city_id":1},{"id":1019,"name":"\u0627\u062a\u0627\u0628\u06a9","name_en":"atabak","radius":0,"latitude":35.64931,"longitude":51.46269,"parent_id":null,"city_id":1},{"id":1020,"name":"\u0627\u0628\u0648\u0630\u0631 (\u0645\u0646\u0637\u0642\u0647 \u06f1\u06f5)","name_en":"abouzar","radius":0,"latitude":35.65072,"longitude":51.47706,"parent_id":null,"city_id":1},{"id":1021,"name":"\u0627\u0645\u0627\u0645\u0632\u0627\u062f\u0647 \u062d\u0633\u0646(\u0639)","name_en":"imamzadeh-hasan","radius":0,"latitude":35.6654,"longitude":51.36076,"parent_id":null,"city_id":1},{"id":1022,"name":"\u0628\u0627\u063a \u062e\u0632\u0627\u0646\u0647","name_en":"bagh-khazaneh","radius":0,"latitude":35.664024,"longitude":51.370758,"parent_id":null,"city_id":1},{"id":1023,"name":"\u0634\u0647\u06cc\u062f \u0628\u0631\u0648\u062c\u0631\u062f\u06cc","name_en":"shahid-borujerdi","radius":0,"latitude":35.637558,"longitude":51.468773,"parent_id":null,"city_id":1},{"id":1024,"name":"\u0647\u0631\u0648\u06cc","name_en":"heravi","radius":0,"latitude":35.76387,"longitude":51.474365,"parent_id":null,"city_id":1},{"id":1025,"name":"\u062d\u0633\u06cc\u0646\u200c\u0622\u0628\u0627\u062f","name_en":"tehran-hosein-abad","radius":0,"latitude":35.77451,"longitude":51.481434,"parent_id":null,"city_id":1},{"id":1026,"name":"\u0635\u0627\u0644\u062d\u200c\u0622\u0628\u0627\u062f \u0634\u0631\u0642\u06cc","name_en":"east-saleh-abad","radius":0,"latitude":35.6039,"longitude":51.395336,"parent_id":null,"city_id":1},{"id":1027,"name":"\u0639\u0628\u062f\u0627\u0644\u0644\u0647\u200c\u0622\u0628\u0627\u062f","name_en":"abdollah-abad","radius":0,"latitude":35.60616,"longitude":51.37538,"parent_id":null,"city_id":1},{"id":1028,"name":"\u062c\u0644\u0641\u0627","name_en":"tehran-jolfa","radius":0,"latitude":35.74684,"longitude":51.436592,"parent_id":null,"city_id":1},{"id":1029,"name":"\u062f\u06a9\u062a\u0631 \u0647\u0648\u0634\u06cc\u0627\u0631","name_en":"dr-hoshyar","radius":0,"latitude":35.694195,"longitude":51.35093,"parent_id":null,"city_id":1},{"id":1030,"name":"\u0634\u0647\u0631\u06a9 \u0634\u0647\u06cc\u062f \u0628\u0627\u0642\u0631\u06cc","name_en":"shahrak-shahid-bagheri","radius":0,"latitude":35.761955,"longitude":51.201447,"parent_id":null,"city_id":1},{"id":1031,"name":"\u062f\u0631\u06cc\u0627\u0686\u0647 \u0634\u0647\u062f\u0627\u06cc \u062e\u0644\u06cc\u062c \u0641\u0627\u0631\u0633","name_en":"chitgar-lake","radius":0,"latitude":35.738773,"longitude":51.206615,"parent_id":null,"city_id":1},{"id":1032,"name":"\u0634\u0647\u0631\u06a9 \u062f\u0627\u0646\u0634\u06af\u0627\u0647\u06cc","name_en":"shahrak-daneshgahi","radius":0,"latitude":35.720448,"longitude":51.200226,"parent_id":null,"city_id":1},{"id":1033,"name":"\u0634\u0647\u0631\u06a9 \u062f\u0627\u0646\u0634\u06af\u0627\u0647 \u062a\u0647\u0631\u0627\u0646","name_en":"shahrak-daneshgah-tehran","radius":0,"latitude":35.708584,"longitude":51.197624,"parent_id":null,"city_id":1},{"id":1034,"name":"\u0634\u0631\u06cc\u0641","name_en":"sharif","radius":0,"latitude":35.74972,"longitude":51.132893,"parent_id":null,"city_id":1},{"id":1035,"name":"\u0634\u06cc\u0631\u0627\u0632\u06cc","name_en":"shirazi","radius":0,"latitude":35.746464,"longitude":51.39809,"parent_id":null,"city_id":1},{"id":1038,"name":"\u06a9\u0648\u06cc \u0632\u0646\u0628\u0642","name_en":"kuy-zanbaq","radius":0,"latitude":35.779606,"longitude":50.871983,"parent_id":null,"city_id":2},{"id":1039,"name":"\u06a9\u0648\u06cc \u0645\u0647\u0631","name_en":"kuy-mehr","radius":0,"latitude":35.789757,"longitude":50.876778,"parent_id":null,"city_id":2},{"id":1040,"name":"\u0634\u0647\u0631\u06a9 \u0627\u0628\u0631\u06cc\u0634\u0645","name_en":"abrisham","radius":0,"latitude":35.79431,"longitude":50.829914,"parent_id":null,"city_id":2},{"id":1041,"name":"\u0622\u0642 \u062a\u067e\u0647","name_en":"aq-tappeh","radius":0,"latitude":35.801163,"longitude":50.882626,"parent_id":null,"city_id":2},{"id":1042,"name":"\u0627\u0633\u062f\u0622\u0628\u0627\u062f","name_en":"asadabad-karaj","radius":0,"latitude":35.80797,"longitude":50.894432,"parent_id":null,"city_id":2},{"id":1043,"name":"\u0631\u062c\u0628\u200c\u0622\u0628\u0627\u062f","name_en":"rajababad","radius":0,"latitude":35.81241,"longitude":50.898277,"parent_id":null,"city_id":2},{"id":1044,"name":"\u062d\u0633\u06cc\u0646\u200c\u0622\u0628\u0627\u062f","name_en":"hosseinabad","radius":0,"latitude":35.821182,"longitude":50.906315,"parent_id":null,"city_id":2},{"id":1045,"name":"\u0627\u062d\u062f\u0622\u0628\u0627\u062f","name_en":"ahadabad","radius":0,"latitude":35.81637,"longitude":50.90136,"parent_id":null,"city_id":2},{"id":1046,"name":"\u06a9\u0648\u06cc \u0641\u0631\u0647\u0646\u06af","name_en":"kuy-farhang","radius":0,"latitude":35.820457,"longitude":50.89592,"parent_id":null,"city_id":2},{"id":1047,"name":"\u0634\u0639\u0628\u0627\u0646\u200c\u0622\u0628\u0627\u062f","name_en":"shabanabad","radius":0,"latitude":35.81594,"longitude":50.892147,"parent_id":null,"city_id":2},{"id":1048,"name":"\u0645\u0644\u06a9\u200c\u0622\u0628\u0627\u062f","name_en":"malekabad-karaj","radius":0,"latitude":35.818695,"longitude":50.88712,"parent_id":null,"city_id":2},{"id":1049,"name":"\u0627\u062e\u062a\u0631\u0622\u0628\u0627\u062f","name_en":"akhtarabad","radius":0,"latitude":35.80734,"longitude":50.884007,"parent_id":null,"city_id":2},{"id":1050,"name":"\u0634\u0647\u0631\u06a9 \u0633\u0647\u0631\u0627\u0628\u06cc\u0647","name_en":"shahrak-sohrabiyeh","radius":0,"latitude":35.818382,"longitude":50.873096,"parent_id":null,"city_id":2},{"id":1051,"name":"\u0627\u062e\u06af\u0631\u0622\u0628\u0627\u062f","name_en":"akhgarabad","radius":0,"latitude":35.823166,"longitude":50.890965,"parent_id":null,"city_id":2},{"id":1052,"name":"\u0634\u0647\u0631\u06a9 \u0631\u0627\u0632\u06cc","name_en":"raazi-town","radius":0,"latitude":35.846558,"longitude":50.912163,"parent_id":null,"city_id":2},{"id":1053,"name":"\u0634\u0647\u0631\u06a9 \u0646\u0647\u0627\u0644 \u0648 \u0628\u0630\u0631","name_en":"shahrak-nahal-va-bazr","radius":0,"latitude":35.79128,"longitude":50.94509,"parent_id":null,"city_id":2},{"id":1054,"name":"\u06af\u0644\u0633\u062a\u0627\u0646","name_en":"golestan-karaj","radius":0,"latitude":35.778778,"longitude":50.896282,"parent_id":null,"city_id":2},{"id":1055,"name":"\u06a9\u0648\u06cc \u0628\u0647\u0627\u0631","name_en":"kuy-bahar","radius":0,"latitude":35.771217,"longitude":50.915817,"parent_id":null,"city_id":2},{"id":1056,"name":"\u0627\u06a9\u0628\u0631\u0622\u0628\u0627\u062f","name_en":"akbarabad","radius":0,"latitude":35.82679,"longitude":50.899902,"parent_id":null,"city_id":2},{"id":1057,"name":"\u0634\u0647\u0631\u06a9 \u06cc\u0627\u0633","name_en":"shahrak-yas","radius":0,"latitude":35.861343,"longitude":50.93016,"parent_id":null,"city_id":2},{"id":1058,"name":"\u06f3\u06f5\u06f0 \u0645\u062a\u0631\u06cc","name_en":"350-metri","radius":0,"latitude":35.85758,"longitude":50.9358,"parent_id":null,"city_id":2},{"id":1059,"name":"\u0634\u0647\u0631\u06a9 \u06af\u0644\u0647\u0627","name_en":"golha","radius":0,"latitude":35.864754,"longitude":50.9366,"parent_id":null,"city_id":2},{"id":1064,"name":"\u0634\u0647\u0631\u06a9 \u0638\u0641\u0631","name_en":"shahrak-zafar","radius":0,"latitude":35.863945,"longitude":50.95107,"parent_id":null,"city_id":2},{"id":1066,"name":"\u0634\u0647\u0631\u06a9 \u0627\u0633\u062a\u0627\u062f\u0627\u0646","name_en":"shahrak-ostadan","radius":0,"latitude":35.829407,"longitude":50.937378,"parent_id":null,"city_id":2},{"id":1067,"name":"\u06a9\u0631\u062c \u0646\u0648","name_en":"karaj-no","radius":0,"latitude":35.830364,"longitude":50.94423,"parent_id":null,"city_id":2},{"id":1069,"name":"\u06a9\u0648\u06cc \u06a9\u0627\u0631\u0645\u0646\u062f\u0627\u0646 \u062c\u0646\u0648\u0628\u06cc","name_en":"south-kuy-karmandan","radius":0,"latitude":35.823994,"longitude":50.970226,"parent_id":null,"city_id":2},{"id":1070,"name":"\u062d\u06cc\u062f\u0631\u0622\u0628\u0627\u062f","name_en":"hyderabad","radius":0,"latitude":35.838776,"longitude":50.95357,"parent_id":null,"city_id":2},{"id":1071,"name":"\u06a9\u0648\u06cc \u0627\u0645\u0627\u0645\u06cc\u0647","name_en":"kuy-emamiyeh","radius":0,"latitude":35.845024,"longitude":50.96471,"parent_id":null,"city_id":2},{"id":1072,"name":"\u0634\u0647\u0631\u06a9 \u0622\u0633\u0645\u0627\u0646","name_en":"aseman-town","radius":0,"latitude":35.875977,"longitude":50.97706,"parent_id":null,"city_id":2},{"id":1073,"name":"\u0634\u0647\u0631\u06a9 \u0628\u0647\u0627\u0631\u0633\u062a\u0627\u0646","name_en":"baharestan-industrial-town","radius":0,"latitude":35.883858,"longitude":50.977005,"parent_id":null,"city_id":2},{"id":1074,"name":"\u0645\u062d\u0645\u0648\u062f \u0622\u0628\u0627\u062f","name_en":"mahmodabad","radius":0,"latitude":35.87932,"longitude":51.00193,"parent_id":null,"city_id":2},{"id":1075,"name":"\u0634\u0647\u0631\u06a9 \u0639\u0644\u06cc \u0627\u0628\u0646 \u0627\u0628\u06cc\u0637\u0627\u0644\u0628","name_en":"shahrak-ali-ebn-abitaleb","radius":0,"latitude":35.871895,"longitude":50.98442,"parent_id":null,"city_id":2},{"id":1076,"name":"\u06a9\u0648\u06cc \u06a9\u0627\u0631\u0645\u0646\u062f\u0627\u0646 \u0634\u0645\u0627\u0644\u06cc","name_en":"north-kuy-karmandan","radius":0,"latitude":35.833504,"longitude":50.97233,"parent_id":null,"city_id":2},{"id":1077,"name":"\u06af\u0644\u0634\u0647\u0631 \u0648\u06cc\u0644\u0627","name_en":"golshahrvila","radius":0,"latitude":35.819923,"longitude":50.952038,"parent_id":null,"city_id":2},{"id":1078,"name":"\u0627\u062a\u062d\u0627\u062f","name_en":"ettehad","radius":0,"latitude":35.840054,"longitude":50.97603,"parent_id":null,"city_id":2},{"id":1079,"name":"\u0648\u0644\u06cc\u0639\u0635\u0631","name_en":"valiasr-karaj","radius":0,"latitude":35.818733,"longitude":50.975098,"parent_id":null,"city_id":2},{"id":1080,"name":"\u062f\u0648\u0644\u062a\u200c\u0622\u0628\u0627\u062f","name_en":"dowlatabad-karaj","radius":0,"latitude":35.810726,"longitude":50.973965,"parent_id":null,"city_id":2},{"id":1081,"name":"\u0627\u0635\u0641\u0647\u0627\u0646\u06cc\u200c\u0647\u0627","name_en":"esfahaniha","radius":0,"latitude":35.8106,"longitude":50.996662,"parent_id":null,"city_id":2},{"id":1083,"name":"\u0686\u0647\u0627\u0631\u0635\u062f \u062f\u0633\u062a\u06af\u0627\u0647","name_en":"chaharsad-dastgah-karaj","radius":0,"latitude":35.81465,"longitude":50.982796,"parent_id":null,"city_id":2},{"id":1084,"name":"\u0634\u0647\u0631\u06a9 \u0641\u0647\u0645\u06cc\u062f\u0647","name_en":"shahrake-fahmideh","radius":0,"latitude":35.802643,"longitude":50.984726,"parent_id":null,"city_id":2},{"id":1086,"name":"\u06a9\u0648\u06cc \u0645\u062f\u0631\u0633","name_en":"kuy-modarres-karaj","radius":0,"latitude":35.838158,"longitude":50.99587,"parent_id":null,"city_id":2},{"id":1088,"name":"\u06a9\u0648\u06cc \u0641\u0631\u0647\u0646\u06af\u06cc\u0627\u0646","name_en":"kuy-farhangian-karaj","radius":0,"latitude":35.84294,"longitude":51.003223,"parent_id":null,"city_id":2},{"id":1089,"name":"\u0634\u0647\u0631\u06a9 \u0627\u0645\u0627\u0645 \u0631\u0636\u0627","name_en":"shahrak-imam-reza","radius":0,"latitude":35.851715,"longitude":51.002663,"parent_id":null,"city_id":2},{"id":1091,"name":"\u067e\u06cc\u0634\u0627\u0647\u0646\u06af\u06cc","name_en":"pishahangi","radius":0,"latitude":35.857872,"longitude":50.899803,"parent_id":null,"city_id":2},{"id":1092,"name":"\u06af\u0644\u062f\u0634\u062a","name_en":"goldasht","radius":0,"latitude":35.870514,"longitude":50.902557,"parent_id":null,"city_id":2},{"id":1093,"name":"\u06a9\u0644\u0627\u06a9 \u0628\u0627\u0644\u0627","name_en":"kalak","radius":0,"latitude":35.793324,"longitude":51.041317,"parent_id":null,"city_id":2},{"id":1094,"name":"\u0634\u0647\u0631\u06a9 \u062c\u0647\u0627\u0646\u200c\u0646\u0645\u0627","name_en":"jahan-nama","radius":0,"latitude":35.785107,"longitude":51.036808,"parent_id":null,"city_id":2},{"id":1095,"name":"\u06a9\u0644\u0627\u06a9 \u0646\u0648","name_en":"kalak-no","radius":0,"latitude":35.79203,"longitude":51.01994,"parent_id":null,"city_id":2},{"id":1096,"name":"\u0634\u0647\u0631\u06a9 \u0627\u0644\u0628\u0631\u0632","name_en":"shahrak-alborz","radius":0,"latitude":35.742905,"longitude":50.84912,"parent_id":null,"city_id":2},{"id":1097,"name":"\u0645\u0647\u0631\u0634\u0647\u0631 - \u0641\u0627\u0632 \u06f5","name_en":"mehrshahr-5","radius":0,"latitude":35.829166,"longitude":50.906937,"parent_id":null,"city_id":2},{"id":1099,"name":"\u0686\u0645\u0646","name_en":"chaman","radius":0,"latitude":35.78689,"longitude":50.90617,"parent_id":null,"city_id":2},{"id":1101,"name":"\u0627\u0633\u0644\u0627\u0645\u200c\u0622\u0628\u0627\u062f","name_en":"eslamabad","radius":0,"latitude":35.82394,"longitude":51.01109,"parent_id":null,"city_id":2},{"id":1104,"name":"\u0628\u0647\u0627\u0631","name_en":"bahar-karaj","radius":0,"latitude":35.821327,"longitude":50.995758,"parent_id":null,"city_id":2},{"id":1105,"name":"\u0628\u0631\u063a\u0627\u0646","name_en":"Baraghan","radius":0,"latitude":35.819798,"longitude":51.002575,"parent_id":null,"city_id":2},{"id":1111,"name":"\u0633\u0627\u0645\u0627\u0646\u062f\u0647\u06cc","name_en":"samandehi","radius":0,"latitude":35.789024,"longitude":50.864017,"parent_id":null,"city_id":2},{"id":1112,"name":"\u0645\u0647\u0631\u0634\u0647\u0631 - \u0641\u0627\u0632 \u06f2","name_en":"mehrshahr-2","radius":0,"latitude":35.797096,"longitude":50.900097,"parent_id":null,"city_id":2},{"id":1113,"name":"\u0645\u0647\u0631\u0634\u0647\u0631 - \u0641\u0627\u0632 \u06f3","name_en":"mehrshahr-3","radius":0,"latitude":35.791348,"longitude":50.893406,"parent_id":null,"city_id":2},{"id":1114,"name":"\u0645\u0647\u0631\u0634\u0647\u0631 - \u0641\u0627\u0632 \u06f1","name_en":"mehrshar-1","radius":0,"latitude":35.807465,"longitude":50.916885,"parent_id":null,"city_id":2},{"id":1117,"name":"\u0634\u0647\u0631\u0622\u0631\u0627","name_en":"shahrara-mashhad","radius":0,"latitude":36.321888,"longitude":59.467056,"parent_id":null,"city_id":3},{"id":1118,"name":"\u0645\u062d\u0644\u0647 \u0646\u06cc\u0631\u0648 \u0647\u0648\u0627\u06cc\u06cc","name_en":"shahrak-e-niru-ye-havayi","radius":0,"latitude":36.30287,"longitude":59.488415,"parent_id":null,"city_id":3},{"id":1119,"name":"\u0645\u062d\u0644\u0647 \u0686\u0647\u0627\u0631\u0686\u0634\u0645\u0647","name_en":"shahrak-e-chahar-cheshmeh","radius":0,"latitude":36.298145,"longitude":59.501038,"parent_id":null,"city_id":3},{"id":1120,"name":"\u0645\u062d\u0644\u0647 \u0633\u0631\u0627\u0641\u0631\u0627\u0632\u0627\u0646","name_en":"kuy-e-sarafrazan","radius":0,"latitude":36.29275,"longitude":59.513264,"parent_id":null,"city_id":3},{"id":1122,"name":"\u0645\u062d\u0644\u0647 \u06a9\u0648\u062b\u0631","name_en":"kuy-e-kowsar","radius":0,"latitude":36.313877,"longitude":59.516888,"parent_id":null,"city_id":3},{"id":1124,"name":"\u062f\u0627\u0646\u0634\u06af\u0627\u0647 \u0641\u0631\u062f\u0648\u0633\u06cc \u0645\u0634\u0647\u062f","name_en":"ferdowsi-university-of-mashhad","radius":0,"latitude":36.3081,"longitude":59.52771,"parent_id":null,"city_id":3},{"id":1125,"name":"\u0634\u0647\u0631\u06a9 \u0637\u0627\u0644\u0642\u0627\u0646\u06cc","name_en":"Shahrak-e-Taleqani","radius":0,"latitude":36.27236,"longitude":59.54503,"parent_id":null,"city_id":3},{"id":1127,"name":"\u0645\u062d\u0644\u0647 \u062c\u0627\u0647\u062f\u0634\u0647\u0631","name_en":"jahedshahr","radius":0,"latitude":36.364338,"longitude":59.4741,"parent_id":null,"city_id":3},{"id":1129,"name":"\u0641\u0627\u0631\u063a \u0627\u0644\u062a\u062d\u0635\u06cc\u0644\u0627\u0646","name_en":"fareqoltahsilan","radius":0,"latitude":36.34372,"longitude":59.46821,"parent_id":null,"city_id":3},{"id":1130,"name":"\u0627\u0645\u06cc\u0631\u06cc\u0647","name_en":"amiriyeh-mashhad","radius":0,"latitude":36.385372,"longitude":59.49168,"parent_id":null,"city_id":3},{"id":1131,"name":"\u0633\u062a\u0627\u0631\u06cc","name_en":"sattari","radius":0,"latitude":36.340508,"longitude":59.48152,"parent_id":null,"city_id":3},{"id":1132,"name":"\u0635\u062f\u0641","name_en":"sadaf","radius":0,"latitude":36.33899,"longitude":59.49443,"parent_id":null,"city_id":3},{"id":1133,"name":"\u0641\u0631\u0647\u0646\u06af","name_en":"farhang","radius":0,"latitude":36.327362,"longitude":59.51875,"parent_id":null,"city_id":3},{"id":1134,"name":"\u0627\u0642\u0628\u0627\u0644","name_en":"eqbal","radius":0,"latitude":36.334167,"longitude":59.468433,"parent_id":null,"city_id":3},{"id":1137,"name":"\u0645\u0647\u062f\u06cc \u0622\u0628\u0627\u062f","name_en":"mahdiabad","radius":0,"latitude":36.36581,"longitude":59.553333,"parent_id":null,"city_id":3},{"id":1138,"name":"\u062d\u062c\u062a","name_en":"hojjat","radius":0,"latitude":36.359352,"longitude":59.561386,"parent_id":null,"city_id":3},{"id":1139,"name":"\u0628\u0647\u0627\u0631\u0627\u0646","name_en":"baharan-mashhad","radius":0,"latitude":36.347244,"longitude":59.556137,"parent_id":null,"city_id":3},{"id":1141,"name":"\u0641\u062f\u06a9","name_en":"fadak-mashhad","radius":0,"latitude":36.34616,"longitude":59.57388,"parent_id":null,"city_id":3},{"id":1143,"name":"\u06a9\u0648\u06cc \u0627\u0645\u06cc\u0631\u0627\u0644\u0645\u0648\u0645\u0646\u06cc\u0646","name_en":"kuy-e-amiralmomenin","radius":0,"latitude":36.340313,"longitude":59.58109,"parent_id":null,"city_id":3},{"id":1144,"name":"\u06a9\u0634\u0627\u0648\u0631\u0632","name_en":"keshavaz","radius":0,"latitude":36.35744,"longitude":59.587578,"parent_id":null,"city_id":3},{"id":1145,"name":"\u0633\u067e\u0627\u062f","name_en":"sepad","radius":0,"latitude":36.35458,"longitude":59.60989,"parent_id":null,"city_id":3},{"id":1146,"name":"\u0628\u0647\u0645\u0646","name_en":"bahman","radius":0,"latitude":36.342663,"longitude":59.619957,"parent_id":null,"city_id":3},{"id":1147,"name":"\u067e\u0631\u062f\u06cc\u0633","name_en":"pardis-mashhad","radius":0,"latitude":36.339367,"longitude":59.592194,"parent_id":null,"city_id":3},{"id":1148,"name":"\u0645\u062d\u0644\u0647 \u0646\u0627\u0646 \u0631\u0636\u0648\u06cc","name_en":"kuy-e-nane-razavi","radius":0,"latitude":36.3359,"longitude":59.60007,"parent_id":null,"city_id":3},{"id":1149,"name":"\u0627\u06cc\u062b\u0627\u0631\u06af\u0631\u0627\u0646","name_en":"isargaran","radius":0,"latitude":36.330883,"longitude":59.610867,"parent_id":null,"city_id":3},{"id":1151,"name":"\u0634\u0641\u0627","name_en":"shafa","radius":0,"latitude":36.324993,"longitude":59.616276,"parent_id":null,"city_id":3},{"id":1153,"name":"\u0633\u0645\u0631\u0642\u0646\u062f","name_en":"samarghand","radius":0,"latitude":36.317017,"longitude":59.61451,"parent_id":null,"city_id":3},{"id":1154,"name":"\u0634\u0647\u06cc\u062f \u0647\u0646\u0631\u0648\u0631","name_en":"shahid-honarvar","radius":0,"latitude":36.32416,"longitude":59.60569,"parent_id":null,"city_id":3},{"id":1155,"name":"\u0634\u0647\u06cc\u062f \u0645\u0637\u0647\u0631\u06cc \u0634\u0645\u0627\u0644\u06cc","name_en":"north-shahid-mottahari","radius":0,"latitude":36.317814,"longitude":59.598454,"parent_id":null,"city_id":3},{"id":1156,"name":"\u0622\u06cc\u062a \u0627\u0644\u0644\u0647 \u0639\u0628\u0627\u062f\u06cc","name_en":"ayatollah-ebadi","radius":0,"latitude":36.3096,"longitude":59.607265,"parent_id":null,"city_id":3},{"id":1162,"name":"\u0627\u0631\u0634\u0627\u062f","name_en":"ershad","radius":0,"latitude":36.31717,"longitude":59.57027,"parent_id":null,"city_id":3},{"id":1163,"name":"\u0645\u062c\u062f","name_en":"majd","radius":0,"latitude":36.315895,"longitude":59.589798,"parent_id":null,"city_id":3},{"id":1165,"name":"\u0639\u0627\u0645\u0644","name_en":"amel","radius":0,"latitude":36.305893,"longitude":59.60024,"parent_id":null,"city_id":3},{"id":1169,"name":"\u0628\u0627\u063a \u0645\u0644\u06a9\u200c\u0622\u0628\u0627\u062f","name_en":"malek-abad-garden","radius":0,"latitude":36.30182,"longitude":59.549973,"parent_id":null,"city_id":3},{"id":1170,"name":"\u06f1\u06f0 \u062f\u06cc","name_en":"10-day","radius":0,"latitude":36.286552,"longitude":59.59644,"parent_id":null,"city_id":3},{"id":1172,"name":"\u0631\u0627\u0647 \u0622\u0647\u0646","name_en":"rahahan","radius":0,"latitude":36.305088,"longitude":59.620056,"parent_id":null,"city_id":3},{"id":1173,"name":"\u0627\u06cc\u0645\u0627\u0646","name_en":"iman","radius":0,"latitude":36.258083,"longitude":59.584515,"parent_id":null,"city_id":3},{"id":1174,"name":"\u06a9\u0648\u0634\u0634","name_en":"koushesh","radius":0,"latitude":36.264412,"longitude":59.601135,"parent_id":null,"city_id":3},{"id":1175,"name":"\u062c\u0646\u062a","name_en":"jannat","radius":0,"latitude":36.29026,"longitude":59.59646,"parent_id":null,"city_id":3},{"id":1176,"name":"\u0622\u0628\u06a9\u0648\u0647","name_en":"abkuh","radius":0,"latitude":36.305153,"longitude":59.57921,"parent_id":null,"city_id":3},{"id":1177,"name":"\u0647\u0627\u0634\u0645\u06cc\u200c\u0646\u0698\u0627\u062f","name_en":"shahrak-e-hashmenizhad","radius":0,"latitude":36.298553,"longitude":59.613354,"parent_id":null,"city_id":3},{"id":1178,"name":"\u0641\u0627\u0637\u0645\u06cc\u0647","name_en":"fatemiye","radius":0,"latitude":36.3107,"longitude":59.62873,"parent_id":null,"city_id":3},{"id":1180,"name":"\u0628\u0644\u0627\u0644","name_en":"balal","radius":0,"latitude":36.326508,"longitude":59.63363,"parent_id":null,"city_id":3},{"id":1181,"name":"\u062e\u0648\u0627\u062c\u0647 \u0631\u0628\u06cc\u0639","name_en":"khaje-rabi","radius":0,"latitude":36.34258,"longitude":59.63546,"parent_id":null,"city_id":3},{"id":1182,"name":"\u062f\u0631\u0648\u06cc","name_en":"kuy-e-daravey","radius":0,"latitude":36.324776,"longitude":59.647186,"parent_id":null,"city_id":3},{"id":1183,"name":"\u0633\u06cc\u0633\u200c\u0622\u0628\u0627\u062f","name_en":"sis-abad","radius":0,"latitude":36.33849,"longitude":59.652985,"parent_id":null,"city_id":3},{"id":1184,"name":"\u0637\u0628\u0631\u0633\u06cc \u0634\u0645\u0627\u0644\u06cc","name_en":"north-tabars","radius":0,"latitude":36.325115,"longitude":59.663895,"parent_id":null,"city_id":3},{"id":1185,"name":"\u062b\u0627\u0645\u0646","name_en":"samen","radius":0,"latitude":36.286724,"longitude":59.67201,"parent_id":null,"city_id":3},{"id":1186,"name":"\u0634\u0647\u06cc\u062f \u0642\u0631\u0628\u0627\u0646\u06cc","name_en":"shahid-qorbani","radius":0,"latitude":36.316315,"longitude":59.679443,"parent_id":null,"city_id":3},{"id":1187,"name":"\u0645\u062d\u0644\u0647 \u0631\u062f\u0647","name_en":"kuy-e-raddeh","radius":0,"latitude":36.313217,"longitude":59.66448,"parent_id":null,"city_id":3},{"id":1188,"name":"\u0645\u062d\u0644\u0647 \u067e\u0646\u062c \u062a\u0646","name_en":"kuy-e-panj-tan","radius":0,"latitude":36.30589,"longitude":59.67069,"parent_id":null,"city_id":3},{"id":1189,"name":"\u0634\u0647\u06cc\u062f \u0622\u0648\u06cc\u0646\u06cc","name_en":"shahid-avini-mashhad","radius":0,"latitude":36.2965,"longitude":59.670467,"parent_id":null,"city_id":3},{"id":1190,"name":"\u0645\u062d\u0644\u0647 \u0627\u0645\u06cc\u0631\u0627\u0644\u0645\u0648\u0645\u0646\u06cc\u0646","name_en":"kuy-e-amiralmonmenin","radius":0,"latitude":36.29731,"longitude":59.68744,"parent_id":null,"city_id":3},{"id":1191,"name":"\u0639\u0628\u0627\u0633\u200c\u0622\u0628\u0627\u062f","name_en":"abbas-abad-mashhad","radius":0,"latitude":36.27798,"longitude":59.691948,"parent_id":null,"city_id":3},{"id":1192,"name":"\u0645\u062d\u0644\u0647 \u0648\u062d\u06cc\u062f","name_en":"vahid-mashhad","radius":0,"latitude":36.301888,"longitude":59.661484,"parent_id":null,"city_id":3},{"id":1193,"name":"\u0627\u0628\u0648\u0630\u0631","name_en":"abouzar-mashhad","radius":0,"latitude":36.306553,"longitude":59.65303,"parent_id":null,"city_id":3},{"id":1194,"name":"\u062a\u0644\u06af\u0631\u062f","name_en":"telgerd","radius":0,"latitude":36.295986,"longitude":59.655117,"parent_id":null,"city_id":3},{"id":1195,"name":"\u0627\u0646\u0635\u0627\u0631","name_en":"ansar-mashhad","radius":0,"latitude":36.263317,"longitude":59.690666,"parent_id":null,"city_id":3},{"id":1196,"name":"\u0645\u0648\u0639\u0648\u062f","name_en":"mooud","radius":0,"latitude":36.26828,"longitude":59.67968,"parent_id":null,"city_id":3},{"id":1197,"name":"\u067e\u0648\u0631\u0633\u06cc\u0646\u0627","name_en":"poursina","radius":0,"latitude":36.273132,"longitude":59.671673,"parent_id":null,"city_id":3},{"id":1198,"name":"\u0628\u0627\u0647\u0646\u0631","name_en":"bahonar-mashhad","radius":0,"latitude":36.2479,"longitude":59.714878,"parent_id":null,"city_id":3},{"id":1199,"name":"\u0633\u062c\u0627\u062f\u06cc\u0647","name_en":"sajadieh","radius":0,"latitude":36.28652,"longitude":59.639324,"parent_id":null,"city_id":3},{"id":1200,"name":"\u0627\u06cc\u062b\u0627\u0631","name_en":"isar","radius":0,"latitude":36.294907,"longitude":59.636913,"parent_id":null,"city_id":3},{"id":1201,"name":"\u06af\u0644\u0634\u0648\u0631","name_en":"golshour","radius":0,"latitude":36.296535,"longitude":59.64753,"parent_id":null,"city_id":3},{"id":1202,"name":"\u0645\u0647\u0631\u0622\u0628\u0627\u062f","name_en":"mehrabad","radius":0,"latitude":36.27939,"longitude":59.66234,"parent_id":null,"city_id":3},{"id":1203,"name":"\u062d\u0633\u06cc\u0646\u200c\u0622\u0628\u0627\u062f","name_en":"hoseynabad","radius":0,"latitude":36.282097,"longitude":59.649128,"parent_id":null,"city_id":3},{"id":1204,"name":"\u0631\u0636\u0627\u06cc\u06cc\u0647","name_en":"rezaieyeh","radius":0,"latitude":36.28367,"longitude":59.632885,"parent_id":null,"city_id":3},{"id":1205,"name":"\u0646\u0648\u063a\u0627\u0646","name_en":"noghan","radius":0,"latitude":36.29556,"longitude":59.622635,"parent_id":null,"city_id":3},{"id":1206,"name":"\u0645\u062d\u0644\u0647 \u0628\u0627\u0644\u0627 \u062e\u06cc\u0627\u0628\u0627\u0646","name_en":"kuy-e-bala-khiaban","radius":0,"latitude":36.295757,"longitude":59.616756,"parent_id":null,"city_id":3},{"id":1207,"name":"\u0645\u062d\u0644\u0647 \u067e\u0627\u06cc\u06cc\u0646 \u062e\u06cc\u0627\u0628\u0627\u0646","name_en":"kuy-e-paein-khiaban","radius":0,"latitude":36.286407,"longitude":59.62407,"parent_id":null,"city_id":3},{"id":1208,"name":"\u0639\u06cc\u062f\u06af\u0627\u0647","name_en":"eidgah","radius":0,"latitude":36.281807,"longitude":59.618,"parent_id":null,"city_id":3},{"id":1210,"name":"\u0622\u06cc\u062a \u0627\u0644\u0644\u0647 \u062e\u0627\u0645\u0646\u0647\u200c\u0627\u06cc","name_en":"ayatollah-khamenei","radius":0,"latitude":36.286144,"longitude":59.607662,"parent_id":null,"city_id":3},{"id":1211,"name":"\u0686\u0647\u0627\u0631\u0628\u0627\u063a","name_en":"charbagh","radius":0,"latitude":36.289597,"longitude":59.610504,"parent_id":null,"city_id":3},{"id":1212,"name":"\u062f\u0627\u0646\u0634","name_en":"danesh","radius":0,"latitude":36.282497,"longitude":59.605045,"parent_id":null,"city_id":3},{"id":1213,"name":"\u0633\u0644\u0627\u0645","name_en":"salam","radius":0,"latitude":36.278652,"longitude":59.602516,"parent_id":null,"city_id":3},{"id":1214,"name":"\u0639\u0646\u0635\u0631\u06cc","name_en":"onsori","radius":0,"latitude":36.275795,"longitude":59.610855,"parent_id":null,"city_id":3},{"id":1215,"name":"\u062f\u0647\u0646\u0648\u06cc","name_en":"dehnavi","radius":0,"latitude":36.258915,"longitude":59.67178,"parent_id":null,"city_id":3},{"id":1216,"name":"\u0634\u0647\u06cc\u062f \u0645\u0639\u0642\u0648\u0644","name_en":"shahid-maqoul","radius":0,"latitude":36.260597,"longitude":59.66355,"parent_id":null,"city_id":3},{"id":1217,"name":"\u0627\u0645\u06cc\u0631\u0622\u0628\u0627\u062f","name_en":"amirabad-mashhad","radius":0,"latitude":36.264523,"longitude":59.659676,"parent_id":null,"city_id":3},{"id":1218,"name":"\u06a9\u0627\u0631\u0645\u0646\u062f\u0627\u0646 \u062f\u0648\u0645","name_en":"karmandan-e-dovom","radius":0,"latitude":36.26848,"longitude":59.647217,"parent_id":null,"city_id":3},{"id":1219,"name":"\u06a9\u0627\u0631\u0645\u0646\u062f\u0627\u0646 \u0627\u0648\u0644","name_en":"karmandan-e-aval","radius":0,"latitude":36.27532,"longitude":59.634983,"parent_id":null,"city_id":3},{"id":1220,"name":"\u0686\u0647\u0646\u0648","name_en":"chahnou","radius":0,"latitude":36.275917,"longitude":59.6238,"parent_id":null,"city_id":3},{"id":1221,"name":"\u0634\u06cc\u0631\u0648\u062f\u06cc","name_en":"shiroudi","radius":0,"latitude":36.270233,"longitude":59.6311,"parent_id":null,"city_id":3},{"id":1222,"name":"\u06a9\u0627\u0631\u06af\u0631\u0627\u0646","name_en":"kuy-e-karagaran","radius":0,"latitude":36.26318,"longitude":59.6242,"parent_id":null,"city_id":3},{"id":1223,"name":"\u0645\u0635\u0637\u0641\u06cc \u062e\u0645\u06cc\u0646\u06cc","name_en":"kuy-e-agha-mostafa-khomeini","radius":0,"latitude":36.2583,"longitude":59.640045,"parent_id":null,"city_id":3},{"id":1225,"name":"\u0645\u062d\u0645\u062f\u0622\u0628\u0627\u062f","name_en":"mohammadabad","radius":0,"latitude":36.26246,"longitude":59.63649,"parent_id":null,"city_id":3},{"id":1226,"name":"\u0634\u0647\u0631\u06a9 \u0634\u06cc\u0631\u06cc\u0646","name_en":"Shahrak-e-Shirin","radius":0,"latitude":36.256523,"longitude":59.65341,"parent_id":null,"city_id":3},{"id":1227,"name":"\u0645\u0642\u062f\u0645","name_en":"moqadam-mashhad","radius":0,"latitude":36.262604,"longitude":59.60952,"parent_id":null,"city_id":3},{"id":1228,"name":"\u067e\u0631\u0648\u06cc\u0646 \u0627\u0639\u062a\u0635\u0627\u0645\u06cc","name_en":"parvin-etesami","radius":0,"latitude":36.254265,"longitude":59.617115,"parent_id":null,"city_id":3},{"id":1229,"name":"\u0646\u06cc\u0632\u0647","name_en":"neyzeh","radius":0,"latitude":36.303276,"longitude":59.684505,"parent_id":null,"city_id":3},{"id":1230,"name":"\u067e\u0646\u062c \u062a\u0646 \u0622\u0644 \u0639\u0628\u0627","name_en":"panj-tan-al-e-abba","radius":0,"latitude":36.320213,"longitude":59.69263,"parent_id":null,"city_id":3},{"id":1232,"name":"\u0648\u0644\u06cc\u0639\u0635\u0631","name_en":"valiasr-mashhad","radius":0,"latitude":36.240757,"longitude":59.59317,"parent_id":null,"city_id":3},{"id":1234,"name":"\u06a9\u0648\u06cc \u067e\u0644\u06cc\u0633","name_en":"kuy-e-police","radius":0,"latitude":36.25369,"longitude":59.609035,"parent_id":null,"city_id":3},{"id":1235,"name":"\u0633\u06cc\u062f\u06cc","name_en":"Kuy-e-Seyyedi","radius":0,"latitude":36.24191,"longitude":59.611706,"parent_id":null,"city_id":3},{"id":1236,"name":"\u0641\u0631\u0648\u062f\u06af\u0627\u0647","name_en":"mashhad-hashemi-nejad-international-airport","radius":0,"latitude":36.238457,"longitude":59.64259,"parent_id":null,"city_id":3},{"id":1237,"name":"\u0627\u0646\u0642\u0644\u0627\u0628","name_en":"enqelab-mashhad","radius":0,"latitude":36.228077,"longitude":59.61936,"parent_id":null,"city_id":3},{"id":1238,"name":"\u0628\u0647\u0627\u0631\u0633\u062a\u0627\u0646","name_en":"baharestan-mashhad","radius":0,"latitude":36.226456,"longitude":59.603893,"parent_id":null,"city_id":3},{"id":1239,"name":"\u0634\u0647\u0631\u06a9 \u0627\u0628\u0648\u0630\u0631","name_en":"shahrak-e-abuzar","radius":0,"latitude":36.210285,"longitude":59.61265,"parent_id":null,"city_id":3},{"id":1240,"name":"\u0631\u0628\u0627\u0637 \u0637\u0631\u0642","name_en":"robat-e-Toroq","radius":0,"latitude":36.196262,"longitude":59.62222,"parent_id":null,"city_id":3},{"id":1241,"name":"\u0639\u0633\u06af\u0631\u06cc\u0647","name_en":"asgariyeh","radius":0,"latitude":36.220295,"longitude":59.637745,"parent_id":null,"city_id":3},{"id":1242,"name":"\u0627\u06cc\u0648\u0627\u0646","name_en":"ivan","radius":0,"latitude":36.206326,"longitude":59.646038,"parent_id":null,"city_id":3},{"id":1247,"name":"\u0627\u0631\u0648\u0646\u062f","name_en":"arvand","radius":0,"latitude":36.26441,"longitude":59.68424,"parent_id":null,"city_id":3},{"id":1251,"name":"\u0633\u06cc\u0644\u0648","name_en":"siloo","radius":0,"latitude":29.62655,"longitude":52.552753,"parent_id":null,"city_id":6},{"id":1253,"name":"\u0628\u0627\u063a \u062a\u062e\u062a","name_en":"bagh-e-takht","radius":0,"latitude":29.6334,"longitude":52.54629,"parent_id":null,"city_id":6},{"id":1254,"name":"\u062a\u067e\u0647 \u062a\u0644\u0648\u06cc\u0632\u06cc\u0648\u0646","name_en":"tappeh-telviziyoun","radius":0,"latitude":29.637383,"longitude":52.536457,"parent_id":null,"city_id":6},{"id":1255,"name":"\u0686\u0646\u0686\u0646\u0647","name_en":"chencheneh","radius":0,"latitude":29.635757,"longitude":52.53222,"parent_id":null,"city_id":6},{"id":1256,"name":"\u06a9\u0648\u06cc \u0648\u0644\u06cc\u0639\u0635\u0631","name_en":"kuy-valiasr","radius":0,"latitude":29.612722,"longitude":52.49957,"parent_id":null,"city_id":6},{"id":1257,"name":"\u0634\u0647\u0631\u06a9 \u0627\u06cc\u062b\u0627\u0631","name_en":"shahrak-isar","radius":0,"latitude":29.61975,"longitude":52.478073,"parent_id":null,"city_id":6},{"id":1258,"name":"\u062f\u0631\u0648\u0627\u0632\u0647 \u0627\u0635\u0641\u0647\u0627\u0646","name_en":"darvazeh-isfahan","radius":0,"latitude":29.61987,"longitude":52.55255,"parent_id":null,"city_id":6},{"id":1259,"name":"\u062f\u06cc\u0646\u06a9\u0627\u0646","name_en":"dinakan","radius":0,"latitude":29.69897,"longitude":52.474255,"parent_id":null,"city_id":6},{"id":1260,"name":"\u0645\u0646\u0635\u0648\u0631\u0622\u0628\u0627\u062f","name_en":"mansoor-abad","radius":0,"latitude":29.69446,"longitude":52.48255,"parent_id":null,"city_id":6},{"id":1261,"name":"\u0634\u0647\u0631\u06a9 \u0628\u0627\u0647\u0646\u0631","name_en":"shahrak-bahonar","radius":0,"latitude":29.694218,"longitude":52.458492,"parent_id":null,"city_id":6},{"id":1262,"name":"\u06af\u0644\u062f\u0634\u062a \u0645\u062d\u0645\u062f\u06cc","name_en":"goldasht-mohammadi","radius":0,"latitude":29.69625,"longitude":52.460945,"parent_id":null,"city_id":6},{"id":1263,"name":"\u0634\u0647\u0631\u06a9 \u0639\u0631\u0641\u0627\u0646","name_en":"shahrak-erfan","radius":0,"latitude":29.691122,"longitude":52.455654,"parent_id":null,"city_id":6},{"id":1264,"name":"\u06af\u0644\u062f\u0634\u062a \u0645\u0639\u0627\u0644\u06cc\u200c\u0622\u0628\u0627\u062f","name_en":"goldasht-moaliabad","radius":0,"latitude":29.685047,"longitude":52.458027,"parent_id":null,"city_id":6},{"id":1266,"name":"\u0634\u0647\u0631\u06a9 \u0628\u0648\u062a\u0627\u0646","name_en":"shahrak-bootan","radius":0,"latitude":29.668116,"longitude":52.557095,"parent_id":null,"city_id":6},{"id":1268,"name":"\u062c\u0648\u0627\u062f\u06cc\u0647","name_en":"javadiyeh-shiraz","radius":0,"latitude":29.704826,"longitude":52.492992,"parent_id":null,"city_id":6},{"id":1269,"name":"\u0634\u0647\u0631\u06a9 \u067e\u0631\u062f\u06cc\u0633","name_en":"pardis-town","radius":0,"latitude":29.707727,"longitude":52.47938,"parent_id":null,"city_id":6},{"id":1270,"name":"\u0634\u0647\u0631\u06a9 \u0622\u0631\u06cc\u0646","name_en":"arian-town","radius":0,"latitude":29.718206,"longitude":52.459743,"parent_id":null,"city_id":6},{"id":1271,"name":"\u062d\u0633\u06cc\u0646\u200c\u0622\u0628\u0627\u062f","name_en":"hossein-abad","radius":0,"latitude":29.707657,"longitude":52.46341,"parent_id":null,"city_id":6},{"id":1272,"name":"\u0634\u0647\u0631\u06a9 \u0628\u0632\u06cc\u0646","name_en":"bezin-town","radius":0,"latitude":29.743002,"longitude":52.428272,"parent_id":null,"city_id":6},{"id":1276,"name":"\u0634\u0647\u0631\u06a9 \u06af\u0644\u0633\u062a\u0627\u0646 \u0634\u0645\u0627\u0644\u06cc","name_en":"north-shahrak-golestan","radius":0,"latitude":29.764261,"longitude":52.422764,"parent_id":null,"city_id":6},{"id":1279,"name":"\u062a\u0644\u062e \u062f\u0627\u0634","name_en":"talkh-e-dash","radius":0,"latitude":29.629053,"longitude":52.48799,"parent_id":null,"city_id":6},{"id":1281,"name":"\u06a9\u0648\u06cc \u0622\u0632\u0627\u062f\u06cc","name_en":"kuy-azadi","radius":0,"latitude":29.63647,"longitude":52.48816,"parent_id":null,"city_id":6},{"id":1282,"name":"\u0634\u0627\u0647 \u0642\u0644\u06cc \u0628\u06cc\u06af\u06cc","name_en":"shah-gholi-beigi","radius":0,"latitude":29.59708,"longitude":52.48213,"parent_id":null,"city_id":6},{"id":1283,"name":"\u062f\u0631\u06a9\u06cc","name_en":"derki","radius":0,"latitude":29.601639,"longitude":52.507484,"parent_id":null,"city_id":6},{"id":1286,"name":"\u06a9\u0648\u06cc \u06cc\u0627\u0633","name_en":"kuy-yas","radius":0,"latitude":29.63959,"longitude":52.469486,"parent_id":null,"city_id":6},{"id":1287,"name":"\u06af\u0644\u0634\u0646","name_en":"golshan","radius":0,"latitude":29.62701,"longitude":52.465363,"parent_id":null,"city_id":6},{"id":1288,"name":"\u06a9\u0648\u06cc \u0642\u0636\u0627\u062a","name_en":"kuy-ghozat","radius":0,"latitude":29.634886,"longitude":52.48246,"parent_id":null,"city_id":6},{"id":1289,"name":"\u062c\u0627\u0646\u0628\u0627\u0632\u0627\u0646","name_en":"janbazan","radius":0,"latitude":29.607378,"longitude":52.47154,"parent_id":null,"city_id":6},{"id":1292,"name":"\u06af\u0648\u06cc\u0645","name_en":"gouyom","radius":0,"latitude":29.823124,"longitude":52.39635,"parent_id":null,"city_id":6},{"id":1293,"name":"\u0634\u0647\u0631\u06a9 \u0641\u062c\u0631","name_en":"fajr-town","radius":0,"latitude":29.797495,"longitude":52.407192,"parent_id":null,"city_id":6},{"id":1294,"name":"\u062f\u0648\u06a9\u0648\u0647\u06a9","name_en":"dokuhak","radius":0,"latitude":29.79044,"longitude":52.41412,"parent_id":null,"city_id":6},{"id":1295,"name":"\u0634\u0647\u0631\u06a9 \u0642\u0635\u0631 \u0642\u0645\u0634\u0647","name_en":"qasre-qomsheh","radius":0,"latitude":29.775278,"longitude":52.443104,"parent_id":null,"city_id":6},{"id":1297,"name":"\u0634\u0647\u0631\u06a9 \u0645\u062e\u0627\u0628\u0631\u0627\u062a","name_en":"shahrak-e-mokhaberat","radius":0,"latitude":29.612171,"longitude":52.46418,"parent_id":null,"city_id":6},{"id":1299,"name":"\u0646\u06cc\u0627\u06cc\u0634","name_en":"niayesh","radius":0,"latitude":29.663624,"longitude":52.492943,"parent_id":null,"city_id":6},{"id":1300,"name":"\u0645\u062d\u0645\u0648\u062f\u06cc\u0647","name_en":"mahmoudieh","radius":0,"latitude":29.672583,"longitude":52.49197,"parent_id":null,"city_id":6},{"id":1303,"name":"\u0634\u0647\u0631\u06a9 \u0645\u062f\u0631\u0633","name_en":"shahrak-modares","radius":0,"latitude":29.568811,"longitude":52.511604,"parent_id":null,"city_id":6},{"id":1304,"name":"\u0634\u0647\u0631\u06a9 \u0645\u0647\u062f\u06cc\u200c\u0622\u0628\u0627\u062f","name_en":"shahrak-mahdiabad","radius":0,"latitude":29.563515,"longitude":52.52608,"parent_id":null,"city_id":6},{"id":1305,"name":"\u0641\u0631\u0632\u0627\u0646\u06af\u0627\u0646","name_en":"farzanegan","radius":0,"latitude":29.585455,"longitude":52.475967,"parent_id":null,"city_id":6},{"id":1306,"name":"\u0647\u0648\u06cc\u0632\u0647","name_en":"hoveyzeh","radius":0,"latitude":29.600206,"longitude":52.469215,"parent_id":null,"city_id":6},{"id":1307,"name":"\u0631\u0636\u0648\u0627\u0646","name_en":"rezvan","radius":0,"latitude":29.579771,"longitude":52.484993,"parent_id":null,"city_id":6},{"id":1308,"name":"\u0641\u0631\u0647\u0646\u06af\u06cc\u0627\u0646","name_en":"farhangian-shiraz","radius":0,"latitude":29.589985,"longitude":52.4693,"parent_id":null,"city_id":6},{"id":1309,"name":"\u0634\u0647\u0631\u06a9 \u062c\u0645\u0627\u0631\u0627\u0646","name_en":"jamaran-shiraz","radius":0,"latitude":29.614618,"longitude":52.450947,"parent_id":null,"city_id":6},{"id":1310,"name":"\u0627\u062d\u0645\u062f\u0622\u0628\u0627\u062f","name_en":"ahmad-abad","radius":0,"latitude":29.5961,"longitude":52.46179,"parent_id":null,"city_id":6},{"id":1311,"name":"\u0634\u0647\u0631\u06a9 \u0627\u0645\u0627\u0645 \u062d\u0633\u06cc\u0646","name_en":"shahrak-imam-hossein","radius":0,"latitude":29.600403,"longitude":52.452915,"parent_id":null,"city_id":6},{"id":1312,"name":"\u0634\u0647\u0631\u06a9 \u0633\u062c\u0627\u062f\u06cc\u0647","name_en":"sajjadieh","radius":0,"latitude":29.61059,"longitude":52.445637,"parent_id":null,"city_id":6},{"id":1313,"name":"\u0645\u0647\u062f\u06cc\u0647","name_en":"mahdiyeh","radius":0,"latitude":29.619972,"longitude":52.44469,"parent_id":null,"city_id":6},{"id":1314,"name":"\u0634\u0647\u0631\u06a9 \u0646\u0648\u0627\u0628 \u0635\u0641\u0648\u06cc","name_en":"shahrak-e-shahid-navvab-e-safavi","radius":0,"latitude":29.567696,"longitude":52.542362,"parent_id":null,"city_id":6},{"id":1315,"name":"\u0634\u0647\u0631\u06a9 \u0648\u0644\u06cc\u0639\u0635\u0631","name_en":"shahrak-valiasr","radius":0,"latitude":29.577892,"longitude":52.569298,"parent_id":null,"city_id":6},{"id":1317,"name":"\u0645\u062d\u0645\u062f\u06cc\u0647","name_en":"mohammadiyeh-shiraz","radius":0,"latitude":29.613264,"longitude":52.43875,"parent_id":null,"city_id":6},{"id":1318,"name":"\u06af\u0644\u062f\u0634\u062a","name_en":"goldasht-shiraz","radius":0,"latitude":29.562326,"longitude":52.5736,"parent_id":null,"city_id":6},{"id":1320,"name":"\u06a9\u0648\u06cc \u0641\u0631\u0647\u0646\u06af\u06cc\u0627\u0646","name_en":"kuy-farhangian-shiraz","radius":0,"latitude":29.584396,"longitude":52.4896,"parent_id":null,"city_id":6},{"id":1321,"name":"\u0634\u0647\u0631\u06a9 \u06af\u0644\u0647\u0627","name_en":"shahrak-golha-shiraz","radius":0,"latitude":29.54959,"longitude":52.553238,"parent_id":null,"city_id":6},{"id":1323,"name":"\u0648\u0632\u06cc\u0631\u0622\u0628\u0627\u062f","name_en":"vazir-abad","radius":0,"latitude":29.539377,"longitude":52.616825,"parent_id":null,"city_id":6},{"id":1324,"name":"\u0633\u0647\u0644\u200c\u0622\u0628\u0627\u062f","name_en":"sahl-abad","radius":0,"latitude":29.55639,"longitude":52.61494,"parent_id":null,"city_id":6},{"id":1325,"name":"\u0642\u0644\u0639\u0647 \u0646\u0648","name_en":"ghale-no","radius":0,"latitude":29.55907,"longitude":52.639816,"parent_id":null,"city_id":6},{"id":1326,"name":"\u0634\u0647\u0631\u06a9 \u0645\u0647\u0631\u06af\u0627\u0646","name_en":"mehregan","radius":0,"latitude":29.562346,"longitude":52.648983,"parent_id":null,"city_id":6},{"id":1327,"name":"\u0634\u0647\u0631\u06a9 \u06a9\u0648\u0634\u06a9\u06a9","name_en":"koshkek","radius":0,"latitude":29.560354,"longitude":52.659172,"parent_id":null,"city_id":6},{"id":1328,"name":"\u0645\u0627\u0647 \u0641\u06cc\u0631\u0648\u0632\u0627\u0646","name_en":"mah-firouzan","radius":0,"latitude":29.569536,"longitude":52.661636,"parent_id":null,"city_id":6},{"id":1330,"name":"\u0639\u0644\u06cc\u200c\u0622\u0628\u0627\u062f","name_en":"ali-abad-shiraz","radius":0,"latitude":29.575796,"longitude":52.67245,"parent_id":null,"city_id":6},{"id":1331,"name":"\u0646\u0635\u0631\u0622\u0628\u0627\u062f","name_en":"nasr-abad","radius":0,"latitude":29.582987,"longitude":52.64579,"parent_id":null,"city_id":6},{"id":1332,"name":"\u062f\u0633\u062a \u062e\u0636\u0631","name_en":"dastkhezr","radius":0,"latitude":29.578451,"longitude":52.63574,"parent_id":null,"city_id":6},{"id":1333,"name":"\u0634\u0631\u06cc\u0641\u200c\u0622\u0628\u0627\u062f","name_en":"sharif-abad","radius":0,"latitude":29.570995,"longitude":52.615803,"parent_id":null,"city_id":6},{"id":1334,"name":"\u067e\u0648\u062f\u0646\u06a9","name_en":"pdonak","radius":0,"latitude":29.576506,"longitude":52.59576,"parent_id":null,"city_id":6},{"id":1335,"name":"\u0628\u0646\u06a9\u062f\u0627\u0631\u0627\u0646","name_en":"bonakdaran","radius":0,"latitude":29.57115,"longitude":52.566685,"parent_id":null,"city_id":6},{"id":1336,"name":"\u0634\u0647\u0631\u06a9 \u0646\u06cc\u0631\u0648\u06cc \u0627\u0646\u062a\u0638\u0627\u0645\u06cc","name_en":"shahrak-nirou-entezamie","radius":0,"latitude":29.584787,"longitude":52.60476,"parent_id":null,"city_id":6},{"id":1337,"name":"\u062f\u0647 \u067e\u06cc\u0627\u0644\u0647","name_en":"deh-pialeh","radius":0,"latitude":29.568253,"longitude":52.55924,"parent_id":null,"city_id":6},{"id":1338,"name":"\u0634\u06cc\u062e \u0639\u0644\u06cc \u0686\u0648\u067e\u0627\u0646","name_en":"sheikh-ali-choupan","radius":0,"latitude":29.578442,"longitude":52.553226,"parent_id":null,"city_id":6},{"id":1339,"name":"\u0644\u0634\u06a9\u0631\u06cc","name_en":"lashkari","radius":0,"latitude":29.584301,"longitude":52.528713,"parent_id":null,"city_id":6},{"id":1340,"name":"\u0622\u0631\u0627\u0645\u0633\u062a\u0627\u0646 \u062f\u0627\u0631\u0627\u0644\u0631\u062d\u0645\u0647","name_en":"shiraz-cemetery","radius":0,"latitude":29.577929,"longitude":52.54593,"parent_id":null,"city_id":6},{"id":1341,"name":"\u0634\u0647\u0631\u06a9 \u062d\u062c\u062a\u200c\u0622\u0628\u0627\u062f","name_en":"hojat-abad","radius":0,"latitude":29.55871,"longitude":52.518692,"parent_id":null,"city_id":6},{"id":1342,"name":"\u0633\u0627\u0645\u0627\u0646","name_en":"saman","radius":0,"latitude":29.555967,"longitude":52.518528,"parent_id":null,"city_id":6},{"id":1343,"name":"\u0634\u0647\u0631\u06a9 \u0628\u0631\u0642","name_en":"shahrak-bargh","radius":0,"latitude":29.561768,"longitude":52.50844,"parent_id":null,"city_id":6},{"id":1344,"name":"\u0634\u0647\u0631\u06a9 \u062f\u0627\u0631\u0627\u0626\u06cc","name_en":"shahrak-daraie","radius":0,"latitude":29.564674,"longitude":52.503197,"parent_id":null,"city_id":6},{"id":1345,"name":"\u0645\u0633\u0644\u0645","name_en":"moslem","radius":0,"latitude":29.583902,"longitude":52.538746,"parent_id":null,"city_id":6},{"id":1347,"name":"\u0645\u0642\u0631","name_en":"maqar","radius":0,"latitude":29.589802,"longitude":52.55073,"parent_id":null,"city_id":6},{"id":1348,"name":"\u0642\u0644\u0639\u0647 \u0634\u0627\u0647\u0632\u0627\u062f\u0647 \u0628\u06cc\u06af\u0645","name_en":"ghaleh-shahzadeh-bagom","radius":0,"latitude":29.583729,"longitude":52.56096,"parent_id":null,"city_id":6},{"id":1349,"name":"\u0634\u06cc\u0634\u0647\u200c\u06af\u0631\u06cc","name_en":"shishehgari","radius":0,"latitude":29.594685,"longitude":52.551098,"parent_id":null,"city_id":6},{"id":1350,"name":"\u062f\u0627\u0646\u0634\u06af\u0627\u0647 \u0634\u0647\u06cc\u062f \u0628\u0627\u0647\u0646\u0631","name_en":"shahid-bahonar-university","radius":0,"latitude":29.588049,"longitude":52.54618,"parent_id":null,"city_id":6},{"id":1351,"name":"\u0635\u0627\u062d\u0628 \u0627\u0644\u0632\u0645\u0627\u0646","name_en":"saheb-al-zaman-shiraz","radius":0,"latitude":29.59031,"longitude":52.538803,"parent_id":null,"city_id":6},{"id":1352,"name":"\u0627\u0645\u0627\u0645 \u062d\u0633\u06cc\u0646","name_en":"emam-hosein","radius":0,"latitude":29.592995,"longitude":52.532703,"parent_id":null,"city_id":6},{"id":1353,"name":"\u06af\u0644\u06a9\u0648\u0628","name_en":"golkoub","radius":0,"latitude":29.602745,"longitude":52.53231,"parent_id":null,"city_id":6},{"id":1354,"name":"\u062f\u0628\u0627\u063a \u062e\u0627\u0646\u0647","name_en":"dabbagh-khaneh","radius":0,"latitude":29.598484,"longitude":52.53801,"parent_id":null,"city_id":6},{"id":1355,"name":"\u0642\u0644\u0639\u0647 \u0642\u0628\u0644\u0647","name_en":"ghaleh-ghebleh","radius":0,"latitude":29.588228,"longitude":52.520042,"parent_id":null,"city_id":6},{"id":1356,"name":"\u062a\u0646\u062f\u06af\u0648\u06cc\u0627\u0646","name_en":"tondgooyan","radius":0,"latitude":29.591942,"longitude":52.513058,"parent_id":null,"city_id":6},{"id":1357,"name":"\u0644\u0627\u0644\u0647","name_en":"laleh","radius":0,"latitude":29.599552,"longitude":52.517117,"parent_id":null,"city_id":6},{"id":1358,"name":"\u0632\u0631\u0647\u06cc","name_en":"zerehi","radius":0,"latitude":29.614166,"longitude":52.489017,"parent_id":null,"city_id":6},{"id":1359,"name":"\u0622\u0628\u06cc\u0627\u0631\u06cc","name_en":"abyari","radius":0,"latitude":29.610695,"longitude":52.510162,"parent_id":null,"city_id":6},{"id":1360,"name":"\u0627\u0635\u0644\u0627\u062d\u200c\u0646\u0698\u0627\u062f","name_en":"eslahnejad","radius":0,"latitude":29.61112,"longitude":52.517525,"parent_id":null,"city_id":6},{"id":1361,"name":"\u062a\u062d\u0648\u0644\u06cc","name_en":"tahavoli","radius":0,"latitude":29.605207,"longitude":52.524246,"parent_id":null,"city_id":6},{"id":1362,"name":"\u0628\u0627\u0632\u0627\u0631","name_en":"bazaar-shiraz","radius":0,"latitude":29.616808,"longitude":52.54904,"parent_id":null,"city_id":6},{"id":1363,"name":"\u06af\u0648\u062f \u0639\u0631\u0628\u0627\u0646","name_en":"god-araban","radius":0,"latitude":29.6126,"longitude":52.547344,"parent_id":null,"city_id":6},{"id":1364,"name":"\u0628\u0627\u0644\u0627 \u06a9\u0641\u062a","name_en":"bala-kaft","radius":0,"latitude":29.602633,"longitude":52.550846,"parent_id":null,"city_id":6},{"id":1365,"name":"\u0627\u0633\u062d\u0627\u0642 \u0628\u06cc\u06af","name_en":"eshagh-beyg","radius":0,"latitude":29.60749,"longitude":52.548374,"parent_id":null,"city_id":6},{"id":1366,"name":"\u0627\u062d\u0645\u062f\u06cc","name_en":"ahmadi","radius":0,"latitude":29.609335,"longitude":52.54406,"parent_id":null,"city_id":6},{"id":1367,"name":"\u0644\u0628 \u0622\u0628","name_en":"lab-e-ab","radius":0,"latitude":29.603037,"longitude":52.54434,"parent_id":null,"city_id":6},{"id":1368,"name":"\u0645\u06cc\u062f\u0627\u0646 \u0634\u0627\u0647","name_en":"shah-square","radius":0,"latitude":29.613512,"longitude":52.53891,"parent_id":null,"city_id":6},{"id":1369,"name":"\u0633\u0631 \u0628\u0627\u063a","name_en":"sar-bagh","radius":0,"latitude":29.611328,"longitude":52.538376,"parent_id":null,"city_id":6},{"id":1370,"name":"\u0645\u062d\u0644\u0647 \u0633\u0646\u06af \u0633\u06cc\u0627\u0647","name_en":"kuy-sang-siah","radius":0,"latitude":29.609684,"longitude":52.535305,"parent_id":null,"city_id":6},{"id":1371,"name":"\u062f\u0631\u0648\u0627\u0632\u0647 \u06a9\u0627\u0632\u0631\u0648\u0646","name_en":"darvazeh-kazeroon","radius":0,"latitude":29.610088,"longitude":52.525208,"parent_id":null,"city_id":6},{"id":1372,"name":"\u0645\u062d\u0644\u0647 \u0633\u0631 \u062f\u0632\u06a9","name_en":"dozak","radius":0,"latitude":29.606592,"longitude":52.53972,"parent_id":null,"city_id":6},{"id":1373,"name":"\u0648\u0635\u0627\u0644","name_en":"vesal","radius":0,"latitude":29.614866,"longitude":52.53111,"parent_id":null,"city_id":6},{"id":1374,"name":"\u0627\u0628\u06cc\u0648\u0631\u062f\u06cc","name_en":"abiverdi","radius":0,"latitude":29.63867,"longitude":52.512142,"parent_id":null,"city_id":6},{"id":1375,"name":"\u0686\u0648 \u06af\u06cc\u0627\u0647","name_en":"chogiah","radius":0,"latitude":29.644342,"longitude":52.50792,"parent_id":null,"city_id":6},{"id":1376,"name":"\u067e\u0631\u062f\u06cc\u0633 \u0627\u0631\u0645","name_en":"pardis-of-eram","radius":0,"latitude":29.650145,"longitude":52.51066,"parent_id":null,"city_id":6},{"id":1378,"name":"\u06a9\u06cc\u0627\u0646 \u0634\u0647\u0631","name_en":"kian-shahr-shiraz","radius":0,"latitude":29.589813,"longitude":52.57846,"parent_id":null,"city_id":6},{"id":1379,"name":"\u0634\u0647\u0631\u06a9 \u0633\u0639\u062f\u06cc","name_en":"sharak-e-sadi","radius":0,"latitude":29.6276,"longitude":52.584972,"parent_id":null,"city_id":6},{"id":1380,"name":"\u0645\u062d\u0644\u0647 \u0637\u0644\u0627\u0628 (\u0646\u06cc\u0633\u062a\u0627\u0646)","name_en":"kuy-tollab","radius":0,"latitude":29.622362,"longitude":52.575546,"parent_id":null,"city_id":6},{"id":1381,"name":"\u0633\u0639\u062f\u06cc\u0647","name_en":"saadiyeh","radius":0,"latitude":29.621954,"longitude":52.589252,"parent_id":null,"city_id":6},{"id":1382,"name":"\u0627\u0628\u0648\u0646\u0635\u0631","name_en":"abunasr","radius":0,"latitude":29.597466,"longitude":52.5927,"parent_id":null,"city_id":6},{"id":1383,"name":"\u06a9\u0627\u0631\u0627\u0646\u062f\u06cc\u0634","name_en":"karandish","radius":0,"latitude":29.616982,"longitude":52.561665,"parent_id":null,"city_id":6},{"id":1384,"name":"\u062d\u0627\u0641\u0638\u06cc\u0647","name_en":"hafeziyeh","radius":0,"latitude":29.627586,"longitude":52.557167,"parent_id":null,"city_id":6},{"id":1385,"name":"\u062a\u0644 \u062d\u0633\u06cc\u0646\u200c\u0622\u0628\u0627\u062f","name_en":"tal-e-hosseinabad","radius":0,"latitude":29.583862,"longitude":52.620426,"parent_id":null,"city_id":6},{"id":1386,"name":"\u06a9\u0641\u062a\u0631\u06a9","name_en":"kaftarak","radius":0,"latitude":29.575941,"longitude":52.694733,"parent_id":null,"city_id":6},{"id":1387,"name":"\u0686\u063a\u0627","name_en":"chogha","radius":0,"latitude":29.551517,"longitude":52.60564,"parent_id":null,"city_id":6},{"id":1388,"name":"\u0628\u0631\u06cc\u062c\u0633\u062a\u0648\u0646","name_en":"berijestoon","radius":0,"latitude":29.560608,"longitude":52.59952,"parent_id":null,"city_id":6},{"id":1390,"name":"\u0631\u062d\u0645\u062a\u200c\u0622\u0628\u0627\u062f","name_en":"rahmat-abad","radius":0,"latitude":29.634308,"longitude":52.507965,"parent_id":null,"city_id":6},{"id":1391,"name":"\u062e\u0644\u06cc\u0644\u06cc","name_en":"khalili","radius":0,"latitude":29.627602,"longitude":52.512905,"parent_id":null,"city_id":6},{"id":1393,"name":"\u0645\u0634\u06cc\u0631 \u063a\u0631\u0628\u06cc","name_en":"west-moshir","radius":0,"latitude":29.617453,"longitude":52.51798,"parent_id":null,"city_id":6},{"id":1395,"name":"\u0631\u06cc\u0634\u0645\u06a9","name_en":"rishmak","radius":0,"latitude":29.607664,"longitude":52.490894,"parent_id":null,"city_id":6},{"id":1396,"name":"\u0646\u0634\u0627\u0637","name_en":"neshat-shiraz","radius":0,"latitude":29.628504,"longitude":52.527405,"parent_id":null,"city_id":6},{"id":1398,"name":"\u0645\u0647\u062f\u06cc\u200c\u0622\u0628\u0627\u062f","name_en":"mahdi-abad","radius":0,"latitude":29.643583,"longitude":52.482697,"parent_id":null,"city_id":6},{"id":1401,"name":"\u0647\u0641\u062a \u062a\u0646\u0627\u0646","name_en":"haft-tanan","radius":0,"latitude":29.623009,"longitude":52.565544,"parent_id":null,"city_id":6},{"id":1402,"name":"\u06a9\u0648\u0632\u0647\u200c\u06af\u0631\u06cc","name_en":"koozehgari","radius":0,"latitude":29.583916,"longitude":52.553894,"parent_id":null,"city_id":6},{"id":1403,"name":"\u0641\u0636\u0644\u200c\u0622\u0628\u0627\u062f","name_en":"fazl-abad","radius":0,"latitude":29.578539,"longitude":52.577053,"parent_id":null,"city_id":6},{"id":1404,"name":"\u0622\u0628 \u062c\u0648\u0627\u0631","name_en":"abjavar","radius":0,"latitude":29.570553,"longitude":52.57549,"parent_id":null,"city_id":6},{"id":1405,"name":"\u0635\u0627\u062d\u0628 \u062f\u06cc\u0648\u0627\u0646","name_en":"saheb-divan","radius":0,"latitude":29.57363,"longitude":52.58087,"parent_id":null,"city_id":6},{"id":1406,"name":"\u062f\u0634\u062a \u0686\u0646\u0627\u0631","name_en":"dasht-chenaran","radius":0,"latitude":29.569569,"longitude":52.580956,"parent_id":null,"city_id":6},{"id":1407,"name":"\u0645\u062d\u0631\u0627\u0628","name_en":"mehrab","radius":0,"latitude":29.564127,"longitude":52.570286,"parent_id":null,"city_id":6},{"id":1408,"name":"\u0648\u06cc\u0644\u0627\u0634\u0647\u0631 \u06a9\u06cc\u0645\u06cc\u0627","name_en":"kimia-villa-complex","radius":0,"latitude":29.611547,"longitude":52.620705,"parent_id":null,"city_id":6},{"id":1409,"name":"\u062a\u0631\u06a9\u0627\u0646","name_en":"torkan","radius":0,"latitude":29.563284,"longitude":52.631134,"parent_id":null,"city_id":6},{"id":1410,"name":"\u0633\u0627\u06cc\u062a \u0627\u062f\u0627\u0631\u06cc","name_en":"sait-edari","radius":0,"latitude":29.60496,"longitude":52.56506,"parent_id":null,"city_id":6},{"id":1411,"name":"\u062a\u0631\u0645\u06cc\u0646\u0627\u0644 \u0628\u0627\u0631\u0628\u0631\u06cc","name_en":"barbari-terminal","radius":0,"latitude":29.603462,"longitude":52.47722,"parent_id":null,"city_id":6},{"id":1416,"name":"\u0646\u0627\u0631\u0646\u062c\u0633\u062a\u0627\u0646","name_en":"narenjestan","radius":0,"latitude":29.62991,"longitude":52.595905,"parent_id":null,"city_id":6},{"id":1417,"name":"\u067e\u0627\u06cc \u06a9\u062a\u0627","name_en":"pay-kata","radius":0,"latitude":29.602118,"longitude":52.560013,"parent_id":null,"city_id":6},{"id":1418,"name":"\u0634\u0647\u06cc\u062f \u0628\u0647\u0646\u0627\u0645 \u0627\u0645\u06cc\u0631\u06cc","name_en":"shahid-amiri","radius":0,"latitude":29.611504,"longitude":52.458572,"parent_id":null,"city_id":6},{"id":1419,"name":"\u0634\u0647\u0631\u06a9 \u0634\u0647\u06cc\u062f \u0645\u0646\u062a\u0638\u0631\u06cc","name_en":"shahrak-shahid-montazeri","radius":0,"latitude":32.77068,"longitude":51.55477,"parent_id":null,"city_id":4},{"id":1420,"name":"\u0645\u062d\u0645\u0648\u062f\u0622\u0628\u0627\u062f","name_en":"mahmud-abad","radius":0,"latitude":32.774994,"longitude":51.57544,"parent_id":null,"city_id":4},{"id":1421,"name":"\u0627\u0645\u06cc\u0646\u200c\u0622\u0628\u0627\u062f","name_en":"amin-abad","radius":0,"latitude":32.751156,"longitude":51.56511,"parent_id":null,"city_id":4},{"id":1422,"name":"\u062f\u0627\u0646\u0634\u06af\u0627\u0647 \u0635\u0646\u0639\u062a\u06cc \u0627\u0635\u0641\u0647\u0627\u0646","name_en":"isfahan-university-of-technology","radius":0,"latitude":32.719048,"longitude":51.532726,"parent_id":null,"city_id":4},{"id":1423,"name":"\u062f\u0647\u0646\u0648","name_en":"dehno","radius":0,"latitude":32.73029,"longitude":51.568546,"parent_id":null,"city_id":4},{"id":1424,"name":"\u0639\u0627\u0634\u0642\u200c\u0622\u0628\u0627\u062f","name_en":"ashegh-abad","radius":0,"latitude":32.725563,"longitude":51.607838,"parent_id":null,"city_id":4},{"id":1425,"name":"\u0634\u0647\u0631\u06a9 \u06a9\u0648\u062b\u0631","name_en":"shahrak-kowsar","radius":0,"latitude":32.715412,"longitude":51.60643,"parent_id":null,"city_id":4},{"id":1426,"name":"\u0634\u0647\u0631\u06a9 \u0645\u0647\u062f\u06cc\u0647","name_en":"shahrak-mahdieh","radius":0,"latitude":32.72481,"longitude":51.595135,"parent_id":null,"city_id":4},{"id":1427,"name":"\u0631\u0633\u0627\u0644\u062a","name_en":"resalat-isfahan","radius":0,"latitude":32.71811,"longitude":51.585224,"parent_id":null,"city_id":4},{"id":1428,"name":"\u0628\u0627\u0628\u0648\u06a9\u0627\u0646","name_en":"babukan","radius":0,"latitude":32.706657,"longitude":51.593384,"parent_id":null,"city_id":4},{"id":1429,"name":"\u062f\u0633\u062a\u06af\u0631\u062f \u0642\u062f\u0627\u0631\u0647","name_en":"dastgerd-e-qadaadeh","radius":0,"latitude":32.69844,"longitude":51.55947,"parent_id":null,"city_id":4},{"id":1430,"name":"\u0645\u0627\u0631\u0686\u06cc\u0646","name_en":"marchin","radius":0,"latitude":32.708076,"longitude":51.616734,"parent_id":null,"city_id":4},{"id":1433,"name":"\u0644\u0645\u062c\u06cc\u0631","name_en":"lemjir","radius":0,"latitude":32.6986,"longitude":51.614662,"parent_id":null,"city_id":4},{"id":1434,"name":"\u0646\u0627\u0635\u0631\u062e\u0633\u0631\u0648","name_en":"naser-khosro","radius":0,"latitude":32.727238,"longitude":51.643646,"parent_id":null,"city_id":4},{"id":1435,"name":"\u0622\u0632\u0627\u062f\u06af\u0627\u0646","name_en":"azadegan-isfahan","radius":0,"latitude":32.730587,"longitude":51.64718,"parent_id":null,"city_id":4},{"id":1436,"name":"\u0639\u0642\u06cc\u0642","name_en":"aqiq","radius":0,"latitude":32.72989,"longitude":51.65182,"parent_id":null,"city_id":4},{"id":1437,"name":"\u0635\u062f\u0641","name_en":"sadaf-isfahan","radius":0,"latitude":32.732674,"longitude":51.653843,"parent_id":null,"city_id":4},{"id":1438,"name":"\u0628\u0631\u0644\u06cc\u0627\u0646","name_en":"berelian","radius":0,"latitude":32.729073,"longitude":51.660534,"parent_id":null,"city_id":4},{"id":1440,"name":"\u0646\u06af\u0627\u0631\u0633\u062a\u0627\u0646","name_en":"negarestan","radius":0,"latitude":32.720028,"longitude":51.66645,"parent_id":null,"city_id":4},{"id":1441,"name":"\u0634\u0647\u0631\u06a9 \u0648\u0644\u06cc \u0639\u0635\u0631","name_en":"valiasr-town","radius":0,"latitude":32.73936,"longitude":51.660877,"parent_id":null,"city_id":4},{"id":1442,"name":"\u0634\u0647\u0631\u06a9 \u0645\u06cc\u0644\u0627\u062f","name_en":"shahrak-milad","radius":0,"latitude":32.72833,"longitude":51.67882,"parent_id":null,"city_id":4},{"id":1443,"name":"\u0634\u0647\u0631\u06a9 \u06a9\u0627\u0648\u0647","name_en":"shahrak-kaveh","radius":0,"latitude":32.7194,"longitude":51.68387,"parent_id":null,"city_id":4},{"id":1444,"name":"\u0628\u0631\u0627\u0632\u0646\u062f\u0647","name_en":"barazandeh","radius":0,"latitude":32.709187,"longitude":51.69074,"parent_id":null,"city_id":4},{"id":1445,"name":"\u062f\u0631\u0627\u06a9","name_en":"derak","radius":0,"latitude":32.71713,"longitude":51.725903,"parent_id":null,"city_id":4},{"id":1446,"name":"\u0627\u0634\u0631\u0627\u0642","name_en":"eshragh","radius":0,"latitude":32.698208,"longitude":51.683083,"parent_id":null,"city_id":4},{"id":1447,"name":"\u0644\u0627\u0644\u0647","name_en":"lale","radius":0,"latitude":32.69144,"longitude":51.708546,"parent_id":null,"city_id":4},{"id":1448,"name":"\u0628\u06cc\u0633\u062a \u0648 \u0686\u0647\u0627\u0631 \u0645\u062a\u0631\u06cc","name_en":"24-metri","radius":0,"latitude":32.684246,"longitude":51.70391,"parent_id":null,"city_id":4},{"id":1449,"name":"\u0637\u0648\u0642\u0686\u06cc","name_en":"toghchi","radius":0,"latitude":32.67838,"longitude":51.691254,"parent_id":null,"city_id":4},{"id":1450,"name":"\u0641\u0631\u0648\u0631\u062f\u06cc\u0646","name_en":"farvardin","radius":0,"latitude":32.691677,"longitude":51.695427,"parent_id":null,"city_id":4},{"id":1451,"name":"\u0628\u0627\u0642\u0648\u0634\u062e\u0627\u0646\u0647","name_en":"baghoush-khaneh","radius":0,"latitude":32.687237,"longitude":51.688396,"parent_id":null,"city_id":4},{"id":1452,"name":"\u067e\u0627 \u0642\u0644\u0639\u0647","name_en":"pa-ghalea","radius":0,"latitude":32.68871,"longitude":51.678066,"parent_id":null,"city_id":4},{"id":1453,"name":"\u0645\u062f\u0631\u0633","name_en":"modarres-isfahan","radius":0,"latitude":32.679447,"longitude":51.678764,"parent_id":null,"city_id":4},{"id":1454,"name":"\u0634\u0647\u0634\u0647\u0627\u0646","name_en":"shahshahan","radius":0,"latitude":32.66969,"longitude":51.67901,"parent_id":null,"city_id":4},{"id":1455,"name":"\u062c\u0648\u0628\u0627\u0631\u0647","name_en":"joubareh","radius":0,"latitude":32.67019,"longitude":51.6922,"parent_id":null,"city_id":4},{"id":1456,"name":"\u0634\u0647\u06cc\u0634\u200c\u0622\u0628\u0627\u062f","name_en":"shahishabad","radius":0,"latitude":32.67651,"longitude":51.66199,"parent_id":null,"city_id":4},{"id":1457,"name":"\u062f\u0633\u062a\u06af\u0631\u062f\u0647","name_en":"dastgerdeh","radius":0,"latitude":32.680862,"longitude":51.648922,"parent_id":null,"city_id":4},{"id":1458,"name":"\u0622\u0641\u0627\u0631\u0627\u0646","name_en":"afaran","radius":0,"latitude":32.67116,"longitude":51.641376,"parent_id":null,"city_id":4},{"id":1459,"name":"\u0645\u062d\u0644\u0647 \u0646\u0648","name_en":"mahale-now","radius":0,"latitude":32.66256,"longitude":51.656525,"parent_id":null,"city_id":4},{"id":1460,"name":"\u06af\u0648\u0631\u062a\u0627\u0646","name_en":"gurtan","radius":0,"latitude":32.6575,"longitude":51.620213,"parent_id":null,"city_id":4},{"id":1461,"name":"\u0646\u0627\u0632\u0628\u0646\u062f","name_en":"nazband","radius":0,"latitude":32.66206,"longitude":51.665356,"parent_id":null,"city_id":4},{"id":1462,"name":"\u0628\u0627\u0632\u0627\u0631","name_en":"bazzar","radius":0,"latitude":32.662334,"longitude":51.674507,"parent_id":null,"city_id":4},{"id":1463,"name":"\u062c\u0646\u06cc\u0631\u0627\u0646","name_en":"janiran","radius":0,"latitude":32.668335,"longitude":51.606663,"parent_id":null,"city_id":4},{"id":1464,"name":"\u0648\u0644\u062f\u0627\u0646","name_en":"veldan","radius":0,"latitude":32.677074,"longitude":51.62384,"parent_id":null,"city_id":4},{"id":1465,"name":"\u0633\u0648\u062f\u0627\u0646","name_en":"soodan","radius":0,"latitude":32.67267,"longitude":51.604652,"parent_id":null,"city_id":4},{"id":1467,"name":"\u0645\u062d\u0645\u062f \u0637\u0627\u0647\u0631","name_en":"mohammad-taher","radius":0,"latitude":32.6977,"longitude":51.694748,"parent_id":null,"city_id":4},{"id":1468,"name":"\u06af\u0644\u0628\u0647\u0627\u0631","name_en":"golbahar-isfahan","radius":0,"latitude":32.66369,"longitude":51.68208,"parent_id":null,"city_id":4},{"id":1469,"name":"\u06cc\u0632\u062f\u200c\u0622\u0628\u0627\u062f","name_en":"yazd-abad","radius":0,"latitude":32.664032,"longitude":51.689213,"parent_id":null,"city_id":4},{"id":1470,"name":"\u0627\u062d\u0645\u062f\u0622\u0628\u0627\u062f","name_en":"ahmad-abad-isfahan","radius":0,"latitude":32.664104,"longitude":51.69685,"parent_id":null,"city_id":4},{"id":1471,"name":"\u0644\u0627\u062f\u0627\u0646","name_en":"ladan-isfahan","radius":0,"latitude":32.66674,"longitude":51.621246,"parent_id":null,"city_id":4},{"id":1472,"name":"\u06af\u0644\u0632\u0627\u0631","name_en":"golzar-isfahan","radius":0,"latitude":32.65826,"longitude":51.697346,"parent_id":null,"city_id":4},{"id":1473,"name":"\u0642\u0644\u0639\u0647 \u0637\u0628\u0631\u0647","name_en":"ghale-tabre","radius":0,"latitude":32.65661,"longitude":51.68873,"parent_id":null,"city_id":4},{"id":1474,"name":"\u0634\u06cc\u062e \u06cc\u0648\u0633\u0641","name_en":"sheykh-yousef","radius":0,"latitude":32.6506,"longitude":51.68438,"parent_id":null,"city_id":4},{"id":1475,"name":"\u0645\u0641\u062a\u062d","name_en":"mofatteh","radius":0,"latitude":32.658844,"longitude":51.708107,"parent_id":null,"city_id":4},{"id":1476,"name":"\u062f\u0634\u062a\u0633\u062a\u0627\u0646","name_en":"dashtestan","radius":0,"latitude":32.6672,"longitude":51.70793,"parent_id":null,"city_id":4},{"id":1477,"name":"\u062a\u0627\u0644\u0627\u0631","name_en":"talar","radius":0,"latitude":32.67056,"longitude":51.72241,"parent_id":null,"city_id":4},{"id":1478,"name":"\u067e\u0627\u06cc\u06cc\u0646 \u062f\u0631\u0648\u0627\u0632\u0647","name_en":"paeen-darvazeh","radius":0,"latitude":32.667587,"longitude":51.69899,"parent_id":null,"city_id":4},{"id":1479,"name":"\u0634\u0627\u0647\u0632\u06cc\u062f","name_en":"shahzyed","radius":0,"latitude":32.65394,"longitude":51.703144,"parent_id":null,"city_id":4},{"id":1480,"name":"\u0628\u06cc\u0633\u06cc\u0645","name_en":"bisim-isfahan","radius":0,"latitude":32.653156,"longitude":51.710304,"parent_id":null,"city_id":4},{"id":1481,"name":"\u0647\u0645\u062f\u0627\u0646\u06cc\u0627\u0646","name_en":"hamedaniyan","radius":0,"latitude":32.65426,"longitude":51.718365,"parent_id":null,"city_id":4},{"id":1482,"name":"\u0628\u0647\u0627\u0631\u0627\u0646","name_en":"baharan-isfahan","radius":0,"latitude":32.650658,"longitude":51.72407,"parent_id":null,"city_id":4},{"id":1483,"name":"\u0631\u06a9\u0646\u200c\u0627\u0644\u062f\u0648\u0644\u0647","name_en":"roknodowleh","radius":0,"latitude":32.647606,"longitude":51.70855,"parent_id":null,"city_id":4},{"id":1484,"name":"\u0641\u0631\u0647\u0646\u06af\u06cc\u0627\u0646","name_en":"farhangian-isfahan","radius":0,"latitude":32.641678,"longitude":51.704487,"parent_id":null,"city_id":4},{"id":1485,"name":"\u0646\u0648\u0631\u0628\u0627\u0631\u0627\u0646","name_en":"nourbaran","radius":0,"latitude":32.643692,"longitude":51.698917,"parent_id":null,"city_id":4},{"id":1487,"name":"\u0686\u0631\u062e\u0627\u0628","name_en":"charkhab","radius":0,"latitude":32.64705,"longitude":51.67239,"parent_id":null,"city_id":4},{"id":1488,"name":"\u0641\u062a\u062d\u200c\u0622\u0628\u0627\u062f","name_en":"fath-abad","radius":0,"latitude":32.643494,"longitude":51.67925,"parent_id":null,"city_id":4},{"id":1490,"name":"\u0627\u0644\u06cc\u0627\u062f\u0631\u0627\u0646","name_en":"elyderan","radius":0,"latitude":32.6585,"longitude":51.648335,"parent_id":null,"city_id":4},{"id":1491,"name":"\u0628\u06cc\u0634\u0647 \u062d\u0628\u06cc\u0628","name_en":"bishe-habib","radius":0,"latitude":32.643517,"longitude":51.648552,"parent_id":null,"city_id":4},{"id":1492,"name":"\u062c\u0648\u0632\u062f\u0627\u0646","name_en":"jowzdan","radius":0,"latitude":32.664032,"longitude":51.647533,"parent_id":null,"city_id":4},{"id":1493,"name":"\u0646\u0627\u0698\u0648\u0627\u0646","name_en":"nazhvan","radius":0,"latitude":32.64197,"longitude":51.625954,"parent_id":null,"city_id":4},{"id":1494,"name":"\u0645\u0647\u0631\u0622\u0628\u0627\u062f","name_en":"mehr-abad","radius":0,"latitude":32.637157,"longitude":51.713634,"parent_id":null,"city_id":4},{"id":1495,"name":"\u0628\u0627\u0632\u0648\u06af\u0627\u0647","name_en":"bazougah","radius":0,"latitude":32.65967,"longitude":51.63384,"parent_id":null,"city_id":4},{"id":1496,"name":"\u0634\u0647\u0631\u0633\u062a\u0627\u0646","name_en":"shahrestan","radius":0,"latitude":32.630276,"longitude":51.724434,"parent_id":null,"city_id":4},{"id":1497,"name":"\u062c\u06cc \u0634\u06cc\u0631","name_en":"jey-Shir","radius":0,"latitude":32.63236,"longitude":51.73528,"parent_id":null,"city_id":4},{"id":1498,"name":"\u0645\u0627\u0631\u0646\u0627\u0646","name_en":"marnan","radius":0,"latitude":32.63491,"longitude":51.64694,"parent_id":null,"city_id":4},{"id":1500,"name":"\u062a\u062e\u062a \u0641\u0648\u0644\u0627\u062f","name_en":"takht-foulad","radius":0,"latitude":32.626904,"longitude":51.68391,"parent_id":null,"city_id":4},{"id":1501,"name":"\u06a9\u0648\u0644\u0647 \u067e\u0627\u0631\u0686\u0647","name_en":"kouleh-parcheh","radius":0,"latitude":32.631275,"longitude":51.693745,"parent_id":null,"city_id":4},{"id":1502,"name":"\u06af\u0628\u0631\u200c\u0622\u0628\u0627\u062f","name_en":"gabr-abad","radius":0,"latitude":32.634453,"longitude":51.69275,"parent_id":null,"city_id":4},{"id":1503,"name":"\u0641\u0631\u062f\u0648\u0633","name_en":"ferdos","radius":0,"latitude":32.641666,"longitude":51.71974,"parent_id":null,"city_id":4},{"id":1504,"name":"\u06a9\u0631\u062f\u0622\u0628\u0627\u062f","name_en":"kerdabad","radius":0,"latitude":32.644497,"longitude":51.733177,"parent_id":null,"city_id":4},{"id":1505,"name":"\u06a9\u0644\u0645\u0627\u0646","name_en":"kalman","radius":0,"latitude":32.646385,"longitude":51.721004,"parent_id":null,"city_id":4},{"id":1506,"name":"\u0628\u0627\u063a \u063a\u062f\u06cc\u0631","name_en":"bagh-ghadir","radius":0,"latitude":32.642883,"longitude":51.716003,"parent_id":null,"city_id":4},{"id":1507,"name":"\u0634\u0647\u0631\u06a9 \u0641\u0631\u0647\u0646\u06af\u06cc\u0627\u0646","name_en":"farhangiyan-town","radius":0,"latitude":32.651432,"longitude":51.741837,"parent_id":null,"city_id":4},{"id":1508,"name":"\u0633\u0644\u0637\u0627\u0646\u200c\u0622\u0628\u0627\u062f","name_en":"soltan-abad","radius":0,"latitude":32.654167,"longitude":51.743286,"parent_id":null,"city_id":4},{"id":1509,"name":"\u067e\u0632\u0648\u0647","name_en":"pozveh","radius":0,"latitude":32.646862,"longitude":51.74393,"parent_id":null,"city_id":4},{"id":1510,"name":"\u062e\u06cc\u0627\u062f\u0627\u0646","name_en":"khiadan","radius":0,"latitude":32.645573,"longitude":51.753452,"parent_id":null,"city_id":4},{"id":1511,"name":"\u0634\u0647\u0631\u06a9 \u0627\u0644\u0647\u06cc\u0647","name_en":"shahrak-elahiyeh","radius":0,"latitude":32.631016,"longitude":51.771587,"parent_id":null,"city_id":4},{"id":1512,"name":"\u06a9\u0644\u0645\u0647 \u062e\u0648\u0631\u0627\u0646","name_en":"kalmh-khvaran","radius":0,"latitude":32.625935,"longitude":51.743397,"parent_id":null,"city_id":4},{"id":1513,"name":"\u0632\u0648\u0627\u0646","name_en":"zavan","radius":0,"latitude":32.618256,"longitude":51.75622,"parent_id":null,"city_id":4},{"id":1514,"name":"\u067e\u06cc\u0646\u0627\u0631\u062a","name_en":"pinart","radius":0,"latitude":32.611584,"longitude":51.758957,"parent_id":null,"city_id":4},{"id":1515,"name":"\u0634\u0647\u0631\u06a9 \u0632\u0627\u06cc\u0646\u062f\u0647 \u0631\u0648\u062f","name_en":"shahrak-zayandeh","radius":0,"latitude":32.611744,"longitude":51.770004,"parent_id":null,"city_id":4},{"id":1516,"name":"\u0641\u06cc\u0632\u0627\u062f\u0627\u0646","name_en":"fizadan","radius":0,"latitude":32.597942,"longitude":51.758476,"parent_id":null,"city_id":4},{"id":1517,"name":"\u0631\u062f\u0627\u0646","name_en":"radan","radius":0,"latitude":32.59511,"longitude":51.753696,"parent_id":null,"city_id":4},{"id":1518,"name":"\u06a9\u0648\u06cc \u0634\u0647\u06cc\u062f \u06a9\u0634\u0648\u0631\u06cc","name_en":"kuy-shahid-keshvari","radius":0,"latitude":32.60216,"longitude":51.729893,"parent_id":null,"city_id":4},{"id":1519,"name":"\u0631\u0648\u0634\u0646\u200c\u062f\u0634\u062a","name_en":"roshan-dasht","radius":0,"latitude":32.604584,"longitude":51.763718,"parent_id":null,"city_id":4},{"id":1521,"name":"\u0622\u0630\u0631","name_en":"azar-isfahan","radius":0,"latitude":32.651814,"longitude":51.659363,"parent_id":null,"city_id":4},{"id":1522,"name":"\u0646\u0642\u0634 \u062c\u0647\u0627\u0646","name_en":"naqshe-jahan","radius":0,"latitude":32.65523,"longitude":51.67925,"parent_id":null,"city_id":4},{"id":1523,"name":"\u0631\u0647\u0646\u0627\u0646","name_en":"rehnan","radius":0,"latitude":32.68507,"longitude":51.61041,"parent_id":null,"city_id":4},{"id":1524,"name":"\u062f\u0648\u0637\u0641\u0644\u0627\u0646","name_en":"doteflan","radius":0,"latitude":32.699265,"longitude":51.704105,"parent_id":null,"city_id":4},{"id":1527,"name":"\u0635\u0641\u0647","name_en":"soffeh","radius":0,"latitude":32.603603,"longitude":51.654606,"parent_id":null,"city_id":4},{"id":1528,"name":"\u0634\u0647\u0631\u06a9 \u0648\u0644\u06cc\u0639\u0635\u0631","name_en":"shahrak-valiasr-isfahan","radius":0,"latitude":32.612408,"longitude":51.62194,"parent_id":null,"city_id":4},{"id":1529,"name":"\u0627\u0645\u06cc\u0631\u06cc\u0647","name_en":"amiriyeh-isfahan","radius":0,"latitude":32.611874,"longitude":51.606842,"parent_id":null,"city_id":4},{"id":1530,"name":"\u0628\u0627\u063a \u0632\u06cc\u0627\u0631","name_en":"bagh-ziar","radius":0,"latitude":32.63152,"longitude":51.623596,"parent_id":null,"city_id":4},{"id":1531,"name":"\u0648\u062d\u06cc\u062f","name_en":"vahid-isfahan","radius":0,"latitude":32.62668,"longitude":51.631683,"parent_id":null,"city_id":4},{"id":1532,"name":"\u0628\u0627\u063a \u062f\u0631\u06cc\u0627\u0686\u0647","name_en":"bagh-daryacheh","radius":0,"latitude":32.632843,"longitude":51.633183,"parent_id":null,"city_id":4},{"id":1533,"name":"\u0641\u0631\u0647\u0646\u06af","name_en":"farhang-isfahan","radius":0,"latitude":32.626373,"longitude":51.622013,"parent_id":null,"city_id":4},{"id":1534,"name":"\u0645\u062d\u0645\u0648\u062f\u06cc\u0647","name_en":"mahmoodiyeh-isfahan","radius":0,"latitude":32.621796,"longitude":51.62597,"parent_id":null,"city_id":4},{"id":1535,"name":"\u0634\u06cc\u062e \u0635\u062f\u0648\u0642","name_en":"sheykh-sadough","radius":0,"latitude":32.628864,"longitude":51.67122,"parent_id":null,"city_id":4},{"id":1536,"name":"\u062e\u0644\u062c\u0627","name_en":"khalaja","radius":0,"latitude":32.65572,"longitude":51.662094,"parent_id":null,"city_id":4},{"id":1537,"name":"\u0633\u062c\u0627\u062f\u06cc\u0647","name_en":"sajjadieh-isfahan","radius":0,"latitude":32.62134,"longitude":51.643948,"parent_id":null,"city_id":4},{"id":1538,"name":"\u06a9\u0634\u0627\u0648\u0631\u0632\u06cc","name_en":"keshavarzi","radius":0,"latitude":32.61958,"longitude":51.610947,"parent_id":null,"city_id":4},{"id":1539,"name":"\u0628\u0627\u063a \u0641\u0631\u062f\u0648\u0633","name_en":"bagh-ferdows-isfahan","radius":0,"latitude":32.631065,"longitude":51.615574,"parent_id":null,"city_id":4},{"id":1540,"name":"\u062f\u0633\u062a\u06af\u0631\u062f","name_en":"dastgerd","radius":0,"latitude":32.62711,"longitude":51.60813,"parent_id":null,"city_id":4},{"id":1541,"name":"\u0642\u0627\u0626\u0645\u06cc\u0647","name_en":"ghaemiyeh","radius":0,"latitude":32.63226,"longitude":51.591522,"parent_id":null,"city_id":4},{"id":1542,"name":"\u0633\u0639\u0627\u062f\u062a\u200c\u0622\u0628\u0627\u062f","name_en":"saadat-abad-isfahan","radius":0,"latitude":32.61893,"longitude":51.67166,"parent_id":null,"city_id":4},{"id":1543,"name":"\u0622\u0632\u0627\u062f\u0627\u0646","name_en":"azadan","radius":0,"latitude":32.6564,"longitude":51.607635,"parent_id":null,"city_id":4},{"id":1544,"name":"\u06af\u0644\u0633\u062a\u0627\u0646","name_en":"golestan-isfahan","radius":0,"latitude":32.66288,"longitude":51.608166,"parent_id":null,"city_id":4},{"id":1545,"name":"\u0646\u0635\u0631\u0622\u0628\u0627\u062f","name_en":"nasr-abad-isfahan","radius":0,"latitude":32.648113,"longitude":51.61121,"parent_id":null,"city_id":4},{"id":1546,"name":"\u06a9\u0627\u0631\u0644\u0627\u062f\u0627\u0646","name_en":"monarjonban","radius":0,"latitude":32.652298,"longitude":51.59549,"parent_id":null,"city_id":4},{"id":1547,"name":"\u062f\u0631\u0686\u0647","name_en":"dorcheh","radius":0,"latitude":32.613102,"longitude":51.55451,"parent_id":null,"city_id":4},{"id":1548,"name":"\u0632\u0647\u0631\u0627\u0646","name_en":"zahran","radius":0,"latitude":32.65314,"longitude":51.63509,"parent_id":null,"city_id":4},{"id":1549,"name":"\u062c\u0627\u0648\u0627\u0646 \u067e\u0627\u06cc\u06cc\u0646","name_en":"javan-e-paein","radius":0,"latitude":32.66704,"longitude":51.63628,"parent_id":null,"city_id":4},{"id":1550,"name":"\u062c\u0627\u0648\u0627\u0646 \u0628\u0627\u0644\u0627","name_en":"javan-e-bala","radius":0,"latitude":32.67738,"longitude":51.636066,"parent_id":null,"city_id":4},{"id":1551,"name":"\u062c\u0631\u0648\u06a9\u0627\u0646","name_en":"jarvakan","radius":0,"latitude":32.657875,"longitude":51.5822,"parent_id":null,"city_id":4},{"id":1552,"name":"\u062f\u0631\u0628 \u0633\u06cc\u0628\u0647","name_en":"darb-e-sibeh","radius":0,"latitude":32.652706,"longitude":51.75057,"parent_id":null,"city_id":4},{"id":1553,"name":"\u0645\u062d\u0644\u0647 \u0633\u0641\u0644\u06cc","name_en":"mahaleh-sofla","radius":0,"latitude":32.64694,"longitude":51.76463,"parent_id":null,"city_id":4},{"id":1554,"name":"\u0627\u0631\u063a\u0648\u0627\u0646\u06cc\u0647","name_en":"arghavanieh","radius":0,"latitude":32.635685,"longitude":51.772026,"parent_id":null,"city_id":4},{"id":1555,"name":"\u0633\u0646\u062c\u0648\u0627\u0646\u0645\u0631\u0647","name_en":"sanjavamareh","radius":0,"latitude":32.628227,"longitude":51.751976,"parent_id":null,"city_id":4},{"id":1556,"name":"\u0642\u0644\u0639\u0647 \u0628\u0631\u062a\u06cc\u0627\u0646\u0686\u06cc","name_en":"ghale-bertianchi","radius":0,"latitude":32.633698,"longitude":51.75477,"parent_id":null,"city_id":4},{"id":1557,"name":"\u0647\u06cc\u0633\u062a\u0627\u0646","name_en":"histan","radius":0,"latitude":32.633198,"longitude":51.747604,"parent_id":null,"city_id":4},{"id":1558,"name":"\u0634\u0647\u06cc\u062f \u0631\u062c\u0627\u0626\u06cc","name_en":"shahid-rajaee","radius":0,"latitude":32.65368,"longitude":51.73244,"parent_id":null,"city_id":4},{"id":1559,"name":"\u0628\u0648\u0632\u0627\u0646","name_en":"buzan","radius":0,"latitude":32.660748,"longitude":51.7263,"parent_id":null,"city_id":4},{"id":1560,"name":"\u0627\u0628\u0631","name_en":"abr","radius":0,"latitude":32.662624,"longitude":51.737373,"parent_id":null,"city_id":4},{"id":1561,"name":"\u06a9\u0646\u06af\u0627\u0632","name_en":"kangaz","radius":0,"latitude":32.66233,"longitude":51.748352,"parent_id":null,"city_id":4},{"id":1562,"name":"\u0633\u062a\u0627\u0631","name_en":"sattar","radius":0,"latitude":32.66158,"longitude":51.756607,"parent_id":null,"city_id":4},{"id":1563,"name":"\u0627\u0631\u062f\u0627\u062c\u06cc","name_en":"ardaji","radius":0,"latitude":32.65582,"longitude":51.77185,"parent_id":null,"city_id":4},{"id":1564,"name":"\u062e\u0627\u062a\u0648\u0646\u200c\u0622\u0628\u0627\u062f","name_en":"khatoonabad","radius":0,"latitude":32.661148,"longitude":51.788185,"parent_id":null,"city_id":4},{"id":1565,"name":"\u0633\u0648\u062f\u0627\u0646 \u0632\u06cc\u0646\u0628\u06cc\u0647","name_en":"sudan-zeinabiyeh","radius":0,"latitude":32.698822,"longitude":51.71445,"parent_id":null,"city_id":4},{"id":1566,"name":"\u0645\u062d\u0645\u062f\u0622\u0628\u0627\u062f","name_en":"mohammad-abad","radius":0,"latitude":32.66693,"longitude":51.782215,"parent_id":null,"city_id":4},{"id":1567,"name":"\u0639\u0645\u0627\u0646 \u0633\u0627\u0645\u0627\u0646\u06cc","name_en":"oman-samani","radius":0,"latitude":32.7032,"longitude":51.724323,"parent_id":null,"city_id":4},{"id":1568,"name":"\u0642\u0644\u0639\u0647 \u0646\u0648","name_en":"ghale-nou","radius":0,"latitude":32.670288,"longitude":51.801514,"parent_id":null,"city_id":4},{"id":1569,"name":"\u0631\u0627\u0631\u0627\u0646","name_en":"raran","radius":0,"latitude":32.676914,"longitude":51.753384,"parent_id":null,"city_id":4},{"id":1570,"name":"\u0627\u0646\u062f\u0648\u0627\u0646","name_en":"andevan","radius":0,"latitude":32.697056,"longitude":51.766796,"parent_id":null,"city_id":4},{"id":1571,"name":"\u06a9\u06cc\u0627\u0646","name_en":"kian","radius":0,"latitude":32.6891,"longitude":51.769917,"parent_id":null,"city_id":4},{"id":1572,"name":"\u06af\u0648\u0631\u062a","name_en":"gavart","radius":0,"latitude":32.6565,"longitude":51.818127,"parent_id":null,"city_id":4},{"id":1573,"name":"\u0647\u0641\u062a\u0648\u0646","name_en":"haftoon","radius":0,"latitude":32.687202,"longitude":51.72531,"parent_id":null,"city_id":4},{"id":1574,"name":"\u0639\u0633\u06af\u0631\u06cc\u0647","name_en":"asgariyeh-isfahan","radius":0,"latitude":32.675632,"longitude":51.706104,"parent_id":null,"city_id":4},{"id":1575,"name":"\u0628\u0627\u062a\u0648\u0646","name_en":"batoun","radius":0,"latitude":32.70723,"longitude":51.710064,"parent_id":null,"city_id":4},{"id":1576,"name":"\u0637\u0627\u0645\u0647","name_en":"tameh","radius":0,"latitude":32.71122,"longitude":51.66853,"parent_id":null,"city_id":4},{"id":1577,"name":"\u062c\u0627\u0628\u0631 \u0627\u0646\u0635\u0627\u0631\u06cc","name_en":"jaber-ansari","radius":0,"latitude":32.706245,"longitude":51.666843,"parent_id":null,"city_id":4},{"id":1578,"name":"\u06af\u0644 \u0645\u062d\u0645\u062f\u06cc","name_en":"golmohammadi","radius":0,"latitude":32.707367,"longitude":51.652863,"parent_id":null,"city_id":4},{"id":1579,"name":"\u06a9\u0648\u06cc \u06af\u0644\u0632\u0627\u0631","name_en":"kuy-golzar","radius":0,"latitude":32.61544,"longitude":51.595005,"parent_id":null,"city_id":4},{"id":1580,"name":"\u0628\u0647\u0631\u0627\u0645\u200c\u0622\u0628\u0627\u062f","name_en":"bahram-abad","radius":0,"latitude":32.71304,"longitude":51.63651,"parent_id":null,"city_id":4},{"id":1581,"name":"\u0634\u0641\u0642","name_en":"shafagh","radius":0,"latitude":32.61845,"longitude":51.57872,"parent_id":null,"city_id":4},{"id":1582,"name":"\u0631\u0632\u0645\u0646\u062f\u06af\u0627\u0646","name_en":"razmandegan","radius":0,"latitude":32.699745,"longitude":51.652676,"parent_id":null,"city_id":4},{"id":1583,"name":"\u0645\u06cc\u0631\u0639\u0645\u0627\u062f","name_en":"miremad","radius":0,"latitude":32.697987,"longitude":51.66957,"parent_id":null,"city_id":4},{"id":1584,"name":"\u0634\u0647\u0631\u06cc\u0627\u0631","name_en":"shahriyar-isfahan","radius":0,"latitude":32.695145,"longitude":51.660522,"parent_id":null,"city_id":4},{"id":1585,"name":"\u06a9\u0633\u0627\u0631\u0647","name_en":"kesare","radius":0,"latitude":32.69141,"longitude":51.65268,"parent_id":null,"city_id":4},{"id":1586,"name":"\u0641\u0631\u062f\u0648\u0627\u0646","name_en":"fardovan","radius":0,"latitude":32.686104,"longitude":51.644897,"parent_id":null,"city_id":4},{"id":1587,"name":"\u06a9\u0648\u062c\u0627\u0646","name_en":"kojan","radius":0,"latitude":32.69799,"longitude":51.63338,"parent_id":null,"city_id":4},{"id":1588,"name":"\u067e\u0631\u062a\u0645\u0627\u0646","name_en":"partman","radius":0,"latitude":32.692513,"longitude":51.64175,"parent_id":null,"city_id":4},{"id":1589,"name":"\u0628\u0627\u063a \u0632\u0631\u0634\u06a9","name_en":"bagh-zereshk","radius":0,"latitude":32.64068,"longitude":51.660667,"parent_id":null,"city_id":4},{"id":1590,"name":"\u0622\u06cc\u0646\u0647 \u062e\u0627\u0646\u0647","name_en":"aineh-khaneh","radius":0,"latitude":32.64008,"longitude":51.670006,"parent_id":null,"city_id":4},{"id":1591,"name":"\u0628\u0627\u063a \u0646\u06af\u0627\u0631","name_en":"bagh-negar","radius":0,"latitude":32.63541,"longitude":51.678974,"parent_id":null,"city_id":4},{"id":1592,"name":"\u0647\u0645\u062a\u200c\u0622\u0628\u0627\u062f","name_en":"hemat-abad","radius":0,"latitude":32.625847,"longitude":51.700954,"parent_id":null,"city_id":4},{"id":1593,"name":"\u0622\u0628\u0634\u0627\u0631","name_en":"abshar-isfahan","radius":0,"latitude":32.627266,"longitude":51.709408,"parent_id":null,"city_id":4},{"id":1594,"name":"\u06a9\u0648\u06cc \u0627\u0645\u0627\u0645","name_en":"kuy-emam","radius":0,"latitude":32.600224,"longitude":51.67098,"parent_id":null,"city_id":4},{"id":1595,"name":"\u06a9\u0648\u06cc \u0627\u0645\u0627\u0645 \u062c\u0639\u0641\u0631 \u0635\u0627\u062f\u0642","name_en":"emam-jafar-sadegh-town","radius":0,"latitude":32.593685,"longitude":51.664974,"parent_id":null,"city_id":4},{"id":1596,"name":"\u06a9\u0648\u06cc \u0633\u067e\u0627\u0647\u0627\u0646","name_en":"sepahan-lane","radius":0,"latitude":32.58641,"longitude":51.66595,"parent_id":null,"city_id":4},{"id":1597,"name":"\u062f\u0646\u0627\u0631\u062a","name_en":"denart","radius":0,"latitude":32.612736,"longitude":51.743862,"parent_id":null,"city_id":4},{"id":1598,"name":"\u0645\u0644\u06a9","name_en":"malek","radius":0,"latitude":32.65031,"longitude":51.692417,"parent_id":null,"city_id":4},{"id":1599,"name":"\u062e\u0631\u0645","name_en":"khoram","radius":0,"latitude":32.672443,"longitude":51.64653,"parent_id":null,"city_id":4},{"id":1600,"name":"\u0628\u0647\u0627\u0631 \u0622\u0632\u0627\u062f\u06cc","name_en":"bahar-azadi","radius":0,"latitude":32.62514,"longitude":51.6552,"parent_id":null,"city_id":4},{"id":1601,"name":"\u062c\u0644\u0648\u0627\u0646","name_en":"jelvan","radius":0,"latitude":32.712086,"longitude":51.75126,"parent_id":null,"city_id":4},{"id":1602,"name":"\u062d\u0635\u0647","name_en":"hesseh","radius":0,"latitude":32.70433,"longitude":51.753067,"parent_id":null,"city_id":4},{"id":1604,"name":"\u0634\u0647\u0631\u06a9 \u0627\u0645\u0627\u0645 \u062d\u0633\u06cc\u0646","name_en":"shahrak-imam-hossein-isfahan","radius":0,"latitude":32.719364,"longitude":51.736984,"parent_id":null,"city_id":4},{"id":1605,"name":"\u0631\u062d\u06cc\u0645\u200c\u0622\u0628\u0627\u062f","name_en":"rahim-abad","radius":0,"latitude":32.719456,"longitude":51.67575,"parent_id":null,"city_id":4},{"id":1606,"name":"\u0628\u0627\u063a \u0641\u062f\u06a9","name_en":"bagh-fadak","radius":0,"latitude":32.726772,"longitude":51.69789,"parent_id":null,"city_id":4},{"id":1609,"name":"\u062f\u0648\u0644\u062a\u200c\u0622\u0628\u0627\u062f","name_en":"dolat-abad-isfahan","radius":0,"latitude":32.79596,"longitude":51.697052,"parent_id":null,"city_id":4},{"id":1613,"name":"\u0646\u0645\u0627\u06cc\u0634\u06af\u0627\u0647 \u0628\u06cc\u0646 \u0627\u0644\u0645\u0644\u0644\u06cc \u0645\u0634\u0647\u062f","name_en":"mashhad-international-exhibition","radius":0,"latitude":36.348186,"longitude":59.46063,"parent_id":null,"city_id":3}] \ No newline at end of file diff --git a/webpack.mix.js b/webpack.mix.js index fc4e5e5..f46a274 100644 --- a/webpack.mix.js +++ b/webpack.mix.js @@ -39,7 +39,7 @@ require('./modules/wm-core/webpack.mix'); require('./modules/wm-common/webpack.mix'); require('./modules/wm-crm/webpack.mix'); require('./modules/wm-blog/webpack.mix'); -require('./modules/wm-portfolio/webpack.mix'); +//require('./modules/wm-portfolio/webpack.mix'); require('./modules/wm-product/webpack.mix'); require('./modules/wm-service/webpack.mix'); require('./modules/wm-store/webpack.mix'); @@ -49,7 +49,8 @@ require('./modules/wm-roll-call/webpack.mix'); require('./modules/wm-finance/webpack.mix'); require('./modules/wm-app-management/webpack.mix'); require('./modules/wm-web-builder/webpack.mix'); -// require('./modules/wm-service-store/webpack.mix'); +require('./modules/wm-service-store/webpack.mix'); +require('./modules/wm-lms/webpack.mix'); // require('./modules/wm-warehouse/webpack.mix'); // require('./modules/wm-reservation/webpack.mix'); // require('./modules/wm-contact-us/webpack.mix');