Show Idle (>14 d.) Chans


← 2018-01-31 | 2018-02-02 →
BingoBoingo: !~ticker --market all
jhvh1: BingoBoingo: Bitstamp BTCUSD last: 9520.01, vol: 13168.35666700 | Bitfinex BTCUSD last: 9668.5, vol: 43087.00794047 | Kraken BTCUSD last: 9488.9, vol: 6767.82091731 | Volume-weighted last average: 9618.18724777
BingoBoingo: Attention Lords And Ladies of The Republic: You may add 161.0.121.253 to your hosts file as Qntra.net
BingoBoingo: !~later tell mircea_popescu Qntra.net online at 161.0.121.253 pls to get the domain repointed, ISP statement incoming.
jhvh1: BingoBoingo: The operation succeeded.
BingoBoingo: Turns out the problem was I overconfigured the switch yesterday. Less is more.
diana_coman: oh hey, well done BingoBoingo !
diana_coman: I can confirm I see it from here
diana_coman: although it is...slow to load
asciilifeform: congrats BingoBoingo !
asciilifeform: diana_coman: slow to load but i suspect that it has qntra hardcoded links and yer browser sits and tries to resolve and fails
diana_coman: asciilifeform, the home page directly with the ip was also slow
asciilifeform: see if still slow after adding to hosts
asciilifeform: diana_coman: i meant specifically when loading via ip
diana_coman: asciilifeform, you are right; works fine after adding to hosts
asciilifeform: wellknown effect
asciilifeform: BingoBoingo: search your html for absolute links to qntra, there's no good reason for them, use relativelinks
asciilifeform: i mean for css/img
asciilifeform: perfectly proper to have clickable links to absolute
BingoBoingo: Will do
BingoBoingo: Alright, give it a try!
asciilifeform: oh hey.
BingoBoingo: And now it is statement time
mod6: mornin'
BingoBoingo: mornin mod6
mod6: <+BingoBoingo> Attention Lords And Ladies of The Republic: You may add 161.0.121.253 to your hosts file as Qntra.net << congrats BingoBoingo!
shinohai: ah latam node ha
shinohai: congrats BingoBoingo
BingoBoingo: shinohai: I still gotta get a bitcoind on the box
shinohai: understandable
shinohai: im still setting up slimv today
asciilifeform: BingoBoingo: be sure to use trb with sync sanity, cuts sync time from 6+months to coupla weeks at worst
asciilifeform: ( at some point we will have to solve the puzzle of just how many trb nodes it makes sense to have inside 1 cage, i also suspect )
BingoBoingo: asciilifeform: I put an up to recent block chain copy on the box already, but yes I plan to build the ben_vulpes super aggression for it.
mod6: ssd too i hope
BingoBoingo: Indeed SSD
mod6: *thumbs up*
ben_vulpes: wb qntra!
ben_vulpes: ah how i've missed thee
mod6: ya srsly. nice to have it back.
lobbes: Ah, congrats BingoBoingo.
BingoBoingo: Comments on how to handle the fx movements in the future welcome, encouraged, and desired
lobbes: http://btcbase.org/log/2018-01-31#1778994 << heh, they must be reading logz. MPEx now appears under "2014 Fundraising Campaign"
a111: Logged on 2018-01-31 19:58 asciilifeform: http://www.openbsdfoundation.org/contributors.html << aaaaand openbsd ~immediately~ listed 'pineapple fund'. and guess who not listed at all, to this day.
mod6: haha
lobbes: BingoBoingo: small typo under "Assets, Cash"; You have 0 + 0.20123128 = 0.20113128
trinque: pretty sure it's been there a long time https://archive.is/WwN89
BingoBoingo: lobbes: ty, pls to keep the corrections coming
BingoBoingo: me voy para un leccion de espaƱol
asciilifeform: trinque: i missed it: looked for mp, rather than mpex
deedbot: http://www.dianacoman.com/2018/02/01/eucrypt-chapter-8-bit-level-keccak-sponge/ << Ossasepia - EuCrypt Chapter 8: Bit-Level Keccak Sponge
asciilifeform: diana_coman: 'gnat-specific methods' link broken
diana_coman: asciilifeform, fixed, thank you!
diana_coman: phf, chapter 8 of eucrypt is a fully-working Keccak, albeit at bit level
asciilifeform: diana_coman: neato
asciilifeform: seems to use whole word (i.e. 64b , on amd64) to store each bit tho
diana_coman: tbh I would recommend it as a better "starter" approach anyway
asciilifeform: i assume this was deliberate, sorta like my egyptologies
diana_coman: for understanding reason
diana_coman: asciilifeform, yes, at this stage the point was to keep it very clear and simple
diana_coman: no speed-concern yet
diana_coman: the current plan is then to go back to the "word-level" and make that one deal with different endianness
asciilifeform: in re shifts/rotates ( as seen in http://btcbase.org/patches/ffa_ch1_genesis/tree/ffa/libffa/w_shifts.ads ) one nitpick : Shift_Left, etc. are not per se gnat-specific; they are in the standard. but for some perverse reason their ~invocation~ is implementation-specific, and requires this gnaticism.
diana_coman: in principle if one aims for speed, one should look at parallelism I guess
asciilifeform: (supposing this difference makes a difference to anybody)
diana_coman: huh, for modular types ?
asciilifeform: fwiw i do not know of a cpu , from any earthling cpu maker, that did not have shifts/rotates by 1
asciilifeform: fwiw one can also define these like a barbarian, as x * 2 and x / 2 ; and gcc (last i saw) will Do The Right Thing and transform to a shift
diana_coman: funnily enough the rotates are anyway mainly "shortcuts" for 2 (iirc) transformation operations but otherwise not directly in keccak's defs as such
asciilifeform: but this is not clean.
asciilifeform: diana_coman: the observation re 'take as much speed as you actually need, but not more, if costs ugliness' is correct and is in fact the basis for ffa
diana_coman admits that is one of the things she really, really likes about ffa
asciilifeform: the unfortunate thing re 'use word to store 1 bit' is that it will give obscenely disproportionate slowdown, due to spilling out of cacheable size
asciilifeform: but if the application tolerates this -- no reason wainot.
asciilifeform: ( you are likely to see 200-300x slowdown, depending on particular chip, be ready for this )
diana_coman: we will see
asciilifeform: diana_coman: in some applications, speed doesn't really matter almost at all. and in those, it is even now possible to, e.g., take ch5 ffa for rsatron.
asciilifeform: ( it is imho unlikely that anyone will demonstrate an rsatron with fewer moving parts than ffa-ch5 )
phf: diana_coman: ty, i'll try wiring it in, and keep you posted. i assume ada<>c interop is pretty straightforward, though i won't have a chance to try until later next week. suddenly busy
diana_coman: phf, ada<->C interop was quite straightforward last time I tried it, didn't take much at all; you'll need to add a few exports iirc
phf: keccak patche on btcbase, also asciilifeform ch9 likewise
diana_coman: thanks!
asciilifeform: ty phf !
BingoBoingo: !!up mp_en_viaje
deedbot: mp_en_viaje voiced for 30 minutes.
BingoBoingo: Boa Noite
BingoBoingo: Still in Colombia?
mp_en_viaje: http://btcbase.org/log/2018-01-31#1779036 << you're not worthy! milk is a scammer!
a111: Logged on 2018-01-31 23:06 ben_vulpes: or hm i guess the nick i picked was bv_is_a_scammer
mp_en_viaje: http://btcbase.org/log/2018-02-01#1779049 <<< word. nginx was impressive a year or two after it came out ; then it regressed to the mean at the usual speed (slowly but discernibly at first, "women in tech" level past few years)
a111: Logged on 2018-02-01 00:19 trinque: nginx went the venture capital route at some point, gotta justify the rounds
asciilifeform: ohai mp_en_viaje
mp_en_viaje: how goes
asciilifeform: loox like BingoBoingo has liftoff !
mp_en_viaje: o hey!
asciilifeform: BingoBoingo: if it's supposed to already resolve on heathendns , it dun yet
asciilifeform: ( on box with hand-sewn hosts.txt worxgreat )
a111: Logged on 2018-02-01 00:30 BingoBoingo: Hello, machines screwed in. Need to return in the morning to figure out what stupid mistake I made configuring the switch/router. Long night of reading sample configs ahead.
asciilifeform: BingoBoingo: aside from where you misspelled me name, loox ok
mp_en_viaje: http://btcbase.org/log/2018-02-01#1779056 <<< this, for the record, is a question ~TO BE ANSWERED BY PICTURES BEFORE IT IS ASKED~.
a111: Logged on 2018-02-01 00:33 asciilifeform: BingoBoingo: what exactly do the digs look like ? cage with own door ? or just rack ? or how
asciilifeform: mp_en_viaje: i assumed he did not post a photo for opsec reason
asciilifeform: ( makes life too easy for nosy parkers )
mp_en_viaje: why so sluggish with this whole "i am an actual person, i behave like an actual person, to the humiliating, painfully evident difference from subhuman idcard carriers" ?
mp_en_viaje: that's just silly.
mp_en_viaje: the benefit is the long tail and to be accrued ; the supposed disadvantage is not and to be defended in other ways.
mp_en_viaje: dja understand the fundamental principle at work ?
asciilifeform: where's the photo of castle popescustein then
asciilifeform: ( if there's nothing to be lost by posting it... i bet it's quite a sight, why then not posted )
mp_en_viaje: woman is to go around naked, not dressed. this because the positive she gets from the advertising of her sexual characteristics sums an epsilon over as large a crowd is exposed (this is a pantsuit rendition ; the correct statement is that her chances to score mp depend on exposure)
mp_en_viaje: woman's concern that she could be raped is to be addressed through impaling would'be rapists. NOT through "not publishing pubenda".
mp_en_viaje: that's just how the cost/benefit works out.
asciilifeform: eh that's only inside
asciilifeform: where's the 1 showing the turrets.
mp_en_viaje: this is alfism nonsense, whatever is said "that is only the X".
mp_en_viaje: nevertheless, as to the other score : tmsr isp is not some exercise in little boy fantasy wank
mp_en_viaje: it is intended as very public humiliation of usg impotence.
asciilifeform: the analogous BingoBoingo pic would be if he took one while standing inside the rack, like in phone booth
mp_en_viaje: consequently it neednt have nor benefits from an ykind of mystery air.
asciilifeform: no, i'm sold, i get the idea , 'nyahaha, come and get it'
asciilifeform: but it does raise the question of why not also 'here is castle mp, come and get'
mp_en_viaje: because i don't want a throng of poor but stupid women begging in my driveway.
asciilifeform: fair'nuff.
mp_en_viaje: "we would like to do the thing you do in your way as to the marzipan and in our way as to the fucking plox"
asciilifeform can picture this
mp_en_viaje: incredible supply of these, by the way. nfi what the fuck is going on in plebe head, but apparently THIS is very much what they mean by "participation" in public affairs.
mp_en_viaje: notrly news, i guess. anyway.
BingoBoingo: <asciilifeform> the analogous BingoBoingo pic would be if he took one while standing inside the rack, like in phone booth << I will pick up a tower box here locally, set it in the cage and take this pic. The thing is deep.
asciilifeform: naah BingoBoingo , take the kind mp_en_viaje described
mp_en_viaje: and finally -- mp's castle is owned by mp outright. bb has investors ; makes claims to those investors, benefits IMMENSELY from implementing http://btcbase.org/log/2018-02-02#1779188
a111: Logged on 2018-02-02 00:30 mp_en_viaje: http://btcbase.org/log/2018-02-01#1779056 <<< this, for the record, is a question ~TO BE ANSWERED BY PICTURES BEFORE IT IS ASKED~.
mp_en_viaje: rather than upon prodding.
BingoBoingo: This is a point.
mp_en_viaje: BingoBoingo, seriouasly, form the mental habit. pics and blog.
mp_en_viaje: you get an interesting blog and a great reputation.
asciilifeform: incl., ideally, measurements
asciilifeform: 'here's what you get'
mp_en_viaje: anything else is just pissing in your own cereal.
asciilifeform: another item, BingoBoingo : to specify what bw each box gets. ( is it 1/42 of the pipe ? 1/nth where n is number of occupants ? the latter is somewhat unpleasantly comcastlike, imho . which is it )
mp_en_viaje: asciilifeform, evidently whosoever wants to buy fixed bw can ; whosoever does not want to so buy gets wat they get.
asciilifeform: right. but gotta specify. currently it's a mystery
mp_en_viaje: a good time to say "i want five plox" was you know, when we were specifying it ; but still perfectly available.
mp_en_viaje: asciilifeform, what's a mystery ?
asciilifeform: the concrete cost of e.g. 'i want to emplace 1U and get 500kB/s in/out'
mp_en_viaje: don;'t be silly, the numbers are in the log.
mp_en_viaje: we're paying iirc 900 for the rack, you want a unit it's 900/40*2
mp_en_viaje: we're paying iirc 1400 for bw, 2G or wtf it was ; you want 100m guaranteed, 1400/20*2
mp_en_viaje: so you divide what you want out of the total, add the margin and have a fine idea.
asciilifeform: iirc BingoBoingo's numbers in the above were pre-margin tho
asciilifeform: BingoBoingo am i mistaken ?
mp_en_viaje: you're just not linking an older discussion re margins.
asciilifeform: canhaz link ?
mp_en_viaje: recall, we were discussing the two ways to do this, either tack on or fixed percent.
asciilifeform: right. but somehow failing to unearth, currently
a111: Logged on 2017-10-22 05:23 mircea_popescu: after the first year your machines are amortized and your downline built, so you're looking at some decent net margin. before the first year you're burdened by the capital costs and stuck with low occupancy, so you bleed cash.
asciilifeform: aa there it is.
mp_en_viaje: scattered bits around that week too iirc.
asciilifeform: hey BingoBoingo are you ready to birth formal quotes ?
mp_en_viaje: http://btcbase.org/log/2018-02-01#1779082 << a cool. can't do this from here, so will be weekendish. but the important details are missing, such as what software did you eventually pick to manage your cloud and so on.
a111: Logged on 2018-02-01 14:20 BingoBoingo: !~later tell mircea_popescu Qntra.net online at 161.0.121.253 pls to get the domain repointed, ISP statement incoming.
mp_en_viaje: i hope we don
mp_en_viaje: aren;t looking at a case where qntra is alone on a box ? qntra can't afford such luxuries by itself.
asciilifeform: BingoBoingo: iirc the ip is temporary ? ( the proper block of ips not yet obtained ? )
mod6: <+mp_en_viaje> BingoBoingo, seriouasly, form the mental habit. pics and blog. << Hey all good as long as you don't take pics of the foundations boxen.
mp_en_viaje: really ?
asciilifeform: wainot , mod6 ?
asciilifeform: don't be ashamed of the old microvax, lol
asciilifeform: or whatever it is.
mod6: I'm a private kinda guy.
BingoBoingo: We have a /26 to fill in very.legit.manner and short order before LACNIC will assign a /24 because of scarcity. LACNIC's response to my first application: http://p.bvulpes.com/pastes/xW6LS/?raw=true
BingoBoingo: Needless to say I will be spinning up plenty of virtual boxen and testing cloud platforms
asciilifeform: i dunget, why 'you are not operating', 'do not have an active connection with a provider'
asciilifeform: you have both nao
asciilifeform: or is this from before BingoBoingo got the keys to the cage
BingoBoingo: asciilifeform: From before I got the keys
asciilifeform: BingoBoingo: write'em again
mp_en_viaje: mod6, aite. bbisp lives to please its cusomter.
mp_en_viaje: but let's not let the praise fall by the wayside just because every successful step opens up so more further steps : nice bb! qntra back on huh!
mp_en_viaje: YOU CAN DO ANYTHING!
mp_en_viaje: asciilifeform, nothing wrong with giving it a little time ; his plan is sound, spin up some shit first.
BingoBoingo: asciilifeform: They are getting wrote back after I fill ALL the ips. Hopefully this weekend
mp_en_viaje is amused reborn qntra's first comment is from liek, bogota, columbia. history in the makings!
BingoBoingo: Has to look very.legit.interwebz
a111: Logged on 2018-02-01 15:57 asciilifeform: BingoBoingo: be sure to use trb with sync sanity, cuts sync time from 6+months to coupla weeks at worst
BingoBoingo: I may end up buying a consumer tower box to throw in the cage for a photo session and burn more ips.
mp_en_viaje: why nit.
asciilifeform: BingoBoingo: pogo!11
BingoBoingo: asciilifeform: Prolly old beater tower. Fits in with the neighboring cages, and at the moment we have the space.
asciilifeform: ( this is not even entirely in jest: a considerable quantity of pogo could fit in a 2u vertical )
BingoBoingo: I though those were all jetisoned in argentina?
mp_en_viaje: http://btcbase.org/log/2018-02-01#1779163 << the theory is that very smooth, object files can be linked together directly. the testing of this theory is the most valuable part of trying it early.
a111: Logged on 2018-02-01 21:24 phf: diana_coman: ty, i'll try wiring it in, and keep you posted. i assume ada<>c interop is pretty straightforward, though i won't have a chance to try until later next week. suddenly busy
asciilifeform: last i knew , mp_en_viaje had the complete crate , i dun recall any mention of throwing out
mp_en_viaje: i still have them
mp_en_viaje: we also have a pile of them with danielpbarron iirc.
asciilifeform: i even have a couplea left here
BingoBoingo will search local ads for pogos and pogo likes.
asciilifeform: incl. at least 1 with the serial port
mp_en_viaje: what is the problem that is being approached anyway ? i thought the tower thing was mostly from a "see rack is sized so" / art instllation perspective
asciilifeform: incidentally i also have a working example of the http://www.loper-os.org/?p=1644 box, which so happens is 1u high and tops my current list of 'pogolike but still in production'
BingoBoingo voy a dormir. All ideas for filling ipv4 space are appreciated. And no, Lacnic has already declared making a bunch of http sites each sitting on its own ip insufficient to declare space exhausted when http vhost can be done.
asciilifeform: mp_en_viaje: there was a thread, while back, re physically-compact, low-wattage machines as a sane alternative to cloudism. can't seem to find it in log
mp_en_viaje: BingoBoingo, laters.
asciilifeform: goodnight BingoBoingo
BingoBoingo: <asciilifeform> mp_en_viaje: there was a thread, while back, re physically-compact, low-wattage machines as a sane alternative to cloudism. can't seem to find it in log << The 8 PCengines to 1U recipe would still be appreciated. Especially if someone can bake them and move them... ( danielpbarron?)
mod6: BingoBoingo: gn! good job getting that stuff up and going.
mp_en_viaje: anyway ; i am still waiting for my http://btcbase.org/log/2018-01-28#1777538 aswer
a111: Logged on 2018-01-28 00:34 mircea_popescu: if i want 5 boxes, what do i do now ?
mod6: I may yet reconsider on the pictures thing.
mp_en_viaje: this is the priority nao, get the rack filled proper with actualy used and useful boxen, not bogged down with scar tissue
mp_en_viaje: mod6, buncha girls did not get appreciably damaged from having numbers on their tits...
mod6: tit not remotely exploitable. :D
mp_en_viaje: if your box is remotely exploitable by photograph...
mp_en_viaje: but be that as it may : emmylark is remotely exploited currently. evidently exploitABLE.
BingoBoingo: tyvm for the well wishes, congratulations, and continuing instructions.
mp_en_viaje: yeee. keep your cool, most common moment for things to be fucked up is upon first success.
mp_en_viaje: and with this ill bl!
mod6: <+mp_en_viaje> if your box is remotely exploitable by photograph... << Well, thinking it all the way through, I guess it's a bit over the top. My first, kneejerk reaction is "fuck that. no pics." But ya, that may be silly.
mod6: It's non-critical infrastructure. And would probably help BBISP, more than it would hurt the foundation, even if exploited.
asciilifeform: mod6: try as i might, i can't picture how a photo would help to exploit yer box ( aside from the 'tells enemy which rack to dynamite' aspect, but mp_en_viaje addressed that one earlier )
mod6: Thinking clever person & log reader could discern which box belongs to whom by process of elimiation. Then depending on make/models, could try to dig up exploits.
asciilifeform: naively could say something like 'it's a dell 1950, and obummer will know to send the dell 1950 magicpacket' but consider, he will send all possible magicks anyway, because wainot
mod6: aha. so thats why i came to "silly" conclusion. they'll just send 'em anyway so w/e.
mod6 is paranoid!
asciilifeform: picture yourself in enemy's position; when would you want to steal 1 box, but not e.g. 20 ?
mod6: As enemy, I may want 'em all, but I'd take one if I could.
asciilifeform: why would he limit to 1 ? what, it has to be carried out under his coat??
asciilifeform: if can steal 1, can just as readily cart away entire orchestra, neh
mod6: wait, are you talking "physically steal a box" ?
asciilifeform: aha. recall, there was at least 1 occasion of trilema server growing legs and walking away
mod6: well, yeah, i didn't mean physically, i meant "remotely pwn"
mod6: annnnyway, this is probably nonsense. carry on!
asciilifeform: hey i was curious re whether the hypothetical can be made to make sense
mod6: so, i've heard like nasty things about some of these boxes with like the lights out management thing, and whatever.
asciilifeform: mod6: these are only a problem when plugged in
asciilifeform: ( on every box i know of , it's a separate jack )
asciilifeform: no particular reason why you'd leave this item plugged in, afaik
mod6: yeah, I don't think ours will even have that anyway. BUT, the point stand that, I didn't build it; who knows what nasty pitfalls are in there.
mod6: anyway, this is probably nonsense.
asciilifeform: if it e.g. sends random page of ram as a coded dns packet every full moon, it will do this regardless of whether anyone photographed it, lol
mod6: hahah, fair enough asciilifeform
mod6: and besides, what if i AM embarssed about our packerd bell 1U boxes?
mod6: (i don't really care, just sayin')
mod6: this may be an asinine thread i started here, but i'd rather be thinking this way - defensive, even if asinine, and then think/talk it out.
mod6: im not sure if that was english.
mod6: my first inclination is to cut down as many attack vectors as possible. real or imagined. the imaginary ones can be rooted out through a bit of thinking / conversation with intelligent folks.
mod6: apologies for the disruption. carry on!
asciilifeform: http://btcbase.org/log/2018-02-02#1779288 << ftr there are two methods for this; depending on which lang the 'main' procedure was written in. see also https://gcc.gnu.org/onlinedocs/gnat_ugn/Interfacing-to-C.html , has example of each.
a111: Logged on 2018-02-02 01:11 mp_en_viaje: http://btcbase.org/log/2018-02-01#1779163 << the theory is that very smooth, object files can be linked together directly. the testing of this theory is the most valuable part of trying it early.
asciilifeform: the 'main is in ada; some imports from c' variant is also illustrated in ffa, in http://btcbase.org/patches/ffa_ch4_ffacalc/tree/ffa/ffacalc/cmdline.ads
asciilifeform: ^ for reasons unknown to me, ada's standard character i/o routines mutilate newlines. so ffacalc imports the standard unixland ones.
a111: Logged on 2017-07-19 19:00 asciilifeform: i have 'p' structured such that all it wants i/o-wise is a 'getbyte' and 'putbyte' that operator can replace with whatever
asciilifeform: technically it wants ~three~ ttys, one for normal i/o, one for eggogs, one for rng
asciilifeform: this is pertinent when on a microcontroller.
asciilifeform: under linux, can do as follows for e.g. libc-less stdio speaking,
asciilifeform: mov rdx, 1 ;; we want 1 char
asciilifeform: xor rax, rax ;; 0 is SYS_READ
asciilifeform: xor rdi, rdi ;; 0 is STDIN
asciilifeform: mov rsi, Somewhere ;; where char will go
asciilifeform: syscall
asciilifeform: ^ for input
asciilifeform: mov rdx, 1 ;; we want 1 char
asciilifeform: mov rax, 1 ;; 1 is SYS_WRITE
asciilifeform: mov rdi, 1 ;; 1 is STDOUT
asciilifeform: mov rsi, Somewhere ;; from where
asciilifeform: syscall
asciilifeform: ^ for output
asciilifeform: and that's the compleet story under amd64 , re stdio
asciilifeform: but this is for later.
trinque: !!v 41ACB83F3325B05A3DE4B2FAE305C8C3FA9C54980602581E7746AAE43E6DF95F
deedbot: trinque updated rating of BingoBoingo from 1 to 3 << went on a long march and resurrected the Herald
trinque: BingoBoingo: when do you anticipate having a final number for 1U of space, and when do you plan on beginning to rack customer machines?
trinque also still curious about local iron procurement, if any
trinque: I would rather see a sampling of potential machines than to guess at what might be available.
trinque has services that can get by on a pretty humble machine, static HTML and IRC bots
mp_en_viaje: http://btcbase.org/log/2018-02-02#1779327 << not to mention what's probable TWO occasions of phuctor disks.
a111: Logged on 2018-02-02 01:29 asciilifeform: aha. recall, there was at least 1 occasion of trilema server growing legs and walking away
← 2018-01-31 | 2018-02-02 →