├── README.md ├── py310 ├── win-1.png ├── win-2.png ├── css │ ├── monokai-sublime.css │ ├── theme.css │ └── style.css ├── win.html ├── mac.html └── script │ └── jquery.min.js ├── sh.md └── npm-deep-dive-links.md /README.md: -------------------------------------------------------------------------------- 1 | # doc -------------------------------------------------------------------------------- /py310/win-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wikibook/doc/main/py310/win-1.png -------------------------------------------------------------------------------- /py310/win-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wikibook/doc/main/py310/win-2.png -------------------------------------------------------------------------------- /py310/css/monokai-sublime.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Monokai Sublime style. Derived from Monokai by noformnocontent http://nn.mit-license.org/ 4 | 5 | */ 6 | 7 | .hljs { 8 | display: block; 9 | overflow-x: auto; 10 | padding: 0.5em; 11 | background: #23241f; 12 | } 13 | 14 | .hljs, 15 | .hljs-tag, 16 | .hljs-subst { 17 | color: #f8f8f2; 18 | } 19 | 20 | .hljs-strong, 21 | .hljs-emphasis { 22 | color: #a8a8a2; 23 | } 24 | 25 | .hljs-bullet, 26 | .hljs-quote, 27 | .hljs-number, 28 | .hljs-regexp, 29 | .hljs-literal, 30 | .hljs-link { 31 | color: #ae81ff; 32 | } 33 | 34 | .hljs-code, 35 | .hljs-title, 36 | .hljs-section, 37 | .hljs-selector-class { 38 | color: #a6e22e; 39 | } 40 | 41 | .hljs-strong { 42 | font-weight: bold; 43 | } 44 | 45 | .hljs-emphasis { 46 | font-style: italic; 47 | } 48 | 49 | .hljs-keyword, 50 | .hljs-selector-tag, 51 | .hljs-name, 52 | .hljs-attr { 53 | color: #f92672; 54 | } 55 | 56 | .hljs-symbol, 57 | .hljs-attribute { 58 | color: #66d9ef; 59 | } 60 | 61 | .hljs-params, 62 | .hljs-class .hljs-title { 63 | color: #f8f8f2; 64 | } 65 | 66 | .hljs-string, 67 | .hljs-type, 68 | .hljs-built_in, 69 | .hljs-builtin-name, 70 | .hljs-selector-id, 71 | .hljs-selector-attr, 72 | .hljs-selector-pseudo, 73 | .hljs-addition, 74 | .hljs-variable, 75 | .hljs-template-variable { 76 | color: #e6db74; 77 | } 78 | 79 | .hljs-comment, 80 | .hljs-deletion, 81 | .hljs-meta { 82 | color: #75715e; 83 | } 84 | -------------------------------------------------------------------------------- /py310/win.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 파이썬 3.10 개발 환경 구축 - 윈도우 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 |

파이썬 3.10 개발 환경 구축 - 윈도우

21 |

윈도우 환경에서 파이썬 3.10 개발 환경을 구축하는 방법을 알아봅시다.

22 |

파이썬 설치

23 |
    24 |
  1. Microsoft Store를 열고 'python'으로 검색합니다. 검색 결과에서 'Python 3.10'을 선택합니다.

    25 |

    1.png

    26 |

    우측의 파란색 '다운로드' 버튼을 클릭해 파이썬 3.10을 설치합니다.

    27 |

    2.png

    28 |
  2. 29 |
  3. 명령 프롬프트를 실행하고 설치된 파이썬 버전을 확인합니다. 다음과 같이 파이썬 버전이 출력되면 정상적으로 설치된 것입니다.

    30 |
    $ python --version
    31 | Python 3.10.11
    32 | 
    33 |
  4. 34 |
35 |

파이썬 가상 환경 생성과 활성화

36 |
    37 |
  1. 프로젝트 폴더를 생성합니다.

    38 |
    $ mkdir helloworld
    39 | $ cd helloworld
    40 | 
    41 |
  2. 42 |
  3. 가상 환경 생성

    43 |

    다음 명령을 실행해 가상 환경을 생성합니다. 그럼 env 폴더가 만들어지고 해당 폴더에 가상 환경에 필요한 정보가 들어갑니다.

    44 |
    $ python -m venv env
    45 | 
    46 |
  4. 47 |
  5. 가상 환경 활성화

    48 |

    다음 명령을 실행해 가상 환경을 활성화합니다.

    49 |
    $ env\Scripts\activate
    50 | 
    51 |

    가상 환경을 활성화하고 나면 프롬프트의 왼쪽에 가상 환경의 이름이 표시됩니다.

    52 |
    (env) $ _
    53 | 
    54 |
  6. 55 |
  7. 다음 명령으로 실제로 격리된 가상 환경인지 확인합니다.

    56 |
    (env) $ pip list
    57 | Package    Version
    58 | ---------- -------
    59 | pip        23.2
    60 | setuptools 65.5.0
    61 | 
    62 |
  8. 63 |
64 |

가상 환경 비활성화

65 |

가상 환경에서 작업이 모두 끝나면 다음 명령을 실행해 가상 환경을 비활성화합니다.

66 |
(env) $ deactivate
67 | $ _
68 | 
69 |

그럼 가상 환경에서 빠져나와 프롬프트도 원래대로 표시되는 것을 확인할 수 있습니다.

70 |

requirements.txt를 이용한 패키지 설치

71 |

가상 환경에서 다음 명령을 실행해 requirements.txt에 기재된 패키지를 한번에 설치할 수 있습니다.

72 |
(env) $ pip install -r requirements.txt
73 | 
74 |
75 | 76 | 77 | 78 | -------------------------------------------------------------------------------- /py310/mac.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 파이썬 3.10 개발 환경 구축 - macOS 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 |

파이썬 3.10 개발 환경 구축 - macOS

21 |

macOS 환경에서 파이썬 3.10 개발 환경을 구축하는 방법을 알아봅시다.

22 |

Homebrew 설치

23 |

터미널에서 다음 명령을 실행해 Homebrew를 설치합니다.

24 |
$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
25 | 
26 |

아래와 같이 PATH를 추가합니다. (zsh의 경우 ~/.zshrc)

27 |
export PATH=/usr/local/bin:$PATH
28 | 
29 |

파이썬 설치

30 |
    31 |
  1. 다음 명령을 실행해 Python 3.10을 설치합니다.

    32 |
    brew install python@3.10
    33 | 
    34 |
  2. 35 |
  3. 아래와 같이 PATH를 추가합니다. (zsh의 경우 ~/.zshrc)

    36 |
    export PATH="/usr/local/opt/python@3.10/libexec/bin:$PATH"
    37 | 
    38 |
  4. 39 |
  5. 터미널을 재시작해서 버전을 확인합니다.

    40 |
    $ python --version
    41 | Python 3.10.13
    42 | 
    43 |
  6. 44 |
45 |

파이썬 가상 환경 생성과 활성화

46 |
    47 |
  1. 프로젝트 폴더를 생성합니다.

    48 |
    $ mkdir helloworld
    49 | $ cd helloworld
    50 | 
    51 |
  2. 52 |
  3. 가상 환경 생성

    53 |

    다음 명령을 실행해 가상 환경을 생성합니다. 그럼 env 폴더가 만들어지고 해당 폴더에 가상 환경에 필요한 정보가 들어갑니다.

    54 |
    $ python -m venv env
    55 | 
    56 |
  4. 57 |
  5. 가상 환경 활성화

    58 |

    다음 명령을 실행해 가상 환경을 활성화합니다.

    59 |
    $ source env/bin/activate
    60 | 
    61 |

    가상 환경을 활성화하고 나면 프롬프트의 왼쪽에 가상 환경의 이름이 표시됩니다.

    62 |
    (env) $ _
    63 | 
    64 |
  6. 65 |
  7. pip list 명령으로 실제로 격리된 가상 환경인지 확인합니다.

    66 |
    (env) $ pip list
    67 | Package    Version
    68 | ---------- -------
    69 | pip        23.2
    70 | setuptools 65.5.0
    71 | 
    72 |
  8. 73 |
74 |

가상 환경 비활성화

75 |

가상 환경에서 작업이 모두 끝나면 다음 명령을 실행해 가상 환경을 비활성화합니다.

76 |
(env) $ deactivate
77 | $ _
78 | 
79 |

그럼 가상 환경에서 빠져나와 프롬프트도 원래대로 표시되는 것을 확인할 수 있습니다.

80 |

requirements.txt를 이용한 패키지 설치

81 |

가상 환경에서 다음 명령을 실행해 requirements.txt에 기재된 패키지를 한번에 설치할 수 있습니다.

82 |
(env) $ pip install -r requirements.txt
83 | 
84 | 85 |
86 | 87 | 88 | 89 | -------------------------------------------------------------------------------- /py310/css/theme.css: -------------------------------------------------------------------------------- 1 | h1, h2, h3, h4, h5, h6, .byline, .content-title { 2 | color: #535353; 3 | font-weight: 600; 4 | margin-top: 1.2em; 5 | margin-bottom: 0.3em; 6 | } 7 | 8 | h1 { 9 | font-size: 1.8em 10 | } 11 | 12 | h2 { 13 | font-size: 1.55em 14 | } 15 | 16 | h3 { 17 | font-size: 1.35em 18 | } 19 | 20 | h4 { 21 | font-size: 1.15em 22 | } 23 | 24 | h5, h6 { 25 | font-size: 1.05em; 26 | color: #656565; 27 | } 28 | 29 | a { 30 | font-weight: 600; 31 | color: rgb(44, 89, 214); 32 | text-decoration: none; 33 | } 34 | 35 | a:hover { 36 | text-decoration: underline; 37 | } 38 | 39 | p { 40 | margin: 0.5rem 0 1rem 0; 41 | } 42 | 43 | code { 44 | background: #eee; 45 | color: #555; 46 | padding: 2px 5px; 47 | font-weight: 600; 48 | font-family: consolas,monospace; 49 | border-radius: 3px; 50 | } 51 | 52 | pre { 53 | font-family: consolas,monospace; 54 | font-weight: normal; 55 | line-height: 1.45; 56 | margin: 7px 0 !important; 57 | padding: 0; 58 | border: 1px solid silver; 59 | border-radius: 4px; 60 | overflow-x: auto; 61 | background: #333; 62 | color: #eee; 63 | } 64 | 65 | pre > code { 66 | padding: 0.8em !important; 67 | display: block; 68 | font-weight: normal; 69 | color: #f5f5f5 !important; 70 | background: transparent; 71 | white-space: pre-wrap; 72 | } 73 | pre > code::-webkit-scrollbar { 74 | width: 8px; 75 | height: 8px; 76 | background: #444; 77 | } 78 | 79 | pre > code::-webkit-scrollbar-thumb { 80 | background: #999; 81 | } 82 | 83 | table { 84 | width: 100%; 85 | overflow: auto; 86 | border-spacing: 0; 87 | border-collapse: collapse; 88 | margin: 15px 0; 89 | border-color: gray; 90 | } 91 | 92 | td, th { 93 | border: 1px solid #ddd; 94 | padding: 6px 13px; 95 | display: table-cell; 96 | vertical-align: top; 97 | } 98 | 99 | th { 100 | font-weight: bold; 101 | color: white; 102 | background: #555; 103 | } 104 | 105 | tbody > tr:nth-child(even) { 106 | background: #eee; 107 | } 108 | 109 | img { 110 | max-width: 100%; 111 | } 112 | 113 | ul, ol { 114 | margin: 0.6em 0; 115 | } 116 | 117 | li { 118 | margin: 0.6em 0.2em 0.6em 1em; 119 | } 120 | 121 | ul > li > ul > li > ul > li { 122 | list-style: disc; 123 | } 124 | 125 | ul > li > ul > li { 126 | list-style: square; 127 | } 128 | 129 | .task-list-item { 130 | list-style: none; 131 | margin-left: -2em; 132 | } 133 | 134 | blockquote { 135 | background: #f7f7f7; 136 | color: #777; 137 | font-size: 1.02em; 138 | padding: 15px 20px; 139 | margin: 1.2em; 140 | border-left: 9px #569ad4 solid; 141 | border-radius: 4px 0 0 4px; 142 | } 143 | 144 | blockquote *:first-child { 145 | margin-top: 0; 146 | margin-bottom: 0; 147 | } 148 | 149 | blockquote *:last-child { 150 | margin-bottom: 0; 151 | } 152 | 153 | hr { 154 | margin: 12px 0; 155 | } 156 | 157 | .figure .caption, figure figcaption { 158 | font-size: 0.8em; 159 | font-style: italic; 160 | margin-top: 0; 161 | } 162 | /* hidden display, but still part of document flow */ 163 | .hidden { 164 | display: none; 165 | } 166 | 167 | .hidden-nowidth { 168 | width: 0; 169 | } 170 | 171 | .visually-hidden { 172 | border: 0; 173 | clip: rect(0 0 0 0); 174 | height: 1px; 175 | margin: -1px; 176 | overflow: hidden; 177 | padding: 0; 178 | position: absolute; 179 | width: 1px; 180 | } 181 | 182 | .line-highlight { 183 | background: #e9f5ff !important; 184 | } 185 | 186 | p.line-highlight, h1.line-highlight, h2.line-highlight, h3.line-highlight, h4.line-highlight { 187 | border-radius: 4px; 188 | margin-left: -10px; 189 | margin-right: -10px; 190 | padding-left: 10px; 191 | padding-right: 10px; 192 | } 193 | 194 | code.line-highlight { 195 | background: #444 !important; 196 | } 197 | 198 | 199 | 200 | /* DocFx Styles*/ 201 | .CAUTION, .IMPORTANT, .INFO, .TIP, .NOTE, .WARNING { 202 | padding: 0.1px 20px; 203 | margin: 15px 0; 204 | border-radius: 4px; 205 | } 206 | 207 | .CAUTION > h5, .IMPORTANT > h5, .INFO > h5, .TIP > h5, .NOTE > h5, .WARNING > h5 { 208 | color: inherit; 209 | } 210 | 211 | .CAUTION, .IMPORTANT { 212 | color: #a94442; 213 | background-color: #f2dede; 214 | border-color: #ebccd1; 215 | } 216 | 217 | .WARNING { 218 | color: #8a6d3b; 219 | background-color: #fcf8e3; 220 | border-color: #faebcc; 221 | } 222 | 223 | .INFO, .TIP, .NOTE { 224 | color: #31708f; 225 | background-color: #d9edf7; 226 | border-color: #bce8f1; 227 | } 228 | 229 | .NOTE h5:before, .TIP h5:before { 230 | content: "\f05a"; 231 | font-family: FontAwesome; 232 | padding-right: 6px; 233 | } 234 | 235 | .WARNING h5:before, .CAUTION h5:before { 236 | content: "\f071"; 237 | font-family: FontAwesome; 238 | padding-right: 6px; 239 | } 240 | 241 | .IMPORTANT h5:before { 242 | content: "\f06a"; 243 | font-family: FontAwesome; 244 | padding-right: 6px; 245 | } 246 | 247 | xref { 248 | display: block; 249 | } 250 | 251 | 252 | 253 | @media print { 254 | html, body { 255 | font-family: "Segoe UI Emoji", "Apple Color Emoji", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Helvetica, Arial, sans-serif; 256 | text-rendering: optimizeLegibility; 257 | } 258 | pre { 259 | white-space: pre-wrap; 260 | word-break: normal; 261 | word-wrap: normal; 262 | } 263 | 264 | pre > code { 265 | white-space: pre-wrap; 266 | padding: 1em !important; 267 | /* highlightjs fix for wkhtmltopdf */ 268 | background: #252525; 269 | color: #E2E2E2; 270 | } 271 | } 272 | -------------------------------------------------------------------------------- /py310/css/style.css: -------------------------------------------------------------------------------- 1 | /* GitHub stylesheet for MarkdownPad (http://markdownpad.com) */ 2 | /* Author: Nicolas Hery - http://nicolashery.com */ 3 | /* Version: 29d1c5bc36da364ad5aa86946d420b7bbc54a253 */ 4 | /* code: https://github.com/nicolahery/markdownpad-github */ 5 | 6 | /* RESET 7 | =============================================================================*/ 8 | 9 | html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { 10 | margin: 0; 11 | padding: 0; 12 | border: 0; 13 | } 14 | 15 | /* BODY 16 | =============================================================================*/ 17 | 18 | body { 19 | /*font-family: Helvetica, arial, freesans, clean, sans-serif;*/ 20 | font-family: -apple-system, BlinkMacSystemFont,"Segoe UI", Helvetica, Helvetica, Arial, sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"; 21 | font-size: 16px; 22 | line-height: 1.6; 23 | background: #FFFFEE; 24 | color: #333; 25 | margin: 0 auto; 26 | } 27 | 28 | #container, #footer { 29 | background: #FFF; 30 | border: 1px solid #AAA; 31 | border-top: none; 32 | border-bottom: none; 33 | margin: 0 auto; 34 | max-width: 726px; 35 | padding: 20px; 36 | } 37 | 38 | #footer { 39 | border-top: 1px solid #AAA; 40 | font-size: 14px; 41 | padding: 10px 20px; 42 | text-align: center; 43 | } 44 | 45 | body>*:first-child { 46 | margin-top: 0 !important; 47 | } 48 | 49 | body>*:last-child { 50 | margin-bottom: 0 !important; 51 | } 52 | 53 | /* BLOCKS 54 | =============================================================================*/ 55 | 56 | p, blockquote, ul, ol, dl, table, pre { 57 | margin: 15px 0; 58 | } 59 | 60 | img.block { 61 | display: block; 62 | margin: 0 auto; 63 | } 64 | 65 | img { 66 | display: block; 67 | margin: 0 auto; 68 | } 69 | 70 | /* HEADERS 71 | =============================================================================*/ 72 | 73 | h1, h2, h3, h4, h5, h6 { 74 | margin: 20px 0 10px; 75 | padding: 0; 76 | font-weight: bold; 77 | -webkit-font-smoothing: antialiased; 78 | } 79 | 80 | h1 tt, h1 code, h2 tt, h2 code, h3 tt, h3 code, h4 tt, h4 code, h5 tt, h5 code, h6 tt, h6 code { 81 | font-size: inherit; 82 | } 83 | 84 | h1 { 85 | font-size: 28px; 86 | color: #000; 87 | } 88 | 89 | h2 { 90 | font-size: 24px; 91 | border-bottom: 1px solid #ccc; 92 | color: #000; 93 | } 94 | 95 | h3 { 96 | font-size: 18px; 97 | } 98 | 99 | h4 { 100 | font-size: 16px; 101 | } 102 | 103 | h5 { 104 | font-size: 14px; 105 | } 106 | 107 | h6 { 108 | color: #777; 109 | font-size: 14px; 110 | } 111 | 112 | body>h2:first-child, body>h1:first-child, body>h1:first-child+h2, body>h3:first-child, body>h4:first-child, body>h5:first-child, body>h6:first-child { 113 | margin-top: 0; 114 | padding-top: 0; 115 | } 116 | 117 | a:first-child h1, a:first-child h2, a:first-child h3, a:first-child h4, a:first-child h5, a:first-child h6 { 118 | margin-top: 0; 119 | padding-top: 0; 120 | } 121 | 122 | h1+p, h2+p, h3+p, h4+p, h5+p, h6+p { 123 | margin-top: 10px; 124 | } 125 | 126 | /* LINKS 127 | =============================================================================*/ 128 | 129 | a { 130 | color: #4183C4; 131 | text-decoration: none; 132 | } 133 | 134 | a:hover { 135 | text-decoration: underline; 136 | } 137 | 138 | /* LISTS 139 | =============================================================================*/ 140 | 141 | ul, ol { 142 | padding-left: 30px; 143 | } 144 | 145 | ul li > :first-child, 146 | ol li > :first-child, 147 | ul li ul:first-of-type, 148 | ol li ol:first-of-type, 149 | ul li ol:first-of-type, 150 | ol li ul:first-of-type { 151 | margin-top: 0px; 152 | } 153 | 154 | ul ul, ul ol, ol ol, ol ul { 155 | margin-bottom: 0; 156 | } 157 | 158 | dl { 159 | padding: 0; 160 | } 161 | 162 | dl dt { 163 | font-size: 14px; 164 | font-weight: bold; 165 | font-style: italic; 166 | padding: 0; 167 | margin: 15px 0 5px; 168 | } 169 | 170 | dl dt:first-child { 171 | padding: 0; 172 | } 173 | 174 | dl dt>:first-child { 175 | margin-top: 0px; 176 | } 177 | 178 | dl dt>:last-child { 179 | margin-bottom: 0px; 180 | } 181 | 182 | dl dd { 183 | margin: 0 0 15px; 184 | padding: 0 15px; 185 | } 186 | 187 | dl dd>:first-child { 188 | margin-top: 0px; 189 | } 190 | 191 | dl dd>:last-child { 192 | margin-bottom: 0px; 193 | } 194 | 195 | /* QUOTES 196 | =============================================================================*/ 197 | 198 | blockquote { 199 | border-left: 4px solid #DDD; 200 | padding: 0 15px; 201 | color: #777; 202 | } 203 | 204 | blockquote>:first-child { 205 | margin-top: 0px; 206 | } 207 | 208 | blockquote>:last-child { 209 | margin-bottom: 0px; 210 | } 211 | 212 | /* HORIZONTAL RULES 213 | =============================================================================*/ 214 | 215 | hr { 216 | clear: both; 217 | margin: 15px 0; 218 | height: 0px; 219 | overflow: hidden; 220 | border: none; 221 | background: transparent; 222 | border-bottom: 4px solid #ddd; 223 | padding: 0; 224 | } 225 | 226 | /* TABLES 227 | =============================================================================*/ 228 | 229 | table { 230 | border-spacing: 0px; 231 | border-collapse: collapse; 232 | } 233 | 234 | table th { 235 | font-weight: bold; 236 | } 237 | 238 | table th, table td { 239 | border: 1px solid #ccc; 240 | padding: 6px 13px; 241 | } 242 | 243 | table tr { 244 | border-top: 1px solid #ccc; 245 | background-color: #fff; 246 | } 247 | 248 | table tr:nth-child(2n) { 249 | background-color: #f8f8f8; 250 | } 251 | 252 | /* IMAGES 253 | =============================================================================*/ 254 | 255 | img { 256 | max-width: 100% 257 | } 258 | 259 | table.paging { 260 | margin: 20px 0 0; 261 | border-top: 1px solid #AAA; 262 | width: 100%; 263 | } 264 | 265 | table.paging td { 266 | width: 33%; 267 | text-align: center; 268 | padding: 10px 0 0; 269 | border: none; 270 | } 271 | 272 | table.paging td.prev { 273 | text-align: left; 274 | } 275 | table.paging td.next { 276 | text-align: right; 277 | } 278 | 279 | #disclaimer { 280 | text-align: center; 281 | color: red; 282 | font-weight: bold; 283 | } 284 | 285 | #copyright { 286 | text-align: center; 287 | } -------------------------------------------------------------------------------- /sh.md: -------------------------------------------------------------------------------- 1 | # 코드 색상 적용 2 | 3 | 160쪽 4 | 5 | ~~~typescript 6 | import React, { ErrorInfo, PropsWithChildren } from "react"; 7 | 8 | type Props = PropsWithChildren<{}>; 9 | type State = { hasError: boolean; errorMessage: string }; 10 | 11 | export default class ErrorBoundary extends React.Component { 12 | constructor(props: Props) { 13 | super(props); 14 | this.state = { 15 | hasError: false, 16 | errorMessage: "", 17 | }; 18 | } 19 | 20 | static getDerivedStateFromError(error: Error) { 21 | return { 22 | hasError: true, 23 | errorMessage: error.toString(), 24 | }; 25 | } 26 | 27 | // componentDidCatch를 추가했다. 28 | componentDidCatch(error: Error, info: ErrorInfo) { 29 | console.log(error); 30 | console.log(info); 31 | } 32 | 33 | render() { 34 | // 에러가 발생했을 경우에 렌더링할 JSX 35 | if (this.state.hasError) { 36 | return ( 37 |
38 |

에러가 발생했습니다.

39 |

{this.state.errorMessage}

40 |
41 | ); 42 | } 43 | // 일반적인 상황의 JSX 44 | return this.props.children; 45 | } 46 | } 47 | ~~~ 48 | 49 | 50 | 162쪽 51 | 52 | ~~~jsx 53 | function App() { 54 | return ( 55 | 56 | {/* Child에서 발생한 에러는 여기에서 잡힌다. */} 57 | 58 | 59 | 60 | 61 | ) 62 | } 63 | ~~~ 64 | 65 | 376쪽 66 | ~~~typescript 67 | function RecoilRoot(props: Props): React.Node { 68 | const { override, ...propsExceptOverride } = props 69 | 70 | const ancestorStoreRef = useStoreRef() 71 | if (override === false && ancestorStoreRef.current !== defaultStore) { 72 | // If ancestorStoreRef.current !== defaultStore, it means that this 73 | // RecoilRoot is not nested within another. 74 | return props.children 75 | } 76 | 77 | return 78 | } 79 | ~~~ 80 | 81 | 376쪽 82 | 83 | ~~~typescript 84 | const AppContext = React.createContext({ current: defaultStore }) 85 | const useStoreRef = (): StoreRef => useContext(AppContext) 86 | ~~~ 87 | 88 | 709쪽 89 | 90 | ~~~typescript 91 | import React from 'react' 92 | import ReactDOM from 'react-dom/client' 93 | import App from './App' 94 | 95 | const rootElement = document.getElementById('root') 96 | const root = ReactDOM.createRoot(rootElement) 97 | 98 | root.render( 99 | 100 | 101 | , 102 | ) 103 | ~~~ 104 | 105 | 710쪽 106 | 107 | ~~~typescript 108 | import { StrictMode } from 'react' 109 | import { createRoot } from 'react-dom/client' 110 | 111 | const root = createRoot(document.getElementById('root')) 112 | 113 | root.render( 114 | 115 | 116 | , 117 | ) 118 | ~~~ 119 | 120 | 121 | 715쪽 122 | 123 | ~~~typescript 124 | export default function App() { 125 | console.log('component body') 126 | 127 | const [number, setNumber] = useState(() => { 128 | console.log('initialize state') 129 | return 0 130 | }) 131 | 132 | const handleClick = useCallback(() => { 133 | setNumber((prev) => prev + 1) 134 | }, []) 135 | 136 | const tenTimes = useMemo(() => { 137 | console.log('* 10!') 138 | return number * 10 139 | }, [number]) 140 | 141 | return 142 | } 143 | ~~~ 144 | 145 | 719쪽 146 | 147 | ~~~typescript 148 | function ProfilePage() { 149 | // initialResource는 Promise로 데이터를 불러오는 데 어느 정도 시간이 필요함 150 | const [resource, setResource] = useState(initialResource) 151 | return ( 152 | <> 153 | 156 |

Loading profile...

157 | 158 | } 159 | > 160 | Loading posts...}> 161 | 162 | 163 | 164 |
165 | 166 | ) 167 | } 168 | ~~~ 169 | 170 | 719쪽 171 | 172 | ~~~typescript 173 | // components/SampleComponent.tsx 174 | export default function SampleCompnent() { 175 | return <>동적으로 가져오는 컴포넌트 176 | } 177 | 178 | // pages/index.tsx 179 | import { Suspense, lazy } from 'react' 180 | 181 | const DynamicSampleComponent = lazy( 182 | () => import('../components/SampleComponent'), 183 | ) 184 | 185 | export default function Home() { 186 | return ( 187 | 로딩중}> 188 | 189 | 190 | ) 191 | } 192 | ~~~ 193 | 194 | 720쪽 195 | 196 | ~~~typescript 197 | import { Suspense, useEffect, useState, ComponentProps } from 'react' 198 | 199 | function useMounted() { 200 | const [mounted, setMounted] = useState(false) 201 | 202 | // useEffect는 클라이언트에서만 실행되므로 mounted가 true면 203 | // 클라이언트에서 실행되는 코드다. 204 | useEffect(() => { 205 | setMounted(true) 206 | }, []) 207 | 208 | return mounted 209 | } 210 | 211 | export default function CustomSuspense( 212 | props: ComponentProps, 213 | ) { 214 | const isMounted = useMounted() 215 | 216 | if (isMounted) { 217 | return 218 | } 219 | return <>{props.fallback} 220 | } 221 | ~~~ 222 | 223 | 734쪽 224 | 225 | ~~~typescript 226 | export default function NotFound() { 227 | return ( 228 | <> 229 |

Not Found

230 |

404

231 | 232 | ) 233 | } 234 | ~~~ 235 | 236 | 734쪽 237 | 238 | ~~~typescript 239 | export default function Loading() { 240 | return 'Loading...' 241 | } 242 | ~~~ 243 | 244 | 760쪽 245 | 246 | ~~~ts 247 | async function serverAction() { 248 | "use server"; 249 | // 서버에 바로 접근하는 코드 250 | } 251 | 252 | // 이 파일 내부의 모든 내용이 서버 액션으로 간주된다. 253 | 'use server' 254 | 255 | export async function myAction() { 256 | // ... 257 | // 서버에 바로 접근하는 코드 258 | } 259 | ~~~ 260 | 261 | 761쪽 262 | 263 | ~~~ts 264 | export default function Page() { 265 | async function handleSubmit() { 266 | 'use server' 267 | 268 | console.log('해당 작업은 서버에서 수행합니다. 따라서 CORS 이슈가 없습니다.') 269 | 270 | const response = await fetch('https://jsonplaceholder.typicode.com/posts', { 271 | method: 'post', 272 | body: JSON.stringify({ 273 | title: 'foo', 274 | body: 'bar', 275 | userId: 1, 276 | }), 277 | headers: { 278 | 'Content-type': 'application/json; charset=UTF-8', 279 | }, 280 | }) 281 | 282 | const result = await response.json() 283 | console.log(result) 284 | } 285 | 286 | return ( 287 |
288 | 289 |
290 | ) 291 | } 292 | ~~~ 293 | 294 | 762쪽 295 | 296 | ~~~ts 297 | // .next/server/app/server-action/form/page.js 298 | 299 | // 해당 페이지에서 수행하는 서버 액션을 모아둔다. 300 | const actions = { 301 | // 앞서 페이로드에서 본 액션 아이디를 확인할 수 있다. 302 | d0b22c18e02d4e94b1ed17222f5f945a78603861: () => 303 | Promise.resolve(/* import() eager */) 304 | .then(__webpack_require__.bind(__webpack_require__, 5948)) 305 | .then((mod) => mod['$$ACTION_0']), 306 | } 307 | 308 | // ... 309 | 310 | // 해당 페이지 311 | function Page() { 312 | async function handleSubmit() { 313 | return $$ACTION_0(handleSubmit.$$bound) 314 | } 315 | // ... 316 | } 317 | 318 | //... 319 | 320 | async function $$ACTION_0(closure) { 321 | console.log('해당 작업은 서버에서 수행합니다. 따라서 CORS 이슈가 없습니다.') 322 | const response = await fetch('https://jsonplaceholder.typicode.com/posts', { 323 | method: 'post', 324 | body: JSON.stringify({ 325 | title: 'foo', 326 | body: 'bar', 327 | userId: 1, 328 | }), 329 | headers: { 330 | 'Content-type': 'application/json; charset=UTF-8', 331 | }, 332 | }) 333 | const result = await response.json() 334 | console.log(result) 335 | } 336 | ~~~ 337 | 338 | 339 | 768쪽 340 | 341 | ~~~ts 342 | export default function Page() { 343 | async function handleClick() { 344 | 'use server' 345 | 346 | // server mutation이 필요 없는 작업 347 | } 348 | return 349 | } 350 | ~~~ 351 | 352 | 353 | 770쪽 354 | 355 | ~~~ts 356 | import { ReactNode } from 'react' 357 | 358 | import { fetchPostById } from '#services/server' 359 | 360 | export default async function Page({ 361 | params, 362 | }: { 363 | params: { id: string } 364 | children?: ReactNode 365 | }) { 366 | 367 | // const response = await fetch( 368 | // `https://jsonplaceholder.typicode.com/posts/${id}`, 369 | // options, 370 | // ) 371 | // const data = await response.json() 372 | // 와 같다. 373 | const data = await fetchPostById(params.id, { cache: 'no-cache' }) 374 | 375 | return ( 376 |
377 |

{data.title}

378 |

{data.body}

379 |
380 | ) 381 | } 382 | ~~~ 383 | 384 | 853쪽 385 | 386 | ~~~html 387 |
388 | ~~~ 389 | -------------------------------------------------------------------------------- /npm-deep-dive-links.md: -------------------------------------------------------------------------------- 1 | # [《npm Deep Dive》](https://wikibook.co.kr/npm-deep-dive/) 본문 내 URL 2 | 3 | | 페이지 | URL | 4 | | -- | -- | 5 | | 1 | https://github.com/yujeongJeon/npm-deep-dive-example/pull/5 | 6 | | 3 | https://github.com/yujeongJeon/npm-deep-dive-example/tree/main/chapter0/b-example | 7 | | 3 | https://github.com/yujeongJeon/npm-deep-dive-example/pull/9 | 8 | | 4 | https://github.com/sindresorhus/query-string/releases/tag/v8.0.0 | 9 | | 6 | https://www.reddit.com/r/ProgrammerHumor/comments/6s0wov/heaviest_objects_in_the_universe/ | 10 | | 9 | https://github.com/ | 11 | | 9 | https://www.npmjs.com/ | 12 | | 9 | https://github.com/yujeongJeon/npm-deep-dive-example | 13 | | 9 | https://github.com/nvm-sh/nvm | 14 | | 9 | https://github.com/Schniz/fnm | 15 | | 9 | https://www.npmjs.com/search?q=%40ndive | 16 | | 11 | https://github.com/npm/cli?tab=readme-ov-file#is-npm-an-acronym-for-node-package-manager | 17 | | 11 | https://increment.com/development/interview-with-isaac-z-schlueter-ceo-of-npm/ | 18 | | 11 | https://github.com/isaacs | 19 | | 12 | https://registry.npmjs.org | 20 | | 13 | https://registry.npmjs.org/lodash | 21 | | 13 | https://www.npmjs.com | 22 | | 13 | https://www.npmjs.com/package/react | 23 | | 14 | https://bundlephobia.com | 24 | | 14 | https://bundlephobia.com/package/react-router-dom@6.23.1 | 25 | | 15 | https://npmtrends.com | 26 | | 15 | https://npmtrends.com/date-fns-vs-dayjs-vs-luxon-vs-moment | 27 | | 16 | https://www.unpkg.com/browse/react | 28 | | 16 | https://npmtrends.com/recoil | 29 | | 16 | https://www.unpkg.com/ | 30 | | 18 | https://www.npmjs.com/ | 31 | | 18 | https://security.snyk.io/vuln/npm | 32 | | 19 | https://security.snyk.io/vuln/SNYK-JS-EVENTSTREAM-72638 | 33 | | 23 | https://semver.org/ | 34 | | 23 | https://semver.org/lang/ko/#유의적-버전-명세-semver | 35 | | 24 | https://docs.npmjs.com/policies/unpublish | 36 | | 27 | https://www.npmjs.com/package/react?activeTab=versions | 37 | | 29 | https://semver.org/#how-should-i-deal-with-revisions-in-the-0yz-initial-development-phase | 38 | | 30 | https://github.com/npm/node-semver | 39 | | 31 | https://github.com/npm/node-semver?tab=readme-ov-file#usage | 40 | | 32 | https://github.com/left-pad/left-pad | 41 | | 32 | https://www.npmjs.com/package/left-pad/v/0.0.3?activeTab=code | 42 | | 32 | https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/String/padStart | 43 | | 33 | https://github.com/lydell/line-numbers#readme | 44 | | 33 | https://github.com/babel/babel/blob/v6.7.2/packages/babel-code-frame/package.json | 45 | | 33 | https://medium.com/@dlmanning/we-don-t-mean-to-be-a-dick-about-it-but-it-s-a-registered-trademark-in-most-countries-around-the-be0a382625ff | 46 | | 34 | https://github.com/left-pad/left-pad/issues/4#issuecomment-200051244 | 47 | | 34 | https://twitter.com/seldo/status/712414400808755200 | 48 | | 34 | https://twitter.com/seldo/status/712427318870839296 | 49 | | 34 | https://github.com/npm/security-holder | 50 | | 35 | https://www.npmjs.com/package/everything?activeTab=code | 51 | | 36 | https://npm.io | 52 | | 36 | https://npm.io/package/@everything-registry/sub-chunk-1623 | 53 | | 36 | https://uncenter.dev/posts/npm-install-everything/ | 54 | | 37 | https://drive.google.com/file/d/1fawTtbh7zfLhiziiouXf7M8D6krDNLMf/view | 55 | | 37 | https://github.com/then/is-promise/blob/master/index.js | 56 | | 37 | https://github.com/then/is-promise/compare/eb988e00dbecbd54df50a232ae6fec8882548350...8e51d62bf158eb0685cd6109f0137472e8c | 57 | | 39 | https://github.com/facebook/create-react-app/issues/8896 | 58 | | 41 | https://github.com/then/is-promise/commit/0b69f52ee73c9f6ad4480f02c9bccb14d2038656 | 59 | | 41 | https://github.com/SBoudrias/run-async/commit/f3e0a18abf6e9569abfcf327daa9351c95f109b1 | 60 | | 42 | https://github.com/Marak/colors.js | 61 | | 42 | https://github.com/Marak/faker.js/commit/2c4f82f0af819e2bdb2623f0e429754f38c2c2f2 | 62 | | 42 | https://web.archive.org/web/20220111013711/https://github.com/Marak/faker.js/commit/2c4f82f0af819e2bdb2623f0e429754f38c2c2f2 | 63 | | 43 | https://github.com/Marak/colors.js/blob/074a0f8ed0c31c35d13d28632bd8a049ff136fb6/lib/custom/american.js | 64 | | 43 | https://github.com/Marak/colors.js/blob/master/lib/index.js | 65 | | 45 | https://github.com/aws/aws-cdk/pull/18324 | 66 | | 45 | https://github.com/Marak/faker.js/issues/1046 | 67 | | 45 | https://web.archive.org/web/20210704022108/https://github.com/Marak/faker.js/issues/1046 | 68 | | 46 | https://github.com/dominictarr/event-stream | 69 | | 46 | https://github.com/hugeglass/flatmap-stream | 70 | | 46 | https://github.com/dominictarr/event-stream/commit/e3163361fed01384c986b9b4c18feb1fc42b8285 | 71 | | 46 | https://github.com/dominictarr/event-stream/commit/5999958dfc1b0a80e6caeac4cdc76b3b828bdfe2 | 72 | | 46 | https://github.com/dominictarr/event-stream/commit/908fee5c65d4eb02809a84a1ebc3e5df1f935cd1 | 73 | | 46 | https://github.com/dominictarr/event-stream/commit/2bd63d58fe24367372690c29c7249ed1c7145601 | 74 | | 46 | https://github.com/remy/nodemon | 75 | | 46 | https://github.com/remy/nodemon/issues/1442 | 76 | | 47 | https://github.com/dominictarr/event-stream/issues/116 | 77 | | 47 | https://github.com/dominictarr/event-stream/issues/116#issuecomment-441746370 | 78 | | 49 | https://www.npmjs.com/ | 79 | | 49 | https://npmtrends.com/ | 80 | | 50 | https://snyk.io/ | 81 | | 51 | https://snyk.io/blog/a-post-mortem-of-the-malicious-event-stream-backdoor/ | 82 | | 55 | https://registry.npmjs.org/@babel/cli | 83 | | 55 | https://www.npmjs.com/package/fs | 84 | | 56 | https://www.npmjs.com/ | 85 | | 59 | https://github.com/facebook/react/issues | 86 | | 59 | https://spdx.org/licenses/ | 87 | | 59 | https://opensource.org/licenses/ | 88 | | 60 | https://opensource.org/license/mit | 89 | | 60 | https://github.com/facebook/react/commit/b765fb25ebc6e53bb8de2496d2828d9d01c2774b | 90 | | 60 | https://opensource.org/license/isc-license-txt | 91 | | 60 | https://opensource.org/license/apache-2-0 | 92 | | 61 | https://opensource.org/license/bsd-2-clause | 93 | | 61 | https://code.facebook.com/posts/112130496157735/explaining-react-s-license/ | 94 | | 61 | https://github.com/facebook/react/issues/10191 | 95 | | 71 | https://www.npmjs.com/package/dotenv | 96 | | 75 | https://registry.npmjs.org/ | 97 | | 77 | https://nodejs.org/api/corepack.html | 98 | | 78 | https://github.com/nodejs/node/pull/37277 | 99 | | 78 | https://github.com/nodejs/TSC/issues/1012#issuecomment-828776990 | 100 | | 78 | https://github.com/mhdawson/TSC/blob/8770704d6a65b95ef49dfc569e4f77cbaaaac1bb/meetings/2024-01-10.md | 101 | | 78 | https://github.com/nodejs/TSC/pull/1527 | 102 | | 79 | https://github.com/mhdawson/TSC/blob/8770704d6a65b95ef49dfc569e4f77cbaaaac1bb/meetings/2024-01-10.md | 103 | | 79 | https://github.com/nodejs/TSC/pull/1527 | 104 | | 85 | https://github.com/microsoft/TypeScript/issues/43121 | 105 | | 85 | https://groups.google.com/g/nodejs/c/NmL7jdeuw0M/m/yTqI05DRQrIJ | 106 | | 88 | https://www.npmjs.com/ | 107 | | 89 | https://registry.npmjs.org/ | 108 | | 90 | https://registry.yarnpkg.com/ | 109 | | 90 | https://registry.npmjs.org/ | 110 | | 90 | https://registry.yarnpkg.com/ | 111 | | 90 | https://azure.microsoft.com/ko-kr/products/devops/artifacts | 112 | | 90 | https://jfrog.com/artifactory/ | 113 | | 90 | https://help.sonatype.com/en/sonatype-nexus-repository.html | 114 | | 90 | https://npm.pkg.github.com/ | 115 | | 90 | https://github.com/settings/tokens | 116 | | 90 | https://registry.yarnpkg.com/ | 117 | | 90 | https://toolbox.googleapps.com/apps/dig/#CNAME/registry.yarnpkg.com | 118 | | 90 | https://registry.npmmirror.com/ | 119 | | 91 | https://docs.npmjs.com/cli/v8/using-npm/config#legacy-peer-deps | 120 | | 96 | https://github.com/npm/node-semver | 121 | | 97 | https://docs.github.com/ko/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent | 122 | | 98 | https://semver.npmjs.com/ | 123 | | 101 | https://cpojer.net/posts/rethinking-javascript-infrastructure#devdependencies-were-a-mistake | 124 | | 103 | https://github.com/streamich/react-use | 125 | | 103 | https://github.com/streamich/react-use/blob/ade8d3905f544305515d010737b4ae604cc51024/src/useAsync.ts#L1 | 126 | | 104 | https://github.com/vercel/next.js/blob/dafcd43fac3ef9d0ffd94f9c94fd61db4449df25/packages/next/package.json#L112 | 127 | | 122 | https://security.snyk.io/vuln/SNYK-JS-BROWSERSLIST-1090194 | 128 | | 123 | https://github.com/patriksimek/vm2 | 129 | | 123 | https://github.com/patriksimek/vm2/releases/tag/3.9.15 | 130 | | 123 | https://github.com/patriksimek/vm2/releases/tag/3.9.16 | 131 | | 123 | https://github.com/patriksimek/vm2/releases/tag/3.9.17 | 132 | | 123 | https://github.com/patriksimek/vm2/releases/tag/3.9.18 | 133 | | 123 | https://github.com/patriksimek/vm2/issues | 134 | | 123 | https://github.com/laverdet/isolated-vm | 135 | | 125 | https://github.com/jashkenas/underscore/blob/master/package.json | 136 | | 125 | https://www.npmjs.com/package/underscore?activeTab=code | 137 | | 130 | https://github.com/facebook/react/blob/d486051de7a77236e729d395a18acac2c5ece35f/packages/react/package.json#L3 | 138 | | 130 | https://github.com/facebook/react/blob/d486051de7a77236e729d395a18acac2c5ece35f/packages/react/package.json#L8 | 139 | | 130 | https://github.com/facebook/react/blob/d486051de7a77236e729d395a18acac2c5ece35f/packages/react/package.json#L4-L6 | 140 | | 130 | https://github.com/npm/npm/issues/4938 | 141 | | 130 | https://github.com/facebook/react/blob/9e3b772b8cabbd8cadc7522ebe3dde3279e79d9e/packages/react/package.json#L41 | 142 | | 131 | https://docs.npmjs.com/cli/v10/commands/npm | 143 | | 132 | https://github.com/npm/cli/tree/latest/workspaces/arborist | 144 | | 132 | https://en.wikipedia.org/wiki/Arborist | 145 | | 144 | https://github.com/npm/cli/blob/fc6e291e9c2154c2e76636cb7ebf0a17be307585/lib/commands/install.js#L141-L150 | 146 | | 144 | https://github.com/npm/cli/blob/fc6e291e9c2154c2e76636cb7ebf0a17be307585/lib/commands/ci.js#L91 | 147 | | 146 | https://github.com/npm/pacote#readme | 148 | | 152 | https://learn.microsoft.com/ko-kr/windows/win32/fileio/naming-a-file?redirectedfrom=MSDN#maximum-path-length-limitation | 149 | | 152 | https://discussions.apple.com/thread/1785953?answerId=8440168022&sortBy=best#8440168022 | 150 | | 152 | https://medium.com/@linuxschooltech/how-to-check-maximun-path-length-in-linux-b4296c99313e | 151 | | 163 | https://docs.npmjs.com/cli/v8/configuring-npm/folders#executables | 152 | | 167 | https://docs.npmjs.com/cli/v10/commands/npm-link | 153 | | 173 | https://docs.npmjs.com/cli/v8/using-npm/workspaces | 154 | | 174 | https://pnpm.io/motivation#creating-a-non-flat-node_modules-directory | 155 | | 180 | https://docs.npmjs.com/cli/v10/commands/npx | 156 | | 181 | https://docs.npmjs.com/cli/v10/commands/npx#compatibility-with-older-npx-versions | 157 | | 184 | https://docs.npmjs.com/cli/v10/commands/npx#npx-vs-npm-exec | 158 | | 192 | https://docs.npmjs.com/cli/v10/configuring-npm/package-lock-json#description | 159 | | 193 | https://github.com/jashkenas/underscore/commit/78daa144a358481aabdc9c3b7b87b1835f36ee08 | 160 | | 193 | https://github.com/jashkenas/underscore | 161 | | 193 | https://github.com/jashkenas/underscore/commit/cf6ed6f33296c8d2e62ef144d203945910dc05bd#diff-053150b640a7ce75eff69d1a22cae7f0f94ad64ce9a855db544dda0929316519 | 162 | | 194 | https://docs.github.com/ko/repositories/working-with-files/managing-files/customizing-how-changed-files-appear-on-github | 163 | | 195 | https://yarnpkg.com/ | 164 | | 195 | https://engineering.fb.com/2016/10/11/web/yarn-a-new-package-manager-for-javascript/ | 165 | | 195 | https://twitter.com/sebmck/status/902900008139317248 | 166 | | 195 | https://twitter.com/sebmck/status/902899559705272320 | 167 | | 195 | https://npm.github.io/how-npm-works-docs/npm3/non-determinism.html | 168 | | 196 | https://npm.github.io/how-npm-works-docs/npm3/non-determinism.html | 169 | | 196 | https://github.com/npm/npm/issues/10999#issuecomment-174349467 | 170 | | 196 | https://github.com/npm/npm/releases/tag/v5.7.0 | 171 | | 196 | https://github.blog/2021-02-02-npm-7-is-now-generally-available/#changes-to-the-lockfile | 172 | | 196 | https://github.com/npm/npm/issues/10999 | 173 | | 196 | https://docs.npmjs.com/cli/v10/commands/npm-shrinkwrap | 174 | | 197 | https://web.archive.org/web/20170507161408/https://yarnpkg.com/en/docs/install#alternatives-tab | 175 | | 198 | https://web.archive.org/web/20170326044241/https://github.com/npm/npm/ | 176 | | 198 | https://web.archive.org/web/20170326044241/https://github.com/npm/npm/ | 177 | | 198 | https://javascript.plainenglish.io/an-abbreviated-history-of-javascript-package-managers-f9797be7cf0e | 178 | | 198 | https://yarnpkg.com/blog/2016/11/24/offline-mirror/ | 179 | | 198 | https://snyk.io/blog/yarn-is-micro-secure/ | 180 | | 199 | https://yarnpkg.com/blog/release/2.0#how-easy-will-it-be-to-migrate-to-yarn-2 | 181 | | 199 | https://github.com/yarnpkg/yarn | 182 | | 199 | https://github.com/yarnpkg/berry | 183 | | 200 | https://github.com/yarnpkg/berry/issues/766#issuecomment-578443566 | 184 | | 200 | https://github.com/yarnpkg/berry/issues/766#issuecomment-580658470 | 185 | | 201 | https://web.archive.org/web/20200527112112/https://yarnpkg.com/features/pnp | 186 | | 201 | https://blog.npmjs.org/post/161081169345/v500.html | 187 | | 202 | https://web.archive.org/web/20200126191700/https://twitter.com/cpojer/status/1137066201727799298 | 188 | | 203 | https://star-history.com/#yarnpkg/berry&Date | 189 | | 206 | https://github.com/yarnpkg/yarn/issues/5629#issuecomment-417919746 | 190 | | 206 | https://www.fastly.com/ | 191 | | 206 | https://yarnpkg.com/getting-started/qa#why-registryyarnpkgcom-does-facebook-track-us | 192 | | 207 | https://github.com/yarnpkg/yarn/issues/5891#issuecomment-392253579 | 193 | | 207 | https://yarnpkg.com/getting-started/qa#why-registryyarnpkgcom-does-facebook-track-us | 194 | | 217 | https://github.com/yarnpkg/berry/blob/3415a677051b56e67f8bf2aee0753bf1ea9aa890/packages/yarnpkg-pnp/sources/loader/applyPatch.ts#L127-L145 | 195 | | 224 | https://docs.github.com/ko/repositories/working-with-files/managing-large-files/about-git-large-file-storage#git-대용량-파일-스토리지 | 196 | | 224 | https://github.com/mskelton/yarn-plugin-outdated | 197 | | 224 | https://github.com/devoto13/yarn-plugin-engines | 198 | | 225 | https://github.com/mhassan1/yarn-plugin-licenses | 199 | | 225 | https://github.com/wojtekmaj/yarn-plugin-nolyfill | 200 | | 225 | https://github.com/es-shims/array-includes | 201 | | 225 | https://bundlephobia.com/package/array-includes@3.1.8 | 202 | | 225 | https://bundlephobia.com/package/@nolyfill/array-includes@1.0.28 | 203 | | 231 | https://pnpm.io/faq#what-does-pnpm-stand-for | 204 | | 231 | https://github.com/zkochan | 205 | | 232 | https://github.com/rstacruz | 206 | | 234 | https://pnpm.io/npmrc#resolution-mode | 207 | | 239 | https://pnpm.io/ko/next/npmrc#의존성-호이스팅-설정 | 208 | | 240 | https://pnpm.io/ko/motivation | 209 | | 242 | https://pnpm.io/npmrc#package-import-method | 210 | | 245 | https://github.com/pnpm/pnpm/blob/27c33f0319f86c45c1645d064cd9c28aada80780/lockfile/lockfile-to-pnp/package.json#L47 | 211 | | 245 | https://github.com/pnpm/pnpm/blob/27c33f0319f86c45c1645d064cd9c28aada80780/lockfile/lockfile-to-pnp/src/index.ts#L9 | 212 | | 246 | https://github.com/vercel/next.js/blob/canary/pnpm-lock.yaml | 213 | | 246 | https://github.com/vuejs/core/blob/main/pnpm-lock.yaml | 214 | | 246 | https://github.com/vitejs/vite/blob/main/pnpm-lock.yaml | 215 | | 247 | https://github.com/babel/babel | 216 | | 248 | https://lerna.js.org/ | 217 | | 248 | https://github.com/babel/babel/commits/main/lerna.json | 218 | | 248 | https://github.com/lerna/lerna/pull/2680#issuecomment-679451291 | 219 | | 248 | https://github.com/lerna/lerna/issues/1172#issuecomment-353735052 | 220 | | 248 | https://github.com/babel/babel/pull/12138 | 221 | | 248 | https://github.com/lerna/lerna/commit/8b99493ac90484e05f7ebee533c0763534d60218 | 222 | | 248 | https://github.com/lerna/lerna/issues/3121 | 223 | | 258 | https://repo.yarnpkg.com/4.2.2/packages/yarnpkg-cli/bin/yarn.js | 224 | | 258 | https://github.com/npm/cli/blob/92e71e6b0c7889e243e6b54ef8b4eb9656de95f8/package.json#L5-L11 | 225 | | 258 | https://classic.yarnpkg.com/lang/en/docs/workspaces | 226 | | 268 | https://github.com/changesets/changesets | 227 | | 268 | https://rushjs.io/ | 228 | | 269 | https://github.com/tophat/yarn-plugin-semver-up | 229 | | 269 | https://github.com/tophat/yarn-plugin-semver-up | 230 | | 271 | https://github.com/yarnpkg/berry/issues/821 | 231 | | 272 | https://github.com/tophat/yarn-plugin-licenses | 232 | | 273 | https://p.datadoghq.eu/sb/d2wdprp9uki7gfks-c562c42f4dfd0ade4885690fa719c818?fromUser=false&refresh_mode=sliding&tpl_var_npm%5B0%5D=%2A&tpl_var_pnpm%5B0%5D=%2A&tpl_var_yarn-classic%5B0%5D=%2A&tpl_var_yarn-modern%5B0%5D=%2A&tpl_var_yarnnm%5B0%5D=%2A&tpl_var_yarn-pnpm%5B0%5D=no&from_ts=1723700705285&to_ts=1731476705285&live=true | 233 | | 274 | https://pnpm.io/motivation | 234 | | 275 | https://pnpm.io/benchmarks | 235 | | 275 | https://github.com/pnpm/pnpm.io/blob/main/benchmarks/fixtures/alotta-files/package.json | 236 | | 281 | https://en.wikipedia.org/wiki/Ajax_(programming) | 237 | | 282 | https://googleblog.blogspot.com/2008/09/fresh-take-on-browser.html | 238 | | 282 | https://blog.google/products/maps/look-back-15-years-mapping-world/ | 239 | | 288 | https://requirejs.org/docs/api.html | 240 | | 290 | https://github.com/umdjs/umd/blob/master/templates/returnExports.js | 241 | | 291 | https://github.com/systemjs/systemjs | 242 | | 291 | https://caniuse.com/?search=es-module | 243 | | 292 | https://github.com/systemjs/systemjs/blob/main/docs/system-register.md | 244 | | 295 | https://www.blueskyonmars.com/2009/01/29/what-server-side-javascript-needs/ | 245 | | 296 | https://jsconf.com/ | 246 | | 296 | https://arstechnica.com/information-technology/2009/12/commonjs-effort-sets-javascript-on-path-for-world-domination/ | 247 | | 296 | https://wiki.commonjs.org/wiki/Packages/1.0 | 248 | | 299 | https://wiki.commonjs.org/wiki/Modules/Transport/D | 249 | | 299 | https://www.youtube.com/watch?v=EeYvFl7li9E | 250 | | 300 | https://nodejs.org/api/packages.html#packagejson-and-file-extensions | 251 | | 305 | https://nodejs.org/api/modules.html#the-module-scope | 252 | | 308 | https://nodejs.org/api/addons.html#addons_loading_addons_using_require | 253 | | 310 | https://nodejs.org/api/modules.html#core-modules | 254 | | 310 | https://nodejs.org/api/module.html#modulebuiltinmodules | 255 | | 314 | https://nodejs.org/api/modules.html#cycles | 256 | | 322 | https://github.com/indutny/webpack-common-shake?tab=readme-ov-file#commonjs-tree-shaker-plugin-for-webpack | 257 | | 324 | https://nodejs.org/api/esm.html | 258 | | 325 | https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Statements/export | 259 | | 327 | https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Statements/import | 260 | | 329 | https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Operators/import.meta | 261 | | 330 | https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/import.meta/resolve#not_an_ecmascript_feature | 262 | | 330 | https://html.spec.whatwg.org/multipage/webappapis.html#resolve-a-module-specifier | 263 | | 330 | https://docs.deno.com/runtime/manual/runtime/import_meta_api | 264 | | 330 | https://nodejs.org/docs/latest/api/esm.html#importmetaresolvespecifier | 265 | | 333 | https://github.com/tc39/proposal-top-level-await | 266 | | 334 | https://html.spec.whatwg.org/#fetch-a-module-script-tree | 267 | | 334 | https://nodejs.org/api/packages.html#modules-loaders | 268 | | 334 | https://tc39.es/ecma262/#table-module-record-fields | 269 | | 334 | https://tc39.es/ecma262/#sec-parse-script | 270 | | 334 | https://tc39.es/ecma262/#sec-parsemodule | 271 | | 335 | https://tc39.es/ecma262/#sec-abstract-module-records | 272 | | 342 | https://github.com/nodejs/node/blob/main/doc/changelogs/CHANGELOG_V12.md#notable-changes-24 | 273 | | 344 | https://nodejs.org/api/packages.html#determining-module-system | 274 | | 345 | https://nodejs.org/ko/blog/release/v22.7.0#module-syntax-detection-is-now-enabled-by-default | 275 | | 349 | https://nodejs.org/api/esm.html#interoperability-with-commonjs | 276 | | 351 | https://github.com/nodejs/node/pull/51977 | 277 | | 356 | https://github.com/chalk/chalk/releases/tag/v5.0.0 | 278 | | 357 | https://nodejs.org/docs/latest-v18.x/api/esm.html#differences-between-es-modules-and-commonjs | 279 | | 357 | https://nodejs.org/docs/latest-v18.x/api/module.html#modulecreaterequirefilename | 280 | | 359 | https://nodejs.org/api/esm.html#terminology | 281 | | 360 | https://url.spec.whatwg.org/ | 282 | | 360 | https://whatwg.org/ | 283 | | 360 | https://nodejs.org/api/packages.html#subpath-exports | 284 | | 363 | https://nodejs.org/api/modules.html#all-together | 285 | | 363 | https://nodejs.org/docs/latest-v18.x/api/esm.html#resolution-and-loading-algorithm | 286 | | 365 | https://nodejs.org/api/modules.html#all-together | 287 | | 378 | https://nodejs.org/docs/latest-v18.x/api/esm.html#resolution-and-loading-algorithm | 288 | | 386 | https://nodejs.org/docs/latest-v18.x/api/esm.html#resolution-algorithm-specification | 289 | | 388 | https://nodejs.org/docs/latest-v18.x/api/esm.html#resolution-algorithm-specification | 290 | | 395 | https://github.com/storybookjs/storybook/blob/next/code/renderers/react/package.json | 291 | | 400 | https://www.npmjs.com/package/ky | 292 | | 402 | https://nextjs.org/docs/messages/webpack5 | 293 | | 402 | https://nextjs.org/blog/next-12#es-modules-support-and-url-imports | 294 | | 405 | https://github.com/rollup/rollup/wiki/pkg.module | 295 | | 405 | https://nodejs.org/api/packages.html#dual-commonjses-module-packages | 296 | | 405 | https://web.archive.org/web/20170530193915/https://rollupjs.org/ | 297 | | 406 | https://nodejs.org/api/packages.html#conditional-exports | 298 | | 408 | https://nodejs.org/api/packages.html#dual-package-hazard | 299 | | 411 | https://stackoverflow.com/questions/75976618/why-does-the-instanceof-operator-return-false-on-instance-passed-to-library | 300 | | 413 | https://nodejs.org/api/packages.html#writing-dual-packages-while-avoiding-or-minimizing-hazards | 301 | | 416 | https://github.com/wooorm/npm-esm-vs-cjs | 302 | | 422 | https://arethetypeswrong.github.io/ | 303 | | 422 | https://blog.isquaredsoftware.com/2023/08/esm-modernization-lessons/ | 304 | | 423 | https://deno.com/blog/commonjs-is-hurting-javascript | 305 | | 424 | https://aws.amazon.com/ko/what-is/edge-computing/ | 306 | | 424 | https://aws.amazon.com/ko/what-is/serverless-computing/ | 307 | | 424 | https://bun.sh/blog/commonjs-is-not-going-away | 308 | | 425 | https://bun.sh/blog/commonjs-is-not-going-away#commonjs-starts-faster | 309 | | 427 | https://developer.mozilla.org/ko/ | 310 | | 429 | https://ieeexplore.ieee.org/document/10043768/ | 311 | | 429 | https://tc39.es/proposal-export-ns-from | 312 | | 429 | https://github.com/tc39/proposal-numeric-separator | 313 | | 430 | https://ieeexplore.ieee.org/document/10043768 | 314 | | 432 | https://github.com/google/traceur-compiler | 315 | | 432 | https://github.com/paulmillr/es6-shim | 316 | | 432 | https://www.infoq.com/news/2015/02/babel-new-name-for-6to5/ | 317 | | 433 | https://ko.wikipedia.org/wiki/은하수를_여행하는_히치하이커를_위한_안내서 | 318 | | 434 | https://babeljs.io/docs/babel-preset-env | 319 | | 435 | https://babeljs.io/docs/babel-preset-react | 320 | | 435 | https://babeljs.io/docs/babel-preset-typescript | 321 | | 435 | https://babeljs.io/docs/babel-preset-flow | 322 | | 436 | https://astexplorer.net/ | 323 | | 436 | https://astexplorer.net/ | 324 | | 438 | https://eslint.org/docs/latest/use/configure/parser | 325 | | 440 | https://babeljs.io/docs/babel-parser | 326 | | 440 | https://github.com/tc39/proposals/blob/main/stage-0-proposals.md | 327 | | 440 | https://github.com/estree/estree | 328 | | 440 | https://github.com/babel/babel/blob/main/packages/babel-parser/ast/spec.md | 329 | | 440 | https://babeljs.io/docs/babel-traverse | 330 | | 440 | https://babeljs.io/docs/babel-generator | 331 | | 440 | https://babeljs.io/docs/babel-core | 332 | | 442 | https://github.com/yujeongJeon/npm-deep-dive-example/tree/main/chapter5/5.1 | 333 | | 442 | https://babeljs.io/repl | 334 | | 443 | https://babeljs.io/docs/options#primary-options | 335 | | 446 | https://babeljs.io/docs/babel-cli | 336 | | 452 | https://www.npmjs.com/package/babel-loader | 337 | | 461 | https://github.com/zloirock/core-js | 338 | | 461 | https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Iterators_and_generators | 339 | | 461 | https://developer.mozilla.org/en-US/docs/Web/API/structuredClone | 340 | | 461 | https://github.com/zloirock/core-js/blob/master/packages/core-js/es/promise/index.js | 341 | | 462 | https://github.com/zloirock/core-js/tree/master/packages/core-js/proposals | 342 | | 462 | https://github.com/zloirock/core-js/blob/master/docs/2023-02-14-so-whats-next.md#what-is-core-js | 343 | | 464 | https://babeljs.io/docs/babel-preset-env#corejs | 344 | | 468 | https://babeljs.io/docs/babel-plugin-transform-runtime#why | 345 | | 468 | https://babeljs.io/docs/babel-runtime | 346 | | 471 | https://babeljs.io/docs/babel-plugin-transform-runtime#regenerator-aliasing | 347 | | 474 | https://caniuse.com | 348 | | 474 | https://github.com/browserslist/browserslist | 349 | | 474 | https://www.npmjs.com/package/caniuse-lite | 350 | | 475 | https://github.com/postcss/autoprefixer | 351 | | 475 | https://github.com/stylelint/stylelint | 352 | | 476 | https://github.com/browserslist/caniuse-lite/tree/main/data/regions | 353 | | 477 | https://caniuse.com | 354 | | 477 | https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules | 355 | | 477 | https://github.com/nodejs/Release | 356 | | 478 | https://github.com/nodejs/Release?tab=readme-ov-file#release-phases | 357 | | 479 | https://browsersl.ist/ | 358 | | 481 | https://github.com/facebook/create-react-app/tree/main/packages/react-scripts | 359 | | 481 | https://github.com/awkaiser/browserslist-config-google | 360 | | 481 | https://github.com/NaverPayDev/browserslist-config | 361 | | 482 | https://www.npmjs.com/package/core-js-compat | 362 | | 483 | https://babeljs.io/docs/options#targets | 363 | | 485 | https://caniuse.com/ | 364 | | 490 | https://github.com/yujeongJeon/npm-deep-dive-example/tree/main/chapter5/5.3/babel-polyfill-latest | 365 | | 492 | https://www.typescriptlang.org/ko/tsconfig/#target | 366 | | 493 | https://tc39.es/process-document/ | 367 | | 494 | https://www.typescriptlang.org/docs/ | 368 | | 494 | https://www.typescriptlang.org/play/ | 369 | | 495 | https://www.typescriptlang.org/ko/tsconfig/#module | 370 | | 496 | https://www.typescriptlang.org/docs/handbook/modules/reference.html#esModuleInterop | 371 | | 497 | https://www.typescriptlang.org/tsconfig/#lib | 372 | | 498 | https://www.typescriptlang.org/tsconfig/#sourceMap | 373 | | 499 | https://sentry.io/ | 374 | | 500 | https://sokra.github.io/source-map-visualization/ | 375 | | 501 | https://www.typescriptlang.org/tsconfig/#jsx | 376 | | 505 | https://github.com/Microsoft/tslib | 377 | | 512 | https://swc.rs/ | 378 | | 512 | https://github.com/nodejs/loaders/issues/208 | 379 | | 513 | https://swc.rs/schema.json | 380 | | 513 | https://json.schemastore.org/tsconfig | 381 | | 513 | https://swc.rs/docs/configuration/swcrc | 382 | | 513 | https://github.com/yujeongJeon/npm-deep-dive-example | 383 | | 513 | https://swc.rs/playground | 384 | | 515 | https://swc.rs/docs/configuration/compilation#jscparser | 385 | | 515 | https://swc.rs/docs/configuration/compilation#jsctarget | 386 | | 516 | https://swc.rs/docs/configuration/compilation#jsctransform | 387 | | 516 | https://swc.rs/docs/configuration/compilation#jsctransformoptimizer | 388 | | 516 | https://swc.rs/docs/configuration/compilation#jscminify | 389 | | 517 | https://swc.rs/docs/configuration/compilation#jsckeepclassnames | 390 | | 517 | https://swc.rs/docs/configuration/modules | 391 | | 521 | https://github.com/es-shims | 392 | | 521 | https://github.com/zloirock/core-js/blob/master/packages/core-js/internals/export.js | 393 | | 522 | https://github.com/es-shims/Array.prototype.findLast/blob/main/shim.js | 394 | | 527 | https://www.bleepingcomputer.com/news/security/polyfillio-javascript-supply-chain-attack-impacts-over-100k-sites/ | 395 | | 528 | https://github.com/polyfillpolyfill/polyfill-service | 396 | | 528 | https://polyfill-fastly.io/ | 397 | | 528 | https://cdnjs.cloudflare.com/polyfill | 398 | | 534 | https://web.archive.org/web/19961017235908/http://www2.yahoo.com/ | 399 | | 537 | https://github.com/browserify/browserify | 400 | | 541 | https://webpack.kr/ | 401 | | 542 | https://rollupjs.org/ | 402 | | 542 | https://github.com/toss/slash/blob/main/configs/rollup/src/index.js | 403 | | 542 | https://github.com/NaverPayDev/pie/tree/%40naverpay/react-pdf%400.0.1/packages/rollup | 404 | | 542 | https://ko.parceljs.org/ | 405 | | 546 | https://www.rust-lang.org/ | 406 | | 547 | https://codesandbox.io/ | 407 | | 547 | https://github.com/reactjs/react.dev/pull/5487#issuecomment-1409720741 | 408 | | 548 | https://d3js.org/ | 409 | | 548 | https://eslint.org/docs/latest/rules/no-unused-vars | 410 | | 548 | https://typescript-eslint.io/rules/no-unused-vars/ | 411 | | 550 | https://webpack.kr/plugins/define-plugin/ | 412 | | 556 | https://webpack.kr/ | 413 | | 560 | https://webpack.js.org/configuration/output/ | 414 | | 562 | https://github.com/babel/babel-loader | 415 | | 562 | https://webpack.kr/guides/asset-modules/ | 416 | | 563 | https://github.com/TypeStrong/ts-loader | 417 | | 563 | https://github.com/webpack-contrib/sass-loader | 418 | | 563 | https://github.com/webpack-contrib/css-loader | 419 | | 564 | https://github.com/webpack-contrib/style-loader | 420 | | 566 | https://webpack.kr/plugins/define-plugin | 421 | | 567 | https://webpack.kr/plugins/hot-module-replacement-plugin | 422 | | 568 | https://github.com/webpack/webpack-dev-server | 423 | | 568 | https://github.com/jantimon/html-webpack-plugin | 424 | | 569 | https://github.com/webpack-contrib/mini-css-extract-plugin | 425 | | 569 | https://github.com/vercel/next.js/blob/6604c187ece3021e9b429ecf1207f34d41efbe0a/packages/next/src/build/webpack/config/blocks/css/index.ts#L593-L594 | 426 | | 569 | https://github.com/webpack-contrib/terser-webpack-plugin | 427 | | 569 | https://github.com/terser/terser | 428 | | 570 | https://github.com/webpack-contrib/webpack-bundle-analyzer | 429 | | 570 | https://github.com/vercel/next.js/tree/canary/packages/next-bundle-analyzer | 430 | | 570 | https://github.com/vercel/next.js/blob/6604c187ece3021e9b429ecf1207f34d41efbe0a/packages/next-bundle-analyzer/index.js#L7 | 431 | | 571 | https://webpack.kr/configuration/devtool/ | 432 | | 571 | https://webpack.kr/configuration/cache/ | 433 | | 571 | https://webpack.kr/configuration/optimization/ | 434 | | 572 | https://github.com/webpack/webpack/blob/main/lib/config/defaults.js | 435 | | 573 | https://github.com/yujeongJeon/npm-deep-dive-example/ | 436 | | 578 | https://github.com/vercel/next.js/blob/1441a353a9ac3184403fe77e7c9f5ae254b9afba/packages/next/src/client/index.tsx#L662 | 437 | | 578 | https://webpack.kr/guides/asset-modules/ | 438 | | 580 | https://webpack.kr/concepts/ | 439 | | 583 | https://bit.ly/rumodule | 440 | | 587 | https://web.dev/articles/reduce-javascript-payloads-with-tree-shaking?hl=ko#go_shake_some_trees | 441 | | 588 | https://rollupjs.org/configuration-options/#input | 442 | | 594 | https://github.com/NaverPayDev/pie/blob/5cbc2f231af4d8fb7896286e1ed3833b69b371db/packages/rollup/src/index.ts#L196-L201 | 443 | | 594 | https://github.com/toss/slash/blob/2eccb0610c57a6d3913cebedc8fe6f16a87ff340/configs/rollup/src/index.js#L18-L26 | 444 | | 595 | https://github.com/pmowrer/rollup-plugin-peer-deps-external#readme | 445 | | 603 | https://github.com/rollup/plugins/tree/master/packages/terser | 446 | | 603 | https://github.com/rollup/plugins/tree/master/packages/node-resolve/ | 447 | | 603 | https://github.com/rollup/plugins/tree/master/packages/commonjs/ | 448 | | 603 | https://github.com/rollup/plugins/tree/master/packages/json | 449 | | 603 | https://github.com/egoist/rollup-plugin-postcss | 450 | | 605 | https://github.com/rollup/plugins/tree/master/packages/replace | 451 | | 607 | https://github.com/rollup/plugins/tree/master/packages/babel#readme | 452 | | 607 | https://babel.dev/docs/babel-plugin-transform-runtime | 453 | | 610 | https://github.com/btd/rollup-plugin-visualizer | 454 | | 613 | https://youtu.be/sRCgu1ng6Bo?feature=shared&t=514 | 455 | | 613 | https://swc.rs/ | 456 | | 613 | https://esbuild.github.io/ | 457 | | 613 | https://biomejs.dev/blog/annoucing-biome/ | 458 | | 614 | https://ko.parceljs.org/ | 459 | | 614 | https://turbo.build/pack | 460 | | 615 | https://github.com/vitejs/vite/blob/v2.0.0/packages/create-app/README.md | 461 | | 616 | https://github.com/vitejs/vite-plugin-react-swc | 462 | | 616 | https://rolldown.rs/ | 463 | | 616 | https://youtu.be/hrdwQHoAp0M | 464 | | 623 | https://vitejs.dev/guide/philosophy.html#pushing-the-modern-web | 465 | | 623 | https://github.com/vitejs/vite/discussions/13928 | 466 | | 625 | https://x.com/bluwyoo/status/1681341833581056001 | 467 | | 625 | https://elk.zone/m.webtoo.ls/@bluwy/110736050873446169 | 468 | | 625 | https://github.com/vitejs/vite/tree/main/packages/create-vite | 469 | | 625 | https://lit.dev/ | 470 | | 625 | https://preactjs.com/ | 471 | | 625 | https://qwik.dev/ | 472 | | 625 | https://www.solidjs.com/ | 473 | | 627 | https://github.com/reactjs/react.dev/pull/5487#issuecomment-1409720741 | 474 | | 627 | https://react.dev/learn/start-a-new-react-project | 475 | | 630 | https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script#module | 476 | | 632 | https://github.com/motdotla/dotenv#readme | 477 | | 636 | https://github.com/rollup/awesome | 478 | | 636 | https://github.com/vitejs/awesome-vite#plugins | 479 | | 636 | https://vitejs.dev/guide/api-plugin | 480 | | 636 | https://github.com/vitejs/vite/blob/0cde495ebeb48bcfb5961784a30bfaed997790a0/packages/vite/src/node/constants.ts#L21-L27 | 481 | | 636 | https://esbuild.github.io/api/#target | 482 | | 638 | https://ko.vitejs.dev/config/ | 483 | | 638 | https://rollupjs.org/configuration-options/ | 484 | | 640 | https://github.com/yceffort/ndive-react-image | 485 | | 640 | https://www.npmjs.com/package/@ndive/react-image | 486 | | 641 | https://github.com/moment/moment/ | 487 | | 641 | https://momentjs.com/docs/ | 488 | | 641 | https://day.js.org/ | 489 | | 641 | https://github.com/moment/luxon | 490 | | 641 | https://date-fns.org/ | 491 | | 642 | https://opensource.org/licenses/MIT | 492 | | 642 | https://opensource.org/licenses/Apache-2.0 | 493 | | 642 | https://www.gnu.org/licenses/gpl-3.0.html | 494 | | 642 | https://www.gnu.org/licenses/lgpl-3.0.html | 495 | | 642 | https://opensource.org/licenses/BSD-3-Clause | 496 | | 643 | https://opensource.org/licenses/ISC | 497 | | 643 | https://www.mozilla.org/en-US/MPL/2.0/ | 498 | | 643 | https://www.eclipse.org/legal/epl-2.0/ | 499 | | 643 | https://opensource.org/blog/the-most-popular-licenses-for-each-language-2023 | 500 | | 645 | https://github.com/nodejs/release#release-schedule | 501 | | 646 | https://compat-table.github.io/compat-table | 502 | | 647 | https://browsersl.ist/ | 503 | | 647 | https://browsersl.ist/#q=%3E+0.2%25+and+not+dead | 504 | | 647 | https://github.com/facebook/flow | 505 | | 647 | https://jsdoc.app/ | 506 | | 648 | https://github.com/swc-project/swc/issues/256 | 507 | | 648 | https://github.com/swc-project/swc/issues/174 | 508 | | 650 | https://jestjs.io/ | 509 | | 650 | https://vitest.dev/ | 510 | | 650 | https://github.com/changesets/changesets | 511 | | 651 | https://www.npmjs.com/ | 512 | | 651 | https://www.npmjs.com/package/@ndive/react-image | 513 | | 651 | https://github.com/yceffort/ndive-react-image | 514 | | 656 | https://www.schemastore.org/json/ | 515 | | 656 | https://json.schemastore.org/package.json | 516 | | 656 | https://json.schemastore.org/package | 517 | | 657 | https://browsersl.ist/ | 518 | | 661 | http://editorconfig.org | 519 | | 661 | https://github.com/evilmartians/lefthook | 520 | | 668 | https://choosealicense.com/licenses/ | 521 | | 671 | https://nextjs.org/docs/app/api-reference/components/image | 522 | | 673 | https://unpkg.com/browse/date-fns@3.6.0/index.mjs | 523 | | 680 | https://rollupjs.org/configuration-options/#treeshake | 524 | | 680 | https://webpack.js.org/guides/tree-shaking/#mark-the-file-as-side-effect-free | 525 | | 680 | https://nextjs.org/docs/pages/api-reference/next-config-js/optimizePackageImports | 526 | | 680 | https://vercel.com/blog/how-we-optimized-package-imports-in-next-js#our-first-attempt-modularizeimports | 527 | | 680 | https://github.com/webpack/webpack/discussions/16863 | 528 | | 680 | https://github.com/vercel/next.js/discussions/63494 | 529 | | 680 | https://webpack.js.org/guides/tree-shaking/#conclusion | 530 | | 680 | https://unpkg.com/ahooks@3.8.1/es/index.js | 531 | | 683 | https://ko.vitejs.dev/config/shared-options#resolve-alias | 532 | | 686 | https://github.com/aleclarson/vite-tsconfig-paths | 533 | | 692 | https://github.com/mishoo/UglifyJS | 534 | | 692 | https://github.com/microsoft/TypeScript/issues/13721 | 535 | | 692 | https://github.com/microsoft/TypeScript/pull/16631 | 536 | | 693 | https://github.com/rollup/rollup/issues/1763#issuecomment-347272579 | 537 | | 693 | https://babeljs.io/blog/2018/08/27/7.0.0#pure-annotation-support | 538 | | 693 | https://webpack.js.org/guides/tree-shaking/#clarifying-tree-shaking-and-sideeffects | 539 | | 693 | https://github.com/terser/terser?tab=readme-ov-file#annotations | 540 | | 694 | https://github.com/rollup/rollup/blob/f83b3151e93253a45f5b8ccb9ccb2e04214bc490/src/utils/logs.ts#L803-L811 | 541 | | 694 | https://github.com/rollup/rollup/blob/f83b3151e93253a45f5b8ccb9ccb2e04214bc490/src/ast/nodes/ExpressionStatement.ts#L13-L27 | 542 | | 694 | https://react.dev/reference/rsc/use-client | 543 | | 695 | https://www.npmjs.com/package/rollup-preserve-directives?activeTab=readme | 544 | | 697 | https://esbuild.github.io/content-types/#jsx | 545 | | 697 | https://github.com/vitejs/vite-plugin-react | 546 | | 698 | https://github.com/vitejs/vite-plugin-react-swc | 547 | | 698 | https://github.com/vitejs/vite-plugin-react-swc?tab=readme-ov-file#vitejsplugin-react-swc- | 548 | | 698 | https://github.com/vitejs/vite-plugin-react-swc?tab=readme-ov-file#caveats | 549 | | 699 | https://react.dev/blog/2024/04/25/react-19-upgrade-guide#new-jsx-transform-is-now-required | 550 | | 700 | https://esbuild.github.io/api/#target | 551 | | 700 | https://github.com/marcofugaro/browserslist-to-esbuild | 552 | | 701 | https://browsersl.ist/ | 553 | | 702 | https://github.com/evanw/esbuild/issues/297 | 554 | | 702 | https://github.com/vitejs/vite/tree/main/packages/plugin-legacy | 555 | | 703 | https://github.com/rollup/plugins/tree/master/packages/babel#readme | 556 | | 706 | https://github.com/babel/babel/discussions/16944 | 557 | | 706 | https://babeljs.io/docs/babel-plugin-transform-runtime#corejs | 558 | | 706 | https://github.com/babel/babel-polyfills/blob/main/packages/babel-plugin-polyfill-corejs3/README.md | 559 | | 706 | https://github.com/zloirock/core-js/tree/master/packages/core-js-pure | 560 | | 711 | https://caniuse.com/ | 561 | | 711 | https://github.com/qmhc/vite-plugin-dts/issues/267 | 562 | | 713 | https://caniuse.com/mdn-javascript_builtins_regexp_flags | 563 | | 714 | https://github.com/babel/babel-polyfills/blob/babel-plugin-polyfill-corejs3%400.10.6/packages/babel-plugin-polyfill-corejs3/src/built-in-definitions.ts | 564 | | 714 | https://github.com/babel/babel-polyfills/blob/3c3bc68dccaeea18126e45751beb6691748bb7ac/packages/babel-plugin-polyfill-corejs3/src/built-in-definitions.ts#L761-L771 | 565 | | 714 | https://github.com/zloirock/core-js/blob/9dc59bfc2f4573bbbc3207c5c33c975349b65843/docs/compat/compat-data.js | 566 | | 715 | https://github.com/zloirock/core-js/blob/9637937a2e7681d83e0bc7cac674abd416d490e2/packages/core-js/modules/esnext.string.at.js#L10 | 567 | | 715 | https://github.com/mathiasbynens/String.prototype.at | 568 | | 715 | https://github.com/zloirock/core-js/blob/9dc59bfc2f4573bbbc3207c5c33c975349b65843/packages/core-js/modules/es.string.at-alternative.js#L17 | 569 | | 715 | https://tc39.es/ecma262/#sec-string.prototype.at | 570 | | 716 | https://bugs.chromium.org/p/v8/issues/detail?id=12681 | 571 | | 716 | https://github.com/tc39/proposal-json-parse-with-source | 572 | | 718 | https://github.com/qmhc/vite-plugin-dts | 573 | | 720 | https://www.typescriptlang.org/tsconfig/#moduleResolution | 574 | | 721 | https://github.com/qmhc/vite-plugin-dts/issues/267 | 575 | | 721 | https://github.com/vladshcherbin/rollup-plugin-copy | 576 | | 721 | https://tsup.egoist.dev/ | 577 | | 721 | https://tsup.egoist.dev/#generate-declaration-file | 578 | | 735 | https://github.com/yujeongJeon/npm-deep-dive-example/tree/main/chapter7/react-17 | 579 | | 740 | https://github.com/facebook/react/issues/20235 | 580 | | 740 | https://github.com/facebook/react/issues/20235#issuecomment-1095345193 | 581 | | 742 | https://jestjs.io/ | 582 | | 742 | https://vitest.dev/ | 583 | | 742 | https://kulshekhar.github.io/ts-jest/ | 584 | | 742 | https://jestjs.io/docs/ecmascript-modules | 585 | | 746 | https://docs.github.com/ko/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on | 586 | | 750 | https://github.com/apps/changeset-bot | 587 | | 750 | https://docs.github.com/ko/actions | 588 | | 750 | https://github.com/changesets/changesets | 589 | | 752 | https://www.npmjs.com/ | 590 | | 755 | https://www.npmjs.com/package/@changesets/cli | 591 | | 758 | https://github.com/changesets/action | 592 | | 759 | https://github.com/changesets/action/issues/366 | 593 | | 759 | https://docs.github.com/ko/actions/security-for-github-actions/security-guides/automatic-token-authentication | 594 | | 766 | https://github.com/yceffort/ndive-password-generator | 595 | | 766 | https://www.npmjs.com/package/@ndive/password-generator | 596 | | 766 | https://github.com/chalk/chalk | 597 | | 766 | https://github.com/sindresorhus/meow | 598 | | 767 | https://browsersl.ist/ | 599 | | 767 | https://browsersl.ist/#q=node+%3E%3D+18 | 600 | | 770 | https://node.green/ | 601 | | 778 | https://github.com/facebook/create-react-app/blob/main/packages/create-react-app/index.js | 602 | | 779 | https://github.com/vitejs/vite/blob/main/packages/create-vite/index.js | 603 | | 779 | https://github.com/remy/nodemon/blob/main/bin/nodemon.js | 604 | | 782 | https://caniuse.com/mdn-javascript_builtins_regexp_flags | 605 | | 785 | https://github.com/tc39/proposal-regexp-v-flag | 606 | | 785 | https://babeljs.io/docs/babel-plugin-transform-unicode-sets-regex | 607 | | 788 | https://chmod-calculator.com/ | 608 | | 792 | https://github.com/sindresorhus/meow | 609 | | 794 | https://github.com/tj/commander.js | 610 | | 796 | https://github.com/SBoudrias/Inquirer.js | 611 | | 799 | https://github.com/chalk/chalk | 612 | | 800 | https://github.com/sindresorhus/ora#readme | 613 | | 801 | https://github.com/sindresorhus/yocto-spinner | 614 | | 801 | https://github.com/sindresorhus/cli-spinners | 615 | | 801 | https://github.com/joeycozza/marquee-ora | 616 | | 801 | https://github.com/npkgz/cli-progress | 617 | | 802 | https://clig.dev/ | 618 | | 809 | https://github.com/facebook/react | 619 | | 809 | https://github.com/babel/babel | 620 | | 810 | https://github.com/vercel/next.js | 621 | | 812 | https://docs.npmjs.com/cli/v10/using-npm/workspaces | 622 | | 816 | https://pnpm.io/ko/workspaces | 623 | | 817 | https://pnpm.io/catalogs | 624 | | 817 | https://github.com/vercel/turborepo | 625 | | 822 | https://turbo.build/repo/docs/reference/configuration#dependson | 626 | | 824 | https://turbo.build/repo/docs/reference/configuration#turbo_default | 627 | | 825 | https://turbo.build/repo/docs/crafting-your-repository/using-environment-variables#framework-inference | 628 | | 826 | https://turbo.build/repo/docs/reference/configuration | 629 | | 826 | https://turbo.build/repo/docs/crafting-your-repository/caching | 630 | | 826 | https://turbo.build/repo/docs/core-concepts/remote-caching | 631 | | 827 | https://turbo.build/repo/docs/crafting-your-repository/caching#task-inputs | 632 | | 828 | https://turbo.build/repo/docs/core-concepts/package-and-task-graph#package-graph | 633 | | 828 | https://turbo.build/repo/docs/core-concepts/package-and-task-graph#task-graph | 634 | | 831 | https://turbo.build/repo/docs/core-concepts/package-and-task-graph#transit-nodes | 635 | | 833 | https://turbo.build/repo/docs/crafting-your-repository/configuring-tasks#dependent-tasks-that-can-be-ran-in-parallel | 636 | | 833 | https://turbo.build/repo/docs/reference/package-configurations | 637 | | 837 | https://github.com/yujeongJeon/ndive-design-system | 638 | | 837 | https://www.npmjs.com/package/@ndive/design-tokens | 639 | | 837 | https://www.npmjs.com/package/@ndive/design-components | 640 | | 837 | https://www.npmjs.com/package/@ndive/design-tracker | 641 | | 837 | https://www.nngroup.com/ | 642 | | 837 | https://www.nngroup.com/articles/design-systems-101/ | 643 | | 838 | https://atomicdesign.bradfrost.com/chapter-2/#the-part-and-the-whole | 644 | | 838 | https://orbit.kiwi/components/action/button/ | 645 | | 839 | https://uxdesign.cc/everything-you-need-to-know-about-design-systems-54b109851969?gi=7ccac2573a06 | 646 | | 839 | https://carbondesignsystem.com/ | 647 | | 839 | https://carbondesignsystem.com/designing/kits/sketch/#get-the-kit | 648 | | 839 | https://www.figma.com/community/file/1157761560874207208 | 649 | | 839 | https://m3.material.io/ | 650 | | 839 | https://orbit.kiwi/ | 651 | | 840 | https://www.figma.com/design/60fHi2F04BbdqDQWigiFjG/ndive-design-system | 652 | | 840 | https://orbit.kiwi/foundation/design-tokens/general/ | 653 | | 842 | https://www.npmjs.com/package/react-scanner | 654 | | 846 | https://pnpm.io/workspaces#publishing-workspace-packages | 655 | | 848 | https://github.com/yujeongJeon/ndive-design-system | 656 | | 857 | https://www.figma.com/developers/api | 657 | | 869 | https://sass-lang.com/ | 658 | | 878 | https://browsersl.ist | 659 | | 879 | https://vite.dev/guide/migration.html#customize-css-output-file-name-in-library-mode | 660 | | 887 | https://www.npmjs.com/package/@babel/parser | 661 | | 887 | https://www.npmjs.com/package/@typescript-eslint/parser | 662 | | 887 | https://www.npmjs.com/package/jscodeshift | 663 | | 887 | https://www.npmjs.com/package/ts-morph | 664 | | 890 | https://code.visualstudio.com/docs/editor/glob-patterns | 665 | | 891 | https://ts-morph.com/ | 666 | | 892 | https://github.com/yujeongJeon/ndive-design-system | 667 | | 895 | https://storybook.js.org/docs | 668 | | 895 | https://yujeongjeon.github.io/ndive-design-system/ | 669 | | 897 | https://github.com/changesets/bot/blob/master/get-changed-packages.ts | 670 | | 903 | https://jsr.io/ | 671 | | 904 | https://github.com/DefinitelyTyped/DefinitelyTyped | 672 | | 904 | https://github.com/nodejs/node/pull/53725 | 673 | | 904 | https://github.com/tc39/proposal-type-annotations | 674 | | 904 | https://deno.com/ | 675 | | 904 | https://bun.sh/ | 676 | | 904 | https://github.com/cloudflare/workerd | 677 | | 906 | https://github.com/blakeembrey/change-case/tree/main/packages/change-case/src | 678 | | 906 | https://github.com/lucacasonato/cases | 679 | | 907 | https://npm.jsr.io/ | 680 | | 908 | https://registry.npmjs.org/ | 681 | | 908 | https://npm.jsr.io/ | 682 | | 908 | https://github.com/lucacasonato/cases | 683 | | 909 | https://github.com/yujeongJeon/npm-deep-dive-example/tree/main/chapter9/utils | 684 | | 909 | https://jsr.io/ | 685 | | 912 | https://jsr.io | 686 | | 915 | https://jsr.io/docs/publishing-packages#publishing-from-github-actions | 687 | | 915 | https://docs.deno.com/runtime/manual/references/contributing/style_guide/#do-not-use-the-filename-index.ts%2Findex.js. | 688 | | 917 | https://jsr.io | 689 | | 919 | https://registry.npmjs.org/ | 690 | | 919 | https://npm.jsr.io/ | 691 | | 919 | https://npm.jsr.io/@jsr/yceffort__utils | 692 | | 923 | https://jsr.io/docs/introduction | 693 | | 924 | https://docs.deno.com/ | 694 | | 925 | https://github.com/egoist/tsup | 695 | | 925 | https://api-extractor.com/ | 696 | | 926 | https://github.com/egoist/tsup/blob/main/src/api-extractor.ts | 697 | | 929 | https://github.com/cosmiconfig/cosmiconfig | 698 | | 931 | https://en.wikipedia.org/wiki/RUNCOM | 699 | | 932 | https://github.com/cosmiconfig/cosmiconfig?tab=readme-ov-file#cosmiconfig | 700 | | 933 | https://github.com/tinylibs/tinybench | 701 | | 933 | https://github.com/bestiejs/benchmark.js | 702 | | 933 | https://npmtrends.com/benchmark-vs-tinybench | 703 | | 934 | https://www.npmjs.com/package/lodash.isempty | 704 | | 941 | https://astexplorer.net/ | 705 | | 941 | https://github.com/facebook/jscodeshift | 706 | | 948 | https://github.com/reactjs/react-codemod | 707 | | 948 | https://github.com/vercel/next.js/tree/canary/packages/next-codemod | 708 | | 948 | https://github.com/vercel/turborepo/tree/main/packages/turbo-codemod | 709 | | 961 | https://ko.legacy.reactjs.org/docs/javascript-environment-requirements.html | 710 | | 964 | https://docs.github.com/en/code-security/getting-started/dependabot-quickstart-guide | 711 | | 964 | https://docs.github.com/en/code-security/security-advisories/working-with-global-security-advisories-from-the-github-advisory-database/about-the-github-advisory-database#about-cvss-levels | 712 | | 965 | https://bundlephobia.com/ | 713 | | 966 | https://github.com/bestiejs/benchmark.js | 714 | | 966 | https://github.com/tinylibs/tinybench | 715 | | 966 | https://github.com/bestiejs/benchmark.js/blob/main/package.json | 716 | | 967 | https://github.com/tinylibs/tinybench/blob/v3.0.6/package.json | 717 | | 968 | https://npmtrends.com/benchmark-vs-tinybench | 718 | | 969 | https://bundlephobia.com/package/benchmark@2.1.4 | 719 | | 969 | https://bundlephobia.com/package/tinybench@3.0.6 | 720 | | 970 | https://jestjs.io/ | 721 | | 970 | https://vitest.dev/ | 722 | | 971 | https://github.com/NaverPayDev/hidash | 723 | | 971 | https://naverpaydev.github.io/hidash/#/ | 724 | | 971 | https://github.com/NaverPayDev/hidash/tree/v0.0.5?tab=readme-ov-file#benchmarks-20241104 | 725 | | 974 | https://github.com/facebook/jscodeshift?tab=readme-ov-file#usage-cli | 726 | | 975 | https://github.com/facebook/jscodeshift?tab=readme-ov-file#usage-js | 727 | | 975 | https://github.com/tinylibs/tinybench/tree/v3.0.6?tab=readme-ov-file#usage | 728 | | 975 | https://typedoc.org/ | 729 | | 976 | https://jscodeshift.com/build/api-reference/ | 730 | | 977 | https://github.com/NaverPayDev/pie/blob/main/README.md | 731 | | 977 | https://github.com/yceffort/ndive-react-image/blob/main/README.md | 732 | | 978 | https://shields.io/ | 733 | | 978 | https://docs.github.com/en/actions/monitoring-and-troubleshooting-workflows/monitoring-workflows/adding-a-workflow-status-badge | 734 | | 978 | https://github.com/tinylibs/tinybench/blob/v3.0.6/README.md | 735 | | 981 | https://www.contributor-covenant.org/ | 736 | | 982 | https://github.com/facebook/jscodeshift/blob/main/CONTRIBUTING.md | 737 | | 983 | https://github.com/tinylibs/.github | 738 | | 983 | https://keepachangelog.com/en/1.1.0/ | 739 | | 984 | https://www.conventionalcommits.org/en/v1.0.0/ | 740 | | 985 | https://github.com/googleapis/release-please | 741 | | 985 | https://github.com/googleapis/release-please-action | 742 | -------------------------------------------------------------------------------- /py310/script/jquery.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery v2.2.2 | (c) jQuery Foundation | jquery.org/license */ 2 | !function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=a.document,e=c.slice,f=c.concat,g=c.push,h=c.indexOf,i={},j=i.toString,k=i.hasOwnProperty,l={},m="2.2.2",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return e.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:e.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a){return n.each(this,a)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(e.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor()},push:g,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(a=arguments[h]))for(b in a)c=g[b],d=a[b],g!==d&&(j&&d&&(n.isPlainObject(d)||(e=n.isArray(d)))?(e?(e=!1,f=c&&n.isArray(c)?c:[]):f=c&&n.isPlainObject(c)?c:{},g[b]=n.extend(j,f,d)):void 0!==d&&(g[b]=d));return g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray,isWindow:function(a){return null!=a&&a===a.window},isNumeric:function(a){var b=a&&a.toString();return!n.isArray(a)&&b-parseFloat(b)+1>=0},isPlainObject:function(a){var b;if("object"!==n.type(a)||a.nodeType||n.isWindow(a))return!1;if(a.constructor&&!k.call(a,"constructor")&&!k.call(a.constructor.prototype||{},"isPrototypeOf"))return!1;for(b in a);return void 0===b||k.call(a,b)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?i[j.call(a)]||"object":typeof a},globalEval:function(a){var b,c=eval;a=n.trim(a),a&&(1===a.indexOf("use strict")?(b=d.createElement("script"),b.text=a,d.head.appendChild(b).parentNode.removeChild(b)):c(a))},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b){var c,d=0;if(s(a)){for(c=a.length;c>d;d++)if(b.call(a[d],d,a[d])===!1)break}else for(d in a)if(b.call(a[d],d,a[d])===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,"string"==typeof a?[a]:a):g.call(c,a)),c},inArray:function(a,b,c){return null==b?-1:h.call(b,a,c)},merge:function(a,b){for(var c=+b.length,d=0,e=a.length;c>d;d++)a[e++]=b[d];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,e,g=0,h=[];if(s(a))for(d=a.length;d>g;g++)e=b(a[g],g,c),null!=e&&h.push(e);else for(g in a)e=b(a[g],g,c),null!=e&&h.push(e);return f.apply([],h)},guid:1,proxy:function(a,b){var c,d,f;return"string"==typeof b&&(c=a[b],b=a,a=c),n.isFunction(a)?(d=e.call(arguments,2),f=function(){return a.apply(b||this,d.concat(e.call(arguments)))},f.guid=a.guid=a.guid||n.guid++,f):void 0},now:Date.now,support:l}),"function"==typeof Symbol&&(n.fn[Symbol.iterator]=c[Symbol.iterator]),n.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(a,b){i["[object "+b+"]"]=b.toLowerCase()});function s(a){var b=!!a&&"length"in a&&a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ga(),z=ga(),A=ga(),B=function(a,b){return a===b&&(l=!0),0},C=1<<31,D={}.hasOwnProperty,E=[],F=E.pop,G=E.push,H=E.push,I=E.slice,J=function(a,b){for(var c=0,d=a.length;d>c;c++)if(a[c]===b)return c;return-1},K="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",L="[\\x20\\t\\r\\n\\f]",M="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",N="\\["+L+"*("+M+")(?:"+L+"*([*^$|!~]?=)"+L+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+M+"))|)"+L+"*\\]",O=":("+M+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+N+")*)|.*)\\)|)",P=new RegExp(L+"+","g"),Q=new RegExp("^"+L+"+|((?:^|[^\\\\])(?:\\\\.)*)"+L+"+$","g"),R=new RegExp("^"+L+"*,"+L+"*"),S=new RegExp("^"+L+"*([>+~]|"+L+")"+L+"*"),T=new RegExp("="+L+"*([^\\]'\"]*?)"+L+"*\\]","g"),U=new RegExp(O),V=new RegExp("^"+M+"$"),W={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),TAG:new RegExp("^("+M+"|[*])"),ATTR:new RegExp("^"+N),PSEUDO:new RegExp("^"+O),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+L+"*(even|odd|(([+-]|)(\\d*)n|)"+L+"*(?:([+-]|)"+L+"*(\\d+)|))"+L+"*\\)|)","i"),bool:new RegExp("^(?:"+K+")$","i"),needsContext:new RegExp("^"+L+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+L+"*((?:-\\d)?\\d*)"+L+"*\\)|)(?=[^-]|$)","i")},X=/^(?:input|select|textarea|button)$/i,Y=/^h\d$/i,Z=/^[^{]+\{\s*\[native \w/,$=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,_=/[+~]/,aa=/'|\\/g,ba=new RegExp("\\\\([\\da-f]{1,6}"+L+"?|("+L+")|.)","ig"),ca=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},da=function(){m()};try{H.apply(E=I.call(v.childNodes),v.childNodes),E[v.childNodes.length].nodeType}catch(ea){H={apply:E.length?function(a,b){G.apply(a,I.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fa(a,b,d,e){var f,h,j,k,l,o,r,s,w=b&&b.ownerDocument,x=b?b.nodeType:9;if(d=d||[],"string"!=typeof a||!a||1!==x&&9!==x&&11!==x)return d;if(!e&&((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,p)){if(11!==x&&(o=$.exec(a)))if(f=o[1]){if(9===x){if(!(j=b.getElementById(f)))return d;if(j.id===f)return d.push(j),d}else if(w&&(j=w.getElementById(f))&&t(b,j)&&j.id===f)return d.push(j),d}else{if(o[2])return H.apply(d,b.getElementsByTagName(a)),d;if((f=o[3])&&c.getElementsByClassName&&b.getElementsByClassName)return H.apply(d,b.getElementsByClassName(f)),d}if(c.qsa&&!A[a+" "]&&(!q||!q.test(a))){if(1!==x)w=b,s=a;else if("object"!==b.nodeName.toLowerCase()){(k=b.getAttribute("id"))?k=k.replace(aa,"\\$&"):b.setAttribute("id",k=u),r=g(a),h=r.length,l=V.test(k)?"#"+k:"[id='"+k+"']";while(h--)r[h]=l+" "+qa(r[h]);s=r.join(","),w=_.test(a)&&oa(b.parentNode)||b}if(s)try{return H.apply(d,w.querySelectorAll(s)),d}catch(y){}finally{k===u&&b.removeAttribute("id")}}}return i(a.replace(Q,"$1"),b,d,e)}function ga(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ha(a){return a[u]=!0,a}function ia(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ja(a,b){var c=a.split("|"),e=c.length;while(e--)d.attrHandle[c[e]]=b}function ka(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||C)-(~a.sourceIndex||C);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function la(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function na(a){return ha(function(b){return b=+b,ha(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function oa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=fa.support={},f=fa.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fa.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=n.documentElement,p=!f(n),(e=n.defaultView)&&e.top!==e&&(e.addEventListener?e.addEventListener("unload",da,!1):e.attachEvent&&e.attachEvent("onunload",da)),c.attributes=ia(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ia(function(a){return a.appendChild(n.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Z.test(n.getElementsByClassName),c.getById=ia(function(a){return o.appendChild(a).id=u,!n.getElementsByName||!n.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return"undefined"!=typeof b.getElementsByClassName&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=Z.test(n.querySelectorAll))&&(ia(function(a){o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+L+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+L+"*(?:value|"+K+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ia(function(a){var b=n.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+L+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=Z.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ia(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",O)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=Z.test(o.compareDocumentPosition),t=b||Z.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===n||a.ownerDocument===v&&t(v,a)?-1:b===n||b.ownerDocument===v&&t(v,b)?1:k?J(k,a)-J(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,g=[a],h=[b];if(!e||!f)return a===n?-1:b===n?1:e?-1:f?1:k?J(k,a)-J(k,b):0;if(e===f)return ka(a,b);c=a;while(c=c.parentNode)g.unshift(c);c=b;while(c=c.parentNode)h.unshift(c);while(g[d]===h[d])d++;return d?ka(g[d],h[d]):g[d]===v?-1:h[d]===v?1:0},n):n},fa.matches=function(a,b){return fa(a,null,null,b)},fa.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(T,"='$1']"),c.matchesSelector&&p&&!A[b+" "]&&(!r||!r.test(b))&&(!q||!q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fa(b,n,null,[a]).length>0},fa.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fa.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&D.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fa.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fa.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fa.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fa.selectors={cacheLength:50,createPseudo:ha,match:W,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ba,ca),a[3]=(a[3]||a[4]||a[5]||"").replace(ba,ca),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fa.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fa.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return W.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&U.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(ba,ca).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+L+")"+a+"("+L+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fa.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(P," ")+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h,t=!1;if(q){if(f){while(p){m=b;while(m=m[p])if(h?m.nodeName.toLowerCase()===r:1===m.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){m=q,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n&&j[2],m=n&&q.childNodes[n];while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if(1===m.nodeType&&++t&&m===b){k[a]=[w,n,t];break}}else if(s&&(m=b,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n),t===!1)while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if((h?m.nodeName.toLowerCase()===r:1===m.nodeType)&&++t&&(s&&(l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),k[a]=[w,t]),m===b))break;return t-=e,t===d||t%d===0&&t/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fa.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ha(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=J(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ha(function(a){var b=[],c=[],d=h(a.replace(Q,"$1"));return d[u]?ha(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ha(function(a){return function(b){return fa(a,b).length>0}}),contains:ha(function(a){return a=a.replace(ba,ca),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ha(function(a){return V.test(a||"")||fa.error("unsupported lang: "+a),a=a.replace(ba,ca).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Y.test(a.nodeName)},input:function(a){return X.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:na(function(){return[0]}),last:na(function(a,b){return[b-1]}),eq:na(function(a,b,c){return[0>c?c+b:c]}),even:na(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:na(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:na(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:na(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function ra(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j,k=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(j=b[u]||(b[u]={}),i=j[b.uniqueID]||(j[b.uniqueID]={}),(h=i[d])&&h[0]===w&&h[1]===f)return k[2]=h[2];if(i[d]=k,k[2]=a(b,c,g))return!0}}}function sa(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function ta(a,b,c){for(var d=0,e=b.length;e>d;d++)fa(a,b[d],c);return c}function ua(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(c&&!c(f,d,e)||(g.push(f),j&&b.push(h)));return g}function va(a,b,c,d,e,f){return d&&!d[u]&&(d=va(d)),e&&!e[u]&&(e=va(e,f)),ha(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||ta(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ua(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ua(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?J(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ua(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):H.apply(g,r)})}function wa(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=ra(function(a){return a===b},h,!0),l=ra(function(a){return J(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];f>i;i++)if(c=d.relative[a[i].type])m=[ra(sa(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return va(i>1&&sa(m),i>1&&qa(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(Q,"$1"),c,e>i&&wa(a.slice(i,e)),f>e&&wa(a=a.slice(e)),f>e&&qa(a))}m.push(c)}return sa(m)}function xa(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,o,q,r=0,s="0",t=f&&[],u=[],v=j,x=f||e&&d.find.TAG("*",k),y=w+=null==v?1:Math.random()||.1,z=x.length;for(k&&(j=g===n||g||k);s!==z&&null!=(l=x[s]);s++){if(e&&l){o=0,g||l.ownerDocument===n||(m(l),h=!p);while(q=a[o++])if(q(l,g||n,h)){i.push(l);break}k&&(w=y)}c&&((l=!q&&l)&&r--,f&&t.push(l))}if(r+=s,c&&s!==r){o=0;while(q=b[o++])q(t,u,g,h);if(f){if(r>0)while(s--)t[s]||u[s]||(u[s]=F.call(i));u=ua(u)}H.apply(i,u),k&&!f&&u.length>0&&r+b.length>1&&fa.uniqueSort(i)}return k&&(w=y,j=v),t};return c?ha(f):f}return h=fa.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wa(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xa(e,d)),f.selector=a}return f},i=fa.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(ba,ca),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=W.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(ba,ca),_.test(j[0].type)&&oa(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qa(j),!a)return H.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,!b||_.test(a)&&oa(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ia(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ia(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||ja("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ia(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ja("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ia(function(a){return null==a.getAttribute("disabled")})||ja(K,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fa}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.uniqueSort=n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&n(a).is(c))break;d.push(a)}return d},v=function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c},w=n.expr.match.needsContext,x=/^<([\w-]+)\s*\/?>(?:<\/\1>|)$/,y=/^.[^:#\[\.,]*$/;function z(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(y.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return h.call(b,a)>-1!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=this.length,d=[],e=this;if("string"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;c>b;b++)if(n.contains(e[b],this))return!0}));for(b=0;c>b;b++)n.find(a,e[b],d);return d=this.pushStack(c>1?n.unique(d):d),d.selector=this.selector?this.selector+" "+a:a,d},filter:function(a){return this.pushStack(z(this,a||[],!1))},not:function(a){return this.pushStack(z(this,a||[],!0))},is:function(a){return!!z(this,"string"==typeof a&&w.test(a)?n(a):a||[],!1).length}});var A,B=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,C=n.fn.init=function(a,b,c){var e,f;if(!a)return this;if(c=c||A,"string"==typeof a){if(e="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:B.exec(a),!e||!e[1]&&b)return!b||b.jquery?(b||c).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(e[1],b&&b.nodeType?b.ownerDocument||b:d,!0)),x.test(e[1])&&n.isPlainObject(b))for(e in b)n.isFunction(this[e])?this[e](b[e]):this.attr(e,b[e]);return this}return f=d.getElementById(e[2]),f&&f.parentNode&&(this.length=1,this[0]=f),this.context=d,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?void 0!==c.ready?c.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};C.prototype=n.fn,A=n(d);var D=/^(?:parents|prev(?:Until|All))/,E={children:!0,contents:!0,next:!0,prev:!0};n.fn.extend({has:function(a){var b=n(a,this),c=b.length;return this.filter(function(){for(var a=0;c>a;a++)if(n.contains(this,b[a]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=w.test(a)||"string"!=typeof a?n(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.uniqueSort(f):f)},index:function(a){return a?"string"==typeof a?h.call(n(a),this[0]):h.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.uniqueSort(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function F(a,b){while((a=a[b])&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return u(a,"parentNode")},parentsUntil:function(a,b,c){return u(a,"parentNode",c)},next:function(a){return F(a,"nextSibling")},prev:function(a){return F(a,"previousSibling")},nextAll:function(a){return u(a,"nextSibling")},prevAll:function(a){return u(a,"previousSibling")},nextUntil:function(a,b,c){return u(a,"nextSibling",c)},prevUntil:function(a,b,c){return u(a,"previousSibling",c)},siblings:function(a){return v((a.parentNode||{}).firstChild,a)},children:function(a){return v(a.firstChild)},contents:function(a){return a.contentDocument||n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(E[a]||n.uniqueSort(e),D.test(a)&&e.reverse()),this.pushStack(e)}});var G=/\S+/g;function H(a){var b={};return n.each(a.match(G)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?H(a):n.extend({},a);var b,c,d,e,f=[],g=[],h=-1,i=function(){for(e=a.once,d=b=!0;g.length;h=-1){c=g.shift();while(++h-1)f.splice(c,1),h>=c&&h--}),this},has:function(a){return a?n.inArray(a,f)>-1:f.length>0},empty:function(){return f&&(f=[]),this},disable:function(){return e=g=[],f=c="",this},disabled:function(){return!f},lock:function(){return e=g=[],c||(f=c=""),this},locked:function(){return!!e},fireWith:function(a,c){return e||(c=c||[],c=[a,c.slice?c.slice():c],g.push(c),b||i()),this},fire:function(){return j.fireWith(this,arguments),this},fired:function(){return!!d}};return j},n.extend({Deferred:function(a){var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().progress(c.notify).done(c.resolve).fail(c.reject):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=e.call(arguments),d=c.length,f=1!==d||a&&n.isFunction(a.promise)?d:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?e.call(arguments):d,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(d>1)for(i=new Array(d),j=new Array(d),k=new Array(d);d>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().progress(h(b,j,i)).done(h(b,k,c)).fail(g.reject):--f;return f||g.resolveWith(k,c),g.promise()}});var I;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){(a===!0?--n.readyWait:n.isReady)||(n.isReady=!0,a!==!0&&--n.readyWait>0||(I.resolveWith(d,[n]),n.fn.triggerHandler&&(n(d).triggerHandler("ready"),n(d).off("ready"))))}});function J(){d.removeEventListener("DOMContentLoaded",J),a.removeEventListener("load",J),n.ready()}n.ready.promise=function(b){return I||(I=n.Deferred(),"complete"===d.readyState||"loading"!==d.readyState&&!d.documentElement.doScroll?a.setTimeout(n.ready):(d.addEventListener("DOMContentLoaded",J),a.addEventListener("load",J))),I.promise(b)},n.ready.promise();var K=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===n.type(c)){e=!0;for(h in c)K(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,n.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(n(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},L=function(a){return 1===a.nodeType||9===a.nodeType||!+a.nodeType};function M(){this.expando=n.expando+M.uid++}M.uid=1,M.prototype={register:function(a,b){var c=b||{};return a.nodeType?a[this.expando]=c:Object.defineProperty(a,this.expando,{value:c,writable:!0,configurable:!0}),a[this.expando]},cache:function(a){if(!L(a))return{};var b=a[this.expando];return b||(b={},L(a)&&(a.nodeType?a[this.expando]=b:Object.defineProperty(a,this.expando,{value:b,configurable:!0}))),b},set:function(a,b,c){var d,e=this.cache(a);if("string"==typeof b)e[b]=c;else for(d in b)e[d]=b[d];return e},get:function(a,b){return void 0===b?this.cache(a):a[this.expando]&&a[this.expando][b]},access:function(a,b,c){var d;return void 0===b||b&&"string"==typeof b&&void 0===c?(d=this.get(a,b),void 0!==d?d:this.get(a,n.camelCase(b))):(this.set(a,b,c),void 0!==c?c:b)},remove:function(a,b){var c,d,e,f=a[this.expando];if(void 0!==f){if(void 0===b)this.register(a);else{n.isArray(b)?d=b.concat(b.map(n.camelCase)):(e=n.camelCase(b),b in f?d=[b,e]:(d=e,d=d in f?[d]:d.match(G)||[])),c=d.length;while(c--)delete f[d[c]]}(void 0===b||n.isEmptyObject(f))&&(a.nodeType?a[this.expando]=void 0:delete a[this.expando])}},hasData:function(a){var b=a[this.expando];return void 0!==b&&!n.isEmptyObject(b)}};var N=new M,O=new M,P=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,Q=/[A-Z]/g;function R(a,b,c){var d;if(void 0===c&&1===a.nodeType)if(d="data-"+b.replace(Q,"-$&").toLowerCase(),c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:P.test(c)?n.parseJSON(c):c; 3 | }catch(e){}O.set(a,b,c)}else c=void 0;return c}n.extend({hasData:function(a){return O.hasData(a)||N.hasData(a)},data:function(a,b,c){return O.access(a,b,c)},removeData:function(a,b){O.remove(a,b)},_data:function(a,b,c){return N.access(a,b,c)},_removeData:function(a,b){N.remove(a,b)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=O.get(f),1===f.nodeType&&!N.get(f,"hasDataAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),R(f,d,e[d])));N.set(f,"hasDataAttrs",!0)}return e}return"object"==typeof a?this.each(function(){O.set(this,a)}):K(this,function(b){var c,d;if(f&&void 0===b){if(c=O.get(f,a)||O.get(f,a.replace(Q,"-$&").toLowerCase()),void 0!==c)return c;if(d=n.camelCase(a),c=O.get(f,d),void 0!==c)return c;if(c=R(f,d,void 0),void 0!==c)return c}else d=n.camelCase(a),this.each(function(){var c=O.get(this,d);O.set(this,d,b),a.indexOf("-")>-1&&void 0!==c&&O.set(this,a,b)})},null,b,arguments.length>1,null,!0)},removeData:function(a){return this.each(function(){O.remove(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=N.get(a,b),c&&(!d||n.isArray(c)?d=N.access(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return N.get(a,c)||N.access(a,c,{empty:n.Callbacks("once memory").add(function(){N.remove(a,[b+"queue",c])})})}}),n.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length",""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};$.optgroup=$.option,$.tbody=$.tfoot=$.colgroup=$.caption=$.thead,$.th=$.td;function _(a,b){var c="undefined"!=typeof a.getElementsByTagName?a.getElementsByTagName(b||"*"):"undefined"!=typeof a.querySelectorAll?a.querySelectorAll(b||"*"):[];return void 0===b||b&&n.nodeName(a,b)?n.merge([a],c):c}function aa(a,b){for(var c=0,d=a.length;d>c;c++)N.set(a[c],"globalEval",!b||N.get(b[c],"globalEval"))}var ba=/<|&#?\w+;/;function ca(a,b,c,d,e){for(var f,g,h,i,j,k,l=b.createDocumentFragment(),m=[],o=0,p=a.length;p>o;o++)if(f=a[o],f||0===f)if("object"===n.type(f))n.merge(m,f.nodeType?[f]:f);else if(ba.test(f)){g=g||l.appendChild(b.createElement("div")),h=(Y.exec(f)||["",""])[1].toLowerCase(),i=$[h]||$._default,g.innerHTML=i[1]+n.htmlPrefilter(f)+i[2],k=i[0];while(k--)g=g.lastChild;n.merge(m,g.childNodes),g=l.firstChild,g.textContent=""}else m.push(b.createTextNode(f));l.textContent="",o=0;while(f=m[o++])if(d&&n.inArray(f,d)>-1)e&&e.push(f);else if(j=n.contains(f.ownerDocument,f),g=_(l.appendChild(f),"script"),j&&aa(g),c){k=0;while(f=g[k++])Z.test(f.type||"")&&c.push(f)}return l}!function(){var a=d.createDocumentFragment(),b=a.appendChild(d.createElement("div")),c=d.createElement("input");c.setAttribute("type","radio"),c.setAttribute("checked","checked"),c.setAttribute("name","t"),b.appendChild(c),l.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,b.innerHTML="",l.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var da=/^key/,ea=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,fa=/^([^.]*)(?:\.(.+)|)/;function ga(){return!0}function ha(){return!1}function ia(){try{return d.activeElement}catch(a){}}function ja(a,b,c,d,e,f){var g,h;if("object"==typeof b){"string"!=typeof c&&(d=d||c,c=void 0);for(h in b)ja(a,h,c,d,b[h],f);return a}if(null==d&&null==e?(e=c,d=c=void 0):null==e&&("string"==typeof c?(e=d,d=void 0):(e=d,d=c,c=void 0)),e===!1)e=ha;else if(!e)return a;return 1===f&&(g=e,e=function(a){return n().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=n.guid++)),a.each(function(){n.event.add(this,b,e,d,c)})}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=N.get(a);if(r){c.handler&&(f=c,c=f.handler,e=f.selector),c.guid||(c.guid=n.guid++),(i=r.events)||(i=r.events={}),(g=r.handle)||(g=r.handle=function(b){return"undefined"!=typeof n&&n.event.triggered!==b.type?n.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(G)||[""],j=b.length;while(j--)h=fa.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o&&(l=n.event.special[o]||{},o=(e?l.delegateType:l.bindType)||o,l=n.event.special[o]||{},k=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(".")},f),(m=i[o])||(m=i[o]=[],m.delegateCount=0,l.setup&&l.setup.call(a,d,p,g)!==!1||a.addEventListener&&a.addEventListener(o,g)),l.add&&(l.add.call(a,k),k.handler.guid||(k.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,k):m.push(k),n.event.global[o]=!0)}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=N.hasData(a)&&N.get(a);if(r&&(i=r.events)){b=(b||"").match(G)||[""],j=b.length;while(j--)if(h=fa.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=i[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),g=f=m.length;while(f--)k=m[f],!e&&q!==k.origType||c&&c.guid!==k.guid||h&&!h.test(k.namespace)||d&&d!==k.selector&&("**"!==d||!k.selector)||(m.splice(f,1),k.selector&&m.delegateCount--,l.remove&&l.remove.call(a,k));g&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete i[o])}else for(o in i)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(i)&&N.remove(a,"handle events")}},dispatch:function(a){a=n.event.fix(a);var b,c,d,f,g,h=[],i=e.call(arguments),j=(N.get(this,"events")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,c=0;while((g=f.handlers[c++])&&!a.isImmediatePropagationStopped())a.rnamespace&&!a.rnamespace.test(g.namespace)||(a.handleObj=g,a.data=g.data,d=((n.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i),void 0!==d&&(a.result=d)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&("click"!==a.type||isNaN(a.button)||a.button<1))for(;i!==this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(d=[],c=0;h>c;c++)f=b[c],e=f.selector+" ",void 0===d[e]&&(d[e]=f.needsContext?n(e,this).index(i)>-1:n.find(e,this,null,[i]).length),d[e]&&d.push(f);d.length&&g.push({elem:i,handlers:d})}return h]*)\/>/gi,la=/\s*$/g;function pa(a,b){return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function qa(a){return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function ra(a){var b=na.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function sa(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(N.hasData(a)&&(f=N.access(a),g=N.set(b,f),j=f.events)){delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;d>c;c++)n.event.add(b,e,j[e][c])}O.hasData(a)&&(h=O.access(a),i=n.extend({},h),O.set(b,i))}}function ta(a,b){var c=b.nodeName.toLowerCase();"input"===c&&X.test(a.type)?b.checked=a.checked:"input"!==c&&"textarea"!==c||(b.defaultValue=a.defaultValue)}function ua(a,b,c,d){b=f.apply([],b);var e,g,h,i,j,k,m=0,o=a.length,p=o-1,q=b[0],r=n.isFunction(q);if(r||o>1&&"string"==typeof q&&!l.checkClone&&ma.test(q))return a.each(function(e){var f=a.eq(e);r&&(b[0]=q.call(this,e,f.html())),ua(f,b,c,d)});if(o&&(e=ca(b,a[0].ownerDocument,!1,a,d),g=e.firstChild,1===e.childNodes.length&&(e=g),g||d)){for(h=n.map(_(e,"script"),qa),i=h.length;o>m;m++)j=e,m!==p&&(j=n.clone(j,!0,!0),i&&n.merge(h,_(j,"script"))),c.call(a[m],j,m);if(i)for(k=h[h.length-1].ownerDocument,n.map(h,ra),m=0;i>m;m++)j=h[m],Z.test(j.type||"")&&!N.access(j,"globalEval")&&n.contains(k,j)&&(j.src?n._evalUrl&&n._evalUrl(j.src):n.globalEval(j.textContent.replace(oa,"")))}return a}function va(a,b,c){for(var d,e=b?n.filter(b,a):a,f=0;null!=(d=e[f]);f++)c||1!==d.nodeType||n.cleanData(_(d)),d.parentNode&&(c&&n.contains(d.ownerDocument,d)&&aa(_(d,"script")),d.parentNode.removeChild(d));return a}n.extend({htmlPrefilter:function(a){return a.replace(ka,"<$1>")},clone:function(a,b,c){var d,e,f,g,h=a.cloneNode(!0),i=n.contains(a.ownerDocument,a);if(!(l.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(g=_(h),f=_(a),d=0,e=f.length;e>d;d++)ta(f[d],g[d]);if(b)if(c)for(f=f||_(a),g=g||_(h),d=0,e=f.length;e>d;d++)sa(f[d],g[d]);else sa(a,h);return g=_(h,"script"),g.length>0&&aa(g,!i&&_(a,"script")),h},cleanData:function(a){for(var b,c,d,e=n.event.special,f=0;void 0!==(c=a[f]);f++)if(L(c)){if(b=c[N.expando]){if(b.events)for(d in b.events)e[d]?n.event.remove(c,d):n.removeEvent(c,d,b.handle);c[N.expando]=void 0}c[O.expando]&&(c[O.expando]=void 0)}}}),n.fn.extend({domManip:ua,detach:function(a){return va(this,a,!0)},remove:function(a){return va(this,a)},text:function(a){return K(this,function(a){return void 0===a?n.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=a)})},null,a,arguments.length)},append:function(){return ua(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=pa(this,a);b.appendChild(a)}})},prepend:function(){return ua(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=pa(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return ua(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return ua(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},empty:function(){for(var a,b=0;null!=(a=this[b]);b++)1===a.nodeType&&(n.cleanData(_(a,!1)),a.textContent="");return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return K(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a&&1===b.nodeType)return b.innerHTML;if("string"==typeof a&&!la.test(a)&&!$[(Y.exec(a)||["",""])[1].toLowerCase()]){a=n.htmlPrefilter(a);try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(_(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=[];return ua(this,arguments,function(b){var c=this.parentNode;n.inArray(this,a)<0&&(n.cleanData(_(this)),c&&c.replaceChild(b,this))},a)}}),n.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){n.fn[a]=function(a){for(var c,d=[],e=n(a),f=e.length-1,h=0;f>=h;h++)c=h===f?this:this.clone(!0),n(e[h])[b](c),g.apply(d,c.get());return this.pushStack(d)}});var wa,xa={HTML:"block",BODY:"block"};function ya(a,b){var c=n(b.createElement(a)).appendTo(b.body),d=n.css(c[0],"display");return c.detach(),d}function za(a){var b=d,c=xa[a];return c||(c=ya(a,b),"none"!==c&&c||(wa=(wa||n("