· 6 years ago · Jan 28, 2020, 06:28 AM
1PASTEBIN
2GO API TOOLS FAQ DEALS
3
4paste
5SIGN IN SIGN UP
6Public Pastes
7Untitled
820 sec ago
9vs_events_custom.nut
1041 sec ago
11Untitled
1243 sec ago
13Untitled
1445 sec ago
152020-01-28-11-23-1...
1646 sec ago
17Untitled
1859 sec ago
19dadadada
201 min ago
21Untitled
221 min ago
23
24
25
26
27
28Holly and Dolores' Tips for Caregiving, Active Aging and More
29Sponsored - GreatCall
30Recommended by
31
32Looking for our Scraping API? Check out the Scraping API documentation.
33Developers API
34This is the Pastebin.com developers API documentation page. Here you can find all the information you need to get started with our API. If you have questions, feel free to contact us. If you are a developer, and you are building something for Pastebin which might benefit others as well, be sure to contact us, as we might be able to feature your creation on our tools page.
351. Your Unique Developer API Key
362. Creating A New Paste
373. Creating A New Paste, [Required Parameters]
384. Creating A New Paste, [Optional Parameters]
395. Creating A New Paste, The 'api_paste_format' Paramater In Detail
406. Creating A New Paste, The 'api_paste_expire_date' Paramater In Detail
417. Creating A New Paste, The 'api_paste_private' Paramater In Detail
428. Creating An 'api_user_key' Using The API Member Login System
439. Listing Pastes Created By A User
4410. Deleting A Paste Created By A User
4511. Getting A Users Information And Settings
4612. Getting raw paste output of users pastes including 'private' pastes
4713. Getting raw paste output of any 'public' & 'unlisted' pastes
48Your Unique Developer API Key
49Everybody using our API is required to use a valid Developer API Key. You automatically get a key when you become a member of Pastebin. Please login to your account, and return to this page to find your Developer API Key.
50Creating A New Paste
51Creating a new paste via our API is very easy. You simply have to send a valid POST request to the url shown below. Please make sure you are sending the data
52as the UTF-8 charset.
53https://pastebin.com/api/api_post.php
54Below is a PHP example using curl how to create a new paste:
55$api_dev_key = 'YOUR API DEVELOPER KEY'; // your api_developer_key
56$api_paste_code = 'just some random text you :)'; // your paste text
57$api_paste_private = '1'; // 0=public 1=unlisted 2=private
58$api_paste_name = 'justmyfilename.php'; // name or title of your paste
59$api_paste_expire_date = '10M';
60$api_paste_format = 'php';
61$api_user_key = ''; // if an invalid or expired api_user_key is used, an error will spawn. If no api_user_key is used, a guest paste will be created
62$api_paste_name = urlencode($api_paste_name);
63$api_paste_code = urlencode($api_paste_code);
64
65$url = 'https://pastebin.com/api/api_post.php';
66$ch = curl_init($url);
67
68curl_setopt($ch, CURLOPT_POST, true);
69curl_setopt($ch, CURLOPT_POSTFIELDS, 'api_option=paste&api_user_key='.$api_user_key.'&api_paste_private='.$api_paste_private.'&api_paste_name='.$api_paste_name.'&api_paste_expire_date='.$api_paste_expire_date.'&api_paste_format='.$api_paste_format.'&api_dev_key='.$api_dev_key.'&api_paste_code='.$api_paste_code.'');
70curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
71curl_setopt($ch, CURLOPT_VERBOSE, 1);
72curl_setopt($ch, CURLOPT_NOBODY, 0);
73
74$response = curl_exec($ch);
75echo $response;
76Possible Good API Responses: (example)
77https://pastebin.com/UIFdu235s
78Possible Bad API Responses:
79Bad API request, invalid api_option
80Bad API request, invalid api_dev_key
81Bad API request, IP blocked
82Bad API request, maximum number of 25 unlisted pastes for your free account
83Bad API request, maximum number of 10 private pastes for your free account
84Bad API request, api_paste_code was empty
85Bad API request, maximum paste file size exceeded
86Bad API request, invalid api_expire_date
87Bad API request, invalid api_paste_private
88Bad API request, invalid api_paste_format
89Bad API request, invalid api_user_key
90Bad API request, invalid or expired api_user_key
91Creating A New Paste, [Required Parameters]
92Include all the following POST parameters when you request the url:
93
941. api_dev_key - which is your unique API Developers Key.
952. api_option - set as paste, this will indicate you want to create a new paste.
963. api_paste_code - this is the text that will be written inside your paste.
97
98Leaving any of these parameters out will result in an error.
99Creating A New Paste, [Optional Parameters]
100These parameters are not required when you create a new paste, but are possible to add:
101
1021. api_user_key - this paramater is part of the login system, which is explained further down the page.
1032. api_paste_name - this will be the name / title of your paste.
1043. api_paste_format - this will be the syntax highlighting value, which is explained in detail further down the page.
1054. api_paste_private - this makes a paste public, unlisted or private, public = 0, unlisted = 1, private = 2
1065. api_paste_expire_date - this sets the expiration date of your paste, the values are explained futher down the page.
107Creating A New Paste, The 'api_paste_format' Paramater In Detail
108We have over 200 syntax highlighting options available, below you can find a list of all the possible values you can use in combination with api_paste_format. Always include the value on the left from the list below, the value on the right is just the full name of the language in question.
109 4cs = 4CS
110 6502acme = 6502 ACME Cross Asse...
111 6502kickass = 6502 Kick Assembler
112 6502tasm = 6502 TASM/64TASS
113 abap = ABAP
114 actionscript = ActionScript
115 actionscript3 = ActionScript 3
116 ada = Ada
117 aimms = AIMMS
118 algol68 = ALGOL 68
119 apache = Apache Log
120 applescript = AppleScript
121 apt_sources = APT Sources
122 arduino = Arduino
123 arm = ARM
124 asm = ASM (NASM)
125 asp = ASP
126 asymptote = Asymptote
127 autoconf = autoconf
128 autohotkey = Autohotkey
129 autoit = AutoIt
130 avisynth = Avisynth
131 awk = Awk
132 bascomavr = BASCOM AVR
133 bash = Bash
134 basic4gl = Basic4GL
135 dos = Batch
136 bibtex = BibTeX
137 blitzbasic = Blitz Basic
138 b3d = Blitz3D
139 bmx = BlitzMax
140 bnf = BNF
141 boo = BOO
142 bf = BrainFuck
143 c = C
144 c_winapi = C (WinAPI)
145 c_mac = C for Macs
146 cil = C Intermediate Language
147 csharp = C#
148 cpp = C++
149 cpp-winapi = C++ (WinAPI)
150 cpp-qt = C++ (with Qt extensi...
151 c_loadrunner = C: Loadrunner
152 caddcl = CAD DCL
153 cadlisp = CAD Lisp
154 ceylon = Ceylon
155 cfdg = CFDG
156 chaiscript = ChaiScript
157 chapel = Chapel
158 clojure = Clojure
159 klonec = Clone C
160 klonecpp = Clone C++
161 cmake = CMake
162 cobol = COBOL
163 coffeescript = CoffeeScript
164 cfm = ColdFusion
165 css = CSS
166 cuesheet = Cuesheet
167 d = D
168 dart = Dart
169 dcl = DCL
170 dcpu16 = DCPU-16
171 dcs = DCS
172 delphi = Delphi
173 oxygene = Delphi Prism (Oxygene)
174 diff = Diff
175 div = DIV
176 dot = DOT
177 e = E
178 ezt = Easytrieve
179 ecmascript = ECMAScript
180 eiffel = Eiffel
181 email = Email
182 epc = EPC
183 erlang = Erlang
184 euphoria = Euphoria
185 fsharp = F#
186 falcon = Falcon
187 filemaker = Filemaker
188 fo = FO Language
189 f1 = Formula One
190 fortran = Fortran
191 freebasic = FreeBasic
192 freeswitch = FreeSWITCH
193 gambas = GAMBAS
194 gml = Game Maker
195 gdb = GDB
196 genero = Genero
197 genie = Genie
198 gettext = GetText
199 go = Go
200 groovy = Groovy
201 gwbasic = GwBasic
202 haskell = Haskell
203 haxe = Haxe
204 hicest = HicEst
205 hq9plus = HQ9 Plus
206 html4strict = HTML
207 html5 = HTML 5
208 icon = Icon
209 idl = IDL
210 ini = INI file
211 inno = Inno Script
212 intercal = INTERCAL
213 io = IO
214 ispfpanel = ISPF Panel Definition
215 j = J
216 java = Java
217 java5 = Java 5
218 javascript = JavaScript
219 jcl = JCL
220 jquery = jQuery
221 json = JSON
222 julia = Julia
223 kixtart = KiXtart
224 kotlin = Kotlin
225 latex = Latex
226 ldif = LDIF
227 lb = Liberty BASIC
228 lsl2 = Linden Scripting
229 lisp = Lisp
230 llvm = LLVM
231 locobasic = Loco Basic
232 logtalk = Logtalk
233 lolcode = LOL Code
234 lotusformulas = Lotus Formulas
235 lotusscript = Lotus Script
236 lscript = LScript
237 lua = Lua
238 m68k = M68000 Assembler
239 magiksf = MagikSF
240 make = Make
241 mapbasic = MapBasic
242 markdown = Markdown
243 matlab = MatLab
244 mirc = mIRC
245 mmix = MIX Assembler
246 modula2 = Modula 2
247 modula3 = Modula 3
248 68000devpac = Motorola 68000 HiSof...
249 mpasm = MPASM
250 mxml = MXML
251 mysql = MySQL
252 nagios = Nagios
253 netrexx = NetRexx
254 newlisp = newLISP
255 nginx = Nginx
256 nim = Nim
257 text = None
258 nsis = NullSoft Installer
259 oberon2 = Oberon 2
260 objeck = Objeck Programming L...
261 objc = Objective C
262 ocaml = OCaml
263 ocaml-brief = OCaml Brief
264 octave = Octave
265 oorexx = Open Object Rexx
266 pf = OpenBSD PACKET FILTER
267 glsl = OpenGL Shading
268 oobas = Openoffice BASIC
269 oracle11 = Oracle 11
270 oracle8 = Oracle 8
271 oz = Oz
272 parasail = ParaSail
273 parigp = PARI/GP
274 pascal = Pascal
275 pawn = Pawn
276 pcre = PCRE
277 per = Per
278 perl = Perl
279 perl6 = Perl 6
280 php = PHP
281 php-brief = PHP Brief
282 pic16 = Pic 16
283 pike = Pike
284 pixelbender = Pixel Bender
285 pli = PL/I
286 plsql = PL/SQL
287 postgresql = PostgreSQL
288 postscript = PostScript
289 povray = POV-Ray
290 powerbuilder = PowerBuilder
291 powershell = PowerShell
292 proftpd = ProFTPd
293 progress = Progress
294 prolog = Prolog
295 properties = Properties
296 providex = ProvideX
297 puppet = Puppet
298 purebasic = PureBasic
299 pycon = PyCon
300 python = Python
301 pys60 = Python for S60
302 q = q/kdb+
303 qbasic = QBasic
304 qml = QML
305 rsplus = R
306 racket = Racket
307 rails = Rails
308 rbs = RBScript
309 rebol = REBOL
310 reg = REG
311 rexx = Rexx
312 robots = Robots
313 rpmspec = RPM Spec
314 ruby = Ruby
315 gnuplot = Ruby Gnuplot
316 rust = Rust
317 sas = SAS
318 scala = Scala
319 scheme = Scheme
320 scilab = Scilab
321 scl = SCL
322 sdlbasic = SdlBasic
323 smalltalk = Smalltalk
324 smarty = Smarty
325 spark = SPARK
326 sparql = SPARQL
327 sqf = SQF
328 sql = SQL
329 standardml = StandardML
330 stonescript = StoneScript
331 sclang = SuperCollider
332 swift = Swift
333 systemverilog = SystemVerilog
334 tsql = T-SQL
335 tcl = TCL
336 teraterm = Tera Term
337 thinbasic = thinBasic
338 typoscript = TypoScript
339 unicon = Unicon
340 uscript = UnrealScript
341 upc = UPC
342 urbi = Urbi
343 vala = Vala
344 vbnet = VB.NET
345 vbscript = VBScript
346 vedit = Vedit
347 verilog = VeriLog
348 vhdl = VHDL
349 vim = VIM
350 visualprolog = Visual Pro Log
351 vb = VisualBasic
352 visualfoxpro = VisualFoxPro
353 whitespace = WhiteSpace
354 whois = WHOIS
355 winbatch = Winbatch
356 xbasic = XBasic
357 xml = XML
358 xorg_conf = Xorg Config
359 xpp = XPP
360 yaml = YAML
361 z80 = Z80 Assembler
362 zxbasic = ZXBasic
363
364Creating A New Paste, The 'api_paste_expire_date' Paramater In Detail
365We have 9 valid values available which you can use with the api_paste_expire_date parameter:
366 N = Never
367 10M = 10 Minutes
368 1H = 1 Hour
369 1D = 1 Day
370 1W = 1 Week
371 2W = 2 Weeks
372 1M = 1 Month
373 6M = 6 Months
374 1Y = 1 Year
375Creating A New Paste, The 'api_paste_private' Paramater In Detail
376We have 3 valid values available which you can use with the api_paste_private parameter:
377 0 = Public
378 1 = Unlisted
379 2 = Private (only allowed in combination with api_user_key, as you have to be logged into your account to access the paste)
380Creating An 'api_user_key' Using The API Member Login System
381With this API we allow you to create applications which use the Pastebin members system. Sending a valid POST request to our API login system will return a unique api_user_key which can then be used to create a paste as a logged in user. Please send the request to the link shown below:
382https://pastebin.com/api/api_login.php
383Include all the following POST parameters when you request the url:
3841. api_dev_key - this is your API Developer Key, in your case: YOUR API DEVELOPER KEY
3852. api_user_name - this is the username of the user you want to login.
3863. api_user_password - this is the password of the user you want to login.
387
388If all 3 values match, a valid user session key will be returned. This key can be used as the api_user_key paramater. Only one key can be active at the same time for the same user. This key does not expire, unless a new one is generated. We recommend creating just one, then caching that key locally as it does not expire.
389
390Below is a PHP example using curl how to create a valid api_user_key:
391$api_dev_key = 'YOUR API DEVELOPER KEY';
392$api_user_name = 'a_users_username';
393$api_user_password = 'a_users_password';
394$api_user_name = urlencode($api_user_name);
395$api_user_password = urlencode($api_user_password);
396$url = 'https://pastebin.com/api/api_login.php';
397$ch = curl_init($url);
398
399curl_setopt($ch, CURLOPT_POST, true);
400curl_setopt($ch, CURLOPT_POSTFIELDS, 'api_dev_key='.$api_dev_key.'&api_user_name='.$api_user_name.'&api_user_password='.$api_user_password.'');
401curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
402curl_setopt($ch, CURLOPT_VERBOSE, 1);
403curl_setopt($ch, CURLOPT_NOBODY, 0);
404
405$response = curl_exec($ch);
406echo $response;
407Possible Good API Responses: (example)
4086c6d3fe13b19bbd6e479b705df0a607f
409Possible Bad API Responses:
410Bad API request, use POST request, not GET
411Bad API request, invalid api_dev_key
412Bad API request, invalid login
413Bad API request, account not active
414Bad API request, invalid POST parameters
415If you quickly need to create a personal api_user_key, you can use this form to generate one.
416Listing Pastes Created By A User
417With this API you can list all the pastes created by a certain user. You will need send a valid POST request to the url below to access the data:
418https://pastebin.com/api/api_post.php
419Include all the following POST parameters when you request the url:
4201. api_dev_key - this is your API Developer Key, in your case: YOUR API DEVELOPER KEY
4212. api_user_key - this is the session key of the logged in user. How to obtain such a key
4223. api_results_limit - this is not required, by default its set to 50, min value is 1, max value is 1000
4234. api_option - set as 'list'
424
425Below is a PHP example using curl how to list pastes:
426$api_dev_key = 'YOUR API DEVELOPER KEY';
427$api_user_key = '';
428$api_results_limit = '100';
429$url = 'https://pastebin.com/api/api_post.php';
430$ch = curl_init($url);
431
432curl_setopt($ch, CURLOPT_POST, true);
433curl_setopt($ch, CURLOPT_POSTFIELDS, 'api_option=list&api_user_key='.$api_user_key.'&api_dev_key='.$api_dev_key.'&api_results_limit='.$api_results_limit.'');
434curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
435curl_setopt($ch, CURLOPT_VERBOSE, 1);
436curl_setopt($ch, CURLOPT_NOBODY, 0);
437
438$response = curl_exec($ch);
439echo $response;
440Below is an example output of a users paste listing:
441<paste>
442 <paste_key>0b42rwhf</paste_key>
443 <paste_date>1297953260</paste_date>
444 <paste_title>javascript test</paste_title>
445 <paste_size>15</paste_size>
446 <paste_expire_date>1297956860</paste_expire_date>
447 <paste_private>0</paste_private>
448 <paste_format_long>JavaScript</paste_format_long>
449 <paste_format_short>javascript</paste_format_short>
450 <paste_url>https://pastebin.com/0b42rwhf</paste_url>
451 <paste_hits>15</paste_hits>
452</paste>
453<paste>
454 <paste_key>0C343n0d</paste_key>
455 <paste_date>1297694343</paste_date>
456 <paste_title>Welcome To Pastebin V3</paste_title>
457 <paste_size>490</paste_size>
458 <paste_expire_date>0</paste_expire_date>
459 <paste_private>0</paste_private>
460 <paste_format_long>None</paste_format_long>
461 <paste_format_short>text</paste_format_short>
462 <paste_url>https://pastebin.com/0C343n0d</paste_url>
463 <paste_hits>65</paste_hits>
464</paste>
465Other Possible Good API Responses:
466No pastes found.
467Possible Bad API Responses:
468Bad API request, invalid api_option
469Bad API request, invalid api_dev_key
470Bad API request, invalid api_user_key
471Deleting A Paste Created By A User
472With this API you can delete pastes created by certain users. You will need to send a valid POST request to the url below to access the data:
473https://pastebin.com/api/api_post.php
474Include all the following POST parameters when you request the url:
4751. api_dev_key - this is your API Developer Key, in your case: YOUR API DEVELOPER KEY
4762. api_user_key - this is the session key of the logged in user. How to obtain such a key
4773. api_paste_key - this is the unique key of the paste you want to delete.
4784. api_option - set as 'delete'
479
480Below is a PHP example using curl how to create a valid 'api_user_key':
481$api_dev_key = 'YOUR API DEVELOPER KEY';
482$api_user_key = '';
483$api_paste_key = '';
484$url = 'https://pastebin.com/api/api_post.php';
485$ch = curl_init($url);
486
487curl_setopt($ch, CURLOPT_POST, true);
488curl_setopt($ch, CURLOPT_POSTFIELDS, 'api_option=delete&api_user_key='.$api_user_key.'&api_dev_key='.$api_dev_key.'&api_paste_key='.$api_paste_key.'');
489curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
490curl_setopt($ch, CURLOPT_VERBOSE, 1);
491curl_setopt($ch, CURLOPT_NOBODY, 0);
492
493$response = curl_exec($ch);
494echo $response;
495Possible Good API Responses:
496Paste Removed
497Possible Bad API Responses:
498Bad API request, invalid api_option
499Bad API request, invalid api_dev_key
500Bad API request, invalid api_user_key
501Bad API request, invalid permission to remove paste
502Getting A Users Information And Settings
503With this API you can obtain a users personal information and certain settings. You will need to send a valid POST request to the url below to access the data:
504https://pastebin.com/api/api_post.php
505Include all the following POST parameters when you request the url:
5061. api_dev_key - this is your API Developer Key, in your case: YOUR API DEVELOPER KEY
5072. api_user_key - this is the session key of the logged in user. How to obtain such a key
5083. api_option - set as 'userdetails'
509
510Below is a PHP example using curl how to create a valid 'api_user_key':
511$api_dev_key = 'YOUR API DEVELOPER KEY';
512$api_user_key = '';
513$url = 'https://pastebin.com/api/api_post.php';
514$ch = curl_init($url);
515
516curl_setopt($ch, CURLOPT_POST, true);
517curl_setopt($ch, CURLOPT_POSTFIELDS, 'api_option=userdetails&api_user_key='.$api_user_key.'&api_dev_key='.$api_dev_key.'');
518curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
519curl_setopt($ch, CURLOPT_VERBOSE, 1);
520curl_setopt($ch, CURLOPT_NOBODY, 0);
521
522$response = curl_exec($ch);
523echo $response;
524Below is an example output of a user information listing:
525<user>
526 <user_name>wiz_kitty</user_name>
527 <user_format_short>text</user_format_short>
528 <user_expiration>N</user_expiration>
529 <user_avatar_url>https://pastebin.com/cache/a/1.jpg</user_avatar_url>
530 <user_private>1</user_private> (0 Public, 1 Unlisted, 2 Private)
531 <user_website>https://myawesomesite.com</user_website>
532 <user_email>oh@dear.com</user_email>
533 <user_location>New York</user_location>
534 <user_account_type>1</user_account_type> (0 normal, 1 PRO)
535</user>
536Possible Bad API Responses:
537Bad API request, invalid api_option
538Bad API request, invalid api_dev_key
539Bad API request, invalid api_user_key
540Getting raw paste output of users pastes including 'private' pastes
541With this API you can obtain the raw paste output of a users pastes, including private pastes:
542https://pastebin.com/api/api_raw.php
543Include all the following POST parameters when you request the url:
5441. api_dev_key - this is your API Developer Key, in your case: YOUR API DEVELOPER KEY
5452. api_user_key - this is the session key of the logged in user. How to obtain such a key
5463. api_paste_key - this is paste key you want to fetch the data from.
5474. api_option - set as 'show_paste'
548
549Below is a PHP example using curl how to fetch a users raw paste output:
550$api_dev_key = 'YOUR API DEVELOPER KEY';
551$api_user_key = '';
552$url = 'https://pastebin.com/api/api_raw.php';
553$ch = curl_init($url);
554
555curl_setopt($ch, CURLOPT_POST, true);
556curl_setopt($ch, CURLOPT_POSTFIELDS, 'api_option=show_paste&api_user_key='.$api_user_key.'&api_dev_key='.$api_dev_key.'&api_paste_key=A_VALID_PASTE_KEY_HERE');
557curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
558curl_setopt($ch, CURLOPT_VERBOSE, 1);
559curl_setopt($ch, CURLOPT_NOBODY, 0);
560
561$response = curl_exec($ch);
562echo $response;
563Possible Bad API Responses:
564Bad API request, invalid api_option
565Bad API request, invalid api_dev_key
566Bad API request, invalid api_user_key
567Bad API request, invalid permission to view this paste or invalid api_paste_key
568Getting raw paste output of any 'public' & 'unlisted' pastes
569This option is actually not part of our API, but you might still want to use it. To get the raw output of any public or unlisted paste you can use our raw data output url:
570https://pastebin.com/raw/
571Simply add the paste_key at the end of that url and you will get the raw output.
572TIP: If you are trying to scrape our content, check out our scraping API.
573
574
575create new paste / dealsnew! / syntax languages / archive / faq / tools / night mode / api / scraping api
576privacy statement / cookies policy / terms of service / security disclosure / dmca / contact
577
578By using Pastebin.com you agree to our cookies policy to enhance your experience.
579Site design & logo © 2020 Pastebin; user contributions (pastes) licensed under cc by-sa 3.0 -- FavPNG -- Dedicated Server Hosting by Steadfast
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256-->
1257
1258
1259How do you protect yourself from romance scams?
1260GreatCall.com
1261Recommended by