186

I'm using macOS to install Xcode 10.1.

I have 18.43 GB free disk space on my Mac, but when I click the install button next to Xcode in the App Store, it always shows the "Not enough storage disk space, you can't install the product" alert message.

How do I fix this problem in macOS Mojave(10.14.1)?

enter image description here

enter image description here

shim
  • 9,289
  • 12
  • 69
  • 108
dickfala
  • 3,246
  • 3
  • 31
  • 52
  • Wasnt able to comment but this worked for me: `dd if=/dev/zero of=./hugefile bs=100m` – Simon Prosser Sep 21 '19 at 16:36
  • Restarting mac will help :) – Haseeb Javed Dec 17 '20 at 09:30
  • 2
    You will need at least 40gb to update if you downloaded it from appstore – Binaya Thapa Magar Dec 27 '20 at 11:40
  • I have 41.82 GBs but still have the same issue, may be the latest version needs more than 40 GB – AliRehman7141 Jun 21 '21 at 06:48
  • Apple should definitely move to a patch-style update. Downloading every time 12+ GB of data for a single fix like this week's 13.2.1 is just stupid in 2021. Not to mention the carbon footprint of thousands of developers using up the required resources. Apple, wake up. – Azurlake Dec 22 '21 at 06:33
  • @AliRehman7141 I have the same problem upgrading from 13.2.1 to 13.4.1 on a 512g machine. After moving more and more stuff onto a USB temporarily, I finally got the update to start working when I got to 42.2g free. – hippietrail Jun 23 '22 at 08:54

32 Answers32

135

What you can also do is manually download Xcode and install it. (Without using the app store update) Therefor do the following steps:

  1. go to https://developer.apple.com/download/more/
  2. search for Xcode (or latest version e.g Xcode 10.2) and manually download and install it.

See also this post here: https://discussions.apple.com/thread/8622103?answerId=250008933022#250008933022

Biba
  • 1,595
  • 1
  • 12
  • 17
  • 6
    I try everything from above, rm dirs store*..., install something and try update, create huge file...nothing. Only manual download and install – miff Jul 28 '19 at 13:22
  • 5
    If you install Xcode from an xip package, you will no longer receive Xcode updates via App Store. From now on, you will have to manually perform every update by downloading the latest xip package. – kubano Sep 30 '19 at 22:47
  • You need a apple developer id to download from there – sportzpikachu Mar 04 '20 at 04:00
  • @sportzpikachu It doesn't have to be a paid one, just the regular one you use on the App Store. – ReinstateMonica3167040 Nov 17 '20 at 01:24
  • 5
    Doesn't work for me, I have 37GB free space but my Mac says: The archive "Xcode_13.2.1.xip" can't be expanded because the selected volume doesn't have enough free space. – xFioraMstr18 Jan 03 '22 at 22:57
126

Check the "purgeable" space of your APFS disk with Disk Utilities.. It seems Finder count this space in free space, but not App Store..

But you can trick macOS to clean up APFS by creating a huge garbage file, then deleting it.

To create the file I used the command:

dd if=/dev/zero of=/Users/<username>/hugefile bs=100m

letting dd run for about 30 seconds, then killing it with ctrl+c, and deleting the file:

rm ~/hugefile

Then App Store happily installed update..

Iulian Onofrei
  • 9,188
  • 10
  • 67
  • 113
Le Hibou
  • 1,541
  • 1
  • 10
  • 12
  • 3
    It worked for me, and I find an answer which explained it more clearly. https://superuser.com/questions/1391048/cant-complete-installation-of-xcode – SmartekWorks Jul 24 '19 at 03:08
  • 1
    This seems to be a good solution, but the process exits complaining there's not enough disk space. Kind of stuck in a circle. –  Sep 16 '19 at 07:15
  • @Pixel Which process exits complaining there's not enough disk space ? – Le Hibou Sep 16 '19 at 13:09
  • @LeHibou this process: `dd if=/dev/zero of=~/hugefile bs=100m` –  Sep 16 '19 at 13:38
  • @Pixel have you tried to continue with the remaining steps after the error? – Le Hibou Sep 16 '19 at 17:25
  • @LeHibou yes, the files exists and is huge, so I delete it. I then repeated twice, but same still happened. Perhaps if I continue repeating it will eventually complete? But anyway, I ended up freeing up more memory, and installing manually. –  Sep 16 '19 at 18:59
  • 15
    Doesn't work: `dd: ~/hugefile: No such file or directory` – chimit Sep 21 '19 at 15:04
  • this worked but I had to restart after deleting the temp file to clear enough space – Chris Sep 22 '19 at 21:48
  • 2
    Worked for me - I realized that macOS wouldn't give me back my disk space instantly after deleting hugefile. Seems like it would give back one or a few gigabytes every few seconds, so I waited a minute and then had lots of space + could update Xcode. – Jonny Sep 24 '19 at 05:36
  • 6
    worked for me. Instead of 30 seconds I left until I get the error No disk space left. On removing hugefile, Mac recovered around 70 GB space, when it was showing 20 GB before following above steps. Thanks you the savior today! – ACP Sep 25 '19 at 08:45
  • 14
    if `dd` complains, you can also do `cat /dev/zero > ~/hugefile` – Dmitry Shvedov Sep 26 '19 at 18:15
  • FWIW - When this didn't work at first, I changed it to read from `/dev/random` (because APFS might not actually allocate an all-zeroes file and just make it sparse), then let it run through until `dd` reported disk full like ACP mentioned. (There was a UI dialog about "dangerously low" before that which I ignored) – uliwitness Sep 30 '19 at 11:55
  • Use `mkfile` instead of `dd`: `mkfile -n 10g largefile.txt` – kubano Sep 30 '19 at 22:56
  • `cat /dev/zero > ~/hugefile` did the trick for me! Remember to change filenames manually if you want to copy the same file many times. – hungmi Oct 01 '19 at 17:08
  • if dd complains, you can also do dd if=/dev/random of=./hugefile bs=100m – materliu Oct 06 '19 at 03:01
  • 1
    dd if=/dev/zero of=~/hugefile2 count=100 bs=100m creates a 10GB file... adjust the count to increase filesize – WiRa Oct 08 '19 at 07:40
  • Correct, the App Store app does not account for the purgeable space: I have filed a feedback on this issue some weeks ago to the Apple Feedback Program: it seems fixed since macOS Catalina, as now it works without workaround. – Josef Grunig Oct 09 '19 at 07:38
  • My Xcode update is 7.6gb, but I have 16.83gb Free on my APFS Volume shown in Disk Utility, and it still won't let me update. Only 3.43gb is purgeable (separate from the free space). It seems like this solution wouldn't work for me. – ejderuby Oct 11 '19 at 02:54
  • If `dd` reports "No such file or directory", eliminate the tilda: `dd if=/dev/zero of=hugefile bs=100m`. – Edward Brey Apr 14 '20 at 14:59
  • 4
    @EdwardBrey supply the full path of your home directory. `dd if/dev/zero of=/Users//hugefile bs=100m` – tww0003 Apr 24 '20 at 03:41
60
  1. Open finder: in menu above go to -> Go to folder:

    ~/Library/Developer/Xcode/

  2. Delete old simulator files on:

    ~/Library/Developer/Xcode/iOS DeviceSupport/

  3. Delete all files derived data on:

    ~/Library/Developer/Xcode/DerivedData

An easy way to accomplish these is by using DevCleaner for Xcode: https://apps.apple.com/us/app/devcleaner/id1388020431?mt=12

Shashank Agrawal
  • 25,161
  • 11
  • 89
  • 121
Helton Malambane
  • 1,147
  • 11
  • 12
  • 3
    in my case where are no /XCode folder (hidden?), but DevCleaner has got me 24Gb and XCode is finally installing! – djdance Nov 17 '19 at 08:50
  • this was the only solution out of all the others that actually resolved the issue. hoora – Hudi Ilfeld Nov 29 '19 at 13:20
  • I applied it after applying Jerry Krinock and Li Hibou above, I'm not sure if I need all those steps before this answer, but it's working now. – Shadi Jun 10 '20 at 16:14
  • 1
    Yes, that worked. Ive been looking for something this for ages. I could never get xcode upgraded due to lack of disk space. It cleared something 50Gb for me – pluto puppy Jun 20 '20 at 17:59
  • I love you!! I've been wondering for so long why I have so little space left! Just got rid of 40gb...... – Kai Zheng Sep 20 '20 at 15:26
  • Disk Drill did the trick for me. Find it here https://www.cleverfiles.com/disk-drill-mac.html – Junior Jan 31 '21 at 05:58
  • This worked for me. Thank you so much. I used it with @Le Hibou answer above. Thank you – Intellect Jul 25 '22 at 19:49
43

I had 52 GB available (39 GB purgeable), but the stupid Mac App Store in macOS 10.14.4 still said it had not enough free space to complete my purchase of Xcode 10.2, even after a restart. Solution:

  • Quit the Mac App Store.
  • Delete directory ~/Library/Caches/storedownloadd
  • Relaunch Mac App Store.

My Xcode "purchase" then worked on the first try.

For the curious: At the time I deleted that directory, it did not contain any app downloads. It only contained a tiny (85 KB) SQLite database (.db, -shm and -wal files), which in turn contained four SQLite tables, three of which had zero rows and one of which had only one row and one column containing the schema version number! So this is apparently some weird bug in Mac App Store.

Jerry Krinock
  • 4,860
  • 33
  • 39
  • 2
    I don't have that directory on my drive. Any other ideas? – Robert Schmid Mar 28 '19 at 20:11
  • Interestingly, I just checked and see that I no longer have such a directory either. So, maybe it only appears when apps are downloading, or when downloading problems occur. In your case, I would read the other answer to this question and, of course, if you've not already done so, restart the computer, and then, unfortunately, call Apple's Developer Technical Support *Program Support*. But they are likely to send you to Apple's regular consumer support, since, you know, this is a problem with the Mac App Store. So you might want to call regular consumer support to begin with. Be patient. – Jerry Krinock Mar 29 '19 at 01:55
  • 5
    I had to delete the storeassetd directory as well, and force quit all the store* daemons in Activity Monitor, then when I relaunched the App Store I could finally install Xcode10.2. – ikuramedia Mar 29 '19 at 22:06
  • 3
    My sure to use the Library folder in HOME DIRECTORY, not root – celwell Oct 20 '19 at 14:01
  • 1
    I didn't have this folder either, I think it may have been renamed to `com.apple.appstoreagent` in later versions of macOS. Deleting that folder (along with `com.apple.appstore`) did the trick for me – Rajiv Nov 23 '20 at 17:25
28

Trying to update to xcode 11.3.1 today, was in the problem like this. However, I can confirm that the download starts right after free space reaches 24GB as per some of the comments above.

I did the following:
- remove ~/Library/Caches/storedownloadd
- remove ~/Library/Developer/Xcode/iOS DeviceSupport/
- remove some files inside ~/Library/Developer/Xcode/DerivedData
- remove other unused files

np2314
  • 645
  • 5
  • 14
16

the problem with time machine! please remove old snapshoots

sudo tmutil listlocalsnapshots /
com.apple.TimeMachine.2019-09-25-135035
com.apple.TimeMachine.2019-09-28-232824
com.apple.TimeMachine.2019-09-29-012547
com.apple.TimeMachine.2019-09-29-022054
com.apple.TimeMachine.2019-09-29-031621
com.apple.TimeMachine.2019-09-29-052318
com.apple.TimeMachine.2019-09-29-070831
com.apple.TimeMachine.2019-09-29-092229
com.apple.TimeMachine.2019-09-29-101756
com.apple.TimeMachine.2019-09-29-114952

tmutil deletelocalsnapshots 2019-09-25-135035
tmutil deletelocalsnapshots 2019-09-28-232824

etc

Nisk
  • 1,084
  • 9
  • 9
  • I used the script mentioned here to delete all of my snapshots at once. https://apple.stackexchange.com/questions/340905/how-to-delete-all-local-timemachine-snapshots – Justin Domnitz Oct 14 '19 at 21:56
12

The same here for Xcode 11.2. It is mandatory to have at least 28GB free.

removing different directories such us, caches, .eclipse, .julia directories to free up.

UPDATE: 24GB with lastest version: 11.2.1

devwebcl
  • 2,866
  • 3
  • 27
  • 46
  • it was trial and error... any blame should be sent to Apple :) – devwebcl Nov 06 '19 at 18:31
  • 1
    Currently got 31GB free. — still not enough – Martin Dec 18 '19 at 13:05
  • Yes. And XCode is still not checking for purgeable space. Installation went fine after I did a _“purge time machine local snapshots”_ — Google what's in the quotes for details. – Martin Dec 19 '19 at 07:58
  • I had to release space until I have 32Gb of space and then it became possible for me to update XCode. This is actually very bad on their side. Having space without the possibility to use it as you want to, is exactly the same as not having it. So when buying a new machine we should all consider what... 50Gb extra? ... lame... – João Rodrigues May 05 '20 at 16:39
  • Was about 25 to 27 for me – juliushuck Aug 10 '20 at 17:19
  • For me just now upgrading to 13.4.1 it worked when I hit 42.2Gb free. I kept moving more files to a USB trying again until it worked. – hippietrail Jun 23 '22 at 08:56
10
  1. Quit App Store
  2. Delete both storedownloadd and storeassetd from ~/Library/Caches/
  3. Relaunch App Store
  4. Try again

The above steps resolved the issue for me.

MacBook Pro (13-inch, 2017, Two Thunderbolt 3 ports)

macOS Mojave Version 10.14.6 (18G87)

beporter
  • 3,740
  • 3
  • 37
  • 45
Iyvin Jose
  • 707
  • 5
  • 17
7

this command works perfectly, it removed AFPS snapshots

tmutil thinlocalsnapshots / 21474836480 4

Got the reference from this forum

https://forums.developer.apple.com/thread/110533

Alok
  • 881
  • 1
  • 11
  • 18
6

Adding to @Biba's answer of directly downloading the version you want of Xcode from More Downloads for Apple Developers by signing in with your Apple ID.

First, delete Xcode application and then manually delete as much data as you can of Xcode located at ~/Developers. But even after that, you might not be able to save enough space for downloading and unpacking.

The file from Apple's site is a .xip file that needs to be unpacked and to get a Xcode.app file. Together they take well over 40 GB of space. And I could not clear that much space so I had to use an external drive to unpack the downloaded file. This process can take well over 1.5 hours to copy and unpack the file.

code unpacked file size

Once you get the Xcode.app file, copy it over to Applications using finder. It will first say, Preparing to copy to "Applications". After about 10 to 15 mins it will change to, Copying "Xcode" to "Applications". This should take another 30 - 40 mins. While you copy make sure you have a couple of extra GBs free. On the first load, it will open a popup, Verifying "Xcode.app". The verification takes 10-15 mins. Then it will ask for your Mac password to install additional components.

All the best. This is a really irritating update process.

Parth
  • 2,682
  • 1
  • 20
  • 39
5

I solved it by upgrading MacOS as I'd have an old version installed. After a restart it magically had space :D (the same by the way)

K. Stopa
  • 597
  • 8
  • 9
4

For my case: I already have xcode 10.1 in my MBP.

  1. Delete directory ~/Library/Caches/storedownloadd and storeassetd directory in the same dir.
  2. Reopen the app store and go for the upgrade page.
  3. Download the xcode 10.2 from https://developer.apple.com/download/more/
  4. Somehow the app store will automatically install the xcode 10.2 right after download is finished.

Done.

SHI Zhong Ping
  • 545
  • 4
  • 11
4

Mine is a weird solution. I did not have storedownloadd folder previous solutions talked about and manually downloading was not a real solution(what about future updates)

I manually created storedownloadd In the following directory re-started App Store, although loader took forever(restarted MacBook hoping for a change) it started downloading :)

~/Library/Caches/storedownloadd
LeRoy
  • 4,189
  • 2
  • 35
  • 46
3

Try installing any other small app in the App Store and then install Xcode. It worked for me. In my case, I had 40 GB empty space but could not install Xcode due to the same error. Deleting ~/Library/Caches/storedownloadd did not work for me either.

DSingh
  • 39
  • 2
  • 1
    Did not work for me. Downloaded and installed a 2.8mb game, and Xcode still won't download the update. – ejderuby Oct 11 '19 at 03:26
3

TL;DR: Deleting XCode (~7GB) and then the folder Users/[insert your mac username here]/Library/Developer (~90GB) freed around 100GB. I then installed XCode off of the App Store and it worked like a charm.

The answers above, such as rm hugefile did not work for me because I guess I had a legit memory issue. Downloading the XCode file and manually installing did not work because I still got the space/memory error.

I had about 10GB of free space according to Disk Utility.

Deleting XCode (I had it prior but had to update it) and other applications brought me to 17-20GB.

Still didn't work.

I had to go into the Users/[insert your mac username here]/Library/Developer and I deleted that directory, which I guess somehow saved XCode crap even though I deleted the application.

That brought me to a stunning 120GB.

120GB.

That is half of the memory on my hard drive.

?!

No idea how that works.

I then installed XCode directly off of the App Store and it works like a charm.

I guess be careful because I am not sure what is in that directory.. It did not seem important and all seemed XCode-related. It looked like simulators for XCode and other XCode related stuff. I am not sure. I use XCode A LOT so maybe error logs or usage logs built up. Even then - that's just text. So I am not sure. If I run into any weird issues that might result, I will post it here, but so far nothing.

Also, I highly recommend OmniDiskSweeper, which is a free program and is how I figured this out (among other memory-related issues in the past)

Joshua Wolff
  • 2,687
  • 1
  • 25
  • 42
3

For Xcode 12 you need to have more than 32GB free space.

Delete the old Xcode application first.

Install OmniDiskSweeper which will show the total space used by the folders, which will be useful to detect the folders which occupy lot of space.

Go to Users -> your_user_name -> Library -> Developer (these are old xcode contents), delete all the contents here, since we are installing new xcode, the old contents are not necessary.

If you have Android Studio and willing to delete it, and install later, then delete the Android Studio application and on OmniDiskSweeper, go to Users -> your_user_name -> Library -> Android (these are old android studio contents), delete all the contents here.

Which will give you a lot disk space.

Moh .S
  • 1,920
  • 19
  • 19
2

I was literally at the same number today. I was able to download once I got my free space just over 20GB.

The issue for me was my Archives on some larger projects were taking up too much space. I will have to do a better purge, but just removing the failed uploads was enough to lower the system space and download the latest Xcode.

Here is a great link that explains this in further detail, as well as Simulator Cleanup and Derived Data.

Free Up Mac Storage

Sadly when I bought my Mac, I wish someone had told me to get over 250GB of space. All the recommendations said the 125GB was fine for running Xcode. Alright for learning iOS, but I guess they failed to evaluate large long term development.

C. Skjerdal
  • 2,750
  • 3
  • 25
  • 50
2

I ran into same issue trying to install XCode 11.beta after installing macOS Catalina. What i did:

  1. delete ~/Library/Caches/storedownloadd
  2. delete ~/Library/Caches/com.apple.appstore
  3. uninstall previous version of XCode (10.3) -> wait till all the files are deleted, can check in Disk Utility
  4. fresh restart -> without opening the apps before restart
  5. install new XCode version with Archive Utility.
Matea
  • 648
  • 5
  • 5
2

Same thing here, tried most of the above. 107 gigs of space free, but not enough to install.

So I downloaded Xcode from Apple directly (https://developer.apple.com/download/more/) and copied the .xip file to an external driven with lots of space.

I was then able to do this:

cd /Applications
xip -x "/Volumes/Blue 2T/Xcode_11.3.xip"

Don't forget to get rid of the xip file when you're done.

ghenne
  • 1,903
  • 2
  • 19
  • 29
2

Instruction for Install Xcode 13

Make sure

  1. You must Download Xcode from Apple directly (https://developer.apple.com/download/more/)
  2. Please double check MacOS compatible version with Xcode to be download. You must have macOS Big Sur Version 11.3 or later
  3. Disk space at least 40 GB free.

Tested by installed Successfully ✅

Saumil Shah
  • 2,299
  • 1
  • 22
  • 27
1

The App Store app does not account for the purgeable space. I have filed a feedback on this issue some weeks ago to the Apple Feedback Program: it seems fixed since macOS Catalina, as now it works without workaround.

For previous MacOS see this answer

Josef Grunig
  • 442
  • 4
  • 12
1

It's not the prettiest solution, but I simply open Applications folder in Finder and drag Xcode to the bin, and delete it! :D

Then open App Store, find Xcode and install it again.

This still allows future updates from App Store. I have done this already multiple times over the last 6 years, especially for major version updates, as this always ended up being the simplest solution for me when I encounter such issues. This way you are not required to tamper with Developer folder data, unless you want to do some cleanup.

p.s. I found no harmful effects of this approach on my projects.

Jonauz
  • 4,133
  • 1
  • 28
  • 22
0

For me, I had an extra folder in my Macintosh HD/Volumes/ folder, Im not sure how it was created, but it was some sort of copy of my external harddrive. After deleting it, I was able to download xcode

Hope this helps

Eliran Assaraf
  • 339
  • 2
  • 5
0

in my MacBook had 31 GB available (14 GB purgeable), macOS 10.14.5 still said it had not enough free space to complete my purchase of Xcode 10.2, just deleted directory ~/Library/Caches/storedownloadd, started downloading.

BatyrCan
  • 6,773
  • 2
  • 14
  • 23
0

Always late to the party, but anyway... i noticed a correlation with time machine backups, since i had a failed backup some time earlier and didn't connect my time machine hdd since.

After starting the Time Machine Backup and properly cancelling it soon after, i was able to install the update. Try it :)

efkah
  • 1,628
  • 16
  • 30
0

I also have this problem with a whopping 240GB available.

enter image description here

It seems that purging simply does not happen. I created a really big file, but it died because of no disk space:

paul-> dd if=/dev/zero of=~/zeroes bs=100M
dd: error writing '/Users/paul/zeroes': No space left on device
151+0 records in
150+0 records out
15728640000 bytes (16 GB, 15 GiB) copied, 33.0689 s, 476 MB/s
[~/Library/Caches ]
paul-> ls -lh ~/zeroes 
-rw-r--r-- 1 paul staff 15G Nov 17 09:27 /Users/paul/zeroes

It certainly should not have stopped at 15 GB

paul-> df -h
Filesystem      Size  Used Avail Use% Mounted on
/dev/disk1s1    466G  268G  197G  58% /
/dev/disk1s4    466G  1.1G  197G   1% /private/var/vm

Oddly enough, after removing the big file, I was able to download Xcode from the App Store.

Paul Waldo
  • 1,131
  • 10
  • 26
0

Additionally, Check the previous Xcode consumed storage through OmniDiskSweeper and delete unnecessary data and simulators that will free up too much size.

enter image description here

Sunil Targe
  • 7,251
  • 5
  • 49
  • 80
0

After trying almost everything that i found can filter what exactly worked for me. Catalina 10.15.7 Xcode12.

  1. Go to your home folder in finder and make sure to enable hidden files shift + command + . //yes its a **dot** key on keyboard
  2. type dd if=/dev/zero of=/Users/<YOUR_USERNAME>/file bs=15m hit enter
  3. monitor the size growth of file named file in finder
  4. when it reaches something around 4-5GB kill the terminal with cntrl+c
  5. open disk utility and check purge size start copying and pasting that huge file named file that you just made and monitor the purge size. When it will get 3-4GB its now time to delete all that huge files and empty trash.
  6. restart
  7. open terminal go to /library/developer/
  8. delete all folder and files inside coreSimulator (this was the only resort for me)
  9. go to /library/developer/xcode/deriveddata and delete all folders and files inside
  10. empty trash

Go to App Store and update the Xcode.

Surepic
  • 13
  • 5
0

Just run below two commands in your terminal:

cd ~/Library/Developer

rm -rf Xcode
Amit Patel
  • 1,795
  • 16
  • 20
0

Proven Result ✅

How to check space in current user?

Apple icon (Top left) -> About this Mac -> Storage -> 39 GB or more.

You must have 39 GB or more space to install Xcode 13.3.1 version.

Recommended to Buy minimum Mac 256GB space to work with Xcode / Flutter.

Saumil Shah
  • 2,299
  • 1
  • 22
  • 27
-2

The same thing occurred to me when I was trying to install Xcode 12.0.1 from the app store even though I had around 40GB of free space and the Xcode 12 is taking only around 12GB. This helped me resolve the issue.

cd ~/Library/Developer
rm -rf Xcode

Hope this will help someone in need.

You can also open finder and click go to folder(shift+command+g), then type in ~/Library/Developer and clear everything there.

SNT93
  • 431
  • 1
  • 6
  • 19
-3

There is a simple way to solve this problem. You can use the built in utility of macOS to see and clear unwanted files, hidden files/folder easily.

Go to the  > About This Mac menu on left top, go to storage section and click the Manage... button. In the document section you can see all the files and folders with their size and delete unwanted files.

Go through this guide for further info.

Sharath
  • 344
  • 2
  • 10