-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLICENSE
1048 lines (873 loc) · 75.8 KB
/
LICENSE
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>
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# githubog: http://ogp.me/ns/fb/githubog#">
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>prueba/LICENSE at master · rogegg/prueba</title>
<link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="GitHub" />
<link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub" />
<link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-114.png" />
<link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114.png" />
<link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-144.png" />
<link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144.png" />
<link rel="logo" type="image/svg" href="https://github-media-downloads.s3.amazonaws.com/github-logo.svg" />
<meta property="og:image" content="https://github.global.ssl.fastly.net/images/modules/logos_page/Octocat.png">
<meta name="hostname" content="github-fe126-cp1-prd.iad.github.net">
<meta name="ruby" content="ruby 1.9.3p194-tcs-github-tcmalloc (2012-05-25, TCS patched 2012-05-27, GitHub v1.0.36) [x86_64-linux]">
<link rel="assets" href="https://github.global.ssl.fastly.net/">
<link rel="conduit-xhr" href="https://ghconduit.com:25035/">
<link rel="xhr-socket" href="/_sockets" />
<meta name="msapplication-TileImage" content="/windows-tile.png" />
<meta name="msapplication-TileColor" content="#ffffff" />
<meta name="selected-link" value="repo_source" data-pjax-transient />
<meta content="collector.githubapp.com" name="octolytics-host" /><meta content="collector-cdn.github.com" name="octolytics-script-host" /><meta content="github" name="octolytics-app-id" /><meta content="4F97745D:3B8F:1C80C070:5262B37F" name="octolytics-dimension-request_id" /><meta content="5522169" name="octolytics-actor-id" /><meta content="rogegg" name="octolytics-actor-login" /><meta content="fa4bf3d9ef445c851e866d08fbc0355d3cf74f138478a17a244621186535b612" name="octolytics-actor-hash" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<meta content="authenticity_token" name="csrf-param" />
<meta content="lvKs3/mPWitiCFG89a/MDRsr77Ptx2lg7P4T89Wkbdw=" name="csrf-token" />
<link href="https://github.global.ssl.fastly.net/assets/github-d81d265c47fed9485166cd80afbf29d6e4c54207.css" media="all" rel="stylesheet" type="text/css" />
<link href="https://github.global.ssl.fastly.net/assets/github2-eb8d744b865b7df0f22e830fbd1aa95130df801f.css" media="all" rel="stylesheet" type="text/css" />
<script src="https://github.global.ssl.fastly.net/assets/frameworks-8a61e23841d9e5ecc084748ec552e548cd05c977.js" type="text/javascript"></script>
<script src="https://github.global.ssl.fastly.net/assets/github-a3b3709d87ed3ca2cd30bf660f8567ac67249e1e.js" type="text/javascript"></script>
<meta http-equiv="x-pjax-version" content="f2823717111a8f5c7ab94a039a3880eb">
<link data-pjax-transient rel='permalink' href='/rogegg/prueba/blob/f6e5d2376bb3ef69a48521d2f7f19dc48cd15490/LICENSE'>
<meta property="og:title" content="prueba"/>
<meta property="og:type" content="githubog:gitrepository"/>
<meta property="og:url" content="https://github.com/rogegg/prueba"/>
<meta property="og:image" content="https://github.global.ssl.fastly.net/images/gravatars/gravatar-user-420.png"/>
<meta property="og:site_name" content="GitHub"/>
<meta property="og:description" content="Contribute to prueba development by creating an account on GitHub."/>
<meta name="description" content="Contribute to prueba development by creating an account on GitHub." />
<meta content="5522169" name="octolytics-dimension-user_id" /><meta content="rogegg" name="octolytics-dimension-user_login" /><meta content="13704347" name="octolytics-dimension-repository_id" /><meta content="rogegg/prueba" name="octolytics-dimension-repository_nwo" /><meta content="true" name="octolytics-dimension-repository_public" /><meta content="false" name="octolytics-dimension-repository_is_fork" /><meta content="13704347" name="octolytics-dimension-repository_network_root_id" /><meta content="rogegg/prueba" name="octolytics-dimension-repository_network_root_nwo" />
<link href="https://github.com/rogegg/prueba/commits/master.atom" rel="alternate" title="Recent Commits to prueba:master" type="application/atom+xml" />
</head>
<body class="logged_in env-production linux vis-public page-blob">
<div class="wrapper">
<div class="header header-logged-in true">
<div class="container clearfix">
<a class="header-logo-invertocat" href="https://github.com/organizations/IV-GII">
<span class="mega-octicon octicon-mark-github"></span>
</a>
<a href="/notifications" class="notification-indicator tooltipped downwards" data-gotokey="n" title="You have unread notifications">
<span class="mail-status unread"></span>
</a>
<div class="command-bar js-command-bar in-repository">
<form accept-charset="UTF-8" action="/search" class="command-bar-form" id="top_search_form" method="get">
<input type="text" data-hotkey=" s" name="q" id="js-command-bar-field" placeholder="Search or type a command" tabindex="1" autocapitalize="off"
data-username="rogegg"
data-repo="rogegg/prueba"
data-branch="master"
data-sha="19865410d7ff1ad5e480464dc14994d454408d0f"
>
<input type="hidden" name="nwo" value="rogegg/prueba" />
<div class="select-menu js-menu-container js-select-menu search-context-select-menu">
<span class="minibutton select-menu-button js-menu-target">
<span class="js-select-button">This repository</span>
</span>
<div class="select-menu-modal-holder js-menu-content js-navigation-container">
<div class="select-menu-modal">
<div class="select-menu-item js-navigation-item js-this-repository-navigation-item selected">
<span class="select-menu-item-icon octicon octicon-check"></span>
<input type="radio" class="js-search-this-repository" name="search_target" value="repository" checked="checked" />
<div class="select-menu-item-text js-select-button-text">This repository</div>
</div> <!-- /.select-menu-item -->
<div class="select-menu-item js-navigation-item js-all-repositories-navigation-item">
<span class="select-menu-item-icon octicon octicon-check"></span>
<input type="radio" name="search_target" value="global" />
<div class="select-menu-item-text js-select-button-text">All repositories</div>
</div> <!-- /.select-menu-item -->
</div>
</div>
</div>
<span class="octicon help tooltipped downwards" title="Show command bar help">
<span class="octicon octicon-question"></span>
</span>
<input type="hidden" name="ref" value="cmdform">
</form>
<ul class="top-nav">
<li class="explore"><a href="/explore">Explore</a></li>
<li><a href="https://gist.github.com">Gist</a></li>
<li><a href="/blog">Blog</a></li>
<li><a href="https://help.github.com">Help</a></li>
</ul>
</div>
<ul id="user-links">
<li>
<a href="/rogegg" class="name">
<img height="20" src="https://2.gravatar.com/avatar/426038f9f528896843b6da7652af840c?d=https%3A%2F%2Fidenticons.github.com%2F4f1f1b47744d8005987094498a47477f.png&s=140" width="20" /> rogegg
</a>
</li>
<li>
<a href="/new" id="new_repo" class="tooltipped downwards" title="Create a new repo" aria-label="Create a new repo">
<span class="octicon octicon-repo-create"></span>
</a>
</li>
<li>
<a href="/settings/profile" id="account_settings"
class="tooltipped downwards"
aria-label="Account settings "
title="Account settings ">
<span class="octicon octicon-tools"></span>
</a>
</li>
<li>
<a class="tooltipped downwards" href="/logout" data-method="post" id="logout" title="Sign out" aria-label="Sign out">
<span class="octicon octicon-log-out"></span>
</a>
</li>
</ul>
<div class="js-new-dropdown-contents hidden">
<ul class="dropdown-menu">
<li>
<a href="/new"><span class="octicon octicon-repo-create"></span> New repository</a>
</li>
<li>
<a href="/organizations/new"><span class="octicon octicon-organization"></span> New organization</a>
</li>
<li class="section-title">
<span title="rogegg/prueba">This repository</span>
</li>
<li>
<a href="/rogegg/prueba/issues/new"><span class="octicon octicon-issue-opened"></span> New issue</a>
</li>
<li>
<a href="/rogegg/prueba/settings/collaboration"><span class="octicon octicon-person-add"></span> New collaborator</a>
</li>
</ul>
</div>
</div>
</div>
<div class="site" itemscope itemtype="http://schema.org/WebPage">
<div class="pagehead repohead instapaper_ignore readability-menu">
<div class="container">
<ul class="pagehead-actions">
<li class="subscription">
<form accept-charset="UTF-8" action="/notifications/subscribe" class="js-social-container" data-autosubmit="true" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="lvKs3/mPWitiCFG89a/MDRsr77Ptx2lg7P4T89Wkbdw=" /></div> <input id="repository_id" name="repository_id" type="hidden" value="13704347" />
<div class="select-menu js-menu-container js-select-menu">
<a class="social-count js-social-count" href="/rogegg/prueba/watchers">
1
</a>
<span class="minibutton select-menu-button with-count js-menu-target" role="button" tabindex="0">
<span class="js-select-button">
<span class="octicon octicon-eye-unwatch"></span>
Unwatch
</span>
</span>
<div class="select-menu-modal-holder">
<div class="select-menu-modal subscription-menu-modal js-menu-content">
<div class="select-menu-header">
<span class="select-menu-title">Notification status</span>
<span class="octicon octicon-remove-close js-menu-close"></span>
</div> <!-- /.select-menu-header -->
<div class="select-menu-list js-navigation-container" role="menu">
<div class="select-menu-item js-navigation-item " role="menuitem" tabindex="0">
<span class="select-menu-item-icon octicon octicon-check"></span>
<div class="select-menu-item-text">
<input id="do_included" name="do" type="radio" value="included" />
<h4>Not watching</h4>
<span class="description">You only receive notifications for discussions in which you participate or are @mentioned.</span>
<span class="js-select-button-text hidden-select-button-text">
<span class="octicon octicon-eye-watch"></span>
Watch
</span>
</div>
</div> <!-- /.select-menu-item -->
<div class="select-menu-item js-navigation-item selected" role="menuitem" tabindex="0">
<span class="select-menu-item-icon octicon octicon octicon-check"></span>
<div class="select-menu-item-text">
<input checked="checked" id="do_subscribed" name="do" type="radio" value="subscribed" />
<h4>Watching</h4>
<span class="description">You receive notifications for all discussions in this repository.</span>
<span class="js-select-button-text hidden-select-button-text">
<span class="octicon octicon-eye-unwatch"></span>
Unwatch
</span>
</div>
</div> <!-- /.select-menu-item -->
<div class="select-menu-item js-navigation-item " role="menuitem" tabindex="0">
<span class="select-menu-item-icon octicon octicon-check"></span>
<div class="select-menu-item-text">
<input id="do_ignore" name="do" type="radio" value="ignore" />
<h4>Ignoring</h4>
<span class="description">You do not receive any notifications for discussions in this repository.</span>
<span class="js-select-button-text hidden-select-button-text">
<span class="octicon octicon-mute"></span>
Stop ignoring
</span>
</div>
</div> <!-- /.select-menu-item -->
</div> <!-- /.select-menu-list -->
</div> <!-- /.select-menu-modal -->
</div> <!-- /.select-menu-modal-holder -->
</div> <!-- /.select-menu -->
</form>
</li>
<li>
<div class="js-toggler-container js-social-container starring-container ">
<a href="/rogegg/prueba/unstar" class="minibutton with-count js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
</a>
<a href="/rogegg/prueba/star" class="minibutton with-count js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
<span class="octicon octicon-star"></span><span class="text">Star</span>
</a>
<a class="social-count js-social-count" href="/rogegg/prueba/stargazers">0</a>
</div>
</li>
<li>
<a href="/rogegg/prueba/fork" class="minibutton with-count js-toggler-target fork-button lighter upwards" title="Fork this repo" rel="facebox nofollow">
<span class="octicon octicon-git-branch-create"></span><span class="text">Fork</span>
</a>
<a href="/rogegg/prueba/network" class="social-count">0</a>
</li>
</ul>
<h1 itemscope itemtype="http://data-vocabulary.org/Breadcrumb" class="entry-title public">
<span class="repo-label"><span>public</span></span>
<span class="mega-octicon octicon-repo"></span>
<span class="author">
<a href="/rogegg" class="url fn" itemprop="url" rel="author"><span itemprop="title">rogegg</span></a>
</span>
<span class="repohead-name-divider">/</span>
<strong><a href="/rogegg/prueba" class="js-current-repository js-repo-home-link">prueba</a></strong>
<span class="page-context-loader">
<img alt="Octocat-spinner-32" height="16" src="https://github.global.ssl.fastly.net/images/spinners/octocat-spinner-32.gif" width="16" />
</span>
</h1>
</div><!-- /.container -->
</div><!-- /.repohead -->
<div class="container">
<div class="repository-with-sidebar repo-container ">
<div class="repository-sidebar">
<div class="repo-nav repo-nav-full js-repository-container-pjax js-octicon-loaders">
<div class="repo-nav-contents">
<ul class="repo-menu">
<li class="tooltipped leftwards" title="Code">
<a href="/rogegg/prueba" aria-label="Code" class="js-selected-navigation-item selected" data-gotokey="c" data-pjax="true" data-selected-links="repo_source repo_downloads repo_commits repo_tags repo_branches /rogegg/prueba">
<span class="octicon octicon-code"></span> <span class="full-word">Code</span>
<img alt="Octocat-spinner-32" class="mini-loader" height="16" src="https://github.global.ssl.fastly.net/images/spinners/octocat-spinner-32.gif" width="16" />
</a> </li>
<li class="tooltipped leftwards" title="Issues">
<a href="/rogegg/prueba/issues" aria-label="Issues" class="js-selected-navigation-item js-disable-pjax" data-gotokey="i" data-selected-links="repo_issues /rogegg/prueba/issues">
<span class="octicon octicon-issue-opened"></span> <span class="full-word">Issues</span>
<span class='counter'>0</span>
<img alt="Octocat-spinner-32" class="mini-loader" height="16" src="https://github.global.ssl.fastly.net/images/spinners/octocat-spinner-32.gif" width="16" />
</a> </li>
<li class="tooltipped leftwards" title="Pull Requests"><a href="/rogegg/prueba/pulls" aria-label="Pull Requests" class="js-selected-navigation-item js-disable-pjax" data-gotokey="p" data-selected-links="repo_pulls /rogegg/prueba/pulls">
<span class="octicon octicon-git-pull-request"></span> <span class="full-word">Pull Requests</span>
<span class='counter'>0</span>
<img alt="Octocat-spinner-32" class="mini-loader" height="16" src="https://github.global.ssl.fastly.net/images/spinners/octocat-spinner-32.gif" width="16" />
</a> </li>
<li class="tooltipped leftwards" title="Wiki">
<a href="/rogegg/prueba/wiki" aria-label="Wiki" class="js-selected-navigation-item " data-pjax="true" data-selected-links="repo_wiki /rogegg/prueba/wiki">
<span class="octicon octicon-book"></span> <span class="full-word">Wiki</span>
<img alt="Octocat-spinner-32" class="mini-loader" height="16" src="https://github.global.ssl.fastly.net/images/spinners/octocat-spinner-32.gif" width="16" />
</a> </li>
</ul>
<div class="repo-menu-separator"></div>
<ul class="repo-menu">
<li class="tooltipped leftwards" title="Pulse">
<a href="/rogegg/prueba/pulse" aria-label="Pulse" class="js-selected-navigation-item " data-pjax="true" data-selected-links="pulse /rogegg/prueba/pulse">
<span class="octicon octicon-pulse"></span> <span class="full-word">Pulse</span>
<img alt="Octocat-spinner-32" class="mini-loader" height="16" src="https://github.global.ssl.fastly.net/images/spinners/octocat-spinner-32.gif" width="16" />
</a> </li>
<li class="tooltipped leftwards" title="Graphs">
<a href="/rogegg/prueba/graphs" aria-label="Graphs" class="js-selected-navigation-item " data-pjax="true" data-selected-links="repo_graphs repo_contributors /rogegg/prueba/graphs">
<span class="octicon octicon-graph"></span> <span class="full-word">Graphs</span>
<img alt="Octocat-spinner-32" class="mini-loader" height="16" src="https://github.global.ssl.fastly.net/images/spinners/octocat-spinner-32.gif" width="16" />
</a> </li>
<li class="tooltipped leftwards" title="Network">
<a href="/rogegg/prueba/network" aria-label="Network" class="js-selected-navigation-item js-disable-pjax" data-selected-links="repo_network /rogegg/prueba/network">
<span class="octicon octicon-git-branch"></span> <span class="full-word">Network</span>
<img alt="Octocat-spinner-32" class="mini-loader" height="16" src="https://github.global.ssl.fastly.net/images/spinners/octocat-spinner-32.gif" width="16" />
</a> </li>
</ul>
<div class="repo-menu-separator"></div>
<ul class="repo-menu">
<li class="tooltipped leftwards" title="Settings">
<a href="/rogegg/prueba/settings" data-pjax aria-label="Settings">
<span class="octicon octicon-tools"></span> <span class="full-word">Settings</span>
<img alt="Octocat-spinner-32" class="mini-loader" height="16" src="https://github.global.ssl.fastly.net/images/spinners/octocat-spinner-32.gif" width="16" />
</a>
</li>
</ul>
</div>
</div>
<div class="only-with-full-nav">
<div class="clone-url "
data-protocol-type="http"
data-url="/users/set_protocol?protocol_selector=http&protocol_type=push">
<h3><strong>HTTPS</strong> clone URL</h3>
<div class="clone-url-box">
<input type="text" class="clone js-url-field"
value="https://github.com/rogegg/prueba.git" readonly="readonly">
<span class="js-zeroclipboard url-box-clippy minibutton zeroclipboard-button" data-clipboard-text="https://github.com/rogegg/prueba.git" data-copied-hint="copied!" title="copy to clipboard"><span class="octicon octicon-clippy"></span></span>
</div>
</div>
<div class="clone-url open"
data-protocol-type="ssh"
data-url="/users/set_protocol?protocol_selector=ssh&protocol_type=push">
<h3><strong>SSH</strong> clone URL</h3>
<div class="clone-url-box">
<input type="text" class="clone js-url-field"
value="[email protected]:rogegg/prueba.git" readonly="readonly">
<span class="js-zeroclipboard url-box-clippy minibutton zeroclipboard-button" data-clipboard-text="[email protected]:rogegg/prueba.git" data-copied-hint="copied!" title="copy to clipboard"><span class="octicon octicon-clippy"></span></span>
</div>
</div>
<div class="clone-url "
data-protocol-type="subversion"
data-url="/users/set_protocol?protocol_selector=subversion&protocol_type=push">
<h3><strong>Subversion</strong> checkout URL</h3>
<div class="clone-url-box">
<input type="text" class="clone js-url-field"
value="https://github.com/rogegg/prueba" readonly="readonly">
<span class="js-zeroclipboard url-box-clippy minibutton zeroclipboard-button" data-clipboard-text="https://github.com/rogegg/prueba" data-copied-hint="copied!" title="copy to clipboard"><span class="octicon octicon-clippy"></span></span>
</div>
</div>
<p class="clone-options">You can clone with
<a href="#" class="js-clone-selector" data-protocol="http">HTTPS</a>,
<a href="#" class="js-clone-selector" data-protocol="ssh">SSH</a>,
or <a href="#" class="js-clone-selector" data-protocol="subversion">Subversion</a>.
<span class="octicon help tooltipped upwards" title="Get help on which URL is right for you.">
<a href="https://help.github.com/articles/which-remote-url-should-i-use">
<span class="octicon octicon-question"></span>
</a>
</span>
</p>
<a href="/rogegg/prueba/archive/master.zip"
class="minibutton sidebar-button"
title="Download this repository as a zip file"
rel="nofollow">
<span class="octicon octicon-cloud-download"></span>
Download ZIP
</a>
</div>
</div><!-- /.repository-sidebar -->
<div id="js-repo-pjax-container" class="repository-content context-loader-container" data-pjax-container>
<!-- blob contrib key: blob_contributors:v21:cd67f5c493198df871d32b73e63f7ce5 -->
<p title="This is a placeholder element" class="js-history-link-replace hidden"></p>
<a href="/rogegg/prueba/find/master" data-pjax data-hotkey="t" class="js-show-file-finder" style="display:none">Show File Finder</a>
<div class="file-navigation">
<div class="select-menu js-menu-container js-select-menu" >
<span class="minibutton select-menu-button js-menu-target" data-hotkey="w"
data-master-branch="master"
data-ref="master"
role="button" aria-label="Switch branches or tags" tabindex="0">
<span class="octicon octicon-git-branch"></span>
<i>branch:</i>
<span class="js-select-button">master</span>
</span>
<div class="select-menu-modal-holder js-menu-content js-navigation-container" data-pjax>
<div class="select-menu-modal">
<div class="select-menu-header">
<span class="select-menu-title">Switch branches/tags</span>
<span class="octicon octicon-remove-close js-menu-close"></span>
</div> <!-- /.select-menu-header -->
<div class="select-menu-filters">
<div class="select-menu-text-filter">
<input type="text" aria-label="Find or create a branch…" id="context-commitish-filter-field" class="js-filterable-field js-navigation-enable" placeholder="Find or create a branch…">
</div>
<div class="select-menu-tabs">
<ul>
<li class="select-menu-tab">
<a href="#" data-tab-filter="branches" class="js-select-menu-tab">Branches</a>
</li>
<li class="select-menu-tab">
<a href="#" data-tab-filter="tags" class="js-select-menu-tab">Tags</a>
</li>
</ul>
</div><!-- /.select-menu-tabs -->
</div><!-- /.select-menu-filters -->
<div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="branches">
<div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">
<div class="select-menu-item js-navigation-item selected">
<span class="select-menu-item-icon octicon octicon-check"></span>
<a href="/rogegg/prueba/blob/master/LICENSE"
data-name="master"
data-skip-pjax="true"
rel="nofollow"
class="js-navigation-open select-menu-item-text js-select-button-text css-truncate-target"
title="master">master</a>
</div> <!-- /.select-menu-item -->
</div>
<form accept-charset="UTF-8" action="/rogegg/prueba/branches" class="js-create-branch select-menu-item select-menu-new-item-form js-navigation-item js-new-item-form" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="lvKs3/mPWitiCFG89a/MDRsr77Ptx2lg7P4T89Wkbdw=" /></div>
<span class="octicon octicon-git-branch-create select-menu-item-icon"></span>
<div class="select-menu-item-text">
<h4>Create branch: <span class="js-new-item-name"></span></h4>
<span class="description">from ‘master’</span>
</div>
<input type="hidden" name="name" id="name" class="js-new-item-value">
<input type="hidden" name="branch" id="branch" value="master" />
<input type="hidden" name="path" id="branch" value="LICENSE" />
</form> <!-- /.select-menu-item -->
</div> <!-- /.select-menu-list -->
<div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="tags">
<div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">
</div>
<div class="select-menu-no-results">Nothing to show</div>
</div> <!-- /.select-menu-list -->
</div> <!-- /.select-menu-modal -->
</div> <!-- /.select-menu-modal-holder -->
</div> <!-- /.select-menu -->
<div class="breadcrumb">
<span class='repo-root js-repo-root'><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/rogegg/prueba" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">prueba</span></a></span></span><span class="separator"> / </span><strong class="final-path">LICENSE</strong> <span class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="LICENSE" data-copied-hint="copied!" title="copy to clipboard"><span class="octicon octicon-clippy"></span></span>
</div>
</div>
<div class="commit file-history-tease">
<img class="main-avatar" height="24" src="https://0.gravatar.com/avatar/426038f9f528896843b6da7652af840c?d=https%3A%2F%2Fidenticons.github.com%2F4f1f1b47744d8005987094498a47477f.png&s=140" width="24" />
<span class="author"><a href="/rogegg" rel="author">rogegg</a></span>
<time class="js-relative-date" datetime="2013-10-19T09:29:01-07:00" title="2013-10-19 09:29:01">October 19, 2013</time>
<div class="commit-title">
<a href="/rogegg/prueba/commit/f6e5d2376bb3ef69a48521d2f7f19dc48cd15490" class="message" data-pjax="true" title="Initial commit">Initial commit</a>
</div>
<div class="participation">
<p class="quickstat"><a href="#blob_contributors_box" rel="facebox"><strong>1</strong> contributor</a></p>
</div>
<div id="blob_contributors_box" style="display:none">
<h2 class="facebox-header">Users who have contributed to this file</h2>
<ul class="facebox-user-list">
<li class="facebox-user-list-item">
<img height="24" src="https://0.gravatar.com/avatar/426038f9f528896843b6da7652af840c?d=https%3A%2F%2Fidenticons.github.com%2F4f1f1b47744d8005987094498a47477f.png&s=140" width="24" />
<a href="/rogegg">rogegg</a>
</li>
</ul>
</div>
</div>
<div id="files" class="bubble">
<div class="file">
<div class="meta">
<div class="info">
<span class="icon"><b class="octicon octicon-file-text"></b></span>
<span class="mode" title="File Mode">file</span>
<span>340 lines (280 sloc)</span>
<span>17.99 kb</span>
</div>
<div class="actions">
<div class="button-group">
<a class="minibutton"
href="/rogegg/prueba/edit/master/LICENSE"
data-method="post" rel="nofollow" data-hotkey="e">Edit</a>
<a href="/rogegg/prueba/raw/master/LICENSE" class="button minibutton " id="raw-url">Raw</a>
<a href="/rogegg/prueba/blame/master/LICENSE" class="button minibutton ">Blame</a>
<a href="/rogegg/prueba/commits/master/LICENSE" class="button minibutton " rel="nofollow">History</a>
</div><!-- /.button-group -->
<a class="minibutton danger empty-icon tooltipped downwards"
href="/rogegg/prueba/delete/master/LICENSE"
title=""
data-method="post" data-test-id="delete-blob-file" rel="nofollow">
Delete
</a>
</div><!-- /.actions -->
</div>
<div class="blob-wrapper data type-text js-blob-data">
<table class="file-code file-diff">
<tr class="file-code-line">
<td class="blob-line-nums">
<span id="L1" rel="#L1">1</span>
<span id="L2" rel="#L2">2</span>
<span id="L3" rel="#L3">3</span>
<span id="L4" rel="#L4">4</span>
<span id="L5" rel="#L5">5</span>
<span id="L6" rel="#L6">6</span>
<span id="L7" rel="#L7">7</span>
<span id="L8" rel="#L8">8</span>
<span id="L9" rel="#L9">9</span>
<span id="L10" rel="#L10">10</span>
<span id="L11" rel="#L11">11</span>
<span id="L12" rel="#L12">12</span>
<span id="L13" rel="#L13">13</span>
<span id="L14" rel="#L14">14</span>
<span id="L15" rel="#L15">15</span>
<span id="L16" rel="#L16">16</span>
<span id="L17" rel="#L17">17</span>
<span id="L18" rel="#L18">18</span>
<span id="L19" rel="#L19">19</span>
<span id="L20" rel="#L20">20</span>
<span id="L21" rel="#L21">21</span>
<span id="L22" rel="#L22">22</span>
<span id="L23" rel="#L23">23</span>
<span id="L24" rel="#L24">24</span>
<span id="L25" rel="#L25">25</span>
<span id="L26" rel="#L26">26</span>
<span id="L27" rel="#L27">27</span>
<span id="L28" rel="#L28">28</span>
<span id="L29" rel="#L29">29</span>
<span id="L30" rel="#L30">30</span>
<span id="L31" rel="#L31">31</span>
<span id="L32" rel="#L32">32</span>
<span id="L33" rel="#L33">33</span>
<span id="L34" rel="#L34">34</span>
<span id="L35" rel="#L35">35</span>
<span id="L36" rel="#L36">36</span>
<span id="L37" rel="#L37">37</span>
<span id="L38" rel="#L38">38</span>
<span id="L39" rel="#L39">39</span>
<span id="L40" rel="#L40">40</span>
<span id="L41" rel="#L41">41</span>
<span id="L42" rel="#L42">42</span>
<span id="L43" rel="#L43">43</span>
<span id="L44" rel="#L44">44</span>
<span id="L45" rel="#L45">45</span>
<span id="L46" rel="#L46">46</span>
<span id="L47" rel="#L47">47</span>
<span id="L48" rel="#L48">48</span>
<span id="L49" rel="#L49">49</span>
<span id="L50" rel="#L50">50</span>
<span id="L51" rel="#L51">51</span>
<span id="L52" rel="#L52">52</span>
<span id="L53" rel="#L53">53</span>
<span id="L54" rel="#L54">54</span>
<span id="L55" rel="#L55">55</span>
<span id="L56" rel="#L56">56</span>
<span id="L57" rel="#L57">57</span>
<span id="L58" rel="#L58">58</span>
<span id="L59" rel="#L59">59</span>
<span id="L60" rel="#L60">60</span>
<span id="L61" rel="#L61">61</span>
<span id="L62" rel="#L62">62</span>
<span id="L63" rel="#L63">63</span>
<span id="L64" rel="#L64">64</span>
<span id="L65" rel="#L65">65</span>
<span id="L66" rel="#L66">66</span>
<span id="L67" rel="#L67">67</span>
<span id="L68" rel="#L68">68</span>
<span id="L69" rel="#L69">69</span>
<span id="L70" rel="#L70">70</span>
<span id="L71" rel="#L71">71</span>
<span id="L72" rel="#L72">72</span>
<span id="L73" rel="#L73">73</span>
<span id="L74" rel="#L74">74</span>
<span id="L75" rel="#L75">75</span>
<span id="L76" rel="#L76">76</span>
<span id="L77" rel="#L77">77</span>
<span id="L78" rel="#L78">78</span>
<span id="L79" rel="#L79">79</span>
<span id="L80" rel="#L80">80</span>
<span id="L81" rel="#L81">81</span>
<span id="L82" rel="#L82">82</span>
<span id="L83" rel="#L83">83</span>
<span id="L84" rel="#L84">84</span>
<span id="L85" rel="#L85">85</span>
<span id="L86" rel="#L86">86</span>
<span id="L87" rel="#L87">87</span>
<span id="L88" rel="#L88">88</span>
<span id="L89" rel="#L89">89</span>
<span id="L90" rel="#L90">90</span>
<span id="L91" rel="#L91">91</span>
<span id="L92" rel="#L92">92</span>
<span id="L93" rel="#L93">93</span>
<span id="L94" rel="#L94">94</span>
<span id="L95" rel="#L95">95</span>
<span id="L96" rel="#L96">96</span>
<span id="L97" rel="#L97">97</span>
<span id="L98" rel="#L98">98</span>
<span id="L99" rel="#L99">99</span>
<span id="L100" rel="#L100">100</span>
<span id="L101" rel="#L101">101</span>
<span id="L102" rel="#L102">102</span>
<span id="L103" rel="#L103">103</span>
<span id="L104" rel="#L104">104</span>
<span id="L105" rel="#L105">105</span>
<span id="L106" rel="#L106">106</span>
<span id="L107" rel="#L107">107</span>
<span id="L108" rel="#L108">108</span>
<span id="L109" rel="#L109">109</span>
<span id="L110" rel="#L110">110</span>
<span id="L111" rel="#L111">111</span>
<span id="L112" rel="#L112">112</span>
<span id="L113" rel="#L113">113</span>
<span id="L114" rel="#L114">114</span>
<span id="L115" rel="#L115">115</span>
<span id="L116" rel="#L116">116</span>
<span id="L117" rel="#L117">117</span>
<span id="L118" rel="#L118">118</span>
<span id="L119" rel="#L119">119</span>
<span id="L120" rel="#L120">120</span>
<span id="L121" rel="#L121">121</span>
<span id="L122" rel="#L122">122</span>
<span id="L123" rel="#L123">123</span>
<span id="L124" rel="#L124">124</span>
<span id="L125" rel="#L125">125</span>
<span id="L126" rel="#L126">126</span>
<span id="L127" rel="#L127">127</span>
<span id="L128" rel="#L128">128</span>
<span id="L129" rel="#L129">129</span>
<span id="L130" rel="#L130">130</span>
<span id="L131" rel="#L131">131</span>
<span id="L132" rel="#L132">132</span>
<span id="L133" rel="#L133">133</span>
<span id="L134" rel="#L134">134</span>
<span id="L135" rel="#L135">135</span>
<span id="L136" rel="#L136">136</span>
<span id="L137" rel="#L137">137</span>
<span id="L138" rel="#L138">138</span>
<span id="L139" rel="#L139">139</span>
<span id="L140" rel="#L140">140</span>
<span id="L141" rel="#L141">141</span>
<span id="L142" rel="#L142">142</span>
<span id="L143" rel="#L143">143</span>
<span id="L144" rel="#L144">144</span>
<span id="L145" rel="#L145">145</span>
<span id="L146" rel="#L146">146</span>
<span id="L147" rel="#L147">147</span>
<span id="L148" rel="#L148">148</span>
<span id="L149" rel="#L149">149</span>
<span id="L150" rel="#L150">150</span>
<span id="L151" rel="#L151">151</span>
<span id="L152" rel="#L152">152</span>
<span id="L153" rel="#L153">153</span>
<span id="L154" rel="#L154">154</span>
<span id="L155" rel="#L155">155</span>
<span id="L156" rel="#L156">156</span>
<span id="L157" rel="#L157">157</span>
<span id="L158" rel="#L158">158</span>
<span id="L159" rel="#L159">159</span>
<span id="L160" rel="#L160">160</span>
<span id="L161" rel="#L161">161</span>
<span id="L162" rel="#L162">162</span>
<span id="L163" rel="#L163">163</span>
<span id="L164" rel="#L164">164</span>
<span id="L165" rel="#L165">165</span>
<span id="L166" rel="#L166">166</span>
<span id="L167" rel="#L167">167</span>
<span id="L168" rel="#L168">168</span>
<span id="L169" rel="#L169">169</span>
<span id="L170" rel="#L170">170</span>
<span id="L171" rel="#L171">171</span>
<span id="L172" rel="#L172">172</span>
<span id="L173" rel="#L173">173</span>
<span id="L174" rel="#L174">174</span>
<span id="L175" rel="#L175">175</span>
<span id="L176" rel="#L176">176</span>
<span id="L177" rel="#L177">177</span>
<span id="L178" rel="#L178">178</span>
<span id="L179" rel="#L179">179</span>
<span id="L180" rel="#L180">180</span>
<span id="L181" rel="#L181">181</span>
<span id="L182" rel="#L182">182</span>
<span id="L183" rel="#L183">183</span>
<span id="L184" rel="#L184">184</span>
<span id="L185" rel="#L185">185</span>
<span id="L186" rel="#L186">186</span>
<span id="L187" rel="#L187">187</span>
<span id="L188" rel="#L188">188</span>
<span id="L189" rel="#L189">189</span>
<span id="L190" rel="#L190">190</span>
<span id="L191" rel="#L191">191</span>
<span id="L192" rel="#L192">192</span>
<span id="L193" rel="#L193">193</span>
<span id="L194" rel="#L194">194</span>
<span id="L195" rel="#L195">195</span>
<span id="L196" rel="#L196">196</span>
<span id="L197" rel="#L197">197</span>
<span id="L198" rel="#L198">198</span>
<span id="L199" rel="#L199">199</span>
<span id="L200" rel="#L200">200</span>
<span id="L201" rel="#L201">201</span>
<span id="L202" rel="#L202">202</span>
<span id="L203" rel="#L203">203</span>
<span id="L204" rel="#L204">204</span>
<span id="L205" rel="#L205">205</span>
<span id="L206" rel="#L206">206</span>
<span id="L207" rel="#L207">207</span>
<span id="L208" rel="#L208">208</span>
<span id="L209" rel="#L209">209</span>
<span id="L210" rel="#L210">210</span>
<span id="L211" rel="#L211">211</span>
<span id="L212" rel="#L212">212</span>
<span id="L213" rel="#L213">213</span>
<span id="L214" rel="#L214">214</span>
<span id="L215" rel="#L215">215</span>
<span id="L216" rel="#L216">216</span>
<span id="L217" rel="#L217">217</span>
<span id="L218" rel="#L218">218</span>
<span id="L219" rel="#L219">219</span>
<span id="L220" rel="#L220">220</span>
<span id="L221" rel="#L221">221</span>
<span id="L222" rel="#L222">222</span>
<span id="L223" rel="#L223">223</span>
<span id="L224" rel="#L224">224</span>
<span id="L225" rel="#L225">225</span>
<span id="L226" rel="#L226">226</span>
<span id="L227" rel="#L227">227</span>
<span id="L228" rel="#L228">228</span>
<span id="L229" rel="#L229">229</span>
<span id="L230" rel="#L230">230</span>
<span id="L231" rel="#L231">231</span>
<span id="L232" rel="#L232">232</span>
<span id="L233" rel="#L233">233</span>
<span id="L234" rel="#L234">234</span>
<span id="L235" rel="#L235">235</span>
<span id="L236" rel="#L236">236</span>
<span id="L237" rel="#L237">237</span>
<span id="L238" rel="#L238">238</span>
<span id="L239" rel="#L239">239</span>
<span id="L240" rel="#L240">240</span>
<span id="L241" rel="#L241">241</span>
<span id="L242" rel="#L242">242</span>
<span id="L243" rel="#L243">243</span>
<span id="L244" rel="#L244">244</span>
<span id="L245" rel="#L245">245</span>
<span id="L246" rel="#L246">246</span>
<span id="L247" rel="#L247">247</span>
<span id="L248" rel="#L248">248</span>
<span id="L249" rel="#L249">249</span>
<span id="L250" rel="#L250">250</span>
<span id="L251" rel="#L251">251</span>
<span id="L252" rel="#L252">252</span>
<span id="L253" rel="#L253">253</span>
<span id="L254" rel="#L254">254</span>
<span id="L255" rel="#L255">255</span>
<span id="L256" rel="#L256">256</span>
<span id="L257" rel="#L257">257</span>
<span id="L258" rel="#L258">258</span>
<span id="L259" rel="#L259">259</span>
<span id="L260" rel="#L260">260</span>
<span id="L261" rel="#L261">261</span>
<span id="L262" rel="#L262">262</span>
<span id="L263" rel="#L263">263</span>
<span id="L264" rel="#L264">264</span>
<span id="L265" rel="#L265">265</span>
<span id="L266" rel="#L266">266</span>
<span id="L267" rel="#L267">267</span>
<span id="L268" rel="#L268">268</span>
<span id="L269" rel="#L269">269</span>
<span id="L270" rel="#L270">270</span>
<span id="L271" rel="#L271">271</span>
<span id="L272" rel="#L272">272</span>
<span id="L273" rel="#L273">273</span>
<span id="L274" rel="#L274">274</span>
<span id="L275" rel="#L275">275</span>
<span id="L276" rel="#L276">276</span>
<span id="L277" rel="#L277">277</span>
<span id="L278" rel="#L278">278</span>
<span id="L279" rel="#L279">279</span>
<span id="L280" rel="#L280">280</span>
<span id="L281" rel="#L281">281</span>
<span id="L282" rel="#L282">282</span>
<span id="L283" rel="#L283">283</span>
<span id="L284" rel="#L284">284</span>
<span id="L285" rel="#L285">285</span>
<span id="L286" rel="#L286">286</span>
<span id="L287" rel="#L287">287</span>
<span id="L288" rel="#L288">288</span>
<span id="L289" rel="#L289">289</span>
<span id="L290" rel="#L290">290</span>
<span id="L291" rel="#L291">291</span>
<span id="L292" rel="#L292">292</span>
<span id="L293" rel="#L293">293</span>
<span id="L294" rel="#L294">294</span>
<span id="L295" rel="#L295">295</span>
<span id="L296" rel="#L296">296</span>
<span id="L297" rel="#L297">297</span>
<span id="L298" rel="#L298">298</span>
<span id="L299" rel="#L299">299</span>
<span id="L300" rel="#L300">300</span>
<span id="L301" rel="#L301">301</span>
<span id="L302" rel="#L302">302</span>
<span id="L303" rel="#L303">303</span>
<span id="L304" rel="#L304">304</span>
<span id="L305" rel="#L305">305</span>
<span id="L306" rel="#L306">306</span>
<span id="L307" rel="#L307">307</span>
<span id="L308" rel="#L308">308</span>
<span id="L309" rel="#L309">309</span>
<span id="L310" rel="#L310">310</span>
<span id="L311" rel="#L311">311</span>
<span id="L312" rel="#L312">312</span>
<span id="L313" rel="#L313">313</span>
<span id="L314" rel="#L314">314</span>
<span id="L315" rel="#L315">315</span>
<span id="L316" rel="#L316">316</span>
<span id="L317" rel="#L317">317</span>
<span id="L318" rel="#L318">318</span>
<span id="L319" rel="#L319">319</span>
<span id="L320" rel="#L320">320</span>
<span id="L321" rel="#L321">321</span>
<span id="L322" rel="#L322">322</span>
<span id="L323" rel="#L323">323</span>
<span id="L324" rel="#L324">324</span>
<span id="L325" rel="#L325">325</span>
<span id="L326" rel="#L326">326</span>
<span id="L327" rel="#L327">327</span>
<span id="L328" rel="#L328">328</span>
<span id="L329" rel="#L329">329</span>
<span id="L330" rel="#L330">330</span>
<span id="L331" rel="#L331">331</span>
<span id="L332" rel="#L332">332</span>
<span id="L333" rel="#L333">333</span>
<span id="L334" rel="#L334">334</span>
<span id="L335" rel="#L335">335</span>
<span id="L336" rel="#L336">336</span>
<span id="L337" rel="#L337">337</span>
<span id="L338" rel="#L338">338</span>
<span id="L339" rel="#L339">339</span>
</td>
<td class="blob-line-code">
<div class="highlight"><pre><div class='line' id='LC1'>GNU GENERAL PUBLIC LICENSE</div><div class='line' id='LC2'> Version 2, June 1991</div><div class='line' id='LC3'><br/></div><div class='line' id='LC4'> Copyright (C) 1989, 1991 Free Software Foundation, Inc.,</div><div class='line' id='LC5'> 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA</div><div class='line' id='LC6'> Everyone is permitted to copy and distribute verbatim copies</div><div class='line' id='LC7'> of this license document, but changing it is not allowed.</div><div class='line' id='LC8'><br/></div><div class='line' id='LC9'> Preamble</div><div class='line' id='LC10'><br/></div><div class='line' id='LC11'> The licenses for most software are designed to take away your</div><div class='line' id='LC12'>freedom to share and change it. By contrast, the GNU General Public</div><div class='line' id='LC13'>License is intended to guarantee your freedom to share and change free</div><div class='line' id='LC14'>software--to make sure the software is free for all its users. This</div><div class='line' id='LC15'>General Public License applies to most of the Free Software</div><div class='line' id='LC16'>Foundation's software and to any other program whose authors commit to</div><div class='line' id='LC17'>using it. (Some other Free Software Foundation software is covered by</div><div class='line' id='LC18'>the GNU Lesser General Public License instead.) You can apply it to</div><div class='line' id='LC19'>your programs, too.</div><div class='line' id='LC20'><br/></div><div class='line' id='LC21'> When we speak of free software, we are referring to freedom, not</div><div class='line' id='LC22'>price. Our General Public Licenses are designed to make sure that you</div><div class='line' id='LC23'>have the freedom to distribute copies of free software (and charge for</div><div class='line' id='LC24'>this service if you wish), that you receive source code or can get it</div><div class='line' id='LC25'>if you want it, that you can change the software or use pieces of it</div><div class='line' id='LC26'>in new free programs; and that you know you can do these things.</div><div class='line' id='LC27'><br/></div><div class='line' id='LC28'> To protect your rights, we need to make restrictions that forbid</div><div class='line' id='LC29'>anyone to deny you these rights or to ask you to surrender the rights.</div><div class='line' id='LC30'>These restrictions translate to certain responsibilities for you if you</div><div class='line' id='LC31'>distribute copies of the software, or if you modify it.</div><div class='line' id='LC32'><br/></div><div class='line' id='LC33'> For example, if you distribute copies of such a program, whether</div><div class='line' id='LC34'>gratis or for a fee, you must give the recipients all the rights that</div><div class='line' id='LC35'>you have. You must make sure that they, too, receive or can get the</div><div class='line' id='LC36'>source code. And you must show them these terms so they know their</div><div class='line' id='LC37'>rights.</div><div class='line' id='LC38'><br/></div><div class='line' id='LC39'> We protect your rights with two steps: (1) copyright the software, and</div><div class='line' id='LC40'>(2) offer you this license which gives you legal permission to copy,</div><div class='line' id='LC41'>distribute and/or modify the software.</div><div class='line' id='LC42'><br/></div><div class='line' id='LC43'> Also, for each author's protection and ours, we want to make certain</div><div class='line' id='LC44'>that everyone understands that there is no warranty for this free</div><div class='line' id='LC45'>software. If the software is modified by someone else and passed on, we</div><div class='line' id='LC46'>want its recipients to know that what they have is not the original, so</div><div class='line' id='LC47'>that any problems introduced by others will not reflect on the original</div><div class='line' id='LC48'>authors' reputations.</div><div class='line' id='LC49'><br/></div><div class='line' id='LC50'> Finally, any free program is threatened constantly by software</div><div class='line' id='LC51'>patents. We wish to avoid the danger that redistributors of a free</div><div class='line' id='LC52'>program will individually obtain patent licenses, in effect making the</div><div class='line' id='LC53'>program proprietary. To prevent this, we have made it clear that any</div><div class='line' id='LC54'>patent must be licensed for everyone's free use or not licensed at all.</div><div class='line' id='LC55'><br/></div><div class='line' id='LC56'> The precise terms and conditions for copying, distribution and</div><div class='line' id='LC57'>modification follow.</div><div class='line' id='LC58'><br/></div><div class='line' id='LC59'> GNU GENERAL PUBLIC LICENSE</div><div class='line' id='LC60'> TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION</div><div class='line' id='LC61'><br/></div><div class='line' id='LC62'> 0. This License applies to any program or other work which contains</div><div class='line' id='LC63'>a notice placed by the copyright holder saying it may be distributed</div><div class='line' id='LC64'>under the terms of this General Public License. The "Program", below,</div><div class='line' id='LC65'>refers to any such program or work, and a "work based on the Program"</div><div class='line' id='LC66'>means either the Program or any derivative work under copyright law:</div><div class='line' id='LC67'>that is to say, a work containing the Program or a portion of it,</div><div class='line' id='LC68'>either verbatim or with modifications and/or translated into another</div><div class='line' id='LC69'>language. (Hereinafter, translation is included without limitation in</div><div class='line' id='LC70'>the term "modification".) Each licensee is addressed as "you".</div><div class='line' id='LC71'><br/></div><div class='line' id='LC72'>Activities other than copying, distribution and modification are not</div><div class='line' id='LC73'>covered by this License; they are outside its scope. The act of</div><div class='line' id='LC74'>running the Program is not restricted, and the output from the Program</div><div class='line' id='LC75'>is covered only if its contents constitute a work based on the</div><div class='line' id='LC76'>Program (independent of having been made by running the Program).</div><div class='line' id='LC77'>Whether that is true depends on what the Program does.</div><div class='line' id='LC78'><br/></div><div class='line' id='LC79'> 1. You may copy and distribute verbatim copies of the Program's</div><div class='line' id='LC80'>source code as you receive it, in any medium, provided that you</div><div class='line' id='LC81'>conspicuously and appropriately publish on each copy an appropriate</div><div class='line' id='LC82'>copyright notice and disclaimer of warranty; keep intact all the</div><div class='line' id='LC83'>notices that refer to this License and to the absence of any warranty;</div><div class='line' id='LC84'>and give any other recipients of the Program a copy of this License</div><div class='line' id='LC85'>along with the Program.</div><div class='line' id='LC86'><br/></div><div class='line' id='LC87'>You may charge a fee for the physical act of transferring a copy, and</div><div class='line' id='LC88'>you may at your option offer warranty protection in exchange for a fee.</div><div class='line' id='LC89'><br/></div><div class='line' id='LC90'> 2. You may modify your copy or copies of the Program or any portion</div><div class='line' id='LC91'>of it, thus forming a work based on the Program, and copy and</div><div class='line' id='LC92'>distribute such modifications or work under the terms of Section 1</div><div class='line' id='LC93'>above, provided that you also meet all of these conditions:</div><div class='line' id='LC94'><br/></div><div class='line' id='LC95'> a) You must cause the modified files to carry prominent notices</div><div class='line' id='LC96'> stating that you changed the files and the date of any change.</div><div class='line' id='LC97'><br/></div><div class='line' id='LC98'> b) You must cause any work that you distribute or publish, that in</div><div class='line' id='LC99'> whole or in part contains or is derived from the Program or any</div><div class='line' id='LC100'> part thereof, to be licensed as a whole at no charge to all third</div><div class='line' id='LC101'> parties under the terms of this License.</div><div class='line' id='LC102'><br/></div><div class='line' id='LC103'> c) If the modified program normally reads commands interactively</div><div class='line' id='LC104'> when run, you must cause it, when started running for such</div><div class='line' id='LC105'> interactive use in the most ordinary way, to print or display an</div><div class='line' id='LC106'> announcement including an appropriate copyright notice and a</div><div class='line' id='LC107'> notice that there is no warranty (or else, saying that you provide</div><div class='line' id='LC108'> a warranty) and that users may redistribute the program under</div><div class='line' id='LC109'> these conditions, and telling the user how to view a copy of this</div><div class='line' id='LC110'> License. (Exception: if the Program itself is interactive but</div><div class='line' id='LC111'> does not normally print such an announcement, your work based on</div><div class='line' id='LC112'> the Program is not required to print an announcement.)</div><div class='line' id='LC113'><br/></div><div class='line' id='LC114'>These requirements apply to the modified work as a whole. If</div><div class='line' id='LC115'>identifiable sections of that work are not derived from the Program,</div><div class='line' id='LC116'>and can be reasonably considered independent and separate works in</div><div class='line' id='LC117'>themselves, then this License, and its terms, do not apply to those</div><div class='line' id='LC118'>sections when you distribute them as separate works. But when you</div><div class='line' id='LC119'>distribute the same sections as part of a whole which is a work based</div><div class='line' id='LC120'>on the Program, the distribution of the whole must be on the terms of</div><div class='line' id='LC121'>this License, whose permissions for other licensees extend to the</div><div class='line' id='LC122'>entire whole, and thus to each and every part regardless of who wrote it.</div><div class='line' id='LC123'><br/></div><div class='line' id='LC124'>Thus, it is not the intent of this section to claim rights or contest</div><div class='line' id='LC125'>your rights to work written entirely by you; rather, the intent is to</div><div class='line' id='LC126'>exercise the right to control the distribution of derivative or</div><div class='line' id='LC127'>collective works based on the Program.</div><div class='line' id='LC128'><br/></div><div class='line' id='LC129'>In addition, mere aggregation of another work not based on the Program</div><div class='line' id='LC130'>with the Program (or with a work based on the Program) on a volume of</div><div class='line' id='LC131'>a storage or distribution medium does not bring the other work under</div><div class='line' id='LC132'>the scope of this License.</div><div class='line' id='LC133'><br/></div><div class='line' id='LC134'> 3. You may copy and distribute the Program (or a work based on it,</div><div class='line' id='LC135'>under Section 2) in object code or executable form under the terms of</div><div class='line' id='LC136'>Sections 1 and 2 above provided that you also do one of the following:</div><div class='line' id='LC137'><br/></div><div class='line' id='LC138'> a) Accompany it with the complete corresponding machine-readable</div><div class='line' id='LC139'> source code, which must be distributed under the terms of Sections</div><div class='line' id='LC140'> 1 and 2 above on a medium customarily used for software interchange; or,</div><div class='line' id='LC141'><br/></div><div class='line' id='LC142'> b) Accompany it with a written offer, valid for at least three</div><div class='line' id='LC143'> years, to give any third party, for a charge no more than your</div><div class='line' id='LC144'> cost of physically performing source distribution, a complete</div><div class='line' id='LC145'> machine-readable copy of the corresponding source code, to be</div><div class='line' id='LC146'> distributed under the terms of Sections 1 and 2 above on a medium</div><div class='line' id='LC147'> customarily used for software interchange; or,</div><div class='line' id='LC148'><br/></div><div class='line' id='LC149'> c) Accompany it with the information you received as to the offer</div><div class='line' id='LC150'> to distribute corresponding source code. (This alternative is</div><div class='line' id='LC151'> allowed only for noncommercial distribution and only if you</div><div class='line' id='LC152'> received the program in object code or executable form with such</div><div class='line' id='LC153'> an offer, in accord with Subsection b above.)</div><div class='line' id='LC154'><br/></div><div class='line' id='LC155'>The source code for a work means the preferred form of the work for</div><div class='line' id='LC156'>making modifications to it. For an executable work, complete source</div><div class='line' id='LC157'>code means all the source code for all modules it contains, plus any</div><div class='line' id='LC158'>associated interface definition files, plus the scripts used to</div><div class='line' id='LC159'>control compilation and installation of the executable. However, as a</div><div class='line' id='LC160'>special exception, the source code distributed need not include</div><div class='line' id='LC161'>anything that is normally distributed (in either source or binary</div><div class='line' id='LC162'>form) with the major components (compiler, kernel, and so on) of the</div><div class='line' id='LC163'>operating system on which the executable runs, unless that component</div><div class='line' id='LC164'>itself accompanies the executable.</div><div class='line' id='LC165'><br/></div><div class='line' id='LC166'>If distribution of executable or object code is made by offering</div><div class='line' id='LC167'>access to copy from a designated place, then offering equivalent</div><div class='line' id='LC168'>access to copy the source code from the same place counts as</div><div class='line' id='LC169'>distribution of the source code, even though third parties are not</div><div class='line' id='LC170'>compelled to copy the source along with the object code.</div><div class='line' id='LC171'><br/></div><div class='line' id='LC172'> 4. You may not copy, modify, sublicense, or distribute the Program</div><div class='line' id='LC173'>except as expressly provided under this License. Any attempt</div><div class='line' id='LC174'>otherwise to copy, modify, sublicense or distribute the Program is</div><div class='line' id='LC175'>void, and will automatically terminate your rights under this License.</div><div class='line' id='LC176'>However, parties who have received copies, or rights, from you under</div><div class='line' id='LC177'>this License will not have their licenses terminated so long as such</div><div class='line' id='LC178'>parties remain in full compliance.</div><div class='line' id='LC179'><br/></div><div class='line' id='LC180'> 5. You are not required to accept this License, since you have not</div><div class='line' id='LC181'>signed it. However, nothing else grants you permission to modify or</div><div class='line' id='LC182'>distribute the Program or its derivative works. These actions are</div><div class='line' id='LC183'>prohibited by law if you do not accept this License. Therefore, by</div><div class='line' id='LC184'>modifying or distributing the Program (or any work based on the</div><div class='line' id='LC185'>Program), you indicate your acceptance of this License to do so, and</div><div class='line' id='LC186'>all its terms and conditions for copying, distributing or modifying</div><div class='line' id='LC187'>the Program or works based on it.</div><div class='line' id='LC188'><br/></div><div class='line' id='LC189'> 6. Each time you redistribute the Program (or any work based on the</div><div class='line' id='LC190'>Program), the recipient automatically receives a license from the</div><div class='line' id='LC191'>original licensor to copy, distribute or modify the Program subject to</div><div class='line' id='LC192'>these terms and conditions. You may not impose any further</div><div class='line' id='LC193'>restrictions on the recipients' exercise of the rights granted herein.</div><div class='line' id='LC194'>You are not responsible for enforcing compliance by third parties to</div><div class='line' id='LC195'>this License.</div><div class='line' id='LC196'><br/></div><div class='line' id='LC197'> 7. If, as a consequence of a court judgment or allegation of patent</div><div class='line' id='LC198'>infringement or for any other reason (not limited to patent issues),</div><div class='line' id='LC199'>conditions are imposed on you (whether by court order, agreement or</div><div class='line' id='LC200'>otherwise) that contradict the conditions of this License, they do not</div><div class='line' id='LC201'>excuse you from the conditions of this License. If you cannot</div><div class='line' id='LC202'>distribute so as to satisfy simultaneously your obligations under this</div><div class='line' id='LC203'>License and any other pertinent obligations, then as a consequence you</div><div class='line' id='LC204'>may not distribute the Program at all. For example, if a patent</div><div class='line' id='LC205'>license would not permit royalty-free redistribution of the Program by</div><div class='line' id='LC206'>all those who receive copies directly or indirectly through you, then</div><div class='line' id='LC207'>the only way you could satisfy both it and this License would be to</div><div class='line' id='LC208'>refrain entirely from distribution of the Program.</div><div class='line' id='LC209'><br/></div><div class='line' id='LC210'>If any portion of this section is held invalid or unenforceable under</div><div class='line' id='LC211'>any particular circumstance, the balance of the section is intended to</div><div class='line' id='LC212'>apply and the section as a whole is intended to apply in other</div><div class='line' id='LC213'>circumstances.</div><div class='line' id='LC214'><br/></div><div class='line' id='LC215'>It is not the purpose of this section to induce you to infringe any</div><div class='line' id='LC216'>patents or other property right claims or to contest validity of any</div><div class='line' id='LC217'>such claims; this section has the sole purpose of protecting the</div><div class='line' id='LC218'>integrity of the free software distribution system, which is</div><div class='line' id='LC219'>implemented by public license practices. Many people have made</div><div class='line' id='LC220'>generous contributions to the wide range of software distributed</div><div class='line' id='LC221'>through that system in reliance on consistent application of that</div><div class='line' id='LC222'>system; it is up to the author/donor to decide if he or she is willing</div><div class='line' id='LC223'>to distribute software through any other system and a licensee cannot</div><div class='line' id='LC224'>impose that choice.</div><div class='line' id='LC225'><br/></div><div class='line' id='LC226'>This section is intended to make thoroughly clear what is believed to</div><div class='line' id='LC227'>be a consequence of the rest of this License.</div><div class='line' id='LC228'><br/></div><div class='line' id='LC229'> 8. If the distribution and/or use of the Program is restricted in</div><div class='line' id='LC230'>certain countries either by patents or by copyrighted interfaces, the</div><div class='line' id='LC231'>original copyright holder who places the Program under this License</div><div class='line' id='LC232'>may add an explicit geographical distribution limitation excluding</div><div class='line' id='LC233'>those countries, so that distribution is permitted only in or among</div><div class='line' id='LC234'>countries not thus excluded. In such case, this License incorporates</div><div class='line' id='LC235'>the limitation as if written in the body of this License.</div><div class='line' id='LC236'><br/></div><div class='line' id='LC237'> 9. The Free Software Foundation may publish revised and/or new versions</div><div class='line' id='LC238'>of the General Public License from time to time. Such new versions will</div><div class='line' id='LC239'>be similar in spirit to the present version, but may differ in detail to</div><div class='line' id='LC240'>address new problems or concerns.</div><div class='line' id='LC241'><br/></div><div class='line' id='LC242'>Each version is given a distinguishing version number. If the Program</div><div class='line' id='LC243'>specifies a version number of this License which applies to it and "any</div><div class='line' id='LC244'>later version", you have the option of following the terms and conditions</div><div class='line' id='LC245'>either of that version or of any later version published by the Free</div><div class='line' id='LC246'>Software Foundation. If the Program does not specify a version number of</div><div class='line' id='LC247'>this License, you may choose any version ever published by the Free Software</div><div class='line' id='LC248'>Foundation.</div><div class='line' id='LC249'><br/></div><div class='line' id='LC250'> 10. If you wish to incorporate parts of the Program into other free</div><div class='line' id='LC251'>programs whose distribution conditions are different, write to the author</div><div class='line' id='LC252'>to ask for permission. For software which is copyrighted by the Free</div><div class='line' id='LC253'>Software Foundation, write to the Free Software Foundation; we sometimes</div><div class='line' id='LC254'>make exceptions for this. Our decision will be guided by the two goals</div><div class='line' id='LC255'>of preserving the free status of all derivatives of our free software and</div><div class='line' id='LC256'>of promoting the sharing and reuse of software generally.</div><div class='line' id='LC257'><br/></div><div class='line' id='LC258'> NO WARRANTY</div><div class='line' id='LC259'><br/></div><div class='line' id='LC260'> 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY</div><div class='line' id='LC261'>FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN</div><div class='line' id='LC262'>OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES</div><div class='line' id='LC263'>PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED</div><div class='line' id='LC264'>OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF</div><div class='line' id='LC265'>MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS</div><div class='line' id='LC266'>TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE</div><div class='line' id='LC267'>PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,</div><div class='line' id='LC268'>REPAIR OR CORRECTION.</div><div class='line' id='LC269'><br/></div><div class='line' id='LC270'> 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING</div><div class='line' id='LC271'>WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR</div><div class='line' id='LC272'>REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,</div><div class='line' id='LC273'>INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING</div><div class='line' id='LC274'>OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED</div><div class='line' id='LC275'>TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY</div><div class='line' id='LC276'>YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER</div><div class='line' id='LC277'>PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE</div><div class='line' id='LC278'>POSSIBILITY OF SUCH DAMAGES.</div><div class='line' id='LC279'><br/></div><div class='line' id='LC280'> END OF TERMS AND CONDITIONS</div><div class='line' id='LC281'><br/></div><div class='line' id='LC282'> How to Apply These Terms to Your New Programs</div><div class='line' id='LC283'><br/></div><div class='line' id='LC284'> If you develop a new program, and you want it to be of the greatest</div><div class='line' id='LC285'>possible use to the public, the best way to achieve this is to make it</div><div class='line' id='LC286'>free software which everyone can redistribute and change under these terms.</div><div class='line' id='LC287'><br/></div><div class='line' id='LC288'> To do so, attach the following notices to the program. It is safest</div><div class='line' id='LC289'>to attach them to the start of each source file to most effectively</div><div class='line' id='LC290'>convey the exclusion of warranty; and each file should have at least</div><div class='line' id='LC291'>the "copyright" line and a pointer to where the full notice is found.</div><div class='line' id='LC292'><br/></div><div class='line' id='LC293'> </div><div class='line' id='LC294'> Copyright (C) 2013 Rogelio</div><div class='line' id='LC295'><br/></div><div class='line' id='LC296'> This program is free software; you can redistribute it and/or modify</div><div class='line' id='LC297'> it under the terms of the GNU General Public License as published by</div><div class='line' id='LC298'> the Free Software Foundation; either version 2 of the License, or</div><div class='line' id='LC299'> (at your option) any later version.</div><div class='line' id='LC300'><br/></div><div class='line' id='LC301'> This program is distributed in the hope that it will be useful,</div><div class='line' id='LC302'> but WITHOUT ANY WARRANTY; without even the implied warranty of</div><div class='line' id='LC303'> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the</div><div class='line' id='LC304'> GNU General Public License for more details.</div><div class='line' id='LC305'><br/></div><div class='line' id='LC306'> You should have received a copy of the GNU General Public License along</div><div class='line' id='LC307'> with this program; if not, write to the Free Software Foundation, Inc.,</div><div class='line' id='LC308'> 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.</div><div class='line' id='LC309'><br/></div><div class='line' id='LC310'>Also add information on how to contact you by electronic and paper mail.</div><div class='line' id='LC311'><br/></div><div class='line' id='LC312'>If the program is interactive, make it output a short notice like this</div><div class='line' id='LC313'>when it starts in an interactive mode:</div><div class='line' id='LC314'><br/></div><div class='line' id='LC315'> Gnomovision version 69, Copyright (C) year name of author</div><div class='line' id='LC316'> Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.</div><div class='line' id='LC317'> This is free software, and you are welcome to redistribute it</div><div class='line' id='LC318'> under certain conditions; type `show c' for details.</div><div class='line' id='LC319'><br/></div><div class='line' id='LC320'>The hypothetical commands `show w' and `show c' should show the appropriate</div><div class='line' id='LC321'>parts of the General Public License. Of course, the commands you use may</div><div class='line' id='LC322'>be called something other than `show w' and `show c'; they could even be</div><div class='line' id='LC323'>mouse-clicks or menu items--whatever suits your program.</div><div class='line' id='LC324'><br/></div><div class='line' id='LC325'>You should also get your employer (if you work as a programmer) or your</div><div class='line' id='LC326'>school, if any, to sign a "copyright disclaimer" for the program, if</div><div class='line' id='LC327'>necessary. Here is a sample; alter the names:</div><div class='line' id='LC328'><br/></div><div class='line' id='LC329'> Yoyodyne, Inc., hereby disclaims all copyright interest in the program</div><div class='line' id='LC330'> `Gnomovision' (which makes passes at compilers) written by James Hacker.</div><div class='line' id='LC331'><br/></div><div class='line' id='LC332'> {signature of Ty Coon}, 1 April 1989</div><div class='line' id='LC333'> Ty Coon, President of Vice</div><div class='line' id='LC334'><br/></div><div class='line' id='LC335'>This General Public License does not permit incorporating your program into</div><div class='line' id='LC336'>proprietary programs. If your program is a subroutine library, you may</div><div class='line' id='LC337'>consider it more useful to permit linking proprietary applications with the</div><div class='line' id='LC338'>library. If this is what you want to do, use the GNU Lesser General</div><div class='line' id='LC339'>Public License instead of this License.</div></pre></div>
</td>
</tr>
</table>
</div>
</div>
</div>
<a href="#jump-to-line" rel="facebox[.linejump]" data-hotkey="l" class="js-jump-to-line" style="display:none">Jump to Line</a>
<div id="jump-to-line" style="display:none">
<form accept-charset="UTF-8" class="js-jump-to-line-form">
<input class="linejump-input js-jump-to-line-field" type="text" placeholder="Jump to line…" autofocus>
<button type="submit" class="button">Go</button>
</form>
</div>
</div>
</div><!-- /.repo-container -->
<div class="modal-backdrop"></div>
</div><!-- /.container -->
</div><!-- /.site -->
</div><!-- /.wrapper -->
<div class="container">
<div class="site-footer">
<ul class="site-footer-links right">
<li><a href="https://status.github.com/">Status</a></li>
<li><a href="http://developer.github.com">API</a></li>
<li><a href="http://training.github.com">Training</a></li>
<li><a href="http://shop.github.com">Shop</a></li>
<li><a href="/blog">Blog</a></li>
<li><a href="/about">About</a></li>
</ul>