[ home / overboard / sfw / alt / cytube] [ leftypol / b / WRK / hobby / tech / edu / ga / ent / music / 777 / posad / i / a / lgbt / R9K / dead ] [ meta ]

/tech/ - Technology

"Technology reveals the active relation of man to nature"
Name
Email
Subject
Comment
Captcha
Tor Only

Flag
File
Embed
Password (For file deletion.)

Matrix   IRC Chat   Mumble

| Catalog | Home

File: 1697818333429.jpg ( 1.52 MB , 1488x934 , Welcome to the Soyviet Uni….jpg )

 No.12595[Reply]

Suppose a special commission is tasked with drawing a random sample of a particular size from the list of names. Suppose that the commission uses existing PRNG software to do this. How could the general public independently verify that the drawn sample is TRULY random? If commission publishes random seed used and the list of names, and if PRNG software could be run on personal computers, then the sample could be independently reproduced.

My question: assuming that the commission could run PRNG procedure on an infinite number of random seeds, what is the chance of it arriving on a premeditated outcome? Obviously such outcome would be not random at all.
11 posts omitted. Click reply to view.
>>

 No.12607

>>12606
well, the list of names could be compiled in the strict alphabetical order to prevent manipulation on this end

but the seed looks like the chicken and egg problem - ideally you would want a random seed, but to get a random seed itself you ideally would want another random seed..
>>

 No.12608

I guess we need to assume that the seed is a-priory DETERMINED.

So the source of randomness should come from the list of names.
>>

 No.12609

>>12607
>but the seed looks like the chicken and egg problem - ideally you would want a random seed, but to get a random seed itself you ideally would want another random seed..
ie the genuine source of entropy could be only in some physical process

but who controls access to this process - controls derived randomness
>>

 No.12613

>>12607
>the seed looks like the chicken and egg problem
not really, in (1) and (2) the seed is predictable
with (3) you start with a random seed (the list of names). remember, any piece of data can be a seed, and in a weird way, the list of names is a physical source of entropy

still, the smaller the list of names, the easier it is to manipulate the result. and the bigger the list is, the easier it becomes to add fake names without people noticing. take this python example

import random
def seed(names):
str = ", ".join(names)
random.seed(str)
def choice(names):
seed(names)
return random.choice(names)
def fake(names, fake_name):
Post too long. Click here to view the full text.
>>

 No.12614

>>12613
a combination of (1) and (3) may work better:
instead of using the current list of names as the seed, you could use a previous list


File: 1695387333841-0.png ( 277.72 KB , 2000x1800 , 1690257943582-2.png )

 No.12467[Reply]

i hang around the end page of boards here to do some archiving. My problem is that i have this insanity-adhd (idk what it is) thing that makes it so that it's impossible to archive thing since everytime i open my own file i always worry (and believe) that i deleted something from said file or edit said file or mess it. is there any software that could help ? a software or something that could prevent me from deleting or messing or editing the file ?

(crossposting from org)
3 posts omitted. Click reply to view.
>>

 No.12489

OP you need to start using linux my friend if you aren't already.
>>

 No.12499

>>12489
This, install gentoo MX Linux, or AntiX (if you love a shitty UI).

>>12469
>sudo chattr +i filename
Alternatively, regularly sudo move and chown your files to a different user account.
You can automate this with a suid root script to avoid fucking up with typos.

Also consider reducing the consumption of whatever drug you're overdoing and meet some people IRL before schizophrenia gets you into serious trouble.
>>

 No.12610

im learning to use linux
>>

 No.12611

when can i use Arc ?
>>

 No.12612

>>12611
>when can i use Arc ?
If you are talking intel arc graphics, that should work out of the box without a fuss on any linux with a kernel 6.2 or newer
To find out your kernel version, open a terminal and enter the command:
uname -r


For example on Ubuntu that would be the two latest releases
23.10 Mantic Minotaur 6.5
23.04 Lunar Lobster 6.2


File: 1642607298033.jpg ( 59.83 KB , 640x920 , IMG_20210904_114347_891-1.jpg )

 No.10956[Reply]

Anyone else here dabble in cryptocurrency?
20 posts omitted. Click reply to view.
>>

 No.11157

>>11155
>Only nazis are interested in crypto. Stay poor comrades.
how's that "to the moon" going for you buddy lol?

the only use value of this fancy toy is to pay for vpn and vps
I can't even reliably circumvent capitalist banks with this shit because they ban your ass as soon as they see a "suspicious" activity

I have money essentially stuck in the computer, anything more than paying bills and your bank will ban your ass for suspicious transactions from randoms

the only way is to bend the knee and go to backdoored regulated exchanges
>>

 No.11159

>>11157
If technology is being suppressed by the establishment then it is a threat to the establishment.
>>

 No.11162

>>11155
>Only Nazis are interested in crypto.



What did he mean by this,.?
>>

 No.12513

File: 1695990298896.jpg ( 11.21 KB , 300x273 , glowinginthedark.jpg )

>>11157
>I have money essentially stuck in the computer, anything more than paying bills and your bank will ban your ass for suspicious transactions from randoms
Argument to the cudgel? You serious?
https://en.wikipedia.org/wiki/Argumentum_ad_baculum?&useskin=vector
Enjoy your nanolipids

Agorahooawayyfoe.
https://en.wikipedia.org/wiki/Agorism?&useskin=vector
>>

 No.12589

File: 1697742069672.mp4 ( 4.35 MB , 640x360 , ko -.mp4 )

>>11104
fuck u cunt


File: 1696368309285.jpg ( 1.56 MB , 3089x2234 , Constructivist.jpg )

 No.12527[Reply]

I'm going to work on building an archive of all your shitposts.
3 posts and 3 image replies omitted. Click reply to view.
>>

 No.12531

Attachments can have another special column: a bigint representing a 64-bit unsigned integer, that we compute using a perceptual image hash algorithm (there's libraries to do this). We can add a special index on this column, using the bktree postgresql extension, that will let us compare the distance between these numbers efficiently, bit by bit (called the hamming distance).

CREATE INDEX attachments_phash_bktree_index ON attachments USING spgist (phash bktree_ops);


This column will let us do reverse-image search on similar images.


Attached is the full sql file, where I have added some users and granted them permissions
>>

 No.12532

File: 1696449844187-0.png ( 2.33 KB , 383x383 , Git-Icon-1788C.png )

Next I'm going to get postgREST serving locally on port 3000. Postgrest will automatically create a REST API for our database. (https://github.com/PostgREST/postgrest)

Then I can build a script that will read in the board's json api files and populate the database. I prefer to just hit this REST api than write database queries out as strings in some way, I've tried different ways of doing it, using and ORM or a domain specific language and using postgrest was the most pain-free.

I will also throw this repo up online here: http://git.leftychan.net/0/chan-delorean
(or here http://git.wz6bnwwtwckltvkvji6vvgmjrfspr3lstz66rusvtczhsgvwdcixgbyd.onion/0/chan-delorean for onionfans)

I've also written a postgrest service for nixos if you want it: https://github.com/towards-a-new-leftypol/devops/blob/spamnoticer_deploy/nix-support-production/postgrest.nix
>>

 No.12585

File: 1697644302692.jpg ( 43.48 KB , 600x347 , fence_posts.jpg )

I wrote some more glue code to shove all of the posts from the board into the database, by simply reading the json api files, transforming the data structure slightly and passing json to PostgREST.

To not take too long I shove all of the posts on one board into the database at once: the sql code takes an array of all the posts, does a SELECT to get the ones that exist already, inserts the ones that don't yet exist, and returns all of the internal post ids. This is quite boring, you can go read the source if you care, but it takes about 2 minutes to save leftychan.

I have monthly snapshots dating back to around the bunkerchan split, so I ran those through the script as well. Perhaps not every post ever posted is there, but I have around half a million posts. Now we can get to the fun part of attempting to query the database for what the board looked like at an arbitrary point in time.
>>

 No.12586

File: 1697645062824.jpg ( 44.36 KB , 736x736 , thumbsupcat.jpg )

>>12585
that is impressive work
>>

 No.12587

File: 1697650877009.jpeg ( 59.6 KB , 640x480 , 640px-Diamond_Core.jpeg )

>>12586
👍 Thanks anon! There's more:

I want to see the board as it was a year ago. I need to get all of the threads that were on the board, at t = (now - 1 year).

Threads are ordered by bump time. We need to get the first, say, 400 threads if you order all the threads by bump time.

In lainchan each thread has a bump column (threads and posts share the same table called posts_a or whatever), which makes it simple to get the current top threads, but it doesn't help us calculate what the bump times were one year ago.

So first I recognize that a thread's bump time is just the time the most recent post was posted to that thread.

Maybe I can use SQL's aggregate function to get the MAX post creation time, if we group the posts by their thread_id. Then, since I have indices on the creation_time and thread_id columns, (and another index on both), if I limit the number of threads that I want then hopefully this won't be slow:

SELECT
threads.thread_id,
Post too long. Click here to view the full text.


File: 1691466102391.png ( 80.13 KB , 1050x700 , Untitled.png )

 No.12381[Reply]

someone on gitee made a multi-platform notepad++ called notepad–
https://gitee.com/cxasm/notepad--
which is nice because notepad++ is windows only and the author is a rabid anti-china shill, and his mental illness had begun to creep into the actual code
anyway, has anyone tried it? does it still compile with qt6? I hate qt and gtk so much it is unreal
12 posts and 1 image reply omitted. Click reply to view.
>>

 No.12557

>>12552
it doesn't affect any foreign policy because it's just a guy that made a commit with something like
<if (IP from X countries) then rm -rf $HOME
to a library that is used by another library […] that is used by a relatively popular software

at this point I don't know if you are trolling or are just dense and stupid, but you don't need to make a full background check: they are vocal and deranged enough that you don't even need to check. you are so retarded that it hurts and this is my last message because you are too dumb to use a computer and yet you evidently spend too much time online
>>

 No.12560

>>12557
>t this point I don't know if you are trolling
I'm not trolling you. I get your point, a bunch of radlibs blew a fuse over geopolitical events and began screwing with software packages. And you want to yeet them because that's a breach of trust. I also understand that for this particular case it's relatively easy to zero in on who's doing this, and nip it in the butt.

However I'm also thinking about the general case. We'd be introducing the principle of discriminating based on political affiliation. I would like to avoid this kind of stuff. I would much prefer to have a politically neutral purely technical solution. I don't particularly care about what political or philosophical views some programmer has, as long as the program they make is good quality and does not include malicious features. If we could find a way to make some kind of automated code-audit-system that makes it sufficiently difficult to spike a software package in this manor, we could screen out bad actors, without having to deal with politics and all the bad blood that brings.
>>

 No.12561

>>12560
Libs banned Strelok from the app store too so now it's hard to find an apk without using yandex and a translator. Fag dev couldn't monetize it so he shut it down. All the more reason to go open source. We desperately need a FOSS app to estimate holds!
>>

 No.12565

>>12561
>Libs banned Strelok from the app store
So apparently that was a "ballistic calculator". I've only heard that in the context of Naval artillery. Your hobbies must be wild.
>We desperately need a FOSS app to estimate holds!
i tried searching for this online but, i got nothing, what's a "hold" ?
>>

 No.12570

>>12565
some cool afghanistan boomers at my USPSA and they taught me some long range stuff too with their Rem and vortex. You can use the app with your caliber barrel length etc to calculate what hold to use on the reticle. You can also turn the top turret to adjust for drop. It's nicer than other apps because it has a lot of reticles pre-loaded and can select between mil and moa dots. Boomers I talked to like mil because you can estimate range based roughly on shoulder width and height. They had it in a notebook with a table for it but it was something simple. Go talk to boomers anon they have a lot to teach and no one to listen.


File: 1681915604290.png ( 12.54 KB , 1170x663 , rep.png )

 No.12089[Reply]

A topic that was almost completely neglected in Marxist circles , was the privatization of online reputation systems. Most of the big tech corpo platforms just deploy some kind of algorithms or payed reputation badges. Technically this isn't a new phenomena the first privatized reputation system probably was something like banking credit-scores.

I think that maybe the toxic elements of social media like cancel-ism might have been the result of those privatized reputation systems.

I'm wondering why there don't seem to be any prominent non-commercial community p2p driven scoring systems ?
There seem to be very few people working on stuff like this, i only know of Ian Clarke the Creator of Freenet that is talking about this stuff.
>>

 No.12090

>>12089
>I'm wondering why there don't seem to be any prominent non-commercial community p2p driven scoring systems ?
because it's gay
go back to reddit if u want upvoots
>>

 No.12091

>>12090
>reddit upvoots
That's a rating system, which is something else entirely.
>>

 No.12506

File: 1695980944753.jpg ( 154.88 KB , 1080x1091 , therealityofasocialcredits….jpg )

>>12091
>That's a rating system, which is something else entirely.
Reddit upvotes go into your Karma score which is exactly the technocrats' social credit score mechanism of fascism.

Watch the Black Mirror leddit episode (s03e01) and you will see what is planned for us, and that doesn't even talk about government shills like e.g.
https://www.theguardian.com/uk-news/2015/jan/31/british-army-facebook-warriors-77th-brigade

>privatization of online reputation systems

How young are you?
Reddit is run by alphabet soup (and so are both leftypols)
Alphabet soup is the result of government because centralization of power makes it really easy for psychopaths to take control and push their agenda.

Do you think it was capitalism that removed stories about the NSA from reddit?
Do you think reddit made money by allowing government shills to act like this?
http://www.reddit.com/r/worldnews/comments/1ywspe/new_snowden_doc_reveals_how_gchqnsa_use_the/cfohbrc
Post too long. Click here to view the full text.
>>

 No.12518

>>12506
Why do you think reddit karma is reputation? It just tells you how many internet-points somebody got, it doesn't tell you what they got it for.

If i tell you Fred is good at math, and then 10 other people confirm that they too think highly about Fred's maths skills, then Freds gets a reputation for being good at maths.
>>

 No.12534

>>12506
>Reddit upvotes go into your Karma score which is exactly the technocrats' social credit score mechanism of fascism.
The problem with reddit is that it is fully centralized so the reddit servers have ultimate control over your karma. Even if a million human beings saw and liked your post the server can give you zero karma because fuck you.

Distributed reputation systems like nostr are not necessarily a bad thing though since public key cryptography makes it impossible to forge and you can use a blacklist/whitelist to disregard the votes of bots and shills and people who don't matter.


File: 1691460394629.jpg ( 33.55 KB , 678x504 , bookbot.jpg )

 No.12380[Reply]

Are people using generative AI backwards ?

For example, lots of people AI-generate text and try to publish it as paper-books on Amazon, which amusingly clogs up Amazon's pipes. In essence they use new AI computer technology to make more content, faster, for an old paper interface technology.

What people could be doing instead is make the content for a book them selves and then train a limited AI on that. Resulting in "ai-books" that you can talk to, ask it questions and what not. Which would make AI the interface for the content instead of the author.

A human book author combines 2 types of inputs.
1. all the books the author read.
2 all the experiences outside the textual book-world, aka the "real world".

AI only gets the first type of input, because AI has no experiences in the "real world".

If AI replaces all human authors, there won't be any new experiential inputs. Shit will stall for a long time until AI get advanced and corporal enough to have it's own experiences. It would make vast quantities of new works from a stagnant source.

The AI-interface-book that you can ask direct questions, is obviously most useful for text-books that you query for knowledge. But if would also offer new ways of story telling for fiction, like letting you talk directly to various characters.
Post too long. Click here to view the full text.
>>

 No.12503

>like letting you talk directly to various characters.
Great, let humans unlearn the ability to have fictional conversations with fictional characters in their own mind (aka daydreaming) or roleplaying characters in chat or LARP and replace it with a bot that doesn't even understand what it is talking about and whose every word is controlled by some crazy transhumanist silicon valley dipshit nazi eugenicist technocrats.
https://www.corbettreport.com/gates/
Also this (don't let the misleading title trigger you):
https://www.corbettreport.com/what-is-the-trans-agenda-questions-for-corbett-video/


 No.12452[Reply]

https://farside.link/invidious/watch?v=NfhFBSraDSM

So apparently Apple gave in and let right to repair legislation go through, after fighting against it tooth and nail for at least a decade, after engineering lots of anti-repair "features" like proprietary screws, and digital spare-part incompatibility mechanisms for controllers, buttons and sensors.

Now many people think something is up, and that they might have hatched a new scheme.
5 posts and 1 image reply omitted. Click reply to view.
>>

 No.12458

File: 1694711031857.jpg ( 50.27 KB , 1120x839 , 1691908608293032.jpg )

>>12456
The oculus rift is not AR nor is it capable of it. What Apple's headset will do is superimpose images on top of your real vision and perfectly track it in 3d space.
A real life example is how they put graphics on football fields in live action video of games. creating the illusion that the graphic is really painted on the ground.
But this headset will go far beyond that. Imagine being able to complete complex tasks far beyond your skill set because you can have the headset walk you through it as though a master technician were present.
Imagine looking at a car engine and then having wrench appear on the bolt you need to loosen, turning in real time in front of you as if it were being demonstrated to you in real life, and then every step in the process illustrated to you in the same way.
And like I said, humans remember things spatially the best.
Imagine being able to store your computer files by placing virtual folders in your real life bookshelf.
I know it sounds silly but it's going to expand people's ability to recall information exponentially.
>>

 No.12459

>>12458
Apple's head-set might technically be capable to do all those things, but Apple will never let that thing become a sufficiently open platform for any of that cool stuff to happen.

>Imagine being able to store your computer files by placing virtual folders in your real life bookshelf.

Especially this bit, you'll have to jailbreak that thing and install some kind of gnu linux OS on it in order to experiment with cool user interface concepts. Apple will just implement a few hand-motion tracking gestures derivative of touchscreen gestures for a slightly modified ios-UI and call that revolootionary.
>>

 No.12460

>>12459
>Apple's head-set might technically be capable to do all those things, but Apple will never let that thing become a sufficiently open platform for any of that cool stuff to happen.
They already demonstrated this in their ads. None of this requires an open platform.
>Apple's head-set might technically be capable to do all those things, but Apple will never let that thing become a sufficiently open platform for any of that cool stuff to happen.
It's in their ads that this is what it will be able to do. You'll leave something virtually on your coffee table and it will remain there when you boot up the headset again.
They showed some watching television and the television remains fixed in the middle of the living room as a the person gets up.
>>

 No.12461

>>12459
>Especially this bit, you'll have to jailbreak that thing and install some kind of gnu linux OS on it in order to experiment with cool user interface concepts.
Why? The whole point of this headset and AR in general is to present information completely in 3d. You'll be able to walk around an object. Several doctors will be able to examine a 3d scan of your body at once.
We loose an incredible amount of information when you present it on screens, I'm telling you this will be a watershed. Tons of things will become obvious that were never before. Kind of line how scientists argued whether horses galloped with all four legs or two at a time. It seems so obvious now but before movie camera we could never prove it.
>>

 No.12463

Rossmann had a doomer-pill moment, he worries repair could be going away and "undo his legacy"
https://farside.link/invidious/watch?v=oMPxr7I90JM

His argument for this is that he thinks that machine-capital for producing tech-gadgets will get optimized to the point of being fully depreciated after a production-run is complete. He thinks that this would negate the economic viability for making spare parts of letting the production machine run a little longer because parts can be sold for profit as well. However most production machine-capital isn't product specific anymore, save for a few specialist components like plastic-molds. Most of the stuff in a production line gets re-used for other stuff once a product-batch has completed. There are costs involved in puzzling together a modular production line, and because of that the economic viability to getting extra profits off a line from spare-parts remains.

Repairing tech will not go away, because it costs less labor to repair than to build new. You have to consider more than just the last manufacturing step. The entire supply-line that precedes that last step does not have to spring into action if you repair, but it does if you build new instead. The age of just throwing shit out and buying new, even for tiny defects, was only viable because for a limited time there was near endless cheap labor in Asia.

Repairing also reduces waste-streams and resource consumption. The cost of those are going to go up, new resource extraction will get more expensive, considering that you either have to dig deeper or go into space, recycling also isn't free and it's probably going to get more expensive to throw shit out because dealing with trash gets harder too.

If you look at the technology design from the perspective of a physicist, a machine is a collection of matter with low internal entropy. If you use the machine the internal entropy increases. If you don't want the machine to fail, you have to somehow remove "chaos-energy". That can be done in the form of cooling. But one particularly effective way is to replace wear-parts, where the "chaos-energy" is concentrated into.

There are structural developments that favor repair too. The biggest hindrance for repair has always been managing parts logistics, but computer-data-bases and object-storage-automation have removed that hinPost too long. Click here to view the full text.


File: 1693674101988-0.jpg ( 27.75 KB , 585x612 , balloonship.jpg )

File: 1693674101988-1.jpg ( 22.89 KB , 613x530 , airsub.jpg )

File: 1693674101988-2.jpg ( 35.61 KB , 1362x622 , blimp-plane.jpg )

 No.12437[Reply]

Veritasium made a video about "airships"
https://farside.link/invidious/watch?v=ZjBgEkbnX2I

And it appears that he fell for the old airship-con. The con works by pretending that these things are analogues to ships floating on the ocean. But they aren't like ships at all. Ships sit between the boundary layer of two media, usually air and water. They're stuck in the vertical axis and can only move in 2 dimensions. That allows for a relatively simple control scheme and much optimization.

Air"ships" on the other hand should really be called Air-subs, because they behave more like submarines that move in at least 3 dimensions and usually only touch a single medium. They need a much more elaborate control scheme that leaves a lot less room for optimization. Why relatively intelligent people tend to get fooled by this is somewhat a mystery, even if you don't understand any of the physics. So called Air"ships" don't even look like ships, they look more like Submarines, and you don't need to fill ships with a special gas or liquid to make them float.

Submarines only have a few niche applications, like military, deep ocean research and suicide-cans for rich adventure tourists. Similarly Air-subs will also only have niche applications.

Veritasium says that there is potential for mass-cargo-transportation. But there isn't, all viable mass-cargo transportation methods have one thing in common, The ratio of cargo-to-vehicle skews very far towards cargo. Airsubs will never be able to do that. You'll always need a lot of Airsub for relatively little cargo. At least in earths relatively thin atmosphere. Maybe on Venus with it's dense atmosphere this would be viable, and Airsubs will have their day once we begin colonizing the upper atmosphere of Venus with sky-cities.

The reason why the idea of Airsubs is still so magical is because they promise "Free lift". Filling up lots of gasbags with hydrogen or helium probably isn't the way to get it. But there might be another way, that is derived from hot-air blimps. Hot-air-balloons and blimps use large fuel burners to heat up air inside a bag. Hot Air is lighter than cold air hence you get lift. Every airplane has a source of free heat, the waste heat from the propulsion engine. It might be possible to blend Air-planes and blimps in order to recover waste-heat and use it for free lift.Post too long. Click here to view the full text.


File: 1622406356878.png ( 534.36 KB , 744x714 , 1622393067264.png )

 No.8869[Reply]

$10 GPUs for everyone!
5 posts and 1 image reply omitted. Click reply to view.
>>

 No.8910

File: 1622546763018.gif ( 457.73 KB , 200x150 , 1611967314908.gif )

>>

 No.8925

Muahaha now storeshitters and japs have to suffer as I did back in the day
y do I habe to suffer w/ them doe?
>>

 No.12433

>>8869
good job united states for forcing diversity in the chip market. if china figures out how to produce, for example, the equivalent to a gtx 1050ti for cheaper and cheaper and releases it on the global market, it will fuck up nvidia dominance and force them to lower prices thanks to laws of supply and demand. I really look forward to it, honestly.
>>

 No.12434

>>12433
Nvidia, Ati/Amd started out making cards for gaming and then later transitioned into server/supercomputer compute-cards.

China's GPU makers had the reverse development of western GPU makers. They started out with compute-cards and they are now trying to also do gaming cards.

While you are correct that they will relatively quickly become price competitive with western offerings on a bench-mark performance basis because the compute-market is hyper competitive, game compatibility and driver quality will take a very long time. It requires cultivating a detailed understanding of all the game engines.

Go look at old forum posts of people trouble shooting game compatibility and driver-bugs to get an idea what it's gonna be like. I think that chinese Gpus will become an option for people willing to put up with that stuff.
>>

 No.12435

>>12434
it will still affect the economy. China is a huge gaming market, and Alibaba has their own hosting that is bigger than amazon. im not saying it wont be buggy, but its going to change things in the next 10 years


Delete Post [ ]
[ home / overboard / sfw / alt / cytube] [ leftypol / b / WRK / hobby / tech / edu / ga / ent / music / 777 / posad / i / a / lgbt / R9K / dead ] [ meta ]
[ 1 / 2 / 3 / 4 / 5 / 6 / 7 / 8 / 9 / 10 / 11 / 12 / 13 / 14 / 15 / 16 / 17 / 18 / 19 / 20 / 21 / 22 / 23 / 24 / 25 / 26 / 27 / 28 / 29 / 30 / 31 / 32 / 33 / 34 / 35 / 36 ]
| Catalog | Home