[{"data":1,"prerenderedAt":745},["ShallowReactive",2],{"support-article-/support/cors-configuration-for-s3-and-azure":3,"support-nav-articles":310,"support-search-articles":642},{"id":4,"title":5,"author":6,"authorRole":7,"body":8,"category":296,"date":297,"description":298,"extension":299,"featured":300,"image":7,"meta":301,"navigation":303,"path":304,"readTime":7,"seo":305,"sitemap":306,"stem":307,"subcategory":308,"tag":7,"__hash__":309},"content/support/cors-configuration-for-s3-and-azure.md","CORS configuration for S3 and Azure","MediaLab Team",null,{"type":9,"value":10,"toc":293},"minimark",[11,24,29,32,214,217,286,289],[12,13,14,15,19,20,23],"p",{},"Cross-Origin Resource Sharing (CORS) enables web applications to securely access resources hosted on different domains. This support article explains what CORS configuration is needed for ",[16,17,18],"strong",{},"AWS S3"," and ",[16,21,22],{},"Azure"," services when hooking up a new storage container to MediaLab. For detailed technical references, consult the AWS S3 CORS documentation and Azure CORS documentation.",[25,26,28],"h3",{"id":27},"sample-cors-configuration","Sample CORS configuration",[12,30,31],{},"Here’s a sample CORS configuration for an S3 bucket, with a concise explanation:",[33,34,39],"pre",{"className":35,"code":36,"language":37,"meta":38,"style":38},"language-js shiki shiki-themes github-light github-dark","{\n  \"AllowedHeaders\": [\n    \"Authorization\",\n    \"x-amz-date\",\n    \"x-amz-content-sha256\",\n    \"x-amz-storage-class\",\n    \"x-amz-server-side-encryption\",\n    \"x-amz-meta-*\",\n    \"content-type\"\n  ],\n  \"AllowedMethods\": [\n    \"GET\",\n    \"PUT\"\n  ],\n  \"AllowedOrigins\": [\n    \"*\"\n  ],\n  \"ExposeHeaders\": [\n    \"ETag\",\n    \"Location\"\n  ],\n  \"MaxAgeSeconds\": 3000\n}\n","js","",[40,41,42,51,61,70,78,86,94,102,110,116,122,130,138,144,149,157,163,168,176,184,190,195,208],"code",{"__ignoreMap":38},[43,44,47],"span",{"class":45,"line":46},"line",1,[43,48,50],{"class":49},"sVt8B","{\n",[43,52,54,58],{"class":45,"line":53},2,[43,55,57],{"class":56},"sZZnC","  \"AllowedHeaders\"",[43,59,60],{"class":49},": [\n",[43,62,64,67],{"class":45,"line":63},3,[43,65,66],{"class":56},"    \"Authorization\"",[43,68,69],{"class":49},",\n",[43,71,73,76],{"class":45,"line":72},4,[43,74,75],{"class":56},"    \"x-amz-date\"",[43,77,69],{"class":49},[43,79,81,84],{"class":45,"line":80},5,[43,82,83],{"class":56},"    \"x-amz-content-sha256\"",[43,85,69],{"class":49},[43,87,89,92],{"class":45,"line":88},6,[43,90,91],{"class":56},"    \"x-amz-storage-class\"",[43,93,69],{"class":49},[43,95,97,100],{"class":45,"line":96},7,[43,98,99],{"class":56},"    \"x-amz-server-side-encryption\"",[43,101,69],{"class":49},[43,103,105,108],{"class":45,"line":104},8,[43,106,107],{"class":56},"    \"x-amz-meta-*\"",[43,109,69],{"class":49},[43,111,113],{"class":45,"line":112},9,[43,114,115],{"class":56},"    \"content-type\"\n",[43,117,119],{"class":45,"line":118},10,[43,120,121],{"class":49},"  ],\n",[43,123,125,128],{"class":45,"line":124},11,[43,126,127],{"class":56},"  \"AllowedMethods\"",[43,129,60],{"class":49},[43,131,133,136],{"class":45,"line":132},12,[43,134,135],{"class":56},"    \"GET\"",[43,137,69],{"class":49},[43,139,141],{"class":45,"line":140},13,[43,142,143],{"class":56},"    \"PUT\"\n",[43,145,147],{"class":45,"line":146},14,[43,148,121],{"class":49},[43,150,152,155],{"class":45,"line":151},15,[43,153,154],{"class":56},"  \"AllowedOrigins\"",[43,156,60],{"class":49},[43,158,160],{"class":45,"line":159},16,[43,161,162],{"class":56},"    \"*\"\n",[43,164,166],{"class":45,"line":165},17,[43,167,121],{"class":49},[43,169,171,174],{"class":45,"line":170},18,[43,172,173],{"class":56},"  \"ExposeHeaders\"",[43,175,60],{"class":49},[43,177,179,182],{"class":45,"line":178},19,[43,180,181],{"class":56},"    \"ETag\"",[43,183,69],{"class":49},[43,185,187],{"class":45,"line":186},20,[43,188,189],{"class":56},"    \"Location\"\n",[43,191,193],{"class":45,"line":192},21,[43,194,121],{"class":49},[43,196,198,201,204],{"class":45,"line":197},22,[43,199,200],{"class":56},"  \"MaxAgeSeconds\"",[43,202,203],{"class":49},": ",[43,205,207],{"class":206},"sj4cs","3000\n",[43,209,211],{"class":45,"line":210},23,[43,212,213],{"class":49},"}\n",[215,216],"br",{},[218,219,220,242,256,266,280],"ul",{},[221,222,223,226,227,230,231,19,234,237,238,241],"li",{},[16,224,225],{},"AllowedHeaders",": Permits headers like ",[40,228,229],{},"Authorization"," (for authentication), ",[40,232,233],{},"x-amz-date",[40,235,236],{},"x-amz-content-sha256"," (for AWS request signing), and ",[40,239,240],{},"content-type"," (for MIME types). These support secure, authenticated requests.",[221,243,244,247,248,251,252,255],{},[16,245,246],{},"AllowedMethods",": Allows ",[40,249,250],{},"GET"," (fetch objects) and ",[40,253,254],{},"PUT"," (upload objects).",[221,257,258,261,262,265],{},[16,259,260],{},"AllowedOrigins",": The ",[40,263,264],{},"*"," wildcard allows any domain to make requests. Consider using more specific domain specification for production use.",[221,267,268,271,272,275,276,279],{},[16,269,270],{},"ExposeHeaders",": Exposes ",[40,273,274],{},"ETag"," (object version identifier) and ",[40,277,278],{},"Location"," (new resource URL) to clients, aiding in upload verification or caching.",[221,281,282,285],{},[16,283,284],{},"MaxAgeSeconds",": Caches preflight responses for 3000 seconds (50 minutes), reducing preflight requests for better performance.",[12,287,288],{},"Hopefully you have the information you need to connect your storage container to MediaLab. If extra help is needed, please refer to your platform's CORS documentation, reach out to your cloud provider’s support team or contact MediaLab's service desk for assistance.",[290,291,292],"style",{},"html pre.shiki code .sVt8B, html code.shiki .sVt8B{--shiki-default:#24292E;--shiki-dark:#E1E4E8}html pre.shiki code .sZZnC, html code.shiki .sZZnC{--shiki-default:#032F62;--shiki-dark:#9ECBFF}html pre.shiki code .sj4cs, html code.shiki .sj4cs{--shiki-default:#005CC5;--shiki-dark:#79B8FF}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"title":38,"searchDepth":53,"depth":53,"links":294},[295],{"id":27,"depth":63,"text":28},"core","10-11-2025","Cross-Origin Resource Sharing (CORS) enables web applications to securely access resources hosted on different domains. This support article explains what CORS configuration is needed for AWS S3 and Azure services when hooking up a new storage container to MediaLab. For detailed technical references, consult the AWS S3 CORS documentation and Azure CORS documentation.","md",false,{"socialmedia":302},{"title":5,"description":38,"image":38,"url":38},true,"/support/cors-configuration-for-s3-and-azure",{"title":5,"description":298},{"loc":304},"support/cors-configuration-for-s3-and-azure","integrations","UP4GJXrEW8QkeziM6kECQ3TIeAc1iNqGq5b7iSgu7qg",[311,316,319,323,326,331,335,338,342,345,349,352,355,358,362,367,371,374,375,378,381,384,388,392,396,399,402,405,408,412,415,419,422,426,430,433,437,440,444,447,450,453,456,459,462,465,468,471,474,477,481,485,489,492,495,499,503,506,510,513,516,519,522,525,528,531,534,537,540,543,546,549,552,555,558,561,564,567,570,573,576,579,582,585,588,591,594,597,600,603,606,609,612,615,618,621,624,627,630,633,636,639],{"path":312,"title":313,"category":314,"subcategory":315},"/support/adding-a-personal-signature","Adding a personal signature","account","branding",{"path":317,"title":318,"category":314,"subcategory":315},"/support/adding-a-watermark","Adding a watermark",{"path":320,"title":321,"category":296,"subcategory":322},"/support/adding-custom-metadata-to-files","Adding custom metadata to files","metadata",{"path":324,"title":325,"category":296,"subcategory":308},"/support/adding-extra-file-formats-to-an-existing-file","Adding extra file formats to an existing file",{"path":327,"title":328,"category":329,"subcategory":330},"/support/adobe-premiere-pro-and-avid-integration-issues","Adobe Premiere Pro & AVID integration issues","troubleshooting","integration",{"path":332,"title":333,"category":314,"subcategory":334},"/support/automatic-login-for-users","Automatic login for users","user-management",{"path":336,"title":337,"category":296,"subcategory":322},"/support/automatic-metadata-from-exif-data","Automatic metadata from Exif data",{"path":339,"title":340,"category":296,"subcategory":341},"/support/captions","Captions & Transcriptions","review-and-approve",{"path":343,"title":344,"category":314,"subcategory":315},"/support/changing-the-look-of-the-share-page","Changing the look of the share page",{"path":346,"title":347,"category":296,"subcategory":348},"/support/changing-the-thumbnail-or-preview-image-of-a-video","Changing the thumbnail or preview image of a video","organizing-media",{"path":350,"title":351,"category":296,"subcategory":341},"/support/choosing-the-right-bitrate-for-your-video","Choosing the right bitrate for your video",{"path":353,"title":354,"category":329,"subcategory":330},"/support/cloud-storage-s3-and-azure-issues","Cloud storage (S3 & Azure) issues",{"path":356,"title":357,"category":296,"subcategory":308},"/support/cloud-storage-support-s3-and-azure","Cloud storage support (S3 and Azure)",{"path":359,"title":360,"category":296,"subcategory":361},"/support/collecting-media-with-upload-link","Collecting media with Upload Link","uploading",{"path":363,"title":364,"category":365,"subcategory":366},"/support/comments-collaboration-tools","Comments and collaboration tools","onboarding","user-guide",{"path":368,"title":369,"category":314,"subcategory":370},"/support/connecting-an-existing-media-lab-account-to-single-sign-on-sso","Connecting an existing MediaLab account to single sign-on (SSO)","account-settings",{"path":372,"title":373,"category":296,"subcategory":308},"/support/connecting-media-lab-to-adobe-premiere-pro-via-ftp","Connecting MediaLab to Adobe Premiere Pro via FTP",{"path":304,"title":5,"category":296,"subcategory":308},{"path":376,"title":377,"category":314,"subcategory":315},"/support/customize-outgoing-emails","Customize outgoing emails",{"path":379,"title":380,"category":314,"subcategory":315},"/support/dark-mode","Dark Mode",{"path":382,"title":383,"category":365,"subcategory":366},"/support/downloading-files","Downloading files",{"path":385,"title":386,"category":365,"subcategory":387},"/support/downloading-ml-connect","Downloading files with MediaLab Connect","desktop-app",{"path":389,"title":390,"category":329,"subcategory":391},"/support/downloading-shared-files-without-browser-prompts","Downloading shared files without browser prompts","general-faqs",{"path":393,"title":394,"category":296,"subcategory":395},"/support/dynamic-watermarking","Secure your media with dynamic watermarking","sharing",{"path":397,"title":398,"category":296,"subcategory":348},"/support/editing-thumbnails","Editing thumbnails",{"path":400,"title":401,"category":296,"subcategory":395},"/support/embedding-a-video-on-your-website","Embedding a video on your website",{"path":403,"title":404,"category":296,"subcategory":308},"/support/embedding-multiple-videos-on-a-webpage-without-overlapping-playback","Embedding multiple videos on a webpage without overlapping playback",{"path":406,"title":407,"category":296,"subcategory":395},"/support/enabling-public-access-to-media-lab","Enabling public access to MediaLab",{"path":409,"title":410,"category":329,"subcategory":411},"/support/error-oops-something-went-wrong","Error: “Oops! Something went wrong.”","error",{"path":413,"title":414,"category":296,"subcategory":308},"/support/file-catalyst-support","FileCatalyst support",{"path":416,"title":417,"category":365,"subcategory":418},"/support/find-login-page","Finding your MediaLab login page","login",{"path":420,"title":421,"category":365,"subcategory":418},"/support/first-time-sso-login","First-Time login using single sign-on (SSO)",{"path":423,"title":424,"category":314,"subcategory":425},"/support/folder-deletion-is-limited-to-administrators","Folder deletion is limited to administrators","roles-permissions",{"path":427,"title":428,"category":329,"subcategory":429},"/support/ftp-could-not-write-to-transfer-socket","FTP Error: “Could Not Write to Transfer Socket: EPIPE”","upload-processing",{"path":431,"title":432,"category":329,"subcategory":429},"/support/image-colors-look-different-after-upload","Image colors look different after upload",{"path":434,"title":435,"category":329,"subcategory":436},"/support/increasing-video-playback-quality-in-media-lab","Increasing video playback quality in MediaLab","playback",{"path":438,"title":439,"category":365,"subcategory":387},"/support/installing-logging-ml-connect","Installing and logging in to MediaLab Connect",{"path":441,"title":442,"category":365,"subcategory":443},"/support/introduction-to-medialab","Introduction to MediaLab","intro",{"path":445,"title":446,"category":329,"subcategory":429},"/support/inverted-colors-in-uploaded-images","Inverted colors in uploaded images",{"path":448,"title":449,"category":329,"subcategory":429},"/support/large-image-uploaded-without-preview","Large image uploaded without preview",{"path":451,"title":452,"category":365,"subcategory":366},"/support/loggin-in-as-user","Logging in as user",{"path":454,"title":455,"category":365,"subcategory":366},"/support/managing-notifications","Managing notifications",{"path":457,"title":458,"category":296,"subcategory":361},"/support/maximum-file-size","Maximum file size",{"path":460,"title":461,"category":296,"subcategory":395},"/support/maximum-views-setting-for-shared-media","Maximum views setting for shared media",{"path":463,"title":464,"category":365,"subcategory":387},"/support/medialab-connect","MediaLab Connect",{"path":466,"title":467,"category":329,"subcategory":330},"/support/metadata-and-workflow-integration-issues","Metadata & workflow integration issues",{"path":469,"title":470,"category":365,"subcategory":387},"/support/ml-connect-file-integrity","Verifying the integrity of MediaLab Connect installation files",{"path":472,"title":473,"category":329,"subcategory":330},"/support/ml-connect-integration-issues","ML Connect integration issues",{"path":475,"title":476,"category":365,"subcategory":387},"/support/ml-connect-release-notes","ML Connect - release notes",{"path":478,"title":479,"category":365,"subcategory":480},"/support/mobile-access","Accessing MediaLab on a mobile device","mobile-access",{"path":482,"title":483,"category":314,"subcategory":484},"/support/object-storage-billing","Object storage billing","billing",{"path":486,"title":487,"category":365,"subcategory":488},"/support/organizing-files-and-folders","Organizing files and folders","getting-started",{"path":490,"title":491,"category":296,"subcategory":308},"/support/pull-add-on","Pull add-on",{"path":493,"title":494,"category":296,"subcategory":308},"/support/push-add-on","Push add-on",{"path":496,"title":497,"category":329,"subcategory":498},"/support/recovering-a-forgotten-username","Recovering a forgotten username","login-issues",{"path":500,"title":501,"category":296,"subcategory":502},"/support/recreate-feature","Recreate feature","downloading",{"path":504,"title":505,"category":296,"subcategory":308},"/support/remote-destinations","Cloud connections",{"path":507,"title":508,"category":314,"subcategory":509},"/support/reporting-a-security-issue","Reporting a security issue","security",{"path":511,"title":512,"category":329,"subcategory":498},"/support/resetting-a-forgotten-password","Resetting a forgotten password",{"path":514,"title":515,"category":296,"subcategory":395},"/support/restricting-access-to-the-source-file","Restricting access to the source file",{"path":517,"title":518,"category":296,"subcategory":395},"/support/restricting-download-access","Restricting download access",{"path":520,"title":521,"category":296,"subcategory":395},"/support/restricting-download-access-to-previews","Restricting download access to previews",{"path":523,"title":524,"category":296,"subcategory":341},"/support/reviewing-approving","Review & Approve",{"path":526,"title":527,"category":296,"subcategory":395},"/support/revoking-sent-emails-or-share-links","Revoking sent emails or share links",{"path":529,"title":530,"category":296,"subcategory":395},"/support/rss-feed-support","RSS feed support",{"path":532,"title":533,"category":296,"subcategory":361},"/support/setting-the-target-folder-for-pull-uploads","Setting the target folder for pull uploads",{"path":535,"title":536,"category":296,"subcategory":308},"/support/setting-up-a-watch-folder","Setting up a watch folder",{"path":538,"title":539,"category":314,"subcategory":334},"/support/shared-accounts","Shared accounts",{"path":541,"title":542,"category":296,"subcategory":395},"/support/sharing-a-file-on-facebook-or-twitter","Sharing a file on Facebook or Twitter",{"path":544,"title":545,"category":296,"subcategory":395},"/support/sharing-files-in-media-lab","Sharing files in MediaLab",{"path":547,"title":548,"category":365,"subcategory":366},"/support/sharing-files-links","Sharing files and links",{"path":550,"title":551,"category":296,"subcategory":395},"/support/sharing-folders-in-media-lab","Sharing folders in MediaLab",{"path":553,"title":554,"category":365,"subcategory":488},"/support/sharing-media","Sharing your media",{"path":556,"title":557,"category":365,"subcategory":418},"/support/sso-setup-for-owners","Single sign-on (SSO) setup for owners",{"path":559,"title":560,"category":296,"subcategory":502},"/support/support-for-multiple-audio-streams","Support for multiple audio streams",{"path":562,"title":563,"category":296,"subcategory":361},"/support/supported-file-types","Supported file types",{"path":565,"title":566,"category":296,"subcategory":502},"/support/supported-video-formats-for-transcoding","Supported video formats for transcoding",{"path":568,"title":569,"category":296,"subcategory":348},"/support/tracking-activity-in-medialab","Tracking Activity in MediaLab",{"path":571,"title":572,"category":329,"subcategory":429},"/support/troubleshooting-file-upload-failures","Troubleshooting file upload failures",{"path":574,"title":575,"category":329,"subcategory":330},"/support/troubleshooting-ftp-udp-uploads","Troubleshooting FTP/UDP uploads",{"path":577,"title":578,"category":329,"subcategory":498},"/support/troubleshooting-single-sign-on-sso-login-issues","Troubleshooting single sign-on (SSO) login issues",{"path":580,"title":581,"category":365,"subcategory":488},"/support/upload-first-file","Uploading your first file",{"path":583,"title":584,"category":329,"subcategory":429},"/support/upload-speed-and-estimated-upload-times","Upload speed and estimated upload times",{"path":586,"title":587,"category":296,"subcategory":361},"/support/upload-times-for-videos","Upload times for videos",{"path":589,"title":590,"category":296,"subcategory":361},"/support/uploading-a-video-without-transcoding","Uploading a video without transcoding",{"path":592,"title":593,"category":365,"subcategory":366},"/support/uploading-files","Uploading files",{"path":595,"title":596,"category":296,"subcategory":361},"/support/uploading-files-via-ftp","Uploading files via FTP",{"path":598,"title":599,"category":314,"subcategory":425},"/support/user-access-to-folders","User access to folders",{"path":601,"title":602,"category":314,"subcategory":425},"/support/user-flags","User flags",{"path":604,"title":605,"category":314,"subcategory":425},"/support/user-levels-in-media-lab","User levels in MediaLab",{"path":607,"title":608,"category":314,"subcategory":425},"/support/user-roles","User roles",{"path":610,"title":611,"category":296,"subcategory":361},"/support/using-ftp-to-upload-or-download-files","Using FTP to upload or download files",{"path":613,"title":614,"category":296,"subcategory":348},"/support/using-the-context-menu","Using the context menu",{"path":616,"title":617,"category":296,"subcategory":308},"/support/video-embed-options","Video embed options",{"path":619,"title":620,"category":296,"subcategory":322},"/support/viewing-exif-metadata","Viewing Exif metadata",{"path":622,"title":623,"category":365,"subcategory":488},"/support/viewing-media","Viewing media in MediaLab",{"path":625,"title":626,"category":365,"subcategory":366},"/support/viewing-previewing-media","Viewing and previewing media",{"path":628,"title":629,"category":296,"subcategory":341},"/support/viewing-timecodes-in-video","Viewing timecodes in video",{"path":631,"title":632,"category":329,"subcategory":429},"/support/why-audio-files-appear-in-the-audio-queue","Why audio files appear in the audio queue",{"path":634,"title":635,"category":329,"subcategory":429},"/support/why-free-space-doesnt-increase-after-deleting-files","Why free space doesn’t increase after deleting files",{"path":637,"title":638,"category":329,"subcategory":429},"/support/why-videos-appear-in-the-video-queue","Why videos appear in the video queue",{"path":640,"title":641,"category":365,"subcategory":488},"/support/working-with-metadata","Working with metadata",[643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744],{"path":312,"title":313,"category":314,"subcategory":315},{"path":317,"title":318,"category":314,"subcategory":315},{"path":320,"title":321,"category":296,"subcategory":322},{"path":324,"title":325,"category":296,"subcategory":308},{"path":327,"title":328,"category":329,"subcategory":330},{"path":332,"title":333,"category":314,"subcategory":334},{"path":336,"title":337,"category":296,"subcategory":322},{"path":339,"title":340,"category":296,"subcategory":341},{"path":343,"title":344,"category":314,"subcategory":315},{"path":346,"title":347,"category":296,"subcategory":348},{"path":350,"title":351,"category":296,"subcategory":341},{"path":353,"title":354,"category":329,"subcategory":330},{"path":356,"title":357,"category":296,"subcategory":308},{"path":359,"title":360,"category":296,"subcategory":361},{"path":363,"title":364,"category":365,"subcategory":366},{"path":368,"title":369,"category":314,"subcategory":370},{"path":372,"title":373,"category":296,"subcategory":308},{"path":304,"title":5,"category":296,"subcategory":308},{"path":376,"title":377,"category":314,"subcategory":315},{"path":379,"title":380,"category":314,"subcategory":315},{"path":382,"title":383,"category":365,"subcategory":366},{"path":385,"title":386,"category":365,"subcategory":387},{"path":389,"title":390,"category":329,"subcategory":391},{"path":393,"title":394,"category":296,"subcategory":395},{"path":397,"title":398,"category":296,"subcategory":348},{"path":400,"title":401,"category":296,"subcategory":395},{"path":403,"title":404,"category":296,"subcategory":308},{"path":406,"title":407,"category":296,"subcategory":395},{"path":409,"title":410,"category":329,"subcategory":411},{"path":413,"title":414,"category":296,"subcategory":308},{"path":416,"title":417,"category":365,"subcategory":418},{"path":420,"title":421,"category":365,"subcategory":418},{"path":423,"title":424,"category":314,"subcategory":425},{"path":427,"title":428,"category":329,"subcategory":429},{"path":431,"title":432,"category":329,"subcategory":429},{"path":434,"title":435,"category":329,"subcategory":436},{"path":438,"title":439,"category":365,"subcategory":387},{"path":441,"title":442,"category":365,"subcategory":443},{"path":445,"title":446,"category":329,"subcategory":429},{"path":448,"title":449,"category":329,"subcategory":429},{"path":451,"title":452,"category":365,"subcategory":366},{"path":454,"title":455,"category":365,"subcategory":366},{"path":457,"title":458,"category":296,"subcategory":361},{"path":460,"title":461,"category":296,"subcategory":395},{"path":463,"title":464,"category":365,"subcategory":387},{"path":466,"title":467,"category":329,"subcategory":330},{"path":469,"title":470,"category":365,"subcategory":387},{"path":472,"title":473,"category":329,"subcategory":330},{"path":475,"title":476,"category":365,"subcategory":387},{"path":478,"title":479,"category":365,"subcategory":480},{"path":482,"title":483,"category":314,"subcategory":484},{"path":486,"title":487,"category":365,"subcategory":488},{"path":490,"title":491,"category":296,"subcategory":308},{"path":493,"title":494,"category":296,"subcategory":308},{"path":496,"title":497,"category":329,"subcategory":498},{"path":500,"title":501,"category":296,"subcategory":502},{"path":504,"title":505,"category":296,"subcategory":308},{"path":507,"title":508,"category":314,"subcategory":509},{"path":511,"title":512,"category":329,"subcategory":498},{"path":514,"title":515,"category":296,"subcategory":395},{"path":517,"title":518,"category":296,"subcategory":395},{"path":520,"title":521,"category":296,"subcategory":395},{"path":523,"title":524,"category":296,"subcategory":341},{"path":526,"title":527,"category":296,"subcategory":395},{"path":529,"title":530,"category":296,"subcategory":395},{"path":532,"title":533,"category":296,"subcategory":361},{"path":535,"title":536,"category":296,"subcategory":308},{"path":538,"title":539,"category":314,"subcategory":334},{"path":541,"title":542,"category":296,"subcategory":395},{"path":544,"title":545,"category":296,"subcategory":395},{"path":547,"title":548,"category":365,"subcategory":366},{"path":550,"title":551,"category":296,"subcategory":395},{"path":553,"title":554,"category":365,"subcategory":488},{"path":556,"title":557,"category":365,"subcategory":418},{"path":559,"title":560,"category":296,"subcategory":502},{"path":562,"title":563,"category":296,"subcategory":361},{"path":565,"title":566,"category":296,"subcategory":502},{"path":568,"title":569,"category":296,"subcategory":348},{"path":571,"title":572,"category":329,"subcategory":429},{"path":574,"title":575,"category":329,"subcategory":330},{"path":577,"title":578,"category":329,"subcategory":498},{"path":580,"title":581,"category":365,"subcategory":488},{"path":583,"title":584,"category":329,"subcategory":429},{"path":586,"title":587,"category":296,"subcategory":361},{"path":589,"title":590,"category":296,"subcategory":361},{"path":592,"title":593,"category":365,"subcategory":366},{"path":595,"title":596,"category":296,"subcategory":361},{"path":598,"title":599,"category":314,"subcategory":425},{"path":601,"title":602,"category":314,"subcategory":425},{"path":604,"title":605,"category":314,"subcategory":425},{"path":607,"title":608,"category":314,"subcategory":425},{"path":610,"title":611,"category":296,"subcategory":361},{"path":613,"title":614,"category":296,"subcategory":348},{"path":616,"title":617,"category":296,"subcategory":308},{"path":619,"title":620,"category":296,"subcategory":322},{"path":622,"title":623,"category":365,"subcategory":488},{"path":625,"title":626,"category":365,"subcategory":366},{"path":628,"title":629,"category":296,"subcategory":341},{"path":631,"title":632,"category":329,"subcategory":429},{"path":634,"title":635,"category":329,"subcategory":429},{"path":637,"title":638,"category":329,"subcategory":429},{"path":640,"title":641,"category":365,"subcategory":488},1777549729861]