CINXE.COM
School of Computing | ANU School of Computing
<!DOCTYPE html> <html lang="en-AU"> <head> <script type="text/javascript" src="https://cdn-au.onetrust.com/consent/0a85b331-d8d7-4979-a97e-aa69b819df86/OtAutoBlock.js"></script> <!-- Google Tag Manager --> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-5H3R8L');</script> <!-- End Google Tag Manager --> <meta charset="utf-8"> <meta content="IE=edge" http-equiv="X-UA-Compatible"> <meta content="width=device-width, initial-scale=1" name="viewport"> <!-- Favicons --> <link rel="apple-touch-icon" sizes="180x180" href="/assets/favicons/apple-touch-icon.png"> <link rel="icon" type="image/png" sizes="32x32" href="/assets/favicons/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="/assets/favicons/favicon-16x16.png"> <link rel="manifest" href="/assets/favicons/site.webmanifest"> <link rel="mask-icon" href="/assets/favicons/safari-pinned-tab.svg" color="#be830e"> <link rel="shortcut icon" href="/assets/favicons/favicon.ico"> <meta content="#be830e" name="msapplication-TileColor"> <meta name="msapplication-config" content="/assets/favicons/browserconfig.xml"> <meta content="#ffffff" name="theme-color"> <!-- Begin Jekyll SEO tag v2.8.0 --> <title>School of Computing | ANU School of Computing</title> <meta name="generator" content="Jekyll v4.3.2" /> <meta property="og:title" content="School of Computing" /> <meta property="og:locale" content="en_US" /> <meta name="description" content="Homepage of the School of Computing at the Australian National University" /> <meta property="og:description" content="Homepage of the School of Computing at the Australian National University" /> <link rel="canonical" href="https://comp.anu.edu.au/" /> <meta property="og:url" content="https://comp.anu.edu.au/" /> <meta property="og:site_name" content="ANU School of Computing" /> <meta property="og:image" content="https://comp.anu.edu.au/assets/images/computing.jpg" /> <meta property="og:type" content="website" /> <meta name="twitter:card" content="summary_large_image" /> <meta property="twitter:image" content="https://comp.anu.edu.au/assets/images/computing.jpg" /> <meta property="twitter:title" content="School of Computing" /> <script type="application/ld+json"> {"@context":"https://schema.org","@type":"WebSite","description":"Homepage of the School of Computing at the Australian National University","headline":"School of Computing","image":"https://comp.anu.edu.au/assets/images/computing.jpg","name":"ANU School of Computing","url":"https://comp.anu.edu.au/"}</script> <!-- End Jekyll SEO tag --> <link href="https://fonts.gstatic.com" rel="preconnect"> <link href="https://fonts.googleapis.com/css2?family=Public+Sans:wght@300;400;600&family=Roboto+Mono&display=swap" rel="stylesheet"> <link rel="stylesheet" href="/assets/css/styles.css"/> </head> <body> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5H3R8L" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <header class="header container" id="site-header"> <a class="header__skip-to-main button visually-hidden" href="#main-content">Skip to main content</a> <a class="header__brand" href="https://comp.anu.edu.au"> <span aria-label="ANU crest" class="logo-favicon" role="img"></span> <span aria-label="Australian National University logo" class="logo-secondary" role="img"></span> <span class="logo-lockup"> School of<br>Computing </span> </a> <span class="header__filler"></span> <a aria-controls="nav-menu" aria-expanded="false" aria-haspopup="dialog" class="header__nav-toggle icon-link" href="#nav-menu" id="nav-toggle" role="button"> <span class="visually-hidden">Open main menu</span> <span aria-hidden="true"><svg class="icon"><use xlink:href='#fas.fa-bars'></use></svg></span> </a> <a aria-controls="search-menu" aria-expanded="false" aria-haspopup="dialog" class="header__search-toggle icon-link" href="#search-menu" id="search-toggle" role="button"> <span class="visually-hidden">Search this site</span> <span aria-hidden="true"><svg class="icon"><use xlink:href='#fas.fa-search'></use></svg></span> </a> </header> <div class="utility-menu container"> <span class="header__filler"></span> <ul> <li> <a href="https://anu365.sharepoint.com/sites/CECCStaffHub"> Staff </a> </li> </ul> </div> <script> // Because this script will be included in the middle of the document, we wait // for DOM content to load before binding event listeners document.addEventListener("DOMContentLoaded", () => { /** * Nav submenu progressive enhancement JS for a11y */ const allNavSubmenuToggles = document.querySelectorAll(".nav-submenu-toggle__checkbox"); allNavSubmenuToggles.forEach((toggle) => { /* Use "Enter" key on submenu toggle to open / close the submenu */ toggle.addEventListener("keydown", (ev) => { if (ev.key === "Enter") { ev.preventDefault; toggle.checked = !toggle.checked; } }); /* Close any other open submenus when one is toggled open */ toggle.addEventListener("change", () => { if (toggle.checked) { allNavSubmenuToggles.forEach((el) => { if (el !== toggle && el.checked) { el.checked = false; } }) } }) }); /* Use "Escape" key to close any open submenus */ document.addEventListener("keydown", (ev) => { // In Internet Explorer & Firefox 36 and earlier, the Esc key returns "Esc" instead of "Escape". if (ev.key === "Escape" || ev.key === "Esc") { ev.preventDefault(); allNavSubmenuToggles.forEach((toggle) => { if (toggle.checked) { toggle.checked = false; toggle.parentElement.querySelectorAll(".card__link").forEach((submenuLink) => { submenuLink.blur(); }) } }); } }); /** * Nav & search menu overlay panel progressive enhancement JS for a11y */ // Initialise focusableMap to store focusable elements in nav & search menus const focusableMap = {}; const navMenu = document.querySelector("#nav-menu"); const navToggle = document.querySelector("#nav-toggle"); /* Add focusable elements in nav menu to focusableMap */ focusableMap.nav = navMenu // Hacky selector but using something more general selects links that aren't // visible from inside the submenu .querySelectorAll(` .nav-menu__brand, .nav-menu__close, .nav-menu__menu-link, .nav-menu__toggle-checkbox, input:not([type='hidden']), .nav-submenu-toggle__checkbox:checked ~ .nav-submenu .nav-submenu__menu-link` ); const searchMenu = document.querySelector("#search-menu"); const searchToggle = document.querySelector("#search-toggle"); /* Add focusable elements in search menu to focusableMap */ focusableMap.search = searchMenu.querySelectorAll("button:not(.trap-focus), input:not([type='hidden']), [href]"); /** * Contain tab order within nav & search menus by adding event listeners for * tabbing events on .trap-focus elements which have been placed at the start * and end of each of the menus. */ const handleTrapFocusKeyUp = ev => { const focusable = focusableMap[ev.target.dataset.trap]; // We listen for tabbing on keyup otherwise the focus jumps around if (ev.key === "Tab") { ev.preventDefault; if (ev.shiftKey) { focusable[focusable.length - 1].focus(); } else { focusable[0].focus(); } } }; const handleTrapFocusKeyDown = ev => { /* Prevent default on keydown so focus doesn't escape when you hold tab down */ ev.preventDefault() }; /* Handler for when nav menu is opened */ const handleNavMenuOpen = () => { navToggle.ariaExpanded = true; document.body.style.overflow = "hidden"; } /* Handler for when nav menu is closed */ const handleNavMenuClose = () => { navToggle.ariaExpanded = false; document.body.style.overflow = "auto"; }; /* Handler for when search menu is opened */ const handleSearchMenuOpen = () => { searchToggle.ariaExpanded = true; document.body.style.overflow = "hidden"; // Set timeout because focus doesn't work until element is visible setTimeout(() => { /* Autofocus on first focusable element when menu is opened */ focusableMap.search[0].focus() }, 100); }; /* Handler for when search menu is closed */ const handleSearchMenuClose = () => { searchToggle.ariaExpanded = false; document.body.style.overflow = "auto"; }; /* Bind nav menu toggle handlers */ navToggle.addEventListener("click", handleNavMenuOpen); document.querySelector("#nav-menu-overlay").addEventListener("click", handleNavMenuClose); document.querySelector("#nav-menu-close").addEventListener("click", handleNavMenuClose); /* Bind search menu toggle handlers */ searchToggle.addEventListener("click", handleSearchMenuOpen); document.querySelector("#search-menu-overlay").addEventListener("click", handleSearchMenuClose); document.querySelector("#search-menu-close").addEventListener("click", handleSearchMenuClose); /* Bind trap focus handlers */ document.querySelectorAll(".trap-focus").forEach(el => { el.addEventListener("keyup", handleTrapFocusKeyUp) el.addEventListener("keydown", handleTrapFocusKeyDown); }) }); </script> <style> .utility-menu { display: flex; justify-content: space-between; padding: 0 } .utility-menu ul { overflow: hidden; display: block; list-style-type: none; margin: 0; padding: 0; } .utility-menu li { float: left; } .utility-menu li a { display: inline-block; color: #000; float: left; text-align: center; text-decoration: unset; # letter-spacing: 0.72px; padding-right: 10px; } .utility-menu li a:hover, .utility-menu li a.is-active, .utility-menu li.active a { text-decoration: underline !important; text-decoration-color: #be830e !important; text-decoration-thickness: 2px !important; } </style> <div class="nav-menu" id="nav-menu" role="dialog" aria-labelledby="nav-menu-title"> <button aria-hidden="true" class="trap-focus" data-trap="nav"></button> <nav class="nav-menu__nav"> <span aria-hidden="true" class="visually-hidden" id="nav-menu-title">Navigation menu</span> <a class="nav-menu__brand" href="/"> <span aria-label="Australian National University logo" class="logo-secondary" role="img"></span> <span class="logo-lockup"> School of<br>Computing </span> </a> <ul aria-label="Main menu" class="nav-menu__menu container"> <span class="visually-hidden">/, </span> <li class="nav-menu__menu-item"> <a class="nav-menu__menu-link" href="/about/" > About </a> </li> <li class="nav-menu__menu-item"> <a class="nav-menu__menu-link" href="/study/" > Study </a> </li> <li class="nav-menu__menu-item"> <a class="nav-menu__menu-link" href="/research/" > Research </a> </li> <li class="nav-menu__menu-item"> <a class="nav-menu__menu-link" href="/engage/" > Engage </a> </li> <li class="nav-menu__menu-item"> <a class="nav-menu__menu-link" href="/news/" > News </a> </li> <li class="nav-menu__menu-item"> <a class="nav-menu__menu-link" href="/events/" > Events </a> </li> <li class="nav-menu__menu-item"> <a class="nav-menu__menu-link" href="/join/" > Join </a> </li> <li class="nav-menu__menu-item"> <a class="nav-menu__menu-link" href="/people/" > People </a> </li> <li class="nav-menu__menu-item"> <a class="nav-menu__menu-link" href="/contact/" > Contact </a> </li> </ul> <a class="nav-menu__close icon-link" href="#" id="nav-menu-close" role="button"> <span class="visually-hidden">Close main menu</span> <span aria-hidden="true"><svg class="icon"><use xlink:href='#fas.fa-times'></use></svg></span> </a> </nav> <button aria-hidden="true" class="trap-focus" data-trap="nav"></button> </div> <a aria-hidden="true" class="nav-menu-overlay" hidden href="#" id="nav-menu-overlay" tabindex="-1"></a> <div aria-labelledby="search-menu-title" class="search-menu" id="search-menu" role="dialog"> <button aria-hidden="true" class="trap-focus" data-trap="search"></button> <h3 aria-hidden="true" class="search-menu__title" id="search-menu-title">Search this site</h3> <form action="https://google.com/search" method="get" role="search"> <div> <input type="hidden" name="sitesearch" value="https://comp.anu.edu.au"/> <div class="form-control"> <label class="visually-hidden" for="google-search">Search this site (powered by Google)</label> <input class="search-query" id="google-search" name="as_q" placeholder="Type to search" size="16" type="text" value=""/> </div> <div class="form-control"> <input class="search-button" title="Search" type="submit" value="Search"/> </div> <p aria-hidden="true" style="text-align: center;">Powered by Google</p> </div> </form> <a class="search-menu__close icon-link" href="#" id="search-menu-close" role="button"> <span class="visually-hidden">Close search</span> <span aria-hidden="true"><svg class="icon"><use xlink:href='#fas.fa-times'></use></svg></span> </a> <button aria-hidden="true" class="trap-focus" data-trap="search"></button> </div> <a aria-hidden="true" class="search-menu-overlay" hidden href="#" id="search-menu-overlay" tabindex="-1"></a> <main aria-label="Main content" class="feature" id="main-content"> <header class="banner banner--medium" style="--background: url('/assets/images/computing.jpg')" > <div class="container grid grid--3"> <div class="banner__content"> <h1>School of Computing</h1> <p class="lead"><a href="https://cecc.anu.edu.au">ANU College of<br>Engineering, Computing & Cybernetics</a></p> </div> </div> </header> <section id="latest-news--events"><div class="container"><header><h2>Latest News & Events</h2></header><article><div class="grid grid--2"> <article class="card"> <a class="card__container card__link" href="/events/2024/12/04/towards-scalable-robot-intelligence/"> <div class="card__image"><img src="/events/2024/12/04/towards-scalable-robot-intelligence/david-hsu.png" alt="Professor David Hsu "> </div> <span class="card__tags"> <span class="tag">Talks</span> <span class="tag">Distinguished</span> </span> <p class="card__title">Towards Scalable Robot Intelligence</p> <p class="card__subtitle"> 4 Dec 2024</p> <p class="card__text">Professor David Hsu </p> <span class="card__arrow"><svg class="icon"><use xlink:href="#fas.fa-arrow-right"></use></svg></span> </a> </article> <article class="card"> <a class="card__container card__link" href="/news/2024/11/26/anu-researchers-win-acm-gordon-bell-prize-for-record-breaking-algorithm/"> <div class="card__image"><img src="/news/2024/11/26/anu-researchers-win-acm-gordon-bell-prize-for-record-breaking-algorithm/img_0688_sc24_bellgordonprizeteam.jpeg" alt="The Australian researchers who received the 2024 Gordon Bell Prize – (from left to right): Fiona Yu, Calum Snowdon, Jorge Vallejo, Giuseppe Barca, Ryan Stocks, Elise Palethorpe – at the ACM Supercomputing 24 conference. "> </div> <span class="card__tags"> <span class="tag">Research</span> <span class="tag">Impact</span> <span class="tag">Students</span> </span> <p class="card__title">ANU researchers win Gordon Bell Prize for record-breaking algorithm</p> <p class="card__subtitle">26 Nov 2024</p> <p class="card__text">A team of researchers from ANU has been awarded the 2024 ACM Gordon Bell Prize for a record-breaking algorithm that advances our understanding of chemistry and biology. </p> <span class="card__arrow"><svg class="icon"><use xlink:href="#fas.fa-arrow-right"></use></svg></span> </a> </article> <article class="card"> <a class="card__container card__link" href="/news/2024/11/22/anu-researchers-win-acm-gordon-bell-prize-for-outstanding-achievement-in-high-performance-computing/"> <div class="card__image"><img src="/news/2024/11/22/anu-researchers-win-acm-gordon-bell-prize-for-outstanding-achievement-in-high-performance-computing/img_0688.jpeg" alt="The winning team: Fiona Yu, Calum Snowdon, Ryan Stocks, Giuseppe Barca, Jorge Vallejo, Elise Palethorpe "> </div> <span class="card__tags"> <span class="tag">Impact</span> <span class="tag">Research</span> </span> <p class="card__title">ANU Researchers win ACM Gordon Bell Prize for outstanding achievement in high-performance computing</p> <p class="card__subtitle">22 Nov 2024</p> <p class="card__text">Record-Breaking Algorithm to Advance Understanding of Chemistry and Biology </p> <span class="card__arrow"><svg class="icon"><use xlink:href="#fas.fa-arrow-right"></use></svg></span> </a> </article> <article class="card"> <a class="card__container card__link" href="/news/2024/09/05/driverless-cars-are-getting-close-to-reality-but-what-if-the-world-outside-isn-t-perfect/"> <div class="card__image"><img src="/news/2024/09/05/driverless-cars-are-getting-close-to-reality-but-what-if-the-world-outside-isn-t-perfect/liang-z.png" alt="Associate Professor Liang Zheng "> </div> <span class="card__tags"> <span class="tag">Research</span> </span> <p class="card__title">Driverless cars are getting close to reality—but what if the world outside isn’t perfect?</p> <p class="card__subtitle"> 5 Sep 2024</p> <p class="card__text">Dr Liang Zheng has recently been named an Australian Research Council (ARC) Future Fellow receiving over $900,000 in funding towards his research. Liang is a world leading expert in computer vision and...</p> <span class="card__arrow"><svg class="icon"><use xlink:href="#fas.fa-arrow-right"></use></svg></span> </a> </article> <article class="card"> <a class="card__container card__link" href="/events/2024/08/21/spatial-skills-and-their-relevance-to-cs-study/"> <div class="card__image"><img src="/events/2024/08/21/spatial-skills-and-their-relevance-to-cs-study/jack-parkinson.png" alt="Dr. Jack Parkinson "> </div> <span class="card__tags"> <span class="tag">Talks</span> </span> <p class="card__title">Spatial Skills and Their Relevance to CS Study</p> <p class="card__subtitle">21 Aug 2024</p> <p class="card__text">Dr. Jack Parkinson </p> <span class="card__arrow"><svg class="icon"><use xlink:href="#fas.fa-arrow-right"></use></svg></span> </a> </article> <article class="card"> <a class="card__container card__link" href="/events/2024/08/19/activities-in-schools-cs-in-scotland/"> <div class="card__image"><img src="/events/2024/08/19/activities-in-schools-cs-in-scotland/quintin-cutts.png" alt="Professor Quintin Cutts "> </div> <span class="card__tags"> <span class="tag">Talks</span> <span class="tag">Distinguished</span> </span> <p class="card__title">Holistic Thinking to Address Hidden Curriculum Aspects and Learning Difficulties in Our Introductory Undergraduate Computing ...</p> <p class="card__subtitle">19 Aug 2024</p> <p class="card__text">Professor Quintin Cutts </p> <span class="card__arrow"><svg class="icon"><use xlink:href="#fas.fa-arrow-right"></use></svg></span> </a> </article> </div></article><aside><p class="button aside"><a href="/news/">More news</a></p><p class="button aside"><a href="/events/">More events</a></p><p class="button--outline aside"><a href="https://cecs.anu.edu.au/news">College News</a></p><p class="button--outline aside"><a href="https://cecs.anu.edu.au/events">College Events</a></p></aside></div></section><section id="study-at-anu"><div class="container"><header><h2>Study at ANU</h2><p class="lead subtitle">At the ANU School of Computing you will be studying at Australia’s only national university—with a community of innovative students, teachers and researchers, who are finding solutions to the world’s greatest challenges.</p></header><article><div class="grid grid--3"> <article> <svg class="anu-icon"><use xlink:href="#003-26"></use></svg> <h3>#3 in Australia for Computer Science</h3> <p> ANU Computing is ranked #3 in Australia for computer science and information systems by <a href="https://www.topuniversities.com/university-subject-rankings/computer-science-information-systems?countries=au">Quacquarelli Symonds World University Rankings by Subject 2024</a> </p> </article> <article> <svg class="anu-icon"><use xlink:href="#001-2-011"></use></svg> <h3>#1 in Australia for Employability</h3> <p> <strong>Be job-ready</strong>. ANU is ranked #1 in Australia and 32nd in the world for Graduate Employability 2023–24 by <a href="https://www.timeshighereducation.com/student/best-universities/graduate-employability-top-universities-australia-ranked-employers">Times Higher Education</a> </p> </article> <article> <svg class="anu-icon"><use xlink:href="#008-013"></use></svg> <h3>Future focussed</h3> <p> <strong>Be innovative.</strong> ANU offers unique, modern degrees designed to meet the challenges of the future—preparing you for success in today's changing world. </p> </article> </div></article><aside></aside></div></section><section id="about-the-college"><div class="container"><header><h2>About the College</h2></header><article><p>The ANU School of Computing is one of the three schools that form the <a href="https://cecs.anu.edu.au">ANU College of Engineering, Computing and Cybernetics (CECC)</a> which is home also to the <a href="https://cybernetics.anu.edu.au">ANU School of Cybernetics</a> and <a href="https://eng.anu.edu.au">ANU School of Engineering</a>.</p></article><aside></aside></div></section><section><div class="container"><header></header><article><div class="grid grid--2"> <article> <p>International Associate Member</p> <a href="https://cra.org/"><img src="/assets/images/cra.png" alt="Computing Research Association" style="height:100px; width:auto"></a> </article> <article> <p>2020 Affiliate</p> <a href="https://anitab.org/braid/"> <img src="/assets/images/AnitaB_ResearchandImpact_BRAID.png" alt="2020 BRAID Affiliate School" style="height:100px; width:o"></a> </article> </div></article><aside></aside></div></section> </main> <article> <div class="container footer__socials-container"> <article> <nav aria-label="Social links" class="footer__socials"> <a href="https://twitter.com/ANUComputing"> <span class="visually-hidden">Twitter</span> <svg aria-hidden="true" viewbox="0 0 17.01 17.01" xmlns="http://www.w3.org/2000/svg"> <g data-name="Layer 2"> <g data-name="Layer 1"> <path d="M12.73,6.34a2.53,2.53,0,0,1,0,.28,6.17,6.17,0,0,1-6.21,6.2h0a6.2,6.2,0,0,1-3.34-1,4.55,4.55,0,0,0,.52,0,4.37,4.37,0,0,0,2.71-.94,2.2,2.2,0,0,1-2-1.52,2.16,2.16,0,0,0,1,0A2.19,2.19,0,0,1,3.62,7.25v0a2.12,2.12,0,0,0,1,.27,2.19,2.19,0,0,1-.67-2.91A6.21,6.21,0,0,0,8.42,6.86a2.19,2.19,0,0,1,3.72-2,4,4,0,0,0,1.38-.53,2.17,2.17,0,0,1-.95,1.21,4.24,4.24,0,0,0,1.25-.35,4.38,4.38,0,0,1-1.09,1.14M8.5,0A8.51,8.51,0,1,0,17,8.5,8.51,8.51,0,0,0,8.5,0"/> </g> </g> </svg> </a> <a href="https://facebook.com/anucecc"> <span class="visually-hidden">Facebook</span> <svg aria-hidden="true" viewbox="0 0 17.01 17.01" xmlns="http://www.w3.org/2000/svg"> <g data-name="Layer 2"> <g data-name="Layer 1"> <path d="M8.47,17h0Zm.06,0Zm-.09,0h0Zm.12,0h0Zm-.14,0h0Zm.17,0h0Zm0,0Zm-.22,0h0Zm.25,0Zm-.28,0h0Zm.31,0h0Zm-.33,0h0Zm0,0Zm.39,0h0Zm-.42,0h0Zm.44,0Zm0,0h0Zm-.5,0h0Zm0,0h0Zm.55,0h0Zm0,0h0ZM8.2,17h0Zm0,0h0Zm.66,0h0Zm-.69,0h0Zm.72,0h0Zm-.75,0h0Zm.78,0h0Zm-.8,0h0Zm.82,0Zm-.85,0h0Zm.88,0h0Zm0,0H9ZM8,17H8Zm1,0H9ZM8,17H8Zm0,0H8Zm1,0H9ZM8,17H8Zm1.09,0h0Zm0,0h0ZM7.92,17h0Zm0,0h0Zm1.2,0ZM7.87,17h0Zm1.26,0h0ZM7.84,17h0Zm1.32,0Zm0,0ZM7.82,17h0Zm0,0h0Zm1.42,0h0ZM7.77,17Zm1.47,0Zm0,0ZM7.74,17h0Zm0,0h0Zm1.58,0ZM7.18,16.9a8.51,8.51,0,1,1,2.65,0V11h2l.38-2.46H9.83V6.91a1.23,1.23,0,0,1,1.39-1.33h1.07V3.49a12.71,12.71,0,0,0-1.9-.17A3,3,0,0,0,7.18,6.63V8.5H5V11H7.18Z"/> </g> </g> </svg> </a> <a href="https://instagram.com/anucecc"> <span class="visually-hidden">Instagram</span> <svg aria-hidden="true" viewbox="0 0 17.01 17.01" xmlns="http://www.w3.org/2000/svg"> <g data-name="Layer 2"> <g data-name="Layer 1"> <path d="M8.5,0A8.51,8.51,0,1,1,0,8.5,8.51,8.51,0,0,1,8.5,0m0,3.19c-1.44,0-1.62,0-2.19,0A4.09,4.09,0,0,0,5,3.47,2.69,2.69,0,0,0,3.47,5a4.09,4.09,0,0,0-.25,1.29c0,.57,0,.75,0,2.19s0,1.63,0,2.2A4,4,0,0,0,3.47,12a2.66,2.66,0,0,0,.61.95,2.76,2.76,0,0,0,.94.61,4.09,4.09,0,0,0,1.29.25c.57,0,.75,0,2.19,0s1.63,0,2.2,0A4.09,4.09,0,0,0,12,13.54a2.86,2.86,0,0,0,.94-.61,2.8,2.8,0,0,0,.61-.95,4,4,0,0,0,.25-1.28c0-.57,0-.75,0-2.2s0-1.62,0-2.19A4.09,4.09,0,0,0,13.54,5a2.76,2.76,0,0,0-.61-.94A2.71,2.71,0,0,0,12,3.47a4.09,4.09,0,0,0-1.29-.25c-.57,0-.75,0-2.2,0m0,1c1.42,0,1.59,0,2.15,0a3,3,0,0,1,1,.18,1.66,1.66,0,0,1,.61.4,1.7,1.7,0,0,1,.4.61,3,3,0,0,1,.18,1c0,.57,0,.73,0,2.15s0,1.59,0,2.15a3,3,0,0,1-.18,1,1.79,1.79,0,0,1-1,1,3.26,3.26,0,0,1-1,.18c-.56,0-.73,0-2.15,0s-1.58,0-2.14,0a3.26,3.26,0,0,1-1-.18,1.7,1.7,0,0,1-.61-.4,1.66,1.66,0,0,1-.4-.61,3,3,0,0,1-.18-1c0-.56,0-.73,0-2.15s0-1.58,0-2.15a3,3,0,0,1,.18-1,1.58,1.58,0,0,1,.4-.61,1.58,1.58,0,0,1,.61-.4,3,3,0,0,1,1-.18c.56,0,.72,0,2.14,0m0,1.62A2.73,2.73,0,1,0,11.23,8.5,2.74,2.74,0,0,0,8.5,5.77m0,4.5A1.77,1.77,0,1,1,10.27,8.5,1.77,1.77,0,0,1,8.5,10.27M12,5.67a.64.64,0,1,1-1.28,0,.64.64,0,0,1,1.28,0"/> </g> </g> </svg> </a> <a href="https://www.youtube.com/user/ANUexperience"> <span class="visually-hidden">Youtube</span> <svg aria-hidden="true" viewbox="0 0 17.01 17.01" xmlns="http://www.w3.org/2000/svg"> <g data-name="Layer 2"> <g data-name="Layer 1"> <path d="M7.39,10.13,10.24,8.5,7.39,6.88ZM14,8.5a14.28,14.28,0,0,1-.23,2.65,1.36,1.36,0,0,1-1,1,32.63,32.63,0,0,1-4.28.23,32.42,32.42,0,0,1-4.27-.23,1.39,1.39,0,0,1-1-1A14.92,14.92,0,0,1,3,8.5a14.82,14.82,0,0,1,.22-2.64,1.39,1.39,0,0,1,1-1A32.42,32.42,0,0,1,8.5,4.65a32.63,32.63,0,0,1,4.28.23,1.36,1.36,0,0,1,1,1A14.19,14.19,0,0,1,14,8.5m3,0A8.51,8.51,0,1,0,8.5,17,8.51,8.51,0,0,0,17,8.5"/> </g> </g> </svg> </a> <a href="https://www.linkedin.com/showcase/anucecc"> <span class="visually-hidden">LinkedIn</span> <svg aria-hidden="true" viewbox="0 0 17.01 17.01" xmlns="http://www.w3.org/2000/svg"> <g data-name="Layer 2"> <g data-name="Layer 1"> <path d="M8.5,0A8.51,8.51,0,1,1,0,8.5,8.51,8.51,0,0,1,8.5,0M5.85,6.64H3.64v6.64H5.85Zm8,6.64V9.47c0-2-1.08-3-2.54-3a2.2,2.2,0,0,0-2,1.09V6.64H7.07c0,.62,0,6.64,0,6.64h2.2V9.57A1.41,1.41,0,0,1,9.35,9a1.19,1.19,0,0,1,1.13-.81c.8,0,1.12.61,1.12,1.5v3.55Zm-9-9.84a1.15,1.15,0,1,0,0,2.29h0a1.15,1.15,0,1,0,0-2.29"/> </g> </g> </svg> </a> </nav> </article> </div> </article> <footer class="anu-wf-footer" aria-label="Footer banner" role="contentinfo" data-tracker="anu"></footer> <script src="https://webstyle.anu.edu.au/widgets/bundle.js"></script> <link rel="stylesheet" href="/assets/vendor/highlight.js/styles/a11y-dark.css"> <script src="/assets/vendor/highlight.js/highlight.pack.js"></script> <script src="/assets/vendor/highlight.js/extempore.min.js"></script> <script> hljs.highlightAll(); </script> <svg display="none" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <!-- Font Awesome Free 5.5.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) --> <symbol id='fas.fa-arrow-right' viewBox='0 0 448 512'> <title>arrow-right</title> <path class='path1' d='M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z'></path> </symbol> <symbol id='fas.fa-bars' viewBox='0 0 448 512'> <title>bars</title> <path class='path1' d='M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z'></path> </symbol> <symbol id='fas.fa-search' viewBox='0 0 512 512'> <title>search</title> <path class='path1' d='M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z'></path> </symbol> <symbol id='fas.fa-times' viewBox='0 0 352 512'> <title>times</title> <path class='path1' d='M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z'></path> </symbol> </defs> </svg> <svg display="none" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><symbol viewBox="0 0 85 85" id="003-26"><defs><style>.cls-1,.cls-2{fill:none;}.cls-2{stroke:#231f20;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5px;}</style></defs><g data-name="Layer 2"><g><path class="cls-1" d="M42.5,0c.7,0,1.39,0,2.09.05L46.67.2c.69.07,1.38.16,2.07.26s1.37.22,2,.36,1.36.28,2,.45,1.34.36,2,.56,1.32.42,2,.65,1.3.49,1.94.76,1.28.54,1.91.84,1.25.61,1.86.94,1.22.67,1.82,1,1.18.73,1.76,1.11,1.15.79,1.71,1.2,1.1.85,1.64,1.29S70.53,10.54,71,11s1,1,1.51,1.44,1,1,1.44,1.51.92,1,1.36,1.58.87,1.08,1.29,1.64.81,1.13,1.2,1.71.76,1.16,1.11,1.76.7,1.2,1,1.82.64,1.23.94,1.86.58,1.26.84,1.91.52,1.29.76,1.94.45,1.32.65,2,.39,1.34.56,2,.32,1.36.45,2,.26,1.37.36,2,.19,1.38.26,2.07.11,1.39.15,2.08,0,1.39,0,2.09,0,1.39,0,2.09-.09,1.38-.15,2.08-.16,1.38-.26,2.07-.22,1.37-.36,2-.28,1.36-.45,2-.36,1.34-.56,2-.42,1.32-.65,2-.49,1.3-.76,1.94-.54,1.28-.84,1.91-.61,1.25-.94,1.86-.67,1.22-1,1.82-.73,1.18-1.11,1.76-.79,1.15-1.2,1.71-.85,1.1-1.29,1.64S74.46,70.53,74,71s-.95,1-1.44,1.51-1,1-1.51,1.44-1,.92-1.58,1.36-1.08.87-1.64,1.29-1.13.81-1.71,1.2S65,78.6,64.35,79s-1.2.7-1.82,1-1.23.64-1.86.94-1.26.58-1.91.84-1.29.52-1.94.76-1.32.45-2,.65-1.34.39-2,.56-1.36.32-2,.45-1.37.26-2,.36-1.38.19-2.07.26L44.59,85c-.7,0-1.39,0-2.09,0s-1.39,0-2.09,0l-2.08-.15c-.69-.07-1.38-.16-2.07-.26s-1.37-.22-2-.36-1.36-.28-2-.45-1.34-.36-2-.56-1.32-.42-2-.65-1.3-.49-1.94-.76-1.28-.54-1.91-.84-1.25-.61-1.86-.94-1.22-.67-1.82-1-1.18-.73-1.76-1.11-1.15-.79-1.71-1.2-1.1-.85-1.64-1.29S14.47,74.46,14,74s-1-.95-1.51-1.44-1-1-1.44-1.51-.92-1-1.36-1.58-.87-1.08-1.29-1.64-.81-1.13-1.2-1.71S6.4,65,6.05,64.35s-.7-1.2-1-1.82-.64-1.23-.94-1.86-.58-1.26-.84-1.91-.52-1.29-.76-1.94-.45-1.32-.65-2-.39-1.34-.56-2-.32-1.36-.45-2-.26-1.37-.36-2S.27,47.36.2,46.67.09,45.28.05,44.59,0,43.2,0,42.5s0-1.39.05-2.09S.14,39,.2,38.33.36,37,.46,36.26s.22-1.37.36-2,.28-1.36.45-2,.36-1.34.56-2,.42-1.32.65-2,.49-1.3.76-1.94.54-1.28.84-1.91.61-1.25.94-1.86.67-1.22,1-1.82.73-1.18,1.11-1.76.79-1.15,1.2-1.71.85-1.1,1.29-1.64S10.54,14.47,11,14s1-1,1.44-1.51,1-1,1.51-1.44,1-.92,1.58-1.36,1.08-.87,1.64-1.29,1.13-.81,1.71-1.2,1.16-.76,1.76-1.11,1.2-.7,1.82-1,1.23-.64,1.86-.94,1.26-.58,1.91-.84,1.29-.52,1.94-.76,1.32-.45,2-.65,1.34-.39,2-.56,1.36-.32,2-.45,1.37-.26,2-.36S37.64.27,38.33.2L40.41.05C41.11,0,41.8,0,42.5,0Z"></path><path class="cls-2" d="M34.34,50.94,32.52,67.33c-.13,1.19.53,2.12,1.06,1.48L39.08,66a.43.43,0,0,1,.76,0l5.48,2.68c.51.67,1.19-.19,1.09-1.39L44.93,50.81"></path><path class="cls-2" d="M47.26,50.81,53,59.4c.37.85,1.11,1.24,1.19.63l2.21-3.72c0-.27.22-.36.47-.24l4.27,0c.57.28.64-.53.13-1.29l-7-9"></path><path class="cls-2" d="M58.57,33.44c0,1.88-1.17,3.55-1.72,5.25s-.62,3.79-1.69,5.26-3,2.14-4.48,3.22-2.69,2.7-4.45,3.27-3.64,0-5.52,0-3.83.58-5.53,0-3-2.21-4.45-3.27-3.4-1.75-4.48-3.23-1.11-3.5-1.68-5.25-1.73-3.37-1.73-5.25S24,29.89,24.57,28.2s.62-3.8,1.68-5.26,3-2.15,4.48-3.22,2.7-2.7,4.45-3.27,3.65,0,5.53,0,3.82-.58,5.52,0,3,2.2,4.45,3.27,3.41,1.74,4.48,3.22,1.11,3.5,1.69,5.26S58.57,31.56,58.57,33.44Z"></path><circle class="cls-2" cx="40.71" cy="33.44" r="9.03"></circle></g></g></symbol><symbol viewBox="0 0 85 85" id="001-2-011"><defs><style>.cls-1,.cls-2,.cls-3{fill:none;}.cls-2,.cls-3{stroke:#231f20;stroke-linejoin:round;stroke-width:1.5px;}.cls-2{stroke-linecap:round;}</style></defs><g data-name="Layer 2"><g><path class="cls-1" d="M42.5,0c.7,0,1.39,0,2.09.05L46.67.2c.69.07,1.38.16,2.07.26s1.37.22,2,.36,1.36.28,2,.45,1.34.36,2,.56,1.32.42,2,.65,1.3.49,1.94.76,1.28.54,1.91.84,1.25.61,1.86.94,1.22.67,1.82,1,1.18.73,1.76,1.11,1.15.79,1.71,1.2,1.1.85,1.64,1.29S70.53,10.54,71,11s1,1,1.51,1.44,1,1,1.44,1.51.92,1,1.36,1.58.87,1.08,1.29,1.64.81,1.13,1.2,1.71.76,1.16,1.11,1.76.7,1.2,1,1.82.64,1.23.94,1.86.58,1.26.84,1.91.52,1.29.76,1.94.45,1.32.65,2,.39,1.34.56,2,.32,1.36.45,2,.26,1.37.36,2,.19,1.38.26,2.07.11,1.39.15,2.08,0,1.39,0,2.09,0,1.39,0,2.09-.09,1.38-.15,2.08-.16,1.38-.26,2.07-.22,1.37-.36,2-.28,1.36-.45,2-.36,1.34-.56,2-.42,1.32-.65,2-.49,1.3-.76,1.94-.54,1.28-.84,1.91-.61,1.25-.94,1.86-.67,1.22-1,1.82-.73,1.18-1.11,1.76-.79,1.15-1.2,1.71-.85,1.1-1.29,1.64S74.46,70.53,74,71s-.95,1-1.44,1.51-1,1-1.51,1.44-1,.92-1.58,1.36-1.08.87-1.64,1.29-1.13.81-1.71,1.2S65,78.6,64.35,79s-1.2.7-1.82,1-1.23.64-1.86.94-1.26.58-1.91.84-1.29.52-1.94.76-1.32.45-2,.65-1.34.39-2,.56-1.36.32-2,.45-1.37.26-2,.36-1.38.19-2.07.26L44.59,85c-.7,0-1.39,0-2.09,0s-1.39,0-2.09,0l-2.08-.15c-.69-.07-1.38-.16-2.07-.26s-1.37-.22-2-.36-1.36-.28-2-.45-1.34-.36-2-.56-1.32-.42-2-.65-1.3-.49-1.94-.76-1.28-.54-1.91-.84-1.25-.61-1.86-.94-1.22-.67-1.82-1-1.18-.73-1.76-1.11-1.15-.79-1.71-1.2-1.1-.85-1.64-1.29S14.47,74.46,14,74s-1-.95-1.51-1.44-1-1-1.44-1.51-.92-1-1.36-1.58-.87-1.08-1.29-1.64-.81-1.13-1.2-1.71S6.4,65,6.05,64.35s-.7-1.2-1-1.82-.64-1.23-.94-1.86-.58-1.26-.84-1.91-.52-1.29-.76-1.94-.45-1.32-.65-2-.39-1.34-.56-2-.32-1.36-.45-2-.26-1.37-.36-2S.27,47.36.2,46.67.09,45.28.05,44.59,0,43.2,0,42.5s0-1.39.05-2.09S.14,39,.2,38.33.36,37,.46,36.26s.22-1.37.36-2,.28-1.36.45-2,.36-1.34.56-2,.42-1.32.65-2,.49-1.3.76-1.94.54-1.28.84-1.91.61-1.25.94-1.86.67-1.22,1-1.82.73-1.18,1.11-1.76.79-1.15,1.2-1.71.85-1.1,1.29-1.64S10.54,14.47,11,14s1-1,1.44-1.51,1-1,1.51-1.44,1-.92,1.58-1.36,1.08-.87,1.64-1.29,1.13-.81,1.71-1.2,1.16-.76,1.76-1.11,1.2-.7,1.82-1,1.23-.64,1.86-.94,1.26-.58,1.91-.84,1.29-.52,1.94-.76,1.32-.45,2-.65,1.34-.39,2-.56,1.36-.32,2-.45,1.37-.26,2-.36S37.64.27,38.33.2L40.41.05C41.11,0,41.8,0,42.5,0Z"></path><line class="cls-2" x1="22.48" y1="27.25" x2="22.48" y2="34.87"></line><path class="cls-3" d="M30.11,29.83a2.85,2.85,0,0,1,1.51-2.52A23.86,23.86,0,0,1,42.5,24.39a23.86,23.86,0,0,1,10.88,2.92,2.85,2.85,0,0,1,1.51,2.52v7.63a2.87,2.87,0,0,0-1.51-2.53A23.86,23.86,0,0,0,42.5,32a23.86,23.86,0,0,0-10.88,2.92,2.87,2.87,0,0,0-1.51,2.53Z"></path><path class="cls-2" d="M54.89,37.73v1.91a12.39,12.39,0,0,1-24.78,0V37.73"></path><path class="cls-3" d="M54.89,32l6.78-3.38a1.55,1.55,0,0,0,0-2.76L44.31,17.19a4,4,0,0,0-3.62,0L23.33,25.87a1.55,1.55,0,0,0,0,2.76L30.11,32"></path><path class="cls-2" d="M20.57,58.71c4.54,5.65,12.66,9.53,21.93,9.53s17.39-3.88,21.93-9.53C58.77,55.2,51,53,42.5,53S26.23,55.2,20.57,58.71Z"></path></g></g></symbol><symbol viewBox="0 0 85 85" id="008-013"><defs><style>.cls-1,.cls-2{fill:none;}.cls-2{stroke:#231f20;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5px;}</style></defs><g data-name="Layer 2"><g><path class="cls-1" d="M42.5,0c.7,0,1.39,0,2.09.05L46.67.2c.69.07,1.38.16,2.07.26s1.37.22,2,.36,1.36.28,2,.45,1.34.36,2,.56,1.32.42,2,.65,1.3.49,1.94.76,1.28.54,1.91.84,1.25.61,1.86.94,1.22.67,1.82,1,1.18.73,1.76,1.11,1.15.79,1.71,1.2,1.1.85,1.64,1.29S70.53,10.54,71,11s1,1,1.51,1.44,1,1,1.44,1.51.92,1,1.36,1.58.87,1.08,1.29,1.64.81,1.13,1.2,1.71.76,1.16,1.11,1.76.7,1.2,1,1.82.64,1.23.94,1.86.58,1.26.84,1.91.52,1.29.76,1.94.45,1.32.65,2,.39,1.34.56,2,.32,1.36.45,2,.26,1.37.36,2,.19,1.38.26,2.07.11,1.39.15,2.08,0,1.39,0,2.09,0,1.39,0,2.09-.09,1.38-.15,2.08-.16,1.38-.26,2.07-.22,1.37-.36,2-.28,1.36-.45,2-.36,1.34-.56,2-.42,1.32-.65,2-.49,1.3-.76,1.94-.54,1.28-.84,1.91-.61,1.25-.94,1.86-.67,1.22-1,1.82-.73,1.18-1.11,1.76-.79,1.15-1.2,1.71-.85,1.1-1.29,1.64S74.46,70.53,74,71s-.95,1-1.44,1.51-1,1-1.51,1.44-1,.92-1.58,1.36-1.08.87-1.64,1.29-1.13.81-1.71,1.2S65,78.6,64.35,79s-1.2.7-1.82,1-1.23.64-1.86.94-1.26.58-1.91.84-1.29.52-1.94.76-1.32.45-2,.65-1.34.39-2,.56-1.36.32-2,.45-1.37.26-2,.36-1.38.19-2.07.26L44.59,85c-.7,0-1.39,0-2.09,0s-1.39,0-2.09,0l-2.08-.15c-.69-.07-1.38-.16-2.07-.26s-1.37-.22-2-.36-1.36-.28-2-.45-1.34-.36-2-.56-1.32-.42-2-.65-1.3-.49-1.94-.76-1.28-.54-1.91-.84-1.25-.61-1.86-.94-1.22-.67-1.82-1-1.18-.73-1.76-1.11-1.15-.79-1.71-1.2-1.1-.85-1.64-1.29S14.47,74.46,14,74s-1-.95-1.51-1.44-1-1-1.44-1.51-.92-1-1.36-1.58-.87-1.08-1.29-1.64-.81-1.13-1.2-1.71S6.4,65,6.05,64.35s-.7-1.2-1-1.82-.64-1.23-.94-1.86-.58-1.26-.84-1.91-.52-1.29-.76-1.94-.45-1.32-.65-2-.39-1.34-.56-2-.32-1.36-.45-2-.26-1.37-.36-2S.27,47.36.2,46.67.09,45.28.05,44.59,0,43.2,0,42.5s0-1.39.05-2.09S.14,39,.2,38.33.36,37,.46,36.26s.22-1.37.36-2,.28-1.36.45-2,.36-1.34.56-2,.42-1.32.65-2,.49-1.3.76-1.94.54-1.28.84-1.91.61-1.25.94-1.86.67-1.22,1-1.82.73-1.18,1.11-1.76.79-1.15,1.2-1.71.85-1.1,1.29-1.64S10.54,14.47,11,14s1-1,1.44-1.51,1-1,1.51-1.44,1-.92,1.58-1.36,1.08-.87,1.64-1.29,1.13-.81,1.71-1.2,1.16-.76,1.76-1.11,1.2-.7,1.82-1,1.23-.64,1.86-.94,1.26-.58,1.91-.84,1.29-.52,1.94-.76,1.32-.45,2-.65,1.34-.39,2-.56,1.36-.32,2-.45,1.37-.26,2-.36S37.64.27,38.33.2L40.41.05C41.11,0,41.8,0,42.5,0Z"></path><polyline class="cls-2" points="14.68 58.08 18.02 54.74 32.48 69.21 29.15 72.54"></polyline><path class="cls-2" d="M56.88,52.94l8.4-4.47a3.47,3.47,0,0,1,4.2.71,3.39,3.39,0,0,1-.76,5.11L52.46,64.5a8.93,8.93,0,0,1-4.74,1.37H35.9A5.53,5.53,0,0,0,32,67.5l-.6.59"></path><path class="cls-2" d="M39.16,57H53.44A3.46,3.46,0,0,0,57,53.81a3.34,3.34,0,0,0-3.33-3.52H42.13a2.25,2.25,0,0,1-1.23-.37c-1-.63-3.47-1.86-8.41-1.86C24.7,48.06,20.25,57,20.25,57"></path><path class="cls-2" d="M42.5,39.16h8.9a0,0,0,0,1,0,0v4.68a2,2,0,0,1-2,2H44.5a2,2,0,0,1-2-2V39.16A0,0,0,0,1,42.5,39.16Z"></path><line class="cls-2" x1="35.39" y1="23.58" x2="31.53" y2="21.36"></line><line class="cls-2" x1="62.37" y1="39.16" x2="58.51" y2="36.94"></line><line class="cls-2" x1="40.27" y1="18.7" x2="38.05" y2="14.84"></line><line class="cls-2" x1="46.95" y1="16.91" x2="46.95" y2="12.46"></line><line class="cls-2" x1="53.63" y1="18.7" x2="55.85" y2="14.84"></line><line class="cls-2" x1="58.51" y1="23.58" x2="62.37" y2="21.36"></line><line class="cls-2" x1="31.53" y1="39.16" x2="35.39" y2="36.94"></line><line class="cls-2" x1="60.3" y1="30.26" x2="64.75" y2="30.26"></line><line class="cls-2" x1="29.15" y1="30.26" x2="33.6" y2="30.26"></line><path class="cls-2" d="M51.4,39.16c1.72-2.34,4.45-4.64,4.45-8.9a8.9,8.9,0,1,0-17.8,0c0,4.26,2.73,6.56,4.45,8.9Z"></path></g></g></symbol></defs></svg> </body> </html>