forked from Unitech/pm2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bttn.png
1302 lines (1021 loc) · 78.2 KB
/
bttn.png
File metadata and controls
1302 lines (1021 loc) · 78.2 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en-US" >
<head>
<script>
window.ts_endpoint_url = "https:\/\/slack.com\/beacon\/timing";
(function(e) {
var n=Date.now?Date.now():+new Date,r=e.performance||{},t=[],a={},i=function(e,n){for(var r=0,a=t.length,i=[];a>r;r++)t[r][e]==n&&i.push(t[r]);return i},o=function(e,n){for(var r,a=t.length;a--;)r=t[a],r.entryType!=e||void 0!==n&&r.name!=n||t.splice(a,1)};r.now||(r.now=r.webkitNow||r.mozNow||r.msNow||function(){return(Date.now?Date.now():+new Date)-n}),r.mark||(r.mark=r.webkitMark||function(e){var n={name:e,entryType:"mark",startTime:r.now(),duration:0};t.push(n),a[e]=n}),r.measure||(r.measure=r.webkitMeasure||function(e,n,r){n=a[n].startTime,r=a[r].startTime,t.push({name:e,entryType:"measure",startTime:n,duration:r-n})}),r.getEntriesByType||(r.getEntriesByType=r.webkitGetEntriesByType||function(e){return i("entryType",e)}),r.getEntriesByName||(r.getEntriesByName=r.webkitGetEntriesByName||function(e){return i("name",e)}),r.clearMarks||(r.clearMarks=r.webkitClearMarks||function(e){o("mark",e)}),r.clearMeasures||(r.clearMeasures=r.webkitClearMeasures||function(e){o("measure",e)}),e.performance=r,"function"==typeof define&&(define.amd||define.ajs)&&define("performance",[],function(){return r}) // eslint-disable-line
})(window);
</script>
<script>
;(function() {
window.TSMark = function(mark_label) {
if (!window.performance || !window.performance.mark) return;
performance.mark(mark_label);
};
window.TSMark('start_load');
window.TSMeasureAndBeacon = function(measure_label, start_mark_label) {
if (start_mark_label === 'start_nav' && window.performance && window.performance.timing) {
window.TSBeacon(measure_label, (new Date()).getTime() - performance.timing.navigationStart);
return;
}
if (!window.performance || !window.performance.mark || !window.performance.measure) return;
performance.mark(start_mark_label + '_end');
try {
performance.measure(measure_label, start_mark_label, start_mark_label + '_end');
window.TSBeacon(measure_label, performance.getEntriesByName(measure_label)[0].duration);
} catch (e) {
}
};
if ('sendBeacon' in navigator) {
window.TSBeacon = function(label, value) {
var endpoint_url = window.ts_endpoint_url || 'https://slack.com/beacon/timing';
navigator.sendBeacon(endpoint_url + '?data=' + encodeURIComponent(label + ':' + value), '');
};
} else {
window.TSBeacon = function(label, value) {
var endpoint_url = window.ts_endpoint_url || 'https://slack.com/beacon/timing';
(new Image()).src = endpoint_url + '?data=' + encodeURIComponent(label + ':' + value);
};
}
})();
</script>
<script>
window.TSMark('step_load');
</script>
<noscript><meta http-equiv="refresh" content="0; URL=/?redir=%2Ffiles-pri%2FT0XA1GAUD-FBJ6AQS0Y%2Fbttn.png&nojsmode=1" /></noscript>
<script type="text/javascript">
if(self!==top)window.document.write("\u003Cstyle>body * {display:none !important;}\u003C\/style>\u003Ca href=\"#\" onclick="+
"\"top.location.href=window.location.href\" style=\"display:block !important;padding:10px\">Go to Slack.com\u003C\/a>");
(function() {
var timer;
if (self !== top) {
timer = window.setInterval(function() {
if (window.$) {
try {
$('#page').remove();
$('#client-ui').remove();
window.TS = null;
window.clearInterval(timer);
} catch(e) {}
}
}, 200);
}
}());
</script>
<script>
(function() {
window.callSlackAPIUnauthed = function(method, args, callback) {
var timestamp = Date.now() / 1000;
var version = (window.TS && TS.boot_data && TS.boot_data.version_uid) ? TS.boot_data.version_uid.substring(0, 8) : 'noversion';
var url = '/api/' + method + '?_x_id=' + version + '-' + timestamp;
var req = new XMLHttpRequest();
req.onreadystatechange = function() {
if (req.readyState == 4) {
req.onreadystatechange = null;
var obj;
if (req.status == 200 || req.status == 429) {
try {
obj = JSON.parse(req.responseText);
} catch (err) {
TS.warn(8675309, 'unable to do anything with api rsp');
}
}
obj = obj || {
ok: false,
};
callback(obj.ok, obj, args);
}
};
var async = true;
req.open('POST', url, async);
var form_data = new FormData();
var has_data = false;
Object.keys(args).forEach(function(k) {
if (k[0] === '_') return;
form_data.append(k, args[k]);
has_data = true;
});
if (has_data) {
req.send(form_data);
} else {
req.send();
}
};
})();
</script>
<script type="text/javascript" src="https://cfr.slack-edge.com/bv1-4/webpack.manifest.7389b9b515f616114f1c.min.js" crossorigin="anonymous" onload="window._cdn && _cdn.ok(this, arguments)" onerror="window._cdn && _cdn.failed(this, arguments)"></script>
<script>
if (window.location.host == 'slack.com' && window.location.search.indexOf('story') < 0) {
document.cookie = '__cvo_skip_doc=' + escape(document.URL) + '|' + escape(document.referrer) + ';path=/';
}
</script>
<script type="text/javascript">
try {
if(window.location.hash && !window.location.hash.match(/^(#?[a-zA-Z0-9_]*)$/)) {
window.location.hash = '';
}
} catch(e) {}
</script>
<script type="text/javascript">
window.optimizely = [];
window.dataLayer = [];
window.ga = false;
(function(e,c,b,f,d,g,a){e.SlackBeaconObject=d;
e[d]=e[d]||function(){(e[d].q=e[d].q||[]).push([1*new Date(),arguments])};
e[d].l=1*new Date();g=c.createElement(b);a=c.getElementsByTagName(b)[0];
g.async=1;g.src=f;a.parentNode.insertBefore(g,a)
})(window,document,"script","https://cfr.slack-edge.com/bv1-4/slack_beacon.5dbbc3dd9f37d8bc2f4e.min.js","sb");
sb('set', 'token', '3307f436963e02d4f9eb85ce5159744c');
sb('track', 'pageview');
function track(a) {
if(window.ga) ga('send','event','web', a);
if(window.sb) sb('track', a);
}
</script>
<meta name="referrer" content="no-referrer">
<meta name="superfish" content="nofish">
<script type="text/javascript">
var TS_last_log_date = null;
var TSMakeLogDate = function() {
var date = new Date();
var y = date.getFullYear();
var mo = date.getMonth()+1;
var d = date.getDate();
var time = {
h: date.getHours(),
mi: date.getMinutes(),
s: date.getSeconds(),
ms: date.getMilliseconds()
};
Object.keys(time).map(function(moment, index) {
if (moment == 'ms') {
if (time[moment] < 10) {
time[moment] = time[moment]+'00';
} else if (time[moment] < 100) {
time[moment] = time[moment]+'0';
}
} else if (time[moment] < 10) {
time[moment] = '0' + time[moment];
}
});
var str = y + '/' + mo + '/' + d + ' ' + time.h + ':' + time.mi + ':' + time.s + '.' + time.ms;
if (TS_last_log_date) {
var diff = date-TS_last_log_date;
//str+= ' ('+diff+'ms)';
}
TS_last_log_date = date;
return str+' ';
}
</script>
<script type="text/javascript">
var TSSSB = {
call: function() {
return false;
}
};
</script>
<script>TSSSB.env = (function() {
var v = {
win_ssb_version: null,
win_ssb_version_minor: null,
mac_ssb_version: null,
mac_ssb_version_minor: null,
mac_ssb_build: null,
lin_ssb_version: null,
lin_ssb_version_minor: null,
desktop_app_version: null,
};
var is_win = (navigator.appVersion.indexOf('Windows') !== -1);
var is_lin = (navigator.appVersion.indexOf('Linux') !== -1);
var is_mac = !!(navigator.userAgent.match(/(OS X)/g));
if (navigator.userAgent.match(/(Slack_SSB)/g) || navigator.userAgent.match(/(Slack_WINSSB)/g)) {
var parts = navigator.userAgent.split('/');
var version_str = parts[parts.length - 1];
var version_float = parseFloat(version_str);
var version_parts = version_str.split('.');
var version_minor = (version_parts.length == 3) ? parseInt(version_parts[2], 10) : 0;
if (navigator.userAgent.match(/(AtomShell)/g)) {
if (is_lin) {
v.lin_ssb_version = version_float;
v.lin_ssb_version_minor = version_minor;
} else if (is_win) {
v.win_ssb_version = version_float;
v.win_ssb_version_minor = version_minor;
} else if (is_mac) {
v.mac_ssb_version = version_float;
v.mac_ssb_version_minor = version_minor;
}
if (version_parts.length >= 3) {
v.desktop_app_version = {
major: parseInt(version_parts[0], 10),
minor: parseInt(version_parts[1], 10),
patch: parseInt(version_parts[2], 10),
};
}
}
}
return v;
})();
</script>
<script type="text/javascript">
window.addEventListener('load', function() {
var was_TS = window.TS;
delete window.TS;
if (was_TS) window.TS = was_TS;
});
</script>
<title>Slack</title>
<meta name="author" content="Slack">
<meta name="robots" content="noindex,nofollow">
<!-- output_css "sk_adapter" -->
<link href="https://cfr.slack-edge.com/8ee833/style/rollup-slack_kit_legacy_adapters.css" rel="stylesheet" type="text/css" crossorigin="anonymous" onload="window._cdn && _cdn.ok(this, arguments)" onerror="window._cdn && _cdn.failed(this, arguments)">
<!-- output_css "core" -->
<link href="https://cfr.slack-edge.com/8e182/style/rollup-plastic.css" rel="stylesheet" type="text/css" crossorigin="anonymous" onload="window._cdn && _cdn.ok(this, arguments)" onerror="window._cdn && _cdn.failed(this, arguments)">
<!-- output_css "before_file_pages" -->
<!-- output_css "file_pages" -->
<!-- output_css "modern" -->
<link href="https://cfr.slack-edge.com/bv1-4/modern.vendor.24a5839.min.css" rel="stylesheet" type="text/css" crossorigin="anonymous" onload="window._cdn && _cdn.ok(this, arguments)" onerror="window._cdn && _cdn.failed(this, arguments)">
<link href="https://cfr.slack-edge.com/bv1-4/application.6e2b378.min.css" rel="stylesheet" type="text/css" crossorigin="anonymous" onload="window._cdn && _cdn.ok(this, arguments)" onerror="window._cdn && _cdn.failed(this, arguments)">
<!-- output_css "slack_kit_helpers" -->
<link href="https://cfr.slack-edge.com/611f6/style/rollup-slack_kit_helpers.css" rel="stylesheet" type="text/css" id="slack_kit_helpers_stylesheet" crossorigin="anonymous" onload="window._cdn && _cdn.ok(this, arguments)" onerror="window._cdn && _cdn.failed(this, arguments)">
<!-- output_css "regular" -->
<link href="https://cfr.slack-edge.com/e9fbd/style/signin.css" rel="stylesheet" type="text/css" crossorigin="anonymous" onload="window._cdn && _cdn.ok(this, arguments)" onerror="window._cdn && _cdn.failed(this, arguments)">
<link href="https://cfr.slack-edge.com/cdf41/style/index.css" rel="stylesheet" type="text/css" crossorigin="anonymous" onload="window._cdn && _cdn.ok(this, arguments)" onerror="window._cdn && _cdn.failed(this, arguments)">
<link href="https://cfr.slack-edge.com/cbc02/style/libs/lato-2-compressed.css" rel="stylesheet" type="text/css" crossorigin="anonymous" onload="window._cdn && _cdn.ok(this, arguments)" onerror="window._cdn && _cdn.failed(this, arguments)">
<link href="https://cfr.slack-edge.com/59e37/style/sticky_nav.css" rel="stylesheet" type="text/css" crossorigin="anonymous" onload="window._cdn && _cdn.ok(this, arguments)" onerror="window._cdn && _cdn.failed(this, arguments)">
<link href="https://cfr.slack-edge.com/94444/style/footer.css" rel="stylesheet" type="text/css" crossorigin="anonymous" onload="window._cdn && _cdn.ok(this, arguments)" onerror="window._cdn && _cdn.failed(this, arguments)">
<meta name="robots" content="noindex, nofollow" />
<link id="favicon" rel="shortcut icon" href="https://cfr.slack-edge.com/436da/marketing/img/meta/favicon-32.png" sizes="16x16 32x32 48x48" type="image/png" />
<link rel="icon" href="https://cfr.slack-edge.com/436da/marketing/img/meta/app-256.png" sizes="256x256" type="image/png" />
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="https://cfr.slack-edge.com/436da/marketing/img/meta/ios-152.png" />
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://cfr.slack-edge.com/436da/marketing/img/meta/ios-144.png" />
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="https://cfr.slack-edge.com/436da/marketing/img/meta/ios-120.png" />
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://cfr.slack-edge.com/436da/marketing/img/meta/ios-114.png" />
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://cfr.slack-edge.com/436da/marketing/img/meta/ios-72.png" />
<link rel="apple-touch-icon-precomposed" href="https://cfr.slack-edge.com/436da/marketing/img/meta/ios-57.png" />
<meta name="msapplication-TileColor" content="#FFFFFF" />
<meta name="msapplication-TileImage" content="https://cfr.slack-edge.com/436da/marketing/img/meta/app-144.png" />
</head>
<body class=" index deprecated">
<script>
var w = Math.max(document.documentElement.clientWidth, window.innerWidth || 0);
if (w > 1440) document.querySelector('body').classList.add('widescreen');
</script>
<nav class="top persistent">
<a href="https://slack.com/" class="logo" data-qa="logo" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=logo" aria-label="Slack homepage"></a>
<ul>
<li><a href="https://slack.com/is" data-qa="product" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=nav_product">Product</a></li>
<li><a href="https://slack.com/pricing?ui_step=55&ui_element=5" data-qa="pricing" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=nav_pricing">Pricing</a></li> <li><a href="https://get.slack.help/hc/en-us" data-qa="support" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=nav_support">Support</a></li>
<li class= "mobile_btn download_slack"><a href="/get" data-qa="download_slack" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=nav_download">Download Slack</a></li> <li><a data-gtm-click="SignUp,optout_nav_create_team" href="https://slack.com/create" class="" data-qa="create_team" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=nav_create_team">Create a new workspace</a></li>
<li><a href="https://slack.com/get-started" data-gtm-click="optout_nav_find_team" data-qa="find_team" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=nav_find_team">Find your workspace</a></li>
<li class="sign_in hide_on_mobile"><a data-gtm-click="optout_nav_signin" href="https://slack.com/signin" class="btn_sticky btn_filled" data-qa="sign_in" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=nav_sign_in">Sign in</a></li>
<li class="mobile_btn mobile_menu_btn">
<a href="#" class="btn_sticky" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=nav_mobile_menu_btn">Menu</a>
</li>
</ul>
</nav>
<nav class="mobile_menu loading menu_scroll" aria-hidden="true">
<div class="mobile_menu_wrapper">
<div class="mobile_menu_header">
<a href="https://slack.com/" class="logo" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=nav_logo"></a>
<a href="#" class="close" aria-label="close" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=nav_menu_close"><ts-icon class="ts_icon ts_icon_times"></ts-icon></a>
</div>
<ul>
<li><a href="https://slack.com/is" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=nav_product">Product</a></li>
<li><a href="https://slack.com/pricing?ui_step=55&ui_element=5" class="mobile_nav_pricing" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=nav_pricing">Pricing</a></li> <li><a href="https://get.slack.help/hc/en-us" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=nav_support">Support</a></li>
<li><a href="/get" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=nav_download">Download <span class="optional_desktop_nav_message">the Slack app</span></a></li>
</ul>
<ul class="mobile_menu_footer">
<li><a href="https://slack.com/signin" data-gtm-click="optout_nav_signin" target="_blank" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=nav_sign_in"><ts-icon class="ts_icon small float_none team_icon ts_icon_plus default signup_icon"></ts-icon> <span class="switcher_label">Sign in</span></a></li>
<li><a data-gtm-click="SignUp,optout_nav_create_team" href="https://slack.com/create" class="" target="_blank" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=nav_create_team"><ts-icon class="ts_icon small float_none team_icon ts_icon_slack_pillow default signup_icon"></ts-icon> <span class="switcher_label">Create a new workspace</span></a></li> </ul>
</div>
</nav>
<div id="page" >
<div id="page_contents" data-qa="page_contents" class="">
<div class="span_4_of_6 col float_none margin_auto no_right_padding">
<p class="alert alert_info"><i class="ts_icon ts_icon_info_circle"></i> You need to sign in to see this page.</p>
<p id="error_ratelimit" class="alert alert_warning" style="display: none;">
<i class="ts_icon ts_icon_warning"></i>
<strong>Too many login failures!</strong><br class="hide_on_mobile" />
Apologies! There were too many SMS message requests in a short period, so you’ll have to wait a moment to try again.
</p>
<p id="error_unknown" class="alert alert_error" style="display: none;">
<i class="ts_icon ts_icon_warning"></i> Hmmm... something went wrong. Please try again.</p></div>
<div class="real_content card align_center span_4_of_6 col float_none margin_auto large_bottom_margin right_padding large_bottom_padding">
<h1 id="signin_header" class="tiny_bottom_margin">
Sign in to <span class="break_word">keymetrics</span>
</h1>
<p class="medium_bottom_margin">keymetrics-team.slack.com</p>
<div class="col span_4_of_6 float_none margin_auto signin_card">
<form id="signin_form" action="/" method="post" accept-encoding="UTF-8">
<input type="hidden" name="signin" value="1">
<input type="hidden" name="redir" value="/files-pri/T0XA1GAUD-FBJ6AQS0Y/bttn.png">
<input type="hidden" name="crumb" value="s-1530708790-54a64fab1bf5439d20bcb89477317b7cf3a31f2598aac32d7d8cbd7bc4daffb6-☃" />
<p class="browser_password align_left">Enter your <strong>email address</strong> and <strong>password</strong>.</p>
<p class="ssb_password hidden">What is your <strong>password</strong>?</p>
<p class=" no_bottom_margin">
<input type="email" id="email" name="email" size="40" value="" placeholder="[email protected]">
</p>
<p class=" small_bottom_margin">
<input type="password" id="password" name="password" size="40" placeholder="password" >
</p>
<p><button id="signin_btn" type="submit" class="btn btn_large full_width ladda-button" data-style="expand-right"><span class="ladda-label">Sign in</span></button></p>
<div class="align_left">
<label class="checkbox normal inline_block small_right_margin"><input type="checkbox" name="remember" checked> Remember me</label>
</div>
<div class="align_left small_top_margin">
<a id="forgot-pw" href="/forgot">Forgot password?</a>
· <a href="https://slack.com/get-started">Forgot which email you used?</a>
</div>
</form>
<div id="magic_login_cta" class="float_none margin_auto hidden">
<div class="or no_wrap small_top_padding medium_bottom_margin align_center">or</div>
<p class="large_bottom_margin"><strong>Long password? Hard to type?</strong><br /> We can email you a magic link so you can sign in without having to type your password.</p>
<form id="magic_login" action="/" method="post" accept-encoding="UTF-8" class="align_center float_none margin_auto medium_bottom_margin">
<input type="hidden" name="crumb" value="s-1530708790-54a64fab1bf5439d20bcb89477317b7cf3a31f2598aac32d7d8cbd7bc4daffb6-☃" />
<input type="hidden" name="email">
<input type="hidden" name="signin_request_magiclogin" value="1">
<button class="btn btn_large btn_outline full_width"><ts-icon class="ts_icon_magic"></ts-icon>Email Me A Link</button>
</form>
</div>
</div>
<p class="small clear_both taller_line_height">
</p>
</div>
<div class="real_content align_center">
<p>If you have an <strong>
<span class="team_email_domains" data-team-email-domains-formatted="@keymetrics.io">
@keymetrics.io
</span></strong> email address, you can <a href="/signup/" class="bold" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=inc_index_secondary_info_create_an_account">create an account</a>.</p>
<p>
Trying to create a workspace?
<a data-gtm-click="SignUp" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=inc_download_app_or_sign_in_cta_sign_up_link" href="/create" class="bold">Create a new workspace</a>
</p>
</div>
</div>
<div id="overlay"></div>
</div>
<footer data-qa="footer">
<section class="links">
<div class="grid">
<div class="col span_1_of_4 nav_col">
<ul>
<li class="cat_1">Using Slack</li>
<li><a href="/is" data-qa="product_footer" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=footer_product">Product</a></li>
<li><a href="/enterprise" data-qa="enterprise_footer" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=footer_enterprise">Enterprise</a></li>
<li><a href="/pricing?ui_step=28&ui_element=5" data-qa="pricing_footer" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=footer_pricing">Pricing</a></li>
<li><a href="https://get.slack.help/hc/en-us" data-qa="support_footer" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=footer_support">Support</a></li>
<li><a href="/guides" data-qa="getting_started" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=footer_getting_started">Slack Guides</a></li>
<li><a href="/apps" data-qa="app_directory" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=footer_app_directory">App Directory</a></li>
<li><a href="https://api.slack.com/" data-qa="api" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=footer_api">API</a></li>
</ul>
</div>
<div class="col span_1_of_4 nav_col">
<ul>
<li class="cat_2">Slack <ts-icon class="ts_icon_heart"></ts-icon></li>
<li><a href="/jobs" data-qa="jobs" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=footer_jobs">Jobs</a></li>
<li><a href="/customers" data-qa="customers" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=footer_customers">Customers</a></li>
<li><a href="/developers" data-qa="developers" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=footer_developers">Developers</a></li>
<li><a href="/events" data-qa="events" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=footer_events">Events</a></li>
<li><a href="https://slackhq.com/" data-qa="blog_footer" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=footer_blog">Blog</a></li>
<li><a href="/podcast" data-qa="podcast" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=footer_podcast">Podcast</a></li>
<li><a href="https://slack.shop/" data-qa="slack_shop" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=footer_slack_shop">Slack Shop</a></li>
</ul>
</div>
<div class="col span_1_of_4 nav_col">
<ul>
<li class="cat_3">Legal</li>
<li><a href="/privacy-policy" data-qa="privacy" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=footer_privacy">Privacy</a></li>
<li><a href="/security" data-qa="security" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=footer_security">Security</a></li>
<li><a href="/terms-of-service" data-qa="tos" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=footer_tos">Terms of Service</a></li>
<li><a href="/policies" data-qa="policies" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=footer_policies">Policies</a></li>
</ul>
</div>
<div class="col span_1_of_4 nav_col">
<ul>
<li class="cat_4">Handy Links</li>
<li><a href="/downloads" data-qa="downloads" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=footer_downloads">Download desktop app</a></li>
<li><a href="/downloads" data-qa="downloads_mobile" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=footer_downloads_mobile">Download mobile app</a></li>
<li><a href="/brand-guidelines" data-qa="brand_guidelines" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=footer_brand_guidelines">Brand Guidelines</a></li>
<li><a href="https://slackatwork.com" data-qa="slack_at_work" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=footer_slack_at_work">Slack at Work</a></li>
<li><a href="https://status.slack.com/" data-qa="status" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=footer_status">Status</a></li>
</ul>
</div>
</div>
</section>
<div class="footnote">
<section>
<a href="https://slack.com" aria-label="Slack homepage" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=footer_slack_icon"><ts-icon class="ts_icon_slack_pillow" aria-hidden="true"></ts-icon></a>
<ul>
<li>
<a href="/help/contact" data-qa="contact_us" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=footer_contact_us">Contact Us</a>
</li>
<li>
<a href="https://twitter.com/SlackHQ" data-qa="slack_twitter" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=footer_slack_twitter" aria-label="Slack on Twitter"><ts-icon class="ts_icon_twitter" aria-hidden="true"></ts-icon></a>
</li>
<li class="yt">
<a href="https://www.youtube.com/channel/UCY3YECgeBcLCzIrFLP4gblw" data-qa="slack_youtube" data-clog-event="WEBSITE_CLICK" data-clog-params="click_target=footer_slack_youtube" aria-label="Slack on YouTube"><ts-icon class="ts_icon_youtube" aria-hidden="true"></ts-icon></a>
</li>
</ul>
</section>
</div>
</footer>
<script type="text/javascript">
/**
* A placeholder function that the build script uses to
* replace file paths with their CDN versions.
*
* @param {String} file_path - File path
* @returns {String}
*/
function vvv(file_path) {
var vvv_warning = 'You cannot use vvv on dynamic values. Please make sure you only pass in static file paths.';
if (TS && TS.warn) {
TS.warn(vvv_warning);
} else {
console.warn(vvv_warning);
}
return file_path;
}
var cdn_url = "https:\/\/cfr.slack-edge.com";
var vvv_abs_url = "https:\/\/slack.com\/";
var inc_js_setup_data = {
emoji_sheets: {
apple: 'https://cfr.slack-edge.com/c00d19/img/emoji_2017_12_06/sheet_apple_64_indexed_256.png',
google: 'https://cfr.slack-edge.com/c00d19/img/emoji_2017_12_06/sheet_google_64_indexed_256.png',
},
};
</script>
<script type="text/javascript">
<!--
// common boot_data
var boot_data = {
start_ms: Date.now(),
app: "web",
user_id: '',
team_id: 'T00',
visitor_uid: "12aszlnxkxr4k4084so8kww8c",
no_login: true,
version_ts: "1530672476",
version_uid: "307f795e460619a6a1f367f83e259c28fb048dfb",
cache_version: "v16-giraffe",
cache_ts_version: "v2-bunny",
redir_domain: "slack-redir.net",
signin_url: 'https://slack.com/signin',
abs_root_url: "https:\/\/slack.com\/",
api_url: '/api/',
team_url: "",
image_proxy_url: "https:\/\/slack-imgs.com\/",
beacon_timing_url: "https:\/\/slack.com\/beacon\/timing",
beacon_error_url: "https:\/\/slack.com\/beacon\/error",
clog_url: "clog\/track\/",
api_token: "",
ls_disabled: false,
hc_tracking_qs: "",
vvv_paths: {
lz_string: "https:\/\/cfr.slack-edge.com\/bv1-4\/lz-string-1.4.4.worker.8de1b00d670ff3dc706a0.js",
codemirror: "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror.min.44a2b0ae2d7a5cac8a95.min.js",
codemirror_addon_simple: "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_simple.9c76f7896754967b9eda.min.js",
codemirror_load: "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_load.082b98ffddbb35f246e2.min.js",
// Silly long list of every possible file that Codemirror might load
codemirror_files: {
'apl': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_apl.28ce658730a18a115532.min.js",
'asciiarmor': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_asciiarmor.b6cae5185b1e92ac1917.min.js",
'asn.1': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_asn.1.1992736a46ff4b01f93f.min.js",
'asterisk': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_asterisk.8dc14a25826407ab1fa3.min.js",
'brainfuck': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_brainfuck.d29773c7ac178228d4c1.min.js",
'clike': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_clike.cccd21c94a2b7ab7ce3d.min.js",
'clojure': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_clojure.4a91a0c50a64467f2ff5.min.js",
'cmake': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_cmake.a873ff1604fb8e89955f.min.js",
'cobol': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_cobol.2b7098fad4936f18f361.min.js",
'coffeescript': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_coffeescript.68a8fdd315d0dcf8c27a.min.js",
'commonlisp': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_commonlisp.879f5b578b25a058fc4d.min.js",
'css': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_css.035ca224464953138c30.min.js",
'crystal': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_crystal.79beb330be1a294e43c4.min.js",
'cypher': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_cypher.525ea24cf7710ac2825a.min.js",
'd': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_d.7328ff9ab8c98103deb7.min.js",
'dart': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_dart.f7e22fcf397d31e7af93.min.js",
'diff': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_diff.c3b6cf00600144071d6d.min.js",
'django': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_django.cde302c62fe6365529f2.min.js",
'dockerfile': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_dockerfile.ed0e37e03b2023e1b69b.min.js",
'dtd': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_dtd.df3795754645134d5f80.min.js",
'dylan': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_dylan.fed72f1d0e846fd6d213.min.js",
'ebnf': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_ebnf.6af113fdedf587f96c64.min.js",
'ecl': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_ecl.12b9206b24a5433649ab.min.js",
'eiffel': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_eiffel.896ceb473406cc01ee59.min.js",
'elm': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_elm.637ce7bda68e33c4b55a.min.js",
'erlang': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_erlang.ea42edc0caacbb7b9429.min.js",
'factor': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_factor.937f3b4ba675a2abe9c7.min.js",
'forth': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_forth.89f6ec54d5548d4cf25b.min.js",
'fortran': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_fortran.e312d7972b690a22beab.min.js",
'gas': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_gas.abc6e9d7c3a0b887ff69.min.js",
'gfm': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_gfm.8fc0c8e3735d10a858c6.min.js",
'gherkin': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_gherkin.9e0cfa25c1965e495419.min.js",
'go': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_go.5ed96d85ab19d7795ba7.min.js",
'groovy': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_groovy.c496c31bd5cca0986ead.min.js",
'haml': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_haml.f25c65cf09f1ec3a29c7.min.js",
'handlebars': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_handlebars.80eb7b9e2e0fb6dee382.min.js",
'haskell': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_haskell.e7b2cc288c6bd281ff32.min.js",
'haxe': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_haxe.3efebdfa3dc7fb7cc4db.min.js",
'htmlembedded': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_htmlembedded.1a2496c621f9a470c340.min.js",
'htmlmixed': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_htmlmixed.caa675603dc4fdb90c31.min.js",
'http': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_http.c1c249d14bf18521fee1.min.js",
'idl': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_idl.715601d44fbe133c065b.min.js",
'jade': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_jade.0eff9474d977d43feced.min.js",
'javascript': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_javascript.bc1b5c6a6515b3064108.min.js",
'jinja2': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_jinja2.5de8bc52face9b2769f2.min.js",
'julia': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_julia.32d8748fecc17e6305bf.min.js",
'livescript': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_livescript.f6dbad1e8d8168b319f4.min.js",
'lua': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_lua.32780d85e5cbbb59b8eb.min.js",
'markdown': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_markdown.a7f65f93ece1f31b9e60.min.js",
'mathematica': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_mathematica.48dd3694f2f71a75544c.min.js",
'mirc': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_mirc.0f3984162d72c3a0a5ca.min.js",
'mllike': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_mllike.e4e86126535bd4f7a575.min.js",
'modelica': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_modelica.d4fd8938619f5c8dc361.min.js",
'mscgen': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_mscgen.f9d5ab8e95b697c39880.min.js",
'mumps': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_mumps.b361377133b59678d3d5.min.js",
'nginx': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_nginx.524bfc39589c37f74bfd.min.js",
'nsis': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_nsis.b25852c3418f984ae03d.min.js",
'ntriples': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_ntriples.4e0443a64025c35438a6.min.js",
'octave': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_octave.3a0c99a5e07bbd9a6d67.min.js",
'oz': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_oz.e9939d375a47087f59aa.min.js",
'pascal': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_pascal.f1162aeab4a781363ccd.min.js",
'pegjs': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_pegjs.7af50308b76ba3251b02.min.js",
'perl': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_perl.5a7940afe30ba510820a.min.js",
'php': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_php.64b619fb529d1cd9b781.min.js",
'pig': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_pig.a30ec6f3ffff33476ac4.min.js",
'powershell': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_powershell.0ccd1b6a33eb2209c15b.min.js",
'properties': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_properties.5c0c1436978bf2a7af00.min.js",
'puppet': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_puppet.53ac0d4fadd68369610e.min.js",
'python': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_python.dd3e2e25db7e7fb868d6.min.js",
'q': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_q.4af8c1d9b07ea218977f.min.js",
'r': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_r.783001720b360a8177a8.min.js",
'rpm': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_rpm.79678546fb25c75e3208.min.js",
'rst': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_rst.0fa19c56ae79c0b70c27.min.js",
'ruby': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_ruby.efce7fd348530776314b.min.js",
'rust': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_rust.b148ea62a65dfe9f36c0.min.js",
'sass': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_sass.4e58ddf440975d3864f6.min.js",
'scheme': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_scheme.52a48304089db7f7708e.min.js",
'shell': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_shell.8dd47832ce011f080fb8.min.js",
'sieve': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_sieve.dc92cd9b919e5efb3c05.min.js",
'slim': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_slim.ba0d300bced932d16420.min.js",
'smalltalk': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_smalltalk.6dd6e1d419b04500b385.min.js",
'smarty': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_smarty.428329a9fdb0d8be2a5f.min.js",
'solr': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_solr.02f1fe78feb4a670b6cc.min.js",
'soy': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_soy.8145a09e761fee4b0667.min.js",
'sparql': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_sparql.cf7a2190284c6ca0c11d.min.js",
'spreadsheet': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_spreadsheet.eeeb35132617f7fa05e6.min.js",
'sql': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_sql.78a665f0a117e62e46f2.min.js",
'stex': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_stex.777bff71a93e84be5096.min.js",
'stylus': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_stylus.6ae0e46fb8c0750c644c.min.js",
'swift': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_swift.2254c736e8a7f4f51e92.min.js",
'tcl': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_tcl.13833d90818d7aa20cc6.min.js",
'textile': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_textile.aa7de5d427d0474f6e14.min.js",
'tiddlywiki': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_tiddlywiki.efa88c874dc2653bb47e.min.js",
'tiki': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_tiki.6a8e59872a533ec09dae.min.js",
'toml': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_toml.4e099e2ec0d834eb7c04.min.js",
'tornado': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_tornado.feede7e509e683f0998f.min.js",
'troff': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_troff.d31a17f22f8c679cf3e5.min.js",
'ttcn': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_ttcn.1bf6637cf05b45897ccd.min.js",
'ttcn:cfg': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_ttcn-cfg.273e541df1ddc66215ca.min.js",
'turtle': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_turtle.4cf803c3d74096bfb82a.min.js",
'twig': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_twig.628d79da0aea153a66fe.min.js",
'vb': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_vb.828b80361395c4e24aaf.min.js",
'vbscript': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_vbscript.e19473b2883a8f5e9270.min.js",
'velocity': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_velocity.09039c2d8f038c5046b2.min.js",
'verilog': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_verilog.f12abef9991c95696bf5.min.js",
'vhdl': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_vhdl.6438b130790bb71537f5.min.js",
'vue': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_vue.b7dca682b49e1cb360cf.min.js",
'xml': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_xml.c067158d12d43b9b96f7.min.js",
'xquery': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_xquery.340466967c2bdf65fa66.min.js",
'yaml': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_yaml.7f71c0f462159ba81033.min.js",
'z80': "https:\/\/cfr.slack-edge.com\/bv1-4\/codemirror_lang_z80.73d5eb24ebcdece24ced.min.js"
} },
notification_sounds: [{"value":"b2.mp3","label":"Ding","url":"https:\/\/cfr.slack-edge.com\/7e91\/sounds\/push\/b2.mp3","url_ogg":"https:\/\/cfr.slack-edge.com\/46ebb\/sounds\/push\/b2.ogg"},{"value":"animal_stick.mp3","label":"Boing","url":"https:\/\/cfr.slack-edge.com\/7e91\/sounds\/push\/animal_stick.mp3","url_ogg":"https:\/\/cfr.slack-edge.com\/46ebb\/sounds\/push\/animal_stick.ogg"},{"value":"been_tree.mp3","label":"Drop","url":"https:\/\/cfr.slack-edge.com\/7e91\/sounds\/push\/been_tree.mp3","url_ogg":"https:\/\/cfr.slack-edge.com\/46ebb\/sounds\/push\/been_tree.ogg"},{"value":"complete_quest_requirement.mp3","label":"Ta-da","url":"https:\/\/cfr.slack-edge.com\/7e91\/sounds\/push\/complete_quest_requirement.mp3","url_ogg":"https:\/\/cfr.slack-edge.com\/46ebb\/sounds\/push\/complete_quest_requirement.ogg"},{"value":"confirm_delivery.mp3","label":"Plink","url":"https:\/\/cfr.slack-edge.com\/7e91\/sounds\/push\/confirm_delivery.mp3","url_ogg":"https:\/\/cfr.slack-edge.com\/46ebb\/sounds\/push\/confirm_delivery.ogg"},{"value":"flitterbug.mp3","label":"Wow","url":"https:\/\/cfr.slack-edge.com\/7e91\/sounds\/push\/flitterbug.mp3","url_ogg":"https:\/\/cfr.slack-edge.com\/46ebb\/sounds\/push\/flitterbug.ogg"},{"value":"here_you_go_lighter.mp3","label":"Here you go","url":"https:\/\/cfr.slack-edge.com\/7e91\/sounds\/push\/here_you_go_lighter.mp3","url_ogg":"https:\/\/cfr.slack-edge.com\/46ebb\/sounds\/push\/here_you_go_lighter.ogg"},{"value":"hi_flowers_hit.mp3","label":"Hi","url":"https:\/\/cfr.slack-edge.com\/7e91\/sounds\/push\/hi_flowers_hit.mp3","url_ogg":"https:\/\/cfr.slack-edge.com\/46ebb\/sounds\/push\/hi_flowers_hit.ogg"},{"value":"knock_brush.mp3","label":"Knock Brush","url":"https:\/\/cfr.slack-edge.com\/7e91\/sounds\/push\/knock_brush.mp3","url_ogg":"https:\/\/cfr.slack-edge.com\/46ebb\/sounds\/push\/knock_brush.ogg"},{"value":"save_and_checkout.mp3","label":"Whoa!","url":"https:\/\/cfr.slack-edge.com\/7e91\/sounds\/push\/save_and_checkout.mp3","url_ogg":"https:\/\/cfr.slack-edge.com\/46ebb\/sounds\/push\/save_and_checkout.ogg"},{"value":"item_pickup.mp3","label":"Yoink","url":"https:\/\/cfr.slack-edge.com\/7e91\/sounds\/push\/item_pickup.mp3","url_ogg":"https:\/\/cfr.slack-edge.com\/46ebb\/sounds\/push\/item_pickup.ogg"},{"value":"hummus.mp3","label":"Hummus","url":"https:\/\/cfr.slack-edge.com\/7fa9\/sounds\/push\/hummus.mp3","url_ogg":"https:\/\/cfr.slack-edge.com\/46ebb\/sounds\/push\/hummus.ogg"},{"value":"none","label":"None"}],
alert_sounds: [{"value":"frog.mp3","label":"Frog","url":"https:\/\/slack.global.ssl.fastly.net\/a34a\/sounds\/frog.mp3"}],
call_sounds: [{"value":"call\/alert_v2.mp3","label":"Alert","url":"https:\/\/slack.global.ssl.fastly.net\/08f7\/sounds\/call\/alert_v2.mp3"},{"value":"call\/incoming_ring_v2.mp3","label":"Incoming ring","url":"https:\/\/slack.global.ssl.fastly.net\/08f7\/sounds\/call\/incoming_ring_v2.mp3"},{"value":"call\/outgoing_ring_v2.mp3","label":"Outgoing ring","url":"https:\/\/slack.global.ssl.fastly.net\/08f7\/sounds\/call\/outgoing_ring_v2.mp3"},{"value":"call\/pop_v2.mp3","label":"Incoming reaction","url":"https:\/\/slack.global.ssl.fastly.net\/08f7\/sounds\/call\/pop_v2.mp3"},{"value":"call\/they_left_call_v2.mp3","label":"They left call","url":"https:\/\/slack.global.ssl.fastly.net\/08f7\/sounds\/call\/they_left_call_v2.mp3"},{"value":"call\/you_left_call_v2.mp3","label":"You left call","url":"https:\/\/slack.global.ssl.fastly.net\/08f7\/sounds\/call\/you_left_call_v2.mp3"},{"value":"call\/they_joined_call_v2.mp3","label":"They joined call","url":"https:\/\/slack.global.ssl.fastly.net\/08f7\/sounds\/call\/they_joined_call_v2.mp3"},{"value":"call\/you_joined_call_v2.mp3","label":"You joined call","url":"https:\/\/slack.global.ssl.fastly.net\/08f7\/sounds\/call\/you_joined_call_v2.mp3"},{"value":"call\/confirmation_v2.mp3","label":"Confirmation","url":"https:\/\/slack.global.ssl.fastly.net\/08f7\/sounds\/call\/confirmation_v2.mp3"}],
call_sounds_version: "v2",
a11y_sounds: [],
default_tz: "America\/Los_Angeles",
feature_teambot: false,
feature_tinyspeck: false,
feature_create_team_google_auth: false,
feature_enterprise_custom_tos: true,
feature_webapp_always_collect_initial_time_period_stats: false,
feature_search_skip_context: false,
feature_flannel_use_canary_sometimes: false,
feature_deprecate_window_cert: true,
feature_deprecate_window_cert_block: true,
feature_deprecate_files: false,
feature_deprecate_get_member_by_name: false,
feature_muted_mpim_badging: true,
feature_modern_process_imsg: true,
feature_modern_files_info: false,
feature_slurp_bots: false,
feature_react_threads: false,
feature_file_threads: false,
feature_file_threads_dark_launch: false,
feature_file_threads_cache_update: false,
feature_file_threads_local_shares_only: false,
feature_broadcast_indicator: false,
feature_subteam_members_diff: true,
feature_a11y_keyboard_shortcuts: false,
feature_email_ingestion: false,
feature_sidebar_context_menu: false,
feature_attachments_inline: false,
feature_fix_files: true,
feature_channel_eventlog_client: true,
feature_m11n_experiments: false,
feature_paging_api: false,
feature_custom_status_expiry: false,
feature_m11n_custom_status_input: false,
feature_inform_changes_to_shared_channels_are_workspace_specific: false,
feature_a11y_custom_status: false,
feature_sonic_dnd: true,
feature_sonic_presence_manager: false,
feature_sonic_rtm_marked_events: true,
feature_sonic_rtm_presence: true,
feature_sonic_user_groups: false,
feature_sonic_user_groups_in_sonic: false,
feature_pub_to_prv_esc_client: false,
feature_date_range_exports: false,
feature_enterprise_app_teams: true,
feature_enterprise_frecency: true,
feature_ent_app_management_restriction: false,
feature_entitlements: true,
feature_grid_archive_link_fixes: true,
feature_migration_status_page: false,
feature_safeguard_org_retention: true,
feature_dashboard_sortable_lists: false,
feature_refactor_admin_stats: false,
feature_request_signing: true,
feature_distribute_clone_apps: false,
feature_leave_workspace_improvements: true,
feature_enteprise_user_teams_update: true,
feature_find_your_workspace: true,
feature_sk_lato_cleanup: false,
feature_saml_authn_key_expiry_date: true,
feature_wta_perm_api_split: false,
feature_wta_client_support: true,
feature_xoxa_channel_authorization: true,
feature_wta_optional_ephemeral_message: true,
feature_wta_conversations_api_channel_created_msg: false,
feature_file_links_betterer: false,
feature_enterprise_dm_deeplink: true,
feature_enterprise_dm_deeplink_copy_update: false,
feature_session_duration_saved_message: false,
feature_guest_api_changes: false,
feature_gdpr_exports: true,
feature_sso_jit_disabling: true,
feature_guest_private_channels: true,
feature_connecting_shared_channels_enterprise: false,
feature_shared_channels_enterprise: false,
feature_snapshots_the_revenge: false,
feature_mpim_channels: false,
feature_esc_connected_workspaces_search: false,
feature_conversations_list: true,
feature_gdpr_user_join_tos: true,
feature_user_invite_tos_april_2018: true,
feature_modernize_invites: false,
feature_modernize_admin: false,
feature_modernize_admin_permissions: true,
feature_admin_in_client: false,
feature_sonic_whats_new: true,
feature_winssb_beta_channel: false,
feature_slack_astronaut_i18n_jpn: true,
feature_i18n_customer_stories: false,
feature_cust_acq_i18n_tweaks: false,
feature_gdpr_website_update: true,
feature_gdpr_website_fixes: false,
feature_sales_lp: true,
feature_presence_sub: true,
feature_whitelist_zendesk_chat_widget: false,
feature_live_support_free_plan: false,
feature_slackbot_goes_to_college: false,
feature_newxp_enqueue_message: true,
feature_threads_copy_change: false,
feature_force_ls_compression: false,
feature_name_tagging_client: true,
feature_name_tagging_client_autocomplete: false,
feature_name_tagging_client_topic_purpose: false,
feature_use_imgproxy_resizing: true,
feature_share_mention_comment_cleanup: false,
feature_external_files: false,
feature_electron_memory_logging: false,
feature_native_app_start_non_mac: false,
feature_app_promo_program: true,
feature_localization_phase_two: false,
feature_locale_es_XL: false,
feature_locale_en_GB: false,
feature_locale_pt_BR: false,
feature_zero_width_space_word_joiner: true,
feature_modernize_slash_cmds: false,
feature_i18n_runtime_translations: false,
feature_better_join_leave_strings: false,
feature_channel_exports: false,
feature_corp_eng_news: false,
feature_docs: false,
feature_deprecate_screenhero: true,
feature_calls_esc_ui: true,
feature_calls_unsupported_client_strings: false,
feature_spock_calls: false,
feature_remote_files_api: false,
feature_default_shared_channels: true,
feature_email_notifications_improvements: true,
feature_react_lfs: false,
feature_log_quickswitcher_queries: true,
feature_app_permissions_backend_enterprise: true,
feature_token_ip_whitelist: true,
feature_rollback_to_mapping: false,
feature_sidebar_theme_undo: false,
feature_allow_intra_word_formatting: true,
feature_allow_cjk_autocomplete: true,
feature_allow_split_word: false,
feature_i18n_channels_validate_emoji: true,
feature_fw_eng_normalization: true,
feature_slim_scrollbar: false,
feature_search_query_refinements: true,
feature_search_spell_corrections: false,
feature_react_search: false,
feature_prefs_modernization: false,
feature_modern_fuzzy_matcher: false,
feature_sidebar_filters: false,
feature_sli_channel_archive_suggestions: true,
feature_react_messages: true,
feature_never_skip_unread_counts: false,
feature_fetch_missing_channels_in_unread_counts: false,
feature_m11n_autocomplete_channels: false,
feature_trim_paragraphs: false,
feature_member_supermodel: true,
feature_m11n_autocomplete_members: false,
feature_hide_unfurl_urls: false,
feature_react_member_profile_card: false,
feature_service_import_lfs: false,
feature_mpdm_default_fe: false,
feature_channel_notif_dialog_update: false,
feature_oauth_react_wta: true,
feature_react_team_picker: true,
feature_app_index: false,
feature_app_profile_app_site_link: false,
feature_custom_app_installs: true,
feature_gdrive_do_not_install_by_default: true,
feature_delete_moved_channels: true,
feature_single_workspace_redirect: true,
feature_zero_workspace_onboarding: true,
feature_user_tos: true,
feature_oom_mv_channels_list: false,
feature_solr_discoverability: true,
feature_sso_formatting_error: true,
feature_single_user_workspace_pagination: true,
feature_cross_workspace_quick_switcher_prototype: true,
feature_org_quick_switcher: false,
feature_ms_latest: true,
feature_no_preload_video: true,
feature_guests_use_entitlements: true,
feature_dlp_ud_users: false,
feature_emoji_picker_frecently_used: false,
feature_app_space: true,
feature_app_space_links: false,
feature_app_canvases: false,
feature_canvases: false,
feature_attachments_v2: false,
feature_date_picker: false,
feature_message_input_byte_limit: false,
feature_beacon_js_errors: false,
feature_http_sendmsg: true,
feature_app_dialogs_notify_on_cancel: true,