{"id":109349,"date":"2018-01-19T15:03:25","date_gmt":"2018-01-19T15:03:25","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=109349"},"modified":"2023-01-09T07:46:43","modified_gmt":"2023-01-09T07:46:43","slug":"create-order-programatically-according-store-currency-magento-2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/create-order-programatically-according-store-currency-magento-2\/","title":{"rendered":"Create Order Programmatically According To Store Currency Magento 2"},"content":{"rendered":"\n<p>Create Order Programmatically According To Store Currency Magento 2 : when we create order Programmatically it is created according to base currency. but sometime we need to create order according to specific store currency.<br>So here i am explaining how you can do it.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"> &lt;?php   \n    public function __construct(\n        \\Magento\\Framework\\App\\Action\\Context $context,\n        \\Magento\\Store\\Model\\StoreManagerInterface $storeManager,\n        \\Magento\\Directory\\Model\\CurrencyFactory $currencyFactory,\n        \\Magento\\Catalog\\Model\\ProductFactory $productFactory,\n        \\Magento\\CatalogInventory\\Api\\StockRegistryInterface $stockRegistry,\n        \\Magento\\Customer\\Model\\CustomerFactory $customerFactory,\n        \\Magento\\Customer\\Api\\CustomerRepositoryInterface $customerRepository,\n        \\Magento\\Backend\\Model\\Session $backendSession,\n        \\Magento\\Quote\\Api\\CartRepositoryInterface $cartRepositoryInterface,\n        \\Magento\\Quote\\Api\\CartManagementInterface $cartManagementInterface,\n        \\Magento\\Quote\\Model\\Quote\\Address\\Rate $shippingRate,\n        \\Magento\\Sales\\Model\\Order $order,\n    ) {\n        $this->storeManager = $storeManager;\n        $this->productFactory = $productFactory;\n        $this->stockRegistry = $stockRegistry;\n        $this->customerFactory = $customerFactory;\n        $this->customerRepository = $customerRepository;\n        $this->backendSession = $backendSession;\n        $this->cartRepositoryInterface = $cartRepositoryInterface;\n        $this->cartManagementInterface = $cartManagementInterface;\n        $this->shippingRate = $shippingRate;\n        $this->order = $order;\n        $this->currencyFactory = $currencyFactory;\n        parent::__construct($context);\n    }\n     \/**\n     * Execute\n     *\n     * @return void\n     *\/\n     public function execute(){\n        $orderData =[\n            'currency_id'  => 'USD',\n            'email'        => 'demo@demo.com', \/\/customer email id\n            'shipping_address' =>[\n                'firstname'    => 'demo',\n                'lastname'     => 'demo',\n                'prefix' => '',\n                'suffix' => '',\n                'street' => 'B1 Abcd street',\n                'city' => 'Los Angeles',\n                'country_id' => 'US',\n                'region' => 'California',\n                'region_id' => '12', \/\/ State region id\n                'postcode' => '45454',\n                'telephone' => '1234512345',\n                'fax' => '12345',\n                'save_in_address_book' => 1\n            ],\n            'items'=>\n                [\n                    ['product_id'=>'50','qty'=>1]\n                ]\n        ];\n        $this->createOrderAtMage($orderData);\n    }\n    \/**\n     * Create order on magento\n     * \n     * @param  array $orderData\n     * @return array\n     *\/\n    public function createOrderAtMage($orderData)\n    {\n        $store = $this->storeManager->getStore();\n        $storeId = $store->getStoreId();\n        $websiteId = $this->storeManager->getStore($storeId)->getWebsiteId();\n        $customer = $this->customerFactory->create();\n        $customer->setWebsiteId($websiteId);\n        $customer->loadByEmail($orderData['email']);\n        if (!$customer->getEntityId()) {\n            $customer->setWebsiteId($websiteId)\n                    ->setStore($store)\n                    ->setFirstname($orderData['shipping_address']['firstname'])\n                    ->setLastname($orderData['shipping_address']['lastname'])\n                    ->setEmail($orderData['email'])\n                    ->setPassword($orderData['email']);\n            $customer->save();\n        }\n        $cartId = $this->cartManagementInterface->createEmptyCart();\n        $quote = $this->cartRepositoryInterface->get($cartId);\n        $quote->setStore($store);\n        \/\/ make change here.\n        $currencyCode = 'USD';\n        \/\/ make change here.\n        $currency =  $this->currencyFactory->create()->load($currencyCode);\n        $this->storeManager->getStore($storeId)->setCurrentCurrency($currency);\n        $customer = $this->customerRepository->getById($customer->getEntityId());\n        \n        $quote->setCurrency();\n        $quote->assignCustomer($customer);\n        foreach ($orderData['items'] as $item) {\n            $product = $this->productFactory->create()->load($item['product_id']);\n            $quote->addProduct(\n                $product,\n                (int)$item['qty']\n            );\n        }\n        \n        \/\/Set Address to quote\n        $quote->getBillingAddress()->addData($orderData['shipping_address']);\n        $quote->getShippingAddress()->addData($orderData['shipping_address']);\n        \/\/ Collect Rates and Set Shipping &amp; Payment Method\n        $shipmethod = \"flatrate_flatrate\"; \/\/change according to your need\n        \/\/ Collect Rates and Set Shipping &amp; Payment Method\n        $this->shippingRate\n            ->setCode($shipmethod)\n            ->getPrice(1);\n        \/\/store shipping data in session\n        $shippingAddress = $quote->getShippingAddress();\n        $shippingAddress->setCollectShippingRates(true)\n                        ->collectShippingRates()\n                        ->setShippingMethod($shipmethod);\n        $quote->getShippingAddress()->addShippingRate($this->shippingRate);\n        $quote->setPaymentMethod(\/** payment method code *\/);\n        $quote->setInventoryProcessed(false);\n        $paymentCode = \"checkmo\"; \/\/change according to your need\n\n        \/\/ Set Sales Order Payment\n        $quote->getPayment()->importData(['method' => $paymentCode]);\n        $quote->save();\n        \/\/ Collect Totals &amp; Save Quote\n        $quote->collectTotals();\n        \/\/ Create Order From Quote\n        $quote = $this->cartRepositoryInterface->get($quote->getId());\n        $orderId = $this->cartManagementInterface->placeOrder($quote->getId());\n        echo $orderId;die;\n    }\n<\/pre>\n\n\n\n<p>Hope so it will help.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Create Order Programmatically According To Store Currency Magento 2 : when we create order Programmatically it is created according to base currency. but sometime we need to create order according to specific store currency.So here i am explaining how you can do it. &lt;?php public function __construct( \\Magento\\Framework\\App\\Action\\Context $context, \\Magento\\Store\\Model\\StoreManagerInterface $storeManager, \\Magento\\Directory\\Model\\CurrencyFactory $currencyFactory, \\Magento\\Catalog\\Model\\ProductFactory $productFactory, <a href=\"https:\/\/webkul.com\/blog\/create-order-programatically-according-store-currency-magento-2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":92,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[302],"tags":[6091,6090,6092],"class_list":["post-109349","post","type-post","status-publish","format-standard","hentry","category-magento2","tag-create-order-magento-2","tag-create-order-programmatically-according-to-store-currency-magento-2","tag-magento-2-order-create"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Create Order Programmatically According To Store Currency Magento 2<\/title>\n<meta name=\"description\" content=\"Create Order Programmatically According To Store Currency Magento 2, create order magento 2, magento 2 order create\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/create-order-programatically-according-store-currency-magento-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Create Order Programmatically According To Store Currency Magento 2\" \/>\n<meta property=\"og:description\" content=\"Create Order Programmatically According To Store Currency Magento 2, create order magento 2, magento 2 order create\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/create-order-programatically-according-store-currency-magento-2\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-01-19T15:03:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-01-09T07:46:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Narendra\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Narendra\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/create-order-programatically-according-store-currency-magento-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-order-programatically-according-store-currency-magento-2\/\"},\"author\":{\"name\":\"Narendra\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/3c4771ea9c127b5c6e7d1ff8b58ec70a\"},\"headline\":\"Create Order Programmatically According To Store Currency Magento 2\",\"datePublished\":\"2018-01-19T15:03:25+00:00\",\"dateModified\":\"2023-01-09T07:46:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-order-programatically-according-store-currency-magento-2\/\"},\"wordCount\":55,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"keywords\":[\"create order magento 2\",\"Create Order Programmatically According To Store Currency Magento 2\",\"magento 2 order create\"],\"articleSection\":[\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/create-order-programatically-according-store-currency-magento-2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/create-order-programatically-according-store-currency-magento-2\/\",\"url\":\"https:\/\/webkul.com\/blog\/create-order-programatically-according-store-currency-magento-2\/\",\"name\":\"Create Order Programmatically According To Store Currency Magento 2\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"datePublished\":\"2018-01-19T15:03:25+00:00\",\"dateModified\":\"2023-01-09T07:46:43+00:00\",\"description\":\"Create Order Programmatically According To Store Currency Magento 2, create order magento 2, magento 2 order create\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-order-programatically-according-store-currency-magento-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/create-order-programatically-according-store-currency-magento-2\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/create-order-programatically-according-store-currency-magento-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Create Order Programmatically According To Store Currency Magento 2\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/3c4771ea9c127b5c6e7d1ff8b58ec70a\",\"name\":\"Narendra\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/303d2e21e5f58ef4ebc1e13fa3c2ef91c7e27b33a9add5728a40545b6de1d269?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/303d2e21e5f58ef4ebc1e13fa3c2ef91c7e27b33a9add5728a40545b6de1d269?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Narendra\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/narendra962\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Create Order Programmatically According To Store Currency Magento 2","description":"Create Order Programmatically According To Store Currency Magento 2, create order magento 2, magento 2 order create","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/webkul.com\/blog\/create-order-programatically-according-store-currency-magento-2\/","og_locale":"en_US","og_type":"article","og_title":"Create Order Programmatically According To Store Currency Magento 2","og_description":"Create Order Programmatically According To Store Currency Magento 2, create order magento 2, magento 2 order create","og_url":"https:\/\/webkul.com\/blog\/create-order-programatically-according-store-currency-magento-2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2018-01-19T15:03:25+00:00","article_modified_time":"2023-01-09T07:46:43+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png","type":"image\/png"}],"author":"Narendra","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Narendra","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/create-order-programatically-according-store-currency-magento-2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/create-order-programatically-according-store-currency-magento-2\/"},"author":{"name":"Narendra","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/3c4771ea9c127b5c6e7d1ff8b58ec70a"},"headline":"Create Order Programmatically According To Store Currency Magento 2","datePublished":"2018-01-19T15:03:25+00:00","dateModified":"2023-01-09T07:46:43+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-order-programatically-according-store-currency-magento-2\/"},"wordCount":55,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"keywords":["create order magento 2","Create Order Programmatically According To Store Currency Magento 2","magento 2 order create"],"articleSection":["Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/create-order-programatically-according-store-currency-magento-2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/create-order-programatically-according-store-currency-magento-2\/","url":"https:\/\/webkul.com\/blog\/create-order-programatically-according-store-currency-magento-2\/","name":"Create Order Programmatically According To Store Currency Magento 2","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"datePublished":"2018-01-19T15:03:25+00:00","dateModified":"2023-01-09T07:46:43+00:00","description":"Create Order Programmatically According To Store Currency Magento 2, create order magento 2, magento 2 order create","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/create-order-programatically-according-store-currency-magento-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/create-order-programatically-according-store-currency-magento-2\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/create-order-programatically-according-store-currency-magento-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Create Order Programmatically According To Store Currency Magento 2"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/3c4771ea9c127b5c6e7d1ff8b58ec70a","name":"Narendra","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/303d2e21e5f58ef4ebc1e13fa3c2ef91c7e27b33a9add5728a40545b6de1d269?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/303d2e21e5f58ef4ebc1e13fa3c2ef91c7e27b33a9add5728a40545b6de1d269?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Narendra"},"url":"https:\/\/webkul.com\/blog\/author\/narendra962\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/109349","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/92"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=109349"}],"version-history":[{"count":5,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/109349\/revisions"}],"predecessor-version":[{"id":363690,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/109349\/revisions\/363690"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=109349"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=109349"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=109349"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}